blob: ae0ba3501880192b355561f80dcb876a327634d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "drmP.h"
30#include "drm.h"
31#include "i915_drm.h"
32#include "i915_drv.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* Really want an OS-independent resettable timer. Would like to have
35 * this loop run for (eg) 3 sec, but have the timer reset every time
36 * the head pointer changes, so that EBUSY only happens if the ring
37 * actually stalls for (eg) 3 seconds.
38 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100039int i915_wait_ring(struct drm_device * dev, int n, const char *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 drm_i915_private_t *dev_priv = dev->dev_private;
42 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
43 u32 last_head = I915_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
44 int i;
45
46 for (i = 0; i < 10000; i++) {
47 ring->head = I915_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
48 ring->space = ring->head - (ring->tail + 8);
49 if (ring->space < 0)
50 ring->space += ring->Size;
51 if (ring->space >= n)
52 return 0;
53
54 dev_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
55
56 if (ring->head != last_head)
57 i = 0;
58
59 last_head = ring->head;
60 }
61
Eric Anholt20caafa2007-08-25 19:22:43 +100062 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Dave Airlie84b1fd12007-07-11 15:53:27 +100065void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 drm_i915_private_t *dev_priv = dev->dev_private;
68 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
69
70 ring->head = I915_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
71 ring->tail = I915_READ(LP_RING + RING_TAIL) & TAIL_ADDR;
72 ring->space = ring->head - (ring->tail + 8);
73 if (ring->space < 0)
74 ring->space += ring->Size;
75
76 if (ring->head == ring->tail)
77 dev_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
78}
79
Dave Airlie84b1fd12007-07-11 15:53:27 +100080static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +100082 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* Make sure interrupts are disabled here because the uninstall ioctl
84 * may not have been called from userspace and after dev_private
85 * is freed, it's too late.
86 */
87 if (dev->irq)
Dave Airlieb5e89ed2005-09-25 14:28:13 +100088 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Jesse Barnesba8bbcf2007-11-22 14:14:14 +100090 if (dev_priv->ring.virtual_start) {
91 drm_core_ioremapfree(&dev_priv->ring.map, dev);
92 dev_priv->ring.virtual_start = 0;
93 dev_priv->ring.map.handle = 0;
94 dev_priv->ring.map.size = 0;
95 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Jesse Barnesba8bbcf2007-11-22 14:14:14 +100097 if (dev_priv->status_page_dmah) {
98 drm_pci_free(dev, dev_priv->status_page_dmah);
99 dev_priv->status_page_dmah = NULL;
100 /* Need to rewrite hardware status page */
101 I915_WRITE(0x02080, 0x1ffff000);
102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000104 if (dev_priv->status_gfx_addr) {
105 dev_priv->status_gfx_addr = 0;
106 drm_core_ioremapfree(&dev_priv->hws_map, dev);
107 I915_WRITE(0x2080, 0x1ffff000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
110 return 0;
111}
112
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000113static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000115 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Dave Airlieda509d72007-05-26 05:04:51 +1000117 dev_priv->sarea = drm_getsarea(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (!dev_priv->sarea) {
119 DRM_ERROR("can not find sarea!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 i915_dma_cleanup(dev);
Eric Anholt20caafa2007-08-25 19:22:43 +1000121 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
124 dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset);
125 if (!dev_priv->mmio_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 i915_dma_cleanup(dev);
127 DRM_ERROR("can not find mmio map!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000128 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
131 dev_priv->sarea_priv = (drm_i915_sarea_t *)
132 ((u8 *) dev_priv->sarea->handle + init->sarea_priv_offset);
133
134 dev_priv->ring.Start = init->ring_start;
135 dev_priv->ring.End = init->ring_end;
136 dev_priv->ring.Size = init->ring_size;
137 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
138
139 dev_priv->ring.map.offset = init->ring_start;
140 dev_priv->ring.map.size = init->ring_size;
141 dev_priv->ring.map.type = 0;
142 dev_priv->ring.map.flags = 0;
143 dev_priv->ring.map.mtrr = 0;
144
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000145 drm_core_ioremap(&dev_priv->ring.map, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (dev_priv->ring.map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 i915_dma_cleanup(dev);
149 DRM_ERROR("can not ioremap virtual address for"
150 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000151 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
155
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000156 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 dev_priv->back_offset = init->back_offset;
158 dev_priv->front_offset = init->front_offset;
159 dev_priv->current_page = 0;
160 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* Allow hardware batchbuffers unless told otherwise.
163 */
164 dev_priv->allow_batchbuffer = 1;
165
166 /* Program Hardware Status Page */
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000167 if (!I915_NEED_GFX_HWS(dev)) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000168 dev_priv->status_page_dmah =
169 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000171 if (!dev_priv->status_page_dmah) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000172 i915_dma_cleanup(dev);
173 DRM_ERROR("Can not allocate hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000174 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000175 }
176 dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr;
177 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
178
179 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
180 I915_WRITE(0x02080, dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 DRM_DEBUG("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184}
185
Dave Airlie84b1fd12007-07-11 15:53:27 +1000186static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
189
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700190 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (!dev_priv->sarea) {
193 DRM_ERROR("can not find sarea!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000194 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
197 if (!dev_priv->mmio_map) {
198 DRM_ERROR("can not find mmio map!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000199 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 if (dev_priv->ring.map.handle == NULL) {
203 DRM_ERROR("can not ioremap virtual address for"
204 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000205 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 /* Program Hardware Status Page */
209 if (!dev_priv->hw_status_page) {
210 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000211 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
214
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000215 if (dev_priv->status_gfx_addr != 0)
216 I915_WRITE(0x02080, dev_priv->status_gfx_addr);
217 else
218 I915_WRITE(0x02080, dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 DRM_DEBUG("Enabled hardware status page\n");
220
221 return 0;
222}
223
Eric Anholtc153f452007-09-03 12:06:45 +1000224static int i915_dma_init(struct drm_device *dev, void *data,
225 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Eric Anholtc153f452007-09-03 12:06:45 +1000227 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 int retcode = 0;
229
Eric Anholtc153f452007-09-03 12:06:45 +1000230 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000232 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 break;
234 case I915_CLEANUP_DMA:
235 retcode = i915_dma_cleanup(dev);
236 break;
237 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100238 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 break;
240 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000241 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243 }
244
245 return retcode;
246}
247
248/* Implement basically the same security restrictions as hardware does
249 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
250 *
251 * Most of the calculations below involve calculating the size of a
252 * particular instruction. It's important to get the size right as
253 * that tells us where the next instruction to check is. Any illegal
254 * instruction detected will be given a size of zero, which is a
255 * signal to abort the rest of the buffer.
256 */
257static int do_validate_cmd(int cmd)
258{
259 switch (((cmd >> 29) & 0x7)) {
260 case 0x0:
261 switch ((cmd >> 23) & 0x3f) {
262 case 0x0:
263 return 1; /* MI_NOOP */
264 case 0x4:
265 return 1; /* MI_FLUSH */
266 default:
267 return 0; /* disallow everything else */
268 }
269 break;
270 case 0x1:
271 return 0; /* reserved */
272 case 0x2:
273 return (cmd & 0xff) + 2; /* 2d commands */
274 case 0x3:
275 if (((cmd >> 24) & 0x1f) <= 0x18)
276 return 1;
277
278 switch ((cmd >> 24) & 0x1f) {
279 case 0x1c:
280 return 1;
281 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 case 0x3:
284 return (cmd & 0x1f) + 2;
285 case 0x4:
286 return (cmd & 0xf) + 2;
287 default:
288 return (cmd & 0xffff) + 2;
289 }
290 case 0x1e:
291 if (cmd & (1 << 23))
292 return (cmd & 0xffff) + 1;
293 else
294 return 1;
295 case 0x1f:
296 if ((cmd & (1 << 23)) == 0) /* inline vertices */
297 return (cmd & 0x1ffff) + 2;
298 else if (cmd & (1 << 17)) /* indirect random */
299 if ((cmd & 0xffff) == 0)
300 return 0; /* unknown length, too hard */
301 else
302 return (((cmd & 0xffff) + 1) / 2) + 1;
303 else
304 return 2; /* indirect sequential */
305 default:
306 return 0;
307 }
308 default:
309 return 0;
310 }
311
312 return 0;
313}
314
315static int validate_cmd(int cmd)
316{
317 int ret = do_validate_cmd(cmd);
318
Dave Airliebc5f4522007-11-05 12:50:58 +1000319/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 return ret;
322}
323
Dave Airlie84b1fd12007-07-11 15:53:27 +1000324static int i915_emit_cmds(struct drm_device * dev, int __user * buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 drm_i915_private_t *dev_priv = dev->dev_private;
327 int i;
328 RING_LOCALS;
329
Dave Airliede227f52006-01-25 15:31:43 +1100330 if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000331 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100332
Alan Hourihanec29b6692006-08-12 16:29:24 +1000333 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 for (i = 0; i < dwords;) {
336 int cmd, sz;
337
338 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i], sizeof(cmd)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000339 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 OUT_RING(cmd);
345
346 while (++i, --sz) {
347 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i],
348 sizeof(cmd))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 OUT_RING(cmd);
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354
Dave Airliede227f52006-01-25 15:31:43 +1100355 if (dwords & 1)
356 OUT_RING(0);
357
358 ADVANCE_LP_RING();
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
Dave Airlie84b1fd12007-07-11 15:53:27 +1000363static int i915_emit_box(struct drm_device * dev,
Dave Airliec60ce622007-07-11 15:27:12 +1000364 struct drm_clip_rect __user * boxes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int i, int DR1, int DR4)
366{
367 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000368 struct drm_clip_rect box;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 RING_LOCALS;
370
371 if (DRM_COPY_FROM_USER_UNCHECKED(&box, &boxes[i], sizeof(box))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000372 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
376 DRM_ERROR("Bad box %d,%d..%d,%d\n",
377 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000378 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
Alan Hourihanec29b6692006-08-12 16:29:24 +1000381 if (IS_I965G(dev)) {
382 BEGIN_LP_RING(4);
383 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
384 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000385 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000386 OUT_RING(DR4);
387 ADVANCE_LP_RING();
388 } else {
389 BEGIN_LP_RING(6);
390 OUT_RING(GFX_OP_DRAWRECT_INFO);
391 OUT_RING(DR1);
392 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
393 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
394 OUT_RING(DR4);
395 OUT_RING(0);
396 ADVANCE_LP_RING();
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 return 0;
400}
401
Alan Hourihanec29b6692006-08-12 16:29:24 +1000402/* XXX: Emitting the counter should really be moved to part of the IRQ
403 * emit. For now, do it in both places:
404 */
405
Dave Airlie84b1fd12007-07-11 15:53:27 +1000406static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100407{
408 drm_i915_private_t *dev_priv = dev->dev_private;
409 RING_LOCALS;
410
Dave Airlieaf6061a2008-05-07 12:15:39 +1000411 dev_priv->sarea_priv->last_enqueue = ++dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +1000412
Dave Airlieaf6061a2008-05-07 12:15:39 +1000413 if (dev_priv->counter > 0x7FFFFFFFUL)
414 dev_priv->sarea_priv->last_enqueue = dev_priv->counter = 1;
Dave Airliede227f52006-01-25 15:31:43 +1100415
416 BEGIN_LP_RING(4);
417 OUT_RING(CMD_STORE_DWORD_IDX);
418 OUT_RING(20);
419 OUT_RING(dev_priv->counter);
420 OUT_RING(0);
421 ADVANCE_LP_RING();
422}
423
Dave Airlie84b1fd12007-07-11 15:53:27 +1000424static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 drm_i915_cmdbuffer_t * cmd)
426{
427 int nbox = cmd->num_cliprects;
428 int i = 0, count, ret;
429
430 if (cmd->sz & 0x3) {
431 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000432 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 i915_kernel_lost_context(dev);
436
437 count = nbox ? nbox : 1;
438
439 for (i = 0; i < count; i++) {
440 if (i < nbox) {
441 ret = i915_emit_box(dev, cmd->cliprects, i,
442 cmd->DR1, cmd->DR4);
443 if (ret)
444 return ret;
445 }
446
447 ret = i915_emit_cmds(dev, (int __user *)cmd->buf, cmd->sz / 4);
448 if (ret)
449 return ret;
450 }
451
Dave Airliede227f52006-01-25 15:31:43 +1100452 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
Dave Airlie84b1fd12007-07-11 15:53:27 +1000456static int i915_dispatch_batchbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 drm_i915_batchbuffer_t * batch)
458{
459 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000460 struct drm_clip_rect __user *boxes = batch->cliprects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int nbox = batch->num_cliprects;
462 int i = 0, count;
463 RING_LOCALS;
464
465 if ((batch->start | batch->used) & 0x7) {
466 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000467 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 i915_kernel_lost_context(dev);
471
472 count = nbox ? nbox : 1;
473
474 for (i = 0; i < count; i++) {
475 if (i < nbox) {
476 int ret = i915_emit_box(dev, boxes, i,
477 batch->DR1, batch->DR4);
478 if (ret)
479 return ret;
480 }
481
Keith Packard0790d5e2008-07-30 12:28:47 -0700482 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000484 if (IS_I965G(dev)) {
485 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
486 OUT_RING(batch->start);
487 } else {
488 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
489 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ADVANCE_LP_RING();
492 } else {
493 BEGIN_LP_RING(4);
494 OUT_RING(MI_BATCH_BUFFER);
495 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
496 OUT_RING(batch->start + batch->used - 4);
497 OUT_RING(0);
498 ADVANCE_LP_RING();
499 }
500 }
501
Dave Airliede227f52006-01-25 15:31:43 +1100502 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 return 0;
505}
506
Dave Airlieaf6061a2008-05-07 12:15:39 +1000507static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 drm_i915_private_t *dev_priv = dev->dev_private;
510 RING_LOCALS;
511
Dave Airlieaf6061a2008-05-07 12:15:39 +1000512 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
Harvey Harrison80a914d2008-10-15 22:01:25 -0700513 __func__,
Dave Airlieaf6061a2008-05-07 12:15:39 +1000514 dev_priv->current_page,
515 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Dave Airlieaf6061a2008-05-07 12:15:39 +1000517 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Dave Airlieaf6061a2008-05-07 12:15:39 +1000519 BEGIN_LP_RING(2);
520 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
521 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 ADVANCE_LP_RING();
523
Dave Airlieaf6061a2008-05-07 12:15:39 +1000524 BEGIN_LP_RING(6);
525 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
526 OUT_RING(0);
527 if (dev_priv->current_page == 0) {
528 OUT_RING(dev_priv->back_offset);
529 dev_priv->current_page = 1;
530 } else {
531 OUT_RING(dev_priv->front_offset);
532 dev_priv->current_page = 0;
533 }
534 OUT_RING(0);
535 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000536
Dave Airlieaf6061a2008-05-07 12:15:39 +1000537 BEGIN_LP_RING(2);
538 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
539 OUT_RING(0);
540 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000541
Dave Airlieaf6061a2008-05-07 12:15:39 +1000542 dev_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000543
Dave Airlieaf6061a2008-05-07 12:15:39 +1000544 BEGIN_LP_RING(4);
545 OUT_RING(CMD_STORE_DWORD_IDX);
546 OUT_RING(20);
547 OUT_RING(dev_priv->counter);
548 OUT_RING(0);
549 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000550
Dave Airlieaf6061a2008-05-07 12:15:39 +1000551 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Dave Airlie84b1fd12007-07-11 15:53:27 +1000555static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 drm_i915_private_t *dev_priv = dev->dev_private;
558
559 i915_kernel_lost_context(dev);
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700560 return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Eric Anholtc153f452007-09-03 12:06:45 +1000563static int i915_flush_ioctl(struct drm_device *dev, void *data,
564 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000566 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 return i915_quiescent(dev);
569}
570
Eric Anholtc153f452007-09-03 12:06:45 +1000571static int i915_batchbuffer(struct drm_device *dev, void *data,
572 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000575 u32 *hw_status = dev_priv->hw_status_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
577 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000578 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 int ret;
580
581 if (!dev_priv->allow_batchbuffer) {
582 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000583 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 DRM_DEBUG("i915 batchbuffer, start %x used %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000587 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Eric Anholt6c340ea2007-08-25 20:23:09 +1000589 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Eric Anholtc153f452007-09-03 12:06:45 +1000591 if (batch->num_cliprects && DRM_VERIFYAREA_READ(batch->cliprects,
592 batch->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000593 sizeof(struct drm_clip_rect)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000594 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Eric Anholtc153f452007-09-03 12:06:45 +1000596 ret = i915_dispatch_batchbuffer(dev, batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Dave Airlieaf6061a2008-05-07 12:15:39 +1000598 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return ret;
600}
601
Eric Anholtc153f452007-09-03 12:06:45 +1000602static int i915_cmdbuffer(struct drm_device *dev, void *data,
603 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000606 u32 *hw_status = dev_priv->hw_status_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
608 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000609 drm_i915_cmdbuffer_t *cmdbuf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 int ret;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 DRM_DEBUG("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000613 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Eric Anholt6c340ea2007-08-25 20:23:09 +1000615 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Eric Anholtc153f452007-09-03 12:06:45 +1000617 if (cmdbuf->num_cliprects &&
618 DRM_VERIFYAREA_READ(cmdbuf->cliprects,
619 cmdbuf->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000620 sizeof(struct drm_clip_rect))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 DRM_ERROR("Fault accessing cliprects\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000622 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624
Eric Anholtc153f452007-09-03 12:06:45 +1000625 ret = i915_dispatch_cmdbuffer(dev, cmdbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (ret) {
627 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
628 return ret;
629 }
630
Dave Airlieaf6061a2008-05-07 12:15:39 +1000631 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633}
634
Eric Anholtc153f452007-09-03 12:06:45 +1000635static int i915_flip_bufs(struct drm_device *dev, void *data,
636 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Harvey Harrison80a914d2008-10-15 22:01:25 -0700638 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Eric Anholt6c340ea2007-08-25 20:23:09 +1000640 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Dave Airlieaf6061a2008-05-07 12:15:39 +1000642 return i915_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Eric Anholtc153f452007-09-03 12:06:45 +1000645static int i915_getparam(struct drm_device *dev, void *data,
646 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000649 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int value;
651
652 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000653 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000654 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Eric Anholtc153f452007-09-03 12:06:45 +1000657 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 case I915_PARAM_IRQ_ACTIVE:
659 value = dev->irq ? 1 : 0;
660 break;
661 case I915_PARAM_ALLOW_BATCHBUFFER:
662 value = dev_priv->allow_batchbuffer ? 1 : 0;
663 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100664 case I915_PARAM_LAST_DISPATCH:
665 value = READ_BREADCRUMB(dev_priv);
666 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 default:
Eric Anholtc153f452007-09-03 12:06:45 +1000668 DRM_ERROR("Unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000669 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
Eric Anholtc153f452007-09-03 12:06:45 +1000672 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000674 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676
677 return 0;
678}
679
Eric Anholtc153f452007-09-03 12:06:45 +1000680static int i915_setparam(struct drm_device *dev, void *data,
681 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000684 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000687 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000688 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Eric Anholtc153f452007-09-03 12:06:45 +1000691 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 break;
694 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000695 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 break;
697 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000698 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 default:
Eric Anholtc153f452007-09-03 12:06:45 +1000701 DRM_ERROR("unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000702 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 return 0;
706}
707
Eric Anholtc153f452007-09-03 12:06:45 +1000708static int i915_set_status_page(struct drm_device *dev, void *data,
709 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000710{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000711 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000712 drm_i915_hws_addr_t *hws = data;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000713
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000714 if (!I915_NEED_GFX_HWS(dev))
715 return -EINVAL;
716
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000717 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000718 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000719 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000720 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000721
Eric Anholtc153f452007-09-03 12:06:45 +1000722 printk(KERN_DEBUG "set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000723
Eric Anholtc153f452007-09-03 12:06:45 +1000724 dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12);
725
Eric Anholt8b409582007-11-22 16:40:37 +1000726 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000727 dev_priv->hws_map.size = 4*1024;
728 dev_priv->hws_map.type = 0;
729 dev_priv->hws_map.flags = 0;
730 dev_priv->hws_map.mtrr = 0;
731
732 drm_core_ioremap(&dev_priv->hws_map, dev);
733 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000734 i915_dma_cleanup(dev);
735 dev_priv->status_gfx_addr = 0;
736 DRM_ERROR("can not ioremap virtual address for"
737 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000738 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000739 }
740 dev_priv->hw_status_page = dev_priv->hws_map.handle;
741
742 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
743 I915_WRITE(0x02080, dev_priv->status_gfx_addr);
744 DRM_DEBUG("load hws 0x2080 with gfx mem 0x%x\n",
745 dev_priv->status_gfx_addr);
746 DRM_DEBUG("load hws at %p\n", dev_priv->hw_status_page);
747 return 0;
748}
749
Dave Airlie84b1fd12007-07-11 15:53:27 +1000750int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +1100751{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000752 struct drm_i915_private *dev_priv = dev->dev_private;
753 unsigned long base, size;
754 int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1;
755
Dave Airlie22eae942005-11-10 22:16:34 +1100756 /* i915 has 4 more counters */
757 dev->counters += 4;
758 dev->types[6] = _DRM_STAT_IRQ;
759 dev->types[7] = _DRM_STAT_PRIMARY;
760 dev->types[8] = _DRM_STAT_SECONDARY;
761 dev->types[9] = _DRM_STAT_DMA;
762
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000763 dev_priv = drm_alloc(sizeof(drm_i915_private_t), DRM_MEM_DRIVER);
764 if (dev_priv == NULL)
765 return -ENOMEM;
766
767 memset(dev_priv, 0, sizeof(drm_i915_private_t));
768
769 dev->dev_private = (void *)dev_priv;
770
771 /* Add register map (needed for suspend/resume) */
772 base = drm_get_resource_start(dev, mmio_bar);
773 size = drm_get_resource_len(dev, mmio_bar);
774
Dave Airliee3236a12007-12-17 09:41:56 +1000775 ret = drm_addmap(dev, base, size, _DRM_REGISTERS,
776 _DRM_KERNEL | _DRM_DRIVER,
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000777 &dev_priv->mmio_map);
778 return ret;
779}
780
781int i915_driver_unload(struct drm_device *dev)
782{
783 struct drm_i915_private *dev_priv = dev->dev_private;
784
785 if (dev_priv->mmio_map)
786 drm_rmmap(dev, dev_priv->mmio_map);
787
788 drm_free(dev->dev_private, sizeof(drm_i915_private_t),
789 DRM_MEM_DRIVER);
790
Dave Airlie22eae942005-11-10 22:16:34 +1100791 return 0;
792}
793
Dave Airlie84b1fd12007-07-11 15:53:27 +1000794void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000796 drm_i915_private_t *dev_priv = dev->dev_private;
797
Dave Airlie144a75f2008-03-30 07:53:58 +1000798 if (!dev_priv)
799 return;
800
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000801 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000802 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000803
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000804 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Eric Anholt6c340ea2007-08-25 20:23:09 +1000807void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000809 drm_i915_private_t *dev_priv = dev->dev_private;
810 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Eric Anholtc153f452007-09-03 12:06:45 +1000813struct drm_ioctl_desc i915_ioctls[] = {
814 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
815 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
816 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
817 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
818 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
819 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
820 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
821 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
822 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
823 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
824 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
825 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
826 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
827 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
828 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
829 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
830 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH),
Dave Airliec94f7022005-07-07 21:03:38 +1000831};
832
833int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +1000834
835/**
836 * Determine if the device really is AGP or not.
837 *
838 * All Intel graphics chipsets are treated as AGP, even if they are really
839 * PCI-e.
840 *
841 * \param dev The device to be tested.
842 *
843 * \returns
844 * A value of 1 is always retured to indictate every i9x5 is AGP.
845 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000846int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +1000847{
848 return 1;
849}