blob: 9fe2d08d9e9d91363cd2ce2c979e52c47a1b0109 [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
Adam Jacksonee5382a2010-04-23 11:17:39 -04001360 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001361 dev_priv->compressed_fb = compressed_fb;
1362
Jesse Barnes74dff282009-09-14 15:39:40 -07001363 if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001364 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1365 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001366 I915_WRITE(FBC_CFB_BASE, cfb_base);
1367 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001368 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001369 }
1370
Jesse Barnes80824002009-09-10 15:28:06 -07001371 DRM_DEBUG("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base,
1372 ll_base, size >> 20);
Jesse Barnes80824002009-09-10 15:28:06 -07001373}
1374
Jesse Barnes20bf3772010-04-21 11:39:22 -07001375static void i915_cleanup_compression(struct drm_device *dev)
1376{
1377 struct drm_i915_private *dev_priv = dev->dev_private;
1378
1379 drm_mm_put_block(dev_priv->compressed_fb);
1380 if (!IS_GM45(dev))
1381 drm_mm_put_block(dev_priv->compressed_llb);
1382}
1383
Dave Airlie28d52042009-09-21 14:33:58 +10001384/* true = enable decode, false = disable decoder */
1385static unsigned int i915_vga_set_decode(void *cookie, bool state)
1386{
1387 struct drm_device *dev = cookie;
1388
1389 intel_modeset_vga_set_state(dev, state);
1390 if (state)
1391 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1392 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1393 else
1394 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1395}
1396
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001397static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1398{
1399 struct drm_device *dev = pci_get_drvdata(pdev);
1400 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1401 if (state == VGA_SWITCHEROO_ON) {
1402 printk(KERN_INFO "i915: switched off\n");
1403 /* i915 resume handler doesn't set to D0 */
1404 pci_set_power_state(dev->pdev, PCI_D0);
1405 i915_resume(dev);
1406 } else {
1407 printk(KERN_ERR "i915: switched off\n");
1408 i915_suspend(dev, pmm);
1409 }
1410}
1411
1412static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1413{
1414 struct drm_device *dev = pci_get_drvdata(pdev);
1415 bool can_switch;
1416
1417 spin_lock(&dev->count_lock);
1418 can_switch = (dev->open_count == 0);
1419 spin_unlock(&dev->count_lock);
1420 return can_switch;
1421}
1422
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001423static int i915_load_modeset_init(struct drm_device *dev,
Jesse Barnes80824002009-09-10 15:28:06 -07001424 unsigned long prealloc_start,
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001425 unsigned long prealloc_size,
1426 unsigned long agp_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001427{
1428 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001429 int fb_bar = IS_I9XX(dev) ? 2 : 0;
1430 int ret = 0;
1431
Jordan Crouse01d73a62010-05-27 13:40:24 -06001432 dev->mode_config.fb_base = pci_resource_start(dev->pdev, fb_bar) &
Jesse Barnes79e53942008-11-07 14:24:08 -08001433 0xff000000;
1434
Jesse Barnes79e53942008-11-07 14:24:08 -08001435 /* Basic memrange allocator for stolen space (aka vram) */
1436 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
Jesse Barnes80824002009-09-10 15:28:06 -07001437 DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024));
Jesse Barnes79e53942008-11-07 14:24:08 -08001438
Ben Gamari11ed50e2009-09-14 17:48:45 -04001439 /* We're off and running w/KMS */
1440 dev_priv->mm.suspended = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001441
Eric Anholt13f4c432009-05-12 15:27:36 -07001442 /* Let GEM Manage from end of prealloc space to end of aperture.
1443 *
1444 * However, leave one page at the end still bound to the scratch page.
1445 * There are a number of places where the hardware apparently
1446 * prefetches past the end of the object, and we've seen multiple
1447 * hangs with the GPU head pointer stuck in a batchbuffer bound
1448 * at the last page of the aperture. One page should be enough to
1449 * keep any prefetching inside of the aperture.
1450 */
1451 i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
Jesse Barnes79e53942008-11-07 14:24:08 -08001452
Ben Gamari11ed50e2009-09-14 17:48:45 -04001453 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001454 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001455 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001456 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001457 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001458
Jesse Barnes80824002009-09-10 15:28:06 -07001459 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001460 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001461 int cfb_size;
1462
1463 /* Try to get an 8M buffer... */
1464 if (prealloc_size > (9*1024*1024))
1465 cfb_size = 8*1024*1024;
1466 else /* fall back to 7/8 of the stolen space */
1467 cfb_size = prealloc_size * 7 / 8;
1468 i915_setup_compression(dev, cfb_size);
1469 }
1470
Jesse Barnes79e53942008-11-07 14:24:08 -08001471 /* Allow hardware batchbuffers unless told otherwise.
1472 */
1473 dev_priv->allow_batchbuffer = 1;
1474
1475 ret = intel_init_bios(dev);
1476 if (ret)
1477 DRM_INFO("failed to find VBIOS tables\n");
1478
Dave Airlie28d52042009-09-21 14:33:58 +10001479 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1480 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1481 if (ret)
1482 goto destroy_ringbuffer;
1483
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001484 ret = vga_switcheroo_register_client(dev->pdev,
1485 i915_switcheroo_set_state,
1486 i915_switcheroo_can_switch);
1487 if (ret)
1488 goto destroy_ringbuffer;
1489
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001490 intel_modeset_init(dev);
1491
Jesse Barnes79e53942008-11-07 14:24:08 -08001492 ret = drm_irq_install(dev);
1493 if (ret)
1494 goto destroy_ringbuffer;
1495
Jesse Barnes79e53942008-11-07 14:24:08 -08001496 /* Always safe in the mode setting case. */
1497 /* FIXME: do pre/post-mode set stuff in core KMS code */
1498 dev->vblank_disable_allowed = 1;
1499
1500 /*
1501 * Initialize the hardware status page IRQ location.
1502 */
1503
1504 I915_WRITE(INSTPM, (1 << 5) | (1 << 21));
1505
Dave Airlie38651672010-03-30 05:34:13 +00001506 intel_fbdev_init(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001507 drm_kms_helper_poll_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001508 return 0;
1509
Jesse Barnes79e53942008-11-07 14:24:08 -08001510destroy_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001511 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001512 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001513 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001514out:
1515 return ret;
1516}
1517
Dave Airlie7c1c2872008-11-28 14:22:24 +10001518int i915_master_create(struct drm_device *dev, struct drm_master *master)
1519{
1520 struct drm_i915_master_private *master_priv;
1521
Eric Anholt9a298b22009-03-24 12:23:04 -07001522 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001523 if (!master_priv)
1524 return -ENOMEM;
1525
1526 master->driver_priv = master_priv;
1527 return 0;
1528}
1529
1530void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1531{
1532 struct drm_i915_master_private *master_priv = master->driver_priv;
1533
1534 if (!master_priv)
1535 return;
1536
Eric Anholt9a298b22009-03-24 12:23:04 -07001537 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001538
1539 master->driver_priv = NULL;
1540}
1541
Shaohua Li7662c8b2009-06-26 11:23:55 +08001542static void i915_get_mem_freq(struct drm_device *dev)
1543{
1544 drm_i915_private_t *dev_priv = dev->dev_private;
1545 u32 tmp;
1546
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001547 if (!IS_PINEVIEW(dev))
Shaohua Li7662c8b2009-06-26 11:23:55 +08001548 return;
1549
1550 tmp = I915_READ(CLKCFG);
1551
1552 switch (tmp & CLKCFG_FSB_MASK) {
1553 case CLKCFG_FSB_533:
1554 dev_priv->fsb_freq = 533; /* 133*4 */
1555 break;
1556 case CLKCFG_FSB_800:
1557 dev_priv->fsb_freq = 800; /* 200*4 */
1558 break;
1559 case CLKCFG_FSB_667:
1560 dev_priv->fsb_freq = 667; /* 167*4 */
1561 break;
1562 case CLKCFG_FSB_400:
1563 dev_priv->fsb_freq = 400; /* 100*4 */
1564 break;
1565 }
1566
1567 switch (tmp & CLKCFG_MEM_MASK) {
1568 case CLKCFG_MEM_533:
1569 dev_priv->mem_freq = 533;
1570 break;
1571 case CLKCFG_MEM_667:
1572 dev_priv->mem_freq = 667;
1573 break;
1574 case CLKCFG_MEM_800:
1575 dev_priv->mem_freq = 800;
1576 break;
1577 }
1578}
1579
Jesse Barnes79e53942008-11-07 14:24:08 -08001580/**
1581 * i915_driver_load - setup chip and create an initial config
1582 * @dev: DRM device
1583 * @flags: startup flags
1584 *
1585 * The driver load routine has to do several things:
1586 * - drive output discovery via intel_modeset_init()
1587 * - initialize the memory manager
1588 * - allocate initial config memory
1589 * - setup the DRM framebuffer with the allocated memory
1590 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001591int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001592{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001593 struct drm_i915_private *dev_priv;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +11001594 resource_size_t base, size;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001595 int ret = 0, mmio_bar;
Jesse Barnes80824002009-09-10 15:28:06 -07001596 uint32_t agp_size, prealloc_size, prealloc_start;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001597
Dave Airlie22eae942005-11-10 22:16:34 +11001598 /* i915 has 4 more counters */
1599 dev->counters += 4;
1600 dev->types[6] = _DRM_STAT_IRQ;
1601 dev->types[7] = _DRM_STAT_PRIMARY;
1602 dev->types[8] = _DRM_STAT_SECONDARY;
1603 dev->types[9] = _DRM_STAT_DMA;
1604
Eric Anholt9a298b22009-03-24 12:23:04 -07001605 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001606 if (dev_priv == NULL)
1607 return -ENOMEM;
1608
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001609 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001610 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001611 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001612
1613 /* Add register map (needed for suspend/resume) */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001614 mmio_bar = IS_I9XX(dev) ? 0 : 1;
Jordan Crouse01d73a62010-05-27 13:40:24 -06001615 base = pci_resource_start(dev->pdev, mmio_bar);
1616 size = pci_resource_len(dev->pdev, mmio_bar);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001617
Dave Airlieec2a4c32009-08-04 11:43:41 +10001618 if (i915_get_bridge_dev(dev)) {
1619 ret = -EIO;
1620 goto free_priv;
1621 }
1622
Eric Anholt3043c602008-10-02 12:24:47 -07001623 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001624 if (!dev_priv->regs) {
1625 DRM_ERROR("failed to map registers\n");
1626 ret = -EIO;
Dave Airlieec2a4c32009-08-04 11:43:41 +10001627 goto put_bridge;
Jesse Barnes79e53942008-11-07 14:24:08 -08001628 }
Eric Anholted4cb412008-07-29 12:10:39 -07001629
Eric Anholtab657db12009-01-23 12:57:47 -08001630 dev_priv->mm.gtt_mapping =
1631 io_mapping_create_wc(dev->agp->base,
1632 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08001633 if (dev_priv->mm.gtt_mapping == NULL) {
1634 ret = -EIO;
1635 goto out_rmmap;
1636 }
1637
Eric Anholtab657db12009-01-23 12:57:47 -08001638 /* Set up a WC MTRR for non-PAT systems. This is more common than
1639 * one would think, because the kernel disables PAT on first
1640 * generation Core chips because WC PAT gets overridden by a UC
1641 * MTRR if present. Even if a UC MTRR isn't present.
1642 */
1643 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
1644 dev->agp->agp_info.aper_size *
1645 1024 * 1024,
1646 MTRR_TYPE_WRCOMB, 1);
1647 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07001648 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08001649 "performance may suffer.\n");
1650 }
1651
Jesse Barnes80824002009-09-10 15:28:06 -07001652 ret = i915_probe_agp(dev, &agp_size, &prealloc_size, &prealloc_start);
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001653 if (ret)
1654 goto out_iomapfree;
1655
Chris Wilsonaed5f1d2009-10-14 13:40:04 +01001656 dev_priv->wq = create_singlethread_workqueue("i915");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001657 if (dev_priv->wq == NULL) {
1658 DRM_ERROR("Failed to create our workqueue.\n");
1659 ret = -ENOMEM;
1660 goto out_iomapfree;
1661 }
1662
Dave Airlieac5c4e72008-12-19 15:38:34 +10001663 /* enable GEM by default */
1664 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10001665
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001666 if (prealloc_size > agp_size * 3 / 4) {
1667 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
1668 "memory stolen.\n",
1669 prealloc_size / 1024, agp_size / 1024);
1670 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
1671 "updating the BIOS to fix).\n");
1672 dev_priv->has_gem = 0;
1673 }
1674
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001675 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001676 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eric Anholtbad720f2009-10-22 16:11:14 -07001677 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07001678 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001679 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001680 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001681
Zhenyu Wangc48044112009-12-17 14:48:43 +08001682 /* Try to make sure MCHBAR is enabled before poking at it */
1683 intel_setup_mchbar(dev);
1684
Eric Anholt673a3942008-07-30 12:06:12 -07001685 i915_gem_load(dev);
1686
Keith Packard398c9cb2008-07-30 13:03:43 -07001687 /* Init HWS */
1688 if (!I915_NEED_GFX_HWS(dev)) {
1689 ret = i915_init_phys_hws(dev);
1690 if (ret != 0)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001691 goto out_workqueue_free;
Keith Packard398c9cb2008-07-30 13:03:43 -07001692 }
Eric Anholted4cb412008-07-29 12:10:39 -07001693
Shaohua Li7662c8b2009-06-26 11:23:55 +08001694 i915_get_mem_freq(dev);
1695
Eric Anholted4cb412008-07-29 12:10:39 -07001696 /* On the 945G/GM, the chipset reports the MSI capability on the
1697 * integrated graphics even though the support isn't actually there
1698 * according to the published specs. It doesn't appear to function
1699 * correctly in testing on 945G.
1700 * This may be a side effect of MSI having been made available for PEG
1701 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001702 *
1703 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001704 * be lost or delayed, but we use them anyways to avoid
1705 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001706 */
Keith Packardb60678a2008-12-08 11:12:28 -08001707 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001708 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001709
1710 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001711 spin_lock_init(&dev_priv->error_lock);
Jesse Barnes79e53942008-11-07 14:24:08 -08001712 dev_priv->user_irq_refcount = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001713 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001714
Keith Packard52440212008-11-18 09:30:25 -08001715 ret = drm_vblank_init(dev, I915_NUM_PIPE);
1716
1717 if (ret) {
1718 (void) i915_driver_unload(dev);
1719 return ret;
1720 }
1721
Ben Gamari11ed50e2009-09-14 17:48:45 -04001722 /* Start out suspended */
1723 dev_priv->mm.suspended = 1;
1724
Zhenyu Wang3bad0782010-04-07 16:15:53 +08001725 intel_detect_pch(dev);
1726
Jesse Barnes79e53942008-11-07 14:24:08 -08001727 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001728 ret = i915_load_modeset_init(dev, prealloc_start,
1729 prealloc_size, agp_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001730 if (ret < 0) {
1731 DRM_ERROR("failed to init modeset\n");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001732 goto out_workqueue_free;
Jesse Barnes79e53942008-11-07 14:24:08 -08001733 }
1734 }
1735
Matthew Garrett74a365b2009-03-19 21:35:39 +00001736 /* Must be done after probing outputs */
Zhao Yakui01c66882009-10-28 05:10:00 +00001737 intel_opregion_init(dev, 0);
Matthew Garrett74a365b2009-03-19 21:35:39 +00001738
Ben Gamarif65d9422009-09-14 17:48:44 -04001739 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
1740 (unsigned long) dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001741 return 0;
1742
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001743out_workqueue_free:
1744 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08001745out_iomapfree:
1746 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001747out_rmmap:
1748 iounmap(dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001749put_bridge:
1750 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001751free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001752 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001753 return ret;
1754}
1755
1756int i915_driver_unload(struct drm_device *dev)
1757{
1758 struct drm_i915_private *dev_priv = dev->dev_private;
1759
Chris Wilson9df30792010-02-18 10:24:56 +00001760 i915_destroy_error_state(dev);
1761
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001762 destroy_workqueue(dev_priv->wq);
Ben Gamarif65d9422009-09-14 17:48:44 -04001763 del_timer_sync(&dev_priv->hangcheck_timer);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001764
Eric Anholtab657db12009-01-23 12:57:47 -08001765 io_mapping_free(dev_priv->mm.gtt_mapping);
1766 if (dev_priv->mm.gtt_mtrr >= 0) {
1767 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
1768 dev->agp->agp_info.aper_size * 1024 * 1024);
1769 dev_priv->mm.gtt_mtrr = -1;
1770 }
1771
Jesse Barnes79e53942008-11-07 14:24:08 -08001772 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001773 intel_modeset_cleanup(dev);
1774
Zhao Yakui6363ee62009-11-24 09:48:44 +08001775 /*
1776 * free the memory space allocated for the child device
1777 * config parsed from VBT
1778 */
1779 if (dev_priv->child_dev && dev_priv->child_dev_num) {
1780 kfree(dev_priv->child_dev);
1781 dev_priv->child_dev = NULL;
1782 dev_priv->child_dev_num = 0;
1783 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001784 drm_irq_uninstall(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001785 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001786 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001787 }
1788
Eric Anholted4cb412008-07-29 12:10:39 -07001789 if (dev->pdev->msi_enabled)
1790 pci_disable_msi(dev->pdev);
1791
Eric Anholt3043c602008-10-02 12:24:47 -07001792 if (dev_priv->regs != NULL)
1793 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001794
Zhao Yakui01c66882009-10-28 05:10:00 +00001795 intel_opregion_free(dev, 0);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001796
Jesse Barnes79e53942008-11-07 14:24:08 -08001797 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10001798 i915_gem_free_all_phys_object(dev);
1799
Jesse Barnes79e53942008-11-07 14:24:08 -08001800 mutex_lock(&dev->struct_mutex);
1801 i915_gem_cleanup_ringbuffer(dev);
1802 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001803 if (I915_HAS_FBC(dev) && i915_powersave)
1804 i915_cleanup_compression(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001805 drm_mm_takedown(&dev_priv->vram);
1806 i915_gem_lastclose(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001807
1808 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001809 }
1810
Zhenyu Wangc48044112009-12-17 14:48:43 +08001811 intel_teardown_mchbar(dev);
1812
Dave Airlieec2a4c32009-08-04 11:43:41 +10001813 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07001814 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001815
Dave Airlie22eae942005-11-10 22:16:34 +11001816 return 0;
1817}
1818
Eric Anholt673a3942008-07-30 12:06:12 -07001819int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
1820{
1821 struct drm_i915_file_private *i915_file_priv;
1822
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001823 DRM_DEBUG_DRIVER("\n");
Eric Anholt673a3942008-07-30 12:06:12 -07001824 i915_file_priv = (struct drm_i915_file_private *)
Eric Anholt9a298b22009-03-24 12:23:04 -07001825 kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07001826
1827 if (!i915_file_priv)
1828 return -ENOMEM;
1829
1830 file_priv->driver_priv = i915_file_priv;
1831
Eric Anholtb9624422009-06-03 07:27:35 +00001832 INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001833
1834 return 0;
1835}
1836
Jesse Barnes79e53942008-11-07 14:24:08 -08001837/**
1838 * i915_driver_lastclose - clean up after all DRM clients have exited
1839 * @dev: DRM device
1840 *
1841 * Take care of cleaning up after all DRM clients have exited. In the
1842 * mode setting case, we want to restore the kernel's initial mode (just
1843 * in case the last client left us in a bad state).
1844 *
1845 * Additionally, in the non-mode setting case, we'll tear down the AGP
1846 * and DMA structures, since the kernel won't be using them, and clea
1847 * up any GEM state.
1848 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001849void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001851 drm_i915_private_t *dev_priv = dev->dev_private;
1852
Jesse Barnes79e53942008-11-07 14:24:08 -08001853 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001854 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001855 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001856 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001857 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001858
Eric Anholt673a3942008-07-30 12:06:12 -07001859 i915_gem_lastclose(dev);
1860
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001861 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001862 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001863
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001864 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
Eric Anholt6c340ea2007-08-25 20:23:09 +10001867void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001869 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00001870 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08001871 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1872 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873}
1874
Eric Anholt673a3942008-07-30 12:06:12 -07001875void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
1876{
1877 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
1878
Eric Anholt9a298b22009-03-24 12:23:04 -07001879 kfree(i915_file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001880}
1881
Eric Anholtc153f452007-09-03 12:06:45 +10001882struct drm_ioctl_desc i915_ioctls[] = {
1883 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1884 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1885 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
1886 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1887 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1888 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1889 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
1890 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1891 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
1892 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
1893 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1894 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
1895 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1896 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
1897 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
1898 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
Matthias Hopf4b408932008-10-18 07:18:05 +10001899 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 -08001900 DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1901 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1902 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
1903 DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1904 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1905 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
1906 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
1907 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1908 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1909 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
1910 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
1911 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
1912 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
1913 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
1914 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
1915 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
1916 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
1917 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
1918 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
1919 DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1920 DRM_IOCTL_DEF(DRM_I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
1921 DRM_IOCTL_DEF(DRM_I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1922 DRM_IOCTL_DEF(DRM_I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10001923};
1924
1925int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001926
1927/**
1928 * Determine if the device really is AGP or not.
1929 *
1930 * All Intel graphics chipsets are treated as AGP, even if they are really
1931 * PCI-e.
1932 *
1933 * \param dev The device to be tested.
1934 *
1935 * \returns
1936 * A value of 1 is always retured to indictate every i9x5 is AGP.
1937 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001938int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001939{
1940 return 1;
1941}