blob: 6d21b9e48b89a4624936123fd169d79ce3f35cc9 [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"
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include "drm_crtc_helper.h"
32#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "i915_drm.h"
34#include "i915_drv.h"
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* Really want an OS-independent resettable timer. Would like to have
37 * this loop run for (eg) 3 sec, but have the timer reset every time
38 * the head pointer changes, so that EBUSY only happens if the ring
39 * actually stalls for (eg) 3 seconds.
40 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100041int i915_wait_ring(struct drm_device * dev, int n, const char *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +100044 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
Keith Packardd3a6d442008-07-30 12:21:20 -070046 u32 acthd_reg = IS_I965G(dev) ? ACTHD_I965 : ACTHD;
47 u32 last_acthd = I915_READ(acthd_reg);
48 u32 acthd;
Jesse Barnes585fb112008-07-29 11:54:06 -070049 u32 last_head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int i;
51
Keith Packardd3a6d442008-07-30 12:21:20 -070052 for (i = 0; i < 100000; i++) {
Jesse Barnes585fb112008-07-29 11:54:06 -070053 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Keith Packardd3a6d442008-07-30 12:21:20 -070054 acthd = I915_READ(acthd_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 ring->space = ring->head - (ring->tail + 8);
56 if (ring->space < 0)
57 ring->space += ring->Size;
58 if (ring->space >= n)
59 return 0;
60
Dave Airlie7c1c2872008-11-28 14:22:24 +100061 if (master_priv->sarea_priv)
62 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 if (ring->head != last_head)
65 i = 0;
Keith Packardd3a6d442008-07-30 12:21:20 -070066 if (acthd != last_acthd)
67 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 last_head = ring->head;
Keith Packardd3a6d442008-07-30 12:21:20 -070070 last_acthd = acthd;
71 msleep_interruptible(10);
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74
Eric Anholt20caafa2007-08-25 19:22:43 +100075 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Keith Packard398c9cb2008-07-30 13:03:43 -070078/**
79 * Sets up the hardware status page for devices that need a physical address
80 * in the register.
81 */
Eric Anholt3043c602008-10-02 12:24:47 -070082static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070083{
84 drm_i915_private_t *dev_priv = dev->dev_private;
85 /* Program Hardware Status Page */
86 dev_priv->status_page_dmah =
87 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff);
88
89 if (!dev_priv->status_page_dmah) {
90 DRM_ERROR("Can not allocate hardware status page\n");
91 return -ENOMEM;
92 }
93 dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr;
94 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
95
96 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
97
98 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
99 DRM_DEBUG("Enabled hardware status page\n");
100 return 0;
101}
102
103/**
104 * Frees the hardware status page, whether it's a physical address or a virtual
105 * address set up by the X Server.
106 */
Eric Anholt3043c602008-10-02 12:24:47 -0700107static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700108{
109 drm_i915_private_t *dev_priv = dev->dev_private;
110 if (dev_priv->status_page_dmah) {
111 drm_pci_free(dev, dev_priv->status_page_dmah);
112 dev_priv->status_page_dmah = NULL;
113 }
114
115 if (dev_priv->status_gfx_addr) {
116 dev_priv->status_gfx_addr = 0;
117 drm_core_ioremapfree(&dev_priv->hws_map, dev);
118 }
119
120 /* Need to rewrite hardware status page */
121 I915_WRITE(HWS_PGA, 0x1ffff000);
122}
123
Dave Airlie84b1fd12007-07-11 15:53:27 +1000124void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000127 struct drm_i915_master_private *master_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
129
Jesse Barnes79e53942008-11-07 14:24:08 -0800130 /*
131 * We should never lose context on the ring with modesetting
132 * as we don't expose it to userspace
133 */
134 if (drm_core_check_feature(dev, DRIVER_MODESET))
135 return;
136
Jesse Barnes585fb112008-07-29 11:54:06 -0700137 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
138 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 ring->space = ring->head - (ring->tail + 8);
140 if (ring->space < 0)
141 ring->space += ring->Size;
142
Dave Airlie7c1c2872008-11-28 14:22:24 +1000143 if (!dev->primary->master)
144 return;
145
146 master_priv = dev->primary->master->driver_priv;
147 if (ring->head == ring->tail && master_priv->sarea_priv)
148 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Dave Airlie84b1fd12007-07-11 15:53:27 +1000151static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000153 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* Make sure interrupts are disabled here because the uninstall ioctl
155 * may not have been called from userspace and after dev_private
156 * is freed, it's too late.
157 */
Eric Anholted4cb412008-07-29 12:10:39 -0700158 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000159 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000161 if (dev_priv->ring.virtual_start) {
162 drm_core_ioremapfree(&dev_priv->ring.map, dev);
Eric Anholt3043c602008-10-02 12:24:47 -0700163 dev_priv->ring.virtual_start = NULL;
164 dev_priv->ring.map.handle = NULL;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000165 dev_priv->ring.map.size = 0;
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Keith Packard398c9cb2008-07-30 13:03:43 -0700168 /* Clear the HWS virtual address at teardown */
169 if (I915_NEED_GFX_HWS(dev))
170 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 return 0;
173}
174
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000175static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000177 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000178 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Dave Airlie3a03ac12009-01-11 09:03:49 +1000180 master_priv->sarea = drm_getsarea(dev);
181 if (master_priv->sarea) {
182 master_priv->sarea_priv = (drm_i915_sarea_t *)
183 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
184 } else {
185 DRM_DEBUG("sarea not found assuming DRI2 userspace\n");
186 }
187
Eric Anholt673a3942008-07-30 12:06:12 -0700188 if (init->ring_size != 0) {
189 if (dev_priv->ring.ring_obj != NULL) {
190 i915_dma_cleanup(dev);
191 DRM_ERROR("Client tried to initialize ringbuffer in "
192 "GEM mode\n");
193 return -EINVAL;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Eric Anholt673a3942008-07-30 12:06:12 -0700196 dev_priv->ring.Size = init->ring_size;
197 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Eric Anholt673a3942008-07-30 12:06:12 -0700199 dev_priv->ring.map.offset = init->ring_start;
200 dev_priv->ring.map.size = init->ring_size;
201 dev_priv->ring.map.type = 0;
202 dev_priv->ring.map.flags = 0;
203 dev_priv->ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Jesse Barnes6fb88582009-02-23 10:08:21 +1000205 drm_core_ioremap_wc(&dev_priv->ring.map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700206
207 if (dev_priv->ring.map.handle == NULL) {
208 i915_dma_cleanup(dev);
209 DRM_ERROR("can not ioremap virtual address for"
210 " ring buffer\n");
211 return -ENOMEM;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
215 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
216
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000217 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dev_priv->back_offset = init->back_offset;
219 dev_priv->front_offset = init->front_offset;
220 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000221 if (master_priv->sarea_priv)
222 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Allow hardware batchbuffers unless told otherwise.
225 */
226 dev_priv->allow_batchbuffer = 1;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229}
230
Dave Airlie84b1fd12007-07-11 15:53:27 +1000231static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
234
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700235 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (dev_priv->ring.map.handle == NULL) {
238 DRM_ERROR("can not ioremap virtual address for"
239 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000240 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 /* Program Hardware Status Page */
244 if (!dev_priv->hw_status_page) {
245 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000246 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
249
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000250 if (dev_priv->status_gfx_addr != 0)
Jesse Barnes585fb112008-07-29 11:54:06 -0700251 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000252 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700253 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 DRM_DEBUG("Enabled hardware status page\n");
255
256 return 0;
257}
258
Eric Anholtc153f452007-09-03 12:06:45 +1000259static int i915_dma_init(struct drm_device *dev, void *data,
260 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Eric Anholtc153f452007-09-03 12:06:45 +1000262 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int retcode = 0;
264
Eric Anholtc153f452007-09-03 12:06:45 +1000265 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000267 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 break;
269 case I915_CLEANUP_DMA:
270 retcode = i915_dma_cleanup(dev);
271 break;
272 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100273 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000276 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 break;
278 }
279
280 return retcode;
281}
282
283/* Implement basically the same security restrictions as hardware does
284 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
285 *
286 * Most of the calculations below involve calculating the size of a
287 * particular instruction. It's important to get the size right as
288 * that tells us where the next instruction to check is. Any illegal
289 * instruction detected will be given a size of zero, which is a
290 * signal to abort the rest of the buffer.
291 */
292static int do_validate_cmd(int cmd)
293{
294 switch (((cmd >> 29) & 0x7)) {
295 case 0x0:
296 switch ((cmd >> 23) & 0x3f) {
297 case 0x0:
298 return 1; /* MI_NOOP */
299 case 0x4:
300 return 1; /* MI_FLUSH */
301 default:
302 return 0; /* disallow everything else */
303 }
304 break;
305 case 0x1:
306 return 0; /* reserved */
307 case 0x2:
308 return (cmd & 0xff) + 2; /* 2d commands */
309 case 0x3:
310 if (((cmd >> 24) & 0x1f) <= 0x18)
311 return 1;
312
313 switch ((cmd >> 24) & 0x1f) {
314 case 0x1c:
315 return 1;
316 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000317 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 case 0x3:
319 return (cmd & 0x1f) + 2;
320 case 0x4:
321 return (cmd & 0xf) + 2;
322 default:
323 return (cmd & 0xffff) + 2;
324 }
325 case 0x1e:
326 if (cmd & (1 << 23))
327 return (cmd & 0xffff) + 1;
328 else
329 return 1;
330 case 0x1f:
331 if ((cmd & (1 << 23)) == 0) /* inline vertices */
332 return (cmd & 0x1ffff) + 2;
333 else if (cmd & (1 << 17)) /* indirect random */
334 if ((cmd & 0xffff) == 0)
335 return 0; /* unknown length, too hard */
336 else
337 return (((cmd & 0xffff) + 1) / 2) + 1;
338 else
339 return 2; /* indirect sequential */
340 default:
341 return 0;
342 }
343 default:
344 return 0;
345 }
346
347 return 0;
348}
349
350static int validate_cmd(int cmd)
351{
352 int ret = do_validate_cmd(cmd);
353
Dave Airliebc5f4522007-11-05 12:50:58 +1000354/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 return ret;
357}
358
Dave Airlie84b1fd12007-07-11 15:53:27 +1000359static int i915_emit_cmds(struct drm_device * dev, int __user * buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 drm_i915_private_t *dev_priv = dev->dev_private;
362 int i;
363 RING_LOCALS;
364
Dave Airliede227f52006-01-25 15:31:43 +1100365 if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000366 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100367
Alan Hourihanec29b6692006-08-12 16:29:24 +1000368 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 for (i = 0; i < dwords;) {
371 int cmd, sz;
372
373 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i], sizeof(cmd)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000374 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000377 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 OUT_RING(cmd);
380
381 while (++i, --sz) {
382 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd, &buffer[i],
383 sizeof(cmd))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000384 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 OUT_RING(cmd);
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Dave Airliede227f52006-01-25 15:31:43 +1100390 if (dwords & 1)
391 OUT_RING(0);
392
393 ADVANCE_LP_RING();
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396}
397
Eric Anholt673a3942008-07-30 12:06:12 -0700398int
399i915_emit_box(struct drm_device *dev,
400 struct drm_clip_rect __user *boxes,
401 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000404 struct drm_clip_rect box;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 RING_LOCALS;
406
407 if (DRM_COPY_FROM_USER_UNCHECKED(&box, &boxes[i], sizeof(box))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000408 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
411 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
412 DRM_ERROR("Bad box %d,%d..%d,%d\n",
413 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000414 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Alan Hourihanec29b6692006-08-12 16:29:24 +1000417 if (IS_I965G(dev)) {
418 BEGIN_LP_RING(4);
419 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
420 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000421 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000422 OUT_RING(DR4);
423 ADVANCE_LP_RING();
424 } else {
425 BEGIN_LP_RING(6);
426 OUT_RING(GFX_OP_DRAWRECT_INFO);
427 OUT_RING(DR1);
428 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
429 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
430 OUT_RING(DR4);
431 OUT_RING(0);
432 ADVANCE_LP_RING();
433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 return 0;
436}
437
Alan Hourihanec29b6692006-08-12 16:29:24 +1000438/* XXX: Emitting the counter should really be moved to part of the IRQ
439 * emit. For now, do it in both places:
440 */
441
Dave Airlie84b1fd12007-07-11 15:53:27 +1000442static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100443{
444 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000445 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100446 RING_LOCALS;
447
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400448 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000449 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400450 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000451 if (master_priv->sarea_priv)
452 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100453
454 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700455 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000456 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100457 OUT_RING(dev_priv->counter);
458 OUT_RING(0);
459 ADVANCE_LP_RING();
460}
461
Dave Airlie84b1fd12007-07-11 15:53:27 +1000462static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 drm_i915_cmdbuffer_t * cmd)
464{
465 int nbox = cmd->num_cliprects;
466 int i = 0, count, ret;
467
468 if (cmd->sz & 0x3) {
469 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000470 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472
473 i915_kernel_lost_context(dev);
474
475 count = nbox ? nbox : 1;
476
477 for (i = 0; i < count; i++) {
478 if (i < nbox) {
479 ret = i915_emit_box(dev, cmd->cliprects, i,
480 cmd->DR1, cmd->DR4);
481 if (ret)
482 return ret;
483 }
484
485 ret = i915_emit_cmds(dev, (int __user *)cmd->buf, cmd->sz / 4);
486 if (ret)
487 return ret;
488 }
489
Dave Airliede227f52006-01-25 15:31:43 +1100490 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
Dave Airlie84b1fd12007-07-11 15:53:27 +1000494static int i915_dispatch_batchbuffer(struct drm_device * dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 drm_i915_batchbuffer_t * batch)
496{
497 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airliec60ce622007-07-11 15:27:12 +1000498 struct drm_clip_rect __user *boxes = batch->cliprects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int nbox = batch->num_cliprects;
500 int i = 0, count;
501 RING_LOCALS;
502
503 if ((batch->start | batch->used) & 0x7) {
504 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000505 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
508 i915_kernel_lost_context(dev);
509
510 count = nbox ? nbox : 1;
511
512 for (i = 0; i < count; i++) {
513 if (i < nbox) {
514 int ret = i915_emit_box(dev, boxes, i,
515 batch->DR1, batch->DR4);
516 if (ret)
517 return ret;
518 }
519
Keith Packard0790d5e2008-07-30 12:28:47 -0700520 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000522 if (IS_I965G(dev)) {
523 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
524 OUT_RING(batch->start);
525 } else {
526 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
527 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ADVANCE_LP_RING();
530 } else {
531 BEGIN_LP_RING(4);
532 OUT_RING(MI_BATCH_BUFFER);
533 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
534 OUT_RING(batch->start + batch->used - 4);
535 OUT_RING(0);
536 ADVANCE_LP_RING();
537 }
538 }
539
Dave Airliede227f52006-01-25 15:31:43 +1100540 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 return 0;
543}
544
Dave Airlieaf6061a2008-05-07 12:15:39 +1000545static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000548 struct drm_i915_master_private *master_priv =
549 dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 RING_LOCALS;
551
Dave Airlie7c1c2872008-11-28 14:22:24 +1000552 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400553 return -EINVAL;
554
Dave Airlieaf6061a2008-05-07 12:15:39 +1000555 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
Harvey Harrison80a914d2008-10-15 22:01:25 -0700556 __func__,
Dave Airlieaf6061a2008-05-07 12:15:39 +1000557 dev_priv->current_page,
Dave Airlie7c1c2872008-11-28 14:22:24 +1000558 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Dave Airlieaf6061a2008-05-07 12:15:39 +1000560 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Dave Airlieaf6061a2008-05-07 12:15:39 +1000562 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700563 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000564 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 ADVANCE_LP_RING();
566
Dave Airlieaf6061a2008-05-07 12:15:39 +1000567 BEGIN_LP_RING(6);
568 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
569 OUT_RING(0);
570 if (dev_priv->current_page == 0) {
571 OUT_RING(dev_priv->back_offset);
572 dev_priv->current_page = 1;
573 } else {
574 OUT_RING(dev_priv->front_offset);
575 dev_priv->current_page = 0;
576 }
577 OUT_RING(0);
578 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000579
Dave Airlieaf6061a2008-05-07 12:15:39 +1000580 BEGIN_LP_RING(2);
581 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
582 OUT_RING(0);
583 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000584
Dave Airlie7c1c2872008-11-28 14:22:24 +1000585 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000586
Dave Airlieaf6061a2008-05-07 12:15:39 +1000587 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700588 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000589 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000590 OUT_RING(dev_priv->counter);
591 OUT_RING(0);
592 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000593
Dave Airlie7c1c2872008-11-28 14:22:24 +1000594 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000595 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Dave Airlie84b1fd12007-07-11 15:53:27 +1000598static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 drm_i915_private_t *dev_priv = dev->dev_private;
601
602 i915_kernel_lost_context(dev);
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700603 return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Eric Anholtc153f452007-09-03 12:06:45 +1000606static int i915_flush_ioctl(struct drm_device *dev, void *data,
607 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Eric Anholt546b0972008-09-01 16:45:29 -0700609 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Eric Anholt546b0972008-09-01 16:45:29 -0700611 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
612
613 mutex_lock(&dev->struct_mutex);
614 ret = i915_quiescent(dev);
615 mutex_unlock(&dev->struct_mutex);
616
617 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Eric Anholtc153f452007-09-03 12:06:45 +1000620static int i915_batchbuffer(struct drm_device *dev, void *data,
621 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000624 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000626 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000627 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 int ret;
629
630 if (!dev_priv->allow_batchbuffer) {
631 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 DRM_DEBUG("i915 batchbuffer, start %x used %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000636 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Eric Anholt546b0972008-09-01 16:45:29 -0700638 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Eric Anholtc153f452007-09-03 12:06:45 +1000640 if (batch->num_cliprects && DRM_VERIFYAREA_READ(batch->cliprects,
641 batch->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000642 sizeof(struct drm_clip_rect)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000643 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Eric Anholt546b0972008-09-01 16:45:29 -0700645 mutex_lock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000646 ret = i915_dispatch_batchbuffer(dev, batch);
Eric Anholt546b0972008-09-01 16:45:29 -0700647 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400649 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000650 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return ret;
652}
653
Eric Anholtc153f452007-09-03 12:06:45 +1000654static int i915_cmdbuffer(struct drm_device *dev, void *data,
655 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000658 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000660 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000661 drm_i915_cmdbuffer_t *cmdbuf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 int ret;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 DRM_DEBUG("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000665 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Eric Anholt546b0972008-09-01 16:45:29 -0700667 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Eric Anholtc153f452007-09-03 12:06:45 +1000669 if (cmdbuf->num_cliprects &&
670 DRM_VERIFYAREA_READ(cmdbuf->cliprects,
671 cmdbuf->num_cliprects *
Dave Airliec60ce622007-07-11 15:27:12 +1000672 sizeof(struct drm_clip_rect))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 DRM_ERROR("Fault accessing cliprects\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000674 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676
Eric Anholt546b0972008-09-01 16:45:29 -0700677 mutex_lock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000678 ret = i915_dispatch_cmdbuffer(dev, cmdbuf);
Eric Anholt546b0972008-09-01 16:45:29 -0700679 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (ret) {
681 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
682 return ret;
683 }
684
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400685 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000686 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688}
689
Eric Anholtc153f452007-09-03 12:06:45 +1000690static int i915_flip_bufs(struct drm_device *dev, void *data,
691 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Eric Anholt546b0972008-09-01 16:45:29 -0700693 int ret;
694
Harvey Harrison80a914d2008-10-15 22:01:25 -0700695 DRM_DEBUG("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Eric Anholt546b0972008-09-01 16:45:29 -0700697 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Eric Anholt546b0972008-09-01 16:45:29 -0700699 mutex_lock(&dev->struct_mutex);
700 ret = i915_dispatch_flip(dev);
701 mutex_unlock(&dev->struct_mutex);
702
703 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Eric Anholtc153f452007-09-03 12:06:45 +1000706static int i915_getparam(struct drm_device *dev, void *data,
707 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000710 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int value;
712
713 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000714 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000715 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717
Eric Anholtc153f452007-09-03 12:06:45 +1000718 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700720 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 case I915_PARAM_ALLOW_BATCHBUFFER:
723 value = dev_priv->allow_batchbuffer ? 1 : 0;
724 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100725 case I915_PARAM_LAST_DISPATCH:
726 value = READ_BREADCRUMB(dev_priv);
727 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400728 case I915_PARAM_CHIPSET_ID:
729 value = dev->pci_device;
730 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700731 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000732 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700733 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800734 case I915_PARAM_NUM_FENCES_AVAIL:
735 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
736 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 default:
Eric Anholt122ee2a2009-02-03 12:10:21 -0800738 DRM_DEBUG("Unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000739 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741
Eric Anholtc153f452007-09-03 12:06:45 +1000742 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000744 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
747 return 0;
748}
749
Eric Anholtc153f452007-09-03 12:06:45 +1000750static int i915_setparam(struct drm_device *dev, void *data,
751 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000754 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000757 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000758 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760
Eric Anholtc153f452007-09-03 12:06:45 +1000761 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 break;
764 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000765 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
767 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000768 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800770 case I915_SETPARAM_NUM_USED_FENCES:
771 if (param->value > dev_priv->num_fence_regs ||
772 param->value < 0)
773 return -EINVAL;
774 /* Userspace can use first N regs */
775 dev_priv->fence_reg_start = param->value;
776 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 default:
Eric Anholt122ee2a2009-02-03 12:10:21 -0800778 DRM_DEBUG("unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000779 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
782 return 0;
783}
784
Eric Anholtc153f452007-09-03 12:06:45 +1000785static int i915_set_status_page(struct drm_device *dev, void *data,
786 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000787{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000788 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000789 drm_i915_hws_addr_t *hws = data;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000790
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000791 if (!I915_NEED_GFX_HWS(dev))
792 return -EINVAL;
793
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000794 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000795 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000796 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000797 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000798
Jesse Barnes79e53942008-11-07 14:24:08 -0800799 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
800 WARN(1, "tried to set status page when mode setting active\n");
801 return 0;
802 }
803
Eric Anholtc153f452007-09-03 12:06:45 +1000804 printk(KERN_DEBUG "set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000805
Eric Anholtc153f452007-09-03 12:06:45 +1000806 dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12);
807
Eric Anholt8b409582007-11-22 16:40:37 +1000808 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000809 dev_priv->hws_map.size = 4*1024;
810 dev_priv->hws_map.type = 0;
811 dev_priv->hws_map.flags = 0;
812 dev_priv->hws_map.mtrr = 0;
813
Dave Airliedd0910b2009-02-25 14:49:21 +1000814 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000815 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000816 i915_dma_cleanup(dev);
817 dev_priv->status_gfx_addr = 0;
818 DRM_ERROR("can not ioremap virtual address for"
819 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000820 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000821 }
822 dev_priv->hw_status_page = dev_priv->hws_map.handle;
823
824 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
Jesse Barnes585fb112008-07-29 11:54:06 -0700825 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
826 DRM_DEBUG("load hws HWS_PGA with gfx mem 0x%x\n",
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000827 dev_priv->status_gfx_addr);
828 DRM_DEBUG("load hws at %p\n", dev_priv->hw_status_page);
829 return 0;
830}
831
Jesse Barnes79e53942008-11-07 14:24:08 -0800832/**
833 * i915_probe_agp - get AGP bootup configuration
834 * @pdev: PCI device
835 * @aperture_size: returns AGP aperture configured size
836 * @preallocated_size: returns size of BIOS preallocated AGP space
837 *
838 * Since Intel integrated graphics are UMA, the BIOS has to set aside
839 * some RAM for the framebuffer at early boot. This code figures out
840 * how much was set aside so we can use it for our own purposes.
841 */
Hannes Ederb358d0a2008-12-18 21:18:47 +0100842static int i915_probe_agp(struct drm_device *dev, unsigned long *aperture_size,
843 unsigned long *preallocated_size)
Jesse Barnes79e53942008-11-07 14:24:08 -0800844{
845 struct pci_dev *bridge_dev;
846 u16 tmp = 0;
847 unsigned long overhead;
Eric Anholt241fa852009-01-02 18:05:51 -0800848 unsigned long stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -0800849
850 bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
851 if (!bridge_dev) {
852 DRM_ERROR("bridge device not found\n");
853 return -1;
854 }
855
856 /* Get the fb aperture size and "stolen" memory amount. */
857 pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp);
858 pci_dev_put(bridge_dev);
859
860 *aperture_size = 1024 * 1024;
861 *preallocated_size = 1024 * 1024;
862
Eric Anholt60fd99e2008-12-03 22:50:02 -0800863 switch (dev->pdev->device) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800864 case PCI_DEVICE_ID_INTEL_82830_CGC:
865 case PCI_DEVICE_ID_INTEL_82845G_IG:
866 case PCI_DEVICE_ID_INTEL_82855GM_IG:
867 case PCI_DEVICE_ID_INTEL_82865_IG:
868 if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
869 *aperture_size *= 64;
870 else
871 *aperture_size *= 128;
872 break;
873 default:
874 /* 9xx supports large sizes, just look at the length */
Eric Anholt60fd99e2008-12-03 22:50:02 -0800875 *aperture_size = pci_resource_len(dev->pdev, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -0800876 break;
877 }
878
879 /*
880 * Some of the preallocated space is taken by the GTT
881 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
882 */
Eric Anholt60fd99e2008-12-03 22:50:02 -0800883 if (IS_G4X(dev))
884 overhead = 4096;
885 else
886 overhead = (*aperture_size / 1024) + 4096;
887
Eric Anholt241fa852009-01-02 18:05:51 -0800888 switch (tmp & INTEL_GMCH_GMS_MASK) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800889 case INTEL_855_GMCH_GMS_DISABLED:
890 DRM_ERROR("video memory is disabled\n");
891 return -1;
Eric Anholt241fa852009-01-02 18:05:51 -0800892 case INTEL_855_GMCH_GMS_STOLEN_1M:
893 stolen = 1 * 1024 * 1024;
894 break;
895 case INTEL_855_GMCH_GMS_STOLEN_4M:
896 stolen = 4 * 1024 * 1024;
897 break;
898 case INTEL_855_GMCH_GMS_STOLEN_8M:
899 stolen = 8 * 1024 * 1024;
900 break;
901 case INTEL_855_GMCH_GMS_STOLEN_16M:
902 stolen = 16 * 1024 * 1024;
903 break;
904 case INTEL_855_GMCH_GMS_STOLEN_32M:
905 stolen = 32 * 1024 * 1024;
906 break;
907 case INTEL_915G_GMCH_GMS_STOLEN_48M:
908 stolen = 48 * 1024 * 1024;
909 break;
910 case INTEL_915G_GMCH_GMS_STOLEN_64M:
911 stolen = 64 * 1024 * 1024;
912 break;
913 case INTEL_GMCH_GMS_STOLEN_128M:
914 stolen = 128 * 1024 * 1024;
915 break;
916 case INTEL_GMCH_GMS_STOLEN_256M:
917 stolen = 256 * 1024 * 1024;
918 break;
919 case INTEL_GMCH_GMS_STOLEN_96M:
920 stolen = 96 * 1024 * 1024;
921 break;
922 case INTEL_GMCH_GMS_STOLEN_160M:
923 stolen = 160 * 1024 * 1024;
924 break;
925 case INTEL_GMCH_GMS_STOLEN_224M:
926 stolen = 224 * 1024 * 1024;
927 break;
928 case INTEL_GMCH_GMS_STOLEN_352M:
929 stolen = 352 * 1024 * 1024;
930 break;
Jesse Barnes79e53942008-11-07 14:24:08 -0800931 default:
932 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
Eric Anholt241fa852009-01-02 18:05:51 -0800933 tmp & INTEL_GMCH_GMS_MASK);
Jesse Barnes79e53942008-11-07 14:24:08 -0800934 return -1;
935 }
Eric Anholt241fa852009-01-02 18:05:51 -0800936 *preallocated_size = stolen - overhead;
Jesse Barnes79e53942008-11-07 14:24:08 -0800937
938 return 0;
939}
940
941static int i915_load_modeset_init(struct drm_device *dev)
942{
943 struct drm_i915_private *dev_priv = dev->dev_private;
944 unsigned long agp_size, prealloc_size;
945 int fb_bar = IS_I9XX(dev) ? 2 : 0;
946 int ret = 0;
947
Dave Airlieaa596622008-12-29 16:35:02 +1000948 dev->devname = kstrdup(DRIVER_NAME, GFP_KERNEL);
949 if (!dev->devname) {
950 ret = -ENOMEM;
951 goto out;
952 }
953
Jesse Barnes79e53942008-11-07 14:24:08 -0800954 dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
955 0xff000000;
956
Jesse Barnes2906f022009-01-20 19:10:54 -0800957 if (IS_MOBILE(dev) || IS_I9XX(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800958 dev_priv->cursor_needs_physical = true;
959 else
960 dev_priv->cursor_needs_physical = false;
961
Jesse Barnes2906f022009-01-20 19:10:54 -0800962 if (IS_I965G(dev) || IS_G33(dev))
963 dev_priv->cursor_needs_physical = false;
964
Dave Airlieaa596622008-12-29 16:35:02 +1000965 ret = i915_probe_agp(dev, &agp_size, &prealloc_size);
966 if (ret)
967 goto kfree_devname;
Jesse Barnes79e53942008-11-07 14:24:08 -0800968
969 /* Basic memrange allocator for stolen space (aka vram) */
970 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
971
972 /* Let GEM Manage from end of prealloc space to end of aperture */
973 i915_gem_do_init(dev, prealloc_size, agp_size);
974
975 ret = i915_gem_init_ringbuffer(dev);
976 if (ret)
Dave Airlieaa596622008-12-29 16:35:02 +1000977 goto kfree_devname;
Jesse Barnes79e53942008-11-07 14:24:08 -0800978
Jesse Barnes79e53942008-11-07 14:24:08 -0800979 /* Allow hardware batchbuffers unless told otherwise.
980 */
981 dev_priv->allow_batchbuffer = 1;
982
983 ret = intel_init_bios(dev);
984 if (ret)
985 DRM_INFO("failed to find VBIOS tables\n");
986
987 ret = drm_irq_install(dev);
988 if (ret)
989 goto destroy_ringbuffer;
990
991 /* FIXME: re-add hotplug support */
992#if 0
993 ret = drm_hotplug_init(dev);
994 if (ret)
995 goto destroy_ringbuffer;
996#endif
997
998 /* Always safe in the mode setting case. */
999 /* FIXME: do pre/post-mode set stuff in core KMS code */
1000 dev->vblank_disable_allowed = 1;
1001
1002 /*
1003 * Initialize the hardware status page IRQ location.
1004 */
1005
1006 I915_WRITE(INSTPM, (1 << 5) | (1 << 21));
1007
1008 intel_modeset_init(dev);
1009
1010 drm_helper_initial_config(dev, false);
1011
Jesse Barnes79e53942008-11-07 14:24:08 -08001012 return 0;
1013
Jesse Barnes79e53942008-11-07 14:24:08 -08001014destroy_ringbuffer:
1015 i915_gem_cleanup_ringbuffer(dev);
Dave Airlieaa596622008-12-29 16:35:02 +10001016kfree_devname:
1017 kfree(dev->devname);
Jesse Barnes79e53942008-11-07 14:24:08 -08001018out:
1019 return ret;
1020}
1021
Dave Airlie7c1c2872008-11-28 14:22:24 +10001022int i915_master_create(struct drm_device *dev, struct drm_master *master)
1023{
1024 struct drm_i915_master_private *master_priv;
1025
1026 master_priv = drm_calloc(1, sizeof(*master_priv), DRM_MEM_DRIVER);
1027 if (!master_priv)
1028 return -ENOMEM;
1029
1030 master->driver_priv = master_priv;
1031 return 0;
1032}
1033
1034void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1035{
1036 struct drm_i915_master_private *master_priv = master->driver_priv;
1037
1038 if (!master_priv)
1039 return;
1040
1041 drm_free(master_priv, sizeof(*master_priv), DRM_MEM_DRIVER);
1042
1043 master->driver_priv = NULL;
1044}
1045
Jesse Barnes79e53942008-11-07 14:24:08 -08001046/**
1047 * i915_driver_load - setup chip and create an initial config
1048 * @dev: DRM device
1049 * @flags: startup flags
1050 *
1051 * The driver load routine has to do several things:
1052 * - drive output discovery via intel_modeset_init()
1053 * - initialize the memory manager
1054 * - allocate initial config memory
1055 * - setup the DRM framebuffer with the allocated memory
1056 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001057int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001058{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001059 struct drm_i915_private *dev_priv = dev->dev_private;
1060 unsigned long base, size;
1061 int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1;
1062
Dave Airlie22eae942005-11-10 22:16:34 +11001063 /* i915 has 4 more counters */
1064 dev->counters += 4;
1065 dev->types[6] = _DRM_STAT_IRQ;
1066 dev->types[7] = _DRM_STAT_PRIMARY;
1067 dev->types[8] = _DRM_STAT_SECONDARY;
1068 dev->types[9] = _DRM_STAT_DMA;
1069
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001070 dev_priv = drm_alloc(sizeof(drm_i915_private_t), DRM_MEM_DRIVER);
1071 if (dev_priv == NULL)
1072 return -ENOMEM;
1073
1074 memset(dev_priv, 0, sizeof(drm_i915_private_t));
1075
1076 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001077 dev_priv->dev = dev;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001078
1079 /* Add register map (needed for suspend/resume) */
1080 base = drm_get_resource_start(dev, mmio_bar);
1081 size = drm_get_resource_len(dev, mmio_bar);
1082
Eric Anholt3043c602008-10-02 12:24:47 -07001083 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001084 if (!dev_priv->regs) {
1085 DRM_ERROR("failed to map registers\n");
1086 ret = -EIO;
1087 goto free_priv;
1088 }
Eric Anholted4cb412008-07-29 12:10:39 -07001089
Eric Anholtab657db12009-01-23 12:57:47 -08001090 dev_priv->mm.gtt_mapping =
1091 io_mapping_create_wc(dev->agp->base,
1092 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001093 if (dev_priv->mm.gtt_mapping == NULL) {
1094 ret = -EIO;
1095 goto out_rmmap;
1096 }
1097
Eric Anholtab657db12009-01-23 12:57:47 -08001098 /* Set up a WC MTRR for non-PAT systems. This is more common than
1099 * one would think, because the kernel disables PAT on first
1100 * generation Core chips because WC PAT gets overridden by a UC
1101 * MTRR if present. Even if a UC MTRR isn't present.
1102 */
1103 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
1104 dev->agp->agp_info.aper_size *
1105 1024 * 1024,
1106 MTRR_TYPE_WRCOMB, 1);
1107 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07001108 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08001109 "performance may suffer.\n");
1110 }
1111
Dave Airlieac5c4e72008-12-19 15:38:34 +10001112#ifdef CONFIG_HIGHMEM64G
1113 /* don't enable GEM on PAE - needs agp + set_memory_* interface fixes */
1114 dev_priv->has_gem = 0;
1115#else
1116 /* enable GEM by default */
1117 dev_priv->has_gem = 1;
1118#endif
1119
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001120 dev->driver->get_vblank_counter = i915_get_vblank_counter;
1121 if (IS_GM45(dev))
1122 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
1123
Eric Anholt673a3942008-07-30 12:06:12 -07001124 i915_gem_load(dev);
1125
Keith Packard398c9cb2008-07-30 13:03:43 -07001126 /* Init HWS */
1127 if (!I915_NEED_GFX_HWS(dev)) {
1128 ret = i915_init_phys_hws(dev);
1129 if (ret != 0)
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001130 goto out_iomapfree;
Keith Packard398c9cb2008-07-30 13:03:43 -07001131 }
Eric Anholted4cb412008-07-29 12:10:39 -07001132
1133 /* On the 945G/GM, the chipset reports the MSI capability on the
1134 * integrated graphics even though the support isn't actually there
1135 * according to the published specs. It doesn't appear to function
1136 * correctly in testing on 945G.
1137 * This may be a side effect of MSI having been made available for PEG
1138 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001139 *
1140 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001141 * be lost or delayed, but we use them anyways to avoid
1142 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001143 */
Keith Packardb60678a2008-12-08 11:12:28 -08001144 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001145 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001146
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001147 intel_opregion_init(dev);
1148
Eric Anholted4cb412008-07-29 12:10:39 -07001149 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes79e53942008-11-07 14:24:08 -08001150 dev_priv->user_irq_refcount = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001151
Keith Packard52440212008-11-18 09:30:25 -08001152 ret = drm_vblank_init(dev, I915_NUM_PIPE);
1153
1154 if (ret) {
1155 (void) i915_driver_unload(dev);
1156 return ret;
1157 }
1158
Jesse Barnes79e53942008-11-07 14:24:08 -08001159 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1160 ret = i915_load_modeset_init(dev);
1161 if (ret < 0) {
1162 DRM_ERROR("failed to init modeset\n");
1163 goto out_rmmap;
1164 }
1165 }
1166
1167 return 0;
1168
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001169out_iomapfree:
1170 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001171out_rmmap:
1172 iounmap(dev_priv->regs);
1173free_priv:
1174 drm_free(dev_priv, sizeof(struct drm_i915_private), DRM_MEM_DRIVER);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001175 return ret;
1176}
1177
1178int i915_driver_unload(struct drm_device *dev)
1179{
1180 struct drm_i915_private *dev_priv = dev->dev_private;
1181
Eric Anholtab657db12009-01-23 12:57:47 -08001182 io_mapping_free(dev_priv->mm.gtt_mapping);
1183 if (dev_priv->mm.gtt_mtrr >= 0) {
1184 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
1185 dev->agp->agp_info.aper_size * 1024 * 1024);
1186 dev_priv->mm.gtt_mtrr = -1;
1187 }
1188
Jesse Barnes79e53942008-11-07 14:24:08 -08001189 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001190 drm_irq_uninstall(dev);
1191 }
1192
Eric Anholted4cb412008-07-29 12:10:39 -07001193 if (dev->pdev->msi_enabled)
1194 pci_disable_msi(dev->pdev);
1195
Eric Anholt3043c602008-10-02 12:24:47 -07001196 if (dev_priv->regs != NULL)
1197 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001198
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001199 intel_opregion_free(dev);
1200
Jesse Barnes79e53942008-11-07 14:24:08 -08001201 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1202 intel_modeset_cleanup(dev);
1203
Dave Airlie71acb5e2008-12-30 20:31:46 +10001204 i915_gem_free_all_phys_object(dev);
1205
Jesse Barnes79e53942008-11-07 14:24:08 -08001206 mutex_lock(&dev->struct_mutex);
1207 i915_gem_cleanup_ringbuffer(dev);
1208 mutex_unlock(&dev->struct_mutex);
1209 drm_mm_takedown(&dev_priv->vram);
1210 i915_gem_lastclose(dev);
1211 }
1212
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001213 drm_free(dev->dev_private, sizeof(drm_i915_private_t),
1214 DRM_MEM_DRIVER);
1215
Dave Airlie22eae942005-11-10 22:16:34 +11001216 return 0;
1217}
1218
Eric Anholt673a3942008-07-30 12:06:12 -07001219int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
1220{
1221 struct drm_i915_file_private *i915_file_priv;
1222
1223 DRM_DEBUG("\n");
1224 i915_file_priv = (struct drm_i915_file_private *)
1225 drm_alloc(sizeof(*i915_file_priv), DRM_MEM_FILES);
1226
1227 if (!i915_file_priv)
1228 return -ENOMEM;
1229
1230 file_priv->driver_priv = i915_file_priv;
1231
1232 i915_file_priv->mm.last_gem_seqno = 0;
1233 i915_file_priv->mm.last_gem_throttle_seqno = 0;
1234
1235 return 0;
1236}
1237
Jesse Barnes79e53942008-11-07 14:24:08 -08001238/**
1239 * i915_driver_lastclose - clean up after all DRM clients have exited
1240 * @dev: DRM device
1241 *
1242 * Take care of cleaning up after all DRM clients have exited. In the
1243 * mode setting case, we want to restore the kernel's initial mode (just
1244 * in case the last client left us in a bad state).
1245 *
1246 * Additionally, in the non-mode setting case, we'll tear down the AGP
1247 * and DMA structures, since the kernel won't be using them, and clea
1248 * up any GEM state.
1249 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001250void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001252 drm_i915_private_t *dev_priv = dev->dev_private;
1253
Jesse Barnes79e53942008-11-07 14:24:08 -08001254 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
1255 intelfb_restore();
Dave Airlie144a75f2008-03-30 07:53:58 +10001256 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001257 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001258
Eric Anholt673a3942008-07-30 12:06:12 -07001259 i915_gem_lastclose(dev);
1260
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001261 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001262 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001263
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001264 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Eric Anholt6c340ea2007-08-25 20:23:09 +10001267void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001269 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001270 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1271 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Eric Anholt673a3942008-07-30 12:06:12 -07001274void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
1275{
1276 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
1277
1278 drm_free(i915_file_priv, sizeof(*i915_file_priv), DRM_MEM_FILES);
1279}
1280
Eric Anholtc153f452007-09-03 12:06:45 +10001281struct drm_ioctl_desc i915_ioctls[] = {
1282 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1283 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1284 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
1285 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1286 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1287 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1288 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
1289 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1290 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
1291 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
1292 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1293 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
1294 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1295 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1296 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
1297 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
Matthias Hopf4b408932008-10-18 07:18:05 +10001298 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 +10001299 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 -07001300 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH),
1301 DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
1302 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
1303 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH),
1304 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH),
Dave Airlie2bdf00b2008-10-07 13:40:10 +10001305 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1306 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 -07001307 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, 0),
1308 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, 0),
1309 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, 0),
1310 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, 0),
Jesse Barnesde151cf2008-11-12 10:03:55 -08001311 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, 0),
Eric Anholt673a3942008-07-30 12:06:12 -07001312 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, 0),
1313 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, 0),
1314 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, 0),
1315 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, 0),
Eric Anholt5a125c32008-10-22 21:40:13 -07001316 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, 0),
Dave Airliec94f7022005-07-07 21:03:38 +10001317};
1318
1319int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001320
1321/**
1322 * Determine if the device really is AGP or not.
1323 *
1324 * All Intel graphics chipsets are treated as AGP, even if they are really
1325 * PCI-e.
1326 *
1327 * \param dev The device to be tested.
1328 *
1329 * \returns
1330 * A value of 1 is always retured to indictate every i9x5 is AGP.
1331 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001332int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001333{
1334 return 1;
1335}