blob: a813f652fa1f3a39e54a7426fb6a1f57772d9586 [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
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "drmP.h"
32#include "drm.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "drm_crtc_helper.h"
Dave Airlie785b93e2009-08-28 15:46:53 +100034#include "drm_fb_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i915_drm.h"
37#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010038#include "i915_trace.h"
Eric Anholt63ee41d2010-12-20 18:40:06 -080039#include "../../../platform/x86/intel_ips.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060040#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100041#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080042#include <linux/acpi.h>
43#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100044#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040046#include <linux/module.h>
Chris Wilson44834a62010-08-19 16:09:23 +010047#include <acpi/video.h>
Adam Jackson9e984bc12012-03-14 11:22:11 -040048#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Chris Wilson4cbf74c2011-02-25 22:26:23 +000050static void i915_write_hws_pga(struct drm_device *dev)
51{
52 drm_i915_private_t *dev_priv = dev->dev_private;
53 u32 addr;
54
55 addr = dev_priv->status_page_dmah->busaddr;
56 if (INTEL_INFO(dev)->gen >= 4)
57 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
58 I915_WRITE(HWS_PGA, addr);
59}
60
Keith Packard398c9cb2008-07-30 13:03:43 -070061/**
62 * Sets up the hardware status page for devices that need a physical address
63 * in the register.
64 */
Eric Anholt3043c602008-10-02 12:24:47 -070065static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070066{
67 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000068
Keith Packard398c9cb2008-07-30 13:03:43 -070069 /* Program Hardware Status Page */
70 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080071 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070072
73 if (!dev_priv->status_page_dmah) {
74 DRM_ERROR("Can not allocate hardware status page\n");
75 return -ENOMEM;
76 }
Keith Packard398c9cb2008-07-30 13:03:43 -070077
Keith Packardf3234702011-07-22 10:44:39 -070078 memset_io((void __force __iomem *)dev_priv->status_page_dmah->vaddr,
79 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070080
Chris Wilson4cbf74c2011-02-25 22:26:23 +000081 i915_write_hws_pga(dev);
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080082
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080083 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070084 return 0;
85}
86
87/**
88 * Frees the hardware status page, whether it's a physical address or a virtual
89 * address set up by the X Server.
90 */
Eric Anholt3043c602008-10-02 12:24:47 -070091static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070092{
93 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000094 struct intel_ring_buffer *ring = LP_RING(dev_priv);
95
Keith Packard398c9cb2008-07-30 13:03:43 -070096 if (dev_priv->status_page_dmah) {
97 drm_pci_free(dev, dev_priv->status_page_dmah);
98 dev_priv->status_page_dmah = NULL;
99 }
100
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000101 if (ring->status_page.gfx_addr) {
102 ring->status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -0700103 drm_core_ioremapfree(&dev_priv->hws_map, dev);
104 }
105
106 /* Need to rewrite hardware status page */
107 I915_WRITE(HWS_PGA, 0x1ffff000);
108}
109
Dave Airlie84b1fd12007-07-11 15:53:27 +1000110void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000113 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000114 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Jesse Barnes79e53942008-11-07 14:24:08 -0800116 /*
117 * We should never lose context on the ring with modesetting
118 * as we don't expose it to userspace
119 */
120 if (drm_core_check_feature(dev, DRIVER_MODESET))
121 return;
122
Chris Wilson8168bd42010-11-11 17:54:52 +0000123 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
124 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 ring->space = ring->head - (ring->tail + 8);
126 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800127 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Dave Airlie7c1c2872008-11-28 14:22:24 +1000129 if (!dev->primary->master)
130 return;
131
132 master_priv = dev->primary->master->driver_priv;
133 if (ring->head == ring->tail && master_priv->sarea_priv)
134 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Dave Airlie84b1fd12007-07-11 15:53:27 +1000137static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000139 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000140 int i;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* Make sure interrupts are disabled here because the uninstall ioctl
143 * may not have been called from userspace and after dev_private
144 * is freed, it's too late.
145 */
Eric Anholted4cb412008-07-29 12:10:39 -0700146 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000147 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200149 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000150 for (i = 0; i < I915_NUM_RINGS; i++)
151 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200152 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Keith Packard398c9cb2008-07-30 13:03:43 -0700154 /* Clear the HWS virtual address at teardown */
155 if (I915_NEED_GFX_HWS(dev))
156 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return 0;
159}
160
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000161static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000163 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000164 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000165 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Airlie3a03ac12009-01-11 09:03:49 +1000167 master_priv->sarea = drm_getsarea(dev);
168 if (master_priv->sarea) {
169 master_priv->sarea_priv = (drm_i915_sarea_t *)
170 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
171 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800172 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000173 }
174
Eric Anholt673a3942008-07-30 12:06:12 -0700175 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000176 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700177 i915_dma_cleanup(dev);
178 DRM_ERROR("Client tried to initialize ringbuffer in "
179 "GEM mode\n");
180 return -EINVAL;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Chris Wilsone8616b62011-01-20 09:57:11 +0000183 ret = intel_render_ring_init_dri(dev,
184 init->ring_start,
185 init->ring_size);
186 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700187 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000188 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000192 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dev_priv->back_offset = init->back_offset;
194 dev_priv->front_offset = init->front_offset;
195 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000196 if (master_priv->sarea_priv)
197 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* Allow hardware batchbuffers unless told otherwise.
200 */
201 dev_priv->allow_batchbuffer = 1;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204}
205
Dave Airlie84b1fd12007-07-11 15:53:27 +1000206static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000209 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800211 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800213 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 DRM_ERROR("can not ioremap virtual address for"
215 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000216 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800220 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000222 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800224 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800225 ring->status_page.page_addr);
226 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100227 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000228 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000229 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800230
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800231 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 return 0;
234}
235
Eric Anholtc153f452007-09-03 12:06:45 +1000236static int i915_dma_init(struct drm_device *dev, void *data,
237 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Eric Anholtc153f452007-09-03 12:06:45 +1000239 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int retcode = 0;
241
Eric Anholtc153f452007-09-03 12:06:45 +1000242 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000244 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246 case I915_CLEANUP_DMA:
247 retcode = i915_dma_cleanup(dev);
248 break;
249 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100250 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000253 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
255 }
256
257 return retcode;
258}
259
260/* Implement basically the same security restrictions as hardware does
261 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
262 *
263 * Most of the calculations below involve calculating the size of a
264 * particular instruction. It's important to get the size right as
265 * that tells us where the next instruction to check is. Any illegal
266 * instruction detected will be given a size of zero, which is a
267 * signal to abort the rest of the buffer.
268 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100269static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 switch (((cmd >> 29) & 0x7)) {
272 case 0x0:
273 switch ((cmd >> 23) & 0x3f) {
274 case 0x0:
275 return 1; /* MI_NOOP */
276 case 0x4:
277 return 1; /* MI_FLUSH */
278 default:
279 return 0; /* disallow everything else */
280 }
281 break;
282 case 0x1:
283 return 0; /* reserved */
284 case 0x2:
285 return (cmd & 0xff) + 2; /* 2d commands */
286 case 0x3:
287 if (((cmd >> 24) & 0x1f) <= 0x18)
288 return 1;
289
290 switch ((cmd >> 24) & 0x1f) {
291 case 0x1c:
292 return 1;
293 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000294 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 case 0x3:
296 return (cmd & 0x1f) + 2;
297 case 0x4:
298 return (cmd & 0xf) + 2;
299 default:
300 return (cmd & 0xffff) + 2;
301 }
302 case 0x1e:
303 if (cmd & (1 << 23))
304 return (cmd & 0xffff) + 1;
305 else
306 return 1;
307 case 0x1f:
308 if ((cmd & (1 << 23)) == 0) /* inline vertices */
309 return (cmd & 0x1ffff) + 2;
310 else if (cmd & (1 << 17)) /* indirect random */
311 if ((cmd & 0xffff) == 0)
312 return 0; /* unknown length, too hard */
313 else
314 return (((cmd & 0xffff) + 1) / 2) + 1;
315 else
316 return 2; /* indirect sequential */
317 default:
318 return 0;
319 }
320 default:
321 return 0;
322 }
323
324 return 0;
325}
326
Eric Anholt201361a2009-03-11 12:30:04 -0700327static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100330 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000332 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000333 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100336 int sz = validate_cmd(buffer[i]);
337 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000338 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100339 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100342 ret = BEGIN_LP_RING((dwords+1)&~1);
343 if (ret)
344 return ret;
345
346 for (i = 0; i < dwords; i++)
347 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100348 if (dwords & 1)
349 OUT_RING(0);
350
351 ADVANCE_LP_RING();
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354}
355
Eric Anholt673a3942008-07-30 12:06:12 -0700356int
357i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000358 struct drm_clip_rect *box,
359 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100361 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100362 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000364 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
365 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000367 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000368 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100371 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100372 ret = BEGIN_LP_RING(4);
373 if (ret)
374 return ret;
375
Alan Hourihanec29b6692006-08-12 16:29:24 +1000376 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
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);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000380 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100381 ret = BEGIN_LP_RING(6);
382 if (ret)
383 return ret;
384
Alan Hourihanec29b6692006-08-12 16:29:24 +1000385 OUT_RING(GFX_OP_DRAWRECT_INFO);
386 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000387 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
388 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000389 OUT_RING(DR4);
390 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000391 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100392 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 return 0;
395}
396
Alan Hourihanec29b6692006-08-12 16:29:24 +1000397/* XXX: Emitting the counter should really be moved to part of the IRQ
398 * emit. For now, do it in both places:
399 */
400
Dave Airlie84b1fd12007-07-11 15:53:27 +1000401static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100402{
403 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000404 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100405
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400406 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000407 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400408 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000409 if (master_priv->sarea_priv)
410 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100411
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100412 if (BEGIN_LP_RING(4) == 0) {
413 OUT_RING(MI_STORE_DWORD_INDEX);
414 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
415 OUT_RING(dev_priv->counter);
416 OUT_RING(0);
417 ADVANCE_LP_RING();
418 }
Dave Airliede227f52006-01-25 15:31:43 +1100419}
420
Dave Airlie84b1fd12007-07-11 15:53:27 +1000421static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700422 drm_i915_cmdbuffer_t *cmd,
423 struct drm_clip_rect *cliprects,
424 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 int nbox = cmd->num_cliprects;
427 int i = 0, count, ret;
428
429 if (cmd->sz & 0x3) {
430 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000431 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
434 i915_kernel_lost_context(dev);
435
436 count = nbox ? nbox : 1;
437
438 for (i = 0; i < count; i++) {
439 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000440 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 cmd->DR1, cmd->DR4);
442 if (ret)
443 return ret;
444 }
445
Eric Anholt201361a2009-03-11 12:30:04 -0700446 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (ret)
448 return ret;
449 }
450
Dave Airliede227f52006-01-25 15:31:43 +1100451 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return 0;
453}
454
Dave Airlie84b1fd12007-07-11 15:53:27 +1000455static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700456 drm_i915_batchbuffer_t * batch,
457 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100459 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100461 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if ((batch->start | batch->used) & 0x7) {
464 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000465 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
468 i915_kernel_lost_context(dev);
469
470 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 for (i = 0; i < count; i++) {
472 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000473 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100474 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (ret)
476 return ret;
477 }
478
Keith Packard0790d5e2008-07-30 12:28:47 -0700479 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100480 ret = BEGIN_LP_RING(2);
481 if (ret)
482 return ret;
483
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100484 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000485 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
486 OUT_RING(batch->start);
487 } else {
488 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
489 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100492 ret = BEGIN_LP_RING(4);
493 if (ret)
494 return ret;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 OUT_RING(MI_BATCH_BUFFER);
497 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
498 OUT_RING(batch->start + batch->used - 4);
499 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100501 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Zou Nan hai1cafd342010-06-25 13:40:24 +0800504
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100505 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100506 if (BEGIN_LP_RING(2) == 0) {
507 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
508 OUT_RING(MI_NOOP);
509 ADVANCE_LP_RING();
510 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100513 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return 0;
515}
516
Dave Airlieaf6061a2008-05-07 12:15:39 +1000517static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000520 struct drm_i915_master_private *master_priv =
521 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100522 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dave Airlie7c1c2872008-11-28 14:22:24 +1000524 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400525 return -EINVAL;
526
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800527 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800528 __func__,
529 dev_priv->current_page,
530 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dave Airlieaf6061a2008-05-07 12:15:39 +1000532 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100534 ret = BEGIN_LP_RING(10);
535 if (ret)
536 return ret;
537
Jesse Barnes585fb112008-07-29 11:54:06 -0700538 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000539 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Dave Airlieaf6061a2008-05-07 12:15:39 +1000541 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
542 OUT_RING(0);
543 if (dev_priv->current_page == 0) {
544 OUT_RING(dev_priv->back_offset);
545 dev_priv->current_page = 1;
546 } else {
547 OUT_RING(dev_priv->front_offset);
548 dev_priv->current_page = 0;
549 }
550 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000551
Dave Airlieaf6061a2008-05-07 12:15:39 +1000552 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
553 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100554
Dave Airlieaf6061a2008-05-07 12:15:39 +1000555 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000556
Dave Airlie7c1c2872008-11-28 14:22:24 +1000557 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000558
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100559 if (BEGIN_LP_RING(4) == 0) {
560 OUT_RING(MI_STORE_DWORD_INDEX);
561 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
562 OUT_RING(dev_priv->counter);
563 OUT_RING(0);
564 ADVANCE_LP_RING();
565 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000566
Dave Airlie7c1c2872008-11-28 14:22:24 +1000567 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000571static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000573 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 i915_kernel_lost_context(dev);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700576 return intel_wait_ring_idle(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Eric Anholtc153f452007-09-03 12:06:45 +1000579static int i915_flush_ioctl(struct drm_device *dev, void *data,
580 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Eric Anholt546b0972008-09-01 16:45:29 -0700582 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Eric Anholt546b0972008-09-01 16:45:29 -0700584 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
585
586 mutex_lock(&dev->struct_mutex);
587 ret = i915_quiescent(dev);
588 mutex_unlock(&dev->struct_mutex);
589
590 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Eric Anholtc153f452007-09-03 12:06:45 +1000593static int i915_batchbuffer(struct drm_device *dev, void *data,
594 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000597 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000599 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000600 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700602 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 if (!dev_priv->allow_batchbuffer) {
605 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800609 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800610 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Eric Anholt546b0972008-09-01 16:45:29 -0700612 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Eric Anholt201361a2009-03-11 12:30:04 -0700614 if (batch->num_cliprects < 0)
615 return -EINVAL;
616
617 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700618 cliprects = kcalloc(batch->num_cliprects,
619 sizeof(struct drm_clip_rect),
620 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700621 if (cliprects == NULL)
622 return -ENOMEM;
623
624 ret = copy_from_user(cliprects, batch->cliprects,
625 batch->num_cliprects *
626 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200627 if (ret != 0) {
628 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700629 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200630 }
Eric Anholt201361a2009-03-11 12:30:04 -0700631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Eric Anholt546b0972008-09-01 16:45:29 -0700633 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700634 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700635 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400637 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000638 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700639
640fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700641 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return ret;
644}
645
Eric Anholtc153f452007-09-03 12:06:45 +1000646static int i915_cmdbuffer(struct drm_device *dev, void *data,
647 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000650 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000652 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000653 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700654 struct drm_clip_rect *cliprects = NULL;
655 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int ret;
657
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800658 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800659 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Eric Anholt546b0972008-09-01 16:45:29 -0700661 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Eric Anholt201361a2009-03-11 12:30:04 -0700663 if (cmdbuf->num_cliprects < 0)
664 return -EINVAL;
665
Eric Anholt9a298b22009-03-24 12:23:04 -0700666 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700667 if (batch_data == NULL)
668 return -ENOMEM;
669
670 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200671 if (ret != 0) {
672 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700673 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200674 }
Eric Anholt201361a2009-03-11 12:30:04 -0700675
676 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700677 cliprects = kcalloc(cmdbuf->num_cliprects,
678 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000679 if (cliprects == NULL) {
680 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700681 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000682 }
Eric Anholt201361a2009-03-11 12:30:04 -0700683
684 ret = copy_from_user(cliprects, cmdbuf->cliprects,
685 cmdbuf->num_cliprects *
686 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200687 if (ret != 0) {
688 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700689 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
Eric Anholt546b0972008-09-01 16:45:29 -0700693 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700694 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700695 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (ret) {
697 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000698 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400701 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000702 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700703
Eric Anholt201361a2009-03-11 12:30:04 -0700704fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700705 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000706fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700707 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700708
709 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Eric Anholtc153f452007-09-03 12:06:45 +1000712static int i915_flip_bufs(struct drm_device *dev, void *data,
713 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Eric Anholt546b0972008-09-01 16:45:29 -0700715 int ret;
716
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800717 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Eric Anholt546b0972008-09-01 16:45:29 -0700719 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Eric Anholt546b0972008-09-01 16:45:29 -0700721 mutex_lock(&dev->struct_mutex);
722 ret = i915_dispatch_flip(dev);
723 mutex_unlock(&dev->struct_mutex);
724
725 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Eric Anholtc153f452007-09-03 12:06:45 +1000728static int i915_getparam(struct drm_device *dev, void *data,
729 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000732 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 int value;
734
735 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000736 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000737 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739
Eric Anholtc153f452007-09-03 12:06:45 +1000740 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700742 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 break;
744 case I915_PARAM_ALLOW_BATCHBUFFER:
745 value = dev_priv->allow_batchbuffer ? 1 : 0;
746 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100747 case I915_PARAM_LAST_DISPATCH:
748 value = READ_BREADCRUMB(dev_priv);
749 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400750 case I915_PARAM_CHIPSET_ID:
751 value = dev->pci_device;
752 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700753 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000754 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700755 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800756 case I915_PARAM_NUM_FENCES_AVAIL:
757 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
758 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200759 case I915_PARAM_HAS_OVERLAY:
760 value = dev_priv->overlay ? 1 : 0;
761 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800762 case I915_PARAM_HAS_PAGEFLIPPING:
763 value = 1;
764 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500765 case I915_PARAM_HAS_EXECBUF2:
766 /* depends on GEM */
767 value = dev_priv->has_gem;
768 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800769 case I915_PARAM_HAS_BSD:
770 value = HAS_BSD(dev);
771 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100772 case I915_PARAM_HAS_BLT:
773 value = HAS_BLT(dev);
774 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100775 case I915_PARAM_HAS_RELAXED_FENCING:
776 value = 1;
777 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100778 case I915_PARAM_HAS_COHERENT_RINGS:
779 value = 1;
780 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000781 case I915_PARAM_HAS_EXEC_CONSTANTS:
782 value = INTEL_INFO(dev)->gen >= 4;
783 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000784 case I915_PARAM_HAS_RELAXED_DELTA:
785 value = 1;
786 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800787 case I915_PARAM_HAS_GEN7_SOL_RESET:
788 value = 1;
789 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200790 case I915_PARAM_HAS_LLC:
791 value = HAS_LLC(dev);
792 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100793 case I915_PARAM_HAS_ALIASING_PPGTT:
794 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
795 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800797 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500798 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000799 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
Eric Anholtc153f452007-09-03 12:06:45 +1000802 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000804 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806
807 return 0;
808}
809
Eric Anholtc153f452007-09-03 12:06:45 +1000810static int i915_setparam(struct drm_device *dev, void *data,
811 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000814 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000817 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000818 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Eric Anholtc153f452007-09-03 12:06:45 +1000821 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
824 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000825 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 break;
827 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000828 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800830 case I915_SETPARAM_NUM_USED_FENCES:
831 if (param->value > dev_priv->num_fence_regs ||
832 param->value < 0)
833 return -EINVAL;
834 /* Userspace can use first N regs */
835 dev_priv->fence_reg_start = param->value;
836 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800838 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800839 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
843 return 0;
844}
845
Eric Anholtc153f452007-09-03 12:06:45 +1000846static int i915_set_status_page(struct drm_device *dev, void *data,
847 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000848{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000849 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000850 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000851 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000852
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000853 if (!I915_NEED_GFX_HWS(dev))
854 return -EINVAL;
855
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000856 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000857 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000858 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000859 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000860
Jesse Barnes79e53942008-11-07 14:24:08 -0800861 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
862 WARN(1, "tried to set status page when mode setting active\n");
863 return 0;
864 }
865
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800866 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000867
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800868 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000869
Eric Anholt8b409582007-11-22 16:40:37 +1000870 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000871 dev_priv->hws_map.size = 4*1024;
872 dev_priv->hws_map.type = 0;
873 dev_priv->hws_map.flags = 0;
874 dev_priv->hws_map.mtrr = 0;
875
Dave Airliedd0910b2009-02-25 14:49:21 +1000876 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000877 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000878 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700879 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000880 DRM_ERROR("can not ioremap virtual address for"
881 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000882 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000883 }
Chris Wilson311bd682011-01-13 19:06:50 +0000884 ring->status_page.page_addr =
885 (void __force __iomem *)dev_priv->hws_map.handle;
886 memset_io(ring->status_page.page_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800887 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000888
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800889 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700890 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800891 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700892 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000893 return 0;
894}
895
Dave Airlieec2a4c32009-08-04 11:43:41 +1000896static int i915_get_bridge_dev(struct drm_device *dev)
897{
898 struct drm_i915_private *dev_priv = dev->dev_private;
899
Akshay Joshi0206e352011-08-16 15:34:10 -0400900 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +1000901 if (!dev_priv->bridge_dev) {
902 DRM_ERROR("bridge device not found\n");
903 return -1;
904 }
905 return 0;
906}
907
Zhenyu Wangc48044112009-12-17 14:48:43 +0800908#define MCHBAR_I915 0x44
909#define MCHBAR_I965 0x48
910#define MCHBAR_SIZE (4*4096)
911
912#define DEVEN_REG 0x54
913#define DEVEN_MCHBAR_EN (1 << 28)
914
915/* Allocate space for the MCH regs if needed, return nonzero on error */
916static int
917intel_alloc_mchbar_resource(struct drm_device *dev)
918{
919 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100920 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800921 u32 temp_lo, temp_hi = 0;
922 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100923 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800924
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100925 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800926 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
927 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
928 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
929
930 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
931#ifdef CONFIG_PNP
932 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100933 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
934 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800935#endif
936
937 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100938 dev_priv->mch_res.name = "i915 MCHBAR";
939 dev_priv->mch_res.flags = IORESOURCE_MEM;
940 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
941 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800942 MCHBAR_SIZE, MCHBAR_SIZE,
943 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100944 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800945 dev_priv->bridge_dev);
946 if (ret) {
947 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
948 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100949 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800950 }
951
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100952 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800953 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
954 upper_32_bits(dev_priv->mch_res.start));
955
956 pci_write_config_dword(dev_priv->bridge_dev, reg,
957 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100958 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800959}
960
961/* Setup MCHBAR if possible, return true if we should disable it again */
962static void
963intel_setup_mchbar(struct drm_device *dev)
964{
965 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100966 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800967 u32 temp;
968 bool enabled;
969
970 dev_priv->mchbar_need_disable = false;
971
972 if (IS_I915G(dev) || IS_I915GM(dev)) {
973 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
974 enabled = !!(temp & DEVEN_MCHBAR_EN);
975 } else {
976 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
977 enabled = temp & 1;
978 }
979
980 /* If it's already enabled, don't have to do anything */
981 if (enabled)
982 return;
983
984 if (intel_alloc_mchbar_resource(dev))
985 return;
986
987 dev_priv->mchbar_need_disable = true;
988
989 /* Space is allocated or reserved, so enable it. */
990 if (IS_I915G(dev) || IS_I915GM(dev)) {
991 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
992 temp | DEVEN_MCHBAR_EN);
993 } else {
994 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
995 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
996 }
997}
998
999static void
1000intel_teardown_mchbar(struct drm_device *dev)
1001{
1002 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001003 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001004 u32 temp;
1005
1006 if (dev_priv->mchbar_need_disable) {
1007 if (IS_I915G(dev) || IS_I915GM(dev)) {
1008 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1009 temp &= ~DEVEN_MCHBAR_EN;
1010 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1011 } else {
1012 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1013 temp &= ~1;
1014 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1015 }
1016 }
1017
1018 if (dev_priv->mch_res.start)
1019 release_resource(&dev_priv->mch_res);
1020}
1021
Jesse Barnes80824002009-09-10 15:28:06 -07001022#define PTE_ADDRESS_MASK 0xfffff000
1023#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1024#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1025#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1026#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1027#define PTE_MAPPING_TYPE_MASK (3 << 1)
1028#define PTE_VALID (1 << 0)
1029
1030/**
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001031 * i915_stolen_to_phys - take an offset into stolen memory and turn it into
1032 * a physical one
Jesse Barnes80824002009-09-10 15:28:06 -07001033 * @dev: drm device
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001034 * @offset: address to translate
Jesse Barnes80824002009-09-10 15:28:06 -07001035 *
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001036 * Some chip functions require allocations from stolen space and need the
1037 * physical address of the memory in question.
Jesse Barnes80824002009-09-10 15:28:06 -07001038 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001039static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset)
Jesse Barnes80824002009-09-10 15:28:06 -07001040{
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001041 struct drm_i915_private *dev_priv = dev->dev_private;
1042 struct pci_dev *pdev = dev_priv->bridge_dev;
1043 u32 base;
Jesse Barnes80824002009-09-10 15:28:06 -07001044
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001045#if 0
1046 /* On the machines I have tested the Graphics Base of Stolen Memory
1047 * is unreliable, so compute the base by subtracting the stolen memory
1048 * from the Top of Low Usable DRAM which is where the BIOS places
1049 * the graphics stolen memory.
1050 */
1051 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1052 /* top 32bits are reserved = 0 */
1053 pci_read_config_dword(pdev, 0xA4, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001054 } else {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001055 /* XXX presume 8xx is the same as i915 */
1056 pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001057 }
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001058#else
1059 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1060 u16 val;
1061 pci_read_config_word(pdev, 0xb0, &val);
1062 base = val >> 4 << 20;
1063 } else {
1064 u8 val;
1065 pci_read_config_byte(pdev, 0x9c, &val);
1066 base = val >> 3 << 27;
Jesse Barnes80824002009-09-10 15:28:06 -07001067 }
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001068 base -= dev_priv->mm.gtt->stolen_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001069#endif
Jesse Barnes80824002009-09-10 15:28:06 -07001070
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001071 return base + offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001072}
1073
1074static void i915_warn_stolen(struct drm_device *dev)
1075{
1076 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1077 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1078}
1079
1080static void i915_setup_compression(struct drm_device *dev, int size)
1081{
1082 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001083 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001084 unsigned long cfb_base;
1085 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001086
Chris Wilson43a95392011-07-08 12:22:36 +01001087 /* Just in case the BIOS is doing something questionable. */
1088 intel_disable_fbc(dev);
1089
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001090 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
1091 if (compressed_fb)
1092 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1093 if (!compressed_fb)
1094 goto err;
Jesse Barnes80824002009-09-10 15:28:06 -07001095
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001096 cfb_base = i915_stolen_to_phys(dev, compressed_fb->start);
1097 if (!cfb_base)
1098 goto err_fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001099
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001100 if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001101 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
1102 4096, 4096, 0);
1103 if (compressed_llb)
1104 compressed_llb = drm_mm_get_block(compressed_llb,
1105 4096, 4096);
1106 if (!compressed_llb)
1107 goto err_fb;
Jesse Barnes74dff282009-09-14 15:39:40 -07001108
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001109 ll_base = i915_stolen_to_phys(dev, compressed_llb->start);
1110 if (!ll_base)
1111 goto err_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001112 }
1113
1114 dev_priv->cfb_size = size;
1115
Jesse Barnes20bf3772010-04-21 11:39:22 -07001116 dev_priv->compressed_fb = compressed_fb;
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001117 if (HAS_PCH_SPLIT(dev))
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001118 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1119 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001120 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1121 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001122 I915_WRITE(FBC_CFB_BASE, cfb_base);
1123 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001124 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001125 }
1126
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001127 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n",
1128 cfb_base, ll_base, size >> 20);
1129 return;
1130
1131err_llb:
1132 drm_mm_put_block(compressed_llb);
1133err_fb:
1134 drm_mm_put_block(compressed_fb);
1135err:
1136 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
1137 i915_warn_stolen(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001138}
1139
Jesse Barnes20bf3772010-04-21 11:39:22 -07001140static void i915_cleanup_compression(struct drm_device *dev)
1141{
1142 struct drm_i915_private *dev_priv = dev->dev_private;
1143
1144 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001145 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001146 drm_mm_put_block(dev_priv->compressed_llb);
1147}
1148
Dave Airlie28d52042009-09-21 14:33:58 +10001149/* true = enable decode, false = disable decoder */
1150static unsigned int i915_vga_set_decode(void *cookie, bool state)
1151{
1152 struct drm_device *dev = cookie;
1153
1154 intel_modeset_vga_set_state(dev, state);
1155 if (state)
1156 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1157 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1158 else
1159 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1160}
1161
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001162static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1163{
1164 struct drm_device *dev = pci_get_drvdata(pdev);
1165 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1166 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001167 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001168 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001169 /* i915 resume handler doesn't set to D0 */
1170 pci_set_power_state(dev->pdev, PCI_D0);
1171 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001172 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001173 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001174 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001175 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001176 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001177 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001178 }
1179}
1180
1181static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1182{
1183 struct drm_device *dev = pci_get_drvdata(pdev);
1184 bool can_switch;
1185
1186 spin_lock(&dev->count_lock);
1187 can_switch = (dev->open_count == 0);
1188 spin_unlock(&dev->count_lock);
1189 return can_switch;
1190}
1191
Daniel Vetter650dc072012-04-02 10:08:35 +02001192static bool
1193intel_enable_ppgtt(struct drm_device *dev)
1194{
1195 if (i915_enable_ppgtt >= 0)
1196 return i915_enable_ppgtt;
1197
1198#ifdef CONFIG_INTEL_IOMMU
1199 /* Disable ppgtt on SNB if VT-d is on. */
1200 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
1201 return false;
1202#endif
1203
1204 return true;
1205}
1206
Chris Wilson2c7111d2011-03-29 10:40:27 +01001207static int i915_load_gem_init(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08001208{
1209 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53984632010-09-22 23:44:24 +02001210 unsigned long prealloc_size, gtt_size, mappable_size;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001211 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001212
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001213 prealloc_size = dev_priv->mm.gtt->stolen_size;
Daniel Vetter53984632010-09-22 23:44:24 +02001214 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
1215 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetter53984632010-09-22 23:44:24 +02001216
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001217 /* Basic memrange allocator for stolen space */
1218 drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001219
Daniel Vetterd3ae0812012-01-26 11:41:11 +01001220 mutex_lock(&dev->struct_mutex);
Daniel Vetter650dc072012-04-02 10:08:35 +02001221 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001222 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
1223 * aperture accordingly when using aliasing ppgtt. */
1224 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001225
Daniel Vetter644ec022012-03-26 09:45:40 +02001226 i915_gem_init_global_gtt(dev, 0, mappable_size, gtt_size);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001227
1228 ret = i915_gem_init_aliasing_ppgtt(dev);
Daniel Vettere02f14c2012-04-02 23:33:03 +02001229 if (ret) {
1230 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001231 return ret;
Daniel Vettere02f14c2012-04-02 23:33:03 +02001232 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001233 } else {
1234 /* Let GEM Manage all of the aperture.
1235 *
1236 * However, leave one page at the end still bound to the scratch
1237 * page. There are a number of places where the hardware
1238 * apparently prefetches past the end of the object, and we've
1239 * seen multiple hangs with the GPU head pointer stuck in a
1240 * batchbuffer bound at the last page of the aperture. One page
1241 * should be enough to keep any prefetching inside of the
1242 * aperture.
1243 */
Daniel Vetter644ec022012-03-26 09:45:40 +02001244 i915_gem_init_global_gtt(dev, 0, mappable_size,
Daniel Vetterd1dd20a2012-03-26 09:45:42 +02001245 gtt_size);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001246 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001247
Daniel Vetterf691e2f2012-02-02 09:58:12 +01001248 ret = i915_gem_init_hw(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001249 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001250 if (ret) {
1251 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001252 return ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001253 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001254
Jesse Barnes80824002009-09-10 15:28:06 -07001255 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001256 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001257 int cfb_size;
1258
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001259 /* Leave 1M for line length buffer & misc. */
1260
1261 /* Try to get a 32M buffer... */
1262 if (prealloc_size > (36*1024*1024))
1263 cfb_size = 32*1024*1024;
Jesse Barnes80824002009-09-10 15:28:06 -07001264 else /* fall back to 7/8 of the stolen space */
1265 cfb_size = prealloc_size * 7 / 8;
1266 i915_setup_compression(dev, cfb_size);
1267 }
1268
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001269 /* Allow hardware batchbuffers unless told otherwise. */
Jesse Barnes79e53942008-11-07 14:24:08 -08001270 dev_priv->allow_batchbuffer = 1;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001271 return 0;
1272}
1273
1274static int i915_load_modeset_init(struct drm_device *dev)
1275{
1276 struct drm_i915_private *dev_priv = dev->dev_private;
1277 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001278
Bryan Freed6d139a82010-10-14 09:14:51 +01001279 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001280 if (ret)
1281 DRM_INFO("failed to find VBIOS tables\n");
1282
Chris Wilson934f9922011-01-20 13:09:12 +00001283 /* If we have > 1 VGA cards, then we need to arbitrate access
1284 * to the common VGA resources.
1285 *
1286 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1287 * then we do not take part in VGA arbitration and the
1288 * vga_client_register() fails with -ENODEV.
1289 */
Dave Airlie28d52042009-09-21 14:33:58 +10001290 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001291 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001292 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001293
Jesse Barnes723bfd72010-10-07 16:01:13 -07001294 intel_register_dsm_handler();
1295
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001296 ret = vga_switcheroo_register_client(dev->pdev,
1297 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001298 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001299 i915_switcheroo_can_switch);
1300 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001301 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001302
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001303 /* IIR "flip pending" bit means done if this bit is set */
1304 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1305 dev_priv->flip_pending_is_done = true;
1306
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001307 intel_modeset_init(dev);
1308
Chris Wilson2c7111d2011-03-29 10:40:27 +01001309 ret = i915_load_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001310 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001311 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001312
Chris Wilson2c7111d2011-03-29 10:40:27 +01001313 intel_modeset_gem_init(dev);
1314
1315 ret = drm_irq_install(dev);
1316 if (ret)
1317 goto cleanup_gem;
1318
Jesse Barnes79e53942008-11-07 14:24:08 -08001319 /* Always safe in the mode setting case. */
1320 /* FIXME: do pre/post-mode set stuff in core KMS code */
1321 dev->vblank_disable_allowed = 1;
1322
Chris Wilson5a793952010-06-06 10:50:03 +01001323 ret = intel_fbdev_init(dev);
1324 if (ret)
1325 goto cleanup_irq;
1326
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001327 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001328
1329 /* We're off and running w/KMS */
1330 dev_priv->mm.suspended = 0;
1331
Jesse Barnes79e53942008-11-07 14:24:08 -08001332 return 0;
1333
Chris Wilson5a793952010-06-06 10:50:03 +01001334cleanup_irq:
1335 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001336cleanup_gem:
1337 mutex_lock(&dev->struct_mutex);
1338 i915_gem_cleanup_ringbuffer(dev);
1339 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001340 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001341cleanup_vga_switcheroo:
1342 vga_switcheroo_unregister_client(dev->pdev);
1343cleanup_vga_client:
1344 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001345out:
1346 return ret;
1347}
1348
Dave Airlie7c1c2872008-11-28 14:22:24 +10001349int i915_master_create(struct drm_device *dev, struct drm_master *master)
1350{
1351 struct drm_i915_master_private *master_priv;
1352
Eric Anholt9a298b22009-03-24 12:23:04 -07001353 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001354 if (!master_priv)
1355 return -ENOMEM;
1356
1357 master->driver_priv = master_priv;
1358 return 0;
1359}
1360
1361void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1362{
1363 struct drm_i915_master_private *master_priv = master->driver_priv;
1364
1365 if (!master_priv)
1366 return;
1367
Eric Anholt9a298b22009-03-24 12:23:04 -07001368 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001369
1370 master->driver_priv = NULL;
1371}
1372
Jesse Barnes7648fa92010-05-20 14:28:11 -07001373static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001374{
1375 drm_i915_private_t *dev_priv = dev->dev_private;
1376 u32 tmp;
1377
Shaohua Li7662c8b2009-06-26 11:23:55 +08001378 tmp = I915_READ(CLKCFG);
1379
1380 switch (tmp & CLKCFG_FSB_MASK) {
1381 case CLKCFG_FSB_533:
1382 dev_priv->fsb_freq = 533; /* 133*4 */
1383 break;
1384 case CLKCFG_FSB_800:
1385 dev_priv->fsb_freq = 800; /* 200*4 */
1386 break;
1387 case CLKCFG_FSB_667:
1388 dev_priv->fsb_freq = 667; /* 167*4 */
1389 break;
1390 case CLKCFG_FSB_400:
1391 dev_priv->fsb_freq = 400; /* 100*4 */
1392 break;
1393 }
1394
1395 switch (tmp & CLKCFG_MEM_MASK) {
1396 case CLKCFG_MEM_533:
1397 dev_priv->mem_freq = 533;
1398 break;
1399 case CLKCFG_MEM_667:
1400 dev_priv->mem_freq = 667;
1401 break;
1402 case CLKCFG_MEM_800:
1403 dev_priv->mem_freq = 800;
1404 break;
1405 }
Li Peng95534262010-05-18 18:58:44 +08001406
1407 /* detect pineview DDR3 setting */
1408 tmp = I915_READ(CSHRDDR3CTL);
1409 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001410}
1411
Jesse Barnes7648fa92010-05-20 14:28:11 -07001412static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1413{
1414 drm_i915_private_t *dev_priv = dev->dev_private;
1415 u16 ddrpll, csipll;
1416
1417 ddrpll = I915_READ16(DDRMPLL1);
1418 csipll = I915_READ16(CSIPLL0);
1419
1420 switch (ddrpll & 0xff) {
1421 case 0xc:
1422 dev_priv->mem_freq = 800;
1423 break;
1424 case 0x10:
1425 dev_priv->mem_freq = 1066;
1426 break;
1427 case 0x14:
1428 dev_priv->mem_freq = 1333;
1429 break;
1430 case 0x18:
1431 dev_priv->mem_freq = 1600;
1432 break;
1433 default:
1434 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1435 ddrpll & 0xff);
1436 dev_priv->mem_freq = 0;
1437 break;
1438 }
1439
1440 dev_priv->r_t = dev_priv->mem_freq;
1441
1442 switch (csipll & 0x3ff) {
1443 case 0x00c:
1444 dev_priv->fsb_freq = 3200;
1445 break;
1446 case 0x00e:
1447 dev_priv->fsb_freq = 3733;
1448 break;
1449 case 0x010:
1450 dev_priv->fsb_freq = 4266;
1451 break;
1452 case 0x012:
1453 dev_priv->fsb_freq = 4800;
1454 break;
1455 case 0x014:
1456 dev_priv->fsb_freq = 5333;
1457 break;
1458 case 0x016:
1459 dev_priv->fsb_freq = 5866;
1460 break;
1461 case 0x018:
1462 dev_priv->fsb_freq = 6400;
1463 break;
1464 default:
1465 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1466 csipll & 0x3ff);
1467 dev_priv->fsb_freq = 0;
1468 break;
1469 }
1470
1471 if (dev_priv->fsb_freq == 3200) {
1472 dev_priv->c_m = 0;
1473 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1474 dev_priv->c_m = 1;
1475 } else {
1476 dev_priv->c_m = 2;
1477 }
1478}
1479
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001480static const struct cparams {
1481 u16 i;
1482 u16 t;
1483 u16 m;
1484 u16 c;
1485} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001486 { 1, 1333, 301, 28664 },
1487 { 1, 1066, 294, 24460 },
1488 { 1, 800, 294, 25192 },
1489 { 0, 1333, 276, 27605 },
1490 { 0, 1066, 276, 27605 },
1491 { 0, 800, 231, 23784 },
1492};
1493
1494unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1495{
1496 u64 total_count, diff, ret;
1497 u32 count1, count2, count3, m = 0, c = 0;
1498 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1499 int i;
1500
1501 diff1 = now - dev_priv->last_time1;
1502
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001503 /* Prevent division-by-zero if we are asking too fast.
1504 * Also, we don't get interesting results if we are polling
1505 * faster than once in 10ms, so just return the saved value
1506 * in such cases.
1507 */
1508 if (diff1 <= 10)
1509 return dev_priv->chipset_power;
1510
Jesse Barnes7648fa92010-05-20 14:28:11 -07001511 count1 = I915_READ(DMIEC);
1512 count2 = I915_READ(DDREC);
1513 count3 = I915_READ(CSIEC);
1514
1515 total_count = count1 + count2 + count3;
1516
1517 /* FIXME: handle per-counter overflow */
1518 if (total_count < dev_priv->last_count1) {
1519 diff = ~0UL - dev_priv->last_count1;
1520 diff += total_count;
1521 } else {
1522 diff = total_count - dev_priv->last_count1;
1523 }
1524
1525 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1526 if (cparams[i].i == dev_priv->c_m &&
1527 cparams[i].t == dev_priv->r_t) {
1528 m = cparams[i].m;
1529 c = cparams[i].c;
1530 break;
1531 }
1532 }
1533
Jesse Barnesd270ae32010-09-27 10:35:44 -07001534 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001535 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001536 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001537
1538 dev_priv->last_count1 = total_count;
1539 dev_priv->last_time1 = now;
1540
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001541 dev_priv->chipset_power = ret;
1542
Jesse Barnes7648fa92010-05-20 14:28:11 -07001543 return ret;
1544}
1545
1546unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1547{
1548 unsigned long m, x, b;
1549 u32 tsfs;
1550
1551 tsfs = I915_READ(TSFS);
1552
1553 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1554 x = I915_READ8(TR1);
1555
1556 b = tsfs & TSFS_INTR_MASK;
1557
1558 return ((m * x) / 127) - b;
1559}
1560
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001561static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001562{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001563 static const struct v_table {
1564 u16 vd; /* in .1 mil */
1565 u16 vm; /* in .1 mil */
1566 } v_table[] = {
1567 { 0, 0, },
1568 { 375, 0, },
1569 { 500, 0, },
1570 { 625, 0, },
1571 { 750, 0, },
1572 { 875, 0, },
1573 { 1000, 0, },
1574 { 1125, 0, },
1575 { 4125, 3000, },
1576 { 4125, 3000, },
1577 { 4125, 3000, },
1578 { 4125, 3000, },
1579 { 4125, 3000, },
1580 { 4125, 3000, },
1581 { 4125, 3000, },
1582 { 4125, 3000, },
1583 { 4125, 3000, },
1584 { 4125, 3000, },
1585 { 4125, 3000, },
1586 { 4125, 3000, },
1587 { 4125, 3000, },
1588 { 4125, 3000, },
1589 { 4125, 3000, },
1590 { 4125, 3000, },
1591 { 4125, 3000, },
1592 { 4125, 3000, },
1593 { 4125, 3000, },
1594 { 4125, 3000, },
1595 { 4125, 3000, },
1596 { 4125, 3000, },
1597 { 4125, 3000, },
1598 { 4125, 3000, },
1599 { 4250, 3125, },
1600 { 4375, 3250, },
1601 { 4500, 3375, },
1602 { 4625, 3500, },
1603 { 4750, 3625, },
1604 { 4875, 3750, },
1605 { 5000, 3875, },
1606 { 5125, 4000, },
1607 { 5250, 4125, },
1608 { 5375, 4250, },
1609 { 5500, 4375, },
1610 { 5625, 4500, },
1611 { 5750, 4625, },
1612 { 5875, 4750, },
1613 { 6000, 4875, },
1614 { 6125, 5000, },
1615 { 6250, 5125, },
1616 { 6375, 5250, },
1617 { 6500, 5375, },
1618 { 6625, 5500, },
1619 { 6750, 5625, },
1620 { 6875, 5750, },
1621 { 7000, 5875, },
1622 { 7125, 6000, },
1623 { 7250, 6125, },
1624 { 7375, 6250, },
1625 { 7500, 6375, },
1626 { 7625, 6500, },
1627 { 7750, 6625, },
1628 { 7875, 6750, },
1629 { 8000, 6875, },
1630 { 8125, 7000, },
1631 { 8250, 7125, },
1632 { 8375, 7250, },
1633 { 8500, 7375, },
1634 { 8625, 7500, },
1635 { 8750, 7625, },
1636 { 8875, 7750, },
1637 { 9000, 7875, },
1638 { 9125, 8000, },
1639 { 9250, 8125, },
1640 { 9375, 8250, },
1641 { 9500, 8375, },
1642 { 9625, 8500, },
1643 { 9750, 8625, },
1644 { 9875, 8750, },
1645 { 10000, 8875, },
1646 { 10125, 9000, },
1647 { 10250, 9125, },
1648 { 10375, 9250, },
1649 { 10500, 9375, },
1650 { 10625, 9500, },
1651 { 10750, 9625, },
1652 { 10875, 9750, },
1653 { 11000, 9875, },
1654 { 11125, 10000, },
1655 { 11250, 10125, },
1656 { 11375, 10250, },
1657 { 11500, 10375, },
1658 { 11625, 10500, },
1659 { 11750, 10625, },
1660 { 11875, 10750, },
1661 { 12000, 10875, },
1662 { 12125, 11000, },
1663 { 12250, 11125, },
1664 { 12375, 11250, },
1665 { 12500, 11375, },
1666 { 12625, 11500, },
1667 { 12750, 11625, },
1668 { 12875, 11750, },
1669 { 13000, 11875, },
1670 { 13125, 12000, },
1671 { 13250, 12125, },
1672 { 13375, 12250, },
1673 { 13500, 12375, },
1674 { 13625, 12500, },
1675 { 13750, 12625, },
1676 { 13875, 12750, },
1677 { 14000, 12875, },
1678 { 14125, 13000, },
1679 { 14250, 13125, },
1680 { 14375, 13250, },
1681 { 14500, 13375, },
1682 { 14625, 13500, },
1683 { 14750, 13625, },
1684 { 14875, 13750, },
1685 { 15000, 13875, },
1686 { 15125, 14000, },
1687 { 15250, 14125, },
1688 { 15375, 14250, },
1689 { 15500, 14375, },
1690 { 15625, 14500, },
1691 { 15750, 14625, },
1692 { 15875, 14750, },
1693 { 16000, 14875, },
1694 { 16125, 15000, },
1695 };
1696 if (dev_priv->info->is_mobile)
1697 return v_table[pxvid].vm;
1698 else
1699 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001700}
1701
1702void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1703{
1704 struct timespec now, diff1;
1705 u64 diff;
1706 unsigned long diffms;
1707 u32 count;
1708
1709 getrawmonotonic(&now);
1710 diff1 = timespec_sub(now, dev_priv->last_time2);
1711
1712 /* Don't divide by 0 */
1713 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1714 if (!diffms)
1715 return;
1716
1717 count = I915_READ(GFXEC);
1718
1719 if (count < dev_priv->last_count2) {
1720 diff = ~0UL - dev_priv->last_count2;
1721 diff += count;
1722 } else {
1723 diff = count - dev_priv->last_count2;
1724 }
1725
1726 dev_priv->last_count2 = count;
1727 dev_priv->last_time2 = now;
1728
1729 /* More magic constants... */
1730 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001731 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001732 dev_priv->gfx_power = diff;
1733}
1734
1735unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1736{
1737 unsigned long t, corr, state1, corr2, state2;
1738 u32 pxvid, ext_v;
1739
1740 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1741 pxvid = (pxvid >> 24) & 0x7f;
1742 ext_v = pvid_to_extvid(dev_priv, pxvid);
1743
1744 state1 = ext_v;
1745
1746 t = i915_mch_val(dev_priv);
1747
1748 /* Revel in the empirically derived constants */
1749
1750 /* Correction factor in 1/100000 units */
1751 if (t > 80)
1752 corr = ((t * 2349) + 135940);
1753 else if (t >= 50)
1754 corr = ((t * 964) + 29317);
1755 else /* < 50 */
1756 corr = ((t * 301) + 1004);
1757
1758 corr = corr * ((150142 * state1) / 10000 - 78642);
1759 corr /= 100000;
1760 corr2 = (corr * dev_priv->corr);
1761
1762 state2 = (corr2 * state1) / 10000;
1763 state2 /= 100; /* convert to mW */
1764
1765 i915_update_gfx_val(dev_priv);
1766
1767 return dev_priv->gfx_power + state2;
1768}
1769
1770/* Global for IPS driver to get at the current i915 device */
1771static struct drm_i915_private *i915_mch_dev;
1772/*
1773 * Lock protecting IPS related data structures
1774 * - i915_mch_dev
1775 * - dev_priv->max_delay
1776 * - dev_priv->min_delay
1777 * - dev_priv->fmax
1778 * - dev_priv->gpu_busy
1779 */
Chris Wilson995b6762010-08-20 13:23:26 +01001780static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001781
1782/**
1783 * i915_read_mch_val - return value for IPS use
1784 *
1785 * Calculate and return a value for the IPS driver to use when deciding whether
1786 * we have thermal and power headroom to increase CPU or GPU power budget.
1787 */
1788unsigned long i915_read_mch_val(void)
1789{
Akshay Joshi0206e352011-08-16 15:34:10 -04001790 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001791 unsigned long chipset_val, graphics_val, ret = 0;
1792
Akshay Joshi0206e352011-08-16 15:34:10 -04001793 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001794 if (!i915_mch_dev)
1795 goto out_unlock;
1796 dev_priv = i915_mch_dev;
1797
1798 chipset_val = i915_chipset_val(dev_priv);
1799 graphics_val = i915_gfx_val(dev_priv);
1800
1801 ret = chipset_val + graphics_val;
1802
1803out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001804 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001805
Akshay Joshi0206e352011-08-16 15:34:10 -04001806 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001807}
1808EXPORT_SYMBOL_GPL(i915_read_mch_val);
1809
1810/**
1811 * i915_gpu_raise - raise GPU frequency limit
1812 *
1813 * Raise the limit; IPS indicates we have thermal headroom.
1814 */
1815bool i915_gpu_raise(void)
1816{
Akshay Joshi0206e352011-08-16 15:34:10 -04001817 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001818 bool ret = true;
1819
Akshay Joshi0206e352011-08-16 15:34:10 -04001820 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001821 if (!i915_mch_dev) {
1822 ret = false;
1823 goto out_unlock;
1824 }
1825 dev_priv = i915_mch_dev;
1826
1827 if (dev_priv->max_delay > dev_priv->fmax)
1828 dev_priv->max_delay--;
1829
1830out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001831 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001832
Akshay Joshi0206e352011-08-16 15:34:10 -04001833 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001834}
1835EXPORT_SYMBOL_GPL(i915_gpu_raise);
1836
1837/**
1838 * i915_gpu_lower - lower GPU frequency limit
1839 *
1840 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1841 * frequency maximum.
1842 */
1843bool i915_gpu_lower(void)
1844{
Akshay Joshi0206e352011-08-16 15:34:10 -04001845 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001846 bool ret = true;
1847
Akshay Joshi0206e352011-08-16 15:34:10 -04001848 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001849 if (!i915_mch_dev) {
1850 ret = false;
1851 goto out_unlock;
1852 }
1853 dev_priv = i915_mch_dev;
1854
1855 if (dev_priv->max_delay < dev_priv->min_delay)
1856 dev_priv->max_delay++;
1857
1858out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001859 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001860
Akshay Joshi0206e352011-08-16 15:34:10 -04001861 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001862}
1863EXPORT_SYMBOL_GPL(i915_gpu_lower);
1864
1865/**
1866 * i915_gpu_busy - indicate GPU business to IPS
1867 *
1868 * Tell the IPS driver whether or not the GPU is busy.
1869 */
1870bool i915_gpu_busy(void)
1871{
Akshay Joshi0206e352011-08-16 15:34:10 -04001872 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001873 bool ret = false;
1874
Akshay Joshi0206e352011-08-16 15:34:10 -04001875 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001876 if (!i915_mch_dev)
1877 goto out_unlock;
1878 dev_priv = i915_mch_dev;
1879
1880 ret = dev_priv->busy;
1881
1882out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001883 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001884
Akshay Joshi0206e352011-08-16 15:34:10 -04001885 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001886}
1887EXPORT_SYMBOL_GPL(i915_gpu_busy);
1888
1889/**
1890 * i915_gpu_turbo_disable - disable graphics turbo
1891 *
1892 * Disable graphics turbo by resetting the max frequency and setting the
1893 * current frequency to the default.
1894 */
1895bool i915_gpu_turbo_disable(void)
1896{
Akshay Joshi0206e352011-08-16 15:34:10 -04001897 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001898 bool ret = true;
1899
Akshay Joshi0206e352011-08-16 15:34:10 -04001900 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001901 if (!i915_mch_dev) {
1902 ret = false;
1903 goto out_unlock;
1904 }
1905 dev_priv = i915_mch_dev;
1906
1907 dev_priv->max_delay = dev_priv->fstart;
1908
1909 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1910 ret = false;
1911
1912out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001913 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001914
Akshay Joshi0206e352011-08-16 15:34:10 -04001915 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001916}
1917EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1918
Jesse Barnes79e53942008-11-07 14:24:08 -08001919/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001920 * Tells the intel_ips driver that the i915 driver is now loaded, if
1921 * IPS got loaded first.
1922 *
1923 * This awkward dance is so that neither module has to depend on the
1924 * other in order for IPS to do the appropriate communication of
1925 * GPU turbo limits to i915.
1926 */
1927static void
1928ips_ping_for_i915_load(void)
1929{
1930 void (*link)(void);
1931
1932 link = symbol_get(ips_link_to_i915_driver);
1933 if (link) {
1934 link();
1935 symbol_put(ips_link_to_i915_driver);
1936 }
1937}
1938
Adam Jacksone2b665c2012-03-14 11:22:10 -04001939static void
1940i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1941 unsigned long size)
1942{
Chris Wilson23f54be2012-03-23 17:38:49 +00001943 dev_priv->mm.gtt_mtrr = -1;
1944
Adam Jackson9e984bc12012-03-14 11:22:11 -04001945#if defined(CONFIG_X86_PAT)
1946 if (cpu_has_pat)
1947 return;
1948#endif
1949
Adam Jacksone2b665c2012-03-14 11:22:10 -04001950 /* Set up a WC MTRR for non-PAT systems. This is more common than
1951 * one would think, because the kernel disables PAT on first
1952 * generation Core chips because WC PAT gets overridden by a UC
1953 * MTRR if present. Even if a UC MTRR isn't present.
1954 */
1955 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1956 if (dev_priv->mm.gtt_mtrr < 0) {
1957 DRM_INFO("MTRR allocation failed. Graphics "
1958 "performance may suffer.\n");
1959 }
1960}
1961
Eric Anholt63ee41d2010-12-20 18:40:06 -08001962/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001963 * i915_driver_load - setup chip and create an initial config
1964 * @dev: DRM device
1965 * @flags: startup flags
1966 *
1967 * The driver load routine has to do several things:
1968 * - drive output discovery via intel_modeset_init()
1969 * - initialize the memory manager
1970 * - allocate initial config memory
1971 * - setup the DRM framebuffer with the allocated memory
1972 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001973int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001974{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001975 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001976 struct intel_device_info *info;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001977 int ret = 0, mmio_bar;
Daniel Vetter9021f282012-03-26 09:45:41 +02001978 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001979
Daniel Vetter26394d92012-03-26 21:33:18 +02001980 info = (struct intel_device_info *) flags;
1981
1982 /* Refuse to load on gen6+ without kms enabled. */
1983 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1984 return -ENODEV;
1985
Daniel Vetterac622a92010-09-08 21:26:07 +02001986
Dave Airlie22eae942005-11-10 22:16:34 +11001987 /* i915 has 4 more counters */
1988 dev->counters += 4;
1989 dev->types[6] = _DRM_STAT_IRQ;
1990 dev->types[7] = _DRM_STAT_PRIMARY;
1991 dev->types[8] = _DRM_STAT_SECONDARY;
1992 dev->types[9] = _DRM_STAT_DMA;
1993
Eric Anholt9a298b22009-03-24 12:23:04 -07001994 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001995 if (dev_priv == NULL)
1996 return -ENOMEM;
1997
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001998 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001999 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02002000 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002001
Dave Airlieec2a4c32009-08-04 11:43:41 +10002002 if (i915_get_bridge_dev(dev)) {
2003 ret = -EIO;
2004 goto free_priv;
2005 }
2006
Dave Airlie466e69b2011-12-19 11:15:29 +00002007 pci_set_master(dev->pdev);
2008
Daniel Vetter9f82d232010-08-30 21:25:23 +02002009 /* overlay on gen2 is broken and can't address above 1G */
2010 if (IS_GEN2(dev))
2011 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
2012
Jan Niehusmann6927faf2011-03-01 23:24:16 +01002013 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
2014 * using 32bit addressing, overwriting memory if HWS is located
2015 * above 4GB.
2016 *
2017 * The documentation also mentions an issue with undefined
2018 * behaviour if any general state is accessed within a page above 4GB,
2019 * which also needs to be handled carefully.
2020 */
2021 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2022 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
2023
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01002024 mmio_bar = IS_GEN2(dev) ? 1 : 0;
2025 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
2026 if (!dev_priv->regs) {
2027 DRM_ERROR("failed to map registers\n");
2028 ret = -EIO;
2029 goto put_bridge;
2030 }
2031
Chris Wilson71e93392010-10-27 18:46:52 +01002032 dev_priv->mm.gtt = intel_gtt_get();
2033 if (!dev_priv->mm.gtt) {
2034 DRM_ERROR("Failed to initialize GTT\n");
2035 ret = -ENODEV;
Keith Packarda7b85d22011-07-10 13:12:17 -07002036 goto out_rmmap;
Chris Wilson71e93392010-10-27 18:46:52 +01002037 }
2038
Daniel Vetter9021f282012-03-26 09:45:41 +02002039 aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Chris Wilson71e93392010-10-27 18:46:52 +01002040
Akshay Joshi0206e352011-08-16 15:34:10 -04002041 dev_priv->mm.gtt_mapping =
Daniel Vetter9021f282012-03-26 09:45:41 +02002042 io_mapping_create_wc(dev->agp->base, aperture_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002043 if (dev_priv->mm.gtt_mapping == NULL) {
2044 ret = -EIO;
2045 goto out_rmmap;
2046 }
2047
Daniel Vetter9021f282012-03-26 09:45:41 +02002048 i915_mtrr_setup(dev_priv, dev->agp->base, aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08002049
Chris Wilsone642abb2010-09-09 12:46:34 +01002050 /* The i915 workqueue is primarily used for batched retirement of
2051 * requests (and thus managing bo) once the task has been completed
2052 * by the GPU. i915_gem_retire_requests() is called directly when we
2053 * need high-priority retirement, such as waiting for an explicit
2054 * bo.
2055 *
2056 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08002057 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01002058 *
2059 * All tasks on the workqueue are expected to acquire the dev mutex
2060 * so there is no point in running more than one instance of the
2061 * workqueue at any time: max_active = 1 and NON_REENTRANT.
2062 */
2063 dev_priv->wq = alloc_workqueue("i915",
2064 WQ_UNBOUND | WQ_NON_REENTRANT,
2065 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002066 if (dev_priv->wq == NULL) {
2067 DRM_ERROR("Failed to create our workqueue.\n");
2068 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07002069 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002070 }
2071
Dave Airlieac5c4e72008-12-19 15:38:34 +10002072 /* enable GEM by default */
2073 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10002074
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002075 intel_irq_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002076
Zhenyu Wangc48044112009-12-17 14:48:43 +08002077 /* Try to make sure MCHBAR is enabled before poking at it */
2078 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07002079 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01002080 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002081
Bryan Freed6d139a82010-10-14 09:14:51 +01002082 /* Make sure the bios did its job and set up vital registers */
2083 intel_setup_bios(dev);
2084
Eric Anholt673a3942008-07-30 12:06:12 -07002085 i915_gem_load(dev);
2086
Keith Packard398c9cb2008-07-30 13:03:43 -07002087 /* Init HWS */
2088 if (!I915_NEED_GFX_HWS(dev)) {
2089 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002090 if (ret)
2091 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07002092 }
Eric Anholted4cb412008-07-29 12:10:39 -07002093
Jesse Barnes7648fa92010-05-20 14:28:11 -07002094 if (IS_PINEVIEW(dev))
2095 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01002096 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07002097 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002098
Eric Anholted4cb412008-07-29 12:10:39 -07002099 /* On the 945G/GM, the chipset reports the MSI capability on the
2100 * integrated graphics even though the support isn't actually there
2101 * according to the published specs. It doesn't appear to function
2102 * correctly in testing on 945G.
2103 * This may be a side effect of MSI having been made available for PEG
2104 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002105 *
2106 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002107 * be lost or delayed, but we use them anyways to avoid
2108 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002109 */
Keith Packardb60678a2008-12-08 11:12:28 -08002110 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002111 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002112
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01002113 spin_lock_init(&dev_priv->gt_lock);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002114 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002115 spin_lock_init(&dev_priv->error_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07002116 spin_lock_init(&dev_priv->rps_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07002117
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03002118 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07002119 dev_priv->num_pipe = 3;
2120 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002121 dev_priv->num_pipe = 2;
2122 else
2123 dev_priv->num_pipe = 1;
2124
2125 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002126 if (ret)
2127 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08002128
Ben Gamari11ed50e2009-09-14 17:48:45 -04002129 /* Start out suspended */
2130 dev_priv->mm.suspended = 1;
2131
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002132 intel_detect_pch(dev);
2133
Jesse Barnes79e53942008-11-07 14:24:08 -08002134 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02002135 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002136 if (ret < 0) {
2137 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00002138 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08002139 }
2140 }
2141
Ben Widawsky0136db582012-04-10 21:17:01 -07002142 i915_setup_sysfs(dev);
2143
Matthew Garrett74a365b2009-03-19 21:35:39 +00002144 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002145 intel_opregion_init(dev);
2146 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002147
Ben Gamarif65d9422009-09-14 17:48:44 -04002148 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2149 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002150
2151 spin_lock(&mchdev_lock);
2152 i915_mch_dev = dev_priv;
2153 dev_priv->mchdev_lock = &mchdev_lock;
2154 spin_unlock(&mchdev_lock);
2155
Eric Anholt63ee41d2010-12-20 18:40:06 -08002156 ips_ping_for_i915_load();
2157
Jesse Barnes79e53942008-11-07 14:24:08 -08002158 return 0;
2159
Chris Wilson56e2ea32010-11-08 17:10:29 +00002160out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07002161 if (dev_priv->mm.inactive_shrinker.shrink)
2162 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2163
Chris Wilson56e2ea32010-11-08 17:10:29 +00002164 if (dev->pdev->msi_enabled)
2165 pci_disable_msi(dev->pdev);
2166
2167 intel_teardown_gmbus(dev);
2168 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002169 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07002170out_mtrrfree:
2171 if (dev_priv->mm.gtt_mtrr >= 0) {
2172 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2173 dev->agp->agp_info.aper_size * 1024 * 1024);
2174 dev_priv->mm.gtt_mtrr = -1;
2175 }
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002176 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002177out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01002178 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002179put_bridge:
2180 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002181free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002182 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002183 return ret;
2184}
2185
2186int i915_driver_unload(struct drm_device *dev)
2187{
2188 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002189 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002190
Jesse Barnes7648fa92010-05-20 14:28:11 -07002191 spin_lock(&mchdev_lock);
2192 i915_mch_dev = NULL;
2193 spin_unlock(&mchdev_lock);
2194
Ben Widawsky0136db582012-04-10 21:17:01 -07002195 i915_teardown_sysfs(dev);
2196
Chris Wilson17250b72010-10-28 12:51:39 +01002197 if (dev_priv->mm.inactive_shrinker.shrink)
2198 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2199
Daniel Vetterc911fc12010-08-20 21:23:20 +02002200 mutex_lock(&dev->struct_mutex);
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002201 ret = i915_gpu_idle(dev, true);
Daniel Vetterc911fc12010-08-20 21:23:20 +02002202 if (ret)
2203 DRM_ERROR("failed to idle hardware: %d\n", ret);
2204 mutex_unlock(&dev->struct_mutex);
2205
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002206 /* Cancel the retire work handler, which should be idle now. */
2207 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2208
Eric Anholtab657db12009-01-23 12:57:47 -08002209 io_mapping_free(dev_priv->mm.gtt_mapping);
2210 if (dev_priv->mm.gtt_mtrr >= 0) {
2211 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2212 dev->agp->agp_info.aper_size * 1024 * 1024);
2213 dev_priv->mm.gtt_mtrr = -1;
2214 }
2215
Chris Wilson44834a62010-08-19 16:09:23 +01002216 acpi_video_unregister();
2217
Jesse Barnes79e53942008-11-07 14:24:08 -08002218 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002219 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002220 intel_modeset_cleanup(dev);
2221
Zhao Yakui6363ee62009-11-24 09:48:44 +08002222 /*
2223 * free the memory space allocated for the child device
2224 * config parsed from VBT
2225 */
2226 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2227 kfree(dev_priv->child_dev);
2228 dev_priv->child_dev = NULL;
2229 dev_priv->child_dev_num = 0;
2230 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002231
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002232 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002233 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002234 }
2235
Daniel Vettera8b48992010-08-20 21:25:11 +02002236 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002237 del_timer_sync(&dev_priv->hangcheck_timer);
2238 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002239 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002240
Eric Anholted4cb412008-07-29 12:10:39 -07002241 if (dev->pdev->msi_enabled)
2242 pci_disable_msi(dev->pdev);
2243
Chris Wilson44834a62010-08-19 16:09:23 +01002244 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002245
Jesse Barnes79e53942008-11-07 14:24:08 -08002246 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002247 /* Flush any outstanding unpin_work. */
2248 flush_workqueue(dev_priv->wq);
2249
Jesse Barnes79e53942008-11-07 14:24:08 -08002250 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07002251 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002252 i915_gem_cleanup_ringbuffer(dev);
2253 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002254 i915_gem_cleanup_aliasing_ppgtt(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002255 if (I915_HAS_FBC(dev) && i915_powersave)
2256 i915_cleanup_compression(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002257 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002258
2259 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002260
2261 if (!I915_NEED_GFX_HWS(dev))
2262 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002263 }
2264
Daniel Vetter701394c2010-10-10 18:54:08 +01002265 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002266 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002267
Chris Wilsonf899fc62010-07-20 15:44:45 -07002268 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002269 intel_teardown_mchbar(dev);
2270
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002271 destroy_workqueue(dev_priv->wq);
2272
Dave Airlieec2a4c32009-08-04 11:43:41 +10002273 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002274 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002275
Dave Airlie22eae942005-11-10 22:16:34 +11002276 return 0;
2277}
2278
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002279int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002280{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002281 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002282
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002283 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002284 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2285 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002286 return -ENOMEM;
2287
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002288 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002289
Chris Wilson1c255952010-09-26 11:03:27 +01002290 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002291 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002292
2293 return 0;
2294}
2295
Jesse Barnes79e53942008-11-07 14:24:08 -08002296/**
2297 * i915_driver_lastclose - clean up after all DRM clients have exited
2298 * @dev: DRM device
2299 *
2300 * Take care of cleaning up after all DRM clients have exited. In the
2301 * mode setting case, we want to restore the kernel's initial mode (just
2302 * in case the last client left us in a bad state).
2303 *
Daniel Vetter9021f282012-03-26 09:45:41 +02002304 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08002305 * and DMA structures, since the kernel won't be using them, and clea
2306 * up any GEM state.
2307 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002308void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002310 drm_i915_private_t *dev_priv = dev->dev_private;
2311
Jesse Barnes79e53942008-11-07 14:24:08 -08002312 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01002313 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002314 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002315 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002316 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002317
Eric Anholt673a3942008-07-30 12:06:12 -07002318 i915_gem_lastclose(dev);
2319
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002320 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
Eric Anholt6c340ea2007-08-25 20:23:09 +10002323void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Eric Anholtb9624422009-06-03 07:27:35 +00002325 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326}
2327
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002328void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002329{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002330 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002331
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002332 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002333}
2334
Eric Anholtc153f452007-09-03 12:06:45 +10002335struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002336 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2337 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2338 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2339 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2340 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2341 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2342 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2343 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002344 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2345 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2346 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002347 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002348 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002349 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2350 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2351 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2352 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2353 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2354 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2355 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2356 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2357 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2358 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2359 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2360 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2361 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2362 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2363 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2364 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2365 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2366 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2367 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2368 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2369 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2370 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2371 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2372 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2373 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2374 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2375 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08002376 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2377 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002378};
2379
2380int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002381
Daniel Vetter9021f282012-03-26 09:45:41 +02002382/*
2383 * This is really ugly: Because old userspace abused the linux agp interface to
2384 * manage the gtt, we need to claim that all intel devices are agp. For
2385 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10002386 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002387int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002388{
2389 return 1;
2390}