blob: 309e585a5442ee4dfb87e51eac7c4767bcb52dd2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_drawable.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IOCTLs for drawables
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +10007 * \author Michel Dänzer <michel@tungstengraphics.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10/*
11 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
12 *
13 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
14 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100015 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, North Dakota.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * All Rights Reserved.
17 *
18 * Permission is hereby granted, free of charge, to any person obtaining a
19 * copy of this software and associated documentation files (the "Software"),
20 * to deal in the Software without restriction, including without limitation
21 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * and/or sell copies of the Software, and to permit persons to whom the
23 * Software is furnished to do so, subject to the following conditions:
24 *
25 * The above copyright notice and this permission notice (including the next
26 * paragraph) shall be included in all copies or substantial portions of the
27 * Software.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
32 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
33 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
34 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
35 * OTHER DEALINGS IN THE SOFTWARE.
36 */
37
38#include "drmP.h"
39
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100040/**
41 * Allocate drawable ID and memory to store information about it.
42 */
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100043int drm_adddraw(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100045 DRM_DEVICE;
46 unsigned long irqflags;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100047 int i, j;
48 u32 *bitfield = dev->drw_bitfield;
49 unsigned int bitfield_length = dev->drw_bitfield_length;
Dave Airliec60ce622007-07-11 15:27:12 +100050 struct drm_drawable_info **info = dev->drw_info;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100051 unsigned int info_length = dev->drw_info_length;
Dave Airliec60ce622007-07-11 15:27:12 +100052 struct drm_draw draw;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100054 for (i = 0, j = 0; i < bitfield_length; i++) {
55 if (bitfield[i] == ~0)
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100056 continue;
57
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100058 for (; j < 8 * sizeof(*bitfield); j++)
59 if (!(bitfield[i] & (1 << j)))
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100060 goto done;
61 }
62done:
63
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100064 if (i == bitfield_length) {
65 bitfield_length++;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100066
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100067 bitfield = drm_alloc(bitfield_length * sizeof(*bitfield),
68 DRM_MEM_BUFS);
69
70 if (!bitfield) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100071 DRM_ERROR("Failed to allocate new drawable bitfield\n");
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100072 return DRM_ERR(ENOMEM);
73 }
74
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100075 if (8 * sizeof(*bitfield) * bitfield_length > info_length) {
76 info_length += 8 * sizeof(*bitfield);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100077
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100078 info = drm_alloc(info_length * sizeof(*info),
79 DRM_MEM_BUFS);
80
81 if (!info) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100082 DRM_ERROR("Failed to allocate new drawable info"
83 " array\n");
84
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100085 drm_free(bitfield,
86 bitfield_length * sizeof(*bitfield),
87 DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100088 return DRM_ERR(ENOMEM);
89 }
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100090 }
91
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100092 bitfield[i] = 0;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100093 }
94
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +100095 draw.handle = i * 8 * sizeof(*bitfield) + j + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 DRM_DEBUG("%d\n", draw.handle);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100097
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +100098 spin_lock_irqsave(&dev->drw_lock, irqflags);
99
100 bitfield[i] |= 1 << j;
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000101 info[draw.handle - 1] = NULL;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000102
103 if (bitfield != dev->drw_bitfield) {
104 memcpy(bitfield, dev->drw_bitfield, dev->drw_bitfield_length *
105 sizeof(*bitfield));
106 drm_free(dev->drw_bitfield, sizeof(*bitfield) *
107 dev->drw_bitfield_length, DRM_MEM_BUFS);
108 dev->drw_bitfield = bitfield;
109 dev->drw_bitfield_length = bitfield_length;
110 }
111
112 if (info != dev->drw_info) {
113 memcpy(info, dev->drw_info, dev->drw_info_length *
114 sizeof(*info));
115 drm_free(dev->drw_info, sizeof(*info) * dev->drw_info_length,
116 DRM_MEM_BUFS);
117 dev->drw_info = info;
118 dev->drw_info_length = info_length;
119 }
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000120
121 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
122
Dave Airliec60ce622007-07-11 15:27:12 +1000123 DRM_COPY_TO_USER_IOCTL((struct drm_draw __user *)data, draw, sizeof(draw));
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 0;
126}
127
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000128/**
129 * Free drawable ID and memory to store information about it.
130 */
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000131int drm_rmdraw(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000133 DRM_DEVICE;
Dave Airliec60ce622007-07-11 15:27:12 +1000134 struct drm_draw draw;
=?utf-8?q?Felix_K=C3=BChling?=507c0182006-10-24 23:28:23 +1000135 int id, idx;
136 unsigned int shift;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000137 unsigned long irqflags;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000138 u32 *bitfield = dev->drw_bitfield;
139 unsigned int bitfield_length = dev->drw_bitfield_length;
Dave Airliec60ce622007-07-11 15:27:12 +1000140 struct drm_drawable_info **info = dev->drw_info;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000141 unsigned int info_length = dev->drw_info_length;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000142
Dave Airliec60ce622007-07-11 15:27:12 +1000143 DRM_COPY_FROM_USER_IOCTL(draw, (struct drm_draw __user *) data,
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000144 sizeof(draw));
145
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000146 id = draw.handle - 1;
147 idx = id / (8 * sizeof(*bitfield));
148 shift = id % (8 * sizeof(*bitfield));
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000149
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000150 if (idx < 0 || idx >= bitfield_length ||
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000151 !(bitfield[idx] & (1 << shift))) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000152 DRM_DEBUG("No such drawable %d\n", draw.handle);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000153 return 0;
154 }
155
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000156 spin_lock_irqsave(&dev->drw_lock, irqflags);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000157
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000158 bitfield[idx] &= ~(1 << shift);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000159
160 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
161
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000162 if (info[id]) {
163 drm_free(info[id]->rects, info[id]->num_rects *
Dave Airliec60ce622007-07-11 15:27:12 +1000164 sizeof(struct drm_clip_rect), DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000165 drm_free(info[id], sizeof(**info), DRM_MEM_BUFS);
166 }
167
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000168 /* Can we shrink the arrays? */
169 if (idx == bitfield_length - 1) {
170 while (idx >= 0 && !bitfield[idx])
171 --idx;
172
173 bitfield_length = idx + 1;
174
Michel Dänzerc4814f92007-05-26 04:37:08 +1000175 bitfield = NULL;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000176
Michel Dänzerc4814f92007-05-26 04:37:08 +1000177 if (bitfield_length) {
178 if (bitfield_length != dev->drw_bitfield_length)
179 bitfield = drm_alloc(bitfield_length *
180 sizeof(*bitfield),
181 DRM_MEM_BUFS);
182
183 if (!bitfield) {
184 bitfield = dev->drw_bitfield;
185 bitfield_length = dev->drw_bitfield_length;
186 }
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000187 }
188 }
189
190 if (bitfield != dev->drw_bitfield) {
191 info_length = 8 * sizeof(*bitfield) * bitfield_length;
192
Michel Dänzerc4814f92007-05-26 04:37:08 +1000193 if (info_length) {
194 info = drm_alloc(info_length * sizeof(*info),
195 DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000196
Michel Dänzerc4814f92007-05-26 04:37:08 +1000197 if (!info) {
198 info = dev->drw_info;
199 info_length = dev->drw_info_length;
200 }
201 } else
202 info = NULL;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000203
204 spin_lock_irqsave(&dev->drw_lock, irqflags);
205
Michel Dänzerc4814f92007-05-26 04:37:08 +1000206 if (bitfield)
207 memcpy(bitfield, dev->drw_bitfield, bitfield_length *
208 sizeof(*bitfield));
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000209 drm_free(dev->drw_bitfield, sizeof(*bitfield) *
210 dev->drw_bitfield_length, DRM_MEM_BUFS);
211 dev->drw_bitfield = bitfield;
212 dev->drw_bitfield_length = bitfield_length;
213
214 if (info != dev->drw_info) {
Michel Dänzerc4814f92007-05-26 04:37:08 +1000215 if (info)
216 memcpy(info, dev->drw_info, info_length *
217 sizeof(*info));
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000218 drm_free(dev->drw_info, sizeof(*info) *
219 dev->drw_info_length, DRM_MEM_BUFS);
220 dev->drw_info = info;
221 dev->drw_info_length = info_length;
222 }
223
224 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
225 }
226
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000227 DRM_DEBUG("%d\n", draw.handle);
228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000230
231int drm_update_drawable_info(DRM_IOCTL_ARGS) {
232 DRM_DEVICE;
Dave Airliec60ce622007-07-11 15:27:12 +1000233 struct drm_update_draw update;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000234 unsigned int id, idx, shift;
235 u32 *bitfield = dev->drw_bitfield;
236 unsigned long irqflags, bitfield_length = dev->drw_bitfield_length;
Dave Airliec60ce622007-07-11 15:27:12 +1000237 struct drm_drawable_info *info;
238 struct drm_clip_rect *rects;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000239 int err;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000240
Dave Airliec60ce622007-07-11 15:27:12 +1000241 DRM_COPY_FROM_USER_IOCTL(update, (struct drm_update_draw __user *) data,
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000242 sizeof(update));
243
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000244 id = update.handle - 1;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000245 idx = id / (8 * sizeof(*bitfield));
246 shift = id % (8 * sizeof(*bitfield));
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000247
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000248 if (idx < 0 || idx >= bitfield_length ||
249 !(bitfield[idx] & (1 << shift))) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000250 DRM_ERROR("No such drawable %d\n", update.handle);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000251 return DRM_ERR(EINVAL);
252 }
253
254 info = dev->drw_info[id];
255
256 if (!info) {
Dave Airliec60ce622007-07-11 15:27:12 +1000257 info = drm_calloc(1, sizeof(struct drm_drawable_info), DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000258
259 if (!info) {
260 DRM_ERROR("Failed to allocate drawable info memory\n");
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000261 return DRM_ERR(ENOMEM);
262 }
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000263 }
264
265 switch (update.type) {
266 case DRM_DRAWABLE_CLIPRECTS:
267 if (update.num != info->num_rects) {
Dave Airliec60ce622007-07-11 15:27:12 +1000268 rects = drm_alloc(update.num * sizeof(struct drm_clip_rect),
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000269 DRM_MEM_BUFS);
270 } else
271 rects = info->rects;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000272
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000273 if (update.num && !rects) {
274 DRM_ERROR("Failed to allocate cliprect memory\n");
275 err = DRM_ERR(ENOMEM);
276 goto error;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000277 }
278
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000279 if (update.num && DRM_COPY_FROM_USER(rects,
Dave Airliec60ce622007-07-11 15:27:12 +1000280 (struct drm_clip_rect __user *)
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000281 (unsigned long)update.data,
282 update.num *
283 sizeof(*rects))) {
284 DRM_ERROR("Failed to copy cliprects from userspace\n");
285 err = DRM_ERR(EFAULT);
286 goto error;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000287 }
288
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000289 spin_lock_irqsave(&dev->drw_lock, irqflags);
290
291 if (rects != info->rects) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000292 drm_free(info->rects, info->num_rects *
Dave Airliec60ce622007-07-11 15:27:12 +1000293 sizeof(struct drm_clip_rect), DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000294 }
295
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000296 info->rects = rects;
297 info->num_rects = update.num;
298 dev->drw_info[id] = info;
299
300 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
301
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000302 DRM_DEBUG("Updated %d cliprects for drawable %d\n",
303 info->num_rects, id);
304 break;
305 default:
306 DRM_ERROR("Invalid update type %d\n", update.type);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000307 return DRM_ERR(EINVAL);
308 }
309
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000310 return 0;
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000311
312error:
313 if (!dev->drw_info[id])
314 drm_free(info, sizeof(*info), DRM_MEM_BUFS);
315 else if (rects != dev->drw_info[id]->rects)
316 drm_free(rects, update.num *
Dave Airliec60ce622007-07-11 15:27:12 +1000317 sizeof(struct drm_clip_rect), DRM_MEM_BUFS);
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000318
319 return err;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000320}
321
322/**
323 * Caller must hold the drawable spinlock!
324 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000325struct drm_drawable_info *drm_get_drawable_info(struct drm_device *dev, drm_drawable_t id) {
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000326 u32 *bitfield = dev->drw_bitfield;
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000327 unsigned int idx, shift;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000328
=?utf-8?q?Michel_D=C3=A4nzer?=cdec2f82006-10-24 23:20:15 +1000329 id--;
330 idx = id / (8 * sizeof(*bitfield));
331 shift = id % (8 * sizeof(*bitfield));
332
333 if (idx < 0 || idx >= dev->drw_bitfield_length ||
=?utf-8?q?Michel_D=C3=A4nzer?=b03ed6f2006-10-24 23:18:49 +1000334 !(bitfield[idx] & (1 << shift))) {
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000335 DRM_DEBUG("No such drawable %d\n", id);
336 return NULL;
337 }
338
339 return dev->drw_info[id];
340}
341EXPORT_SYMBOL(drm_get_drawable_info);