blob: 0568dbdc10efa364732d84aaddfcce50487a2042 [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"
Eric Anholt63ee41d2010-12-20 18:40:06 -080037#include "../../../platform/x86/intel_ips.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060038#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100039#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080040#include <linux/acpi.h>
41#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100042#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Chris Wilson44834a62010-08-19 16:09:23 +010044#include <acpi/video.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Keith Packard398c9cb2008-07-30 13:03:43 -070046/**
47 * Sets up the hardware status page for devices that need a physical address
48 * in the register.
49 */
Eric Anholt3043c602008-10-02 12:24:47 -070050static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070051{
52 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000053 struct intel_ring_buffer *ring = LP_RING(dev_priv);
54
Keith Packard398c9cb2008-07-30 13:03:43 -070055 /* Program Hardware Status Page */
56 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080057 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070058
59 if (!dev_priv->status_page_dmah) {
60 DRM_ERROR("Can not allocate hardware status page\n");
61 return -ENOMEM;
62 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +000063 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
Keith Packard398c9cb2008-07-30 13:03:43 -070064 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
65
Chris Wilson1ec14ad2010-12-04 11:30:53 +000066 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070067
Chris Wilsona6c45cf2010-09-17 00:32:17 +010068 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080069 dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) &
70 0xf0;
71
Keith Packard398c9cb2008-07-30 13:03:43 -070072 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080073 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070074 return 0;
75}
76
77/**
78 * Frees the hardware status page, whether it's a physical address or a virtual
79 * address set up by the X Server.
80 */
Eric Anholt3043c602008-10-02 12:24:47 -070081static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070082{
83 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000084 struct intel_ring_buffer *ring = LP_RING(dev_priv);
85
Keith Packard398c9cb2008-07-30 13:03:43 -070086 if (dev_priv->status_page_dmah) {
87 drm_pci_free(dev, dev_priv->status_page_dmah);
88 dev_priv->status_page_dmah = NULL;
89 }
90
Chris Wilson1ec14ad2010-12-04 11:30:53 +000091 if (ring->status_page.gfx_addr) {
92 ring->status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -070093 drm_core_ioremapfree(&dev_priv->hws_map, dev);
94 }
95
96 /* Need to rewrite hardware status page */
97 I915_WRITE(HWS_PGA, 0x1ffff000);
98}
99
Dave Airlie84b1fd12007-07-11 15:53:27 +1000100void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000103 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000104 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jesse Barnes79e53942008-11-07 14:24:08 -0800106 /*
107 * We should never lose context on the ring with modesetting
108 * as we don't expose it to userspace
109 */
110 if (drm_core_check_feature(dev, DRIVER_MODESET))
111 return;
112
Chris Wilson8168bd42010-11-11 17:54:52 +0000113 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
114 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 ring->space = ring->head - (ring->tail + 8);
116 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800117 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Dave Airlie7c1c2872008-11-28 14:22:24 +1000119 if (!dev->primary->master)
120 return;
121
122 master_priv = dev->primary->master->driver_priv;
123 if (ring->head == ring->tail && master_priv->sarea_priv)
124 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Dave Airlie84b1fd12007-07-11 15:53:27 +1000127static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000129 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000130 int i;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* Make sure interrupts are disabled here because the uninstall ioctl
133 * may not have been called from userspace and after dev_private
134 * is freed, it's too late.
135 */
Eric Anholted4cb412008-07-29 12:10:39 -0700136 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000137 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200139 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000140 for (i = 0; i < I915_NUM_RINGS; i++)
141 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200142 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Keith Packard398c9cb2008-07-30 13:03:43 -0700144 /* Clear the HWS virtual address at teardown */
145 if (I915_NEED_GFX_HWS(dev))
146 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 return 0;
149}
150
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000151static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000153 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000154 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000155 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dave Airlie3a03ac12009-01-11 09:03:49 +1000157 master_priv->sarea = drm_getsarea(dev);
158 if (master_priv->sarea) {
159 master_priv->sarea_priv = (drm_i915_sarea_t *)
160 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
161 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800162 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000163 }
164
Eric Anholt673a3942008-07-30 12:06:12 -0700165 if (init->ring_size != 0) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000166 if (ring->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700167 i915_dma_cleanup(dev);
168 DRM_ERROR("Client tried to initialize ringbuffer in "
169 "GEM mode\n");
170 return -EINVAL;
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000173 ring->size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000175 ring->map.offset = init->ring_start;
176 ring->map.size = init->ring_size;
177 ring->map.type = 0;
178 ring->map.flags = 0;
179 ring->map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000181 drm_core_ioremap_wc(&ring->map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700182
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000183 if (ring->map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700184 i915_dma_cleanup(dev);
185 DRM_ERROR("can not ioremap virtual address for"
186 " ring buffer\n");
187 return -ENOMEM;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000191 ring->virtual_start = ring->map.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000193 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 dev_priv->back_offset = init->back_offset;
195 dev_priv->front_offset = init->front_offset;
196 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000197 if (master_priv->sarea_priv)
198 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Allow hardware batchbuffers unless told otherwise.
201 */
202 dev_priv->allow_batchbuffer = 1;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 0;
205}
206
Dave Airlie84b1fd12007-07-11 15:53:27 +1000207static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000210 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800212 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800214 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 DRM_ERROR("can not ioremap virtual address for"
216 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000217 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
220 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800221 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000223 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800225 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800226 ring->status_page.page_addr);
227 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100228 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000229 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700230 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800231
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800232 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 return 0;
235}
236
Eric Anholtc153f452007-09-03 12:06:45 +1000237static int i915_dma_init(struct drm_device *dev, void *data,
238 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Eric Anholtc153f452007-09-03 12:06:45 +1000240 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int retcode = 0;
242
Eric Anholtc153f452007-09-03 12:06:45 +1000243 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000245 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 case I915_CLEANUP_DMA:
248 retcode = i915_dma_cleanup(dev);
249 break;
250 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100251 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000254 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 }
257
258 return retcode;
259}
260
261/* Implement basically the same security restrictions as hardware does
262 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
263 *
264 * Most of the calculations below involve calculating the size of a
265 * particular instruction. It's important to get the size right as
266 * that tells us where the next instruction to check is. Any illegal
267 * instruction detected will be given a size of zero, which is a
268 * signal to abort the rest of the buffer.
269 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100270static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 switch (((cmd >> 29) & 0x7)) {
273 case 0x0:
274 switch ((cmd >> 23) & 0x3f) {
275 case 0x0:
276 return 1; /* MI_NOOP */
277 case 0x4:
278 return 1; /* MI_FLUSH */
279 default:
280 return 0; /* disallow everything else */
281 }
282 break;
283 case 0x1:
284 return 0; /* reserved */
285 case 0x2:
286 return (cmd & 0xff) + 2; /* 2d commands */
287 case 0x3:
288 if (((cmd >> 24) & 0x1f) <= 0x18)
289 return 1;
290
291 switch ((cmd >> 24) & 0x1f) {
292 case 0x1c:
293 return 1;
294 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000295 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case 0x3:
297 return (cmd & 0x1f) + 2;
298 case 0x4:
299 return (cmd & 0xf) + 2;
300 default:
301 return (cmd & 0xffff) + 2;
302 }
303 case 0x1e:
304 if (cmd & (1 << 23))
305 return (cmd & 0xffff) + 1;
306 else
307 return 1;
308 case 0x1f:
309 if ((cmd & (1 << 23)) == 0) /* inline vertices */
310 return (cmd & 0x1ffff) + 2;
311 else if (cmd & (1 << 17)) /* indirect random */
312 if ((cmd & 0xffff) == 0)
313 return 0; /* unknown length, too hard */
314 else
315 return (((cmd & 0xffff) + 1) / 2) + 1;
316 else
317 return 2; /* indirect sequential */
318 default:
319 return 0;
320 }
321 default:
322 return 0;
323 }
324
325 return 0;
326}
327
Eric Anholt201361a2009-03-11 12:30:04 -0700328static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100331 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000333 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000334 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100337 int sz = validate_cmd(buffer[i]);
338 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000339 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100340 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100343 ret = BEGIN_LP_RING((dwords+1)&~1);
344 if (ret)
345 return ret;
346
347 for (i = 0; i < dwords; i++)
348 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100349 if (dwords & 1)
350 OUT_RING(0);
351
352 ADVANCE_LP_RING();
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
355}
356
Eric Anholt673a3942008-07-30 12:06:12 -0700357int
358i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000359 struct drm_clip_rect *box,
360 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100362 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100363 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000365 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
366 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000368 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000369 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100372 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100373 ret = BEGIN_LP_RING(4);
374 if (ret)
375 return ret;
376
Alan Hourihanec29b6692006-08-12 16:29:24 +1000377 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000378 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
379 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000380 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000381 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100382 ret = BEGIN_LP_RING(6);
383 if (ret)
384 return ret;
385
Alan Hourihanec29b6692006-08-12 16:29:24 +1000386 OUT_RING(GFX_OP_DRAWRECT_INFO);
387 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000388 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
389 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000390 OUT_RING(DR4);
391 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000392 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100393 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 return 0;
396}
397
Alan Hourihanec29b6692006-08-12 16:29:24 +1000398/* XXX: Emitting the counter should really be moved to part of the IRQ
399 * emit. For now, do it in both places:
400 */
401
Dave Airlie84b1fd12007-07-11 15:53:27 +1000402static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100403{
404 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000405 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100406
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400407 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000408 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400409 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000410 if (master_priv->sarea_priv)
411 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100412
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100413 if (BEGIN_LP_RING(4) == 0) {
414 OUT_RING(MI_STORE_DWORD_INDEX);
415 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
416 OUT_RING(dev_priv->counter);
417 OUT_RING(0);
418 ADVANCE_LP_RING();
419 }
Dave Airliede227f52006-01-25 15:31:43 +1100420}
421
Dave Airlie84b1fd12007-07-11 15:53:27 +1000422static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700423 drm_i915_cmdbuffer_t *cmd,
424 struct drm_clip_rect *cliprects,
425 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int nbox = cmd->num_cliprects;
428 int i = 0, count, ret;
429
430 if (cmd->sz & 0x3) {
431 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000432 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 i915_kernel_lost_context(dev);
436
437 count = nbox ? nbox : 1;
438
439 for (i = 0; i < count; i++) {
440 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000441 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 cmd->DR1, cmd->DR4);
443 if (ret)
444 return ret;
445 }
446
Eric Anholt201361a2009-03-11 12:30:04 -0700447 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (ret)
449 return ret;
450 }
451
Dave Airliede227f52006-01-25 15:31:43 +1100452 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
Dave Airlie84b1fd12007-07-11 15:53:27 +1000456static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700457 drm_i915_batchbuffer_t * batch,
458 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100460 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100462 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 if ((batch->start | batch->used) & 0x7) {
465 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000466 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 i915_kernel_lost_context(dev);
470
471 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 for (i = 0; i < count; i++) {
473 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000474 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100475 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (ret)
477 return ret;
478 }
479
Keith Packard0790d5e2008-07-30 12:28:47 -0700480 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100481 ret = BEGIN_LP_RING(2);
482 if (ret)
483 return ret;
484
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100485 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000486 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
487 OUT_RING(batch->start);
488 } else {
489 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
490 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100493 ret = BEGIN_LP_RING(4);
494 if (ret)
495 return ret;
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 OUT_RING(MI_BATCH_BUFFER);
498 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
499 OUT_RING(batch->start + batch->used - 4);
500 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100502 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Zou Nan hai1cafd342010-06-25 13:40:24 +0800505
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100506 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100507 if (BEGIN_LP_RING(2) == 0) {
508 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
509 OUT_RING(MI_NOOP);
510 ADVANCE_LP_RING();
511 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100514 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516}
517
Dave Airlieaf6061a2008-05-07 12:15:39 +1000518static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000521 struct drm_i915_master_private *master_priv =
522 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100523 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Dave Airlie7c1c2872008-11-28 14:22:24 +1000525 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400526 return -EINVAL;
527
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800528 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800529 __func__,
530 dev_priv->current_page,
531 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Dave Airlieaf6061a2008-05-07 12:15:39 +1000533 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100535 ret = BEGIN_LP_RING(10);
536 if (ret)
537 return ret;
538
Jesse Barnes585fb112008-07-29 11:54:06 -0700539 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000540 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Dave Airlieaf6061a2008-05-07 12:15:39 +1000542 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
543 OUT_RING(0);
544 if (dev_priv->current_page == 0) {
545 OUT_RING(dev_priv->back_offset);
546 dev_priv->current_page = 1;
547 } else {
548 OUT_RING(dev_priv->front_offset);
549 dev_priv->current_page = 0;
550 }
551 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000552
Dave Airlieaf6061a2008-05-07 12:15:39 +1000553 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
554 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100555
Dave Airlieaf6061a2008-05-07 12:15:39 +1000556 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000557
Dave Airlie7c1c2872008-11-28 14:22:24 +1000558 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000559
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100560 if (BEGIN_LP_RING(4) == 0) {
561 OUT_RING(MI_STORE_DWORD_INDEX);
562 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
563 OUT_RING(dev_priv->counter);
564 OUT_RING(0);
565 ADVANCE_LP_RING();
566 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000567
Dave Airlie7c1c2872008-11-28 14:22:24 +1000568 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000569 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000572static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000574 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 i915_kernel_lost_context(dev);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000577 return intel_wait_ring_buffer(ring, ring->size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Eric Anholtc153f452007-09-03 12:06:45 +1000580static int i915_flush_ioctl(struct drm_device *dev, void *data,
581 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Eric Anholt546b0972008-09-01 16:45:29 -0700583 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Anholt546b0972008-09-01 16:45:29 -0700585 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
586
587 mutex_lock(&dev->struct_mutex);
588 ret = i915_quiescent(dev);
589 mutex_unlock(&dev->struct_mutex);
590
591 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Eric Anholtc153f452007-09-03 12:06:45 +1000594static int i915_batchbuffer(struct drm_device *dev, void *data,
595 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000598 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000600 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000601 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700603 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (!dev_priv->allow_batchbuffer) {
606 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000607 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800610 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800611 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Eric Anholt546b0972008-09-01 16:45:29 -0700613 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Eric Anholt201361a2009-03-11 12:30:04 -0700615 if (batch->num_cliprects < 0)
616 return -EINVAL;
617
618 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700619 cliprects = kcalloc(batch->num_cliprects,
620 sizeof(struct drm_clip_rect),
621 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700622 if (cliprects == NULL)
623 return -ENOMEM;
624
625 ret = copy_from_user(cliprects, batch->cliprects,
626 batch->num_cliprects *
627 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200628 if (ret != 0) {
629 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700630 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200631 }
Eric Anholt201361a2009-03-11 12:30:04 -0700632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Eric Anholt546b0972008-09-01 16:45:29 -0700634 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700635 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700636 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400638 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000639 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700640
641fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700642 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return ret;
645}
646
Eric Anholtc153f452007-09-03 12:06:45 +1000647static int i915_cmdbuffer(struct drm_device *dev, void *data,
648 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000651 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000653 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000654 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700655 struct drm_clip_rect *cliprects = NULL;
656 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 int ret;
658
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800659 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800660 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Eric Anholt546b0972008-09-01 16:45:29 -0700662 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Eric Anholt201361a2009-03-11 12:30:04 -0700664 if (cmdbuf->num_cliprects < 0)
665 return -EINVAL;
666
Eric Anholt9a298b22009-03-24 12:23:04 -0700667 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700668 if (batch_data == NULL)
669 return -ENOMEM;
670
671 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200672 if (ret != 0) {
673 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700674 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200675 }
Eric Anholt201361a2009-03-11 12:30:04 -0700676
677 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700678 cliprects = kcalloc(cmdbuf->num_cliprects,
679 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000680 if (cliprects == NULL) {
681 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700682 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000683 }
Eric Anholt201361a2009-03-11 12:30:04 -0700684
685 ret = copy_from_user(cliprects, cmdbuf->cliprects,
686 cmdbuf->num_cliprects *
687 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200688 if (ret != 0) {
689 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700690 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
Eric Anholt546b0972008-09-01 16:45:29 -0700694 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700695 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700696 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (ret) {
698 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000699 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
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
Eric Anholt201361a2009-03-11 12:30:04 -0700705fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700706 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000707fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700708 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700709
710 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Eric Anholtc153f452007-09-03 12:06:45 +1000713static int i915_flip_bufs(struct drm_device *dev, void *data,
714 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Eric Anholt546b0972008-09-01 16:45:29 -0700716 int ret;
717
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800718 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Eric Anholt546b0972008-09-01 16:45:29 -0700720 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Eric Anholt546b0972008-09-01 16:45:29 -0700722 mutex_lock(&dev->struct_mutex);
723 ret = i915_dispatch_flip(dev);
724 mutex_unlock(&dev->struct_mutex);
725
726 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Eric Anholtc153f452007-09-03 12:06:45 +1000729static int i915_getparam(struct drm_device *dev, void *data,
730 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000733 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int value;
735
736 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000737 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000738 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740
Eric Anholtc153f452007-09-03 12:06:45 +1000741 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700743 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 break;
745 case I915_PARAM_ALLOW_BATCHBUFFER:
746 value = dev_priv->allow_batchbuffer ? 1 : 0;
747 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100748 case I915_PARAM_LAST_DISPATCH:
749 value = READ_BREADCRUMB(dev_priv);
750 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400751 case I915_PARAM_CHIPSET_ID:
752 value = dev->pci_device;
753 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700754 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000755 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700756 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800757 case I915_PARAM_NUM_FENCES_AVAIL:
758 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
759 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200760 case I915_PARAM_HAS_OVERLAY:
761 value = dev_priv->overlay ? 1 : 0;
762 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800763 case I915_PARAM_HAS_PAGEFLIPPING:
764 value = 1;
765 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500766 case I915_PARAM_HAS_EXECBUF2:
767 /* depends on GEM */
768 value = dev_priv->has_gem;
769 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800770 case I915_PARAM_HAS_BSD:
771 value = HAS_BSD(dev);
772 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100773 case I915_PARAM_HAS_BLT:
774 value = HAS_BLT(dev);
775 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100776 case I915_PARAM_HAS_RELAXED_FENCING:
777 value = 1;
778 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100779 case I915_PARAM_HAS_COHERENT_RINGS:
780 value = 1;
781 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000782 case I915_PARAM_HAS_EXEC_CONSTANTS:
783 value = INTEL_INFO(dev)->gen >= 4;
784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800786 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500787 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000788 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790
Eric Anholtc153f452007-09-03 12:06:45 +1000791 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000793 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 return 0;
797}
798
Eric Anholtc153f452007-09-03 12:06:45 +1000799static int i915_setparam(struct drm_device *dev, void *data,
800 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000803 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000806 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000807 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Eric Anholtc153f452007-09-03 12:06:45 +1000810 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 break;
813 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000814 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 break;
816 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000817 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800819 case I915_SETPARAM_NUM_USED_FENCES:
820 if (param->value > dev_priv->num_fence_regs ||
821 param->value < 0)
822 return -EINVAL;
823 /* Userspace can use first N regs */
824 dev_priv->fence_reg_start = param->value;
825 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800827 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800828 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000829 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
832 return 0;
833}
834
Eric Anholtc153f452007-09-03 12:06:45 +1000835static int i915_set_status_page(struct drm_device *dev, void *data,
836 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000837{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000838 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000839 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000840 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000841
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000842 if (!I915_NEED_GFX_HWS(dev))
843 return -EINVAL;
844
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000845 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000846 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000847 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000848 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000849
Jesse Barnes79e53942008-11-07 14:24:08 -0800850 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
851 WARN(1, "tried to set status page when mode setting active\n");
852 return 0;
853 }
854
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800855 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000856
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800857 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000858
Eric Anholt8b409582007-11-22 16:40:37 +1000859 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000860 dev_priv->hws_map.size = 4*1024;
861 dev_priv->hws_map.type = 0;
862 dev_priv->hws_map.flags = 0;
863 dev_priv->hws_map.mtrr = 0;
864
Dave Airliedd0910b2009-02-25 14:49:21 +1000865 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000866 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000867 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700868 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000869 DRM_ERROR("can not ioremap virtual address for"
870 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000871 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000872 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800873 ring->status_page.page_addr = dev_priv->hws_map.handle;
874 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
875 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000876
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800877 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700878 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800879 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700880 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000881 return 0;
882}
883
Dave Airlieec2a4c32009-08-04 11:43:41 +1000884static int i915_get_bridge_dev(struct drm_device *dev)
885{
886 struct drm_i915_private *dev_priv = dev->dev_private;
887
888 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
889 if (!dev_priv->bridge_dev) {
890 DRM_ERROR("bridge device not found\n");
891 return -1;
892 }
893 return 0;
894}
895
Zhenyu Wangc48044112009-12-17 14:48:43 +0800896#define MCHBAR_I915 0x44
897#define MCHBAR_I965 0x48
898#define MCHBAR_SIZE (4*4096)
899
900#define DEVEN_REG 0x54
901#define DEVEN_MCHBAR_EN (1 << 28)
902
903/* Allocate space for the MCH regs if needed, return nonzero on error */
904static int
905intel_alloc_mchbar_resource(struct drm_device *dev)
906{
907 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100908 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800909 u32 temp_lo, temp_hi = 0;
910 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100911 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800912
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100913 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800914 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
915 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
916 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
917
918 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
919#ifdef CONFIG_PNP
920 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100921 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
922 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800923#endif
924
925 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100926 dev_priv->mch_res.name = "i915 MCHBAR";
927 dev_priv->mch_res.flags = IORESOURCE_MEM;
928 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
929 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800930 MCHBAR_SIZE, MCHBAR_SIZE,
931 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100932 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800933 dev_priv->bridge_dev);
934 if (ret) {
935 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
936 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100937 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800938 }
939
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100940 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800941 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
942 upper_32_bits(dev_priv->mch_res.start));
943
944 pci_write_config_dword(dev_priv->bridge_dev, reg,
945 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100946 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800947}
948
949/* Setup MCHBAR if possible, return true if we should disable it again */
950static void
951intel_setup_mchbar(struct drm_device *dev)
952{
953 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100954 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800955 u32 temp;
956 bool enabled;
957
958 dev_priv->mchbar_need_disable = false;
959
960 if (IS_I915G(dev) || IS_I915GM(dev)) {
961 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
962 enabled = !!(temp & DEVEN_MCHBAR_EN);
963 } else {
964 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
965 enabled = temp & 1;
966 }
967
968 /* If it's already enabled, don't have to do anything */
969 if (enabled)
970 return;
971
972 if (intel_alloc_mchbar_resource(dev))
973 return;
974
975 dev_priv->mchbar_need_disable = true;
976
977 /* Space is allocated or reserved, so enable it. */
978 if (IS_I915G(dev) || IS_I915GM(dev)) {
979 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
980 temp | DEVEN_MCHBAR_EN);
981 } else {
982 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
983 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
984 }
985}
986
987static void
988intel_teardown_mchbar(struct drm_device *dev)
989{
990 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100991 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800992 u32 temp;
993
994 if (dev_priv->mchbar_need_disable) {
995 if (IS_I915G(dev) || IS_I915GM(dev)) {
996 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
997 temp &= ~DEVEN_MCHBAR_EN;
998 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
999 } else {
1000 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1001 temp &= ~1;
1002 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1003 }
1004 }
1005
1006 if (dev_priv->mch_res.start)
1007 release_resource(&dev_priv->mch_res);
1008}
1009
Jesse Barnes80824002009-09-10 15:28:06 -07001010#define PTE_ADDRESS_MASK 0xfffff000
1011#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1012#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1013#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1014#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1015#define PTE_MAPPING_TYPE_MASK (3 << 1)
1016#define PTE_VALID (1 << 0)
1017
1018/**
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001019 * i915_stolen_to_phys - take an offset into stolen memory and turn it into
1020 * a physical one
Jesse Barnes80824002009-09-10 15:28:06 -07001021 * @dev: drm device
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001022 * @offset: address to translate
Jesse Barnes80824002009-09-10 15:28:06 -07001023 *
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001024 * Some chip functions require allocations from stolen space and need the
1025 * physical address of the memory in question.
Jesse Barnes80824002009-09-10 15:28:06 -07001026 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001027static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset)
Jesse Barnes80824002009-09-10 15:28:06 -07001028{
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001029 struct drm_i915_private *dev_priv = dev->dev_private;
1030 struct pci_dev *pdev = dev_priv->bridge_dev;
1031 u32 base;
Jesse Barnes80824002009-09-10 15:28:06 -07001032
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001033#if 0
1034 /* On the machines I have tested the Graphics Base of Stolen Memory
1035 * is unreliable, so compute the base by subtracting the stolen memory
1036 * from the Top of Low Usable DRAM which is where the BIOS places
1037 * the graphics stolen memory.
1038 */
1039 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1040 /* top 32bits are reserved = 0 */
1041 pci_read_config_dword(pdev, 0xA4, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001042 } else {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001043 /* XXX presume 8xx is the same as i915 */
1044 pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001045 }
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001046#else
1047 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1048 u16 val;
1049 pci_read_config_word(pdev, 0xb0, &val);
1050 base = val >> 4 << 20;
1051 } else {
1052 u8 val;
1053 pci_read_config_byte(pdev, 0x9c, &val);
1054 base = val >> 3 << 27;
Jesse Barnes80824002009-09-10 15:28:06 -07001055 }
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001056 base -= dev_priv->mm.gtt->stolen_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001057#endif
Jesse Barnes80824002009-09-10 15:28:06 -07001058
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001059 return base + offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001060}
1061
1062static void i915_warn_stolen(struct drm_device *dev)
1063{
1064 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1065 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1066}
1067
1068static void i915_setup_compression(struct drm_device *dev, int size)
1069{
1070 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001071 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001072 unsigned long cfb_base;
1073 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001074
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001075 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
1076 if (compressed_fb)
1077 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1078 if (!compressed_fb)
1079 goto err;
Jesse Barnes80824002009-09-10 15:28:06 -07001080
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001081 cfb_base = i915_stolen_to_phys(dev, compressed_fb->start);
1082 if (!cfb_base)
1083 goto err_fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001084
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001085 if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001086 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
1087 4096, 4096, 0);
1088 if (compressed_llb)
1089 compressed_llb = drm_mm_get_block(compressed_llb,
1090 4096, 4096);
1091 if (!compressed_llb)
1092 goto err_fb;
Jesse Barnes74dff282009-09-14 15:39:40 -07001093
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001094 ll_base = i915_stolen_to_phys(dev, compressed_llb->start);
1095 if (!ll_base)
1096 goto err_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001097 }
1098
1099 dev_priv->cfb_size = size;
1100
Adam Jacksonee5382a2010-04-23 11:17:39 -04001101 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001102 dev_priv->compressed_fb = compressed_fb;
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001103 if (HAS_PCH_SPLIT(dev))
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001104 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1105 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001106 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1107 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001108 I915_WRITE(FBC_CFB_BASE, cfb_base);
1109 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001110 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001111 }
1112
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001113 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n",
1114 cfb_base, ll_base, size >> 20);
1115 return;
1116
1117err_llb:
1118 drm_mm_put_block(compressed_llb);
1119err_fb:
1120 drm_mm_put_block(compressed_fb);
1121err:
1122 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
1123 i915_warn_stolen(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001124}
1125
Jesse Barnes20bf3772010-04-21 11:39:22 -07001126static void i915_cleanup_compression(struct drm_device *dev)
1127{
1128 struct drm_i915_private *dev_priv = dev->dev_private;
1129
1130 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001131 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001132 drm_mm_put_block(dev_priv->compressed_llb);
1133}
1134
Dave Airlie28d52042009-09-21 14:33:58 +10001135/* true = enable decode, false = disable decoder */
1136static unsigned int i915_vga_set_decode(void *cookie, bool state)
1137{
1138 struct drm_device *dev = cookie;
1139
1140 intel_modeset_vga_set_state(dev, state);
1141 if (state)
1142 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1143 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1144 else
1145 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1146}
1147
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001148static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1149{
1150 struct drm_device *dev = pci_get_drvdata(pdev);
1151 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1152 if (state == VGA_SWITCHEROO_ON) {
Dave Airliefbf81762010-06-01 09:09:06 +10001153 printk(KERN_INFO "i915: switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001154 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001155 /* i915 resume handler doesn't set to D0 */
1156 pci_set_power_state(dev->pdev, PCI_D0);
1157 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001158 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001159 } else {
1160 printk(KERN_ERR "i915: switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001161 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001162 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001163 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001164 }
1165}
1166
1167static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1168{
1169 struct drm_device *dev = pci_get_drvdata(pdev);
1170 bool can_switch;
1171
1172 spin_lock(&dev->count_lock);
1173 can_switch = (dev->open_count == 0);
1174 spin_unlock(&dev->count_lock);
1175 return can_switch;
1176}
1177
Daniel Vetter53984632010-09-22 23:44:24 +02001178static int i915_load_modeset_init(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08001179{
1180 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53984632010-09-22 23:44:24 +02001181 unsigned long prealloc_size, gtt_size, mappable_size;
Jesse Barnes79e53942008-11-07 14:24:08 -08001182 int ret = 0;
1183
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001184 prealloc_size = dev_priv->mm.gtt->stolen_size;
Daniel Vetter53984632010-09-22 23:44:24 +02001185 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
1186 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetter53984632010-09-22 23:44:24 +02001187
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001188 /* Basic memrange allocator for stolen space */
1189 drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001190
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001191 /* Let GEM Manage all of the aperture.
Eric Anholt13f4c432009-05-12 15:27:36 -07001192 *
1193 * However, leave one page at the end still bound to the scratch page.
1194 * There are a number of places where the hardware apparently
1195 * prefetches past the end of the object, and we've seen multiple
1196 * hangs with the GPU head pointer stuck in a batchbuffer bound
1197 * at the last page of the aperture. One page should be enough to
1198 * keep any prefetching inside of the aperture.
1199 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001200 i915_gem_do_init(dev, 0, mappable_size, gtt_size - PAGE_SIZE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001201
Ben Gamari11ed50e2009-09-14 17:48:45 -04001202 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001203 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001204 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001205 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001206 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001207
Jesse Barnes80824002009-09-10 15:28:06 -07001208 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001209 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001210 int cfb_size;
1211
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001212 /* Leave 1M for line length buffer & misc. */
1213
1214 /* Try to get a 32M buffer... */
1215 if (prealloc_size > (36*1024*1024))
1216 cfb_size = 32*1024*1024;
Jesse Barnes80824002009-09-10 15:28:06 -07001217 else /* fall back to 7/8 of the stolen space */
1218 cfb_size = prealloc_size * 7 / 8;
1219 i915_setup_compression(dev, cfb_size);
1220 }
1221
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001222 /* Allow hardware batchbuffers unless told otherwise. */
Jesse Barnes79e53942008-11-07 14:24:08 -08001223 dev_priv->allow_batchbuffer = 1;
1224
Bryan Freed6d139a82010-10-14 09:14:51 +01001225 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001226 if (ret)
1227 DRM_INFO("failed to find VBIOS tables\n");
1228
Dave Airlie28d52042009-09-21 14:33:58 +10001229 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1230 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1231 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001232 goto cleanup_ringbuffer;
Dave Airlie28d52042009-09-21 14:33:58 +10001233
Jesse Barnes723bfd72010-10-07 16:01:13 -07001234 intel_register_dsm_handler();
1235
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001236 ret = vga_switcheroo_register_client(dev->pdev,
1237 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001238 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001239 i915_switcheroo_can_switch);
1240 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001241 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001242
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001243 /* IIR "flip pending" bit means done if this bit is set */
1244 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1245 dev_priv->flip_pending_is_done = true;
1246
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001247 intel_modeset_init(dev);
1248
Jesse Barnes79e53942008-11-07 14:24:08 -08001249 ret = drm_irq_install(dev);
1250 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001251 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001252
Jesse Barnes79e53942008-11-07 14:24:08 -08001253 /* Always safe in the mode setting case. */
1254 /* FIXME: do pre/post-mode set stuff in core KMS code */
1255 dev->vblank_disable_allowed = 1;
1256
Chris Wilson5a793952010-06-06 10:50:03 +01001257 ret = intel_fbdev_init(dev);
1258 if (ret)
1259 goto cleanup_irq;
1260
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001261 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001262
1263 /* We're off and running w/KMS */
1264 dev_priv->mm.suspended = 0;
1265
Jesse Barnes79e53942008-11-07 14:24:08 -08001266 return 0;
1267
Chris Wilson5a793952010-06-06 10:50:03 +01001268cleanup_irq:
1269 drm_irq_uninstall(dev);
1270cleanup_vga_switcheroo:
1271 vga_switcheroo_unregister_client(dev->pdev);
1272cleanup_vga_client:
1273 vga_client_register(dev->pdev, NULL, NULL, NULL);
1274cleanup_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001275 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001276 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001277 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001278out:
1279 return ret;
1280}
1281
Dave Airlie7c1c2872008-11-28 14:22:24 +10001282int i915_master_create(struct drm_device *dev, struct drm_master *master)
1283{
1284 struct drm_i915_master_private *master_priv;
1285
Eric Anholt9a298b22009-03-24 12:23:04 -07001286 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001287 if (!master_priv)
1288 return -ENOMEM;
1289
1290 master->driver_priv = master_priv;
1291 return 0;
1292}
1293
1294void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1295{
1296 struct drm_i915_master_private *master_priv = master->driver_priv;
1297
1298 if (!master_priv)
1299 return;
1300
Eric Anholt9a298b22009-03-24 12:23:04 -07001301 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001302
1303 master->driver_priv = NULL;
1304}
1305
Jesse Barnes7648fa92010-05-20 14:28:11 -07001306static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001307{
1308 drm_i915_private_t *dev_priv = dev->dev_private;
1309 u32 tmp;
1310
Shaohua Li7662c8b2009-06-26 11:23:55 +08001311 tmp = I915_READ(CLKCFG);
1312
1313 switch (tmp & CLKCFG_FSB_MASK) {
1314 case CLKCFG_FSB_533:
1315 dev_priv->fsb_freq = 533; /* 133*4 */
1316 break;
1317 case CLKCFG_FSB_800:
1318 dev_priv->fsb_freq = 800; /* 200*4 */
1319 break;
1320 case CLKCFG_FSB_667:
1321 dev_priv->fsb_freq = 667; /* 167*4 */
1322 break;
1323 case CLKCFG_FSB_400:
1324 dev_priv->fsb_freq = 400; /* 100*4 */
1325 break;
1326 }
1327
1328 switch (tmp & CLKCFG_MEM_MASK) {
1329 case CLKCFG_MEM_533:
1330 dev_priv->mem_freq = 533;
1331 break;
1332 case CLKCFG_MEM_667:
1333 dev_priv->mem_freq = 667;
1334 break;
1335 case CLKCFG_MEM_800:
1336 dev_priv->mem_freq = 800;
1337 break;
1338 }
Li Peng95534262010-05-18 18:58:44 +08001339
1340 /* detect pineview DDR3 setting */
1341 tmp = I915_READ(CSHRDDR3CTL);
1342 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001343}
1344
Jesse Barnes7648fa92010-05-20 14:28:11 -07001345static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1346{
1347 drm_i915_private_t *dev_priv = dev->dev_private;
1348 u16 ddrpll, csipll;
1349
1350 ddrpll = I915_READ16(DDRMPLL1);
1351 csipll = I915_READ16(CSIPLL0);
1352
1353 switch (ddrpll & 0xff) {
1354 case 0xc:
1355 dev_priv->mem_freq = 800;
1356 break;
1357 case 0x10:
1358 dev_priv->mem_freq = 1066;
1359 break;
1360 case 0x14:
1361 dev_priv->mem_freq = 1333;
1362 break;
1363 case 0x18:
1364 dev_priv->mem_freq = 1600;
1365 break;
1366 default:
1367 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1368 ddrpll & 0xff);
1369 dev_priv->mem_freq = 0;
1370 break;
1371 }
1372
1373 dev_priv->r_t = dev_priv->mem_freq;
1374
1375 switch (csipll & 0x3ff) {
1376 case 0x00c:
1377 dev_priv->fsb_freq = 3200;
1378 break;
1379 case 0x00e:
1380 dev_priv->fsb_freq = 3733;
1381 break;
1382 case 0x010:
1383 dev_priv->fsb_freq = 4266;
1384 break;
1385 case 0x012:
1386 dev_priv->fsb_freq = 4800;
1387 break;
1388 case 0x014:
1389 dev_priv->fsb_freq = 5333;
1390 break;
1391 case 0x016:
1392 dev_priv->fsb_freq = 5866;
1393 break;
1394 case 0x018:
1395 dev_priv->fsb_freq = 6400;
1396 break;
1397 default:
1398 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1399 csipll & 0x3ff);
1400 dev_priv->fsb_freq = 0;
1401 break;
1402 }
1403
1404 if (dev_priv->fsb_freq == 3200) {
1405 dev_priv->c_m = 0;
1406 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1407 dev_priv->c_m = 1;
1408 } else {
1409 dev_priv->c_m = 2;
1410 }
1411}
1412
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001413static const struct cparams {
1414 u16 i;
1415 u16 t;
1416 u16 m;
1417 u16 c;
1418} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001419 { 1, 1333, 301, 28664 },
1420 { 1, 1066, 294, 24460 },
1421 { 1, 800, 294, 25192 },
1422 { 0, 1333, 276, 27605 },
1423 { 0, 1066, 276, 27605 },
1424 { 0, 800, 231, 23784 },
1425};
1426
1427unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1428{
1429 u64 total_count, diff, ret;
1430 u32 count1, count2, count3, m = 0, c = 0;
1431 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1432 int i;
1433
1434 diff1 = now - dev_priv->last_time1;
1435
1436 count1 = I915_READ(DMIEC);
1437 count2 = I915_READ(DDREC);
1438 count3 = I915_READ(CSIEC);
1439
1440 total_count = count1 + count2 + count3;
1441
1442 /* FIXME: handle per-counter overflow */
1443 if (total_count < dev_priv->last_count1) {
1444 diff = ~0UL - dev_priv->last_count1;
1445 diff += total_count;
1446 } else {
1447 diff = total_count - dev_priv->last_count1;
1448 }
1449
1450 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1451 if (cparams[i].i == dev_priv->c_m &&
1452 cparams[i].t == dev_priv->r_t) {
1453 m = cparams[i].m;
1454 c = cparams[i].c;
1455 break;
1456 }
1457 }
1458
Jesse Barnesd270ae32010-09-27 10:35:44 -07001459 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001460 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001461 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001462
1463 dev_priv->last_count1 = total_count;
1464 dev_priv->last_time1 = now;
1465
1466 return ret;
1467}
1468
1469unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1470{
1471 unsigned long m, x, b;
1472 u32 tsfs;
1473
1474 tsfs = I915_READ(TSFS);
1475
1476 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1477 x = I915_READ8(TR1);
1478
1479 b = tsfs & TSFS_INTR_MASK;
1480
1481 return ((m * x) / 127) - b;
1482}
1483
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001484static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001485{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001486 static const struct v_table {
1487 u16 vd; /* in .1 mil */
1488 u16 vm; /* in .1 mil */
1489 } v_table[] = {
1490 { 0, 0, },
1491 { 375, 0, },
1492 { 500, 0, },
1493 { 625, 0, },
1494 { 750, 0, },
1495 { 875, 0, },
1496 { 1000, 0, },
1497 { 1125, 0, },
1498 { 4125, 3000, },
1499 { 4125, 3000, },
1500 { 4125, 3000, },
1501 { 4125, 3000, },
1502 { 4125, 3000, },
1503 { 4125, 3000, },
1504 { 4125, 3000, },
1505 { 4125, 3000, },
1506 { 4125, 3000, },
1507 { 4125, 3000, },
1508 { 4125, 3000, },
1509 { 4125, 3000, },
1510 { 4125, 3000, },
1511 { 4125, 3000, },
1512 { 4125, 3000, },
1513 { 4125, 3000, },
1514 { 4125, 3000, },
1515 { 4125, 3000, },
1516 { 4125, 3000, },
1517 { 4125, 3000, },
1518 { 4125, 3000, },
1519 { 4125, 3000, },
1520 { 4125, 3000, },
1521 { 4125, 3000, },
1522 { 4250, 3125, },
1523 { 4375, 3250, },
1524 { 4500, 3375, },
1525 { 4625, 3500, },
1526 { 4750, 3625, },
1527 { 4875, 3750, },
1528 { 5000, 3875, },
1529 { 5125, 4000, },
1530 { 5250, 4125, },
1531 { 5375, 4250, },
1532 { 5500, 4375, },
1533 { 5625, 4500, },
1534 { 5750, 4625, },
1535 { 5875, 4750, },
1536 { 6000, 4875, },
1537 { 6125, 5000, },
1538 { 6250, 5125, },
1539 { 6375, 5250, },
1540 { 6500, 5375, },
1541 { 6625, 5500, },
1542 { 6750, 5625, },
1543 { 6875, 5750, },
1544 { 7000, 5875, },
1545 { 7125, 6000, },
1546 { 7250, 6125, },
1547 { 7375, 6250, },
1548 { 7500, 6375, },
1549 { 7625, 6500, },
1550 { 7750, 6625, },
1551 { 7875, 6750, },
1552 { 8000, 6875, },
1553 { 8125, 7000, },
1554 { 8250, 7125, },
1555 { 8375, 7250, },
1556 { 8500, 7375, },
1557 { 8625, 7500, },
1558 { 8750, 7625, },
1559 { 8875, 7750, },
1560 { 9000, 7875, },
1561 { 9125, 8000, },
1562 { 9250, 8125, },
1563 { 9375, 8250, },
1564 { 9500, 8375, },
1565 { 9625, 8500, },
1566 { 9750, 8625, },
1567 { 9875, 8750, },
1568 { 10000, 8875, },
1569 { 10125, 9000, },
1570 { 10250, 9125, },
1571 { 10375, 9250, },
1572 { 10500, 9375, },
1573 { 10625, 9500, },
1574 { 10750, 9625, },
1575 { 10875, 9750, },
1576 { 11000, 9875, },
1577 { 11125, 10000, },
1578 { 11250, 10125, },
1579 { 11375, 10250, },
1580 { 11500, 10375, },
1581 { 11625, 10500, },
1582 { 11750, 10625, },
1583 { 11875, 10750, },
1584 { 12000, 10875, },
1585 { 12125, 11000, },
1586 { 12250, 11125, },
1587 { 12375, 11250, },
1588 { 12500, 11375, },
1589 { 12625, 11500, },
1590 { 12750, 11625, },
1591 { 12875, 11750, },
1592 { 13000, 11875, },
1593 { 13125, 12000, },
1594 { 13250, 12125, },
1595 { 13375, 12250, },
1596 { 13500, 12375, },
1597 { 13625, 12500, },
1598 { 13750, 12625, },
1599 { 13875, 12750, },
1600 { 14000, 12875, },
1601 { 14125, 13000, },
1602 { 14250, 13125, },
1603 { 14375, 13250, },
1604 { 14500, 13375, },
1605 { 14625, 13500, },
1606 { 14750, 13625, },
1607 { 14875, 13750, },
1608 { 15000, 13875, },
1609 { 15125, 14000, },
1610 { 15250, 14125, },
1611 { 15375, 14250, },
1612 { 15500, 14375, },
1613 { 15625, 14500, },
1614 { 15750, 14625, },
1615 { 15875, 14750, },
1616 { 16000, 14875, },
1617 { 16125, 15000, },
1618 };
1619 if (dev_priv->info->is_mobile)
1620 return v_table[pxvid].vm;
1621 else
1622 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001623}
1624
1625void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1626{
1627 struct timespec now, diff1;
1628 u64 diff;
1629 unsigned long diffms;
1630 u32 count;
1631
1632 getrawmonotonic(&now);
1633 diff1 = timespec_sub(now, dev_priv->last_time2);
1634
1635 /* Don't divide by 0 */
1636 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1637 if (!diffms)
1638 return;
1639
1640 count = I915_READ(GFXEC);
1641
1642 if (count < dev_priv->last_count2) {
1643 diff = ~0UL - dev_priv->last_count2;
1644 diff += count;
1645 } else {
1646 diff = count - dev_priv->last_count2;
1647 }
1648
1649 dev_priv->last_count2 = count;
1650 dev_priv->last_time2 = now;
1651
1652 /* More magic constants... */
1653 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001654 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001655 dev_priv->gfx_power = diff;
1656}
1657
1658unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1659{
1660 unsigned long t, corr, state1, corr2, state2;
1661 u32 pxvid, ext_v;
1662
1663 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1664 pxvid = (pxvid >> 24) & 0x7f;
1665 ext_v = pvid_to_extvid(dev_priv, pxvid);
1666
1667 state1 = ext_v;
1668
1669 t = i915_mch_val(dev_priv);
1670
1671 /* Revel in the empirically derived constants */
1672
1673 /* Correction factor in 1/100000 units */
1674 if (t > 80)
1675 corr = ((t * 2349) + 135940);
1676 else if (t >= 50)
1677 corr = ((t * 964) + 29317);
1678 else /* < 50 */
1679 corr = ((t * 301) + 1004);
1680
1681 corr = corr * ((150142 * state1) / 10000 - 78642);
1682 corr /= 100000;
1683 corr2 = (corr * dev_priv->corr);
1684
1685 state2 = (corr2 * state1) / 10000;
1686 state2 /= 100; /* convert to mW */
1687
1688 i915_update_gfx_val(dev_priv);
1689
1690 return dev_priv->gfx_power + state2;
1691}
1692
1693/* Global for IPS driver to get at the current i915 device */
1694static struct drm_i915_private *i915_mch_dev;
1695/*
1696 * Lock protecting IPS related data structures
1697 * - i915_mch_dev
1698 * - dev_priv->max_delay
1699 * - dev_priv->min_delay
1700 * - dev_priv->fmax
1701 * - dev_priv->gpu_busy
1702 */
Chris Wilson995b6762010-08-20 13:23:26 +01001703static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001704
1705/**
1706 * i915_read_mch_val - return value for IPS use
1707 *
1708 * Calculate and return a value for the IPS driver to use when deciding whether
1709 * we have thermal and power headroom to increase CPU or GPU power budget.
1710 */
1711unsigned long i915_read_mch_val(void)
1712{
1713 struct drm_i915_private *dev_priv;
1714 unsigned long chipset_val, graphics_val, ret = 0;
1715
1716 spin_lock(&mchdev_lock);
1717 if (!i915_mch_dev)
1718 goto out_unlock;
1719 dev_priv = i915_mch_dev;
1720
1721 chipset_val = i915_chipset_val(dev_priv);
1722 graphics_val = i915_gfx_val(dev_priv);
1723
1724 ret = chipset_val + graphics_val;
1725
1726out_unlock:
1727 spin_unlock(&mchdev_lock);
1728
1729 return ret;
1730}
1731EXPORT_SYMBOL_GPL(i915_read_mch_val);
1732
1733/**
1734 * i915_gpu_raise - raise GPU frequency limit
1735 *
1736 * Raise the limit; IPS indicates we have thermal headroom.
1737 */
1738bool i915_gpu_raise(void)
1739{
1740 struct drm_i915_private *dev_priv;
1741 bool ret = true;
1742
1743 spin_lock(&mchdev_lock);
1744 if (!i915_mch_dev) {
1745 ret = false;
1746 goto out_unlock;
1747 }
1748 dev_priv = i915_mch_dev;
1749
1750 if (dev_priv->max_delay > dev_priv->fmax)
1751 dev_priv->max_delay--;
1752
1753out_unlock:
1754 spin_unlock(&mchdev_lock);
1755
1756 return ret;
1757}
1758EXPORT_SYMBOL_GPL(i915_gpu_raise);
1759
1760/**
1761 * i915_gpu_lower - lower GPU frequency limit
1762 *
1763 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1764 * frequency maximum.
1765 */
1766bool i915_gpu_lower(void)
1767{
1768 struct drm_i915_private *dev_priv;
1769 bool ret = true;
1770
1771 spin_lock(&mchdev_lock);
1772 if (!i915_mch_dev) {
1773 ret = false;
1774 goto out_unlock;
1775 }
1776 dev_priv = i915_mch_dev;
1777
1778 if (dev_priv->max_delay < dev_priv->min_delay)
1779 dev_priv->max_delay++;
1780
1781out_unlock:
1782 spin_unlock(&mchdev_lock);
1783
1784 return ret;
1785}
1786EXPORT_SYMBOL_GPL(i915_gpu_lower);
1787
1788/**
1789 * i915_gpu_busy - indicate GPU business to IPS
1790 *
1791 * Tell the IPS driver whether or not the GPU is busy.
1792 */
1793bool i915_gpu_busy(void)
1794{
1795 struct drm_i915_private *dev_priv;
1796 bool ret = false;
1797
1798 spin_lock(&mchdev_lock);
1799 if (!i915_mch_dev)
1800 goto out_unlock;
1801 dev_priv = i915_mch_dev;
1802
1803 ret = dev_priv->busy;
1804
1805out_unlock:
1806 spin_unlock(&mchdev_lock);
1807
1808 return ret;
1809}
1810EXPORT_SYMBOL_GPL(i915_gpu_busy);
1811
1812/**
1813 * i915_gpu_turbo_disable - disable graphics turbo
1814 *
1815 * Disable graphics turbo by resetting the max frequency and setting the
1816 * current frequency to the default.
1817 */
1818bool i915_gpu_turbo_disable(void)
1819{
1820 struct drm_i915_private *dev_priv;
1821 bool ret = true;
1822
1823 spin_lock(&mchdev_lock);
1824 if (!i915_mch_dev) {
1825 ret = false;
1826 goto out_unlock;
1827 }
1828 dev_priv = i915_mch_dev;
1829
1830 dev_priv->max_delay = dev_priv->fstart;
1831
1832 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1833 ret = false;
1834
1835out_unlock:
1836 spin_unlock(&mchdev_lock);
1837
1838 return ret;
1839}
1840EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1841
Jesse Barnes79e53942008-11-07 14:24:08 -08001842/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001843 * Tells the intel_ips driver that the i915 driver is now loaded, if
1844 * IPS got loaded first.
1845 *
1846 * This awkward dance is so that neither module has to depend on the
1847 * other in order for IPS to do the appropriate communication of
1848 * GPU turbo limits to i915.
1849 */
1850static void
1851ips_ping_for_i915_load(void)
1852{
1853 void (*link)(void);
1854
1855 link = symbol_get(ips_link_to_i915_driver);
1856 if (link) {
1857 link();
1858 symbol_put(ips_link_to_i915_driver);
1859 }
1860}
1861
1862/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001863 * i915_driver_load - setup chip and create an initial config
1864 * @dev: DRM device
1865 * @flags: startup flags
1866 *
1867 * The driver load routine has to do several things:
1868 * - drive output discovery via intel_modeset_init()
1869 * - initialize the memory manager
1870 * - allocate initial config memory
1871 * - setup the DRM framebuffer with the allocated memory
1872 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001873int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001874{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001875 struct drm_i915_private *dev_priv;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001876 int ret = 0, mmio_bar;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001877 uint32_t agp_size;
1878
Dave Airlie22eae942005-11-10 22:16:34 +11001879 /* i915 has 4 more counters */
1880 dev->counters += 4;
1881 dev->types[6] = _DRM_STAT_IRQ;
1882 dev->types[7] = _DRM_STAT_PRIMARY;
1883 dev->types[8] = _DRM_STAT_SECONDARY;
1884 dev->types[9] = _DRM_STAT_DMA;
1885
Eric Anholt9a298b22009-03-24 12:23:04 -07001886 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001887 if (dev_priv == NULL)
1888 return -ENOMEM;
1889
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001890 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001891 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001892 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001893
Dave Airlieec2a4c32009-08-04 11:43:41 +10001894 if (i915_get_bridge_dev(dev)) {
1895 ret = -EIO;
1896 goto free_priv;
1897 }
1898
Daniel Vetter9f82d232010-08-30 21:25:23 +02001899 /* overlay on gen2 is broken and can't address above 1G */
1900 if (IS_GEN2(dev))
1901 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1902
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001903 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1904 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
1905 if (!dev_priv->regs) {
1906 DRM_ERROR("failed to map registers\n");
1907 ret = -EIO;
1908 goto put_bridge;
1909 }
1910
Chris Wilson71e93392010-10-27 18:46:52 +01001911 dev_priv->mm.gtt = intel_gtt_get();
1912 if (!dev_priv->mm.gtt) {
1913 DRM_ERROR("Failed to initialize GTT\n");
1914 ret = -ENODEV;
1915 goto out_iomapfree;
1916 }
1917
Chris Wilson71e93392010-10-27 18:46:52 +01001918 agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
1919
Eric Anholtab657db12009-01-23 12:57:47 -08001920 dev_priv->mm.gtt_mapping =
Chris Wilson71e93392010-10-27 18:46:52 +01001921 io_mapping_create_wc(dev->agp->base, agp_size);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08001922 if (dev_priv->mm.gtt_mapping == NULL) {
1923 ret = -EIO;
1924 goto out_rmmap;
1925 }
1926
Eric Anholtab657db12009-01-23 12:57:47 -08001927 /* Set up a WC MTRR for non-PAT systems. This is more common than
1928 * one would think, because the kernel disables PAT on first
1929 * generation Core chips because WC PAT gets overridden by a UC
1930 * MTRR if present. Even if a UC MTRR isn't present.
1931 */
1932 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
Chris Wilson71e93392010-10-27 18:46:52 +01001933 agp_size,
Eric Anholtab657db12009-01-23 12:57:47 -08001934 MTRR_TYPE_WRCOMB, 1);
1935 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07001936 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08001937 "performance may suffer.\n");
1938 }
1939
Chris Wilsone642abb2010-09-09 12:46:34 +01001940 /* The i915 workqueue is primarily used for batched retirement of
1941 * requests (and thus managing bo) once the task has been completed
1942 * by the GPU. i915_gem_retire_requests() is called directly when we
1943 * need high-priority retirement, such as waiting for an explicit
1944 * bo.
1945 *
1946 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001947 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001948 *
1949 * All tasks on the workqueue are expected to acquire the dev mutex
1950 * so there is no point in running more than one instance of the
1951 * workqueue at any time: max_active = 1 and NON_REENTRANT.
1952 */
1953 dev_priv->wq = alloc_workqueue("i915",
1954 WQ_UNBOUND | WQ_NON_REENTRANT,
1955 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001956 if (dev_priv->wq == NULL) {
1957 DRM_ERROR("Failed to create our workqueue.\n");
1958 ret = -ENOMEM;
1959 goto out_iomapfree;
1960 }
1961
Dave Airlieac5c4e72008-12-19 15:38:34 +10001962 /* enable GEM by default */
1963 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10001964
Chris Wilson79a78dd2010-05-17 09:23:54 +01001965 if (dev_priv->has_gem == 0 &&
1966 drm_core_check_feature(dev, DRIVER_MODESET)) {
1967 DRM_ERROR("kernel modesetting requires GEM, disabling driver.\n");
1968 ret = -ENODEV;
Chris Wilson56e2ea32010-11-08 17:10:29 +00001969 goto out_workqueue_free;
Chris Wilson79a78dd2010-05-17 09:23:54 +01001970 }
1971
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001972 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001973 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01001974 if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07001975 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001976 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001977 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001978
Zhenyu Wangc48044112009-12-17 14:48:43 +08001979 /* Try to make sure MCHBAR is enabled before poking at it */
1980 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001981 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001982 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001983
Bryan Freed6d139a82010-10-14 09:14:51 +01001984 /* Make sure the bios did its job and set up vital registers */
1985 intel_setup_bios(dev);
1986
Eric Anholt673a3942008-07-30 12:06:12 -07001987 i915_gem_load(dev);
1988
Keith Packard398c9cb2008-07-30 13:03:43 -07001989 /* Init HWS */
1990 if (!I915_NEED_GFX_HWS(dev)) {
1991 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001992 if (ret)
1993 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07001994 }
Eric Anholted4cb412008-07-29 12:10:39 -07001995
Jesse Barnes7648fa92010-05-20 14:28:11 -07001996 if (IS_PINEVIEW(dev))
1997 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01001998 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07001999 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002000
Eric Anholted4cb412008-07-29 12:10:39 -07002001 /* On the 945G/GM, the chipset reports the MSI capability on the
2002 * integrated graphics even though the support isn't actually there
2003 * according to the published specs. It doesn't appear to function
2004 * correctly in testing on 945G.
2005 * This may be a side effect of MSI having been made available for PEG
2006 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002007 *
2008 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002009 * be lost or delayed, but we use them anyways to avoid
2010 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002011 */
Keith Packardb60678a2008-12-08 11:12:28 -08002012 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002013 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002014
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002015 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002016 spin_lock_init(&dev_priv->error_lock);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002017 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07002018
Keith Packard52440212008-11-18 09:30:25 -08002019 ret = drm_vblank_init(dev, I915_NUM_PIPE);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002020 if (ret)
2021 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08002022
Ben Gamari11ed50e2009-09-14 17:48:45 -04002023 /* Start out suspended */
2024 dev_priv->mm.suspended = 1;
2025
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002026 intel_detect_pch(dev);
2027
Jesse Barnes79e53942008-11-07 14:24:08 -08002028 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02002029 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002030 if (ret < 0) {
2031 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00002032 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08002033 }
2034 }
2035
Matthew Garrett74a365b2009-03-19 21:35:39 +00002036 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002037 intel_opregion_init(dev);
2038 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002039
Ben Gamarif65d9422009-09-14 17:48:44 -04002040 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2041 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002042
2043 spin_lock(&mchdev_lock);
2044 i915_mch_dev = dev_priv;
2045 dev_priv->mchdev_lock = &mchdev_lock;
2046 spin_unlock(&mchdev_lock);
2047
Eric Anholt63ee41d2010-12-20 18:40:06 -08002048 ips_ping_for_i915_load();
2049
Jesse Barnes79e53942008-11-07 14:24:08 -08002050 return 0;
2051
Chris Wilson56e2ea32010-11-08 17:10:29 +00002052out_gem_unload:
2053 if (dev->pdev->msi_enabled)
2054 pci_disable_msi(dev->pdev);
2055
2056 intel_teardown_gmbus(dev);
2057 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002058out_workqueue_free:
2059 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08002060out_iomapfree:
2061 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002062out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01002063 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002064put_bridge:
2065 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002066free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002067 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002068 return ret;
2069}
2070
2071int i915_driver_unload(struct drm_device *dev)
2072{
2073 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002074 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002075
Jesse Barnes7648fa92010-05-20 14:28:11 -07002076 spin_lock(&mchdev_lock);
2077 i915_mch_dev = NULL;
2078 spin_unlock(&mchdev_lock);
2079
Chris Wilson17250b72010-10-28 12:51:39 +01002080 if (dev_priv->mm.inactive_shrinker.shrink)
2081 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2082
Daniel Vetterc911fc12010-08-20 21:23:20 +02002083 mutex_lock(&dev->struct_mutex);
2084 ret = i915_gpu_idle(dev);
2085 if (ret)
2086 DRM_ERROR("failed to idle hardware: %d\n", ret);
2087 mutex_unlock(&dev->struct_mutex);
2088
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002089 /* Cancel the retire work handler, which should be idle now. */
2090 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2091
Eric Anholtab657db12009-01-23 12:57:47 -08002092 io_mapping_free(dev_priv->mm.gtt_mapping);
2093 if (dev_priv->mm.gtt_mtrr >= 0) {
2094 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2095 dev->agp->agp_info.aper_size * 1024 * 1024);
2096 dev_priv->mm.gtt_mtrr = -1;
2097 }
2098
Chris Wilson44834a62010-08-19 16:09:23 +01002099 acpi_video_unregister();
2100
Jesse Barnes79e53942008-11-07 14:24:08 -08002101 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002102 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002103 intel_modeset_cleanup(dev);
2104
Zhao Yakui6363ee62009-11-24 09:48:44 +08002105 /*
2106 * free the memory space allocated for the child device
2107 * config parsed from VBT
2108 */
2109 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2110 kfree(dev_priv->child_dev);
2111 dev_priv->child_dev = NULL;
2112 dev_priv->child_dev_num = 0;
2113 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002114
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002115 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002116 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002117 }
2118
Daniel Vettera8b48992010-08-20 21:25:11 +02002119 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002120 del_timer_sync(&dev_priv->hangcheck_timer);
2121 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002122 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002123
Eric Anholted4cb412008-07-29 12:10:39 -07002124 if (dev->pdev->msi_enabled)
2125 pci_disable_msi(dev->pdev);
2126
Chris Wilson44834a62010-08-19 16:09:23 +01002127 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002128
Jesse Barnes79e53942008-11-07 14:24:08 -08002129 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002130 /* Flush any outstanding unpin_work. */
2131 flush_workqueue(dev_priv->wq);
2132
Dave Airlie71acb5e2008-12-30 20:31:46 +10002133 i915_gem_free_all_phys_object(dev);
2134
Jesse Barnes79e53942008-11-07 14:24:08 -08002135 mutex_lock(&dev->struct_mutex);
2136 i915_gem_cleanup_ringbuffer(dev);
2137 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002138 if (I915_HAS_FBC(dev) && i915_powersave)
2139 i915_cleanup_compression(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002140 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002141
2142 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002143
2144 if (!I915_NEED_GFX_HWS(dev))
2145 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002146 }
2147
Daniel Vetter701394c2010-10-10 18:54:08 +01002148 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002149 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002150
Chris Wilsonf899fc62010-07-20 15:44:45 -07002151 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002152 intel_teardown_mchbar(dev);
2153
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002154 destroy_workqueue(dev_priv->wq);
2155
Dave Airlieec2a4c32009-08-04 11:43:41 +10002156 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002157 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002158
Dave Airlie22eae942005-11-10 22:16:34 +11002159 return 0;
2160}
2161
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002162int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002163{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002164 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002165
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002166 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002167 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2168 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002169 return -ENOMEM;
2170
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002171 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002172
Chris Wilson1c255952010-09-26 11:03:27 +01002173 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002174 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002175
2176 return 0;
2177}
2178
Jesse Barnes79e53942008-11-07 14:24:08 -08002179/**
2180 * i915_driver_lastclose - clean up after all DRM clients have exited
2181 * @dev: DRM device
2182 *
2183 * Take care of cleaning up after all DRM clients have exited. In the
2184 * mode setting case, we want to restore the kernel's initial mode (just
2185 * in case the last client left us in a bad state).
2186 *
2187 * Additionally, in the non-mode setting case, we'll tear down the AGP
2188 * and DMA structures, since the kernel won't be using them, and clea
2189 * up any GEM state.
2190 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002191void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002193 drm_i915_private_t *dev_priv = dev->dev_private;
2194
Jesse Barnes79e53942008-11-07 14:24:08 -08002195 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10002196 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002197 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002198 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002199 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002200
Eric Anholt673a3942008-07-30 12:06:12 -07002201 i915_gem_lastclose(dev);
2202
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002203 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002204 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002205
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002206 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
Eric Anholt6c340ea2007-08-25 20:23:09 +10002209void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002211 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00002212 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08002213 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2214 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002217void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002218{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002219 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002220
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002221 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002222}
2223
Eric Anholtc153f452007-09-03 12:06:45 +10002224struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002225 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2226 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2227 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2228 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2229 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2230 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2231 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2232 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2233 DRM_IOCTL_DEF_DRV(I915_ALLOC, i915_mem_alloc, DRM_AUTH),
2234 DRM_IOCTL_DEF_DRV(I915_FREE, i915_mem_free, DRM_AUTH),
2235 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2236 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
2237 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2238 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2239 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2240 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2241 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2242 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2243 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2244 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2245 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2246 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2247 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2248 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2249 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2250 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2251 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2252 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2253 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2254 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2255 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2256 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2257 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2258 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2259 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2260 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2261 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2262 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2263 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2264 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002265};
2266
2267int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002268
2269/**
2270 * Determine if the device really is AGP or not.
2271 *
2272 * All Intel graphics chipsets are treated as AGP, even if they are really
2273 * PCI-e.
2274 *
2275 * \param dev The device to be tested.
2276 *
2277 * \returns
2278 * A value of 1 is always retured to indictate every i9x5 is AGP.
2279 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002280int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002281{
2282 return 1;
2283}