blob: 61ae104dca8c0f5b9938f092b93f7eca70a06525 [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
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/drm_crtc_helper.h>
33#include <drm/drm_fb_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080034#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010037#include "i915_trace.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060038#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100039#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080040#include <linux/acpi.h>
41#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100042#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Chris Wilson44834a62010-08-19 16:09:23 +010044#include <acpi/video.h>
Adam Jackson9e984bc12012-03-14 11:22:11 -040045#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Daniel Vetter09422b22012-04-26 23:28:10 +020047#define LP_RING(d) (&((struct drm_i915_private *)(d))->ring[RCS])
48
49#define BEGIN_LP_RING(n) \
50 intel_ring_begin(LP_RING(dev_priv), (n))
51
52#define OUT_RING(x) \
53 intel_ring_emit(LP_RING(dev_priv), x)
54
55#define ADVANCE_LP_RING() \
56 intel_ring_advance(LP_RING(dev_priv))
57
58/**
59 * Lock test for when it's just for synchronization of ring access.
60 *
61 * In that case, we don't need to do it when GEM is initialized as nobody else
62 * has access to the ring.
63 */
64#define RING_LOCK_TEST_WITH_RETURN(dev, file) do { \
65 if (LP_RING(dev->dev_private)->obj == NULL) \
66 LOCK_TEST_WITH_RETURN(dev, file); \
67} while (0)
68
Daniel Vetter316d3882012-04-26 23:28:15 +020069static inline u32
70intel_read_legacy_status_page(struct drm_i915_private *dev_priv, int reg)
71{
72 if (I915_NEED_GFX_HWS(dev_priv->dev))
73 return ioread32(dev_priv->dri1.gfx_hws_cpu_addr + reg);
74 else
75 return intel_read_status_page(LP_RING(dev_priv), reg);
76}
77
78#define READ_HWSP(dev_priv, reg) intel_read_legacy_status_page(dev_priv, reg)
Daniel Vetter09422b22012-04-26 23:28:10 +020079#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
80#define I915_BREADCRUMB_INDEX 0x21
81
Daniel Vetterd05c6172012-04-26 23:28:09 +020082void i915_update_dri1_breadcrumb(struct drm_device *dev)
83{
84 drm_i915_private_t *dev_priv = dev->dev_private;
85 struct drm_i915_master_private *master_priv;
86
87 if (dev->primary->master) {
88 master_priv = dev->primary->master->driver_priv;
89 if (master_priv->sarea_priv)
90 master_priv->sarea_priv->last_dispatch =
91 READ_BREADCRUMB(dev_priv);
92 }
93}
94
Chris Wilson4cbf74c2011-02-25 22:26:23 +000095static void i915_write_hws_pga(struct drm_device *dev)
96{
97 drm_i915_private_t *dev_priv = dev->dev_private;
98 u32 addr;
99
100 addr = dev_priv->status_page_dmah->busaddr;
101 if (INTEL_INFO(dev)->gen >= 4)
102 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
103 I915_WRITE(HWS_PGA, addr);
104}
105
Keith Packard398c9cb2008-07-30 13:03:43 -0700106/**
107 * Sets up the hardware status page for devices that need a physical address
108 * in the register.
109 */
Eric Anholt3043c602008-10-02 12:24:47 -0700110static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700111{
112 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000113
Keith Packard398c9cb2008-07-30 13:03:43 -0700114 /* Program Hardware Status Page */
115 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +0800116 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -0700117
118 if (!dev_priv->status_page_dmah) {
119 DRM_ERROR("Can not allocate hardware status page\n");
120 return -ENOMEM;
121 }
Keith Packard398c9cb2008-07-30 13:03:43 -0700122
Keith Packardf3234702011-07-22 10:44:39 -0700123 memset_io((void __force __iomem *)dev_priv->status_page_dmah->vaddr,
124 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -0700125
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000126 i915_write_hws_pga(dev);
Zhenyu Wang9b974cc2010-01-05 11:25:06 +0800127
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800128 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -0700129 return 0;
130}
131
132/**
133 * Frees the hardware status page, whether it's a physical address or a virtual
134 * address set up by the X Server.
135 */
Eric Anholt3043c602008-10-02 12:24:47 -0700136static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700137{
138 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000139 struct intel_ring_buffer *ring = LP_RING(dev_priv);
140
Keith Packard398c9cb2008-07-30 13:03:43 -0700141 if (dev_priv->status_page_dmah) {
142 drm_pci_free(dev, dev_priv->status_page_dmah);
143 dev_priv->status_page_dmah = NULL;
144 }
145
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000146 if (ring->status_page.gfx_addr) {
147 ring->status_page.gfx_addr = 0;
Daniel Vetter316d3882012-04-26 23:28:15 +0200148 iounmap(dev_priv->dri1.gfx_hws_cpu_addr);
Keith Packard398c9cb2008-07-30 13:03:43 -0700149 }
150
151 /* Need to rewrite hardware status page */
152 I915_WRITE(HWS_PGA, 0x1ffff000);
153}
154
Dave Airlie84b1fd12007-07-11 15:53:27 +1000155void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000158 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000159 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Jesse Barnes79e53942008-11-07 14:24:08 -0800161 /*
162 * We should never lose context on the ring with modesetting
163 * as we don't expose it to userspace
164 */
165 if (drm_core_check_feature(dev, DRIVER_MODESET))
166 return;
167
Chris Wilson8168bd42010-11-11 17:54:52 +0000168 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
169 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 ring->space = ring->head - (ring->tail + 8);
171 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800172 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dave Airlie7c1c2872008-11-28 14:22:24 +1000174 if (!dev->primary->master)
175 return;
176
177 master_priv = dev->primary->master->driver_priv;
178 if (ring->head == ring->tail && master_priv->sarea_priv)
179 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Dave Airlie84b1fd12007-07-11 15:53:27 +1000182static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000184 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000185 int i;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Make sure interrupts are disabled here because the uninstall ioctl
188 * may not have been called from userspace and after dev_private
189 * is freed, it's too late.
190 */
Eric Anholted4cb412008-07-29 12:10:39 -0700191 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200194 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000195 for (i = 0; i < I915_NUM_RINGS; i++)
196 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200197 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Keith Packard398c9cb2008-07-30 13:03:43 -0700199 /* Clear the HWS virtual address at teardown */
200 if (I915_NEED_GFX_HWS(dev))
201 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 return 0;
204}
205
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000206static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000208 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000209 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000210 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Dave Airlie3a03ac12009-01-11 09:03:49 +1000212 master_priv->sarea = drm_getsarea(dev);
213 if (master_priv->sarea) {
214 master_priv->sarea_priv = (drm_i915_sarea_t *)
215 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
216 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800217 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000218 }
219
Eric Anholt673a3942008-07-30 12:06:12 -0700220 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000221 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700222 i915_dma_cleanup(dev);
223 DRM_ERROR("Client tried to initialize ringbuffer in "
224 "GEM mode\n");
225 return -EINVAL;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Chris Wilsone8616b62011-01-20 09:57:11 +0000228 ret = intel_render_ring_init_dri(dev,
229 init->ring_start,
230 init->ring_size);
231 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700232 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000233 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200237 dev_priv->dri1.cpp = init->cpp;
238 dev_priv->dri1.back_offset = init->back_offset;
239 dev_priv->dri1.front_offset = init->front_offset;
240 dev_priv->dri1.current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000241 if (master_priv->sarea_priv)
242 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* Allow hardware batchbuffers unless told otherwise.
245 */
Daniel Vetter87813422012-05-02 11:49:32 +0200246 dev_priv->dri1.allow_batchbuffer = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Dave Airlie84b1fd12007-07-11 15:53:27 +1000251static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000254 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800256 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Daniel Vetter4225d0f2012-04-26 23:28:16 +0200258 if (ring->virtual_start == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 DRM_ERROR("can not ioremap virtual address for"
260 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000261 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
264 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800265 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000267 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800269 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800270 ring->status_page.page_addr);
271 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100272 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000273 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000274 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800275
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800276 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 return 0;
279}
280
Eric Anholtc153f452007-09-03 12:06:45 +1000281static int i915_dma_init(struct drm_device *dev, void *data,
282 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Eric Anholtc153f452007-09-03 12:06:45 +1000284 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 int retcode = 0;
286
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200287 if (drm_core_check_feature(dev, DRIVER_MODESET))
288 return -ENODEV;
289
Eric Anholtc153f452007-09-03 12:06:45 +1000290 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000292 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 break;
294 case I915_CLEANUP_DMA:
295 retcode = i915_dma_cleanup(dev);
296 break;
297 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100298 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 break;
300 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000301 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 }
304
305 return retcode;
306}
307
308/* Implement basically the same security restrictions as hardware does
309 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
310 *
311 * Most of the calculations below involve calculating the size of a
312 * particular instruction. It's important to get the size right as
313 * that tells us where the next instruction to check is. Any illegal
314 * instruction detected will be given a size of zero, which is a
315 * signal to abort the rest of the buffer.
316 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100317static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 switch (((cmd >> 29) & 0x7)) {
320 case 0x0:
321 switch ((cmd >> 23) & 0x3f) {
322 case 0x0:
323 return 1; /* MI_NOOP */
324 case 0x4:
325 return 1; /* MI_FLUSH */
326 default:
327 return 0; /* disallow everything else */
328 }
329 break;
330 case 0x1:
331 return 0; /* reserved */
332 case 0x2:
333 return (cmd & 0xff) + 2; /* 2d commands */
334 case 0x3:
335 if (((cmd >> 24) & 0x1f) <= 0x18)
336 return 1;
337
338 switch ((cmd >> 24) & 0x1f) {
339 case 0x1c:
340 return 1;
341 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000342 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 case 0x3:
344 return (cmd & 0x1f) + 2;
345 case 0x4:
346 return (cmd & 0xf) + 2;
347 default:
348 return (cmd & 0xffff) + 2;
349 }
350 case 0x1e:
351 if (cmd & (1 << 23))
352 return (cmd & 0xffff) + 1;
353 else
354 return 1;
355 case 0x1f:
356 if ((cmd & (1 << 23)) == 0) /* inline vertices */
357 return (cmd & 0x1ffff) + 2;
358 else if (cmd & (1 << 17)) /* indirect random */
359 if ((cmd & 0xffff) == 0)
360 return 0; /* unknown length, too hard */
361 else
362 return (((cmd & 0xffff) + 1) / 2) + 1;
363 else
364 return 2; /* indirect sequential */
365 default:
366 return 0;
367 }
368 default:
369 return 0;
370 }
371
372 return 0;
373}
374
Eric Anholt201361a2009-03-11 12:30:04 -0700375static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100378 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000380 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000381 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100384 int sz = validate_cmd(buffer[i]);
385 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000386 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100387 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100390 ret = BEGIN_LP_RING((dwords+1)&~1);
391 if (ret)
392 return ret;
393
394 for (i = 0; i < dwords; i++)
395 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100396 if (dwords & 1)
397 OUT_RING(0);
398
399 ADVANCE_LP_RING();
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return 0;
402}
403
Eric Anholt673a3942008-07-30 12:06:12 -0700404int
405i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000406 struct drm_clip_rect *box,
407 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100409 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100410 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000412 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
413 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000415 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000416 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100419 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100420 ret = BEGIN_LP_RING(4);
421 if (ret)
422 return ret;
423
Alan Hourihanec29b6692006-08-12 16:29:24 +1000424 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000425 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
426 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000427 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000428 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100429 ret = BEGIN_LP_RING(6);
430 if (ret)
431 return ret;
432
Alan Hourihanec29b6692006-08-12 16:29:24 +1000433 OUT_RING(GFX_OP_DRAWRECT_INFO);
434 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000435 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
436 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000437 OUT_RING(DR4);
438 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000439 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100440 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 return 0;
443}
444
Alan Hourihanec29b6692006-08-12 16:29:24 +1000445/* XXX: Emitting the counter should really be moved to part of the IRQ
446 * emit. For now, do it in both places:
447 */
448
Dave Airlie84b1fd12007-07-11 15:53:27 +1000449static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100450{
451 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000452 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100453
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400454 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000455 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400456 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000457 if (master_priv->sarea_priv)
458 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100459
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100460 if (BEGIN_LP_RING(4) == 0) {
461 OUT_RING(MI_STORE_DWORD_INDEX);
462 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
463 OUT_RING(dev_priv->counter);
464 OUT_RING(0);
465 ADVANCE_LP_RING();
466 }
Dave Airliede227f52006-01-25 15:31:43 +1100467}
468
Dave Airlie84b1fd12007-07-11 15:53:27 +1000469static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700470 drm_i915_cmdbuffer_t *cmd,
471 struct drm_clip_rect *cliprects,
472 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 int nbox = cmd->num_cliprects;
475 int i = 0, count, ret;
476
477 if (cmd->sz & 0x3) {
478 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000479 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
482 i915_kernel_lost_context(dev);
483
484 count = nbox ? nbox : 1;
485
486 for (i = 0; i < count; i++) {
487 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000488 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 cmd->DR1, cmd->DR4);
490 if (ret)
491 return ret;
492 }
493
Eric Anholt201361a2009-03-11 12:30:04 -0700494 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (ret)
496 return ret;
497 }
498
Dave Airliede227f52006-01-25 15:31:43 +1100499 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return 0;
501}
502
Dave Airlie84b1fd12007-07-11 15:53:27 +1000503static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700504 drm_i915_batchbuffer_t * batch,
505 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100507 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100509 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 if ((batch->start | batch->used) & 0x7) {
512 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000513 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 i915_kernel_lost_context(dev);
517
518 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 for (i = 0; i < count; i++) {
520 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000521 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100522 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (ret)
524 return ret;
525 }
526
Keith Packard0790d5e2008-07-30 12:28:47 -0700527 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100528 ret = BEGIN_LP_RING(2);
529 if (ret)
530 return ret;
531
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100532 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000533 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
534 OUT_RING(batch->start);
535 } else {
536 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
537 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100540 ret = BEGIN_LP_RING(4);
541 if (ret)
542 return ret;
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 OUT_RING(MI_BATCH_BUFFER);
545 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
546 OUT_RING(batch->start + batch->used - 4);
547 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100549 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
Zou Nan hai1cafd342010-06-25 13:40:24 +0800552
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100553 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100554 if (BEGIN_LP_RING(2) == 0) {
555 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
556 OUT_RING(MI_NOOP);
557 ADVANCE_LP_RING();
558 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100561 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return 0;
563}
564
Dave Airlieaf6061a2008-05-07 12:15:39 +1000565static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000568 struct drm_i915_master_private *master_priv =
569 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100570 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Dave Airlie7c1c2872008-11-28 14:22:24 +1000572 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400573 return -EINVAL;
574
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800575 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800576 __func__,
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200577 dev_priv->dri1.current_page,
yakui_zhaobe25ed92009-06-02 14:13:55 +0800578 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Dave Airlieaf6061a2008-05-07 12:15:39 +1000580 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100582 ret = BEGIN_LP_RING(10);
583 if (ret)
584 return ret;
585
Jesse Barnes585fb112008-07-29 11:54:06 -0700586 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000587 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Dave Airlieaf6061a2008-05-07 12:15:39 +1000589 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
590 OUT_RING(0);
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200591 if (dev_priv->dri1.current_page == 0) {
592 OUT_RING(dev_priv->dri1.back_offset);
593 dev_priv->dri1.current_page = 1;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000594 } else {
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200595 OUT_RING(dev_priv->dri1.front_offset);
596 dev_priv->dri1.current_page = 0;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000597 }
598 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000599
Dave Airlieaf6061a2008-05-07 12:15:39 +1000600 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
601 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100602
Dave Airlieaf6061a2008-05-07 12:15:39 +1000603 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000604
Dave Airlie7c1c2872008-11-28 14:22:24 +1000605 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000606
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100607 if (BEGIN_LP_RING(4) == 0) {
608 OUT_RING(MI_STORE_DWORD_INDEX);
609 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
610 OUT_RING(dev_priv->counter);
611 OUT_RING(0);
612 ADVANCE_LP_RING();
613 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000614
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200615 master_priv->sarea_priv->pf_current_page = dev_priv->dri1.current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000619static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000621 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 i915_kernel_lost_context(dev);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700624 return intel_wait_ring_idle(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Eric Anholtc153f452007-09-03 12:06:45 +1000627static int i915_flush_ioctl(struct drm_device *dev, void *data,
628 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Eric Anholt546b0972008-09-01 16:45:29 -0700630 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200632 if (drm_core_check_feature(dev, DRIVER_MODESET))
633 return -ENODEV;
634
Eric Anholt546b0972008-09-01 16:45:29 -0700635 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
636
637 mutex_lock(&dev->struct_mutex);
638 ret = i915_quiescent(dev);
639 mutex_unlock(&dev->struct_mutex);
640
641 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Eric Anholtc153f452007-09-03 12:06:45 +1000644static int i915_batchbuffer(struct drm_device *dev, void *data,
645 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000648 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000650 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000651 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700653 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200655 if (drm_core_check_feature(dev, DRIVER_MODESET))
656 return -ENODEV;
657
Daniel Vetter87813422012-05-02 11:49:32 +0200658 if (!dev_priv->dri1.allow_batchbuffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000660 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800663 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800664 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Eric Anholt546b0972008-09-01 16:45:29 -0700666 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Eric Anholt201361a2009-03-11 12:30:04 -0700668 if (batch->num_cliprects < 0)
669 return -EINVAL;
670
671 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700672 cliprects = kcalloc(batch->num_cliprects,
673 sizeof(struct drm_clip_rect),
674 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700675 if (cliprects == NULL)
676 return -ENOMEM;
677
678 ret = copy_from_user(cliprects, batch->cliprects,
679 batch->num_cliprects *
680 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200681 if (ret != 0) {
682 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700683 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200684 }
Eric Anholt201361a2009-03-11 12:30:04 -0700685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Eric Anholt546b0972008-09-01 16:45:29 -0700687 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700688 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700689 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400691 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000692 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700693
694fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700695 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return ret;
698}
699
Eric Anholtc153f452007-09-03 12:06:45 +1000700static int i915_cmdbuffer(struct drm_device *dev, void *data,
701 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000704 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000706 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000707 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700708 struct drm_clip_rect *cliprects = NULL;
709 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int ret;
711
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800712 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800713 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200715 if (drm_core_check_feature(dev, DRIVER_MODESET))
716 return -ENODEV;
717
Eric Anholt546b0972008-09-01 16:45:29 -0700718 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Eric Anholt201361a2009-03-11 12:30:04 -0700720 if (cmdbuf->num_cliprects < 0)
721 return -EINVAL;
722
Eric Anholt9a298b22009-03-24 12:23:04 -0700723 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700724 if (batch_data == NULL)
725 return -ENOMEM;
726
727 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200728 if (ret != 0) {
729 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700730 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200731 }
Eric Anholt201361a2009-03-11 12:30:04 -0700732
733 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700734 cliprects = kcalloc(cmdbuf->num_cliprects,
735 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000736 if (cliprects == NULL) {
737 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700738 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000739 }
Eric Anholt201361a2009-03-11 12:30:04 -0700740
741 ret = copy_from_user(cliprects, cmdbuf->cliprects,
742 cmdbuf->num_cliprects *
743 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200744 if (ret != 0) {
745 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700746 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Eric Anholt546b0972008-09-01 16:45:29 -0700750 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700751 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700752 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (ret) {
754 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000755 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400758 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000759 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700760
Eric Anholt201361a2009-03-11 12:30:04 -0700761fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700762 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000763fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700764 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700765
766 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Daniel Vetter94888672012-04-26 23:28:08 +0200769static int i915_emit_irq(struct drm_device * dev)
770{
771 drm_i915_private_t *dev_priv = dev->dev_private;
772 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
773
774 i915_kernel_lost_context(dev);
775
776 DRM_DEBUG_DRIVER("\n");
777
778 dev_priv->counter++;
779 if (dev_priv->counter > 0x7FFFFFFFUL)
780 dev_priv->counter = 1;
781 if (master_priv->sarea_priv)
782 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
783
784 if (BEGIN_LP_RING(4) == 0) {
785 OUT_RING(MI_STORE_DWORD_INDEX);
786 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
787 OUT_RING(dev_priv->counter);
788 OUT_RING(MI_USER_INTERRUPT);
789 ADVANCE_LP_RING();
790 }
791
792 return dev_priv->counter;
793}
794
795static int i915_wait_irq(struct drm_device * dev, int irq_nr)
796{
797 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
798 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
799 int ret = 0;
800 struct intel_ring_buffer *ring = LP_RING(dev_priv);
801
802 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
803 READ_BREADCRUMB(dev_priv));
804
805 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
806 if (master_priv->sarea_priv)
807 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
808 return 0;
809 }
810
811 if (master_priv->sarea_priv)
812 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
813
814 if (ring->irq_get(ring)) {
815 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
816 READ_BREADCRUMB(dev_priv) >= irq_nr);
817 ring->irq_put(ring);
818 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
819 ret = -EBUSY;
820
821 if (ret == -EBUSY) {
822 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
823 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
824 }
825
826 return ret;
827}
828
829/* Needs the lock as it touches the ring.
830 */
831static int i915_irq_emit(struct drm_device *dev, void *data,
832 struct drm_file *file_priv)
833{
834 drm_i915_private_t *dev_priv = dev->dev_private;
835 drm_i915_irq_emit_t *emit = data;
836 int result;
837
838 if (drm_core_check_feature(dev, DRIVER_MODESET))
839 return -ENODEV;
840
841 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
842 DRM_ERROR("called with no initialization\n");
843 return -EINVAL;
844 }
845
846 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
847
848 mutex_lock(&dev->struct_mutex);
849 result = i915_emit_irq(dev);
850 mutex_unlock(&dev->struct_mutex);
851
852 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
853 DRM_ERROR("copy_to_user\n");
854 return -EFAULT;
855 }
856
857 return 0;
858}
859
860/* Doesn't need the hardware lock.
861 */
862static int i915_irq_wait(struct drm_device *dev, void *data,
863 struct drm_file *file_priv)
864{
865 drm_i915_private_t *dev_priv = dev->dev_private;
866 drm_i915_irq_wait_t *irqwait = data;
867
868 if (drm_core_check_feature(dev, DRIVER_MODESET))
869 return -ENODEV;
870
871 if (!dev_priv) {
872 DRM_ERROR("called with no initialization\n");
873 return -EINVAL;
874 }
875
876 return i915_wait_irq(dev, irqwait->irq_seq);
877}
878
Daniel Vetterd1c1edb2012-04-26 23:28:01 +0200879static int i915_vblank_pipe_get(struct drm_device *dev, void *data,
880 struct drm_file *file_priv)
881{
882 drm_i915_private_t *dev_priv = dev->dev_private;
883 drm_i915_vblank_pipe_t *pipe = data;
884
885 if (drm_core_check_feature(dev, DRIVER_MODESET))
886 return -ENODEV;
887
888 if (!dev_priv) {
889 DRM_ERROR("called with no initialization\n");
890 return -EINVAL;
891 }
892
893 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
894
895 return 0;
896}
897
898/**
899 * Schedule buffer swap at given vertical blank.
900 */
901static int i915_vblank_swap(struct drm_device *dev, void *data,
902 struct drm_file *file_priv)
903{
904 /* The delayed swap mechanism was fundamentally racy, and has been
905 * removed. The model was that the client requested a delayed flip/swap
906 * from the kernel, then waited for vblank before continuing to perform
907 * rendering. The problem was that the kernel might wake the client
908 * up before it dispatched the vblank swap (since the lock has to be
909 * held while touching the ringbuffer), in which case the client would
910 * clear and start the next frame before the swap occurred, and
911 * flicker would occur in addition to likely missing the vblank.
912 *
913 * In the absence of this ioctl, userland falls back to a correct path
914 * of waiting for a vblank, then dispatching the swap on its own.
915 * Context switching to userland and back is plenty fast enough for
916 * meeting the requirements of vblank swapping.
917 */
918 return -EINVAL;
919}
920
Eric Anholtc153f452007-09-03 12:06:45 +1000921static int i915_flip_bufs(struct drm_device *dev, void *data,
922 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Eric Anholt546b0972008-09-01 16:45:29 -0700924 int ret;
925
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200926 if (drm_core_check_feature(dev, DRIVER_MODESET))
927 return -ENODEV;
928
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800929 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Eric Anholt546b0972008-09-01 16:45:29 -0700931 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Eric Anholt546b0972008-09-01 16:45:29 -0700933 mutex_lock(&dev->struct_mutex);
934 ret = i915_dispatch_flip(dev);
935 mutex_unlock(&dev->struct_mutex);
936
937 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Eric Anholtc153f452007-09-03 12:06:45 +1000940static int i915_getparam(struct drm_device *dev, void *data,
941 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000944 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 int value;
946
947 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000948 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000949 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
Eric Anholtc153f452007-09-03 12:06:45 +1000952 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700954 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 case I915_PARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200957 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100959 case I915_PARAM_LAST_DISPATCH:
960 value = READ_BREADCRUMB(dev_priv);
961 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400962 case I915_PARAM_CHIPSET_ID:
963 value = dev->pci_device;
964 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700965 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200966 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700967 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800968 case I915_PARAM_NUM_FENCES_AVAIL:
969 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
970 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200971 case I915_PARAM_HAS_OVERLAY:
972 value = dev_priv->overlay ? 1 : 0;
973 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800974 case I915_PARAM_HAS_PAGEFLIPPING:
975 value = 1;
976 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500977 case I915_PARAM_HAS_EXECBUF2:
978 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200979 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500980 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800981 case I915_PARAM_HAS_BSD:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100982 value = intel_ring_initialized(&dev_priv->ring[VCS]);
Zou Nan haie3a815f2010-05-31 13:58:47 +0800983 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100984 case I915_PARAM_HAS_BLT:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100985 value = intel_ring_initialized(&dev_priv->ring[BCS]);
Chris Wilson549f7362010-10-19 11:19:32 +0100986 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100987 case I915_PARAM_HAS_RELAXED_FENCING:
988 value = 1;
989 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100990 case I915_PARAM_HAS_COHERENT_RINGS:
991 value = 1;
992 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000993 case I915_PARAM_HAS_EXEC_CONSTANTS:
994 value = INTEL_INFO(dev)->gen >= 4;
995 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000996 case I915_PARAM_HAS_RELAXED_DELTA:
997 value = 1;
998 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800999 case I915_PARAM_HAS_GEN7_SOL_RESET:
1000 value = 1;
1001 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02001002 case I915_PARAM_HAS_LLC:
1003 value = HAS_LLC(dev);
1004 break;
Daniel Vetter777ee962012-02-15 23:50:25 +01001005 case I915_PARAM_HAS_ALIASING_PPGTT:
1006 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
1007 break;
Ben Widawsky172cf152012-06-05 15:24:25 -07001008 case I915_PARAM_HAS_WAIT_TIMEOUT:
1009 value = 1;
1010 break;
Chris Wilson2fedbff2012-08-08 10:23:22 +01001011 case I915_PARAM_HAS_SEMAPHORES:
1012 value = i915_semaphore_is_enabled(dev);
1013 break;
Dave Airlieec6f1bb2012-08-16 10:15:34 +10001014 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
1015 value = 1;
1016 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001018 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -05001019 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001020 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Eric Anholtc153f452007-09-03 12:06:45 +10001023 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001025 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028 return 0;
1029}
1030
Eric Anholtc153f452007-09-03 12:06:45 +10001031static int i915_setparam(struct drm_device *dev, void *data,
1032 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001035 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001038 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001039 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
Eric Anholtc153f452007-09-03 12:06:45 +10001042 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
1045 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 break;
1047 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +02001048 dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001050 case I915_SETPARAM_NUM_USED_FENCES:
1051 if (param->value > dev_priv->num_fence_regs ||
1052 param->value < 0)
1053 return -EINVAL;
1054 /* Userspace can use first N regs */
1055 dev_priv->fence_reg_start = param->value;
1056 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001058 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +08001059 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001060 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
1063 return 0;
1064}
1065
Eric Anholtc153f452007-09-03 12:06:45 +10001066static int i915_set_status_page(struct drm_device *dev, void *data,
1067 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001068{
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001069 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001070 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001071 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001072
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001073 if (drm_core_check_feature(dev, DRIVER_MODESET))
1074 return -ENODEV;
1075
Zhenyu Wangb39d50e2008-02-19 20:59:09 +10001076 if (!I915_NEED_GFX_HWS(dev))
1077 return -EINVAL;
1078
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001079 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001080 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001081 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001082 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001083
Jesse Barnes79e53942008-11-07 14:24:08 -08001084 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1085 WARN(1, "tried to set status page when mode setting active\n");
1086 return 0;
1087 }
1088
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001089 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001090
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001091 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +10001092
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001093 dev_priv->dri1.gfx_hws_cpu_addr =
1094 ioremap_wc(dev_priv->mm.gtt_base_addr + hws->addr, 4096);
Daniel Vetter316d3882012-04-26 23:28:15 +02001095 if (dev_priv->dri1.gfx_hws_cpu_addr == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001096 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -07001097 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001098 DRM_ERROR("can not ioremap virtual address for"
1099 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001100 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001101 }
Daniel Vetter316d3882012-04-26 23:28:15 +02001102
1103 memset_io(dev_priv->dri1.gfx_hws_cpu_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001104 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001105
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001106 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001107 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001108 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001109 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001110 return 0;
1111}
1112
Dave Airlieec2a4c32009-08-04 11:43:41 +10001113static int i915_get_bridge_dev(struct drm_device *dev)
1114{
1115 struct drm_i915_private *dev_priv = dev->dev_private;
1116
Akshay Joshi0206e352011-08-16 15:34:10 -04001117 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +10001118 if (!dev_priv->bridge_dev) {
1119 DRM_ERROR("bridge device not found\n");
1120 return -1;
1121 }
1122 return 0;
1123}
1124
Zhenyu Wangc48044112009-12-17 14:48:43 +08001125#define MCHBAR_I915 0x44
1126#define MCHBAR_I965 0x48
1127#define MCHBAR_SIZE (4*4096)
1128
1129#define DEVEN_REG 0x54
1130#define DEVEN_MCHBAR_EN (1 << 28)
1131
1132/* Allocate space for the MCH regs if needed, return nonzero on error */
1133static int
1134intel_alloc_mchbar_resource(struct drm_device *dev)
1135{
1136 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001137 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001138 u32 temp_lo, temp_hi = 0;
1139 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001140 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001141
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001142 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001143 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
1144 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
1145 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
1146
1147 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
1148#ifdef CONFIG_PNP
1149 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +01001150 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
1151 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001152#endif
1153
1154 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +01001155 dev_priv->mch_res.name = "i915 MCHBAR";
1156 dev_priv->mch_res.flags = IORESOURCE_MEM;
1157 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
1158 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001159 MCHBAR_SIZE, MCHBAR_SIZE,
1160 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +01001161 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001162 dev_priv->bridge_dev);
1163 if (ret) {
1164 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
1165 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001166 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001167 }
1168
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001169 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001170 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
1171 upper_32_bits(dev_priv->mch_res.start));
1172
1173 pci_write_config_dword(dev_priv->bridge_dev, reg,
1174 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +01001175 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001176}
1177
1178/* Setup MCHBAR if possible, return true if we should disable it again */
1179static void
1180intel_setup_mchbar(struct drm_device *dev)
1181{
1182 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001183 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001184 u32 temp;
1185 bool enabled;
1186
1187 dev_priv->mchbar_need_disable = false;
1188
1189 if (IS_I915G(dev) || IS_I915GM(dev)) {
1190 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1191 enabled = !!(temp & DEVEN_MCHBAR_EN);
1192 } else {
1193 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1194 enabled = temp & 1;
1195 }
1196
1197 /* If it's already enabled, don't have to do anything */
1198 if (enabled)
1199 return;
1200
1201 if (intel_alloc_mchbar_resource(dev))
1202 return;
1203
1204 dev_priv->mchbar_need_disable = true;
1205
1206 /* Space is allocated or reserved, so enable it. */
1207 if (IS_I915G(dev) || IS_I915GM(dev)) {
1208 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1209 temp | DEVEN_MCHBAR_EN);
1210 } else {
1211 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1212 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1213 }
1214}
1215
1216static void
1217intel_teardown_mchbar(struct drm_device *dev)
1218{
1219 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001220 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001221 u32 temp;
1222
1223 if (dev_priv->mchbar_need_disable) {
1224 if (IS_I915G(dev) || IS_I915GM(dev)) {
1225 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1226 temp &= ~DEVEN_MCHBAR_EN;
1227 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1228 } else {
1229 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1230 temp &= ~1;
1231 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1232 }
1233 }
1234
1235 if (dev_priv->mch_res.start)
1236 release_resource(&dev_priv->mch_res);
1237}
1238
Dave Airlie28d52042009-09-21 14:33:58 +10001239/* true = enable decode, false = disable decoder */
1240static unsigned int i915_vga_set_decode(void *cookie, bool state)
1241{
1242 struct drm_device *dev = cookie;
1243
1244 intel_modeset_vga_set_state(dev, state);
1245 if (state)
1246 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1247 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1248 else
1249 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1250}
1251
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001252static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1253{
1254 struct drm_device *dev = pci_get_drvdata(pdev);
1255 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1256 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001257 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001258 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001259 /* i915 resume handler doesn't set to D0 */
1260 pci_set_power_state(dev->pdev, PCI_D0);
1261 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001262 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001263 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001264 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001265 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001266 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001267 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001268 }
1269}
1270
1271static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1272{
1273 struct drm_device *dev = pci_get_drvdata(pdev);
1274 bool can_switch;
1275
1276 spin_lock(&dev->count_lock);
1277 can_switch = (dev->open_count == 0);
1278 spin_unlock(&dev->count_lock);
1279 return can_switch;
1280}
1281
Takashi Iwai26ec6852012-05-11 07:51:17 +02001282static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
1283 .set_gpu_state = i915_switcheroo_set_state,
1284 .reprobe = NULL,
1285 .can_switch = i915_switcheroo_can_switch,
1286};
1287
Chris Wilson2c7111d2011-03-29 10:40:27 +01001288static int i915_load_modeset_init(struct drm_device *dev)
1289{
1290 struct drm_i915_private *dev_priv = dev->dev_private;
1291 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001292
Bryan Freed6d139a82010-10-14 09:14:51 +01001293 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001294 if (ret)
1295 DRM_INFO("failed to find VBIOS tables\n");
1296
Chris Wilson934f9922011-01-20 13:09:12 +00001297 /* If we have > 1 VGA cards, then we need to arbitrate access
1298 * to the common VGA resources.
1299 *
1300 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1301 * then we do not take part in VGA arbitration and the
1302 * vga_client_register() fails with -ENODEV.
1303 */
Dave Airlie28d52042009-09-21 14:33:58 +10001304 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001305 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001306 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001307
Jesse Barnes723bfd72010-10-07 16:01:13 -07001308 intel_register_dsm_handler();
1309
Takashi Iwai26ec6852012-05-11 07:51:17 +02001310 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001311 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001312 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001313
Chris Wilson9797fbf2012-04-24 15:47:39 +01001314 /* Initialise stolen first so that we may reserve preallocated
1315 * objects for the BIOS to KMS transition.
1316 */
1317 ret = i915_gem_init_stolen(dev);
1318 if (ret)
1319 goto cleanup_vga_switcheroo;
1320
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001321 intel_modeset_init(dev);
1322
Chris Wilson1070a422012-04-24 15:47:41 +01001323 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001324 if (ret)
Chris Wilson9797fbf2012-04-24 15:47:39 +01001325 goto cleanup_gem_stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001326
Chris Wilson2c7111d2011-03-29 10:40:27 +01001327 intel_modeset_gem_init(dev);
1328
1329 ret = drm_irq_install(dev);
1330 if (ret)
1331 goto cleanup_gem;
1332
Jesse Barnes79e53942008-11-07 14:24:08 -08001333 /* Always safe in the mode setting case. */
1334 /* FIXME: do pre/post-mode set stuff in core KMS code */
1335 dev->vblank_disable_allowed = 1;
1336
Chris Wilson5a793952010-06-06 10:50:03 +01001337 ret = intel_fbdev_init(dev);
1338 if (ret)
1339 goto cleanup_irq;
1340
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001341 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001342
1343 /* We're off and running w/KMS */
1344 dev_priv->mm.suspended = 0;
1345
Jesse Barnes79e53942008-11-07 14:24:08 -08001346 return 0;
1347
Chris Wilson5a793952010-06-06 10:50:03 +01001348cleanup_irq:
1349 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001350cleanup_gem:
1351 mutex_lock(&dev->struct_mutex);
1352 i915_gem_cleanup_ringbuffer(dev);
1353 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001354 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001355cleanup_gem_stolen:
1356 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001357cleanup_vga_switcheroo:
1358 vga_switcheroo_unregister_client(dev->pdev);
1359cleanup_vga_client:
1360 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001361out:
1362 return ret;
1363}
1364
Dave Airlie7c1c2872008-11-28 14:22:24 +10001365int i915_master_create(struct drm_device *dev, struct drm_master *master)
1366{
1367 struct drm_i915_master_private *master_priv;
1368
Eric Anholt9a298b22009-03-24 12:23:04 -07001369 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001370 if (!master_priv)
1371 return -ENOMEM;
1372
1373 master->driver_priv = master_priv;
1374 return 0;
1375}
1376
1377void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1378{
1379 struct drm_i915_master_private *master_priv = master->driver_priv;
1380
1381 if (!master_priv)
1382 return;
1383
Eric Anholt9a298b22009-03-24 12:23:04 -07001384 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001385
1386 master->driver_priv = NULL;
1387}
1388
Adam Jacksone2b665c2012-03-14 11:22:10 -04001389static void
1390i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1391 unsigned long size)
1392{
Chris Wilson23f54be2012-03-23 17:38:49 +00001393 dev_priv->mm.gtt_mtrr = -1;
1394
Adam Jackson9e984bc12012-03-14 11:22:11 -04001395#if defined(CONFIG_X86_PAT)
1396 if (cpu_has_pat)
1397 return;
1398#endif
1399
Adam Jacksone2b665c2012-03-14 11:22:10 -04001400 /* Set up a WC MTRR for non-PAT systems. This is more common than
1401 * one would think, because the kernel disables PAT on first
1402 * generation Core chips because WC PAT gets overridden by a UC
1403 * MTRR if present. Even if a UC MTRR isn't present.
1404 */
1405 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1406 if (dev_priv->mm.gtt_mtrr < 0) {
1407 DRM_INFO("MTRR allocation failed. Graphics "
1408 "performance may suffer.\n");
1409 }
1410}
1411
Daniel Vettere1887192012-06-12 11:28:17 +02001412static void i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
1413{
1414 struct apertures_struct *ap;
1415 struct pci_dev *pdev = dev_priv->dev->pdev;
1416 bool primary;
1417
1418 ap = alloc_apertures(1);
1419 if (!ap)
1420 return;
1421
Daniel Vetter87207ca2012-06-24 20:51:36 +02001422 ap->ranges[0].base = dev_priv->mm.gtt->gma_bus_addr;
Daniel Vettere1887192012-06-12 11:28:17 +02001423 ap->ranges[0].size =
1424 dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
1425 primary =
1426 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
1427
1428 remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
1429
1430 kfree(ap);
1431}
1432
Daniel Vetterc96ea642012-08-08 22:01:51 +02001433static void i915_dump_device_info(struct drm_i915_private *dev_priv)
1434{
1435 const struct intel_device_info *info = dev_priv->info;
1436
1437#define DEV_INFO_FLAG(name) info->name ? #name "," : ""
1438#define DEV_INFO_SEP ,
1439 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x flags="
1440 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
1441 info->gen,
1442 dev_priv->dev->pdev->device,
1443 DEV_INFO_FLAGS);
1444#undef DEV_INFO_FLAG
1445#undef DEV_INFO_SEP
1446}
1447
Eric Anholt63ee41d2010-12-20 18:40:06 -08001448/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001449 * i915_driver_load - setup chip and create an initial config
1450 * @dev: DRM device
1451 * @flags: startup flags
1452 *
1453 * The driver load routine has to do several things:
1454 * - drive output discovery via intel_modeset_init()
1455 * - initialize the memory manager
1456 * - allocate initial config memory
1457 * - setup the DRM framebuffer with the allocated memory
1458 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001459int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001460{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001461 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001462 struct intel_device_info *info;
Chris Wilson934d6082012-09-14 11:57:46 +01001463 int ret = 0, mmio_bar, mmio_size;
Daniel Vetter9021f282012-03-26 09:45:41 +02001464 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001465
Daniel Vetter26394d92012-03-26 21:33:18 +02001466 info = (struct intel_device_info *) flags;
1467
1468 /* Refuse to load on gen6+ without kms enabled. */
1469 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1470 return -ENODEV;
1471
Dave Airlie22eae942005-11-10 22:16:34 +11001472 /* i915 has 4 more counters */
1473 dev->counters += 4;
1474 dev->types[6] = _DRM_STAT_IRQ;
1475 dev->types[7] = _DRM_STAT_PRIMARY;
1476 dev->types[8] = _DRM_STAT_SECONDARY;
1477 dev->types[9] = _DRM_STAT_DMA;
1478
Eric Anholt9a298b22009-03-24 12:23:04 -07001479 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001480 if (dev_priv == NULL)
1481 return -ENOMEM;
1482
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001483 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001484 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001485 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001486
Daniel Vetterc96ea642012-08-08 22:01:51 +02001487 i915_dump_device_info(dev_priv);
1488
Dave Airlieec2a4c32009-08-04 11:43:41 +10001489 if (i915_get_bridge_dev(dev)) {
1490 ret = -EIO;
1491 goto free_priv;
1492 }
1493
Daniel Vettere1887192012-06-12 11:28:17 +02001494 ret = intel_gmch_probe(dev_priv->bridge_dev, dev->pdev, NULL);
1495 if (!ret) {
1496 DRM_ERROR("failed to set up gmch\n");
1497 ret = -EIO;
1498 goto put_bridge;
1499 }
1500
1501 dev_priv->mm.gtt = intel_gtt_get();
1502 if (!dev_priv->mm.gtt) {
1503 DRM_ERROR("Failed to initialize GTT\n");
1504 ret = -ENODEV;
1505 goto put_gmch;
1506 }
1507
Chris Wilson16233922012-10-26 12:06:41 +01001508 if (drm_core_check_feature(dev, DRIVER_MODESET))
1509 i915_kick_out_firmware_fb(dev_priv);
Daniel Vettere1887192012-06-12 11:28:17 +02001510
Dave Airlie466e69b2011-12-19 11:15:29 +00001511 pci_set_master(dev->pdev);
1512
Daniel Vetter9f82d232010-08-30 21:25:23 +02001513 /* overlay on gen2 is broken and can't address above 1G */
1514 if (IS_GEN2(dev))
1515 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1516
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001517 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1518 * using 32bit addressing, overwriting memory if HWS is located
1519 * above 4GB.
1520 *
1521 * The documentation also mentions an issue with undefined
1522 * behaviour if any general state is accessed within a page above 4GB,
1523 * which also needs to be handled carefully.
1524 */
1525 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1526 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1527
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001528 mmio_bar = IS_GEN2(dev) ? 1 : 0;
Chris Wilson934d6082012-09-14 11:57:46 +01001529 /* Before gen4, the registers and the GTT are behind different BARs.
1530 * However, from gen4 onwards, the registers and the GTT are shared
1531 * in the same BAR, so we want to restrict this ioremap from
1532 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
1533 * the register BAR remains the same size for all the earlier
1534 * generations up to Ironlake.
1535 */
1536 if (info->gen < 5)
1537 mmio_size = 512*1024;
1538 else
1539 mmio_size = 2*1024*1024;
1540
1541 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001542 if (!dev_priv->regs) {
1543 DRM_ERROR("failed to map registers\n");
1544 ret = -EIO;
Daniel Vetter14be93d2012-06-08 15:55:40 +02001545 goto put_gmch;
Chris Wilson71e93392010-10-27 18:46:52 +01001546 }
1547
Daniel Vetter9021f282012-03-26 09:45:41 +02001548 aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001549 dev_priv->mm.gtt_base_addr = dev_priv->mm.gtt->gma_bus_addr;
Chris Wilson71e93392010-10-27 18:46:52 +01001550
Akshay Joshi0206e352011-08-16 15:34:10 -04001551 dev_priv->mm.gtt_mapping =
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001552 io_mapping_create_wc(dev_priv->mm.gtt_base_addr,
1553 aperture_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001554 if (dev_priv->mm.gtt_mapping == NULL) {
1555 ret = -EIO;
Daniel Vettere1887192012-06-12 11:28:17 +02001556 goto out_rmmap;
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001557 }
1558
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001559 i915_mtrr_setup(dev_priv, dev_priv->mm.gtt_base_addr,
1560 aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08001561
Chris Wilsone642abb2010-09-09 12:46:34 +01001562 /* The i915 workqueue is primarily used for batched retirement of
1563 * requests (and thus managing bo) once the task has been completed
1564 * by the GPU. i915_gem_retire_requests() is called directly when we
1565 * need high-priority retirement, such as waiting for an explicit
1566 * bo.
1567 *
1568 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001569 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001570 *
1571 * All tasks on the workqueue are expected to acquire the dev mutex
1572 * so there is no point in running more than one instance of the
Tejun Heo53621862012-08-22 16:40:57 -07001573 * workqueue at any time. Use an ordered one.
Chris Wilsone642abb2010-09-09 12:46:34 +01001574 */
Tejun Heo53621862012-08-22 16:40:57 -07001575 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001576 if (dev_priv->wq == NULL) {
1577 DRM_ERROR("Failed to create our workqueue.\n");
1578 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07001579 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001580 }
1581
Paulo Zanoni45e6e3a2012-07-03 15:57:32 -03001582 /* This must be called before any calls to HAS_PCH_* */
1583 intel_detect_pch(dev);
1584
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001585 intel_irq_init(dev);
Chris Wilson990bbda2012-07-02 11:51:02 -03001586 intel_gt_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001587
Zhenyu Wangc48044112009-12-17 14:48:43 +08001588 /* Try to make sure MCHBAR is enabled before poking at it */
1589 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001590 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001591 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001592
Bryan Freed6d139a82010-10-14 09:14:51 +01001593 /* Make sure the bios did its job and set up vital registers */
1594 intel_setup_bios(dev);
1595
Eric Anholt673a3942008-07-30 12:06:12 -07001596 i915_gem_load(dev);
1597
Keith Packard398c9cb2008-07-30 13:03:43 -07001598 /* Init HWS */
1599 if (!I915_NEED_GFX_HWS(dev)) {
1600 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001601 if (ret)
1602 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07001603 }
Eric Anholted4cb412008-07-29 12:10:39 -07001604
1605 /* On the 945G/GM, the chipset reports the MSI capability on the
1606 * integrated graphics even though the support isn't actually there
1607 * according to the published specs. It doesn't appear to function
1608 * correctly in testing on 945G.
1609 * This may be a side effect of MSI having been made available for PEG
1610 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001611 *
1612 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001613 * be lost or delayed, but we use them anyways to avoid
1614 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001615 */
Keith Packardb60678a2008-12-08 11:12:28 -08001616 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001617 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001618
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001619 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001620 spin_lock_init(&dev_priv->error_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001621 spin_lock_init(&dev_priv->rps.lock);
Alexander Shishkin99d0b1d2012-08-31 15:50:55 +03001622 spin_lock_init(&dev_priv->dpio_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07001623
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03001624 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07001625 dev_priv->num_pipe = 3;
1626 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001627 dev_priv->num_pipe = 2;
1628 else
1629 dev_priv->num_pipe = 1;
1630
1631 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001632 if (ret)
1633 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08001634
Ben Gamari11ed50e2009-09-14 17:48:45 -04001635 /* Start out suspended */
1636 dev_priv->mm.suspended = 1;
1637
Jesse Barnes79e53942008-11-07 14:24:08 -08001638 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02001639 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001640 if (ret < 0) {
1641 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00001642 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08001643 }
1644 }
1645
Ben Widawsky0136db582012-04-10 21:17:01 -07001646 i915_setup_sysfs(dev);
1647
Matthew Garrett74a365b2009-03-19 21:35:39 +00001648 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01001649 intel_opregion_init(dev);
1650 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00001651
Ben Gamarif65d9422009-09-14 17:48:44 -04001652 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
1653 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001654
Daniel Vettereb48eb02012-04-26 23:28:12 +02001655 if (IS_GEN5(dev))
1656 intel_gpu_ips_init(dev_priv);
Eric Anholt63ee41d2010-12-20 18:40:06 -08001657
Jesse Barnes79e53942008-11-07 14:24:08 -08001658 return 0;
1659
Chris Wilson56e2ea32010-11-08 17:10:29 +00001660out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07001661 if (dev_priv->mm.inactive_shrinker.shrink)
1662 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1663
Chris Wilson56e2ea32010-11-08 17:10:29 +00001664 if (dev->pdev->msi_enabled)
1665 pci_disable_msi(dev->pdev);
1666
1667 intel_teardown_gmbus(dev);
1668 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001669 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07001670out_mtrrfree:
1671 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001672 mtrr_del(dev_priv->mm.gtt_mtrr,
1673 dev_priv->mm.gtt_base_addr,
1674 aperture_size);
Keith Packarda7b85d22011-07-10 13:12:17 -07001675 dev_priv->mm.gtt_mtrr = -1;
1676 }
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001677 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001678out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01001679 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vettere1887192012-06-12 11:28:17 +02001680put_gmch:
1681 intel_gmch_remove();
Dave Airlieec2a4c32009-08-04 11:43:41 +10001682put_bridge:
1683 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001684free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001685 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001686 return ret;
1687}
1688
1689int i915_driver_unload(struct drm_device *dev)
1690{
1691 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02001692 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001693
Daniel Vettereb48eb02012-04-26 23:28:12 +02001694 intel_gpu_ips_teardown();
Jesse Barnes7648fa92010-05-20 14:28:11 -07001695
Ben Widawsky0136db582012-04-10 21:17:01 -07001696 i915_teardown_sysfs(dev);
1697
Chris Wilson17250b72010-10-28 12:51:39 +01001698 if (dev_priv->mm.inactive_shrinker.shrink)
1699 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1700
Daniel Vetterc911fc12010-08-20 21:23:20 +02001701 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001702 ret = i915_gpu_idle(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001703 if (ret)
1704 DRM_ERROR("failed to idle hardware: %d\n", ret);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001705 i915_gem_retire_requests(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001706 mutex_unlock(&dev->struct_mutex);
1707
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001708 /* Cancel the retire work handler, which should be idle now. */
1709 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
1710
Eric Anholtab657db12009-01-23 12:57:47 -08001711 io_mapping_free(dev_priv->mm.gtt_mapping);
1712 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001713 mtrr_del(dev_priv->mm.gtt_mtrr,
1714 dev_priv->mm.gtt_base_addr,
1715 dev_priv->mm.gtt->gtt_mappable_entries * PAGE_SIZE);
Eric Anholtab657db12009-01-23 12:57:47 -08001716 dev_priv->mm.gtt_mtrr = -1;
1717 }
1718
Chris Wilson44834a62010-08-19 16:09:23 +01001719 acpi_video_unregister();
1720
Jesse Barnes79e53942008-11-07 14:24:08 -08001721 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01001722 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001723 intel_modeset_cleanup(dev);
1724
Zhao Yakui6363ee62009-11-24 09:48:44 +08001725 /*
1726 * free the memory space allocated for the child device
1727 * config parsed from VBT
1728 */
1729 if (dev_priv->child_dev && dev_priv->child_dev_num) {
1730 kfree(dev_priv->child_dev);
1731 dev_priv->child_dev = NULL;
1732 dev_priv->child_dev_num = 0;
1733 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02001734
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001735 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001736 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001737 }
1738
Daniel Vettera8b48992010-08-20 21:25:11 +02001739 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001740 del_timer_sync(&dev_priv->hangcheck_timer);
1741 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02001742 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001743
Eric Anholted4cb412008-07-29 12:10:39 -07001744 if (dev->pdev->msi_enabled)
1745 pci_disable_msi(dev->pdev);
1746
Chris Wilson44834a62010-08-19 16:09:23 +01001747 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001748
Jesse Barnes79e53942008-11-07 14:24:08 -08001749 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02001750 /* Flush any outstanding unpin_work. */
1751 flush_workqueue(dev_priv->wq);
1752
Jesse Barnes79e53942008-11-07 14:24:08 -08001753 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07001754 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001755 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter55a66622012-06-19 21:55:32 +02001756 i915_gem_context_fini(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001757 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001758 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001759 i915_gem_cleanup_stolen(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001760 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001761
1762 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01001763
1764 if (!I915_NEED_GFX_HWS(dev))
1765 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001766 }
1767
Daniel Vetter701394c2010-10-10 18:54:08 +01001768 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01001769 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01001770
Chris Wilsonf899fc62010-07-20 15:44:45 -07001771 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001772 intel_teardown_mchbar(dev);
1773
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001774 destroy_workqueue(dev_priv->wq);
1775
Dave Airlieec2a4c32009-08-04 11:43:41 +10001776 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07001777 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001778
Dave Airlie22eae942005-11-10 22:16:34 +11001779 return 0;
1780}
1781
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001782int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001783{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001784 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001785
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001786 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001787 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
1788 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07001789 return -ENOMEM;
1790
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001791 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001792
Chris Wilson1c255952010-09-26 11:03:27 +01001793 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001794 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001795
Daniel Vetterdf12c6d2012-06-19 16:52:30 +02001796 idr_init(&file_priv->context_idr);
Ben Widawsky254f9652012-06-04 14:42:42 -07001797
Eric Anholt673a3942008-07-30 12:06:12 -07001798 return 0;
1799}
1800
Jesse Barnes79e53942008-11-07 14:24:08 -08001801/**
1802 * i915_driver_lastclose - clean up after all DRM clients have exited
1803 * @dev: DRM device
1804 *
1805 * Take care of cleaning up after all DRM clients have exited. In the
1806 * mode setting case, we want to restore the kernel's initial mode (just
1807 * in case the last client left us in a bad state).
1808 *
Daniel Vetter9021f282012-03-26 09:45:41 +02001809 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08001810 * and DMA structures, since the kernel won't be using them, and clea
1811 * up any GEM state.
1812 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001813void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001815 drm_i915_private_t *dev_priv = dev->dev_private;
1816
Daniel Vettere8aeaee2012-07-21 16:47:09 +02001817 /* On gen6+ we refuse to init without kms enabled, but then the drm core
1818 * goes right around and calls lastclose. Check for this and don't clean
1819 * up anything. */
1820 if (!dev_priv)
1821 return;
1822
1823 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01001824 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001825 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001826 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001827 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001828
Eric Anholt673a3942008-07-30 12:06:12 -07001829 i915_gem_lastclose(dev);
1830
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001831 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Eric Anholt6c340ea2007-08-25 20:23:09 +10001834void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Ben Widawsky254f9652012-06-04 14:42:42 -07001836 i915_gem_context_close(dev, file_priv);
Eric Anholtb9624422009-06-03 07:27:35 +00001837 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001840void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001841{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001842 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001843
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001844 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001845}
1846
Eric Anholtc153f452007-09-03 12:06:45 +10001847struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001848 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1849 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1850 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
1851 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1852 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1853 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1854 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
1855 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001856 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1857 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1858 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001859 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001860 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterd1c1edb2012-04-26 23:28:01 +02001861 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001862 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
1863 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
1864 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1865 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1866 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1867 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
1868 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1869 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1870 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky199adf42012-09-21 17:01:20 -07001871 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED),
1872 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001873 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
1874 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1875 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1876 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
1877 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
1878 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
1879 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
1880 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
1881 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
1882 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
1883 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
1884 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
1885 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
1886 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1887 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
1888 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1889 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08001890 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1891 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07001892 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky84624812012-06-04 14:42:54 -07001893 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED),
1894 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED),
Ben Widawskyc0c7bab2012-07-12 11:01:05 -07001895 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10001896};
1897
1898int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001899
Daniel Vetter9021f282012-03-26 09:45:41 +02001900/*
1901 * This is really ugly: Because old userspace abused the linux agp interface to
1902 * manage the gtt, we need to claim that all intel devices are agp. For
1903 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10001904 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001905int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001906{
1907 return 1;
1908}