blob: 11c7aa80e29b4b95d291c17e95e53c14a97c1b4b [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;
Ville Syrjälä633cf8f2012-12-03 18:43:32 +0200144 ring->space = ring->head - (ring->tail + I915_RING_FREE_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 i915_kernel_lost_context(dev);
Chris Wilson3e960502012-11-27 16:22:54 +0000596 return intel_ring_idle(LP_RING(dev->dev_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Eric Anholtc153f452007-09-03 12:06:45 +1000599static int i915_flush_ioctl(struct drm_device *dev, void *data,
600 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Eric Anholt546b0972008-09-01 16:45:29 -0700602 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200604 if (drm_core_check_feature(dev, DRIVER_MODESET))
605 return -ENODEV;
606
Eric Anholt546b0972008-09-01 16:45:29 -0700607 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
608
609 mutex_lock(&dev->struct_mutex);
610 ret = i915_quiescent(dev);
611 mutex_unlock(&dev->struct_mutex);
612
613 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Eric Anholtc153f452007-09-03 12:06:45 +1000616static int i915_batchbuffer(struct drm_device *dev, void *data,
617 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000620 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000622 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000623 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700625 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200627 if (drm_core_check_feature(dev, DRIVER_MODESET))
628 return -ENODEV;
629
Daniel Vetter87813422012-05-02 11:49:32 +0200630 if (!dev_priv->dri1.allow_batchbuffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800635 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800636 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Eric Anholt546b0972008-09-01 16:45:29 -0700638 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Eric Anholt201361a2009-03-11 12:30:04 -0700640 if (batch->num_cliprects < 0)
641 return -EINVAL;
642
643 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700644 cliprects = kcalloc(batch->num_cliprects,
645 sizeof(struct drm_clip_rect),
646 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700647 if (cliprects == NULL)
648 return -ENOMEM;
649
650 ret = copy_from_user(cliprects, batch->cliprects,
651 batch->num_cliprects *
652 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200653 if (ret != 0) {
654 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700655 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200656 }
Eric Anholt201361a2009-03-11 12:30:04 -0700657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Eric Anholt546b0972008-09-01 16:45:29 -0700659 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700660 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700661 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400663 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000664 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700665
666fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700667 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return ret;
670}
671
Eric Anholtc153f452007-09-03 12:06:45 +1000672static int i915_cmdbuffer(struct drm_device *dev, void *data,
673 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000676 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000678 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000679 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700680 struct drm_clip_rect *cliprects = NULL;
681 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 int ret;
683
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800684 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800685 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200687 if (drm_core_check_feature(dev, DRIVER_MODESET))
688 return -ENODEV;
689
Eric Anholt546b0972008-09-01 16:45:29 -0700690 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Eric Anholt201361a2009-03-11 12:30:04 -0700692 if (cmdbuf->num_cliprects < 0)
693 return -EINVAL;
694
Eric Anholt9a298b22009-03-24 12:23:04 -0700695 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700696 if (batch_data == NULL)
697 return -ENOMEM;
698
699 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200700 if (ret != 0) {
701 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700702 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200703 }
Eric Anholt201361a2009-03-11 12:30:04 -0700704
705 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700706 cliprects = kcalloc(cmdbuf->num_cliprects,
707 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000708 if (cliprects == NULL) {
709 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700710 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000711 }
Eric Anholt201361a2009-03-11 12:30:04 -0700712
713 ret = copy_from_user(cliprects, cmdbuf->cliprects,
714 cmdbuf->num_cliprects *
715 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200716 if (ret != 0) {
717 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700718 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
Eric Anholt546b0972008-09-01 16:45:29 -0700722 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700723 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700724 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (ret) {
726 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000727 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400730 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000731 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700732
Eric Anholt201361a2009-03-11 12:30:04 -0700733fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700734 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000735fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700736 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700737
738 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Daniel Vetter94888672012-04-26 23:28:08 +0200741static int i915_emit_irq(struct drm_device * dev)
742{
743 drm_i915_private_t *dev_priv = dev->dev_private;
744 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
745
746 i915_kernel_lost_context(dev);
747
748 DRM_DEBUG_DRIVER("\n");
749
Daniel Vetter231f42a2012-11-02 19:55:05 +0100750 dev_priv->dri1.counter++;
751 if (dev_priv->dri1.counter > 0x7FFFFFFFUL)
752 dev_priv->dri1.counter = 1;
Daniel Vetter94888672012-04-26 23:28:08 +0200753 if (master_priv->sarea_priv)
Daniel Vetter231f42a2012-11-02 19:55:05 +0100754 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200755
756 if (BEGIN_LP_RING(4) == 0) {
757 OUT_RING(MI_STORE_DWORD_INDEX);
758 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100759 OUT_RING(dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200760 OUT_RING(MI_USER_INTERRUPT);
761 ADVANCE_LP_RING();
762 }
763
Daniel Vetter231f42a2012-11-02 19:55:05 +0100764 return dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200765}
766
767static int i915_wait_irq(struct drm_device * dev, int irq_nr)
768{
769 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
770 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
771 int ret = 0;
772 struct intel_ring_buffer *ring = LP_RING(dev_priv);
773
774 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
775 READ_BREADCRUMB(dev_priv));
776
777 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
778 if (master_priv->sarea_priv)
779 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
780 return 0;
781 }
782
783 if (master_priv->sarea_priv)
784 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
785
786 if (ring->irq_get(ring)) {
787 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
788 READ_BREADCRUMB(dev_priv) >= irq_nr);
789 ring->irq_put(ring);
790 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
791 ret = -EBUSY;
792
793 if (ret == -EBUSY) {
794 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Daniel Vetter231f42a2012-11-02 19:55:05 +0100795 READ_BREADCRUMB(dev_priv), (int)dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200796 }
797
798 return ret;
799}
800
801/* Needs the lock as it touches the ring.
802 */
803static int i915_irq_emit(struct drm_device *dev, void *data,
804 struct drm_file *file_priv)
805{
806 drm_i915_private_t *dev_priv = dev->dev_private;
807 drm_i915_irq_emit_t *emit = data;
808 int result;
809
810 if (drm_core_check_feature(dev, DRIVER_MODESET))
811 return -ENODEV;
812
813 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
814 DRM_ERROR("called with no initialization\n");
815 return -EINVAL;
816 }
817
818 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
819
820 mutex_lock(&dev->struct_mutex);
821 result = i915_emit_irq(dev);
822 mutex_unlock(&dev->struct_mutex);
823
824 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
825 DRM_ERROR("copy_to_user\n");
826 return -EFAULT;
827 }
828
829 return 0;
830}
831
832/* Doesn't need the hardware lock.
833 */
834static int i915_irq_wait(struct drm_device *dev, void *data,
835 struct drm_file *file_priv)
836{
837 drm_i915_private_t *dev_priv = dev->dev_private;
838 drm_i915_irq_wait_t *irqwait = data;
839
840 if (drm_core_check_feature(dev, DRIVER_MODESET))
841 return -ENODEV;
842
843 if (!dev_priv) {
844 DRM_ERROR("called with no initialization\n");
845 return -EINVAL;
846 }
847
848 return i915_wait_irq(dev, irqwait->irq_seq);
849}
850
Daniel Vetterd1c1edb2012-04-26 23:28:01 +0200851static int i915_vblank_pipe_get(struct drm_device *dev, void *data,
852 struct drm_file *file_priv)
853{
854 drm_i915_private_t *dev_priv = dev->dev_private;
855 drm_i915_vblank_pipe_t *pipe = data;
856
857 if (drm_core_check_feature(dev, DRIVER_MODESET))
858 return -ENODEV;
859
860 if (!dev_priv) {
861 DRM_ERROR("called with no initialization\n");
862 return -EINVAL;
863 }
864
865 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
866
867 return 0;
868}
869
870/**
871 * Schedule buffer swap at given vertical blank.
872 */
873static int i915_vblank_swap(struct drm_device *dev, void *data,
874 struct drm_file *file_priv)
875{
876 /* The delayed swap mechanism was fundamentally racy, and has been
877 * removed. The model was that the client requested a delayed flip/swap
878 * from the kernel, then waited for vblank before continuing to perform
879 * rendering. The problem was that the kernel might wake the client
880 * up before it dispatched the vblank swap (since the lock has to be
881 * held while touching the ringbuffer), in which case the client would
882 * clear and start the next frame before the swap occurred, and
883 * flicker would occur in addition to likely missing the vblank.
884 *
885 * In the absence of this ioctl, userland falls back to a correct path
886 * of waiting for a vblank, then dispatching the swap on its own.
887 * Context switching to userland and back is plenty fast enough for
888 * meeting the requirements of vblank swapping.
889 */
890 return -EINVAL;
891}
892
Eric Anholtc153f452007-09-03 12:06:45 +1000893static int i915_flip_bufs(struct drm_device *dev, void *data,
894 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Eric Anholt546b0972008-09-01 16:45:29 -0700896 int ret;
897
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200898 if (drm_core_check_feature(dev, DRIVER_MODESET))
899 return -ENODEV;
900
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800901 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Eric Anholt546b0972008-09-01 16:45:29 -0700903 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric Anholt546b0972008-09-01 16:45:29 -0700905 mutex_lock(&dev->struct_mutex);
906 ret = i915_dispatch_flip(dev);
907 mutex_unlock(&dev->struct_mutex);
908
909 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Eric Anholtc153f452007-09-03 12:06:45 +1000912static int i915_getparam(struct drm_device *dev, void *data,
913 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000916 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int value;
918
919 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000920 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000921 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923
Eric Anholtc153f452007-09-03 12:06:45 +1000924 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700926 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
928 case I915_PARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200929 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100931 case I915_PARAM_LAST_DISPATCH:
932 value = READ_BREADCRUMB(dev_priv);
933 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400934 case I915_PARAM_CHIPSET_ID:
935 value = dev->pci_device;
936 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700937 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200938 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700939 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800940 case I915_PARAM_NUM_FENCES_AVAIL:
941 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
942 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200943 case I915_PARAM_HAS_OVERLAY:
944 value = dev_priv->overlay ? 1 : 0;
945 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800946 case I915_PARAM_HAS_PAGEFLIPPING:
947 value = 1;
948 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500949 case I915_PARAM_HAS_EXECBUF2:
950 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200951 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500952 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800953 case I915_PARAM_HAS_BSD:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100954 value = intel_ring_initialized(&dev_priv->ring[VCS]);
Zou Nan haie3a815f2010-05-31 13:58:47 +0800955 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100956 case I915_PARAM_HAS_BLT:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100957 value = intel_ring_initialized(&dev_priv->ring[BCS]);
Chris Wilson549f7362010-10-19 11:19:32 +0100958 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100959 case I915_PARAM_HAS_RELAXED_FENCING:
960 value = 1;
961 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100962 case I915_PARAM_HAS_COHERENT_RINGS:
963 value = 1;
964 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000965 case I915_PARAM_HAS_EXEC_CONSTANTS:
966 value = INTEL_INFO(dev)->gen >= 4;
967 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000968 case I915_PARAM_HAS_RELAXED_DELTA:
969 value = 1;
970 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800971 case I915_PARAM_HAS_GEN7_SOL_RESET:
972 value = 1;
973 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200974 case I915_PARAM_HAS_LLC:
975 value = HAS_LLC(dev);
976 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100977 case I915_PARAM_HAS_ALIASING_PPGTT:
978 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
979 break;
Ben Widawsky172cf152012-06-05 15:24:25 -0700980 case I915_PARAM_HAS_WAIT_TIMEOUT:
981 value = 1;
982 break;
Chris Wilson2fedbff2012-08-08 10:23:22 +0100983 case I915_PARAM_HAS_SEMAPHORES:
984 value = i915_semaphore_is_enabled(dev);
985 break;
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000986 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
987 value = 1;
988 break;
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100989 case I915_PARAM_HAS_SECURE_BATCHES:
990 value = capable(CAP_SYS_ADMIN);
991 break;
Daniel Vetterb45305f2012-12-17 16:21:27 +0100992 case I915_PARAM_HAS_PINNED_BATCHES:
993 value = 1;
994 break;
Daniel Vettered5982e2013-01-17 22:23:36 +0100995 case I915_PARAM_HAS_EXEC_NO_RELOC:
996 value = 1;
997 break;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000998 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
999 value = 1;
1000 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001002 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -05001003 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001004 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
Eric Anholtc153f452007-09-03 12:06:45 +10001007 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001009 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
1012 return 0;
1013}
1014
Eric Anholtc153f452007-09-03 12:06:45 +10001015static int i915_setparam(struct drm_device *dev, void *data,
1016 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001019 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001022 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001023 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
Eric Anholtc153f452007-09-03 12:06:45 +10001026 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 break;
1029 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +02001032 dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001034 case I915_SETPARAM_NUM_USED_FENCES:
1035 if (param->value > dev_priv->num_fence_regs ||
1036 param->value < 0)
1037 return -EINVAL;
1038 /* Userspace can use first N regs */
1039 dev_priv->fence_reg_start = param->value;
1040 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001042 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +08001043 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001044 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
1047 return 0;
1048}
1049
Eric Anholtc153f452007-09-03 12:06:45 +10001050static int i915_set_status_page(struct drm_device *dev, void *data,
1051 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001052{
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001053 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001054 drm_i915_hws_addr_t *hws = data;
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001055 struct intel_ring_buffer *ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001056
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001057 if (drm_core_check_feature(dev, DRIVER_MODESET))
1058 return -ENODEV;
1059
Zhenyu Wangb39d50e2008-02-19 20:59:09 +10001060 if (!I915_NEED_GFX_HWS(dev))
1061 return -EINVAL;
1062
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001063 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001064 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001065 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001066 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001067
Jesse Barnes79e53942008-11-07 14:24:08 -08001068 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1069 WARN(1, "tried to set status page when mode setting active\n");
1070 return 0;
1071 }
1072
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001073 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001074
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001075 ring = LP_RING(dev_priv);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001076 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +10001077
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001078 dev_priv->dri1.gfx_hws_cpu_addr =
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001079 ioremap_wc(dev_priv->gtt.mappable_base + hws->addr, 4096);
Daniel Vetter316d3882012-04-26 23:28:15 +02001080 if (dev_priv->dri1.gfx_hws_cpu_addr == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001081 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -07001082 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001083 DRM_ERROR("can not ioremap virtual address for"
1084 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001085 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001086 }
Daniel Vetter316d3882012-04-26 23:28:15 +02001087
1088 memset_io(dev_priv->dri1.gfx_hws_cpu_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001089 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001090
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001091 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001092 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001093 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001094 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001095 return 0;
1096}
1097
Dave Airlieec2a4c32009-08-04 11:43:41 +10001098static int i915_get_bridge_dev(struct drm_device *dev)
1099{
1100 struct drm_i915_private *dev_priv = dev->dev_private;
1101
Akshay Joshi0206e352011-08-16 15:34:10 -04001102 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +10001103 if (!dev_priv->bridge_dev) {
1104 DRM_ERROR("bridge device not found\n");
1105 return -1;
1106 }
1107 return 0;
1108}
1109
Zhenyu Wangc48044112009-12-17 14:48:43 +08001110#define MCHBAR_I915 0x44
1111#define MCHBAR_I965 0x48
1112#define MCHBAR_SIZE (4*4096)
1113
1114#define DEVEN_REG 0x54
1115#define DEVEN_MCHBAR_EN (1 << 28)
1116
1117/* Allocate space for the MCH regs if needed, return nonzero on error */
1118static int
1119intel_alloc_mchbar_resource(struct drm_device *dev)
1120{
1121 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001122 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001123 u32 temp_lo, temp_hi = 0;
1124 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001125 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001126
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001127 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001128 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
1129 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
1130 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
1131
1132 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
1133#ifdef CONFIG_PNP
1134 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +01001135 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
1136 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001137#endif
1138
1139 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +01001140 dev_priv->mch_res.name = "i915 MCHBAR";
1141 dev_priv->mch_res.flags = IORESOURCE_MEM;
1142 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
1143 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001144 MCHBAR_SIZE, MCHBAR_SIZE,
1145 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +01001146 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001147 dev_priv->bridge_dev);
1148 if (ret) {
1149 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
1150 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001151 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001152 }
1153
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001154 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001155 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
1156 upper_32_bits(dev_priv->mch_res.start));
1157
1158 pci_write_config_dword(dev_priv->bridge_dev, reg,
1159 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +01001160 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001161}
1162
1163/* Setup MCHBAR if possible, return true if we should disable it again */
1164static void
1165intel_setup_mchbar(struct drm_device *dev)
1166{
1167 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001168 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001169 u32 temp;
1170 bool enabled;
1171
1172 dev_priv->mchbar_need_disable = false;
1173
1174 if (IS_I915G(dev) || IS_I915GM(dev)) {
1175 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1176 enabled = !!(temp & DEVEN_MCHBAR_EN);
1177 } else {
1178 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1179 enabled = temp & 1;
1180 }
1181
1182 /* If it's already enabled, don't have to do anything */
1183 if (enabled)
1184 return;
1185
1186 if (intel_alloc_mchbar_resource(dev))
1187 return;
1188
1189 dev_priv->mchbar_need_disable = true;
1190
1191 /* Space is allocated or reserved, so enable it. */
1192 if (IS_I915G(dev) || IS_I915GM(dev)) {
1193 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1194 temp | DEVEN_MCHBAR_EN);
1195 } else {
1196 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1197 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1198 }
1199}
1200
1201static void
1202intel_teardown_mchbar(struct drm_device *dev)
1203{
1204 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001205 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001206 u32 temp;
1207
1208 if (dev_priv->mchbar_need_disable) {
1209 if (IS_I915G(dev) || IS_I915GM(dev)) {
1210 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1211 temp &= ~DEVEN_MCHBAR_EN;
1212 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1213 } else {
1214 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1215 temp &= ~1;
1216 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1217 }
1218 }
1219
1220 if (dev_priv->mch_res.start)
1221 release_resource(&dev_priv->mch_res);
1222}
1223
Dave Airlie28d52042009-09-21 14:33:58 +10001224/* true = enable decode, false = disable decoder */
1225static unsigned int i915_vga_set_decode(void *cookie, bool state)
1226{
1227 struct drm_device *dev = cookie;
1228
1229 intel_modeset_vga_set_state(dev, state);
1230 if (state)
1231 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1232 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1233 else
1234 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1235}
1236
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001237static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1238{
1239 struct drm_device *dev = pci_get_drvdata(pdev);
1240 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1241 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001242 pr_info("switched on\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 resume handler doesn't set to D0 */
1245 pci_set_power_state(dev->pdev, PCI_D0);
1246 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001247 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001248 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001249 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001250 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001251 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001252 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001253 }
1254}
1255
1256static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1257{
1258 struct drm_device *dev = pci_get_drvdata(pdev);
1259 bool can_switch;
1260
1261 spin_lock(&dev->count_lock);
1262 can_switch = (dev->open_count == 0);
1263 spin_unlock(&dev->count_lock);
1264 return can_switch;
1265}
1266
Takashi Iwai26ec6852012-05-11 07:51:17 +02001267static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
1268 .set_gpu_state = i915_switcheroo_set_state,
1269 .reprobe = NULL,
1270 .can_switch = i915_switcheroo_can_switch,
1271};
1272
Chris Wilson2c7111d2011-03-29 10:40:27 +01001273static int i915_load_modeset_init(struct drm_device *dev)
1274{
1275 struct drm_i915_private *dev_priv = dev->dev_private;
1276 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001277
Bryan Freed6d139a82010-10-14 09:14:51 +01001278 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001279 if (ret)
1280 DRM_INFO("failed to find VBIOS tables\n");
1281
Chris Wilson934f9922011-01-20 13:09:12 +00001282 /* If we have > 1 VGA cards, then we need to arbitrate access
1283 * to the common VGA resources.
1284 *
1285 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1286 * then we do not take part in VGA arbitration and the
1287 * vga_client_register() fails with -ENODEV.
1288 */
Dave Airlie28d52042009-09-21 14:33:58 +10001289 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001290 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001291 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001292
Jesse Barnes723bfd72010-10-07 16:01:13 -07001293 intel_register_dsm_handler();
1294
Takashi Iwai26ec6852012-05-11 07:51:17 +02001295 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001296 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001297 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001298
Chris Wilson9797fbf2012-04-24 15:47:39 +01001299 /* Initialise stolen first so that we may reserve preallocated
1300 * objects for the BIOS to KMS transition.
1301 */
1302 ret = i915_gem_init_stolen(dev);
1303 if (ret)
1304 goto cleanup_vga_switcheroo;
1305
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001306 ret = drm_irq_install(dev);
1307 if (ret)
1308 goto cleanup_gem_stolen;
1309
1310 /* Important: The output setup functions called by modeset_init need
1311 * working irqs for e.g. gmbus and dp aux transfers. */
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001312 intel_modeset_init(dev);
1313
Chris Wilson1070a422012-04-24 15:47:41 +01001314 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001315 if (ret)
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001316 goto cleanup_irq;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001317
Jesse Barnes073f34d2012-11-02 11:13:59 -07001318 INIT_WORK(&dev_priv->console_resume_work, intel_console_resume);
1319
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001320 intel_modeset_gem_init(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001321
Jesse Barnes79e53942008-11-07 14:24:08 -08001322 /* Always safe in the mode setting case. */
1323 /* FIXME: do pre/post-mode set stuff in core KMS code */
1324 dev->vblank_disable_allowed = 1;
1325
Chris Wilson5a793952010-06-06 10:50:03 +01001326 ret = intel_fbdev_init(dev);
1327 if (ret)
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001328 goto cleanup_gem;
1329
1330 /* Only enable hotplug handling once the fbdev is fully set up. */
Daniel Vetter20afbda2012-12-11 14:05:07 +01001331 intel_hpd_init(dev);
1332
1333 /*
1334 * Some ports require correctly set-up hpd registers for detection to
1335 * work properly (leading to ghost connected connector status), e.g. VGA
1336 * on gm45. Hence we can only set up the initial fbdev config after hpd
1337 * irqs are fully enabled. Now we should scan for the initial config
1338 * only once hotplug handling is enabled, but due to screwed-up locking
1339 * around kms/fbdev init we can't protect the fdbev initial config
1340 * scanning against hotplug events. Hence do this first and ignore the
1341 * tiny window where we will loose hotplug notifactions.
1342 */
1343 intel_fbdev_initial_config(dev);
1344
1345 /* Only enable hotplug handling once the fbdev is fully set up. */
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001346 dev_priv->enable_hotplug_processing = true;
Chris Wilson5a793952010-06-06 10:50:03 +01001347
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001348 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001349
1350 /* We're off and running w/KMS */
1351 dev_priv->mm.suspended = 0;
1352
Jesse Barnes79e53942008-11-07 14:24:08 -08001353 return 0;
1354
Chris Wilson2c7111d2011-03-29 10:40:27 +01001355cleanup_gem:
1356 mutex_lock(&dev->struct_mutex);
1357 i915_gem_cleanup_ringbuffer(dev);
1358 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001359 i915_gem_cleanup_aliasing_ppgtt(dev);
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001360cleanup_irq:
1361 drm_irq_uninstall(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001362cleanup_gem_stolen:
1363 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001364cleanup_vga_switcheroo:
1365 vga_switcheroo_unregister_client(dev->pdev);
1366cleanup_vga_client:
1367 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001368out:
1369 return ret;
1370}
1371
Dave Airlie7c1c2872008-11-28 14:22:24 +10001372int i915_master_create(struct drm_device *dev, struct drm_master *master)
1373{
1374 struct drm_i915_master_private *master_priv;
1375
Eric Anholt9a298b22009-03-24 12:23:04 -07001376 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001377 if (!master_priv)
1378 return -ENOMEM;
1379
1380 master->driver_priv = master_priv;
1381 return 0;
1382}
1383
1384void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1385{
1386 struct drm_i915_master_private *master_priv = master->driver_priv;
1387
1388 if (!master_priv)
1389 return;
1390
Eric Anholt9a298b22009-03-24 12:23:04 -07001391 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001392
1393 master->driver_priv = NULL;
1394}
1395
Adam Jacksone2b665c2012-03-14 11:22:10 -04001396static void
1397i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1398 unsigned long size)
1399{
Chris Wilson23f54be2012-03-23 17:38:49 +00001400 dev_priv->mm.gtt_mtrr = -1;
1401
Adam Jackson9e984bc12012-03-14 11:22:11 -04001402#if defined(CONFIG_X86_PAT)
1403 if (cpu_has_pat)
1404 return;
1405#endif
1406
Adam Jacksone2b665c2012-03-14 11:22:10 -04001407 /* Set up a WC MTRR for non-PAT systems. This is more common than
1408 * one would think, because the kernel disables PAT on first
1409 * generation Core chips because WC PAT gets overridden by a UC
1410 * MTRR if present. Even if a UC MTRR isn't present.
1411 */
1412 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1413 if (dev_priv->mm.gtt_mtrr < 0) {
1414 DRM_INFO("MTRR allocation failed. Graphics "
1415 "performance may suffer.\n");
1416 }
1417}
1418
Daniel Vettere1887192012-06-12 11:28:17 +02001419static void i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
1420{
1421 struct apertures_struct *ap;
1422 struct pci_dev *pdev = dev_priv->dev->pdev;
1423 bool primary;
1424
1425 ap = alloc_apertures(1);
1426 if (!ap)
1427 return;
1428
Ben Widawskydabb7a92013-01-17 12:45:16 -08001429 ap->ranges[0].base = dev_priv->gtt.mappable_base;
Ben Widawsky93d18792013-01-17 12:45:17 -08001430 ap->ranges[0].size = dev_priv->gtt.mappable_end - dev_priv->gtt.start;
1431
Daniel Vettere1887192012-06-12 11:28:17 +02001432 primary =
1433 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
1434
1435 remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
1436
1437 kfree(ap);
1438}
1439
Daniel Vetterc96ea642012-08-08 22:01:51 +02001440static void i915_dump_device_info(struct drm_i915_private *dev_priv)
1441{
1442 const struct intel_device_info *info = dev_priv->info;
1443
1444#define DEV_INFO_FLAG(name) info->name ? #name "," : ""
1445#define DEV_INFO_SEP ,
1446 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x flags="
1447 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
1448 info->gen,
1449 dev_priv->dev->pdev->device,
1450 DEV_INFO_FLAGS);
1451#undef DEV_INFO_FLAG
1452#undef DEV_INFO_SEP
1453}
1454
Eric Anholt63ee41d2010-12-20 18:40:06 -08001455/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001456 * i915_driver_load - setup chip and create an initial config
1457 * @dev: DRM device
1458 * @flags: startup flags
1459 *
1460 * The driver load routine has to do several things:
1461 * - drive output discovery via intel_modeset_init()
1462 * - initialize the memory manager
1463 * - allocate initial config memory
1464 * - setup the DRM framebuffer with the allocated memory
1465 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001466int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001467{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001468 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001469 struct intel_device_info *info;
Chris Wilson934d6082012-09-14 11:57:46 +01001470 int ret = 0, mmio_bar, mmio_size;
Daniel Vetter9021f282012-03-26 09:45:41 +02001471 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001472
Daniel Vetter26394d92012-03-26 21:33:18 +02001473 info = (struct intel_device_info *) flags;
1474
1475 /* Refuse to load on gen6+ without kms enabled. */
1476 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1477 return -ENODEV;
1478
Dave Airlie22eae942005-11-10 22:16:34 +11001479 /* i915 has 4 more counters */
1480 dev->counters += 4;
1481 dev->types[6] = _DRM_STAT_IRQ;
1482 dev->types[7] = _DRM_STAT_PRIMARY;
1483 dev->types[8] = _DRM_STAT_SECONDARY;
1484 dev->types[9] = _DRM_STAT_DMA;
1485
Eric Anholt9a298b22009-03-24 12:23:04 -07001486 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001487 if (dev_priv == NULL)
1488 return -ENOMEM;
1489
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001490 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001491 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001492 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001493
Daniel Vetterc96ea642012-08-08 22:01:51 +02001494 i915_dump_device_info(dev_priv);
1495
Dave Airlieec2a4c32009-08-04 11:43:41 +10001496 if (i915_get_bridge_dev(dev)) {
1497 ret = -EIO;
1498 goto free_priv;
1499 }
1500
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001501 ret = i915_gem_gtt_init(dev);
1502 if (ret)
Daniel Vettere1887192012-06-12 11:28:17 +02001503 goto put_bridge;
Daniel Vettere1887192012-06-12 11:28:17 +02001504
Chris Wilson16233922012-10-26 12:06:41 +01001505 if (drm_core_check_feature(dev, DRIVER_MODESET))
1506 i915_kick_out_firmware_fb(dev_priv);
Daniel Vettere1887192012-06-12 11:28:17 +02001507
Dave Airlie466e69b2011-12-19 11:15:29 +00001508 pci_set_master(dev->pdev);
1509
Daniel Vetter9f82d232010-08-30 21:25:23 +02001510 /* overlay on gen2 is broken and can't address above 1G */
1511 if (IS_GEN2(dev))
1512 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1513
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001514 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1515 * using 32bit addressing, overwriting memory if HWS is located
1516 * above 4GB.
1517 *
1518 * The documentation also mentions an issue with undefined
1519 * behaviour if any general state is accessed within a page above 4GB,
1520 * which also needs to be handled carefully.
1521 */
1522 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1523 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1524
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001525 mmio_bar = IS_GEN2(dev) ? 1 : 0;
Chris Wilson934d6082012-09-14 11:57:46 +01001526 /* Before gen4, the registers and the GTT are behind different BARs.
1527 * However, from gen4 onwards, the registers and the GTT are shared
1528 * in the same BAR, so we want to restrict this ioremap from
1529 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
1530 * the register BAR remains the same size for all the earlier
1531 * generations up to Ironlake.
1532 */
1533 if (info->gen < 5)
1534 mmio_size = 512*1024;
1535 else
1536 mmio_size = 2*1024*1024;
1537
1538 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001539 if (!dev_priv->regs) {
1540 DRM_ERROR("failed to map registers\n");
1541 ret = -EIO;
Daniel Vetter14be93d2012-06-08 15:55:40 +02001542 goto put_gmch;
Chris Wilson71e93392010-10-27 18:46:52 +01001543 }
1544
Ben Widawsky93d18792013-01-17 12:45:17 -08001545 aperture_size = dev_priv->gtt.mappable_end;
Chris Wilson71e93392010-10-27 18:46:52 +01001546
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001547 dev_priv->gtt.mappable =
1548 io_mapping_create_wc(dev_priv->gtt.mappable_base,
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001549 aperture_size);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001550 if (dev_priv->gtt.mappable == NULL) {
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001551 ret = -EIO;
Daniel Vettere1887192012-06-12 11:28:17 +02001552 goto out_rmmap;
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001553 }
1554
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001555 i915_mtrr_setup(dev_priv, dev_priv->gtt.mappable_base,
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001556 aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08001557
Chris Wilsone642abb2010-09-09 12:46:34 +01001558 /* The i915 workqueue is primarily used for batched retirement of
1559 * requests (and thus managing bo) once the task has been completed
1560 * by the GPU. i915_gem_retire_requests() is called directly when we
1561 * need high-priority retirement, such as waiting for an explicit
1562 * bo.
1563 *
1564 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001565 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001566 *
1567 * All tasks on the workqueue are expected to acquire the dev mutex
1568 * so there is no point in running more than one instance of the
Tejun Heo53621862012-08-22 16:40:57 -07001569 * workqueue at any time. Use an ordered one.
Chris Wilsone642abb2010-09-09 12:46:34 +01001570 */
Tejun Heo53621862012-08-22 16:40:57 -07001571 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001572 if (dev_priv->wq == NULL) {
1573 DRM_ERROR("Failed to create our workqueue.\n");
1574 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07001575 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001576 }
1577
Paulo Zanoni45e6e3a2012-07-03 15:57:32 -03001578 /* This must be called before any calls to HAS_PCH_* */
1579 intel_detect_pch(dev);
1580
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001581 intel_irq_init(dev);
Chris Wilson990bbda2012-07-02 11:51:02 -03001582 intel_gt_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001583
Zhenyu Wangc48044112009-12-17 14:48:43 +08001584 /* Try to make sure MCHBAR is enabled before poking at it */
1585 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001586 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001587 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001588
Bryan Freed6d139a82010-10-14 09:14:51 +01001589 intel_setup_bios(dev);
1590
Eric Anholt673a3942008-07-30 12:06:12 -07001591 i915_gem_load(dev);
1592
Eric Anholted4cb412008-07-29 12:10:39 -07001593 /* On the 945G/GM, the chipset reports the MSI capability on the
1594 * integrated graphics even though the support isn't actually there
1595 * according to the published specs. It doesn't appear to function
1596 * correctly in testing on 945G.
1597 * This may be a side effect of MSI having been made available for PEG
1598 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001599 *
1600 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001601 * be lost or delayed, but we use them anyways to avoid
1602 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001603 */
Keith Packardb60678a2008-12-08 11:12:28 -08001604 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001605 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001606
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001607 spin_lock_init(&dev_priv->irq_lock);
Daniel Vetter99584db2012-11-14 17:14:04 +01001608 spin_lock_init(&dev_priv->gpu_error.lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001609 spin_lock_init(&dev_priv->rps.lock);
Daniel Vetter09153002012-12-12 14:06:44 +01001610 mutex_init(&dev_priv->dpio_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07001611
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001612 mutex_init(&dev_priv->rps.hw_lock);
1613
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03001614 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07001615 dev_priv->num_pipe = 3;
1616 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001617 dev_priv->num_pipe = 2;
1618 else
1619 dev_priv->num_pipe = 1;
1620
1621 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001622 if (ret)
1623 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08001624
Ben Gamari11ed50e2009-09-14 17:48:45 -04001625 /* Start out suspended */
1626 dev_priv->mm.suspended = 1;
1627
Jesse Barnes79e53942008-11-07 14:24:08 -08001628 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02001629 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001630 if (ret < 0) {
1631 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00001632 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08001633 }
1634 }
1635
Ben Widawsky0136db582012-04-10 21:17:01 -07001636 i915_setup_sysfs(dev);
1637
Matthew Garrett74a365b2009-03-19 21:35:39 +00001638 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01001639 intel_opregion_init(dev);
1640 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00001641
Daniel Vettereb48eb02012-04-26 23:28:12 +02001642 if (IS_GEN5(dev))
1643 intel_gpu_ips_init(dev_priv);
Eric Anholt63ee41d2010-12-20 18:40:06 -08001644
Jesse Barnes79e53942008-11-07 14:24:08 -08001645 return 0;
1646
Chris Wilson56e2ea32010-11-08 17:10:29 +00001647out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07001648 if (dev_priv->mm.inactive_shrinker.shrink)
1649 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1650
Chris Wilson56e2ea32010-11-08 17:10:29 +00001651 if (dev->pdev->msi_enabled)
1652 pci_disable_msi(dev->pdev);
1653
1654 intel_teardown_gmbus(dev);
1655 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001656 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07001657out_mtrrfree:
1658 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001659 mtrr_del(dev_priv->mm.gtt_mtrr,
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001660 dev_priv->gtt.mappable_base,
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001661 aperture_size);
Keith Packarda7b85d22011-07-10 13:12:17 -07001662 dev_priv->mm.gtt_mtrr = -1;
1663 }
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001664 io_mapping_free(dev_priv->gtt.mappable);
Jesse Barnes79e53942008-11-07 14:24:08 -08001665out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01001666 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vettere1887192012-06-12 11:28:17 +02001667put_gmch:
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001668 i915_gem_gtt_fini(dev);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001669put_bridge:
1670 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001671free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001672 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001673 return ret;
1674}
1675
1676int i915_driver_unload(struct drm_device *dev)
1677{
1678 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02001679 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001680
Daniel Vettereb48eb02012-04-26 23:28:12 +02001681 intel_gpu_ips_teardown();
Jesse Barnes7648fa92010-05-20 14:28:11 -07001682
Ben Widawsky0136db582012-04-10 21:17:01 -07001683 i915_teardown_sysfs(dev);
1684
Chris Wilson17250b72010-10-28 12:51:39 +01001685 if (dev_priv->mm.inactive_shrinker.shrink)
1686 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1687
Daniel Vetterc911fc12010-08-20 21:23:20 +02001688 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001689 ret = i915_gpu_idle(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001690 if (ret)
1691 DRM_ERROR("failed to idle hardware: %d\n", ret);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001692 i915_gem_retire_requests(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001693 mutex_unlock(&dev->struct_mutex);
1694
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001695 /* Cancel the retire work handler, which should be idle now. */
1696 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
1697
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001698 io_mapping_free(dev_priv->gtt.mappable);
Eric Anholtab657db12009-01-23 12:57:47 -08001699 if (dev_priv->mm.gtt_mtrr >= 0) {
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001700 mtrr_del(dev_priv->mm.gtt_mtrr,
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001701 dev_priv->gtt.mappable_base,
Ben Widawsky93d18792013-01-17 12:45:17 -08001702 dev_priv->gtt.mappable_end);
Eric Anholtab657db12009-01-23 12:57:47 -08001703 dev_priv->mm.gtt_mtrr = -1;
1704 }
1705
Chris Wilson44834a62010-08-19 16:09:23 +01001706 acpi_video_unregister();
1707
Jesse Barnes79e53942008-11-07 14:24:08 -08001708 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01001709 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001710 intel_modeset_cleanup(dev);
Jesse Barnes073f34d2012-11-02 11:13:59 -07001711 cancel_work_sync(&dev_priv->console_resume_work);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001712
Zhao Yakui6363ee62009-11-24 09:48:44 +08001713 /*
1714 * free the memory space allocated for the child device
1715 * config parsed from VBT
1716 */
1717 if (dev_priv->child_dev && dev_priv->child_dev_num) {
1718 kfree(dev_priv->child_dev);
1719 dev_priv->child_dev = NULL;
1720 dev_priv->child_dev_num = 0;
1721 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02001722
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001723 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001724 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001725 }
1726
Daniel Vettera8b48992010-08-20 21:25:11 +02001727 /* Free error state after interrupts are fully disabled. */
Daniel Vetter99584db2012-11-14 17:14:04 +01001728 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
1729 cancel_work_sync(&dev_priv->gpu_error.work);
Daniel Vettera8b48992010-08-20 21:25:11 +02001730 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001731
Eric Anholted4cb412008-07-29 12:10:39 -07001732 if (dev->pdev->msi_enabled)
1733 pci_disable_msi(dev->pdev);
1734
Chris Wilson44834a62010-08-19 16:09:23 +01001735 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001736
Jesse Barnes79e53942008-11-07 14:24:08 -08001737 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02001738 /* Flush any outstanding unpin_work. */
1739 flush_workqueue(dev_priv->wq);
1740
Jesse Barnes79e53942008-11-07 14:24:08 -08001741 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07001742 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001743 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter55a66622012-06-19 21:55:32 +02001744 i915_gem_context_fini(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001745 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001746 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001747 i915_gem_cleanup_stolen(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01001748
1749 if (!I915_NEED_GFX_HWS(dev))
1750 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001751 }
1752
Daniel Vetter701394c2010-10-10 18:54:08 +01001753 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01001754 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01001755
Chris Wilsonf899fc62010-07-20 15:44:45 -07001756 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001757 intel_teardown_mchbar(dev);
1758
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001759 destroy_workqueue(dev_priv->wq);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001760 pm_qos_remove_request(&dev_priv->pm_qos);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001761
Chris Wilson42dcedd2012-11-15 11:32:30 +00001762 if (dev_priv->slab)
1763 kmem_cache_destroy(dev_priv->slab);
Eric Anholt9a298b22009-03-24 12:23:04 -07001764
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001765 pci_dev_put(dev_priv->bridge_dev);
Dave Airlie22eae942005-11-10 22:16:34 +11001766 kfree(dev->dev_private);
1767
1768 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001769}
1770
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001771int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001772{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001773 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001774
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001775 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001776 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
1777 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07001778 return -ENOMEM;
1779
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001780 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001781
Chris Wilson1c255952010-09-26 11:03:27 +01001782 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001783 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001784
Daniel Vetterdf12c6d2012-06-19 16:52:30 +02001785 idr_init(&file_priv->context_idr);
Ben Widawsky254f9652012-06-04 14:42:42 -07001786
Eric Anholt673a3942008-07-30 12:06:12 -07001787 return 0;
1788}
1789
Jesse Barnes79e53942008-11-07 14:24:08 -08001790/**
1791 * i915_driver_lastclose - clean up after all DRM clients have exited
1792 * @dev: DRM device
1793 *
1794 * Take care of cleaning up after all DRM clients have exited. In the
1795 * mode setting case, we want to restore the kernel's initial mode (just
1796 * in case the last client left us in a bad state).
1797 *
Daniel Vetter9021f282012-03-26 09:45:41 +02001798 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08001799 * and DMA structures, since the kernel won't be using them, and clea
1800 * up any GEM state.
1801 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001802void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001804 drm_i915_private_t *dev_priv = dev->dev_private;
1805
Daniel Vettere8aeaee2012-07-21 16:47:09 +02001806 /* On gen6+ we refuse to init without kms enabled, but then the drm core
1807 * goes right around and calls lastclose. Check for this and don't clean
1808 * up anything. */
1809 if (!dev_priv)
1810 return;
1811
1812 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01001813 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001814 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001815 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001816 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001817
Eric Anholt673a3942008-07-30 12:06:12 -07001818 i915_gem_lastclose(dev);
1819
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001820 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Eric Anholt6c340ea2007-08-25 20:23:09 +10001823void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Ben Widawsky254f9652012-06-04 14:42:42 -07001825 i915_gem_context_close(dev, file_priv);
Eric Anholtb9624422009-06-03 07:27:35 +00001826 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001829void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001830{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001831 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001832
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001833 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001834}
1835
Eric Anholtc153f452007-09-03 12:06:45 +10001836struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001837 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1838 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1839 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
1840 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1841 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1842 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
1843 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
1844 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001845 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1846 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1847 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001848 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001849 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterd1c1edb2012-04-26 23:28:01 +02001850 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001851 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
1852 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
1853 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1854 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1855 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1856 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
1857 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1858 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1859 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky199adf42012-09-21 17:01:20 -07001860 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED),
1861 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001862 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
1863 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1864 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1865 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
1866 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
1867 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
1868 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
1869 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
1870 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
1871 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
1872 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
1873 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
1874 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
1875 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1876 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
1877 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1878 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08001879 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1880 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 -07001881 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED),
Ben Widawsky84624812012-06-04 14:42:54 -07001882 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED),
1883 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED),
Ben Widawskyc0c7bab2012-07-12 11:01:05 -07001884 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10001885};
1886
1887int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001888
Daniel Vetter9021f282012-03-26 09:45:41 +02001889/*
1890 * This is really ugly: Because old userspace abused the linux agp interface to
1891 * manage the gtt, we need to claim that all intel devices are agp. For
1892 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10001893 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001894int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001895{
1896 return 1;
1897}