2005-04-15 21:02:52 -06:00
|
|
|
/*-
|
|
|
|
*Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
|
2002-01-27 11:23:04 -07:00
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
|
|
|
* 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, sublicense,
|
|
|
|
* 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 above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* 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 NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* VA LINUX SYSTEMS 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.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Rickard E. (Rik) Faith <faith@valinux.com>
|
|
|
|
* Gareth Hughes <gareth@valinux.com>
|
2003-03-11 13:51:28 -07:00
|
|
|
*
|
2002-01-27 11:23:04 -07:00
|
|
|
*/
|
|
|
|
|
2007-08-14 15:41:24 -06:00
|
|
|
/** @file drm_memory.c
|
|
|
|
* Wrappers for kernel memory allocation routines, and MTRR management support.
|
|
|
|
*
|
|
|
|
* This file previously implemented a memory consumption tracking system using
|
|
|
|
* the "area" argument for various different types of allocations, but that
|
|
|
|
* has been stripped out for now.
|
|
|
|
*/
|
|
|
|
|
2002-01-27 11:23:04 -07:00
|
|
|
#include "drmP.h"
|
|
|
|
|
2008-10-10 11:06:22 -06:00
|
|
|
MALLOC_DEFINE(DRM_MEM_DMA, "drm_dma", "DRM DMA Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_SAREA, "drm_sarea", "DRM SAREA Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_DRIVER, "drm_driver", "DRM DRIVER Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_MAGIC, "drm_magic", "DRM MAGIC Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_IOCTLS, "drm_ioctls", "DRM IOCTL Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_MAPS, "drm_maps", "DRM MAP Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_BUFS, "drm_bufs", "DRM BUFFER Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_SEGS, "drm_segs", "DRM SEGMENTS Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_PAGES, "drm_pages", "DRM PAGES Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_FILES, "drm_files", "DRM FILE Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_QUEUES, "drm_queues", "DRM QUEUE Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_CMDS, "drm_cmds", "DRM COMMAND Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_MAPPINGS, "drm_mapping", "DRM MAPPING Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_BUFLISTS, "drm_buflists", "DRM BUFLISTS Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_AGPLISTS, "drm_agplists", "DRM AGPLISTS Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_CTXBITMAP, "drm_ctxbitmap",
|
|
|
|
"DRM CTXBITMAP Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_SGLISTS, "drm_sglists", "DRM SGLISTS Data Structures");
|
|
|
|
MALLOC_DEFINE(DRM_MEM_DRAWABLE, "drm_drawable", "DRM DRAWABLE Data Structures");
|
2002-01-27 11:23:04 -07:00
|
|
|
|
2004-11-05 18:41:47 -07:00
|
|
|
void drm_mem_init(void)
|
2002-01-27 11:23:04 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-11-05 18:41:47 -07:00
|
|
|
void drm_mem_uninit(void)
|
2003-02-21 16:23:09 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-09-07 10:44:02 -06:00
|
|
|
void *drm_ioremap_wc(struct drm_device *dev, drm_local_map_t *map)
|
|
|
|
{
|
|
|
|
return pmap_mapdev_attr(map->offset, map->size, PAT_WRITE_COMBINING);
|
|
|
|
}
|
|
|
|
|
2008-05-27 15:12:51 -06:00
|
|
|
void *drm_ioremap(struct drm_device *dev, drm_local_map_t *map)
|
2002-01-27 11:23:04 -07:00
|
|
|
{
|
2003-04-26 16:18:39 -06:00
|
|
|
return pmap_mapdev(map->offset, map->size);
|
2002-03-06 12:30:45 -07:00
|
|
|
}
|
|
|
|
|
2004-11-05 18:41:47 -07:00
|
|
|
void drm_ioremapfree(drm_local_map_t *map)
|
2002-01-27 11:23:04 -07:00
|
|
|
{
|
2003-04-26 16:18:39 -06:00
|
|
|
pmap_unmapdev((vm_offset_t) map->handle, map->size);
|
2002-01-27 11:23:04 -07:00
|
|
|
}
|
|
|
|
|
2003-10-19 18:55:56 -06:00
|
|
|
int
|
2004-11-05 18:41:47 -07:00
|
|
|
drm_mtrr_add(unsigned long offset, size_t size, int flags)
|
2003-10-19 18:55:56 -06:00
|
|
|
{
|
|
|
|
int act;
|
|
|
|
struct mem_range_desc mrdesc;
|
|
|
|
|
|
|
|
mrdesc.mr_base = offset;
|
|
|
|
mrdesc.mr_len = size;
|
|
|
|
mrdesc.mr_flags = flags;
|
|
|
|
act = MEMRANGE_SET_UPDATE;
|
2004-11-05 18:41:47 -07:00
|
|
|
strlcpy(mrdesc.mr_owner, "drm", sizeof(mrdesc.mr_owner));
|
2003-10-19 18:55:56 -06:00
|
|
|
return mem_range_attr_set(&mrdesc, &act);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-11-08 13:25:00 -07:00
|
|
|
drm_mtrr_del(int __unused handle, unsigned long offset, size_t size, int flags)
|
2003-10-19 18:55:56 -06:00
|
|
|
{
|
|
|
|
int act;
|
|
|
|
struct mem_range_desc mrdesc;
|
|
|
|
|
|
|
|
mrdesc.mr_base = offset;
|
|
|
|
mrdesc.mr_len = size;
|
|
|
|
mrdesc.mr_flags = flags;
|
|
|
|
act = MEMRANGE_SET_REMOVE;
|
2004-11-05 18:41:47 -07:00
|
|
|
strlcpy(mrdesc.mr_owner, "drm", sizeof(mrdesc.mr_owner));
|
2003-10-19 18:55:56 -06:00
|
|
|
return mem_range_attr_set(&mrdesc, &act);
|
|
|
|
}
|