blob: ba89b42f790abb693a0b355e9ee918f0f1339c81 [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);
Keith Packardd3a6d442008-07-30 12:21:20 -070043 u32 acthd_reg = IS_I965G(dev) ? ACTHD_I965 : ACTHD;
44 u32 last_acthd = I915_READ(acthd_reg);
45 u32 acthd;
Jesse Barnes585fb112008-07-29 11:54:06 -070046 u32 last_head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 int i;
48
Keith Packardd3a6d442008-07-30 12:21:20 -070049 for (i = 0; i < 100000; i++) {
Jesse Barnes585fb112008-07-29 11:54:06 -070050 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Keith Packardd3a6d442008-07-30 12:21:20 -070051 acthd = I915_READ(acthd_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 ring->space = ring->head - (ring->tail + 8);
53 if (ring->space < 0)
54 ring->space += ring->Size;
55 if (ring->space >= n)
56 return 0;
57
Kristian Høgsbergc99b0582008-08-20 11:20:13 -040058 if (dev_priv->sarea_priv)
59 dev_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (ring->head != last_head)
62 i = 0;
Keith Packardd3a6d442008-07-30 12:21:20 -070063 if (acthd != last_acthd)
64 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 last_head = ring->head;
Keith Packardd3a6d442008-07-30 12:21:20 -070067 last_acthd = acthd;
68 msleep_interruptible(10);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
Eric Anholt20caafa2007-08-25 19:22:43 +100072 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Keith Packard398c9cb2008-07-30 13:03:43 -070075/**
76 * Sets up the hardware status page for devices that need a physical address
77 * in the register.
78 */
Eric Anholt3043c602008-10-02 12:24:47 -070079static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070080{
81 drm_i915_private_t *dev_priv = dev->dev_private;
82 /* Program Hardware Status Page */
83 dev_priv->status_page_dmah =
84 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff);
85
86 if (!dev_priv->status_page_dmah) {
87 DRM_ERROR("Can not allocate hardware status page\n");
88 return -ENOMEM;
89 }
90 dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr;
91 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
92
93 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
94
95 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
96 DRM_DEBUG("Enabled hardware status page\n");
97 return 0;
98}
99
100/**
101 * Frees the hardware status page, whether it's a physical address or a virtual
102 * address set up by the X Server.
103 */
Eric Anholt3043c602008-10-02 12:24:47 -0700104static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700105{
106 drm_i915_private_t *dev_priv = dev->dev_private;
107 if (dev_priv->status_page_dmah) {
108 drm_pci_free(dev, dev_priv->status_page_dmah);
109 dev_priv->status_page_dmah = NULL;
110 }
111
112 if (dev_priv->status_gfx_addr) {
113 dev_priv->status_gfx_addr = 0;
114 drm_core_ioremapfree(&dev_priv->hws_map, dev);
115 }
116
117 /* Need to rewrite hardware status page */
118 I915_WRITE(HWS_PGA, 0x1ffff000);
119}
120
Dave Airlie84b1fd12007-07-11 15:53:27 +1000121void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 drm_i915_private_t *dev_priv = dev->dev_private;
124 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
125
Jesse Barnes585fb112008-07-29 11:54:06 -0700126 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
127 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 ring->space = ring->head - (ring->tail + 8);
129 if (ring->space < 0)
130 ring->space += ring->Size;
131
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400132 if (ring->head == ring->tail && dev_priv->sarea_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 dev_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
134}
135
Dave Airlie84b1fd12007-07-11 15:53:27 +1000136static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000138 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* Make sure interrupts are disabled here because the uninstall ioctl
140 * may not have been called from userspace and after dev_private
141 * is freed, it's too late.
142 */
Eric Anholted4cb412008-07-29 12:10:39 -0700143 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000144 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000146 if (dev_priv->ring.virtual_start) {
147 drm_core_ioremapfree(&dev_priv->ring.map, dev);
Eric Anholt3043c602008-10-02 12:24:47 -0700148 dev_priv->ring.virtual_start = NULL;
149 dev_priv->ring.map.handle = NULL;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000150 dev_priv->ring.map.size = 0;
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Keith Packard398c9cb2008-07-30 13:03:43 -0700153 /* Clear the HWS virtual address at teardown */
154 if (I915_NEED_GFX_HWS(dev))
155 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Keith Packardad42ca82008-11-02 23:38:20 -0800157 dev_priv->sarea = NULL;
158 dev_priv->sarea_priv = NULL;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161}
162
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000163static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000165 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Airlieda509d72007-05-26 05:04:51 +1000167 dev_priv->sarea = drm_getsarea(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (!dev_priv->sarea) {
169 DRM_ERROR("can not find sarea!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 i915_dma_cleanup(dev);
Eric Anholt20caafa2007-08-25 19:22:43 +1000171 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 dev_priv->sarea_priv = (drm_i915_sarea_t *)
175 ((u8 *) dev_priv->sarea->handle + init->sarea_priv_offset);
176
Eric Anholt673a3942008-07-30 12:06:12 -0700177 if (init->ring_size != 0) {
178 if (dev_priv->ring.ring_obj != NULL) {
179 i915_dma_cleanup(dev);
180 DRM_ERROR("Client tried to initialize ringbuffer in "
181 "GEM mode\n");
182 return -EINVAL;
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Eric Anholt673a3942008-07-30 12:06:12 -0700185 dev_priv->ring.Size = init->ring_size;
186 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Eric Anholt673a3942008-07-30 12:06:12 -0700188 dev_priv->ring.map.offset = init->ring_start;
189 dev_priv->ring.map.size = init->ring_size;
190 dev_priv->ring.map.type = 0;
191 dev_priv->ring.map.flags = 0;
192 dev_priv->ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Eric Anholt673a3942008-07-30 12:06:12 -0700194 drm_core_ioremap(&dev_priv->ring.map, dev);
195
196 if (dev_priv->ring.map.handle == NULL) {
197 i915_dma_cleanup(dev);
198 DRM_ERROR("can not ioremap virtual address for"
199 " ring buffer\n");
200 return -ENOMEM;
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
205
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000206 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 dev_priv->back_offset = init->back_offset;
208 dev_priv->front_offset = init->front_offset;
209 dev_priv->current_page = 0;
210 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Allow hardware batchbuffers unless told otherwise.
213 */
214 dev_priv->allow_batchbuffer = 1;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
217}
218
Dave Airlie84b1fd12007-07-11 15:53:27 +1000219static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
222
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700223 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (!dev_priv->sarea) {
226 DRM_ERROR("can not find sarea!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000227 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (dev_priv->ring.map.handle == NULL) {
231 DRM_ERROR("can not ioremap virtual address for"
232 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000233 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
236 /* Program Hardware Status Page */
237 if (!dev_priv->hw_status_page) {
238 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000239 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
242
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000243 if (dev_priv->status_gfx_addr != 0)
Jesse Barnes585fb112008-07-29 11:54:06 -0700244 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000245 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700246 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 DRM_DEBUG("Enabled hardware status page\n");
248
249 return 0;
250}
251
Eric Anholtc153f452007-09-03 12:06:45 +1000252static int i915_dma_init(struct drm_device *dev, void *data,
253 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Eric Anholtc153f452007-09-03 12:06:45 +1000255 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 int retcode = 0;
257
Eric Anholtc153f452007-09-03 12:06:45 +1000258 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000260 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
262 case I915_CLEANUP_DMA:
263 retcode = i915_dma_cleanup(dev);
264 break;
265 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100266 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
268 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000269 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 break;
271 }
272
273 return retcode;
274}
275
276/* Implement basically the same security restrictions as hardware does
277 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
278 *
279 * Most of the calculations below involve calculating the size of a
280 * particular instruction. It's important to get the size right as
281 * that tells us where the next instruction to check is. Any illegal
282 * instruction detected will be given a size of zero, which is a
283 * signal to abort the rest of the buffer.
284 */
285static int do_validate_cmd(int cmd)
286{
287 switch (((cmd >> 29) & 0x7)) {
288 case 0x0:
289 switch ((cmd >> 23) & 0x3f) {
290 case 0x0:
291 return 1; /* MI_NOOP */
292 case 0x4:
293 return 1; /* MI_FLUSH */
294 default:
295 return 0; /* disallow everything else */
296 }
297 break;
298 case 0x1:
299 return 0; /* reserved */
300 case 0x2:
301 return (cmd & 0xff) + 2; /* 2d commands */
302 case 0x3:
303 if (((cmd >> 24) & 0x1f) <= 0x18)
304 return 1;
305
306 switch ((cmd >> 24) & 0x1f) {
307 case 0x1c:
308 return 1;
309 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000310 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 case 0x3:
312 return (cmd & 0x1f) + 2;
313 case 0x4:
314 return (cmd & 0xf) + 2;
315 default:
316 return (cmd & 0xffff) + 2;
317 }
318 case 0x1e:
319 if (cmd & (1 << 23))
320 return (cmd & 0xffff) + 1;
321 else
322 return 1;
323 case 0x1f:
324 if ((cmd & (1 << 23)) == 0) /* inline vertices */
325 return (cmd & 0x1ffff) + 2;
326 else if (cmd & (1 << 17)) /* indirect random */
327 if ((cmd & 0xffff) == 0)
328 return 0; /* unknown length, too hard */
329 else
330 return (((cmd & 0xffff) + 1) / 2) + 1;
331 else
332 return 2; /* indirect sequential */
333 default:
334 return 0;
335 }
336 default:
337 return 0;
338 }
339
340 return 0;
341}
342
343static int validate_cmd(int cmd)
344{
345 int ret = do_validate_cmd(cmd);
346
Dave Airliebc5f4522007-11-05 12:50:58 +1000347/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 return ret;
350}
351
Dave Airlie84b1fd12007-07-11 15:53:27 +1000352static int i915_emit_cmds(struct drm_device * dev, int __user * buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 drm_i915_private_t *dev_priv = dev->dev_private;
355 int i;
356 RING_LOCALS;
357
Dave Airliede227f52006-01-25 15:31:43 +1100358 if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000359 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100360
Alan Hourihanec29b6692006-08-12 16:29:24 +1000361 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 for (i = 0; i < dwords;) {
364 int cmd, sz;
365
366 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i], sizeof(cmd)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000370 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 OUT_RING(cmd);
373
374 while (++i, --sz) {
375 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i],
376 sizeof(cmd))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000377 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 OUT_RING(cmd);
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
Dave Airliede227f52006-01-25 15:31:43 +1100383 if (dwords & 1)
384 OUT_RING(0);
385
386 ADVANCE_LP_RING();
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389}
390
Eric Anholt673a3942008-07-30 12:06:12 -0700391int
392i915_emit_box(struct drm_device *dev,
393 struct drm_clip_rect __user *boxes,
394 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000397 struct drm_clip_rect box;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 RING_LOCALS;
399
400 if (DRM_COPY_FROM_USER_UNCHECKED(&box, &boxes[i], sizeof(box))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000401 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
405 DRM_ERROR("Bad box %d,%d..%d,%d\n",
406 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000407 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
Alan Hourihanec29b6692006-08-12 16:29:24 +1000410 if (IS_I965G(dev)) {
411 BEGIN_LP_RING(4);
412 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
413 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000414 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000415 OUT_RING(DR4);
416 ADVANCE_LP_RING();
417 } else {
418 BEGIN_LP_RING(6);
419 OUT_RING(GFX_OP_DRAWRECT_INFO);
420 OUT_RING(DR1);
421 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
422 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
423 OUT_RING(DR4);
424 OUT_RING(0);
425 ADVANCE_LP_RING();
426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 return 0;
429}
430
Alan Hourihanec29b6692006-08-12 16:29:24 +1000431/* XXX: Emitting the counter should really be moved to part of the IRQ
432 * emit. For now, do it in both places:
433 */
434
Dave Airlie84b1fd12007-07-11 15:53:27 +1000435static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100436{
437 drm_i915_private_t *dev_priv = dev->dev_private;
438 RING_LOCALS;
439
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400440 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000441 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400442 dev_priv->counter = 0;
443 if (dev_priv->sarea_priv)
444 dev_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100445
446 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700447 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000448 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100449 OUT_RING(dev_priv->counter);
450 OUT_RING(0);
451 ADVANCE_LP_RING();
452}
453
Dave Airlie84b1fd12007-07-11 15:53:27 +1000454static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 drm_i915_cmdbuffer_t * cmd)
456{
457 int nbox = cmd->num_cliprects;
458 int i = 0, count, ret;
459
460 if (cmd->sz & 0x3) {
461 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000462 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
465 i915_kernel_lost_context(dev);
466
467 count = nbox ? nbox : 1;
468
469 for (i = 0; i < count; i++) {
470 if (i < nbox) {
471 ret = i915_emit_box(dev, cmd->cliprects, i,
472 cmd->DR1, cmd->DR4);
473 if (ret)
474 return ret;
475 }
476
477 ret = i915_emit_cmds(dev, (int __user *)cmd->buf, cmd->sz / 4);
478 if (ret)
479 return ret;
480 }
481
Dave Airliede227f52006-01-25 15:31:43 +1100482 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return 0;
484}
485
Dave Airlie84b1fd12007-07-11 15:53:27 +1000486static int i915_dispatch_batchbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 drm_i915_batchbuffer_t * batch)
488{
489 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000490 struct drm_clip_rect __user *boxes = batch->cliprects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int nbox = batch->num_cliprects;
492 int i = 0, count;
493 RING_LOCALS;
494
495 if ((batch->start | batch->used) & 0x7) {
496 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000497 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499
500 i915_kernel_lost_context(dev);
501
502 count = nbox ? nbox : 1;
503
504 for (i = 0; i < count; i++) {
505 if (i < nbox) {
506 int ret = i915_emit_box(dev, boxes, i,
507 batch->DR1, batch->DR4);
508 if (ret)
509 return ret;
510 }
511
Keith Packard0790d5e2008-07-30 12:28:47 -0700512 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000514 if (IS_I965G(dev)) {
515 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
516 OUT_RING(batch->start);
517 } else {
518 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
519 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 ADVANCE_LP_RING();
522 } else {
523 BEGIN_LP_RING(4);
524 OUT_RING(MI_BATCH_BUFFER);
525 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
526 OUT_RING(batch->start + batch->used - 4);
527 OUT_RING(0);
528 ADVANCE_LP_RING();
529 }
530 }
531
Dave Airliede227f52006-01-25 15:31:43 +1100532 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 return 0;
535}
536
Dave Airlieaf6061a2008-05-07 12:15:39 +1000537static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 drm_i915_private_t *dev_priv = dev->dev_private;
540 RING_LOCALS;
541
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400542 if (!dev_priv->sarea_priv)
543 return -EINVAL;
544
Dave Airlieaf6061a2008-05-07 12:15:39 +1000545 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
Harvey Harrison80a914d2008-10-15 22:01:25 -0700546 __func__,
Dave Airlieaf6061a2008-05-07 12:15:39 +1000547 dev_priv->current_page,
548 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dave Airlieaf6061a2008-05-07 12:15:39 +1000550 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Dave Airlieaf6061a2008-05-07 12:15:39 +1000552 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700553 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000554 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ADVANCE_LP_RING();
556
Dave Airlieaf6061a2008-05-07 12:15:39 +1000557 BEGIN_LP_RING(6);
558 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
559 OUT_RING(0);
560 if (dev_priv->current_page == 0) {
561 OUT_RING(dev_priv->back_offset);
562 dev_priv->current_page = 1;
563 } else {
564 OUT_RING(dev_priv->front_offset);
565 dev_priv->current_page = 0;
566 }
567 OUT_RING(0);
568 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000569
Dave Airlieaf6061a2008-05-07 12:15:39 +1000570 BEGIN_LP_RING(2);
571 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
572 OUT_RING(0);
573 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000574
Dave Airlieaf6061a2008-05-07 12:15:39 +1000575 dev_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000576
Dave Airlieaf6061a2008-05-07 12:15:39 +1000577 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700578 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000579 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000580 OUT_RING(dev_priv->counter);
581 OUT_RING(0);
582 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000583
Dave Airlieaf6061a2008-05-07 12:15:39 +1000584 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Dave Airlie84b1fd12007-07-11 15:53:27 +1000588static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 drm_i915_private_t *dev_priv = dev->dev_private;
591
592 i915_kernel_lost_context(dev);
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700593 return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Eric Anholtc153f452007-09-03 12:06:45 +1000596static int i915_flush_ioctl(struct drm_device *dev, void *data,
597 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Eric Anholt546b0972008-09-01 16:45:29 -0700599 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Eric Anholt546b0972008-09-01 16:45:29 -0700601 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
602
603 mutex_lock(&dev->struct_mutex);
604 ret = i915_quiescent(dev);
605 mutex_unlock(&dev->struct_mutex);
606
607 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Eric Anholtc153f452007-09-03 12:06:45 +1000610static int i915_batchbuffer(struct drm_device *dev, void *data,
611 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
615 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000616 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 int ret;
618
619 if (!dev_priv->allow_batchbuffer) {
620 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000621 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 DRM_DEBUG("i915 batchbuffer, start %x used %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000625 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Eric Anholt546b0972008-09-01 16:45:29 -0700627 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Eric Anholtc153f452007-09-03 12:06:45 +1000629 if (batch->num_cliprects && DRM_VERIFYAREA_READ(batch->cliprects,
630 batch->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000631 sizeof(struct drm_clip_rect)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000632 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Eric Anholt546b0972008-09-01 16:45:29 -0700634 mutex_lock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000635 ret = i915_dispatch_batchbuffer(dev, batch);
Eric Anholt546b0972008-09-01 16:45:29 -0700636 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400638 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000639 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ret;
641}
642
Eric Anholtc153f452007-09-03 12:06:45 +1000643static int i915_cmdbuffer(struct drm_device *dev, void *data,
644 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
648 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000649 drm_i915_cmdbuffer_t *cmdbuf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int ret;
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 DRM_DEBUG("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000653 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric Anholt546b0972008-09-01 16:45:29 -0700655 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Eric Anholtc153f452007-09-03 12:06:45 +1000657 if (cmdbuf->num_cliprects &&
658 DRM_VERIFYAREA_READ(cmdbuf->cliprects,
659 cmdbuf->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000660 sizeof(struct drm_clip_rect))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 DRM_ERROR("Fault accessing cliprects\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000662 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Eric Anholt546b0972008-09-01 16:45:29 -0700665 mutex_lock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000666 ret = i915_dispatch_cmdbuffer(dev, cmdbuf);
Eric Anholt546b0972008-09-01 16:45:29 -0700667 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (ret) {
669 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
670 return ret;
671 }
672
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400673 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000674 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676}
677
Eric Anholtc153f452007-09-03 12:06:45 +1000678static int i915_flip_bufs(struct drm_device *dev, void *data,
679 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Eric Anholt546b0972008-09-01 16:45:29 -0700681 int ret;
682
Harvey Harrison80a914d2008-10-15 22:01:25 -0700683 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Eric Anholt546b0972008-09-01 16:45:29 -0700685 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Eric Anholt546b0972008-09-01 16:45:29 -0700687 mutex_lock(&dev->struct_mutex);
688 ret = i915_dispatch_flip(dev);
689 mutex_unlock(&dev->struct_mutex);
690
691 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Eric Anholtc153f452007-09-03 12:06:45 +1000694static int i915_getparam(struct drm_device *dev, void *data,
695 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000698 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int value;
700
701 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000702 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000703 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
Eric Anholtc153f452007-09-03 12:06:45 +1000706 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700708 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 break;
710 case I915_PARAM_ALLOW_BATCHBUFFER:
711 value = dev_priv->allow_batchbuffer ? 1 : 0;
712 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100713 case I915_PARAM_LAST_DISPATCH:
714 value = READ_BREADCRUMB(dev_priv);
715 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400716 case I915_PARAM_CHIPSET_ID:
717 value = dev->pci_device;
718 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700719 case I915_PARAM_HAS_GEM:
720 value = 1;
721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 default:
Eric Anholtc153f452007-09-03 12:06:45 +1000723 DRM_ERROR("Unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000724 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
Eric Anholtc153f452007-09-03 12:06:45 +1000727 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000729 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
732 return 0;
733}
734
Eric Anholtc153f452007-09-03 12:06:45 +1000735static int i915_setparam(struct drm_device *dev, void *data,
736 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000739 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000742 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000743 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745
Eric Anholtc153f452007-09-03 12:06:45 +1000746 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000750 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 break;
752 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000753 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 break;
755 default:
Eric Anholtc153f452007-09-03 12:06:45 +1000756 DRM_ERROR("unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000757 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759
760 return 0;
761}
762
Eric Anholtc153f452007-09-03 12:06:45 +1000763static int i915_set_status_page(struct drm_device *dev, void *data,
764 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000765{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000766 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000767 drm_i915_hws_addr_t *hws = data;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000768
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000769 if (!I915_NEED_GFX_HWS(dev))
770 return -EINVAL;
771
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000772 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000773 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000774 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000775 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000776
Eric Anholtc153f452007-09-03 12:06:45 +1000777 printk(KERN_DEBUG "set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000778
Eric Anholtc153f452007-09-03 12:06:45 +1000779 dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12);
780
Eric Anholt8b409582007-11-22 16:40:37 +1000781 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000782 dev_priv->hws_map.size = 4*1024;
783 dev_priv->hws_map.type = 0;
784 dev_priv->hws_map.flags = 0;
785 dev_priv->hws_map.mtrr = 0;
786
787 drm_core_ioremap(&dev_priv->hws_map, dev);
788 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000789 i915_dma_cleanup(dev);
790 dev_priv->status_gfx_addr = 0;
791 DRM_ERROR("can not ioremap virtual address for"
792 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000793 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000794 }
795 dev_priv->hw_status_page = dev_priv->hws_map.handle;
796
797 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
Jesse Barnes585fb112008-07-29 11:54:06 -0700798 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
799 DRM_DEBUG("load hws HWS_PGA with gfx mem 0x%x\n",
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000800 dev_priv->status_gfx_addr);
801 DRM_DEBUG("load hws at %p\n", dev_priv->hw_status_page);
802 return 0;
803}
804
Dave Airlie84b1fd12007-07-11 15:53:27 +1000805int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +1100806{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000807 struct drm_i915_private *dev_priv = dev->dev_private;
808 unsigned long base, size;
809 int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1;
810
Dave Airlie22eae942005-11-10 22:16:34 +1100811 /* i915 has 4 more counters */
812 dev->counters += 4;
813 dev->types[6] = _DRM_STAT_IRQ;
814 dev->types[7] = _DRM_STAT_PRIMARY;
815 dev->types[8] = _DRM_STAT_SECONDARY;
816 dev->types[9] = _DRM_STAT_DMA;
817
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000818 dev_priv = drm_alloc(sizeof(drm_i915_private_t), DRM_MEM_DRIVER);
819 if (dev_priv == NULL)
820 return -ENOMEM;
821
822 memset(dev_priv, 0, sizeof(drm_i915_private_t));
823
824 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -0700825 dev_priv->dev = dev;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000826
827 /* Add register map (needed for suspend/resume) */
828 base = drm_get_resource_start(dev, mmio_bar);
829 size = drm_get_resource_len(dev, mmio_bar);
830
Eric Anholt3043c602008-10-02 12:24:47 -0700831 dev_priv->regs = ioremap(base, size);
Eric Anholted4cb412008-07-29 12:10:39 -0700832
Eric Anholt673a3942008-07-30 12:06:12 -0700833 i915_gem_load(dev);
834
Keith Packard398c9cb2008-07-30 13:03:43 -0700835 /* Init HWS */
836 if (!I915_NEED_GFX_HWS(dev)) {
837 ret = i915_init_phys_hws(dev);
838 if (ret != 0)
839 return ret;
840 }
Eric Anholted4cb412008-07-29 12:10:39 -0700841
842 /* On the 945G/GM, the chipset reports the MSI capability on the
843 * integrated graphics even though the support isn't actually there
844 * according to the published specs. It doesn't appear to function
845 * correctly in testing on 945G.
846 * This may be a side effect of MSI having been made available for PEG
847 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -0700848 *
849 * According to chipset errata, on the 965GM, MSI interrupts may
850 * be lost or delayed
Eric Anholted4cb412008-07-29 12:10:39 -0700851 */
Keith Packardd1ed6292008-10-17 00:44:42 -0700852 if (!IS_I945G(dev) && !IS_I945GM(dev) && !IS_I965GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -0800853 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -0700854
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100855 intel_opregion_init(dev);
856
Eric Anholted4cb412008-07-29 12:10:39 -0700857 spin_lock_init(&dev_priv->user_irq_lock);
858
Keith Packard52440212008-11-18 09:30:25 -0800859 ret = drm_vblank_init(dev, I915_NUM_PIPE);
860
861 if (ret) {
862 (void) i915_driver_unload(dev);
863 return ret;
864 }
865
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000866 return ret;
867}
868
869int i915_driver_unload(struct drm_device *dev)
870{
871 struct drm_i915_private *dev_priv = dev->dev_private;
872
Eric Anholted4cb412008-07-29 12:10:39 -0700873 if (dev->pdev->msi_enabled)
874 pci_disable_msi(dev->pdev);
875
Keith Packard398c9cb2008-07-30 13:03:43 -0700876 i915_free_hws(dev);
877
Eric Anholt3043c602008-10-02 12:24:47 -0700878 if (dev_priv->regs != NULL)
879 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000880
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100881 intel_opregion_free(dev);
882
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000883 drm_free(dev->dev_private, sizeof(drm_i915_private_t),
884 DRM_MEM_DRIVER);
885
Dave Airlie22eae942005-11-10 22:16:34 +1100886 return 0;
887}
888
Eric Anholt673a3942008-07-30 12:06:12 -0700889int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
890{
891 struct drm_i915_file_private *i915_file_priv;
892
893 DRM_DEBUG("\n");
894 i915_file_priv = (struct drm_i915_file_private *)
895 drm_alloc(sizeof(*i915_file_priv), DRM_MEM_FILES);
896
897 if (!i915_file_priv)
898 return -ENOMEM;
899
900 file_priv->driver_priv = i915_file_priv;
901
902 i915_file_priv->mm.last_gem_seqno = 0;
903 i915_file_priv->mm.last_gem_throttle_seqno = 0;
904
905 return 0;
906}
907
Dave Airlie84b1fd12007-07-11 15:53:27 +1000908void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000910 drm_i915_private_t *dev_priv = dev->dev_private;
911
Dave Airlie144a75f2008-03-30 07:53:58 +1000912 if (!dev_priv)
913 return;
914
Eric Anholt673a3942008-07-30 12:06:12 -0700915 i915_gem_lastclose(dev);
916
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000917 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000918 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000919
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000920 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Eric Anholt6c340ea2007-08-25 20:23:09 +1000923void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000925 drm_i915_private_t *dev_priv = dev->dev_private;
926 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Eric Anholt673a3942008-07-30 12:06:12 -0700929void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
930{
931 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
932
933 drm_free(i915_file_priv, sizeof(*i915_file_priv), DRM_MEM_FILES);
934}
935
Eric Anholtc153f452007-09-03 12:06:45 +1000936struct drm_ioctl_desc i915_ioctls[] = {
937 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
938 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
939 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
940 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
941 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
942 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
943 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
944 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
945 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
946 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
947 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
948 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
949 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
950 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
951 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
952 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
Matthias Hopf4b408932008-10-18 07:18:05 +1000953 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie2bdf00b2008-10-07 13:40:10 +1000954 DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Eric Anholt673a3942008-07-30 12:06:12 -0700955 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH),
956 DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
957 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
958 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH),
959 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH),
Dave Airlie2bdf00b2008-10-07 13:40:10 +1000960 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
961 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Eric Anholt673a3942008-07-30 12:06:12 -0700962 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, 0),
963 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, 0),
964 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, 0),
965 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, 0),
966 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, 0),
967 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, 0),
968 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, 0),
969 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, 0),
Eric Anholt5a125c32008-10-22 21:40:13 -0700970 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, 0),
Dave Airliec94f7022005-07-07 21:03:38 +1000971};
972
973int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +1000974
975/**
976 * Determine if the device really is AGP or not.
977 *
978 * All Intel graphics chipsets are treated as AGP, even if they are really
979 * PCI-e.
980 *
981 * \param dev The device to be tested.
982 *
983 * \returns
984 * A value of 1 is always retured to indictate every i9x5 is AGP.
985 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000986int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +1000987{
988 return 1;
989}