1 /* radeon_mem.c -- Simple GART/fb memory manager for radeon -*- linux-c -*-
3 * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
5 * The Weather Channel (TM) funded Tungsten Graphics to develop the
6 * initial release of the Radeon 8500 driver under the XFree86 license.
7 * This notice must be preserved.
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
29 * Keith Whitwell <keith@tungstengraphics.com>
34 #include "radeon_drm.h"
35 #include "radeon_drv.h"
37 /* Very simple allocator for GART memory, working on a static range
38 * already mapped into each client's address space.
41 static struct mem_block
*split_block(struct mem_block
*p
, int start
, int size
,
44 /* Maybe cut off the start of an existing block */
45 if (start
> p
->start
) {
46 struct mem_block
*newblock
= drm_alloc(sizeof(*newblock
), DRM_MEM_BUFS
);
49 newblock
->start
= start
;
50 newblock
->size
= p
->size
- (start
- p
->start
);
51 newblock
->filp
= NULL
;
52 newblock
->next
= p
->next
;
54 p
->next
->prev
= newblock
;
56 p
->size
-= newblock
->size
;
60 /* Maybe cut off the end of an existing block */
62 struct mem_block
*newblock
= drm_alloc(sizeof(*newblock
), DRM_MEM_BUFS
);
65 newblock
->start
= start
+ size
;
66 newblock
->size
= p
->size
- size
;
67 newblock
->filp
= NULL
;
68 newblock
->next
= p
->next
;
70 p
->next
->prev
= newblock
;
76 /* Our block is in the middle */
81 static struct mem_block
*alloc_block( struct mem_block
*heap
, int size
,
82 int align2
, DRMFILE filp
)
85 int mask
= (1 << align2
)-1;
87 list_for_each(p
, heap
) {
88 int start
= (p
->start
+ mask
) & ~mask
;
89 if (p
->filp
== 0 && start
+ size
<= p
->start
+ p
->size
)
90 return split_block( p
, start
, size
, filp
);
96 static struct mem_block
*find_block( struct mem_block
*heap
, int start
)
100 list_for_each(p
, heap
)
101 if (p
->start
== start
)
108 static void free_block( struct mem_block
*p
)
112 /* Assumes a single contiguous range. Needs a special filp in
113 * 'heap' to stop it being subsumed.
115 if (p
->next
->filp
== 0) {
116 struct mem_block
*q
= p
->next
;
120 drm_free(q
, sizeof(*q
), DRM_MEM_BUFS
);
123 if (p
->prev
->filp
== 0) {
124 struct mem_block
*q
= p
->prev
;
128 drm_free(p
, sizeof(*q
), DRM_MEM_BUFS
);
132 /* Initialize. How to check for an uninitialized heap?
134 static int init_heap(struct mem_block
**heap
, int start
, int size
)
136 struct mem_block
*blocks
= drm_alloc(sizeof(*blocks
), DRM_MEM_BUFS
);
139 return DRM_ERR(ENOMEM
);
141 *heap
= drm_alloc(sizeof(**heap
), DRM_MEM_BUFS
);
143 drm_free( blocks
, sizeof(*blocks
), DRM_MEM_BUFS
);
144 return DRM_ERR(ENOMEM
);
147 blocks
->start
= start
;
150 blocks
->next
= blocks
->prev
= *heap
;
152 memset( *heap
, 0, sizeof(**heap
) );
153 (*heap
)->filp
= (DRMFILE
) -1;
154 (*heap
)->next
= (*heap
)->prev
= blocks
;
159 /* Free all blocks associated with the releasing file.
161 void radeon_mem_release( DRMFILE filp
, struct mem_block
*heap
)
165 if (!heap
|| !heap
->next
)
168 list_for_each(p
, heap
) {
173 /* Assumes a single contiguous range. Needs a special filp in
174 * 'heap' to stop it being subsumed.
176 list_for_each(p
, heap
) {
177 while (p
->filp
== 0 && p
->next
->filp
== 0) {
178 struct mem_block
*q
= p
->next
;
182 drm_free(q
, sizeof(*q
),DRM_MEM_DRIVER
);
189 void radeon_mem_takedown( struct mem_block
**heap
)
196 for (p
= (*heap
)->next
; p
!= *heap
; ) {
197 struct mem_block
*q
= p
;
199 drm_free(q
, sizeof(*q
),DRM_MEM_DRIVER
);
202 drm_free( *heap
, sizeof(**heap
),DRM_MEM_DRIVER
);
210 static struct mem_block
**get_heap( drm_radeon_private_t
*dev_priv
,
214 case RADEON_MEM_REGION_GART
:
215 return &dev_priv
->gart_heap
;
216 case RADEON_MEM_REGION_FB
:
217 return &dev_priv
->fb_heap
;
223 int radeon_mem_alloc( DRM_IOCTL_ARGS
)
226 drm_radeon_private_t
*dev_priv
= dev
->dev_private
;
227 drm_radeon_mem_alloc_t alloc
;
228 struct mem_block
*block
, **heap
;
231 DRM_ERROR( "%s called with no initialization\n", __FUNCTION__
);
232 return DRM_ERR(EINVAL
);
235 DRM_COPY_FROM_USER_IOCTL( alloc
, (drm_radeon_mem_alloc_t __user
*)data
,
238 heap
= get_heap( dev_priv
, alloc
.region
);
240 return DRM_ERR(EFAULT
);
242 /* Make things easier on ourselves: all allocations at least
245 if (alloc
.alignment
< 12)
246 alloc
.alignment
= 12;
248 block
= alloc_block( *heap
, alloc
.size
, alloc
.alignment
,
252 return DRM_ERR(ENOMEM
);
254 if ( DRM_COPY_TO_USER( alloc
.region_offset
, &block
->start
,
256 DRM_ERROR( "copy_to_user\n" );
257 return DRM_ERR(EFAULT
);
265 int radeon_mem_free( DRM_IOCTL_ARGS
)
268 drm_radeon_private_t
*dev_priv
= dev
->dev_private
;
269 drm_radeon_mem_free_t memfree
;
270 struct mem_block
*block
, **heap
;
273 DRM_ERROR( "%s called with no initialization\n", __FUNCTION__
);
274 return DRM_ERR(EINVAL
);
277 DRM_COPY_FROM_USER_IOCTL( memfree
, (drm_radeon_mem_free_t __user
*)data
,
280 heap
= get_heap( dev_priv
, memfree
.region
);
282 return DRM_ERR(EFAULT
);
284 block
= find_block( *heap
, memfree
.region_offset
);
286 return DRM_ERR(EFAULT
);
288 if (block
->filp
!= filp
)
289 return DRM_ERR(EPERM
);
295 int radeon_mem_init_heap( DRM_IOCTL_ARGS
)
298 drm_radeon_private_t
*dev_priv
= dev
->dev_private
;
299 drm_radeon_mem_init_heap_t initheap
;
300 struct mem_block
**heap
;
303 DRM_ERROR( "%s called with no initialization\n", __FUNCTION__
);
304 return DRM_ERR(EINVAL
);
307 DRM_COPY_FROM_USER_IOCTL( initheap
, (drm_radeon_mem_init_heap_t __user
*)data
,
310 heap
= get_heap( dev_priv
, initheap
.region
);
312 return DRM_ERR(EFAULT
);
315 DRM_ERROR("heap already initialized?");
316 return DRM_ERR(EFAULT
);
319 return init_heap( heap
, initheap
.start
, initheap
.size
);