2006-08-22 01:47:33 -06:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
2006-08-22 03:19:53 -06:00
|
|
|
* Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA
|
2006-08-22 01:47:33 -06:00
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
|
2006-10-21 06:17:51 -06:00
|
|
|
static void drm_ttm_ipi_handler(void *null)
|
|
|
|
{
|
2006-10-30 03:18:44 -07:00
|
|
|
flush_agp_cache();
|
2006-10-21 06:17:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void drm_ttm_cache_flush(void)
|
|
|
|
{
|
|
|
|
if (on_each_cpu(drm_ttm_ipi_handler, NULL, 1, 1) != 0)
|
|
|
|
DRM_ERROR("Timed out waiting for drm cache flush.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-08 09:24:38 -06:00
|
|
|
/*
|
|
|
|
* Use kmalloc if possible. Otherwise fall back to vmalloc.
|
|
|
|
*/
|
|
|
|
|
2007-01-08 21:51:29 -07:00
|
|
|
static void ttm_alloc_pages(drm_ttm_t *ttm)
|
2006-09-08 09:24:38 -06:00
|
|
|
{
|
2007-01-08 21:51:29 -07:00
|
|
|
unsigned long size = ttm->num_pages * sizeof(*ttm->pages);
|
|
|
|
ttm->pages = NULL;
|
2006-09-08 09:24:38 -06:00
|
|
|
|
2006-10-17 11:40:57 -06:00
|
|
|
if (drm_alloc_memctl(size))
|
2007-01-08 21:51:29 -07:00
|
|
|
return;
|
|
|
|
|
2006-10-17 11:40:57 -06:00
|
|
|
if (size <= PAGE_SIZE) {
|
2007-01-08 21:51:29 -07:00
|
|
|
ttm->pages = drm_calloc(1, size, DRM_MEM_TTM);
|
2006-09-08 09:24:38 -06:00
|
|
|
}
|
2007-01-08 21:51:29 -07:00
|
|
|
if (!ttm->pages) {
|
|
|
|
ttm->pages = vmalloc_user(size);
|
|
|
|
if (ttm->pages)
|
|
|
|
ttm->page_flags |= DRM_TTM_PAGE_VMALLOC;
|
2006-09-08 09:24:38 -06:00
|
|
|
}
|
2007-01-08 21:51:29 -07:00
|
|
|
if (!ttm->pages) {
|
2006-10-17 11:40:57 -06:00
|
|
|
drm_free_memctl(size);
|
|
|
|
}
|
2006-09-08 09:24:38 -06:00
|
|
|
}
|
2006-09-14 08:42:00 -06:00
|
|
|
|
2007-01-08 21:51:29 -07:00
|
|
|
static void ttm_free_pages(drm_ttm_t *ttm)
|
2006-09-08 09:24:38 -06:00
|
|
|
{
|
2007-01-08 21:51:29 -07:00
|
|
|
unsigned long size = ttm->num_pages * sizeof(*ttm->pages);
|
2006-10-17 11:57:06 -06:00
|
|
|
|
2007-01-08 21:51:29 -07:00
|
|
|
if (ttm->page_flags & DRM_TTM_PAGE_VMALLOC) {
|
|
|
|
vfree(ttm->pages);
|
|
|
|
ttm->page_flags &= ~DRM_TTM_PAGE_VMALLOC;
|
2006-09-14 08:42:00 -06:00
|
|
|
} else {
|
2007-01-08 21:51:29 -07:00
|
|
|
drm_free(ttm->pages, size, DRM_MEM_TTM);
|
2006-09-08 09:24:38 -06:00
|
|
|
}
|
2006-10-17 11:40:57 -06:00
|
|
|
drm_free_memctl(size);
|
2007-01-08 21:51:29 -07:00
|
|
|
ttm->pages = NULL;
|
2006-10-17 11:57:06 -06:00
|
|
|
}
|
2006-09-08 09:24:38 -06:00
|
|
|
|
2006-08-22 01:47:33 -06:00
|
|
|
|
2007-02-08 05:29:08 -07:00
|
|
|
static struct page *drm_ttm_alloc_page(void)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
2007-02-02 06:47:44 -07:00
|
|
|
struct page *page;
|
2006-10-11 14:21:01 -06:00
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
if (drm_alloc_memctl(PAGE_SIZE)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA32);
|
|
|
|
if (!page) {
|
|
|
|
drm_free_memctl(PAGE_SIZE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15))
|
|
|
|
SetPageLocked(page);
|
|
|
|
#else
|
|
|
|
SetPageReserved(page);
|
2006-10-11 14:21:01 -06:00
|
|
|
#endif
|
2007-02-02 06:47:44 -07:00
|
|
|
return page;
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
/*
|
|
|
|
* Change caching policy for the linear kernel map
|
|
|
|
* for range of pages in a ttm.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int drm_set_caching(drm_ttm_t * ttm, int noncached)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct page **cur_page;
|
|
|
|
int do_tlbflush = 0;
|
|
|
|
|
|
|
|
if ((ttm->page_flags & DRM_TTM_PAGE_UNCACHED) == noncached)
|
|
|
|
return 0;
|
|
|
|
|
2006-10-21 06:17:51 -06:00
|
|
|
if (noncached)
|
|
|
|
drm_ttm_cache_flush();
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
for (i = 0; i < ttm->num_pages; ++i) {
|
|
|
|
cur_page = ttm->pages + i;
|
|
|
|
if (*cur_page) {
|
|
|
|
if (!PageHighMem(*cur_page)) {
|
|
|
|
if (noncached) {
|
|
|
|
map_page_into_agp(*cur_page);
|
|
|
|
} else {
|
|
|
|
unmap_page_from_agp(*cur_page);
|
|
|
|
}
|
|
|
|
do_tlbflush = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (do_tlbflush)
|
|
|
|
flush_agp_mappings();
|
|
|
|
|
2007-02-07 09:25:13 -07:00
|
|
|
DRM_FLAG_MASKED(ttm->page_flags, noncached, DRM_TTM_PAGE_UNCACHED);
|
2006-10-11 05:40:35 -06:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-22 01:47:33 -06:00
|
|
|
/*
|
|
|
|
* Free all resources associated with a ttm.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int drm_destroy_ttm(drm_ttm_t * ttm)
|
|
|
|
{
|
|
|
|
|
|
|
|
int i;
|
|
|
|
struct page **cur_page;
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_ttm_backend_t *be;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
|
|
if (!ttm)
|
|
|
|
return 0;
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
be = ttm->be;
|
|
|
|
if (be) {
|
|
|
|
be->destroy(be);
|
|
|
|
ttm->be = NULL;
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ttm->pages) {
|
2006-09-12 04:01:00 -06:00
|
|
|
drm_buffer_manager_t *bm = &ttm->dev->bm;
|
2006-10-17 11:57:06 -06:00
|
|
|
if (ttm->page_flags & DRM_TTM_PAGE_UNCACHED)
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_set_caching(ttm, 0);
|
|
|
|
|
2006-08-22 01:47:33 -06:00
|
|
|
for (i = 0; i < ttm->num_pages; ++i) {
|
|
|
|
cur_page = ttm->pages + i;
|
|
|
|
if (*cur_page) {
|
2006-10-11 05:40:35 -06:00
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15))
|
2006-10-10 02:37:26 -06:00
|
|
|
unlock_page(*cur_page);
|
2006-10-11 05:40:35 -06:00
|
|
|
#else
|
|
|
|
ClearPageReserved(*cur_page);
|
|
|
|
#endif
|
2006-09-14 04:17:38 -06:00
|
|
|
if (page_count(*cur_page) != 1) {
|
|
|
|
DRM_ERROR("Erroneous page count. "
|
|
|
|
"Leaking pages.\n");
|
|
|
|
}
|
2006-10-10 02:37:26 -06:00
|
|
|
if (page_mapped(*cur_page)) {
|
|
|
|
DRM_ERROR("Erroneous map count. "
|
|
|
|
"Leaking page mappings.\n");
|
|
|
|
}
|
2006-12-27 07:32:09 -07:00
|
|
|
__free_page(*cur_page);
|
2006-10-17 11:40:57 -06:00
|
|
|
drm_free_memctl(PAGE_SIZE);
|
2006-09-12 04:01:00 -06:00
|
|
|
--bm->cur_pages;
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
}
|
2007-01-08 21:51:29 -07:00
|
|
|
ttm_free_pages(ttm);
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
2006-08-22 03:19:53 -06:00
|
|
|
|
2006-10-17 11:40:57 -06:00
|
|
|
drm_ctl_free(ttm, sizeof(*ttm), DRM_MEM_TTM);
|
2006-08-22 01:47:33 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-08 05:29:08 -07:00
|
|
|
struct page *drm_ttm_get_page(drm_ttm_t *ttm, int index)
|
|
|
|
{
|
|
|
|
struct page *p;
|
|
|
|
drm_buffer_manager_t *bm = &ttm->dev->bm;
|
|
|
|
|
|
|
|
p = ttm->pages[index];
|
|
|
|
if (!p) {
|
|
|
|
p = drm_ttm_alloc_page();
|
|
|
|
if (!p)
|
|
|
|
return NULL;
|
|
|
|
ttm->pages[index] = p;
|
|
|
|
++bm->cur_pages;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
static int drm_ttm_populate(drm_ttm_t * ttm)
|
2006-10-11 05:40:35 -06:00
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
unsigned long i;
|
|
|
|
drm_ttm_backend_t *be;
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
if (ttm->state != ttm_unpopulated)
|
2006-10-11 05:40:35 -06:00
|
|
|
return 0;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
be = ttm->be;
|
2006-10-17 11:57:06 -06:00
|
|
|
for (i = 0; i < ttm->num_pages; ++i) {
|
2007-02-08 05:29:08 -07:00
|
|
|
page = drm_ttm_get_page(ttm, i);
|
|
|
|
if (!page)
|
|
|
|
return -ENOMEM;
|
2006-10-11 05:40:35 -06:00
|
|
|
}
|
|
|
|
be->populate(be, ttm->num_pages, ttm->pages);
|
|
|
|
ttm->state = ttm_unbound;
|
|
|
|
return 0;
|
2006-10-17 11:57:06 -06:00
|
|
|
}
|
2006-10-11 05:40:35 -06:00
|
|
|
|
2006-08-22 01:47:33 -06:00
|
|
|
/*
|
|
|
|
* Initialize a ttm.
|
|
|
|
*/
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
drm_ttm_t *drm_ttm_init(struct drm_device *dev, unsigned long size)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_bo_driver_t *bo_driver = dev->driver->bo_driver;
|
2006-08-22 01:47:33 -06:00
|
|
|
drm_ttm_t *ttm;
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
if (!bo_driver)
|
2006-08-22 01:47:33 -06:00
|
|
|
return NULL;
|
|
|
|
|
2006-10-17 11:40:57 -06:00
|
|
|
ttm = drm_ctl_calloc(1, sizeof(*ttm), DRM_MEM_TTM);
|
2006-08-22 01:47:33 -06:00
|
|
|
if (!ttm)
|
|
|
|
return NULL;
|
|
|
|
|
2006-09-12 04:01:00 -06:00
|
|
|
ttm->dev = dev;
|
2006-08-22 01:47:33 -06:00
|
|
|
atomic_set(&ttm->vma_count, 0);
|
2006-08-27 11:03:20 -06:00
|
|
|
|
2006-08-22 03:57:08 -06:00
|
|
|
ttm->destroy = 0;
|
2006-08-22 01:47:33 -06:00
|
|
|
ttm->num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
ttm->page_flags = 0;
|
2006-10-17 11:40:57 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Account also for AGP module memory usage.
|
|
|
|
*/
|
|
|
|
|
2007-01-08 21:51:29 -07:00
|
|
|
ttm_alloc_pages(ttm);
|
2006-08-22 01:47:33 -06:00
|
|
|
if (!ttm->pages) {
|
|
|
|
drm_destroy_ttm(ttm);
|
|
|
|
DRM_ERROR("Failed allocating page table\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-10-12 04:09:16 -06:00
|
|
|
ttm->be = bo_driver->create_ttm_backend_entry(dev);
|
2006-10-11 05:40:35 -06:00
|
|
|
if (!ttm->be) {
|
2006-08-22 01:47:33 -06:00
|
|
|
drm_destroy_ttm(ttm);
|
2006-10-11 05:40:35 -06:00
|
|
|
DRM_ERROR("Failed creating ttm backend entry\n");
|
2006-08-22 01:47:33 -06:00
|
|
|
return NULL;
|
|
|
|
}
|
2006-10-11 05:40:35 -06:00
|
|
|
ttm->state = ttm_unpopulated;
|
2006-08-22 01:47:33 -06:00
|
|
|
return ttm;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-10-11 05:40:35 -06:00
|
|
|
* Unbind a ttm region from the aperture.
|
2006-08-22 01:47:33 -06:00
|
|
|
*/
|
|
|
|
|
2007-02-02 11:49:11 -07:00
|
|
|
void drm_ttm_evict(drm_ttm_t * ttm)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_ttm_backend_t *be = ttm->be;
|
2007-02-02 11:49:11 -07:00
|
|
|
int ret;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
2007-02-02 11:49:11 -07:00
|
|
|
if (ttm->state == ttm_bound) {
|
|
|
|
ret = be->unbind(be);
|
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
2007-02-02 06:47:44 -07:00
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
ttm->state = ttm_evicted;
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
void drm_ttm_fixup_caching(drm_ttm_t * ttm)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
if (ttm->state == ttm_evicted) {
|
|
|
|
drm_ttm_backend_t *be = ttm->be;
|
2006-10-12 04:09:16 -06:00
|
|
|
if (be->needs_ub_cache_adjust(be)) {
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_set_caching(ttm, 0);
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
2006-10-11 05:40:35 -06:00
|
|
|
ttm->state = ttm_unbound;
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-02 11:49:11 -07:00
|
|
|
void drm_ttm_unbind(drm_ttm_t * ttm)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
2006-10-17 11:57:06 -06:00
|
|
|
if (ttm->state == ttm_bound)
|
2007-02-02 11:49:11 -07:00
|
|
|
drm_ttm_evict(ttm);
|
2006-08-22 01:47:33 -06:00
|
|
|
|
2007-02-02 06:47:44 -07:00
|
|
|
drm_ttm_fixup_caching(ttm);
|
2006-08-22 01:47:33 -06:00
|
|
|
}
|
|
|
|
|
2006-10-17 11:57:06 -06:00
|
|
|
int drm_bind_ttm(drm_ttm_t * ttm, int cached, unsigned long aper_offset)
|
2006-08-22 01:47:33 -06:00
|
|
|
{
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
drm_ttm_backend_t *be;
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
if (!ttm)
|
2006-08-22 01:47:33 -06:00
|
|
|
return -EINVAL;
|
2006-10-11 05:40:35 -06:00
|
|
|
if (ttm->state == ttm_bound)
|
|
|
|
return 0;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
be = ttm->be;
|
2006-10-17 11:57:06 -06:00
|
|
|
|
2006-10-11 14:21:01 -06:00
|
|
|
ret = drm_ttm_populate(ttm);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2007-02-01 05:19:05 -07:00
|
|
|
|
2006-10-12 04:09:16 -06:00
|
|
|
if (ttm->state == ttm_unbound && !cached) {
|
2006-10-11 05:40:35 -06:00
|
|
|
drm_set_caching(ttm, DRM_TTM_PAGE_UNCACHED);
|
2006-10-11 14:21:01 -06:00
|
|
|
}
|
2007-02-02 11:49:11 -07:00
|
|
|
|
2006-10-12 04:09:16 -06:00
|
|
|
if ((ret = be->bind(be, aper_offset, cached))) {
|
2006-10-11 14:21:01 -06:00
|
|
|
ttm->state = ttm_evicted;
|
2006-08-22 01:47:33 -06:00
|
|
|
DRM_ERROR("Couldn't bind backend.\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-10-11 05:40:35 -06:00
|
|
|
ttm->aper_offset = aper_offset;
|
|
|
|
ttm->state = ttm_bound;
|
2006-08-22 01:47:33 -06:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|