blob: 4ea331b931fd970d840acb61d3d0528606efb4ac [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/**
Keith Packard398c9cb2008-07-30 13:03:43 -0700107 * Frees the hardware status page, whether it's a physical address or a virtual
108 * address set up by the X Server.
109 */
Eric Anholt3043c602008-10-02 12:24:47 -0700110static void i915_free_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 struct intel_ring_buffer *ring = LP_RING(dev_priv);
114
Keith Packard398c9cb2008-07-30 13:03:43 -0700115 if (dev_priv->status_page_dmah) {
116 drm_pci_free(dev, dev_priv->status_page_dmah);
117 dev_priv->status_page_dmah = NULL;
118 }
119
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000120 if (ring->status_page.gfx_addr) {
121 ring->status_page.gfx_addr = 0;
Daniel Vetter316d3882012-04-26 23:28:15 +0200122 iounmap(dev_priv->dri1.gfx_hws_cpu_addr);
Keith Packard398c9cb2008-07-30 13:03:43 -0700123 }
124
125 /* Need to rewrite hardware status page */
126 I915_WRITE(HWS_PGA, 0x1ffff000);
127}
128
Dave Airlie84b1fd12007-07-11 15:53:27 +1000129void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000132 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000133 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Jesse Barnes79e53942008-11-07 14:24:08 -0800135 /*
136 * We should never lose context on the ring with modesetting
137 * as we don't expose it to userspace
138 */
139 if (drm_core_check_feature(dev, DRIVER_MODESET))
140 return;
141
Chris Wilson8168bd42010-11-11 17:54:52 +0000142 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
143 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ring->space = ring->head - (ring->tail + 8);
145 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800146 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dave Airlie7c1c2872008-11-28 14:22:24 +1000148 if (!dev->primary->master)
149 return;
150
151 master_priv = dev->primary->master->driver_priv;
152 if (ring->head == ring->tail && master_priv->sarea_priv)
153 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Dave Airlie84b1fd12007-07-11 15:53:27 +1000156static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000158 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000159 int i;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* Make sure interrupts are disabled here because the uninstall ioctl
162 * may not have been called from userspace and after dev_private
163 * is freed, it's too late.
164 */
Eric Anholted4cb412008-07-29 12:10:39 -0700165 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000166 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200168 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000169 for (i = 0; i < I915_NUM_RINGS; i++)
170 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200171 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Keith Packard398c9cb2008-07-30 13:03:43 -0700173 /* Clear the HWS virtual address at teardown */
174 if (I915_NEED_GFX_HWS(dev))
175 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 return 0;
178}
179
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000180static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000182 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000183 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000184 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Dave Airlie3a03ac12009-01-11 09:03:49 +1000186 master_priv->sarea = drm_getsarea(dev);
187 if (master_priv->sarea) {
188 master_priv->sarea_priv = (drm_i915_sarea_t *)
189 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
190 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800191 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000192 }
193
Eric Anholt673a3942008-07-30 12:06:12 -0700194 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000195 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700196 i915_dma_cleanup(dev);
197 DRM_ERROR("Client tried to initialize ringbuffer in "
198 "GEM mode\n");
199 return -EINVAL;
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Chris Wilsone8616b62011-01-20 09:57:11 +0000202 ret = intel_render_ring_init_dri(dev,
203 init->ring_start,
204 init->ring_size);
205 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700206 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000207 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200211 dev_priv->dri1.cpp = init->cpp;
212 dev_priv->dri1.back_offset = init->back_offset;
213 dev_priv->dri1.front_offset = init->front_offset;
214 dev_priv->dri1.current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000215 if (master_priv->sarea_priv)
216 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* Allow hardware batchbuffers unless told otherwise.
219 */
Daniel Vetter87813422012-05-02 11:49:32 +0200220 dev_priv->dri1.allow_batchbuffer = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
Dave Airlie84b1fd12007-07-11 15:53:27 +1000225static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000228 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800230 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Daniel Vetter4225d0f2012-04-26 23:28:16 +0200232 if (ring->virtual_start == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 DRM_ERROR("can not ioremap virtual address for"
234 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000235 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800239 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000241 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800243 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800244 ring->status_page.page_addr);
245 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100246 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000247 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000248 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800249
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800250 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 return 0;
253}
254
Eric Anholtc153f452007-09-03 12:06:45 +1000255static int i915_dma_init(struct drm_device *dev, void *data,
256 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Eric Anholtc153f452007-09-03 12:06:45 +1000258 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int retcode = 0;
260
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200261 if (drm_core_check_feature(dev, DRIVER_MODESET))
262 return -ENODEV;
263
Eric Anholtc153f452007-09-03 12:06:45 +1000264 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000266 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
268 case I915_CLEANUP_DMA:
269 retcode = i915_dma_cleanup(dev);
270 break;
271 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100272 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 break;
274 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000275 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
277 }
278
279 return retcode;
280}
281
282/* Implement basically the same security restrictions as hardware does
283 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
284 *
285 * Most of the calculations below involve calculating the size of a
286 * particular instruction. It's important to get the size right as
287 * that tells us where the next instruction to check is. Any illegal
288 * instruction detected will be given a size of zero, which is a
289 * signal to abort the rest of the buffer.
290 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100291static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 switch (((cmd >> 29) & 0x7)) {
294 case 0x0:
295 switch ((cmd >> 23) & 0x3f) {
296 case 0x0:
297 return 1; /* MI_NOOP */
298 case 0x4:
299 return 1; /* MI_FLUSH */
300 default:
301 return 0; /* disallow everything else */
302 }
303 break;
304 case 0x1:
305 return 0; /* reserved */
306 case 0x2:
307 return (cmd & 0xff) + 2; /* 2d commands */
308 case 0x3:
309 if (((cmd >> 24) & 0x1f) <= 0x18)
310 return 1;
311
312 switch ((cmd >> 24) & 0x1f) {
313 case 0x1c:
314 return 1;
315 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000316 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 case 0x3:
318 return (cmd & 0x1f) + 2;
319 case 0x4:
320 return (cmd & 0xf) + 2;
321 default:
322 return (cmd & 0xffff) + 2;
323 }
324 case 0x1e:
325 if (cmd & (1 << 23))
326 return (cmd & 0xffff) + 1;
327 else
328 return 1;
329 case 0x1f:
330 if ((cmd & (1 << 23)) == 0) /* inline vertices */
331 return (cmd & 0x1ffff) + 2;
332 else if (cmd & (1 << 17)) /* indirect random */
333 if ((cmd & 0xffff) == 0)
334 return 0; /* unknown length, too hard */
335 else
336 return (((cmd & 0xffff) + 1) / 2) + 1;
337 else
338 return 2; /* indirect sequential */
339 default:
340 return 0;
341 }
342 default:
343 return 0;
344 }
345
346 return 0;
347}
348
Eric Anholt201361a2009-03-11 12:30:04 -0700349static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100352 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000354 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000355 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100358 int sz = validate_cmd(buffer[i]);
359 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000360 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100361 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100364 ret = BEGIN_LP_RING((dwords+1)&~1);
365 if (ret)
366 return ret;
367
368 for (i = 0; i < dwords; i++)
369 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100370 if (dwords & 1)
371 OUT_RING(0);
372
373 ADVANCE_LP_RING();
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
376}
377
Eric Anholt673a3942008-07-30 12:06:12 -0700378int
379i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000380 struct drm_clip_rect *box,
381 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100383 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100384 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000386 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
387 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000389 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000390 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100393 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100394 ret = BEGIN_LP_RING(4);
395 if (ret)
396 return ret;
397
Alan Hourihanec29b6692006-08-12 16:29:24 +1000398 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000399 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
400 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000401 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000402 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100403 ret = BEGIN_LP_RING(6);
404 if (ret)
405 return ret;
406
Alan Hourihanec29b6692006-08-12 16:29:24 +1000407 OUT_RING(GFX_OP_DRAWRECT_INFO);
408 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000409 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
410 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000411 OUT_RING(DR4);
412 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000413 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100414 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 return 0;
417}
418
Alan Hourihanec29b6692006-08-12 16:29:24 +1000419/* XXX: Emitting the counter should really be moved to part of the IRQ
420 * emit. For now, do it in both places:
421 */
422
Dave Airlie84b1fd12007-07-11 15:53:27 +1000423static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100424{
425 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000426 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100427
Daniel Vetter231f42a2012-11-02 19:55:05 +0100428 dev_priv->dri1.counter++;
429 if (dev_priv->dri1.counter > 0x7FFFFFFFUL)
430 dev_priv->dri1.counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000431 if (master_priv->sarea_priv)
Daniel Vetter231f42a2012-11-02 19:55:05 +0100432 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter;
Dave Airliede227f52006-01-25 15:31:43 +1100433
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100434 if (BEGIN_LP_RING(4) == 0) {
435 OUT_RING(MI_STORE_DWORD_INDEX);
436 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100437 OUT_RING(dev_priv->dri1.counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100438 OUT_RING(0);
439 ADVANCE_LP_RING();
440 }
Dave Airliede227f52006-01-25 15:31:43 +1100441}
442
Dave Airlie84b1fd12007-07-11 15:53:27 +1000443static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700444 drm_i915_cmdbuffer_t *cmd,
445 struct drm_clip_rect *cliprects,
446 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 int nbox = cmd->num_cliprects;
449 int i = 0, count, ret;
450
451 if (cmd->sz & 0x3) {
452 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000453 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 i915_kernel_lost_context(dev);
457
458 count = nbox ? nbox : 1;
459
460 for (i = 0; i < count; i++) {
461 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000462 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 cmd->DR1, cmd->DR4);
464 if (ret)
465 return ret;
466 }
467
Eric Anholt201361a2009-03-11 12:30:04 -0700468 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (ret)
470 return ret;
471 }
472
Dave Airliede227f52006-01-25 15:31:43 +1100473 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475}
476
Dave Airlie84b1fd12007-07-11 15:53:27 +1000477static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700478 drm_i915_batchbuffer_t * batch,
479 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100481 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100483 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if ((batch->start | batch->used) & 0x7) {
486 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000487 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 i915_kernel_lost_context(dev);
491
492 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 for (i = 0; i < count; i++) {
494 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000495 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100496 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (ret)
498 return ret;
499 }
500
Keith Packard0790d5e2008-07-30 12:28:47 -0700501 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100502 ret = BEGIN_LP_RING(2);
503 if (ret)
504 return ret;
505
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100506 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000507 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
508 OUT_RING(batch->start);
509 } else {
510 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
511 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100514 ret = BEGIN_LP_RING(4);
515 if (ret)
516 return ret;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 OUT_RING(MI_BATCH_BUFFER);
519 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
520 OUT_RING(batch->start + batch->used - 4);
521 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100523 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Zou Nan hai1cafd342010-06-25 13:40:24 +0800526
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100527 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100528 if (BEGIN_LP_RING(2) == 0) {
529 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
530 OUT_RING(MI_NOOP);
531 ADVANCE_LP_RING();
532 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100535 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return 0;
537}
538
Dave Airlieaf6061a2008-05-07 12:15:39 +1000539static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000542 struct drm_i915_master_private *master_priv =
543 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100544 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Dave Airlie7c1c2872008-11-28 14:22:24 +1000546 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400547 return -EINVAL;
548
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800549 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800550 __func__,
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200551 dev_priv->dri1.current_page,
yakui_zhaobe25ed92009-06-02 14:13:55 +0800552 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dave Airlieaf6061a2008-05-07 12:15:39 +1000554 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100556 ret = BEGIN_LP_RING(10);
557 if (ret)
558 return ret;
559
Jesse Barnes585fb112008-07-29 11:54:06 -0700560 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000561 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Dave Airlieaf6061a2008-05-07 12:15:39 +1000563 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
564 OUT_RING(0);
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200565 if (dev_priv->dri1.current_page == 0) {
566 OUT_RING(dev_priv->dri1.back_offset);
567 dev_priv->dri1.current_page = 1;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000568 } else {
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200569 OUT_RING(dev_priv->dri1.front_offset);
570 dev_priv->dri1.current_page = 0;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000571 }
572 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000573
Dave Airlieaf6061a2008-05-07 12:15:39 +1000574 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
575 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100576
Dave Airlieaf6061a2008-05-07 12:15:39 +1000577 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000578
Daniel Vetter231f42a2012-11-02 19:55:05 +0100579 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000580
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100581 if (BEGIN_LP_RING(4) == 0) {
582 OUT_RING(MI_STORE_DWORD_INDEX);
583 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100584 OUT_RING(dev_priv->dri1.counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100585 OUT_RING(0);
586 ADVANCE_LP_RING();
587 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000588
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200589 master_priv->sarea_priv->pf_current_page = dev_priv->dri1.current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000593static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000595 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 i915_kernel_lost_context(dev);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700598 return intel_wait_ring_idle(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Eric Anholtc153f452007-09-03 12:06:45 +1000601static int i915_flush_ioctl(struct drm_device *dev, void *data,
602 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Eric Anholt546b0972008-09-01 16:45:29 -0700604 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200606 if (drm_core_check_feature(dev, DRIVER_MODESET))
607 return -ENODEV;
608
Eric Anholt546b0972008-09-01 16:45:29 -0700609 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
610
611 mutex_lock(&dev->struct_mutex);
612 ret = i915_quiescent(dev);
613 mutex_unlock(&dev->struct_mutex);
614
615 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Eric Anholtc153f452007-09-03 12:06:45 +1000618static int i915_batchbuffer(struct drm_device *dev, void *data,
619 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000622 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000624 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000625 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700627 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200629 if (drm_core_check_feature(dev, DRIVER_MODESET))
630 return -ENODEV;
631
Daniel Vetter87813422012-05-02 11:49:32 +0200632 if (!dev_priv->dri1.allow_batchbuffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800637 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800638 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Eric Anholt546b0972008-09-01 16:45:29 -0700640 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Eric Anholt201361a2009-03-11 12:30:04 -0700642 if (batch->num_cliprects < 0)
643 return -EINVAL;
644
645 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700646 cliprects = kcalloc(batch->num_cliprects,
647 sizeof(struct drm_clip_rect),
648 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700649 if (cliprects == NULL)
650 return -ENOMEM;
651
652 ret = copy_from_user(cliprects, batch->cliprects,
653 batch->num_cliprects *
654 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200655 if (ret != 0) {
656 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700657 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200658 }
Eric Anholt201361a2009-03-11 12:30:04 -0700659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Eric Anholt546b0972008-09-01 16:45:29 -0700661 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700662 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700663 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400665 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000666 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700667
668fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700669 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return ret;
672}
673
Eric Anholtc153f452007-09-03 12:06:45 +1000674static int i915_cmdbuffer(struct drm_device *dev, void *data,
675 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000678 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000680 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000681 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700682 struct drm_clip_rect *cliprects = NULL;
683 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int ret;
685
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800686 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800687 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200689 if (drm_core_check_feature(dev, DRIVER_MODESET))
690 return -ENODEV;
691
Eric Anholt546b0972008-09-01 16:45:29 -0700692 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Eric Anholt201361a2009-03-11 12:30:04 -0700694 if (cmdbuf->num_cliprects < 0)
695 return -EINVAL;
696
Eric Anholt9a298b22009-03-24 12:23:04 -0700697 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700698 if (batch_data == NULL)
699 return -ENOMEM;
700
701 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200702 if (ret != 0) {
703 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700704 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200705 }
Eric Anholt201361a2009-03-11 12:30:04 -0700706
707 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700708 cliprects = kcalloc(cmdbuf->num_cliprects,
709 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000710 if (cliprects == NULL) {
711 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700712 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000713 }
Eric Anholt201361a2009-03-11 12:30:04 -0700714
715 ret = copy_from_user(cliprects, cmdbuf->cliprects,
716 cmdbuf->num_cliprects *
717 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200718 if (ret != 0) {
719 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700720 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Eric Anholt546b0972008-09-01 16:45:29 -0700724 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700725 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700726 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ret) {
728 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000729 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400732 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000733 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700734
Eric Anholt201361a2009-03-11 12:30:04 -0700735fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700736 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000737fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700738 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700739
740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Daniel Vetter94888672012-04-26 23:28:08 +0200743static int i915_emit_irq(struct drm_device * dev)
744{
745 drm_i915_private_t *dev_priv = dev->dev_private;
746 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
747
748 i915_kernel_lost_context(dev);
749
750 DRM_DEBUG_DRIVER("\n");
751
Daniel Vetter231f42a2012-11-02 19:55:05 +0100752 dev_priv->dri1.counter++;
753 if (dev_priv->dri1.counter > 0x7FFFFFFFUL)
754 dev_priv->dri1.counter = 1;
Daniel Vetter94888672012-04-26 23:28:08 +0200755 if (master_priv->sarea_priv)
Daniel Vetter231f42a2012-11-02 19:55:05 +0100756 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200757
758 if (BEGIN_LP_RING(4) == 0) {
759 OUT_RING(MI_STORE_DWORD_INDEX);
760 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100761 OUT_RING(dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200762 OUT_RING(MI_USER_INTERRUPT);
763 ADVANCE_LP_RING();
764 }
765
Daniel Vetter231f42a2012-11-02 19:55:05 +0100766 return dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200767}
768
769static int i915_wait_irq(struct drm_device * dev, int irq_nr)
770{
771 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
772 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
773 int ret = 0;
774 struct intel_ring_buffer *ring = LP_RING(dev_priv);
775
776 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
777 READ_BREADCRUMB(dev_priv));
778
779 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
780 if (master_priv->sarea_priv)
781 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
782 return 0;
783 }
784
785 if (master_priv->sarea_priv)
786 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
787
788 if (ring->irq_get(ring)) {
789 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
790 READ_BREADCRUMB(dev_priv) >= irq_nr);
791 ring->irq_put(ring);
792 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
793 ret = -EBUSY;
794
795 if (ret == -EBUSY) {
796 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Daniel Vetter231f42a2012-11-02 19:55:05 +0100797 READ_BREADCRUMB(dev_priv), (int)dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200798 }
799
800 return ret;
801}
802
803/* Needs the lock as it touches the ring.
804 */
805static int i915_irq_emit(struct drm_device *dev, void *data,
806 struct drm_file *file_priv)
807{
808 drm_i915_private_t *dev_priv = dev->dev_private;
809 drm_i915_irq_emit_t *emit = data;
810 int result;
811
812 if (drm_core_check_feature(dev, DRIVER_MODESET))
813 return -ENODEV;
814
815 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
816 DRM_ERROR("called with no initialization\n");
817 return -EINVAL;
818 }
819
820 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
821
822 mutex_lock(&dev->struct_mutex);
823 result = i915_emit_irq(dev);
824 mutex_unlock(&dev->struct_mutex);
825
826 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
827 DRM_ERROR("copy_to_user\n");
828 return -EFAULT;
829 }
830
831 return 0;
832}
833
834/* Doesn't need the hardware lock.
835 */
836static int i915_irq_wait(struct drm_device *dev, void *data,
837 struct drm_file *file_priv)
838{
839 drm_i915_private_t *dev_priv = dev->dev_private;
840 drm_i915_irq_wait_t *irqwait = data;
841
842 if (drm_core_check_feature(dev, DRIVER_MODESET))
843 return -ENODEV;
844
845 if (!dev_priv) {
846 DRM_ERROR("called with no initialization\n");
847 return -EINVAL;
848 }
849
850 return i915_wait_irq(dev, irqwait->irq_seq);
851}
852
Daniel Vetterd1c1edb2012-04-26 23:28:01 +0200853static int i915_vblank_pipe_get(struct drm_device *dev, void *data,
854 struct drm_file *file_priv)
855{
856 drm_i915_private_t *dev_priv = dev->dev_private;
857 drm_i915_vblank_pipe_t *pipe = data;
858
859 if (drm_core_check_feature(dev, DRIVER_MODESET))
860 return -ENODEV;
861
862 if (!dev_priv) {
863 DRM_ERROR("called with no initialization\n");
864 return -EINVAL;
865 }
866
867 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
868
869 return 0;
870}
871
872/**
873 * Schedule buffer swap at given vertical blank.
874 */
875static int i915_vblank_swap(struct drm_device *dev, void *data,
876 struct drm_file *file_priv)
877{
878 /* The delayed swap mechanism was fundamentally racy, and has been
879 * removed. The model was that the client requested a delayed flip/swap
880 * from the kernel, then waited for vblank before continuing to perform
881 * rendering. The problem was that the kernel might wake the client
882 * up before it dispatched the vblank swap (since the lock has to be
883 * held while touching the ringbuffer), in which case the client would
884 * clear and start the next frame before the swap occurred, and
885 * flicker would occur in addition to likely missing the vblank.
886 *
887 * In the absence of this ioctl, userland falls back to a correct path
888 * of waiting for a vblank, then dispatching the swap on its own.
889 * Context switching to userland and back is plenty fast enough for
890 * meeting the requirements of vblank swapping.
891 */
892 return -EINVAL;
893}
894
Eric Anholtc153f452007-09-03 12:06:45 +1000895static int i915_flip_bufs(struct drm_device *dev, void *data,
896 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Eric Anholt546b0972008-09-01 16:45:29 -0700898 int ret;
899
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200900 if (drm_core_check_feature(dev, DRIVER_MODESET))
901 return -ENODEV;
902
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800903 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric Anholt546b0972008-09-01 16:45:29 -0700905 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Eric Anholt546b0972008-09-01 16:45:29 -0700907 mutex_lock(&dev->struct_mutex);
908 ret = i915_dispatch_flip(dev);
909 mutex_unlock(&dev->struct_mutex);
910
911 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Eric Anholtc153f452007-09-03 12:06:45 +1000914static int i915_getparam(struct drm_device *dev, void *data,
915 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000918 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int value;
920
921 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000922 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000923 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Eric Anholtc153f452007-09-03 12:06:45 +1000926 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700928 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 break;
930 case I915_PARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200931 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100933 case I915_PARAM_LAST_DISPATCH:
934 value = READ_BREADCRUMB(dev_priv);
935 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400936 case I915_PARAM_CHIPSET_ID:
937 value = dev->pci_device;
938 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700939 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200940 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700941 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800942 case I915_PARAM_NUM_FENCES_AVAIL:
943 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
944 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200945 case I915_PARAM_HAS_OVERLAY:
946 value = dev_priv->overlay ? 1 : 0;
947 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800948 case I915_PARAM_HAS_PAGEFLIPPING:
949 value = 1;
950 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500951 case I915_PARAM_HAS_EXECBUF2:
952 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200953 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500954 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800955 case I915_PARAM_HAS_BSD:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100956 value = intel_ring_initialized(&dev_priv->ring[VCS]);
Zou Nan haie3a815f2010-05-31 13:58:47 +0800957 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100958 case I915_PARAM_HAS_BLT:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100959 value = intel_ring_initialized(&dev_priv->ring[BCS]);
Chris Wilson549f7362010-10-19 11:19:32 +0100960 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100961 case I915_PARAM_HAS_RELAXED_FENCING:
962 value = 1;
963 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100964 case I915_PARAM_HAS_COHERENT_RINGS:
965 value = 1;
966 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000967 case I915_PARAM_HAS_EXEC_CONSTANTS:
968 value = INTEL_INFO(dev)->gen >= 4;
969 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000970 case I915_PARAM_HAS_RELAXED_DELTA:
971 value = 1;
972 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800973 case I915_PARAM_HAS_GEN7_SOL_RESET:
974 value = 1;
975 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200976 case I915_PARAM_HAS_LLC:
977 value = HAS_LLC(dev);
978 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100979 case I915_PARAM_HAS_ALIASING_PPGTT:
980 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
981 break;
Ben Widawsky172cf152012-06-05 15:24:25 -0700982 case I915_PARAM_HAS_WAIT_TIMEOUT:
983 value = 1;
984 break;
Chris Wilson2fedbff2012-08-08 10:23:22 +0100985 case I915_PARAM_HAS_SEMAPHORES:
986 value = i915_semaphore_is_enabled(dev);
987 break;
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000988 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
989 value = 1;
990 break;
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100991 case I915_PARAM_HAS_SECURE_BATCHES:
992 value = capable(CAP_SYS_ADMIN);
993 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800995 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500996 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000997 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
Eric Anholtc153f452007-09-03 12:06:45 +10001000 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001002 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004
1005 return 0;
1006}
1007
Eric Anholtc153f452007-09-03 12:06:45 +10001008static int i915_setparam(struct drm_device *dev, void *data,
1009 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001012 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001015 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001016 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
Eric Anholtc153f452007-09-03 12:06:45 +10001019 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 break;
1022 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 break;
1024 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +02001025 dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001027 case I915_SETPARAM_NUM_USED_FENCES:
1028 if (param->value > dev_priv->num_fence_regs ||
1029 param->value < 0)
1030 return -EINVAL;
1031 /* Userspace can use first N regs */
1032 dev_priv->fence_reg_start = param->value;
1033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001035 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +08001036 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001037 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
1040 return 0;
1041}
1042
Eric Anholtc153f452007-09-03 12:06:45 +10001043static int i915_set_status_page(struct drm_device *dev, void *data,
1044 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001045{
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001046 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001047 drm_i915_hws_addr_t *hws = data;
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001048 struct intel_ring_buffer *ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001049
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001050 if (drm_core_check_feature(dev, DRIVER_MODESET))
1051 return -ENODEV;
1052
Zhenyu Wangb39d50e2008-02-19 20:59:09 +10001053 if (!I915_NEED_GFX_HWS(dev))
1054 return -EINVAL;
1055
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001056 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001057 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001058 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001059 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001060
Jesse Barnes79e53942008-11-07 14:24:08 -08001061 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1062 WARN(1, "tried to set status page when mode setting active\n");
1063 return 0;
1064 }
1065
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001066 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001067
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001068 ring = LP_RING(dev_priv);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001069 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +10001070
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001071 dev_priv->dri1.gfx_hws_cpu_addr =
1072 ioremap_wc(dev_priv->mm.gtt_base_addr + hws->addr, 4096);
Daniel Vetter316d3882012-04-26 23:28:15 +02001073 if (dev_priv->dri1.gfx_hws_cpu_addr == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001074 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -07001075 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001076 DRM_ERROR("can not ioremap virtual address for"
1077 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001078 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001079 }
Daniel Vetter316d3882012-04-26 23:28:15 +02001080
1081 memset_io(dev_priv->dri1.gfx_hws_cpu_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001082 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001083
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001084 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001085 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001086 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001087 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001088 return 0;
1089}
1090
Dave Airlieec2a4c32009-08-04 11:43:41 +10001091static int i915_get_bridge_dev(struct drm_device *dev)
1092{
1093 struct drm_i915_private *dev_priv = dev->dev_private;
1094
Akshay Joshi0206e352011-08-16 15:34:10 -04001095 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +10001096 if (!dev_priv->bridge_dev) {
1097 DRM_ERROR("bridge device not found\n");
1098 return -1;
1099 }
1100 return 0;
1101}
1102
Zhenyu Wangc48044112009-12-17 14:48:43 +08001103#define MCHBAR_I915 0x44
1104#define MCHBAR_I965 0x48
1105#define MCHBAR_SIZE (4*4096)
1106
1107#define DEVEN_REG 0x54
1108#define DEVEN_MCHBAR_EN (1 << 28)
1109
1110/* Allocate space for the MCH regs if needed, return nonzero on error */
1111static int
1112intel_alloc_mchbar_resource(struct drm_device *dev)
1113{
1114 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001115 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001116 u32 temp_lo, temp_hi = 0;
1117 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001118 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001119
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001120 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001121 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
1122 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
1123 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
1124
1125 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
1126#ifdef CONFIG_PNP
1127 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +01001128 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
1129 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001130#endif
1131
1132 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +01001133 dev_priv->mch_res.name = "i915 MCHBAR";
1134 dev_priv->mch_res.flags = IORESOURCE_MEM;
1135 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
1136 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001137 MCHBAR_SIZE, MCHBAR_SIZE,
1138 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +01001139 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001140 dev_priv->bridge_dev);
1141 if (ret) {
1142 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
1143 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001144 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001145 }
1146
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001147 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001148 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
1149 upper_32_bits(dev_priv->mch_res.start));
1150
1151 pci_write_config_dword(dev_priv->bridge_dev, reg,
1152 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +01001153 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001154}
1155
1156/* Setup MCHBAR if possible, return true if we should disable it again */
1157static void
1158intel_setup_mchbar(struct drm_device *dev)
1159{
1160 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001161 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001162 u32 temp;
1163 bool enabled;
1164
1165 dev_priv->mchbar_need_disable = false;
1166
1167 if (IS_I915G(dev) || IS_I915GM(dev)) {
1168 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1169 enabled = !!(temp & DEVEN_MCHBAR_EN);
1170 } else {
1171 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1172 enabled = temp & 1;
1173 }
1174
1175 /* If it's already enabled, don't have to do anything */
1176 if (enabled)
1177 return;
1178
1179 if (intel_alloc_mchbar_resource(dev))
1180 return;
1181
1182 dev_priv->mchbar_need_disable = true;
1183
1184 /* Space is allocated or reserved, so enable it. */
1185 if (IS_I915G(dev) || IS_I915GM(dev)) {
1186 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1187 temp | DEVEN_MCHBAR_EN);
1188 } else {
1189 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1190 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1191 }
1192}
1193
1194static void
1195intel_teardown_mchbar(struct drm_device *dev)
1196{
1197 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001198 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001199 u32 temp;
1200
1201 if (dev_priv->mchbar_need_disable) {
1202 if (IS_I915G(dev) || IS_I915GM(dev)) {
1203 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1204 temp &= ~DEVEN_MCHBAR_EN;
1205 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1206 } else {
1207 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1208 temp &= ~1;
1209 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1210 }
1211 }
1212
1213 if (dev_priv->mch_res.start)
1214 release_resource(&dev_priv->mch_res);
1215}
1216
Dave Airlie28d52042009-09-21 14:33:58 +10001217/* true = enable decode, false = disable decoder */
1218static unsigned int i915_vga_set_decode(void *cookie, bool state)
1219{
1220 struct drm_device *dev = cookie;
1221
1222 intel_modeset_vga_set_state(dev, state);
1223 if (state)
1224 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1225 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1226 else
1227 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1228}
1229
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001230static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1231{
1232 struct drm_device *dev = pci_get_drvdata(pdev);
1233 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1234 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001235 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001236 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001237 /* i915 resume handler doesn't set to D0 */
1238 pci_set_power_state(dev->pdev, PCI_D0);
1239 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001240 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001241 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001242 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001243 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001244 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001245 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001246 }
1247}
1248
1249static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1250{
1251 struct drm_device *dev = pci_get_drvdata(pdev);
1252 bool can_switch;
1253
1254 spin_lock(&dev->count_lock);
1255 can_switch = (dev->open_count == 0);
1256 spin_unlock(&dev->count_lock);
1257 return can_switch;
1258}
1259
Takashi Iwai26ec6852012-05-11 07:51:17 +02001260static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
1261 .set_gpu_state = i915_switcheroo_set_state,
1262 .reprobe = NULL,
1263 .can_switch = i915_switcheroo_can_switch,
1264};
1265
Chris Wilson2c7111d2011-03-29 10:40:27 +01001266static int i915_load_modeset_init(struct drm_device *dev)
1267{
1268 struct drm_i915_private *dev_priv = dev->dev_private;
1269 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001270
Bryan Freed6d139a82010-10-14 09:14:51 +01001271 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001272 if (ret)
1273 DRM_INFO("failed to find VBIOS tables\n");
1274
Chris Wilson934f9922011-01-20 13:09:12 +00001275 /* If we have > 1 VGA cards, then we need to arbitrate access
1276 * to the common VGA resources.
1277 *
1278 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1279 * then we do not take part in VGA arbitration and the
1280 * vga_client_register() fails with -ENODEV.
1281 */
Dave Airlie28d52042009-09-21 14:33:58 +10001282 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001283 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001284 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001285
Jesse Barnes723bfd72010-10-07 16:01:13 -07001286 intel_register_dsm_handler();
1287
Takashi Iwai26ec6852012-05-11 07:51:17 +02001288 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001289 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001290 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001291
Chris Wilson9797fbf2012-04-24 15:47:39 +01001292 /* Initialise stolen first so that we may reserve preallocated
1293 * objects for the BIOS to KMS transition.
1294 */
1295 ret = i915_gem_init_stolen(dev);
1296 if (ret)
1297 goto cleanup_vga_switcheroo;
1298
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001299 intel_modeset_init(dev);
1300
Chris Wilson1070a422012-04-24 15:47:41 +01001301 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001302 if (ret)
Chris Wilson9797fbf2012-04-24 15:47:39 +01001303 goto cleanup_gem_stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001304
Chris Wilson2c7111d2011-03-29 10:40:27 +01001305 intel_modeset_gem_init(dev);
1306
Jesse Barnes073f34d2012-11-02 11:13:59 -07001307 INIT_WORK(&dev_priv->console_resume_work, intel_console_resume);
1308
Chris Wilson2c7111d2011-03-29 10:40:27 +01001309 ret = drm_irq_install(dev);
1310 if (ret)
1311 goto cleanup_gem;
1312
Jesse Barnes79e53942008-11-07 14:24:08 -08001313 /* Always safe in the mode setting case. */
1314 /* FIXME: do pre/post-mode set stuff in core KMS code */
1315 dev->vblank_disable_allowed = 1;
1316
Chris Wilson5a793952010-06-06 10:50:03 +01001317 ret = intel_fbdev_init(dev);
1318 if (ret)
1319 goto cleanup_irq;
1320
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001321 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001322
1323 /* We're off and running w/KMS */
1324 dev_priv->mm.suspended = 0;
1325
Jesse Barnes79e53942008-11-07 14:24:08 -08001326 return 0;
1327
Chris Wilson5a793952010-06-06 10:50:03 +01001328cleanup_irq:
1329 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001330cleanup_gem:
1331 mutex_lock(&dev->struct_mutex);
1332 i915_gem_cleanup_ringbuffer(dev);
1333 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001334 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001335cleanup_gem_stolen:
1336 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001337cleanup_vga_switcheroo:
1338 vga_switcheroo_unregister_client(dev->pdev);
1339cleanup_vga_client:
1340 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001341out:
1342 return ret;
1343}
1344
Dave Airlie7c1c2872008-11-28 14:22:24 +10001345int i915_master_create(struct drm_device *dev, struct drm_master *master)
1346{
1347 struct drm_i915_master_private *master_priv;
1348
Eric Anholt9a298b22009-03-24 12:23:04 -07001349 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001350 if (!master_priv)
1351 return -ENOMEM;
1352
1353 master->driver_priv = master_priv;
1354 return 0;
1355}
1356
1357void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1358{
1359 struct drm_i915_master_private *master_priv = master->driver_priv;
1360
1361 if (!master_priv)
1362 return;
1363
Eric Anholt9a298b22009-03-24 12:23:04 -07001364 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001365
1366 master->driver_priv = NULL;
1367}
1368
Adam Jacksone2b665c2012-03-14 11:22:10 -04001369static void
1370i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1371 unsigned long size)
1372{
Chris Wilson23f54be2012-03-23 17:38:49 +00001373 dev_priv->mm.gtt_mtrr = -1;
1374
Adam Jackson9e984bc12012-03-14 11:22:11 -04001375#if defined(CONFIG_X86_PAT)
1376 if (cpu_has_pat)
1377 return;
1378#endif
1379
Adam Jacksone2b665c2012-03-14 11:22:10 -04001380 /* Set up a WC MTRR for non-PAT systems. This is more common than
1381 * one would think, because the kernel disables PAT on first
1382 * generation Core chips because WC PAT gets overridden by a UC
1383 * MTRR if present. Even if a UC MTRR isn't present.
1384 */
1385 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1386 if (dev_priv->mm.gtt_mtrr < 0) {
1387 DRM_INFO("MTRR allocation failed. Graphics "
1388 "performance may suffer.\n");
1389 }
1390}
1391
Daniel Vettere1887192012-06-12 11:28:17 +02001392static void i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
1393{
1394 struct apertures_struct *ap;
1395 struct pci_dev *pdev = dev_priv->dev->pdev;
1396 bool primary;
1397
1398 ap = alloc_apertures(1);
1399 if (!ap)
1400 return;
1401
Daniel Vetter87207ca2012-06-24 20:51:36 +02001402 ap->ranges[0].base = dev_priv->mm.gtt->gma_bus_addr;
Daniel Vettere1887192012-06-12 11:28:17 +02001403 ap->ranges[0].size =
1404 dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
1405 primary =
1406 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
1407
1408 remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
1409
1410 kfree(ap);
1411}
1412
Daniel Vetterc96ea642012-08-08 22:01:51 +02001413static void i915_dump_device_info(struct drm_i915_private *dev_priv)
1414{
1415 const struct intel_device_info *info = dev_priv->info;
1416
1417#define DEV_INFO_FLAG(name) info->name ? #name "," : ""
1418#define DEV_INFO_SEP ,
1419 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x flags="
1420 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
1421 info->gen,
1422 dev_priv->dev->pdev->device,
1423 DEV_INFO_FLAGS);
1424#undef DEV_INFO_FLAG
1425#undef DEV_INFO_SEP
1426}
1427
Eric Anholt63ee41d2010-12-20 18:40:06 -08001428/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001429 * i915_driver_load - setup chip and create an initial config
1430 * @dev: DRM device
1431 * @flags: startup flags
1432 *
1433 * The driver load routine has to do several things:
1434 * - drive output discovery via intel_modeset_init()
1435 * - initialize the memory manager
1436 * - allocate initial config memory
1437 * - setup the DRM framebuffer with the allocated memory
1438 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001439int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001440{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001441 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001442 struct intel_device_info *info;
Chris Wilson934d6082012-09-14 11:57:46 +01001443 int ret = 0, mmio_bar, mmio_size;
Daniel Vetter9021f282012-03-26 09:45:41 +02001444 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001445
Daniel Vetter26394d92012-03-26 21:33:18 +02001446 info = (struct intel_device_info *) flags;
1447
1448 /* Refuse to load on gen6+ without kms enabled. */
1449 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1450 return -ENODEV;
1451
Dave Airlie22eae942005-11-10 22:16:34 +11001452 /* i915 has 4 more counters */
1453 dev->counters += 4;
1454 dev->types[6] = _DRM_STAT_IRQ;
1455 dev->types[7] = _DRM_STAT_PRIMARY;
1456 dev->types[8] = _DRM_STAT_SECONDARY;
1457 dev->types[9] = _DRM_STAT_DMA;
1458
Eric Anholt9a298b22009-03-24 12:23:04 -07001459 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001460 if (dev_priv == NULL)
1461 return -ENOMEM;
1462
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001463 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001464 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001465 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001466
Daniel Vetterc96ea642012-08-08 22:01:51 +02001467 i915_dump_device_info(dev_priv);
1468
Dave Airlieec2a4c32009-08-04 11:43:41 +10001469 if (i915_get_bridge_dev(dev)) {
1470 ret = -EIO;
1471 goto free_priv;
1472 }
1473
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001474 ret = i915_gem_gtt_init(dev);
1475 if (ret)
Daniel Vettere1887192012-06-12 11:28:17 +02001476 goto put_bridge;
Daniel Vettere1887192012-06-12 11:28:17 +02001477
Chris Wilson16233922012-10-26 12:06:41 +01001478 if (drm_core_check_feature(dev, DRIVER_MODESET))
1479 i915_kick_out_firmware_fb(dev_priv);
Daniel Vettere1887192012-06-12 11:28:17 +02001480
Dave Airlie466e69b2011-12-19 11:15:29 +00001481 pci_set_master(dev->pdev);
1482
Daniel Vetter9f82d232010-08-30 21:25:23 +02001483 /* overlay on gen2 is broken and can't address above 1G */
1484 if (IS_GEN2(dev))
1485 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1486
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001487 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1488 * using 32bit addressing, overwriting memory if HWS is located
1489 * above 4GB.
1490 *
1491 * The documentation also mentions an issue with undefined
1492 * behaviour if any general state is accessed within a page above 4GB,
1493 * which also needs to be handled carefully.
1494 */
1495 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1496 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1497
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001498 mmio_bar = IS_GEN2(dev) ? 1 : 0;
Chris Wilson934d6082012-09-14 11:57:46 +01001499 /* Before gen4, the registers and the GTT are behind different BARs.
1500 * However, from gen4 onwards, the registers and the GTT are shared
1501 * in the same BAR, so we want to restrict this ioremap from
1502 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
1503 * the register BAR remains the same size for all the earlier
1504 * generations up to Ironlake.
1505 */
1506 if (info->gen < 5)
1507 mmio_size = 512*1024;
1508 else
1509 mmio_size = 2*1024*1024;
1510
1511 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001512 if (!dev_priv->regs) {
1513 DRM_ERROR("failed to map registers\n");
1514 ret = -EIO;
Daniel Vetter14be93d2012-06-08 15:55:40 +02001515 goto put_gmch;
Chris Wilson71e93392010-10-27 18:46:52 +01001516 }
1517
Daniel Vetter9021f282012-03-26 09:45:41 +02001518 aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001519 dev_priv->mm.gtt_base_addr = dev_priv->mm.gtt->gma_bus_addr;
Chris Wilson71e93392010-10-27 18:46:52 +01001520
Akshay Joshi0206e352011-08-16 15:34:10 -04001521 dev_priv->mm.gtt_mapping =
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001522 io_mapping_create_wc(dev_priv->mm.gtt_base_addr,
1523 aperture_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001524 if (dev_priv->mm.gtt_mapping == NULL) {
1525 ret = -EIO;
Daniel Vettere1887192012-06-12 11:28:17 +02001526 goto out_rmmap;
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001527 }
1528
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001529 i915_mtrr_setup(dev_priv, dev_priv->mm.gtt_base_addr,
1530 aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08001531
Chris Wilsone642abb2010-09-09 12:46:34 +01001532 /* The i915 workqueue is primarily used for batched retirement of
1533 * requests (and thus managing bo) once the task has been completed
1534 * by the GPU. i915_gem_retire_requests() is called directly when we
1535 * need high-priority retirement, such as waiting for an explicit
1536 * bo.
1537 *
1538 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001539 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001540 *
1541 * All tasks on the workqueue are expected to acquire the dev mutex
1542 * so there is no point in running more than one instance of the
Tejun Heo53621862012-08-22 16:40:57 -07001543 * workqueue at any time. Use an ordered one.
Chris Wilsone642abb2010-09-09 12:46:34 +01001544 */
Tejun Heo53621862012-08-22 16:40:57 -07001545 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001546 if (dev_priv->wq == NULL) {
1547 DRM_ERROR("Failed to create our workqueue.\n");
1548 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07001549 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001550 }
1551
Paulo Zanoni45e6e3a2012-07-03 15:57:32 -03001552 /* This must be called before any calls to HAS_PCH_* */
1553 intel_detect_pch(dev);
1554
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001555 intel_irq_init(dev);
Chris Wilson990bbda2012-07-02 11:51:02 -03001556 intel_gt_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001557
Zhenyu Wangc48044112009-12-17 14:48:43 +08001558 /* Try to make sure MCHBAR is enabled before poking at it */
1559 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001560 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001561 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001562
Bryan Freed6d139a82010-10-14 09:14:51 +01001563 intel_setup_bios(dev);
1564
Eric Anholt673a3942008-07-30 12:06:12 -07001565 i915_gem_load(dev);
1566
Eric Anholted4cb412008-07-29 12:10:39 -07001567 /* On the 945G/GM, the chipset reports the MSI capability on the
1568 * integrated graphics even though the support isn't actually there
1569 * according to the published specs. It doesn't appear to function
1570 * correctly in testing on 945G.
1571 * This may be a side effect of MSI having been made available for PEG
1572 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001573 *
1574 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001575 * be lost or delayed, but we use them anyways to avoid
1576 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001577 */
Keith Packardb60678a2008-12-08 11:12:28 -08001578 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001579 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001580
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001581 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001582 spin_lock_init(&dev_priv->error_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001583 spin_lock_init(&dev_priv->rps.lock);
Alexander Shishkin99d0b1d2012-08-31 15:50:55 +03001584 spin_lock_init(&dev_priv->dpio_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07001585
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001586 mutex_init(&dev_priv->rps.hw_lock);
1587
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03001588 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07001589 dev_priv->num_pipe = 3;
1590 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001591 dev_priv->num_pipe = 2;
1592 else
1593 dev_priv->num_pipe = 1;
1594
1595 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001596 if (ret)
1597 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08001598
Ben Gamari11ed50e2009-09-14 17:48:45 -04001599 /* Start out suspended */
1600 dev_priv->mm.suspended = 1;
1601
Jesse Barnes79e53942008-11-07 14:24:08 -08001602 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02001603 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001604 if (ret < 0) {
1605 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00001606 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08001607 }
1608 }
1609
Ben Widawsky0136db582012-04-10 21:17:01 -07001610 i915_setup_sysfs(dev);
1611
Matthew Garrett74a365b2009-03-19 21:35:39 +00001612 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01001613 intel_opregion_init(dev);
1614 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00001615
Ben Gamarif65d9422009-09-14 17:48:44 -04001616 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
1617 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001618
Daniel Vettereb48eb02012-04-26 23:28:12 +02001619 if (IS_GEN5(dev))
1620 intel_gpu_ips_init(dev_priv);
Eric Anholt63ee41d2010-12-20 18:40:06 -08001621
Jesse Barnes79e53942008-11-07 14:24:08 -08001622 return 0;
1623
Chris Wilson56e2ea32010-11-08 17:10:29 +00001624out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07001625 if (dev_priv->mm.inactive_shrinker.shrink)
1626 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1627
Chris Wilson56e2ea32010-11-08 17:10:29 +00001628 if (dev->pdev->msi_enabled)
1629 pci_disable_msi(dev->pdev);
1630
1631 intel_teardown_gmbus(dev);
1632 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001633 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07001634out_mtrrfree:
1635 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001636 mtrr_del(dev_priv->mm.gtt_mtrr,
1637 dev_priv->mm.gtt_base_addr,
1638 aperture_size);
Keith Packarda7b85d22011-07-10 13:12:17 -07001639 dev_priv->mm.gtt_mtrr = -1;
1640 }
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001641 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001642out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01001643 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vettere1887192012-06-12 11:28:17 +02001644put_gmch:
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001645 i915_gem_gtt_fini(dev);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001646put_bridge:
1647 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001648free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001649 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001650 return ret;
1651}
1652
1653int i915_driver_unload(struct drm_device *dev)
1654{
1655 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02001656 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001657
Daniel Vettereb48eb02012-04-26 23:28:12 +02001658 intel_gpu_ips_teardown();
Jesse Barnes7648fa92010-05-20 14:28:11 -07001659
Ben Widawsky0136db582012-04-10 21:17:01 -07001660 i915_teardown_sysfs(dev);
1661
Chris Wilson17250b72010-10-28 12:51:39 +01001662 if (dev_priv->mm.inactive_shrinker.shrink)
1663 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1664
Daniel Vetterc911fc12010-08-20 21:23:20 +02001665 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001666 ret = i915_gpu_idle(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001667 if (ret)
1668 DRM_ERROR("failed to idle hardware: %d\n", ret);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001669 i915_gem_retire_requests(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001670 mutex_unlock(&dev->struct_mutex);
1671
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001672 /* Cancel the retire work handler, which should be idle now. */
1673 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
1674
Eric Anholtab657db12009-01-23 12:57:47 -08001675 io_mapping_free(dev_priv->mm.gtt_mapping);
1676 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001677 mtrr_del(dev_priv->mm.gtt_mtrr,
1678 dev_priv->mm.gtt_base_addr,
1679 dev_priv->mm.gtt->gtt_mappable_entries * PAGE_SIZE);
Eric Anholtab657db12009-01-23 12:57:47 -08001680 dev_priv->mm.gtt_mtrr = -1;
1681 }
1682
Chris Wilson44834a62010-08-19 16:09:23 +01001683 acpi_video_unregister();
1684
Jesse Barnes79e53942008-11-07 14:24:08 -08001685 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01001686 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001687 intel_modeset_cleanup(dev);
Jesse Barnes073f34d2012-11-02 11:13:59 -07001688 cancel_work_sync(&dev_priv->console_resume_work);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001689
Zhao Yakui6363ee62009-11-24 09:48:44 +08001690 /*
1691 * free the memory space allocated for the child device
1692 * config parsed from VBT
1693 */
1694 if (dev_priv->child_dev && dev_priv->child_dev_num) {
1695 kfree(dev_priv->child_dev);
1696 dev_priv->child_dev = NULL;
1697 dev_priv->child_dev_num = 0;
1698 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02001699
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001700 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001701 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001702 }
1703
Daniel Vettera8b48992010-08-20 21:25:11 +02001704 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001705 del_timer_sync(&dev_priv->hangcheck_timer);
1706 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02001707 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001708
Eric Anholted4cb412008-07-29 12:10:39 -07001709 if (dev->pdev->msi_enabled)
1710 pci_disable_msi(dev->pdev);
1711
Chris Wilson44834a62010-08-19 16:09:23 +01001712 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001713
Jesse Barnes79e53942008-11-07 14:24:08 -08001714 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02001715 /* Flush any outstanding unpin_work. */
1716 flush_workqueue(dev_priv->wq);
1717
Jesse Barnes79e53942008-11-07 14:24:08 -08001718 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07001719 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001720 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter55a66622012-06-19 21:55:32 +02001721 i915_gem_context_fini(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001722 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001723 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001724 i915_gem_cleanup_stolen(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001725 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001726
1727 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01001728
1729 if (!I915_NEED_GFX_HWS(dev))
1730 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001731 }
1732
Daniel Vetter701394c2010-10-10 18:54:08 +01001733 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01001734 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01001735
Chris Wilsonf899fc62010-07-20 15:44:45 -07001736 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001737 intel_teardown_mchbar(dev);
1738
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001739 destroy_workqueue(dev_priv->wq);
1740
Dave Airlieec2a4c32009-08-04 11:43:41 +10001741 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07001742 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001743
Dave Airlie22eae942005-11-10 22:16:34 +11001744 return 0;
1745}
1746
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001747int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001748{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001749 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001750
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001751 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001752 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
1753 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07001754 return -ENOMEM;
1755
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001756 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001757
Chris Wilson1c255952010-09-26 11:03:27 +01001758 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001759 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001760
Daniel Vetterdf12c6d2012-06-19 16:52:30 +02001761 idr_init(&file_priv->context_idr);
Ben Widawsky254f9652012-06-04 14:42:42 -07001762
Eric Anholt673a3942008-07-30 12:06:12 -07001763 return 0;
1764}
1765
Jesse Barnes79e53942008-11-07 14:24:08 -08001766/**
1767 * i915_driver_lastclose - clean up after all DRM clients have exited
1768 * @dev: DRM device
1769 *
1770 * Take care of cleaning up after all DRM clients have exited. In the
1771 * mode setting case, we want to restore the kernel's initial mode (just
1772 * in case the last client left us in a bad state).
1773 *
Daniel Vetter9021f282012-03-26 09:45:41 +02001774 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08001775 * and DMA structures, since the kernel won't be using them, and clea
1776 * up any GEM state.
1777 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001778void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001780 drm_i915_private_t *dev_priv = dev->dev_private;
1781
Daniel Vettere8aeaee2012-07-21 16:47:09 +02001782 /* On gen6+ we refuse to init without kms enabled, but then the drm core
1783 * goes right around and calls lastclose. Check for this and don't clean
1784 * up anything. */
1785 if (!dev_priv)
1786 return;
1787
1788 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01001789 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001790 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001791 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001792 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001793
Eric Anholt673a3942008-07-30 12:06:12 -07001794 i915_gem_lastclose(dev);
1795
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001796 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Eric Anholt6c340ea2007-08-25 20:23:09 +10001799void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Ben Widawsky254f9652012-06-04 14:42:42 -07001801 i915_gem_context_close(dev, file_priv);
Eric Anholtb9624422009-06-03 07:27:35 +00001802 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001805void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001806{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001807 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001808
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001809 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001810}
1811
Eric Anholtc153f452007-09-03 12:06:45 +10001812struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001813 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1814 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1815 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
1816 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1817 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1818 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1819 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
1820 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001821 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1822 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1823 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001824 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001825 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterd1c1edb2012-04-26 23:28:01 +02001826 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001827 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
1828 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
1829 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1830 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1831 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1832 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
1833 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1834 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1835 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky199adf42012-09-21 17:01:20 -07001836 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED),
1837 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001838 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
1839 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1840 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1841 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
1842 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
1843 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
1844 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
1845 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
1846 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
1847 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
1848 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
1849 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
1850 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
1851 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1852 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
1853 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1854 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08001855 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1856 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 -07001857 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky84624812012-06-04 14:42:54 -07001858 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED),
1859 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED),
Ben Widawskyc0c7bab2012-07-12 11:01:05 -07001860 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10001861};
1862
1863int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001864
Daniel Vetter9021f282012-03-26 09:45:41 +02001865/*
1866 * This is really ugly: Because old userspace abused the linux agp interface to
1867 * manage the gtt, we need to claim that all intel devices are agp. For
1868 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10001869 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001870int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001871{
1872 return 1;
1873}