blob: e33d9be7df3b7455c4f4f72085079c0450d50903 [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 Wilsone8616b62011-01-20 09:57:11 +0000155 int ret;
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 Wilsone8616b62011-01-20 09:57:11 +0000166 if (LP_RING(dev_priv)->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 Wilsone8616b62011-01-20 09:57:11 +0000173 ret = intel_render_ring_init_dri(dev,
174 init->ring_start,
175 init->ring_size);
176 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700177 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000178 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000182 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 dev_priv->back_offset = init->back_offset;
184 dev_priv->front_offset = init->front_offset;
185 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000186 if (master_priv->sarea_priv)
187 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* Allow hardware batchbuffers unless told otherwise.
190 */
191 dev_priv->allow_batchbuffer = 1;
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return 0;
194}
195
Dave Airlie84b1fd12007-07-11 15:53:27 +1000196static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000199 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800201 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800203 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 DRM_ERROR("can not ioremap virtual address for"
205 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000206 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
209 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800210 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000212 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800214 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800215 ring->status_page.page_addr);
216 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100217 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000218 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700219 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800220
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800221 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 return 0;
224}
225
Eric Anholtc153f452007-09-03 12:06:45 +1000226static int i915_dma_init(struct drm_device *dev, void *data,
227 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Eric Anholtc153f452007-09-03 12:06:45 +1000229 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int retcode = 0;
231
Eric Anholtc153f452007-09-03 12:06:45 +1000232 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000234 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236 case I915_CLEANUP_DMA:
237 retcode = i915_dma_cleanup(dev);
238 break;
239 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100240 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 break;
242 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000243 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245 }
246
247 return retcode;
248}
249
250/* Implement basically the same security restrictions as hardware does
251 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
252 *
253 * Most of the calculations below involve calculating the size of a
254 * particular instruction. It's important to get the size right as
255 * that tells us where the next instruction to check is. Any illegal
256 * instruction detected will be given a size of zero, which is a
257 * signal to abort the rest of the buffer.
258 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100259static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 switch (((cmd >> 29) & 0x7)) {
262 case 0x0:
263 switch ((cmd >> 23) & 0x3f) {
264 case 0x0:
265 return 1; /* MI_NOOP */
266 case 0x4:
267 return 1; /* MI_FLUSH */
268 default:
269 return 0; /* disallow everything else */
270 }
271 break;
272 case 0x1:
273 return 0; /* reserved */
274 case 0x2:
275 return (cmd & 0xff) + 2; /* 2d commands */
276 case 0x3:
277 if (((cmd >> 24) & 0x1f) <= 0x18)
278 return 1;
279
280 switch ((cmd >> 24) & 0x1f) {
281 case 0x1c:
282 return 1;
283 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 case 0x3:
286 return (cmd & 0x1f) + 2;
287 case 0x4:
288 return (cmd & 0xf) + 2;
289 default:
290 return (cmd & 0xffff) + 2;
291 }
292 case 0x1e:
293 if (cmd & (1 << 23))
294 return (cmd & 0xffff) + 1;
295 else
296 return 1;
297 case 0x1f:
298 if ((cmd & (1 << 23)) == 0) /* inline vertices */
299 return (cmd & 0x1ffff) + 2;
300 else if (cmd & (1 << 17)) /* indirect random */
301 if ((cmd & 0xffff) == 0)
302 return 0; /* unknown length, too hard */
303 else
304 return (((cmd & 0xffff) + 1) / 2) + 1;
305 else
306 return 2; /* indirect sequential */
307 default:
308 return 0;
309 }
310 default:
311 return 0;
312 }
313
314 return 0;
315}
316
Eric Anholt201361a2009-03-11 12:30:04 -0700317static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100320 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000322 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000323 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100326 int sz = validate_cmd(buffer[i]);
327 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000328 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100329 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100332 ret = BEGIN_LP_RING((dwords+1)&~1);
333 if (ret)
334 return ret;
335
336 for (i = 0; i < dwords; i++)
337 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100338 if (dwords & 1)
339 OUT_RING(0);
340
341 ADVANCE_LP_RING();
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
Eric Anholt673a3942008-07-30 12:06:12 -0700346int
347i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000348 struct drm_clip_rect *box,
349 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100351 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100352 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000354 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
355 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000357 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000358 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100361 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100362 ret = BEGIN_LP_RING(4);
363 if (ret)
364 return ret;
365
Alan Hourihanec29b6692006-08-12 16:29:24 +1000366 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000367 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
368 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000369 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000370 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100371 ret = BEGIN_LP_RING(6);
372 if (ret)
373 return ret;
374
Alan Hourihanec29b6692006-08-12 16:29:24 +1000375 OUT_RING(GFX_OP_DRAWRECT_INFO);
376 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000377 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
378 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000379 OUT_RING(DR4);
380 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000381 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100382 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 return 0;
385}
386
Alan Hourihanec29b6692006-08-12 16:29:24 +1000387/* XXX: Emitting the counter should really be moved to part of the IRQ
388 * emit. For now, do it in both places:
389 */
390
Dave Airlie84b1fd12007-07-11 15:53:27 +1000391static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100392{
393 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000394 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100395
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400396 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000397 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400398 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000399 if (master_priv->sarea_priv)
400 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100401
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100402 if (BEGIN_LP_RING(4) == 0) {
403 OUT_RING(MI_STORE_DWORD_INDEX);
404 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
405 OUT_RING(dev_priv->counter);
406 OUT_RING(0);
407 ADVANCE_LP_RING();
408 }
Dave Airliede227f52006-01-25 15:31:43 +1100409}
410
Dave Airlie84b1fd12007-07-11 15:53:27 +1000411static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700412 drm_i915_cmdbuffer_t *cmd,
413 struct drm_clip_rect *cliprects,
414 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 int nbox = cmd->num_cliprects;
417 int i = 0, count, ret;
418
419 if (cmd->sz & 0x3) {
420 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000421 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
424 i915_kernel_lost_context(dev);
425
426 count = nbox ? nbox : 1;
427
428 for (i = 0; i < count; i++) {
429 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000430 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 cmd->DR1, cmd->DR4);
432 if (ret)
433 return ret;
434 }
435
Eric Anholt201361a2009-03-11 12:30:04 -0700436 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (ret)
438 return ret;
439 }
440
Dave Airliede227f52006-01-25 15:31:43 +1100441 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return 0;
443}
444
Dave Airlie84b1fd12007-07-11 15:53:27 +1000445static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700446 drm_i915_batchbuffer_t * batch,
447 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100449 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100451 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if ((batch->start | batch->used) & 0x7) {
454 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000455 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 i915_kernel_lost_context(dev);
459
460 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 for (i = 0; i < count; i++) {
462 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000463 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100464 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (ret)
466 return ret;
467 }
468
Keith Packard0790d5e2008-07-30 12:28:47 -0700469 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100470 ret = BEGIN_LP_RING(2);
471 if (ret)
472 return ret;
473
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100474 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000475 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
476 OUT_RING(batch->start);
477 } else {
478 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
479 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100482 ret = BEGIN_LP_RING(4);
483 if (ret)
484 return ret;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 OUT_RING(MI_BATCH_BUFFER);
487 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
488 OUT_RING(batch->start + batch->used - 4);
489 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100491 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
Zou Nan hai1cafd342010-06-25 13:40:24 +0800494
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100495 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100496 if (BEGIN_LP_RING(2) == 0) {
497 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
498 OUT_RING(MI_NOOP);
499 ADVANCE_LP_RING();
500 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100503 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return 0;
505}
506
Dave Airlieaf6061a2008-05-07 12:15:39 +1000507static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000510 struct drm_i915_master_private *master_priv =
511 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100512 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Dave Airlie7c1c2872008-11-28 14:22:24 +1000514 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400515 return -EINVAL;
516
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800517 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800518 __func__,
519 dev_priv->current_page,
520 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Dave Airlieaf6061a2008-05-07 12:15:39 +1000522 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100524 ret = BEGIN_LP_RING(10);
525 if (ret)
526 return ret;
527
Jesse Barnes585fb112008-07-29 11:54:06 -0700528 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000529 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Dave Airlieaf6061a2008-05-07 12:15:39 +1000531 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
532 OUT_RING(0);
533 if (dev_priv->current_page == 0) {
534 OUT_RING(dev_priv->back_offset);
535 dev_priv->current_page = 1;
536 } else {
537 OUT_RING(dev_priv->front_offset);
538 dev_priv->current_page = 0;
539 }
540 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000541
Dave Airlieaf6061a2008-05-07 12:15:39 +1000542 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
543 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100544
Dave Airlieaf6061a2008-05-07 12:15:39 +1000545 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000546
Dave Airlie7c1c2872008-11-28 14:22:24 +1000547 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000548
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100549 if (BEGIN_LP_RING(4) == 0) {
550 OUT_RING(MI_STORE_DWORD_INDEX);
551 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
552 OUT_RING(dev_priv->counter);
553 OUT_RING(0);
554 ADVANCE_LP_RING();
555 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000556
Dave Airlie7c1c2872008-11-28 14:22:24 +1000557 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000561static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000563 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 i915_kernel_lost_context(dev);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000566 return intel_wait_ring_buffer(ring, ring->size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Eric Anholtc153f452007-09-03 12:06:45 +1000569static int i915_flush_ioctl(struct drm_device *dev, void *data,
570 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Eric Anholt546b0972008-09-01 16:45:29 -0700572 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Eric Anholt546b0972008-09-01 16:45:29 -0700574 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
575
576 mutex_lock(&dev->struct_mutex);
577 ret = i915_quiescent(dev);
578 mutex_unlock(&dev->struct_mutex);
579
580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Eric Anholtc153f452007-09-03 12:06:45 +1000583static int i915_batchbuffer(struct drm_device *dev, void *data,
584 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000587 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000589 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000590 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700592 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (!dev_priv->allow_batchbuffer) {
595 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800599 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800600 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Eric Anholt546b0972008-09-01 16:45:29 -0700602 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Eric Anholt201361a2009-03-11 12:30:04 -0700604 if (batch->num_cliprects < 0)
605 return -EINVAL;
606
607 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700608 cliprects = kcalloc(batch->num_cliprects,
609 sizeof(struct drm_clip_rect),
610 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700611 if (cliprects == NULL)
612 return -ENOMEM;
613
614 ret = copy_from_user(cliprects, batch->cliprects,
615 batch->num_cliprects *
616 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200617 if (ret != 0) {
618 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700619 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200620 }
Eric Anholt201361a2009-03-11 12:30:04 -0700621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Eric Anholt546b0972008-09-01 16:45:29 -0700623 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700624 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700625 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400627 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000628 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700629
630fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700631 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return ret;
634}
635
Eric Anholtc153f452007-09-03 12:06:45 +1000636static int i915_cmdbuffer(struct drm_device *dev, void *data,
637 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000640 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000642 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000643 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700644 struct drm_clip_rect *cliprects = NULL;
645 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 int ret;
647
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800648 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800649 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Eric Anholt546b0972008-09-01 16:45:29 -0700651 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Eric Anholt201361a2009-03-11 12:30:04 -0700653 if (cmdbuf->num_cliprects < 0)
654 return -EINVAL;
655
Eric Anholt9a298b22009-03-24 12:23:04 -0700656 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700657 if (batch_data == NULL)
658 return -ENOMEM;
659
660 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200661 if (ret != 0) {
662 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700663 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200664 }
Eric Anholt201361a2009-03-11 12:30:04 -0700665
666 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700667 cliprects = kcalloc(cmdbuf->num_cliprects,
668 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000669 if (cliprects == NULL) {
670 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700671 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000672 }
Eric Anholt201361a2009-03-11 12:30:04 -0700673
674 ret = copy_from_user(cliprects, cmdbuf->cliprects,
675 cmdbuf->num_cliprects *
676 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200677 if (ret != 0) {
678 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700679 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
Eric Anholt546b0972008-09-01 16:45:29 -0700683 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700684 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700685 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (ret) {
687 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000688 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400691 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000692 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700693
Eric Anholt201361a2009-03-11 12:30:04 -0700694fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700695 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000696fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700697 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700698
699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Eric Anholtc153f452007-09-03 12:06:45 +1000702static int i915_flip_bufs(struct drm_device *dev, void *data,
703 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Eric Anholt546b0972008-09-01 16:45:29 -0700705 int ret;
706
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800707 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Eric Anholt546b0972008-09-01 16:45:29 -0700709 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Eric Anholt546b0972008-09-01 16:45:29 -0700711 mutex_lock(&dev->struct_mutex);
712 ret = i915_dispatch_flip(dev);
713 mutex_unlock(&dev->struct_mutex);
714
715 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Eric Anholtc153f452007-09-03 12:06:45 +1000718static int i915_getparam(struct drm_device *dev, void *data,
719 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000722 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int value;
724
725 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000726 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000727 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Eric Anholtc153f452007-09-03 12:06:45 +1000730 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700732 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 case I915_PARAM_ALLOW_BATCHBUFFER:
735 value = dev_priv->allow_batchbuffer ? 1 : 0;
736 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100737 case I915_PARAM_LAST_DISPATCH:
738 value = READ_BREADCRUMB(dev_priv);
739 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400740 case I915_PARAM_CHIPSET_ID:
741 value = dev->pci_device;
742 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700743 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000744 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700745 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800746 case I915_PARAM_NUM_FENCES_AVAIL:
747 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
748 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200749 case I915_PARAM_HAS_OVERLAY:
750 value = dev_priv->overlay ? 1 : 0;
751 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800752 case I915_PARAM_HAS_PAGEFLIPPING:
753 value = 1;
754 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500755 case I915_PARAM_HAS_EXECBUF2:
756 /* depends on GEM */
757 value = dev_priv->has_gem;
758 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800759 case I915_PARAM_HAS_BSD:
760 value = HAS_BSD(dev);
761 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100762 case I915_PARAM_HAS_BLT:
763 value = HAS_BLT(dev);
764 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100765 case I915_PARAM_HAS_RELAXED_FENCING:
766 value = 1;
767 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100768 case I915_PARAM_HAS_COHERENT_RINGS:
769 value = 1;
770 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000771 case I915_PARAM_HAS_EXEC_CONSTANTS:
772 value = INTEL_INFO(dev)->gen >= 4;
773 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800775 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500776 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000777 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
Eric Anholtc153f452007-09-03 12:06:45 +1000780 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000782 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
785 return 0;
786}
787
Eric Anholtc153f452007-09-03 12:06:45 +1000788static int i915_setparam(struct drm_device *dev, void *data,
789 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000792 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000795 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000796 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Eric Anholtc153f452007-09-03 12:06:45 +1000799 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 break;
802 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000803 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000806 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800808 case I915_SETPARAM_NUM_USED_FENCES:
809 if (param->value > dev_priv->num_fence_regs ||
810 param->value < 0)
811 return -EINVAL;
812 /* Userspace can use first N regs */
813 dev_priv->fence_reg_start = param->value;
814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800816 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800817 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000818 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
821 return 0;
822}
823
Eric Anholtc153f452007-09-03 12:06:45 +1000824static int i915_set_status_page(struct drm_device *dev, void *data,
825 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000826{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000827 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000828 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000829 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000830
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000831 if (!I915_NEED_GFX_HWS(dev))
832 return -EINVAL;
833
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000834 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000835 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000836 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000837 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000838
Jesse Barnes79e53942008-11-07 14:24:08 -0800839 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
840 WARN(1, "tried to set status page when mode setting active\n");
841 return 0;
842 }
843
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800844 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000845
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800846 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000847
Eric Anholt8b409582007-11-22 16:40:37 +1000848 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000849 dev_priv->hws_map.size = 4*1024;
850 dev_priv->hws_map.type = 0;
851 dev_priv->hws_map.flags = 0;
852 dev_priv->hws_map.mtrr = 0;
853
Dave Airliedd0910b2009-02-25 14:49:21 +1000854 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000855 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000856 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700857 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000858 DRM_ERROR("can not ioremap virtual address for"
859 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000860 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000861 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800862 ring->status_page.page_addr = dev_priv->hws_map.handle;
863 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
864 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000865
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800866 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700867 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800868 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700869 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000870 return 0;
871}
872
Dave Airlieec2a4c32009-08-04 11:43:41 +1000873static int i915_get_bridge_dev(struct drm_device *dev)
874{
875 struct drm_i915_private *dev_priv = dev->dev_private;
876
877 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
878 if (!dev_priv->bridge_dev) {
879 DRM_ERROR("bridge device not found\n");
880 return -1;
881 }
882 return 0;
883}
884
Zhenyu Wangc48044112009-12-17 14:48:43 +0800885#define MCHBAR_I915 0x44
886#define MCHBAR_I965 0x48
887#define MCHBAR_SIZE (4*4096)
888
889#define DEVEN_REG 0x54
890#define DEVEN_MCHBAR_EN (1 << 28)
891
892/* Allocate space for the MCH regs if needed, return nonzero on error */
893static int
894intel_alloc_mchbar_resource(struct drm_device *dev)
895{
896 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100897 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800898 u32 temp_lo, temp_hi = 0;
899 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100900 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800901
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100902 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800903 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
904 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
905 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
906
907 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
908#ifdef CONFIG_PNP
909 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100910 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
911 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800912#endif
913
914 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100915 dev_priv->mch_res.name = "i915 MCHBAR";
916 dev_priv->mch_res.flags = IORESOURCE_MEM;
917 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
918 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800919 MCHBAR_SIZE, MCHBAR_SIZE,
920 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100921 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800922 dev_priv->bridge_dev);
923 if (ret) {
924 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
925 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100926 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800927 }
928
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100929 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800930 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
931 upper_32_bits(dev_priv->mch_res.start));
932
933 pci_write_config_dword(dev_priv->bridge_dev, reg,
934 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100935 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800936}
937
938/* Setup MCHBAR if possible, return true if we should disable it again */
939static void
940intel_setup_mchbar(struct drm_device *dev)
941{
942 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100943 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800944 u32 temp;
945 bool enabled;
946
947 dev_priv->mchbar_need_disable = false;
948
949 if (IS_I915G(dev) || IS_I915GM(dev)) {
950 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
951 enabled = !!(temp & DEVEN_MCHBAR_EN);
952 } else {
953 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
954 enabled = temp & 1;
955 }
956
957 /* If it's already enabled, don't have to do anything */
958 if (enabled)
959 return;
960
961 if (intel_alloc_mchbar_resource(dev))
962 return;
963
964 dev_priv->mchbar_need_disable = true;
965
966 /* Space is allocated or reserved, so enable it. */
967 if (IS_I915G(dev) || IS_I915GM(dev)) {
968 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
969 temp | DEVEN_MCHBAR_EN);
970 } else {
971 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
972 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
973 }
974}
975
976static void
977intel_teardown_mchbar(struct drm_device *dev)
978{
979 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100980 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800981 u32 temp;
982
983 if (dev_priv->mchbar_need_disable) {
984 if (IS_I915G(dev) || IS_I915GM(dev)) {
985 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
986 temp &= ~DEVEN_MCHBAR_EN;
987 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
988 } else {
989 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
990 temp &= ~1;
991 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
992 }
993 }
994
995 if (dev_priv->mch_res.start)
996 release_resource(&dev_priv->mch_res);
997}
998
Jesse Barnes80824002009-09-10 15:28:06 -0700999#define PTE_ADDRESS_MASK 0xfffff000
1000#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1001#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1002#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1003#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1004#define PTE_MAPPING_TYPE_MASK (3 << 1)
1005#define PTE_VALID (1 << 0)
1006
1007/**
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001008 * i915_stolen_to_phys - take an offset into stolen memory and turn it into
1009 * a physical one
Jesse Barnes80824002009-09-10 15:28:06 -07001010 * @dev: drm device
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001011 * @offset: address to translate
Jesse Barnes80824002009-09-10 15:28:06 -07001012 *
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001013 * Some chip functions require allocations from stolen space and need the
1014 * physical address of the memory in question.
Jesse Barnes80824002009-09-10 15:28:06 -07001015 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001016static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset)
Jesse Barnes80824002009-09-10 15:28:06 -07001017{
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001018 struct drm_i915_private *dev_priv = dev->dev_private;
1019 struct pci_dev *pdev = dev_priv->bridge_dev;
1020 u32 base;
Jesse Barnes80824002009-09-10 15:28:06 -07001021
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001022#if 0
1023 /* On the machines I have tested the Graphics Base of Stolen Memory
1024 * is unreliable, so compute the base by subtracting the stolen memory
1025 * from the Top of Low Usable DRAM which is where the BIOS places
1026 * the graphics stolen memory.
1027 */
1028 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1029 /* top 32bits are reserved = 0 */
1030 pci_read_config_dword(pdev, 0xA4, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001031 } else {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001032 /* XXX presume 8xx is the same as i915 */
1033 pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001034 }
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001035#else
1036 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1037 u16 val;
1038 pci_read_config_word(pdev, 0xb0, &val);
1039 base = val >> 4 << 20;
1040 } else {
1041 u8 val;
1042 pci_read_config_byte(pdev, 0x9c, &val);
1043 base = val >> 3 << 27;
Jesse Barnes80824002009-09-10 15:28:06 -07001044 }
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001045 base -= dev_priv->mm.gtt->stolen_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001046#endif
Jesse Barnes80824002009-09-10 15:28:06 -07001047
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001048 return base + offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001049}
1050
1051static void i915_warn_stolen(struct drm_device *dev)
1052{
1053 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1054 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1055}
1056
1057static void i915_setup_compression(struct drm_device *dev, int size)
1058{
1059 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001060 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001061 unsigned long cfb_base;
1062 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001063
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001064 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
1065 if (compressed_fb)
1066 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1067 if (!compressed_fb)
1068 goto err;
Jesse Barnes80824002009-09-10 15:28:06 -07001069
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001070 cfb_base = i915_stolen_to_phys(dev, compressed_fb->start);
1071 if (!cfb_base)
1072 goto err_fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001073
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001074 if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001075 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
1076 4096, 4096, 0);
1077 if (compressed_llb)
1078 compressed_llb = drm_mm_get_block(compressed_llb,
1079 4096, 4096);
1080 if (!compressed_llb)
1081 goto err_fb;
Jesse Barnes74dff282009-09-14 15:39:40 -07001082
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001083 ll_base = i915_stolen_to_phys(dev, compressed_llb->start);
1084 if (!ll_base)
1085 goto err_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001086 }
1087
1088 dev_priv->cfb_size = size;
1089
Adam Jacksonee5382a2010-04-23 11:17:39 -04001090 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001091 dev_priv->compressed_fb = compressed_fb;
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001092 if (HAS_PCH_SPLIT(dev))
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001093 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1094 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001095 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1096 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001097 I915_WRITE(FBC_CFB_BASE, cfb_base);
1098 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001099 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001100 }
1101
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001102 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n",
1103 cfb_base, ll_base, size >> 20);
1104 return;
1105
1106err_llb:
1107 drm_mm_put_block(compressed_llb);
1108err_fb:
1109 drm_mm_put_block(compressed_fb);
1110err:
1111 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
1112 i915_warn_stolen(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001113}
1114
Jesse Barnes20bf3772010-04-21 11:39:22 -07001115static void i915_cleanup_compression(struct drm_device *dev)
1116{
1117 struct drm_i915_private *dev_priv = dev->dev_private;
1118
1119 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001120 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001121 drm_mm_put_block(dev_priv->compressed_llb);
1122}
1123
Dave Airlie28d52042009-09-21 14:33:58 +10001124/* true = enable decode, false = disable decoder */
1125static unsigned int i915_vga_set_decode(void *cookie, bool state)
1126{
1127 struct drm_device *dev = cookie;
1128
1129 intel_modeset_vga_set_state(dev, state);
1130 if (state)
1131 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1132 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1133 else
1134 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1135}
1136
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001137static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1138{
1139 struct drm_device *dev = pci_get_drvdata(pdev);
1140 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1141 if (state == VGA_SWITCHEROO_ON) {
Dave Airliefbf81762010-06-01 09:09:06 +10001142 printk(KERN_INFO "i915: switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001143 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001144 /* i915 resume handler doesn't set to D0 */
1145 pci_set_power_state(dev->pdev, PCI_D0);
1146 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001147 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001148 } else {
1149 printk(KERN_ERR "i915: switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001150 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001151 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001152 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001153 }
1154}
1155
1156static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1157{
1158 struct drm_device *dev = pci_get_drvdata(pdev);
1159 bool can_switch;
1160
1161 spin_lock(&dev->count_lock);
1162 can_switch = (dev->open_count == 0);
1163 spin_unlock(&dev->count_lock);
1164 return can_switch;
1165}
1166
Daniel Vetter53984632010-09-22 23:44:24 +02001167static int i915_load_modeset_init(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08001168{
1169 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53984632010-09-22 23:44:24 +02001170 unsigned long prealloc_size, gtt_size, mappable_size;
Jesse Barnes79e53942008-11-07 14:24:08 -08001171 int ret = 0;
1172
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001173 prealloc_size = dev_priv->mm.gtt->stolen_size;
Daniel Vetter53984632010-09-22 23:44:24 +02001174 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
1175 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetter53984632010-09-22 23:44:24 +02001176
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001177 /* Basic memrange allocator for stolen space */
1178 drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001179
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001180 /* Let GEM Manage all of the aperture.
Eric Anholt13f4c432009-05-12 15:27:36 -07001181 *
1182 * However, leave one page at the end still bound to the scratch page.
1183 * There are a number of places where the hardware apparently
1184 * prefetches past the end of the object, and we've seen multiple
1185 * hangs with the GPU head pointer stuck in a batchbuffer bound
1186 * at the last page of the aperture. One page should be enough to
1187 * keep any prefetching inside of the aperture.
1188 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001189 i915_gem_do_init(dev, 0, mappable_size, gtt_size - PAGE_SIZE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001190
Ben Gamari11ed50e2009-09-14 17:48:45 -04001191 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001192 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001193 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001194 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001195 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001196
Jesse Barnes80824002009-09-10 15:28:06 -07001197 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001198 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001199 int cfb_size;
1200
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001201 /* Leave 1M for line length buffer & misc. */
1202
1203 /* Try to get a 32M buffer... */
1204 if (prealloc_size > (36*1024*1024))
1205 cfb_size = 32*1024*1024;
Jesse Barnes80824002009-09-10 15:28:06 -07001206 else /* fall back to 7/8 of the stolen space */
1207 cfb_size = prealloc_size * 7 / 8;
1208 i915_setup_compression(dev, cfb_size);
1209 }
1210
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001211 /* Allow hardware batchbuffers unless told otherwise. */
Jesse Barnes79e53942008-11-07 14:24:08 -08001212 dev_priv->allow_batchbuffer = 1;
1213
Bryan Freed6d139a82010-10-14 09:14:51 +01001214 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001215 if (ret)
1216 DRM_INFO("failed to find VBIOS tables\n");
1217
Chris Wilson934f9922011-01-20 13:09:12 +00001218 /* If we have > 1 VGA cards, then we need to arbitrate access
1219 * to the common VGA resources.
1220 *
1221 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1222 * then we do not take part in VGA arbitration and the
1223 * vga_client_register() fails with -ENODEV.
1224 */
Dave Airlie28d52042009-09-21 14:33:58 +10001225 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001226 if (ret && ret != -ENODEV)
Chris Wilson5a793952010-06-06 10:50:03 +01001227 goto cleanup_ringbuffer;
Dave Airlie28d52042009-09-21 14:33:58 +10001228
Jesse Barnes723bfd72010-10-07 16:01:13 -07001229 intel_register_dsm_handler();
1230
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001231 ret = vga_switcheroo_register_client(dev->pdev,
1232 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001233 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001234 i915_switcheroo_can_switch);
1235 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001236 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001237
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001238 /* IIR "flip pending" bit means done if this bit is set */
1239 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1240 dev_priv->flip_pending_is_done = true;
1241
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001242 intel_modeset_init(dev);
1243
Jesse Barnes79e53942008-11-07 14:24:08 -08001244 ret = drm_irq_install(dev);
1245 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001246 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001247
Jesse Barnes79e53942008-11-07 14:24:08 -08001248 /* Always safe in the mode setting case. */
1249 /* FIXME: do pre/post-mode set stuff in core KMS code */
1250 dev->vblank_disable_allowed = 1;
1251
Chris Wilson5a793952010-06-06 10:50:03 +01001252 ret = intel_fbdev_init(dev);
1253 if (ret)
1254 goto cleanup_irq;
1255
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001256 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001257
1258 /* We're off and running w/KMS */
1259 dev_priv->mm.suspended = 0;
1260
Jesse Barnes79e53942008-11-07 14:24:08 -08001261 return 0;
1262
Chris Wilson5a793952010-06-06 10:50:03 +01001263cleanup_irq:
1264 drm_irq_uninstall(dev);
1265cleanup_vga_switcheroo:
1266 vga_switcheroo_unregister_client(dev->pdev);
1267cleanup_vga_client:
1268 vga_client_register(dev->pdev, NULL, NULL, NULL);
1269cleanup_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001270 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001271 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001272 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001273out:
1274 return ret;
1275}
1276
Dave Airlie7c1c2872008-11-28 14:22:24 +10001277int i915_master_create(struct drm_device *dev, struct drm_master *master)
1278{
1279 struct drm_i915_master_private *master_priv;
1280
Eric Anholt9a298b22009-03-24 12:23:04 -07001281 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001282 if (!master_priv)
1283 return -ENOMEM;
1284
1285 master->driver_priv = master_priv;
1286 return 0;
1287}
1288
1289void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1290{
1291 struct drm_i915_master_private *master_priv = master->driver_priv;
1292
1293 if (!master_priv)
1294 return;
1295
Eric Anholt9a298b22009-03-24 12:23:04 -07001296 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001297
1298 master->driver_priv = NULL;
1299}
1300
Jesse Barnes7648fa92010-05-20 14:28:11 -07001301static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001302{
1303 drm_i915_private_t *dev_priv = dev->dev_private;
1304 u32 tmp;
1305
Shaohua Li7662c8b2009-06-26 11:23:55 +08001306 tmp = I915_READ(CLKCFG);
1307
1308 switch (tmp & CLKCFG_FSB_MASK) {
1309 case CLKCFG_FSB_533:
1310 dev_priv->fsb_freq = 533; /* 133*4 */
1311 break;
1312 case CLKCFG_FSB_800:
1313 dev_priv->fsb_freq = 800; /* 200*4 */
1314 break;
1315 case CLKCFG_FSB_667:
1316 dev_priv->fsb_freq = 667; /* 167*4 */
1317 break;
1318 case CLKCFG_FSB_400:
1319 dev_priv->fsb_freq = 400; /* 100*4 */
1320 break;
1321 }
1322
1323 switch (tmp & CLKCFG_MEM_MASK) {
1324 case CLKCFG_MEM_533:
1325 dev_priv->mem_freq = 533;
1326 break;
1327 case CLKCFG_MEM_667:
1328 dev_priv->mem_freq = 667;
1329 break;
1330 case CLKCFG_MEM_800:
1331 dev_priv->mem_freq = 800;
1332 break;
1333 }
Li Peng95534262010-05-18 18:58:44 +08001334
1335 /* detect pineview DDR3 setting */
1336 tmp = I915_READ(CSHRDDR3CTL);
1337 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001338}
1339
Jesse Barnes7648fa92010-05-20 14:28:11 -07001340static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1341{
1342 drm_i915_private_t *dev_priv = dev->dev_private;
1343 u16 ddrpll, csipll;
1344
1345 ddrpll = I915_READ16(DDRMPLL1);
1346 csipll = I915_READ16(CSIPLL0);
1347
1348 switch (ddrpll & 0xff) {
1349 case 0xc:
1350 dev_priv->mem_freq = 800;
1351 break;
1352 case 0x10:
1353 dev_priv->mem_freq = 1066;
1354 break;
1355 case 0x14:
1356 dev_priv->mem_freq = 1333;
1357 break;
1358 case 0x18:
1359 dev_priv->mem_freq = 1600;
1360 break;
1361 default:
1362 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1363 ddrpll & 0xff);
1364 dev_priv->mem_freq = 0;
1365 break;
1366 }
1367
1368 dev_priv->r_t = dev_priv->mem_freq;
1369
1370 switch (csipll & 0x3ff) {
1371 case 0x00c:
1372 dev_priv->fsb_freq = 3200;
1373 break;
1374 case 0x00e:
1375 dev_priv->fsb_freq = 3733;
1376 break;
1377 case 0x010:
1378 dev_priv->fsb_freq = 4266;
1379 break;
1380 case 0x012:
1381 dev_priv->fsb_freq = 4800;
1382 break;
1383 case 0x014:
1384 dev_priv->fsb_freq = 5333;
1385 break;
1386 case 0x016:
1387 dev_priv->fsb_freq = 5866;
1388 break;
1389 case 0x018:
1390 dev_priv->fsb_freq = 6400;
1391 break;
1392 default:
1393 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1394 csipll & 0x3ff);
1395 dev_priv->fsb_freq = 0;
1396 break;
1397 }
1398
1399 if (dev_priv->fsb_freq == 3200) {
1400 dev_priv->c_m = 0;
1401 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1402 dev_priv->c_m = 1;
1403 } else {
1404 dev_priv->c_m = 2;
1405 }
1406}
1407
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001408static const struct cparams {
1409 u16 i;
1410 u16 t;
1411 u16 m;
1412 u16 c;
1413} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001414 { 1, 1333, 301, 28664 },
1415 { 1, 1066, 294, 24460 },
1416 { 1, 800, 294, 25192 },
1417 { 0, 1333, 276, 27605 },
1418 { 0, 1066, 276, 27605 },
1419 { 0, 800, 231, 23784 },
1420};
1421
1422unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1423{
1424 u64 total_count, diff, ret;
1425 u32 count1, count2, count3, m = 0, c = 0;
1426 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1427 int i;
1428
1429 diff1 = now - dev_priv->last_time1;
1430
1431 count1 = I915_READ(DMIEC);
1432 count2 = I915_READ(DDREC);
1433 count3 = I915_READ(CSIEC);
1434
1435 total_count = count1 + count2 + count3;
1436
1437 /* FIXME: handle per-counter overflow */
1438 if (total_count < dev_priv->last_count1) {
1439 diff = ~0UL - dev_priv->last_count1;
1440 diff += total_count;
1441 } else {
1442 diff = total_count - dev_priv->last_count1;
1443 }
1444
1445 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1446 if (cparams[i].i == dev_priv->c_m &&
1447 cparams[i].t == dev_priv->r_t) {
1448 m = cparams[i].m;
1449 c = cparams[i].c;
1450 break;
1451 }
1452 }
1453
Jesse Barnesd270ae32010-09-27 10:35:44 -07001454 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001455 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001456 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001457
1458 dev_priv->last_count1 = total_count;
1459 dev_priv->last_time1 = now;
1460
1461 return ret;
1462}
1463
1464unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1465{
1466 unsigned long m, x, b;
1467 u32 tsfs;
1468
1469 tsfs = I915_READ(TSFS);
1470
1471 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1472 x = I915_READ8(TR1);
1473
1474 b = tsfs & TSFS_INTR_MASK;
1475
1476 return ((m * x) / 127) - b;
1477}
1478
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001479static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001480{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001481 static const struct v_table {
1482 u16 vd; /* in .1 mil */
1483 u16 vm; /* in .1 mil */
1484 } v_table[] = {
1485 { 0, 0, },
1486 { 375, 0, },
1487 { 500, 0, },
1488 { 625, 0, },
1489 { 750, 0, },
1490 { 875, 0, },
1491 { 1000, 0, },
1492 { 1125, 0, },
1493 { 4125, 3000, },
1494 { 4125, 3000, },
1495 { 4125, 3000, },
1496 { 4125, 3000, },
1497 { 4125, 3000, },
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 { 4250, 3125, },
1518 { 4375, 3250, },
1519 { 4500, 3375, },
1520 { 4625, 3500, },
1521 { 4750, 3625, },
1522 { 4875, 3750, },
1523 { 5000, 3875, },
1524 { 5125, 4000, },
1525 { 5250, 4125, },
1526 { 5375, 4250, },
1527 { 5500, 4375, },
1528 { 5625, 4500, },
1529 { 5750, 4625, },
1530 { 5875, 4750, },
1531 { 6000, 4875, },
1532 { 6125, 5000, },
1533 { 6250, 5125, },
1534 { 6375, 5250, },
1535 { 6500, 5375, },
1536 { 6625, 5500, },
1537 { 6750, 5625, },
1538 { 6875, 5750, },
1539 { 7000, 5875, },
1540 { 7125, 6000, },
1541 { 7250, 6125, },
1542 { 7375, 6250, },
1543 { 7500, 6375, },
1544 { 7625, 6500, },
1545 { 7750, 6625, },
1546 { 7875, 6750, },
1547 { 8000, 6875, },
1548 { 8125, 7000, },
1549 { 8250, 7125, },
1550 { 8375, 7250, },
1551 { 8500, 7375, },
1552 { 8625, 7500, },
1553 { 8750, 7625, },
1554 { 8875, 7750, },
1555 { 9000, 7875, },
1556 { 9125, 8000, },
1557 { 9250, 8125, },
1558 { 9375, 8250, },
1559 { 9500, 8375, },
1560 { 9625, 8500, },
1561 { 9750, 8625, },
1562 { 9875, 8750, },
1563 { 10000, 8875, },
1564 { 10125, 9000, },
1565 { 10250, 9125, },
1566 { 10375, 9250, },
1567 { 10500, 9375, },
1568 { 10625, 9500, },
1569 { 10750, 9625, },
1570 { 10875, 9750, },
1571 { 11000, 9875, },
1572 { 11125, 10000, },
1573 { 11250, 10125, },
1574 { 11375, 10250, },
1575 { 11500, 10375, },
1576 { 11625, 10500, },
1577 { 11750, 10625, },
1578 { 11875, 10750, },
1579 { 12000, 10875, },
1580 { 12125, 11000, },
1581 { 12250, 11125, },
1582 { 12375, 11250, },
1583 { 12500, 11375, },
1584 { 12625, 11500, },
1585 { 12750, 11625, },
1586 { 12875, 11750, },
1587 { 13000, 11875, },
1588 { 13125, 12000, },
1589 { 13250, 12125, },
1590 { 13375, 12250, },
1591 { 13500, 12375, },
1592 { 13625, 12500, },
1593 { 13750, 12625, },
1594 { 13875, 12750, },
1595 { 14000, 12875, },
1596 { 14125, 13000, },
1597 { 14250, 13125, },
1598 { 14375, 13250, },
1599 { 14500, 13375, },
1600 { 14625, 13500, },
1601 { 14750, 13625, },
1602 { 14875, 13750, },
1603 { 15000, 13875, },
1604 { 15125, 14000, },
1605 { 15250, 14125, },
1606 { 15375, 14250, },
1607 { 15500, 14375, },
1608 { 15625, 14500, },
1609 { 15750, 14625, },
1610 { 15875, 14750, },
1611 { 16000, 14875, },
1612 { 16125, 15000, },
1613 };
1614 if (dev_priv->info->is_mobile)
1615 return v_table[pxvid].vm;
1616 else
1617 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001618}
1619
1620void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1621{
1622 struct timespec now, diff1;
1623 u64 diff;
1624 unsigned long diffms;
1625 u32 count;
1626
1627 getrawmonotonic(&now);
1628 diff1 = timespec_sub(now, dev_priv->last_time2);
1629
1630 /* Don't divide by 0 */
1631 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1632 if (!diffms)
1633 return;
1634
1635 count = I915_READ(GFXEC);
1636
1637 if (count < dev_priv->last_count2) {
1638 diff = ~0UL - dev_priv->last_count2;
1639 diff += count;
1640 } else {
1641 diff = count - dev_priv->last_count2;
1642 }
1643
1644 dev_priv->last_count2 = count;
1645 dev_priv->last_time2 = now;
1646
1647 /* More magic constants... */
1648 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001649 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001650 dev_priv->gfx_power = diff;
1651}
1652
1653unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1654{
1655 unsigned long t, corr, state1, corr2, state2;
1656 u32 pxvid, ext_v;
1657
1658 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1659 pxvid = (pxvid >> 24) & 0x7f;
1660 ext_v = pvid_to_extvid(dev_priv, pxvid);
1661
1662 state1 = ext_v;
1663
1664 t = i915_mch_val(dev_priv);
1665
1666 /* Revel in the empirically derived constants */
1667
1668 /* Correction factor in 1/100000 units */
1669 if (t > 80)
1670 corr = ((t * 2349) + 135940);
1671 else if (t >= 50)
1672 corr = ((t * 964) + 29317);
1673 else /* < 50 */
1674 corr = ((t * 301) + 1004);
1675
1676 corr = corr * ((150142 * state1) / 10000 - 78642);
1677 corr /= 100000;
1678 corr2 = (corr * dev_priv->corr);
1679
1680 state2 = (corr2 * state1) / 10000;
1681 state2 /= 100; /* convert to mW */
1682
1683 i915_update_gfx_val(dev_priv);
1684
1685 return dev_priv->gfx_power + state2;
1686}
1687
1688/* Global for IPS driver to get at the current i915 device */
1689static struct drm_i915_private *i915_mch_dev;
1690/*
1691 * Lock protecting IPS related data structures
1692 * - i915_mch_dev
1693 * - dev_priv->max_delay
1694 * - dev_priv->min_delay
1695 * - dev_priv->fmax
1696 * - dev_priv->gpu_busy
1697 */
Chris Wilson995b6762010-08-20 13:23:26 +01001698static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001699
1700/**
1701 * i915_read_mch_val - return value for IPS use
1702 *
1703 * Calculate and return a value for the IPS driver to use when deciding whether
1704 * we have thermal and power headroom to increase CPU or GPU power budget.
1705 */
1706unsigned long i915_read_mch_val(void)
1707{
1708 struct drm_i915_private *dev_priv;
1709 unsigned long chipset_val, graphics_val, ret = 0;
1710
1711 spin_lock(&mchdev_lock);
1712 if (!i915_mch_dev)
1713 goto out_unlock;
1714 dev_priv = i915_mch_dev;
1715
1716 chipset_val = i915_chipset_val(dev_priv);
1717 graphics_val = i915_gfx_val(dev_priv);
1718
1719 ret = chipset_val + graphics_val;
1720
1721out_unlock:
1722 spin_unlock(&mchdev_lock);
1723
1724 return ret;
1725}
1726EXPORT_SYMBOL_GPL(i915_read_mch_val);
1727
1728/**
1729 * i915_gpu_raise - raise GPU frequency limit
1730 *
1731 * Raise the limit; IPS indicates we have thermal headroom.
1732 */
1733bool i915_gpu_raise(void)
1734{
1735 struct drm_i915_private *dev_priv;
1736 bool ret = true;
1737
1738 spin_lock(&mchdev_lock);
1739 if (!i915_mch_dev) {
1740 ret = false;
1741 goto out_unlock;
1742 }
1743 dev_priv = i915_mch_dev;
1744
1745 if (dev_priv->max_delay > dev_priv->fmax)
1746 dev_priv->max_delay--;
1747
1748out_unlock:
1749 spin_unlock(&mchdev_lock);
1750
1751 return ret;
1752}
1753EXPORT_SYMBOL_GPL(i915_gpu_raise);
1754
1755/**
1756 * i915_gpu_lower - lower GPU frequency limit
1757 *
1758 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1759 * frequency maximum.
1760 */
1761bool i915_gpu_lower(void)
1762{
1763 struct drm_i915_private *dev_priv;
1764 bool ret = true;
1765
1766 spin_lock(&mchdev_lock);
1767 if (!i915_mch_dev) {
1768 ret = false;
1769 goto out_unlock;
1770 }
1771 dev_priv = i915_mch_dev;
1772
1773 if (dev_priv->max_delay < dev_priv->min_delay)
1774 dev_priv->max_delay++;
1775
1776out_unlock:
1777 spin_unlock(&mchdev_lock);
1778
1779 return ret;
1780}
1781EXPORT_SYMBOL_GPL(i915_gpu_lower);
1782
1783/**
1784 * i915_gpu_busy - indicate GPU business to IPS
1785 *
1786 * Tell the IPS driver whether or not the GPU is busy.
1787 */
1788bool i915_gpu_busy(void)
1789{
1790 struct drm_i915_private *dev_priv;
1791 bool ret = false;
1792
1793 spin_lock(&mchdev_lock);
1794 if (!i915_mch_dev)
1795 goto out_unlock;
1796 dev_priv = i915_mch_dev;
1797
1798 ret = dev_priv->busy;
1799
1800out_unlock:
1801 spin_unlock(&mchdev_lock);
1802
1803 return ret;
1804}
1805EXPORT_SYMBOL_GPL(i915_gpu_busy);
1806
1807/**
1808 * i915_gpu_turbo_disable - disable graphics turbo
1809 *
1810 * Disable graphics turbo by resetting the max frequency and setting the
1811 * current frequency to the default.
1812 */
1813bool i915_gpu_turbo_disable(void)
1814{
1815 struct drm_i915_private *dev_priv;
1816 bool ret = true;
1817
1818 spin_lock(&mchdev_lock);
1819 if (!i915_mch_dev) {
1820 ret = false;
1821 goto out_unlock;
1822 }
1823 dev_priv = i915_mch_dev;
1824
1825 dev_priv->max_delay = dev_priv->fstart;
1826
1827 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1828 ret = false;
1829
1830out_unlock:
1831 spin_unlock(&mchdev_lock);
1832
1833 return ret;
1834}
1835EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1836
Jesse Barnes79e53942008-11-07 14:24:08 -08001837/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001838 * Tells the intel_ips driver that the i915 driver is now loaded, if
1839 * IPS got loaded first.
1840 *
1841 * This awkward dance is so that neither module has to depend on the
1842 * other in order for IPS to do the appropriate communication of
1843 * GPU turbo limits to i915.
1844 */
1845static void
1846ips_ping_for_i915_load(void)
1847{
1848 void (*link)(void);
1849
1850 link = symbol_get(ips_link_to_i915_driver);
1851 if (link) {
1852 link();
1853 symbol_put(ips_link_to_i915_driver);
1854 }
1855}
1856
1857/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001858 * i915_driver_load - setup chip and create an initial config
1859 * @dev: DRM device
1860 * @flags: startup flags
1861 *
1862 * The driver load routine has to do several things:
1863 * - drive output discovery via intel_modeset_init()
1864 * - initialize the memory manager
1865 * - allocate initial config memory
1866 * - setup the DRM framebuffer with the allocated memory
1867 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001868int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001869{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001870 struct drm_i915_private *dev_priv;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001871 int ret = 0, mmio_bar;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001872 uint32_t agp_size;
1873
Dave Airlie22eae942005-11-10 22:16:34 +11001874 /* i915 has 4 more counters */
1875 dev->counters += 4;
1876 dev->types[6] = _DRM_STAT_IRQ;
1877 dev->types[7] = _DRM_STAT_PRIMARY;
1878 dev->types[8] = _DRM_STAT_SECONDARY;
1879 dev->types[9] = _DRM_STAT_DMA;
1880
Eric Anholt9a298b22009-03-24 12:23:04 -07001881 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001882 if (dev_priv == NULL)
1883 return -ENOMEM;
1884
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001885 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001886 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001887 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001888
Dave Airlieec2a4c32009-08-04 11:43:41 +10001889 if (i915_get_bridge_dev(dev)) {
1890 ret = -EIO;
1891 goto free_priv;
1892 }
1893
Daniel Vetter9f82d232010-08-30 21:25:23 +02001894 /* overlay on gen2 is broken and can't address above 1G */
1895 if (IS_GEN2(dev))
1896 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1897
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001898 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1899 * using 32bit addressing, overwriting memory if HWS is located
1900 * above 4GB.
1901 *
1902 * The documentation also mentions an issue with undefined
1903 * behaviour if any general state is accessed within a page above 4GB,
1904 * which also needs to be handled carefully.
1905 */
1906 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1907 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1908
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001909 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1910 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
1911 if (!dev_priv->regs) {
1912 DRM_ERROR("failed to map registers\n");
1913 ret = -EIO;
1914 goto put_bridge;
1915 }
1916
Chris Wilson71e93392010-10-27 18:46:52 +01001917 dev_priv->mm.gtt = intel_gtt_get();
1918 if (!dev_priv->mm.gtt) {
1919 DRM_ERROR("Failed to initialize GTT\n");
1920 ret = -ENODEV;
1921 goto out_iomapfree;
1922 }
1923
Chris Wilson71e93392010-10-27 18:46:52 +01001924 agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
1925
Eric Anholtab657db12009-01-23 12:57:47 -08001926 dev_priv->mm.gtt_mapping =
Chris Wilson71e93392010-10-27 18:46:52 +01001927 io_mapping_create_wc(dev->agp->base, agp_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001928 if (dev_priv->mm.gtt_mapping == NULL) {
1929 ret = -EIO;
1930 goto out_rmmap;
1931 }
1932
Eric Anholtab657db12009-01-23 12:57:47 -08001933 /* Set up a WC MTRR for non-PAT systems. This is more common than
1934 * one would think, because the kernel disables PAT on first
1935 * generation Core chips because WC PAT gets overridden by a UC
1936 * MTRR if present. Even if a UC MTRR isn't present.
1937 */
1938 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
Chris Wilson71e93392010-10-27 18:46:52 +01001939 agp_size,
Eric Anholtab657db12009-01-23 12:57:47 -08001940 MTRR_TYPE_WRCOMB, 1);
1941 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07001942 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08001943 "performance may suffer.\n");
1944 }
1945
Chris Wilsone642abb2010-09-09 12:46:34 +01001946 /* The i915 workqueue is primarily used for batched retirement of
1947 * requests (and thus managing bo) once the task has been completed
1948 * by the GPU. i915_gem_retire_requests() is called directly when we
1949 * need high-priority retirement, such as waiting for an explicit
1950 * bo.
1951 *
1952 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001953 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001954 *
1955 * All tasks on the workqueue are expected to acquire the dev mutex
1956 * so there is no point in running more than one instance of the
1957 * workqueue at any time: max_active = 1 and NON_REENTRANT.
1958 */
1959 dev_priv->wq = alloc_workqueue("i915",
1960 WQ_UNBOUND | WQ_NON_REENTRANT,
1961 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001962 if (dev_priv->wq == NULL) {
1963 DRM_ERROR("Failed to create our workqueue.\n");
1964 ret = -ENOMEM;
1965 goto out_iomapfree;
1966 }
1967
Dave Airlieac5c4e72008-12-19 15:38:34 +10001968 /* enable GEM by default */
1969 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10001970
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001971 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001972 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01001973 if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07001974 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001975 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07001976 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001977
Zhenyu Wangc48044112009-12-17 14:48:43 +08001978 /* Try to make sure MCHBAR is enabled before poking at it */
1979 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001980 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001981 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001982
Bryan Freed6d139a82010-10-14 09:14:51 +01001983 /* Make sure the bios did its job and set up vital registers */
1984 intel_setup_bios(dev);
1985
Eric Anholt673a3942008-07-30 12:06:12 -07001986 i915_gem_load(dev);
1987
Keith Packard398c9cb2008-07-30 13:03:43 -07001988 /* Init HWS */
1989 if (!I915_NEED_GFX_HWS(dev)) {
1990 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001991 if (ret)
1992 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07001993 }
Eric Anholted4cb412008-07-29 12:10:39 -07001994
Jesse Barnes7648fa92010-05-20 14:28:11 -07001995 if (IS_PINEVIEW(dev))
1996 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01001997 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07001998 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08001999
Eric Anholted4cb412008-07-29 12:10:39 -07002000 /* On the 945G/GM, the chipset reports the MSI capability on the
2001 * integrated graphics even though the support isn't actually there
2002 * according to the published specs. It doesn't appear to function
2003 * correctly in testing on 945G.
2004 * This may be a side effect of MSI having been made available for PEG
2005 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002006 *
2007 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002008 * be lost or delayed, but we use them anyways to avoid
2009 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002010 */
Keith Packardb60678a2008-12-08 11:12:28 -08002011 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002012 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002013
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002014 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002015 spin_lock_init(&dev_priv->error_lock);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002016 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07002017
Keith Packard52440212008-11-18 09:30:25 -08002018 ret = drm_vblank_init(dev, I915_NUM_PIPE);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002019 if (ret)
2020 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08002021
Ben Gamari11ed50e2009-09-14 17:48:45 -04002022 /* Start out suspended */
2023 dev_priv->mm.suspended = 1;
2024
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002025 intel_detect_pch(dev);
2026
Jesse Barnes79e53942008-11-07 14:24:08 -08002027 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02002028 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002029 if (ret < 0) {
2030 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00002031 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08002032 }
2033 }
2034
Matthew Garrett74a365b2009-03-19 21:35:39 +00002035 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002036 intel_opregion_init(dev);
2037 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002038
Ben Gamarif65d9422009-09-14 17:48:44 -04002039 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2040 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002041
2042 spin_lock(&mchdev_lock);
2043 i915_mch_dev = dev_priv;
2044 dev_priv->mchdev_lock = &mchdev_lock;
2045 spin_unlock(&mchdev_lock);
2046
Eric Anholt63ee41d2010-12-20 18:40:06 -08002047 ips_ping_for_i915_load();
2048
Jesse Barnes79e53942008-11-07 14:24:08 -08002049 return 0;
2050
Chris Wilson56e2ea32010-11-08 17:10:29 +00002051out_gem_unload:
2052 if (dev->pdev->msi_enabled)
2053 pci_disable_msi(dev->pdev);
2054
2055 intel_teardown_gmbus(dev);
2056 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002057 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002058out_iomapfree:
2059 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002060out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01002061 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002062put_bridge:
2063 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002064free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002065 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002066 return ret;
2067}
2068
2069int i915_driver_unload(struct drm_device *dev)
2070{
2071 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002072 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002073
Jesse Barnes7648fa92010-05-20 14:28:11 -07002074 spin_lock(&mchdev_lock);
2075 i915_mch_dev = NULL;
2076 spin_unlock(&mchdev_lock);
2077
Chris Wilson17250b72010-10-28 12:51:39 +01002078 if (dev_priv->mm.inactive_shrinker.shrink)
2079 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2080
Daniel Vetterc911fc12010-08-20 21:23:20 +02002081 mutex_lock(&dev->struct_mutex);
2082 ret = i915_gpu_idle(dev);
2083 if (ret)
2084 DRM_ERROR("failed to idle hardware: %d\n", ret);
2085 mutex_unlock(&dev->struct_mutex);
2086
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002087 /* Cancel the retire work handler, which should be idle now. */
2088 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2089
Eric Anholtab657db12009-01-23 12:57:47 -08002090 io_mapping_free(dev_priv->mm.gtt_mapping);
2091 if (dev_priv->mm.gtt_mtrr >= 0) {
2092 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2093 dev->agp->agp_info.aper_size * 1024 * 1024);
2094 dev_priv->mm.gtt_mtrr = -1;
2095 }
2096
Chris Wilson44834a62010-08-19 16:09:23 +01002097 acpi_video_unregister();
2098
Jesse Barnes79e53942008-11-07 14:24:08 -08002099 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002100 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002101 intel_modeset_cleanup(dev);
2102
Zhao Yakui6363ee62009-11-24 09:48:44 +08002103 /*
2104 * free the memory space allocated for the child device
2105 * config parsed from VBT
2106 */
2107 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2108 kfree(dev_priv->child_dev);
2109 dev_priv->child_dev = NULL;
2110 dev_priv->child_dev_num = 0;
2111 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002112
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002113 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002114 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002115 }
2116
Daniel Vettera8b48992010-08-20 21:25:11 +02002117 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002118 del_timer_sync(&dev_priv->hangcheck_timer);
2119 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002120 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002121
Eric Anholted4cb412008-07-29 12:10:39 -07002122 if (dev->pdev->msi_enabled)
2123 pci_disable_msi(dev->pdev);
2124
Chris Wilson44834a62010-08-19 16:09:23 +01002125 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002126
Jesse Barnes79e53942008-11-07 14:24:08 -08002127 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002128 /* Flush any outstanding unpin_work. */
2129 flush_workqueue(dev_priv->wq);
2130
Dave Airlie71acb5e2008-12-30 20:31:46 +10002131 i915_gem_free_all_phys_object(dev);
2132
Jesse Barnes79e53942008-11-07 14:24:08 -08002133 mutex_lock(&dev->struct_mutex);
2134 i915_gem_cleanup_ringbuffer(dev);
2135 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002136 if (I915_HAS_FBC(dev) && i915_powersave)
2137 i915_cleanup_compression(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002138 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002139
2140 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002141
2142 if (!I915_NEED_GFX_HWS(dev))
2143 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002144 }
2145
Daniel Vetter701394c2010-10-10 18:54:08 +01002146 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002147 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002148
Chris Wilsonf899fc62010-07-20 15:44:45 -07002149 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002150 intel_teardown_mchbar(dev);
2151
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002152 destroy_workqueue(dev_priv->wq);
2153
Dave Airlieec2a4c32009-08-04 11:43:41 +10002154 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002155 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002156
Dave Airlie22eae942005-11-10 22:16:34 +11002157 return 0;
2158}
2159
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002160int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002161{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002162 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002163
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002164 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002165 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2166 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002167 return -ENOMEM;
2168
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002169 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002170
Chris Wilson1c255952010-09-26 11:03:27 +01002171 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002172 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002173
2174 return 0;
2175}
2176
Jesse Barnes79e53942008-11-07 14:24:08 -08002177/**
2178 * i915_driver_lastclose - clean up after all DRM clients have exited
2179 * @dev: DRM device
2180 *
2181 * Take care of cleaning up after all DRM clients have exited. In the
2182 * mode setting case, we want to restore the kernel's initial mode (just
2183 * in case the last client left us in a bad state).
2184 *
2185 * Additionally, in the non-mode setting case, we'll tear down the AGP
2186 * and DMA structures, since the kernel won't be using them, and clea
2187 * up any GEM state.
2188 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002189void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002191 drm_i915_private_t *dev_priv = dev->dev_private;
2192
Jesse Barnes79e53942008-11-07 14:24:08 -08002193 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10002194 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002195 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002196 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002197 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002198
Eric Anholt673a3942008-07-30 12:06:12 -07002199 i915_gem_lastclose(dev);
2200
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002201 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002202 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002203
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002204 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
Eric Anholt6c340ea2007-08-25 20:23:09 +10002207void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002209 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00002210 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08002211 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2212 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213}
2214
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002215void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002216{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002217 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002218
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002219 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002220}
2221
Eric Anholtc153f452007-09-03 12:06:45 +10002222struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002223 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2224 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2225 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2226 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2227 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2228 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2229 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2230 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2231 DRM_IOCTL_DEF_DRV(I915_ALLOC, i915_mem_alloc, DRM_AUTH),
2232 DRM_IOCTL_DEF_DRV(I915_FREE, i915_mem_free, DRM_AUTH),
2233 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2234 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
2235 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2236 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2237 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2238 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2239 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2240 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2241 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2242 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2243 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2244 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2245 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2246 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2247 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2248 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2249 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2250 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2251 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2252 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2253 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2254 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2255 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2256 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2257 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2258 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2259 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2260 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2261 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2262 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002263};
2264
2265int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002266
2267/**
2268 * Determine if the device really is AGP or not.
2269 *
2270 * All Intel graphics chipsets are treated as AGP, even if they are really
2271 * PCI-e.
2272 *
2273 * \param dev The device to be tested.
2274 *
2275 * \returns
2276 * A value of 1 is always retured to indictate every i9x5 is AGP.
2277 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002278int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002279{
2280 return 1;
2281}