blob: 2dc93939507d0fba845426298083bb2c2e604099 [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"
Dave Airlie785b93e2009-08-28 15:46:53 +100032#include "drm_fb_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "i915_drm.h"
35#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010036#include "i915_trace.h"
Dave Airlie28d52042009-09-21 14:33:58 +100037#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080038#include <linux/acpi.h>
39#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100040#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* Really want an OS-independent resettable timer. Would like to have
44 * this loop run for (eg) 3 sec, but have the timer reset every time
45 * the head pointer changes, so that EBUSY only happens if the ring
46 * actually stalls for (eg) 3 seconds.
47 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100048int i915_wait_ring(struct drm_device * dev, int n, const char *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 drm_i915_private_t *dev_priv = dev->dev_private;
51 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
Keith Packardd3a6d442008-07-30 12:21:20 -070052 u32 acthd_reg = IS_I965G(dev) ? ACTHD_I965 : ACTHD;
53 u32 last_acthd = I915_READ(acthd_reg);
54 u32 acthd;
Jesse Barnes585fb112008-07-29 11:54:06 -070055 u32 last_head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int i;
57
Chris Wilson1c5d22f2009-08-25 11:15:50 +010058 trace_i915_ring_wait_begin (dev);
59
Keith Packardd3a6d442008-07-30 12:21:20 -070060 for (i = 0; i < 100000; i++) {
Jesse Barnes585fb112008-07-29 11:54:06 -070061 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Keith Packardd3a6d442008-07-30 12:21:20 -070062 acthd = I915_READ(acthd_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 ring->space = ring->head - (ring->tail + 8);
64 if (ring->space < 0)
65 ring->space += ring->Size;
Chris Wilson1c5d22f2009-08-25 11:15:50 +010066 if (ring->space >= n) {
67 trace_i915_ring_wait_end (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +010069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Chris Wilson98787c02009-03-06 23:27:52 +000071 if (dev->primary->master) {
72 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
73 if (master_priv->sarea_priv)
74 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
75 }
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 if (ring->head != last_head)
79 i = 0;
Keith Packardd3a6d442008-07-30 12:21:20 -070080 if (acthd != last_acthd)
81 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 last_head = ring->head;
Keith Packardd3a6d442008-07-30 12:21:20 -070084 last_acthd = acthd;
85 msleep_interruptible(10);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88
Chris Wilson1c5d22f2009-08-25 11:15:50 +010089 trace_i915_ring_wait_end (dev);
Eric Anholt20caafa2007-08-25 19:22:43 +100090 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Chris Wilson0ef82af2009-09-05 18:07:06 +010093/* As a ringbuffer is only allowed to wrap between instructions, fill
94 * the tail with NOOPs.
95 */
96int i915_wrap_ring(struct drm_device *dev)
97{
98 drm_i915_private_t *dev_priv = dev->dev_private;
99 volatile unsigned int *virt;
100 int rem;
101
102 rem = dev_priv->ring.Size - dev_priv->ring.tail;
103 if (dev_priv->ring.space < rem) {
104 int ret = i915_wait_ring(dev, rem, __func__);
105 if (ret)
106 return ret;
107 }
108 dev_priv->ring.space -= rem;
109
110 virt = (unsigned int *)
111 (dev_priv->ring.virtual_start + dev_priv->ring.tail);
112 rem /= 4;
113 while (rem--)
114 *virt++ = MI_NOOP;
115
116 dev_priv->ring.tail = 0;
117
118 return 0;
119}
120
Keith Packard398c9cb2008-07-30 13:03:43 -0700121/**
122 * Sets up the hardware status page for devices that need a physical address
123 * in the register.
124 */
Eric Anholt3043c602008-10-02 12:24:47 -0700125static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700126{
127 drm_i915_private_t *dev_priv = dev->dev_private;
128 /* Program Hardware Status Page */
129 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +0800130 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -0700131
132 if (!dev_priv->status_page_dmah) {
133 DRM_ERROR("Can not allocate hardware status page\n");
134 return -ENOMEM;
135 }
136 dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr;
137 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
138
139 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
140
Zhenyu Wang9b974cc2010-01-05 11:25:06 +0800141 if (IS_I965G(dev))
142 dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) &
143 0xf0;
144
Keith Packard398c9cb2008-07-30 13:03:43 -0700145 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800146 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -0700147 return 0;
148}
149
150/**
151 * Frees the hardware status page, whether it's a physical address or a virtual
152 * address set up by the X Server.
153 */
Eric Anholt3043c602008-10-02 12:24:47 -0700154static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700155{
156 drm_i915_private_t *dev_priv = dev->dev_private;
157 if (dev_priv->status_page_dmah) {
158 drm_pci_free(dev, dev_priv->status_page_dmah);
159 dev_priv->status_page_dmah = NULL;
160 }
161
162 if (dev_priv->status_gfx_addr) {
163 dev_priv->status_gfx_addr = 0;
164 drm_core_ioremapfree(&dev_priv->hws_map, dev);
165 }
166
167 /* Need to rewrite hardware status page */
168 I915_WRITE(HWS_PGA, 0x1ffff000);
169}
170
Dave Airlie84b1fd12007-07-11 15:53:27 +1000171void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000174 struct drm_i915_master_private *master_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
176
Jesse Barnes79e53942008-11-07 14:24:08 -0800177 /*
178 * We should never lose context on the ring with modesetting
179 * as we don't expose it to userspace
180 */
181 if (drm_core_check_feature(dev, DRIVER_MODESET))
182 return;
183
Jesse Barnes585fb112008-07-29 11:54:06 -0700184 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
185 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 ring->space = ring->head - (ring->tail + 8);
187 if (ring->space < 0)
188 ring->space += ring->Size;
189
Dave Airlie7c1c2872008-11-28 14:22:24 +1000190 if (!dev->primary->master)
191 return;
192
193 master_priv = dev->primary->master->driver_priv;
194 if (ring->head == ring->tail && master_priv->sarea_priv)
195 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Dave Airlie84b1fd12007-07-11 15:53:27 +1000198static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000200 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Make sure interrupts are disabled here because the uninstall ioctl
202 * may not have been called from userspace and after dev_private
203 * is freed, it's too late.
204 */
Eric Anholted4cb412008-07-29 12:10:39 -0700205 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000206 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000208 if (dev_priv->ring.virtual_start) {
209 drm_core_ioremapfree(&dev_priv->ring.map, dev);
Eric Anholt3043c602008-10-02 12:24:47 -0700210 dev_priv->ring.virtual_start = NULL;
211 dev_priv->ring.map.handle = NULL;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000212 dev_priv->ring.map.size = 0;
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Keith Packard398c9cb2008-07-30 13:03:43 -0700215 /* Clear the HWS virtual address at teardown */
216 if (I915_NEED_GFX_HWS(dev))
217 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 return 0;
220}
221
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000222static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000224 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000225 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Dave Airlie3a03ac12009-01-11 09:03:49 +1000227 master_priv->sarea = drm_getsarea(dev);
228 if (master_priv->sarea) {
229 master_priv->sarea_priv = (drm_i915_sarea_t *)
230 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
231 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800232 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000233 }
234
Eric Anholt673a3942008-07-30 12:06:12 -0700235 if (init->ring_size != 0) {
236 if (dev_priv->ring.ring_obj != NULL) {
237 i915_dma_cleanup(dev);
238 DRM_ERROR("Client tried to initialize ringbuffer in "
239 "GEM mode\n");
240 return -EINVAL;
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Eric Anholt673a3942008-07-30 12:06:12 -0700243 dev_priv->ring.Size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Eric Anholt673a3942008-07-30 12:06:12 -0700245 dev_priv->ring.map.offset = init->ring_start;
246 dev_priv->ring.map.size = init->ring_size;
247 dev_priv->ring.map.type = 0;
248 dev_priv->ring.map.flags = 0;
249 dev_priv->ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jesse Barnes6fb88582009-02-23 10:08:21 +1000251 drm_core_ioremap_wc(&dev_priv->ring.map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700252
253 if (dev_priv->ring.map.handle == NULL) {
254 i915_dma_cleanup(dev);
255 DRM_ERROR("can not ioremap virtual address for"
256 " ring buffer\n");
257 return -ENOMEM;
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
261 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
262
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000263 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 dev_priv->back_offset = init->back_offset;
265 dev_priv->front_offset = init->front_offset;
266 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000267 if (master_priv->sarea_priv)
268 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* Allow hardware batchbuffers unless told otherwise.
271 */
272 dev_priv->allow_batchbuffer = 1;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return 0;
275}
276
Dave Airlie84b1fd12007-07-11 15:53:27 +1000277static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
280
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800281 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (dev_priv->ring.map.handle == NULL) {
284 DRM_ERROR("can not ioremap virtual address for"
285 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000286 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
289 /* Program Hardware Status Page */
290 if (!dev_priv->hw_status_page) {
291 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000292 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800294 DRM_DEBUG_DRIVER("hw status page @ %p\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800295 dev_priv->hw_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000297 if (dev_priv->status_gfx_addr != 0)
Jesse Barnes585fb112008-07-29 11:54:06 -0700298 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000299 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700300 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800301 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 return 0;
304}
305
Eric Anholtc153f452007-09-03 12:06:45 +1000306static int i915_dma_init(struct drm_device *dev, void *data,
307 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Eric Anholtc153f452007-09-03 12:06:45 +1000309 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int retcode = 0;
311
Eric Anholtc153f452007-09-03 12:06:45 +1000312 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000314 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
316 case I915_CLEANUP_DMA:
317 retcode = i915_dma_cleanup(dev);
318 break;
319 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100320 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000323 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 break;
325 }
326
327 return retcode;
328}
329
330/* Implement basically the same security restrictions as hardware does
331 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
332 *
333 * Most of the calculations below involve calculating the size of a
334 * particular instruction. It's important to get the size right as
335 * that tells us where the next instruction to check is. Any illegal
336 * instruction detected will be given a size of zero, which is a
337 * signal to abort the rest of the buffer.
338 */
339static int do_validate_cmd(int cmd)
340{
341 switch (((cmd >> 29) & 0x7)) {
342 case 0x0:
343 switch ((cmd >> 23) & 0x3f) {
344 case 0x0:
345 return 1; /* MI_NOOP */
346 case 0x4:
347 return 1; /* MI_FLUSH */
348 default:
349 return 0; /* disallow everything else */
350 }
351 break;
352 case 0x1:
353 return 0; /* reserved */
354 case 0x2:
355 return (cmd & 0xff) + 2; /* 2d commands */
356 case 0x3:
357 if (((cmd >> 24) & 0x1f) <= 0x18)
358 return 1;
359
360 switch ((cmd >> 24) & 0x1f) {
361 case 0x1c:
362 return 1;
363 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000364 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 case 0x3:
366 return (cmd & 0x1f) + 2;
367 case 0x4:
368 return (cmd & 0xf) + 2;
369 default:
370 return (cmd & 0xffff) + 2;
371 }
372 case 0x1e:
373 if (cmd & (1 << 23))
374 return (cmd & 0xffff) + 1;
375 else
376 return 1;
377 case 0x1f:
378 if ((cmd & (1 << 23)) == 0) /* inline vertices */
379 return (cmd & 0x1ffff) + 2;
380 else if (cmd & (1 << 17)) /* indirect random */
381 if ((cmd & 0xffff) == 0)
382 return 0; /* unknown length, too hard */
383 else
384 return (((cmd & 0xffff) + 1) / 2) + 1;
385 else
386 return 2; /* indirect sequential */
387 default:
388 return 0;
389 }
390 default:
391 return 0;
392 }
393
394 return 0;
395}
396
397static int validate_cmd(int cmd)
398{
399 int ret = do_validate_cmd(cmd);
400
Dave Airliebc5f4522007-11-05 12:50:58 +1000401/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return ret;
404}
405
Eric Anholt201361a2009-03-11 12:30:04 -0700406static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 drm_i915_private_t *dev_priv = dev->dev_private;
409 int i;
410 RING_LOCALS;
411
Dave Airliede227f52006-01-25 15:31:43 +1100412 if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000413 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100414
Alan Hourihanec29b6692006-08-12 16:29:24 +1000415 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 for (i = 0; i < dwords;) {
418 int cmd, sz;
419
Eric Anholt201361a2009-03-11 12:30:04 -0700420 cmd = buffer[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000423 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 OUT_RING(cmd);
426
427 while (++i, --sz) {
Eric Anholt201361a2009-03-11 12:30:04 -0700428 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Dave Airliede227f52006-01-25 15:31:43 +1100432 if (dwords & 1)
433 OUT_RING(0);
434
435 ADVANCE_LP_RING();
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return 0;
438}
439
Eric Anholt673a3942008-07-30 12:06:12 -0700440int
441i915_emit_box(struct drm_device *dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700442 struct drm_clip_rect *boxes,
Eric Anholt673a3942008-07-30 12:06:12 -0700443 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt201361a2009-03-11 12:30:04 -0700446 struct drm_clip_rect box = boxes[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 RING_LOCALS;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
450 DRM_ERROR("Bad box %d,%d..%d,%d\n",
451 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
Alan Hourihanec29b6692006-08-12 16:29:24 +1000455 if (IS_I965G(dev)) {
456 BEGIN_LP_RING(4);
457 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
458 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000459 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000460 OUT_RING(DR4);
461 ADVANCE_LP_RING();
462 } else {
463 BEGIN_LP_RING(6);
464 OUT_RING(GFX_OP_DRAWRECT_INFO);
465 OUT_RING(DR1);
466 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
467 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
468 OUT_RING(DR4);
469 OUT_RING(0);
470 ADVANCE_LP_RING();
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 return 0;
474}
475
Alan Hourihanec29b6692006-08-12 16:29:24 +1000476/* XXX: Emitting the counter should really be moved to part of the IRQ
477 * emit. For now, do it in both places:
478 */
479
Dave Airlie84b1fd12007-07-11 15:53:27 +1000480static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100481{
482 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000483 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100484 RING_LOCALS;
485
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400486 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000487 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400488 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000489 if (master_priv->sarea_priv)
490 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100491
492 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700493 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000494 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100495 OUT_RING(dev_priv->counter);
496 OUT_RING(0);
497 ADVANCE_LP_RING();
498}
499
Dave Airlie84b1fd12007-07-11 15:53:27 +1000500static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700501 drm_i915_cmdbuffer_t *cmd,
502 struct drm_clip_rect *cliprects,
503 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 int nbox = cmd->num_cliprects;
506 int i = 0, count, ret;
507
508 if (cmd->sz & 0x3) {
509 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000510 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
513 i915_kernel_lost_context(dev);
514
515 count = nbox ? nbox : 1;
516
517 for (i = 0; i < count; i++) {
518 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700519 ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 cmd->DR1, cmd->DR4);
521 if (ret)
522 return ret;
523 }
524
Eric Anholt201361a2009-03-11 12:30:04 -0700525 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (ret)
527 return ret;
528 }
529
Dave Airliede227f52006-01-25 15:31:43 +1100530 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return 0;
532}
533
Dave Airlie84b1fd12007-07-11 15:53:27 +1000534static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700535 drm_i915_batchbuffer_t * batch,
536 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int nbox = batch->num_cliprects;
540 int i = 0, count;
541 RING_LOCALS;
542
543 if ((batch->start | batch->used) & 0x7) {
544 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000545 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
548 i915_kernel_lost_context(dev);
549
550 count = nbox ? nbox : 1;
551
552 for (i = 0; i < count; i++) {
553 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700554 int ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 batch->DR1, batch->DR4);
556 if (ret)
557 return ret;
558 }
559
Keith Packard0790d5e2008-07-30 12:28:47 -0700560 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000562 if (IS_I965G(dev)) {
563 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
564 OUT_RING(batch->start);
565 } else {
566 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
567 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 ADVANCE_LP_RING();
570 } else {
571 BEGIN_LP_RING(4);
572 OUT_RING(MI_BATCH_BUFFER);
573 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
574 OUT_RING(batch->start + batch->used - 4);
575 OUT_RING(0);
576 ADVANCE_LP_RING();
577 }
578 }
579
Dave Airliede227f52006-01-25 15:31:43 +1100580 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 return 0;
583}
584
Dave Airlieaf6061a2008-05-07 12:15:39 +1000585static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000588 struct drm_i915_master_private *master_priv =
589 dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 RING_LOCALS;
591
Dave Airlie7c1c2872008-11-28 14:22:24 +1000592 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400593 return -EINVAL;
594
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800595 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800596 __func__,
597 dev_priv->current_page,
598 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Dave Airlieaf6061a2008-05-07 12:15:39 +1000600 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Dave Airlieaf6061a2008-05-07 12:15:39 +1000602 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700603 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000604 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ADVANCE_LP_RING();
606
Dave Airlieaf6061a2008-05-07 12:15:39 +1000607 BEGIN_LP_RING(6);
608 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
609 OUT_RING(0);
610 if (dev_priv->current_page == 0) {
611 OUT_RING(dev_priv->back_offset);
612 dev_priv->current_page = 1;
613 } else {
614 OUT_RING(dev_priv->front_offset);
615 dev_priv->current_page = 0;
616 }
617 OUT_RING(0);
618 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000619
Dave Airlieaf6061a2008-05-07 12:15:39 +1000620 BEGIN_LP_RING(2);
621 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
622 OUT_RING(0);
623 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000624
Dave Airlie7c1c2872008-11-28 14:22:24 +1000625 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000626
Dave Airlieaf6061a2008-05-07 12:15:39 +1000627 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700628 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000629 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000630 OUT_RING(dev_priv->counter);
631 OUT_RING(0);
632 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000633
Dave Airlie7c1c2872008-11-28 14:22:24 +1000634 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Dave Airlie84b1fd12007-07-11 15:53:27 +1000638static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 drm_i915_private_t *dev_priv = dev->dev_private;
641
642 i915_kernel_lost_context(dev);
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700643 return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Eric Anholtc153f452007-09-03 12:06:45 +1000646static int i915_flush_ioctl(struct drm_device *dev, void *data,
647 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Eric Anholt546b0972008-09-01 16:45:29 -0700649 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Eric Anholt546b0972008-09-01 16:45:29 -0700651 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
652
653 mutex_lock(&dev->struct_mutex);
654 ret = i915_quiescent(dev);
655 mutex_unlock(&dev->struct_mutex);
656
657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Eric Anholtc153f452007-09-03 12:06:45 +1000660static int i915_batchbuffer(struct drm_device *dev, void *data,
661 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000664 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000666 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000667 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700669 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (!dev_priv->allow_batchbuffer) {
672 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000673 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800676 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800677 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Eric Anholt546b0972008-09-01 16:45:29 -0700679 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Eric Anholt201361a2009-03-11 12:30:04 -0700681 if (batch->num_cliprects < 0)
682 return -EINVAL;
683
684 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700685 cliprects = kcalloc(batch->num_cliprects,
686 sizeof(struct drm_clip_rect),
687 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700688 if (cliprects == NULL)
689 return -ENOMEM;
690
691 ret = copy_from_user(cliprects, batch->cliprects,
692 batch->num_cliprects *
693 sizeof(struct drm_clip_rect));
694 if (ret != 0)
695 goto fail_free;
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Eric Anholt546b0972008-09-01 16:45:29 -0700698 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700699 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700700 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400702 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000703 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700704
705fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700706 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return ret;
709}
710
Eric Anholtc153f452007-09-03 12:06:45 +1000711static int i915_cmdbuffer(struct drm_device *dev, void *data,
712 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000715 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000717 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000718 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700719 struct drm_clip_rect *cliprects = NULL;
720 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 int ret;
722
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800723 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800724 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Eric Anholt546b0972008-09-01 16:45:29 -0700726 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Eric Anholt201361a2009-03-11 12:30:04 -0700728 if (cmdbuf->num_cliprects < 0)
729 return -EINVAL;
730
Eric Anholt9a298b22009-03-24 12:23:04 -0700731 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700732 if (batch_data == NULL)
733 return -ENOMEM;
734
735 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
736 if (ret != 0)
737 goto fail_batch_free;
738
739 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700740 cliprects = kcalloc(cmdbuf->num_cliprects,
741 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000742 if (cliprects == NULL) {
743 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700744 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000745 }
Eric Anholt201361a2009-03-11 12:30:04 -0700746
747 ret = copy_from_user(cliprects, cmdbuf->cliprects,
748 cmdbuf->num_cliprects *
749 sizeof(struct drm_clip_rect));
750 if (ret != 0)
751 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
Eric Anholt546b0972008-09-01 16:45:29 -0700754 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700755 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700756 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (ret) {
758 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000759 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400762 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000763 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700764
Eric Anholt201361a2009-03-11 12:30:04 -0700765fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700766 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000767fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700768 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700769
770 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Eric Anholtc153f452007-09-03 12:06:45 +1000773static int i915_flip_bufs(struct drm_device *dev, void *data,
774 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Eric Anholt546b0972008-09-01 16:45:29 -0700776 int ret;
777
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800778 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Eric Anholt546b0972008-09-01 16:45:29 -0700780 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric Anholt546b0972008-09-01 16:45:29 -0700782 mutex_lock(&dev->struct_mutex);
783 ret = i915_dispatch_flip(dev);
784 mutex_unlock(&dev->struct_mutex);
785
786 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Eric Anholtc153f452007-09-03 12:06:45 +1000789static int i915_getparam(struct drm_device *dev, void *data,
790 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000793 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int value;
795
796 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000797 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000798 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Eric Anholtc153f452007-09-03 12:06:45 +1000801 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700803 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805 case I915_PARAM_ALLOW_BATCHBUFFER:
806 value = dev_priv->allow_batchbuffer ? 1 : 0;
807 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100808 case I915_PARAM_LAST_DISPATCH:
809 value = READ_BREADCRUMB(dev_priv);
810 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400811 case I915_PARAM_CHIPSET_ID:
812 value = dev->pci_device;
813 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700814 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000815 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700816 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800817 case I915_PARAM_NUM_FENCES_AVAIL:
818 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
819 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200820 case I915_PARAM_HAS_OVERLAY:
821 value = dev_priv->overlay ? 1 : 0;
822 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800823 case I915_PARAM_HAS_PAGEFLIPPING:
824 value = 1;
825 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500826 case I915_PARAM_HAS_EXECBUF2:
827 /* depends on GEM */
828 value = dev_priv->has_gem;
829 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800831 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500832 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
Eric Anholtc153f452007-09-03 12:06:45 +1000836 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000838 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
841 return 0;
842}
843
Eric Anholtc153f452007-09-03 12:06:45 +1000844static int i915_setparam(struct drm_device *dev, void *data,
845 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000848 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000851 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000852 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Eric Anholtc153f452007-09-03 12:06:45 +1000855 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 break;
858 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000859 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000862 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800864 case I915_SETPARAM_NUM_USED_FENCES:
865 if (param->value > dev_priv->num_fence_regs ||
866 param->value < 0)
867 return -EINVAL;
868 /* Userspace can use first N regs */
869 dev_priv->fence_reg_start = param->value;
870 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800872 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800873 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000874 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
877 return 0;
878}
879
Eric Anholtc153f452007-09-03 12:06:45 +1000880static int i915_set_status_page(struct drm_device *dev, void *data,
881 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000882{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000883 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000884 drm_i915_hws_addr_t *hws = data;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000885
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000886 if (!I915_NEED_GFX_HWS(dev))
887 return -EINVAL;
888
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000889 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000890 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000891 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000892 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000893
Jesse Barnes79e53942008-11-07 14:24:08 -0800894 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
895 WARN(1, "tried to set status page when mode setting active\n");
896 return 0;
897 }
898
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800899 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000900
Eric Anholtc153f452007-09-03 12:06:45 +1000901 dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12);
902
Eric Anholt8b409582007-11-22 16:40:37 +1000903 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000904 dev_priv->hws_map.size = 4*1024;
905 dev_priv->hws_map.type = 0;
906 dev_priv->hws_map.flags = 0;
907 dev_priv->hws_map.mtrr = 0;
908
Dave Airliedd0910b2009-02-25 14:49:21 +1000909 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000910 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000911 i915_dma_cleanup(dev);
912 dev_priv->status_gfx_addr = 0;
913 DRM_ERROR("can not ioremap virtual address for"
914 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000915 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000916 }
917 dev_priv->hw_status_page = dev_priv->hws_map.handle;
918
919 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
Jesse Barnes585fb112008-07-29 11:54:06 -0700920 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800921 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800922 dev_priv->status_gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800923 DRM_DEBUG_DRIVER("load hws at %p\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800924 dev_priv->hw_status_page);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000925 return 0;
926}
927
Dave Airlieec2a4c32009-08-04 11:43:41 +1000928static int i915_get_bridge_dev(struct drm_device *dev)
929{
930 struct drm_i915_private *dev_priv = dev->dev_private;
931
932 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
933 if (!dev_priv->bridge_dev) {
934 DRM_ERROR("bridge device not found\n");
935 return -1;
936 }
937 return 0;
938}
939
Zhenyu Wangc48044112009-12-17 14:48:43 +0800940#define MCHBAR_I915 0x44
941#define MCHBAR_I965 0x48
942#define MCHBAR_SIZE (4*4096)
943
944#define DEVEN_REG 0x54
945#define DEVEN_MCHBAR_EN (1 << 28)
946
947/* Allocate space for the MCH regs if needed, return nonzero on error */
948static int
949intel_alloc_mchbar_resource(struct drm_device *dev)
950{
951 drm_i915_private_t *dev_priv = dev->dev_private;
952 int reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
953 u32 temp_lo, temp_hi = 0;
954 u64 mchbar_addr;
955 int ret = 0;
956
957 if (IS_I965G(dev))
958 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
959 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
960 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
961
962 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
963#ifdef CONFIG_PNP
964 if (mchbar_addr &&
965 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) {
966 ret = 0;
967 goto out;
968 }
969#endif
970
971 /* Get some space for it */
972 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus, &dev_priv->mch_res,
973 MCHBAR_SIZE, MCHBAR_SIZE,
974 PCIBIOS_MIN_MEM,
975 0, pcibios_align_resource,
976 dev_priv->bridge_dev);
977 if (ret) {
978 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
979 dev_priv->mch_res.start = 0;
980 goto out;
981 }
982
983 if (IS_I965G(dev))
984 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
985 upper_32_bits(dev_priv->mch_res.start));
986
987 pci_write_config_dword(dev_priv->bridge_dev, reg,
988 lower_32_bits(dev_priv->mch_res.start));
989out:
990 return ret;
991}
992
993/* Setup MCHBAR if possible, return true if we should disable it again */
994static void
995intel_setup_mchbar(struct drm_device *dev)
996{
997 drm_i915_private_t *dev_priv = dev->dev_private;
998 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
999 u32 temp;
1000 bool enabled;
1001
1002 dev_priv->mchbar_need_disable = false;
1003
1004 if (IS_I915G(dev) || IS_I915GM(dev)) {
1005 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1006 enabled = !!(temp & DEVEN_MCHBAR_EN);
1007 } else {
1008 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1009 enabled = temp & 1;
1010 }
1011
1012 /* If it's already enabled, don't have to do anything */
1013 if (enabled)
1014 return;
1015
1016 if (intel_alloc_mchbar_resource(dev))
1017 return;
1018
1019 dev_priv->mchbar_need_disable = true;
1020
1021 /* Space is allocated or reserved, so enable it. */
1022 if (IS_I915G(dev) || IS_I915GM(dev)) {
1023 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1024 temp | DEVEN_MCHBAR_EN);
1025 } else {
1026 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1027 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1028 }
1029}
1030
1031static void
1032intel_teardown_mchbar(struct drm_device *dev)
1033{
1034 drm_i915_private_t *dev_priv = dev->dev_private;
1035 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
1036 u32 temp;
1037
1038 if (dev_priv->mchbar_need_disable) {
1039 if (IS_I915G(dev) || IS_I915GM(dev)) {
1040 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1041 temp &= ~DEVEN_MCHBAR_EN;
1042 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1043 } else {
1044 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1045 temp &= ~1;
1046 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1047 }
1048 }
1049
1050 if (dev_priv->mch_res.start)
1051 release_resource(&dev_priv->mch_res);
1052}
1053
Jesse Barnes79e53942008-11-07 14:24:08 -08001054/**
1055 * i915_probe_agp - get AGP bootup configuration
1056 * @pdev: PCI device
1057 * @aperture_size: returns AGP aperture configured size
1058 * @preallocated_size: returns size of BIOS preallocated AGP space
1059 *
1060 * Since Intel integrated graphics are UMA, the BIOS has to set aside
1061 * some RAM for the framebuffer at early boot. This code figures out
1062 * how much was set aside so we can use it for our own purposes.
1063 */
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001064static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size,
Jesse Barnes80824002009-09-10 15:28:06 -07001065 uint32_t *preallocated_size,
1066 uint32_t *start)
Jesse Barnes79e53942008-11-07 14:24:08 -08001067{
Dave Airlieec2a4c32009-08-04 11:43:41 +10001068 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001069 u16 tmp = 0;
1070 unsigned long overhead;
Eric Anholt241fa852009-01-02 18:05:51 -08001071 unsigned long stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001072
Jesse Barnes79e53942008-11-07 14:24:08 -08001073 /* Get the fb aperture size and "stolen" memory amount. */
Dave Airlieec2a4c32009-08-04 11:43:41 +10001074 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &tmp);
Jesse Barnes79e53942008-11-07 14:24:08 -08001075
1076 *aperture_size = 1024 * 1024;
1077 *preallocated_size = 1024 * 1024;
1078
Eric Anholt60fd99e2008-12-03 22:50:02 -08001079 switch (dev->pdev->device) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001080 case PCI_DEVICE_ID_INTEL_82830_CGC:
1081 case PCI_DEVICE_ID_INTEL_82845G_IG:
1082 case PCI_DEVICE_ID_INTEL_82855GM_IG:
1083 case PCI_DEVICE_ID_INTEL_82865_IG:
1084 if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
1085 *aperture_size *= 64;
1086 else
1087 *aperture_size *= 128;
1088 break;
1089 default:
1090 /* 9xx supports large sizes, just look at the length */
Eric Anholt60fd99e2008-12-03 22:50:02 -08001091 *aperture_size = pci_resource_len(dev->pdev, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001092 break;
1093 }
1094
1095 /*
1096 * Some of the preallocated space is taken by the GTT
1097 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
1098 */
Eric Anholtbad720f2009-10-22 16:11:14 -07001099 if (IS_G4X(dev) || IS_PINEVIEW(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev))
Eric Anholt60fd99e2008-12-03 22:50:02 -08001100 overhead = 4096;
1101 else
1102 overhead = (*aperture_size / 1024) + 4096;
1103
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001104 if (IS_GEN6(dev)) {
1105 /* SNB has memory control reg at 0x50.w */
1106 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &tmp);
1107
1108 switch (tmp & SNB_GMCH_GMS_STOLEN_MASK) {
1109 case INTEL_855_GMCH_GMS_DISABLED:
Eric Anholtbad720f2009-10-22 16:11:14 -07001110 DRM_ERROR("video memory is disabled\n");
1111 return -1;
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001112 case SNB_GMCH_GMS_STOLEN_32M:
1113 stolen = 32 * 1024 * 1024;
1114 break;
1115 case SNB_GMCH_GMS_STOLEN_64M:
1116 stolen = 64 * 1024 * 1024;
1117 break;
1118 case SNB_GMCH_GMS_STOLEN_96M:
1119 stolen = 96 * 1024 * 1024;
1120 break;
1121 case SNB_GMCH_GMS_STOLEN_128M:
1122 stolen = 128 * 1024 * 1024;
1123 break;
1124 case SNB_GMCH_GMS_STOLEN_160M:
1125 stolen = 160 * 1024 * 1024;
1126 break;
1127 case SNB_GMCH_GMS_STOLEN_192M:
1128 stolen = 192 * 1024 * 1024;
1129 break;
1130 case SNB_GMCH_GMS_STOLEN_224M:
1131 stolen = 224 * 1024 * 1024;
1132 break;
1133 case SNB_GMCH_GMS_STOLEN_256M:
1134 stolen = 256 * 1024 * 1024;
1135 break;
1136 case SNB_GMCH_GMS_STOLEN_288M:
1137 stolen = 288 * 1024 * 1024;
1138 break;
1139 case SNB_GMCH_GMS_STOLEN_320M:
1140 stolen = 320 * 1024 * 1024;
1141 break;
1142 case SNB_GMCH_GMS_STOLEN_352M:
1143 stolen = 352 * 1024 * 1024;
1144 break;
1145 case SNB_GMCH_GMS_STOLEN_384M:
1146 stolen = 384 * 1024 * 1024;
1147 break;
1148 case SNB_GMCH_GMS_STOLEN_416M:
1149 stolen = 416 * 1024 * 1024;
1150 break;
1151 case SNB_GMCH_GMS_STOLEN_448M:
1152 stolen = 448 * 1024 * 1024;
1153 break;
1154 case SNB_GMCH_GMS_STOLEN_480M:
1155 stolen = 480 * 1024 * 1024;
1156 break;
1157 case SNB_GMCH_GMS_STOLEN_512M:
1158 stolen = 512 * 1024 * 1024;
1159 break;
1160 default:
1161 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1162 tmp & SNB_GMCH_GMS_STOLEN_MASK);
1163 return -1;
Eric Anholtbad720f2009-10-22 16:11:14 -07001164 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001165 } else {
1166 switch (tmp & INTEL_GMCH_GMS_MASK) {
1167 case INTEL_855_GMCH_GMS_DISABLED:
1168 DRM_ERROR("video memory is disabled\n");
1169 return -1;
1170 case INTEL_855_GMCH_GMS_STOLEN_1M:
1171 stolen = 1 * 1024 * 1024;
1172 break;
1173 case INTEL_855_GMCH_GMS_STOLEN_4M:
1174 stolen = 4 * 1024 * 1024;
1175 break;
1176 case INTEL_855_GMCH_GMS_STOLEN_8M:
1177 stolen = 8 * 1024 * 1024;
1178 break;
1179 case INTEL_855_GMCH_GMS_STOLEN_16M:
1180 stolen = 16 * 1024 * 1024;
1181 break;
1182 case INTEL_855_GMCH_GMS_STOLEN_32M:
1183 stolen = 32 * 1024 * 1024;
1184 break;
1185 case INTEL_915G_GMCH_GMS_STOLEN_48M:
1186 stolen = 48 * 1024 * 1024;
1187 break;
1188 case INTEL_915G_GMCH_GMS_STOLEN_64M:
1189 stolen = 64 * 1024 * 1024;
1190 break;
1191 case INTEL_GMCH_GMS_STOLEN_128M:
1192 stolen = 128 * 1024 * 1024;
1193 break;
1194 case INTEL_GMCH_GMS_STOLEN_256M:
1195 stolen = 256 * 1024 * 1024;
1196 break;
1197 case INTEL_GMCH_GMS_STOLEN_96M:
1198 stolen = 96 * 1024 * 1024;
1199 break;
1200 case INTEL_GMCH_GMS_STOLEN_160M:
1201 stolen = 160 * 1024 * 1024;
1202 break;
1203 case INTEL_GMCH_GMS_STOLEN_224M:
1204 stolen = 224 * 1024 * 1024;
1205 break;
1206 case INTEL_GMCH_GMS_STOLEN_352M:
1207 stolen = 352 * 1024 * 1024;
1208 break;
1209 default:
1210 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1211 tmp & INTEL_GMCH_GMS_MASK);
1212 return -1;
1213 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001214 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001215
Eric Anholt241fa852009-01-02 18:05:51 -08001216 *preallocated_size = stolen - overhead;
Jesse Barnes80824002009-09-10 15:28:06 -07001217 *start = overhead;
Jesse Barnes79e53942008-11-07 14:24:08 -08001218
1219 return 0;
1220}
1221
Jesse Barnes80824002009-09-10 15:28:06 -07001222#define PTE_ADDRESS_MASK 0xfffff000
1223#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1224#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1225#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1226#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1227#define PTE_MAPPING_TYPE_MASK (3 << 1)
1228#define PTE_VALID (1 << 0)
1229
1230/**
1231 * i915_gtt_to_phys - take a GTT address and turn it into a physical one
1232 * @dev: drm device
1233 * @gtt_addr: address to translate
1234 *
1235 * Some chip functions require allocations from stolen space but need the
1236 * physical address of the memory in question. We use this routine
1237 * to get a physical address suitable for register programming from a given
1238 * GTT address.
1239 */
1240static unsigned long i915_gtt_to_phys(struct drm_device *dev,
1241 unsigned long gtt_addr)
1242{
1243 unsigned long *gtt;
1244 unsigned long entry, phys;
1245 int gtt_bar = IS_I9XX(dev) ? 0 : 1;
1246 int gtt_offset, gtt_size;
1247
1248 if (IS_I965G(dev)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001249 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001250 gtt_offset = 2*1024*1024;
1251 gtt_size = 2*1024*1024;
1252 } else {
1253 gtt_offset = 512*1024;
1254 gtt_size = 512*1024;
1255 }
1256 } else {
1257 gtt_bar = 3;
1258 gtt_offset = 0;
1259 gtt_size = pci_resource_len(dev->pdev, gtt_bar);
1260 }
1261
1262 gtt = ioremap_wc(pci_resource_start(dev->pdev, gtt_bar) + gtt_offset,
1263 gtt_size);
1264 if (!gtt) {
1265 DRM_ERROR("ioremap of GTT failed\n");
1266 return 0;
1267 }
1268
1269 entry = *(volatile u32 *)(gtt + (gtt_addr / 1024));
1270
Zhao Yakui44d98a62009-10-09 11:39:40 +08001271 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, PTE: 0x%08lx\n", gtt_addr, entry);
Jesse Barnes80824002009-09-10 15:28:06 -07001272
1273 /* Mask out these reserved bits on this hardware. */
1274 if (!IS_I9XX(dev) || IS_I915G(dev) || IS_I915GM(dev) ||
1275 IS_I945G(dev) || IS_I945GM(dev)) {
1276 entry &= ~PTE_ADDRESS_MASK_HIGH;
1277 }
1278
1279 /* If it's not a mapping type we know, then bail. */
1280 if ((entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_UNCACHED &&
1281 (entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_CACHED) {
1282 iounmap(gtt);
1283 return 0;
1284 }
1285
1286 if (!(entry & PTE_VALID)) {
1287 DRM_ERROR("bad GTT entry in stolen space\n");
1288 iounmap(gtt);
1289 return 0;
1290 }
1291
1292 iounmap(gtt);
1293
1294 phys =(entry & PTE_ADDRESS_MASK) |
1295 ((uint64_t)(entry & PTE_ADDRESS_MASK_HIGH) << (32 - 4));
1296
Zhao Yakui44d98a62009-10-09 11:39:40 +08001297 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, phys addr: 0x%08lx\n", gtt_addr, phys);
Jesse Barnes80824002009-09-10 15:28:06 -07001298
1299 return phys;
1300}
1301
1302static void i915_warn_stolen(struct drm_device *dev)
1303{
1304 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1305 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1306}
1307
1308static void i915_setup_compression(struct drm_device *dev, int size)
1309{
1310 struct drm_i915_private *dev_priv = dev->dev_private;
1311 struct drm_mm_node *compressed_fb, *compressed_llb;
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001312 unsigned long cfb_base;
1313 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001314
1315 /* Leave 1M for line length buffer & misc. */
1316 compressed_fb = drm_mm_search_free(&dev_priv->vram, size, 4096, 0);
1317 if (!compressed_fb) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001318 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001319 i915_warn_stolen(dev);
1320 return;
1321 }
1322
1323 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1324 if (!compressed_fb) {
1325 i915_warn_stolen(dev);
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001326 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001327 return;
1328 }
1329
Jesse Barnes74dff282009-09-14 15:39:40 -07001330 cfb_base = i915_gtt_to_phys(dev, compressed_fb->start);
1331 if (!cfb_base) {
1332 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1333 drm_mm_put_block(compressed_fb);
Jesse Barnes80824002009-09-10 15:28:06 -07001334 }
1335
Jesse Barnes74dff282009-09-14 15:39:40 -07001336 if (!IS_GM45(dev)) {
1337 compressed_llb = drm_mm_search_free(&dev_priv->vram, 4096,
1338 4096, 0);
1339 if (!compressed_llb) {
1340 i915_warn_stolen(dev);
1341 return;
1342 }
1343
1344 compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096);
1345 if (!compressed_llb) {
1346 i915_warn_stolen(dev);
1347 return;
1348 }
1349
1350 ll_base = i915_gtt_to_phys(dev, compressed_llb->start);
1351 if (!ll_base) {
1352 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1353 drm_mm_put_block(compressed_fb);
1354 drm_mm_put_block(compressed_llb);
1355 }
Jesse Barnes80824002009-09-10 15:28:06 -07001356 }
1357
1358 dev_priv->cfb_size = size;
1359
Jesse Barnes74dff282009-09-14 15:39:40 -07001360 if (IS_GM45(dev)) {
1361 g4x_disable_fbc(dev);
1362 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1363 } else {
1364 i8xx_disable_fbc(dev);
1365 I915_WRITE(FBC_CFB_BASE, cfb_base);
1366 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes80824002009-09-10 15:28:06 -07001367 }
1368
Jesse Barnes80824002009-09-10 15:28:06 -07001369 DRM_DEBUG("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base,
1370 ll_base, size >> 20);
Jesse Barnes80824002009-09-10 15:28:06 -07001371}
1372
Dave Airlie28d52042009-09-21 14:33:58 +10001373/* true = enable decode, false = disable decoder */
1374static unsigned int i915_vga_set_decode(void *cookie, bool state)
1375{
1376 struct drm_device *dev = cookie;
1377
1378 intel_modeset_vga_set_state(dev, state);
1379 if (state)
1380 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1381 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1382 else
1383 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1384}
1385
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001386static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1387{
1388 struct drm_device *dev = pci_get_drvdata(pdev);
1389 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1390 if (state == VGA_SWITCHEROO_ON) {
1391 printk(KERN_INFO "i915: switched off\n");
1392 /* i915 resume handler doesn't set to D0 */
1393 pci_set_power_state(dev->pdev, PCI_D0);
1394 i915_resume(dev);
1395 } else {
1396 printk(KERN_ERR "i915: switched off\n");
1397 i915_suspend(dev, pmm);
1398 }
1399}
1400
1401static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1402{
1403 struct drm_device *dev = pci_get_drvdata(pdev);
1404 bool can_switch;
1405
1406 spin_lock(&dev->count_lock);
1407 can_switch = (dev->open_count == 0);
1408 spin_unlock(&dev->count_lock);
1409 return can_switch;
1410}
1411
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001412static int i915_load_modeset_init(struct drm_device *dev,
Jesse Barnes80824002009-09-10 15:28:06 -07001413 unsigned long prealloc_start,
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001414 unsigned long prealloc_size,
1415 unsigned long agp_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001416{
1417 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001418 int fb_bar = IS_I9XX(dev) ? 2 : 0;
1419 int ret = 0;
1420
1421 dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
1422 0xff000000;
1423
Jesse Barnes79e53942008-11-07 14:24:08 -08001424 /* Basic memrange allocator for stolen space (aka vram) */
1425 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
Jesse Barnes80824002009-09-10 15:28:06 -07001426 DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024));
Jesse Barnes79e53942008-11-07 14:24:08 -08001427
Ben Gamari11ed50e2009-09-14 17:48:45 -04001428 /* We're off and running w/KMS */
1429 dev_priv->mm.suspended = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001430
Eric Anholt13f4c432009-05-12 15:27:36 -07001431 /* Let GEM Manage from end of prealloc space to end of aperture.
1432 *
1433 * However, leave one page at the end still bound to the scratch page.
1434 * There are a number of places where the hardware apparently
1435 * prefetches past the end of the object, and we've seen multiple
1436 * hangs with the GPU head pointer stuck in a batchbuffer bound
1437 * at the last page of the aperture. One page should be enough to
1438 * keep any prefetching inside of the aperture.
1439 */
1440 i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
Jesse Barnes79e53942008-11-07 14:24:08 -08001441
Ben Gamari11ed50e2009-09-14 17:48:45 -04001442 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001443 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001444 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001445 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001446 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001447
Jesse Barnes80824002009-09-10 15:28:06 -07001448 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001449 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001450 int cfb_size;
1451
1452 /* Try to get an 8M buffer... */
1453 if (prealloc_size > (9*1024*1024))
1454 cfb_size = 8*1024*1024;
1455 else /* fall back to 7/8 of the stolen space */
1456 cfb_size = prealloc_size * 7 / 8;
1457 i915_setup_compression(dev, cfb_size);
1458 }
1459
Jesse Barnes79e53942008-11-07 14:24:08 -08001460 /* Allow hardware batchbuffers unless told otherwise.
1461 */
1462 dev_priv->allow_batchbuffer = 1;
1463
1464 ret = intel_init_bios(dev);
1465 if (ret)
1466 DRM_INFO("failed to find VBIOS tables\n");
1467
Dave Airlie28d52042009-09-21 14:33:58 +10001468 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1469 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1470 if (ret)
1471 goto destroy_ringbuffer;
1472
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001473 ret = vga_switcheroo_register_client(dev->pdev,
1474 i915_switcheroo_set_state,
1475 i915_switcheroo_can_switch);
1476 if (ret)
1477 goto destroy_ringbuffer;
1478
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001479 intel_modeset_init(dev);
1480
Jesse Barnes79e53942008-11-07 14:24:08 -08001481 ret = drm_irq_install(dev);
1482 if (ret)
1483 goto destroy_ringbuffer;
1484
Jesse Barnes79e53942008-11-07 14:24:08 -08001485 /* Always safe in the mode setting case. */
1486 /* FIXME: do pre/post-mode set stuff in core KMS code */
1487 dev->vblank_disable_allowed = 1;
1488
1489 /*
1490 * Initialize the hardware status page IRQ location.
1491 */
1492
1493 I915_WRITE(INSTPM, (1 << 5) | (1 << 21));
1494
Jesse Barnes7a1fb5d2009-03-27 13:05:19 -07001495 drm_helper_initial_config(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001496
Jesse Barnes79e53942008-11-07 14:24:08 -08001497 return 0;
1498
Jesse Barnes79e53942008-11-07 14:24:08 -08001499destroy_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001500 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001501 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001502 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001503out:
1504 return ret;
1505}
1506
Dave Airlie7c1c2872008-11-28 14:22:24 +10001507int i915_master_create(struct drm_device *dev, struct drm_master *master)
1508{
1509 struct drm_i915_master_private *master_priv;
1510
Eric Anholt9a298b22009-03-24 12:23:04 -07001511 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001512 if (!master_priv)
1513 return -ENOMEM;
1514
1515 master->driver_priv = master_priv;
1516 return 0;
1517}
1518
1519void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1520{
1521 struct drm_i915_master_private *master_priv = master->driver_priv;
1522
1523 if (!master_priv)
1524 return;
1525
Eric Anholt9a298b22009-03-24 12:23:04 -07001526 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001527
1528 master->driver_priv = NULL;
1529}
1530
Shaohua Li7662c8b2009-06-26 11:23:55 +08001531static void i915_get_mem_freq(struct drm_device *dev)
1532{
1533 drm_i915_private_t *dev_priv = dev->dev_private;
1534 u32 tmp;
1535
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001536 if (!IS_PINEVIEW(dev))
Shaohua Li7662c8b2009-06-26 11:23:55 +08001537 return;
1538
1539 tmp = I915_READ(CLKCFG);
1540
1541 switch (tmp & CLKCFG_FSB_MASK) {
1542 case CLKCFG_FSB_533:
1543 dev_priv->fsb_freq = 533; /* 133*4 */
1544 break;
1545 case CLKCFG_FSB_800:
1546 dev_priv->fsb_freq = 800; /* 200*4 */
1547 break;
1548 case CLKCFG_FSB_667:
1549 dev_priv->fsb_freq = 667; /* 167*4 */
1550 break;
1551 case CLKCFG_FSB_400:
1552 dev_priv->fsb_freq = 400; /* 100*4 */
1553 break;
1554 }
1555
1556 switch (tmp & CLKCFG_MEM_MASK) {
1557 case CLKCFG_MEM_533:
1558 dev_priv->mem_freq = 533;
1559 break;
1560 case CLKCFG_MEM_667:
1561 dev_priv->mem_freq = 667;
1562 break;
1563 case CLKCFG_MEM_800:
1564 dev_priv->mem_freq = 800;
1565 break;
1566 }
1567}
1568
Jesse Barnes79e53942008-11-07 14:24:08 -08001569/**
1570 * i915_driver_load - setup chip and create an initial config
1571 * @dev: DRM device
1572 * @flags: startup flags
1573 *
1574 * The driver load routine has to do several things:
1575 * - drive output discovery via intel_modeset_init()
1576 * - initialize the memory manager
1577 * - allocate initial config memory
1578 * - setup the DRM framebuffer with the allocated memory
1579 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001580int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001581{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001582 struct drm_i915_private *dev_priv = dev->dev_private;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +11001583 resource_size_t base, size;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001584 int ret = 0, mmio_bar;
Jesse Barnes80824002009-09-10 15:28:06 -07001585 uint32_t agp_size, prealloc_size, prealloc_start;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001586
Dave Airlie22eae942005-11-10 22:16:34 +11001587 /* i915 has 4 more counters */
1588 dev->counters += 4;
1589 dev->types[6] = _DRM_STAT_IRQ;
1590 dev->types[7] = _DRM_STAT_PRIMARY;
1591 dev->types[8] = _DRM_STAT_SECONDARY;
1592 dev->types[9] = _DRM_STAT_DMA;
1593
Eric Anholt9a298b22009-03-24 12:23:04 -07001594 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001595 if (dev_priv == NULL)
1596 return -ENOMEM;
1597
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001598 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001599 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001600 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001601
1602 /* Add register map (needed for suspend/resume) */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001603 mmio_bar = IS_I9XX(dev) ? 0 : 1;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001604 base = drm_get_resource_start(dev, mmio_bar);
1605 size = drm_get_resource_len(dev, mmio_bar);
1606
Dave Airlieec2a4c32009-08-04 11:43:41 +10001607 if (i915_get_bridge_dev(dev)) {
1608 ret = -EIO;
1609 goto free_priv;
1610 }
1611
Eric Anholt3043c602008-10-02 12:24:47 -07001612 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001613 if (!dev_priv->regs) {
1614 DRM_ERROR("failed to map registers\n");
1615 ret = -EIO;
Dave Airlieec2a4c32009-08-04 11:43:41 +10001616 goto put_bridge;
Jesse Barnes79e53942008-11-07 14:24:08 -08001617 }
Eric Anholted4cb412008-07-29 12:10:39 -07001618
Eric Anholtab657db12009-01-23 12:57:47 -08001619 dev_priv->mm.gtt_mapping =
1620 io_mapping_create_wc(dev->agp->base,
1621 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001622 if (dev_priv->mm.gtt_mapping == NULL) {
1623 ret = -EIO;
1624 goto out_rmmap;
1625 }
1626
Eric Anholtab657db12009-01-23 12:57:47 -08001627 /* Set up a WC MTRR for non-PAT systems. This is more common than
1628 * one would think, because the kernel disables PAT on first
1629 * generation Core chips because WC PAT gets overridden by a UC
1630 * MTRR if present. Even if a UC MTRR isn't present.
1631 */
1632 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
1633 dev->agp->agp_info.aper_size *
1634 1024 * 1024,
1635 MTRR_TYPE_WRCOMB, 1);
1636 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07001637 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08001638 "performance may suffer.\n");
1639 }
1640
Jesse Barnes80824002009-09-10 15:28:06 -07001641 ret = i915_probe_agp(dev, &agp_size, &prealloc_size, &prealloc_start);
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001642 if (ret)
1643 goto out_iomapfree;
1644
Chris Wilsonaed5f1d2009-10-14 13:40:04 +01001645 dev_priv->wq = create_singlethread_workqueue("i915");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001646 if (dev_priv->wq == NULL) {
1647 DRM_ERROR("Failed to create our workqueue.\n");
1648 ret = -ENOMEM;
1649 goto out_iomapfree;
1650 }
1651
Dave Airlieac5c4e72008-12-19 15:38:34 +10001652 /* enable GEM by default */
1653 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10001654
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001655 if (prealloc_size > agp_size * 3 / 4) {
1656 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
1657 "memory stolen.\n",
1658 prealloc_size / 1024, agp_size / 1024);
1659 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
1660 "updating the BIOS to fix).\n");
1661 dev_priv->has_gem = 0;
1662 }
1663
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001664 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001665 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eric Anholtbad720f2009-10-22 16:11:14 -07001666 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07001667 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001668 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001669 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001670
Zhenyu Wangc48044112009-12-17 14:48:43 +08001671 /* Try to make sure MCHBAR is enabled before poking at it */
1672 intel_setup_mchbar(dev);
1673
Eric Anholt673a3942008-07-30 12:06:12 -07001674 i915_gem_load(dev);
1675
Keith Packard398c9cb2008-07-30 13:03:43 -07001676 /* Init HWS */
1677 if (!I915_NEED_GFX_HWS(dev)) {
1678 ret = i915_init_phys_hws(dev);
1679 if (ret != 0)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001680 goto out_workqueue_free;
Keith Packard398c9cb2008-07-30 13:03:43 -07001681 }
Eric Anholted4cb412008-07-29 12:10:39 -07001682
Shaohua Li7662c8b2009-06-26 11:23:55 +08001683 i915_get_mem_freq(dev);
1684
Eric Anholted4cb412008-07-29 12:10:39 -07001685 /* On the 945G/GM, the chipset reports the MSI capability on the
1686 * integrated graphics even though the support isn't actually there
1687 * according to the published specs. It doesn't appear to function
1688 * correctly in testing on 945G.
1689 * This may be a side effect of MSI having been made available for PEG
1690 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001691 *
1692 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001693 * be lost or delayed, but we use them anyways to avoid
1694 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001695 */
Keith Packardb60678a2008-12-08 11:12:28 -08001696 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001697 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001698
1699 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001700 spin_lock_init(&dev_priv->error_lock);
Jesse Barnes79e53942008-11-07 14:24:08 -08001701 dev_priv->user_irq_refcount = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001702 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001703
Keith Packard52440212008-11-18 09:30:25 -08001704 ret = drm_vblank_init(dev, I915_NUM_PIPE);
1705
1706 if (ret) {
1707 (void) i915_driver_unload(dev);
1708 return ret;
1709 }
1710
Ben Gamari11ed50e2009-09-14 17:48:45 -04001711 /* Start out suspended */
1712 dev_priv->mm.suspended = 1;
1713
Jesse Barnes79e53942008-11-07 14:24:08 -08001714 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001715 ret = i915_load_modeset_init(dev, prealloc_start,
1716 prealloc_size, agp_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001717 if (ret < 0) {
1718 DRM_ERROR("failed to init modeset\n");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001719 goto out_workqueue_free;
Jesse Barnes79e53942008-11-07 14:24:08 -08001720 }
1721 }
1722
Matthew Garrett74a365b2009-03-19 21:35:39 +00001723 /* Must be done after probing outputs */
Zhao Yakui01c66882009-10-28 05:10:00 +00001724 intel_opregion_init(dev, 0);
Matthew Garrett74a365b2009-03-19 21:35:39 +00001725
Ben Gamarif65d9422009-09-14 17:48:44 -04001726 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
1727 (unsigned long) dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001728 return 0;
1729
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001730out_workqueue_free:
1731 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001732out_iomapfree:
1733 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001734out_rmmap:
1735 iounmap(dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001736put_bridge:
1737 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001738free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001739 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001740 return ret;
1741}
1742
1743int i915_driver_unload(struct drm_device *dev)
1744{
1745 struct drm_i915_private *dev_priv = dev->dev_private;
1746
Chris Wilson9df30792010-02-18 10:24:56 +00001747 i915_destroy_error_state(dev);
1748
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001749 destroy_workqueue(dev_priv->wq);
Ben Gamarif65d9422009-09-14 17:48:44 -04001750 del_timer_sync(&dev_priv->hangcheck_timer);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001751
Eric Anholtab657db12009-01-23 12:57:47 -08001752 io_mapping_free(dev_priv->mm.gtt_mapping);
1753 if (dev_priv->mm.gtt_mtrr >= 0) {
1754 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
1755 dev->agp->agp_info.aper_size * 1024 * 1024);
1756 dev_priv->mm.gtt_mtrr = -1;
1757 }
1758
Jesse Barnes79e53942008-11-07 14:24:08 -08001759 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Zhao Yakui6363ee62009-11-24 09:48:44 +08001760 /*
1761 * free the memory space allocated for the child device
1762 * config parsed from VBT
1763 */
1764 if (dev_priv->child_dev && dev_priv->child_dev_num) {
1765 kfree(dev_priv->child_dev);
1766 dev_priv->child_dev = NULL;
1767 dev_priv->child_dev_num = 0;
1768 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001769 drm_irq_uninstall(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001770 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001771 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001772 }
1773
Eric Anholted4cb412008-07-29 12:10:39 -07001774 if (dev->pdev->msi_enabled)
1775 pci_disable_msi(dev->pdev);
1776
Eric Anholt3043c602008-10-02 12:24:47 -07001777 if (dev_priv->regs != NULL)
1778 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001779
Zhao Yakui01c66882009-10-28 05:10:00 +00001780 intel_opregion_free(dev, 0);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001781
Jesse Barnes79e53942008-11-07 14:24:08 -08001782 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1783 intel_modeset_cleanup(dev);
1784
Dave Airlie71acb5e2008-12-30 20:31:46 +10001785 i915_gem_free_all_phys_object(dev);
1786
Jesse Barnes79e53942008-11-07 14:24:08 -08001787 mutex_lock(&dev->struct_mutex);
1788 i915_gem_cleanup_ringbuffer(dev);
1789 mutex_unlock(&dev->struct_mutex);
1790 drm_mm_takedown(&dev_priv->vram);
1791 i915_gem_lastclose(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001792
1793 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001794 }
1795
Zhenyu Wangc48044112009-12-17 14:48:43 +08001796 intel_teardown_mchbar(dev);
1797
Dave Airlieec2a4c32009-08-04 11:43:41 +10001798 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07001799 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001800
Dave Airlie22eae942005-11-10 22:16:34 +11001801 return 0;
1802}
1803
Eric Anholt673a3942008-07-30 12:06:12 -07001804int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
1805{
1806 struct drm_i915_file_private *i915_file_priv;
1807
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001808 DRM_DEBUG_DRIVER("\n");
Eric Anholt673a3942008-07-30 12:06:12 -07001809 i915_file_priv = (struct drm_i915_file_private *)
Eric Anholt9a298b22009-03-24 12:23:04 -07001810 kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07001811
1812 if (!i915_file_priv)
1813 return -ENOMEM;
1814
1815 file_priv->driver_priv = i915_file_priv;
1816
Eric Anholtb9624422009-06-03 07:27:35 +00001817 INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001818
1819 return 0;
1820}
1821
Jesse Barnes79e53942008-11-07 14:24:08 -08001822/**
1823 * i915_driver_lastclose - clean up after all DRM clients have exited
1824 * @dev: DRM device
1825 *
1826 * Take care of cleaning up after all DRM clients have exited. In the
1827 * mode setting case, we want to restore the kernel's initial mode (just
1828 * in case the last client left us in a bad state).
1829 *
1830 * Additionally, in the non-mode setting case, we'll tear down the AGP
1831 * and DMA structures, since the kernel won't be using them, and clea
1832 * up any GEM state.
1833 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001834void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001836 drm_i915_private_t *dev_priv = dev->dev_private;
1837
Jesse Barnes79e53942008-11-07 14:24:08 -08001838 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001839 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001840 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001841 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001842 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001843
Eric Anholt673a3942008-07-30 12:06:12 -07001844 i915_gem_lastclose(dev);
1845
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001846 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001847 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001848
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001849 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
Eric Anholt6c340ea2007-08-25 20:23:09 +10001852void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001854 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00001855 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08001856 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1857 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Eric Anholt673a3942008-07-30 12:06:12 -07001860void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
1861{
1862 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
1863
Eric Anholt9a298b22009-03-24 12:23:04 -07001864 kfree(i915_file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001865}
1866
Eric Anholtc153f452007-09-03 12:06:45 +10001867struct drm_ioctl_desc i915_ioctls[] = {
1868 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1869 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1870 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
1871 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1872 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1873 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1874 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
1875 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1876 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
1877 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
1878 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1879 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
1880 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1881 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1882 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
1883 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
Matthias Hopf4b408932008-10-18 07:18:05 +10001884 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Eric Anholtf05dd2f2010-02-26 13:32:11 -08001885 DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1886 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1887 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
1888 DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1889 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1890 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
1891 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
1892 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1893 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1894 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
1895 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
1896 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
1897 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
1898 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
1899 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
1900 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
1901 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
1902 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
1903 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
1904 DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1905 DRM_IOCTL_DEF(DRM_I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
1906 DRM_IOCTL_DEF(DRM_I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1907 DRM_IOCTL_DEF(DRM_I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10001908};
1909
1910int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001911
1912/**
1913 * Determine if the device really is AGP or not.
1914 *
1915 * All Intel graphics chipsets are treated as AGP, even if they are really
1916 * PCI-e.
1917 *
1918 * \param dev The device to be tested.
1919 *
1920 * \returns
1921 * A value of 1 is always retured to indictate every i9x5 is AGP.
1922 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001923int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001924{
1925 return 1;
1926}