blob: 5c648425c1e053616801b3e1e545791a5fe111c0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Daniel Vetter09422b22012-04-26 23:28:10 +020046#define LP_RING(d) (&((struct drm_i915_private *)(d))->ring[RCS])
47
48#define BEGIN_LP_RING(n) \
49 intel_ring_begin(LP_RING(dev_priv), (n))
50
51#define OUT_RING(x) \
52 intel_ring_emit(LP_RING(dev_priv), x)
53
54#define ADVANCE_LP_RING() \
Chris Wilson09246732013-08-10 22:16:32 +010055 __intel_ring_advance(LP_RING(dev_priv))
Daniel Vetter09422b22012-04-26 23:28:10 +020056
57/**
58 * Lock test for when it's just for synchronization of ring access.
59 *
60 * In that case, we don't need to do it when GEM is initialized as nobody else
61 * has access to the ring.
62 */
63#define RING_LOCK_TEST_WITH_RETURN(dev, file) do { \
64 if (LP_RING(dev->dev_private)->obj == NULL) \
65 LOCK_TEST_WITH_RETURN(dev, file); \
66} while (0)
67
Daniel Vetter316d3882012-04-26 23:28:15 +020068static inline u32
69intel_read_legacy_status_page(struct drm_i915_private *dev_priv, int reg)
70{
71 if (I915_NEED_GFX_HWS(dev_priv->dev))
72 return ioread32(dev_priv->dri1.gfx_hws_cpu_addr + reg);
73 else
74 return intel_read_status_page(LP_RING(dev_priv), reg);
75}
76
77#define READ_HWSP(dev_priv, reg) intel_read_legacy_status_page(dev_priv, reg)
Daniel Vetter09422b22012-04-26 23:28:10 +020078#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
79#define I915_BREADCRUMB_INDEX 0x21
80
Daniel Vetterd05c6172012-04-26 23:28:09 +020081void i915_update_dri1_breadcrumb(struct drm_device *dev)
82{
83 drm_i915_private_t *dev_priv = dev->dev_private;
84 struct drm_i915_master_private *master_priv;
85
Daniel Vetter6c719fa2013-12-10 13:20:59 +010086 /*
87 * The dri breadcrumb update races against the drm master disappearing.
88 * Instead of trying to fix this (this is by far not the only ums issue)
89 * just don't do the update in kms mode.
90 */
91 if (drm_core_check_feature(dev, DRIVER_MODESET))
92 return;
93
Daniel Vetterd05c6172012-04-26 23:28:09 +020094 if (dev->primary->master) {
95 master_priv = dev->primary->master->driver_priv;
96 if (master_priv->sarea_priv)
97 master_priv->sarea_priv->last_dispatch =
98 READ_BREADCRUMB(dev_priv);
99 }
100}
101
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000102static void i915_write_hws_pga(struct drm_device *dev)
103{
104 drm_i915_private_t *dev_priv = dev->dev_private;
105 u32 addr;
106
107 addr = dev_priv->status_page_dmah->busaddr;
108 if (INTEL_INFO(dev)->gen >= 4)
109 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
110 I915_WRITE(HWS_PGA, addr);
111}
112
Keith Packard398c9cb2008-07-30 13:03:43 -0700113/**
Keith Packard398c9cb2008-07-30 13:03:43 -0700114 * Frees the hardware status page, whether it's a physical address or a virtual
115 * address set up by the X Server.
116 */
Eric Anholt3043c602008-10-02 12:24:47 -0700117static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -0700118{
119 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000120 struct intel_ring_buffer *ring = LP_RING(dev_priv);
121
Keith Packard398c9cb2008-07-30 13:03:43 -0700122 if (dev_priv->status_page_dmah) {
123 drm_pci_free(dev, dev_priv->status_page_dmah);
124 dev_priv->status_page_dmah = NULL;
125 }
126
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000127 if (ring->status_page.gfx_addr) {
128 ring->status_page.gfx_addr = 0;
Daniel Vetter316d3882012-04-26 23:28:15 +0200129 iounmap(dev_priv->dri1.gfx_hws_cpu_addr);
Keith Packard398c9cb2008-07-30 13:03:43 -0700130 }
131
132 /* Need to rewrite hardware status page */
133 I915_WRITE(HWS_PGA, 0x1ffff000);
134}
135
Dave Airlie84b1fd12007-07-11 15:53:27 +1000136void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000139 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000140 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Jesse Barnes79e53942008-11-07 14:24:08 -0800142 /*
143 * We should never lose context on the ring with modesetting
144 * as we don't expose it to userspace
145 */
146 if (drm_core_check_feature(dev, DRIVER_MODESET))
147 return;
148
Chris Wilson8168bd42010-11-11 17:54:52 +0000149 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
150 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Ville Syrjälä633cf8f2012-12-03 18:43:32 +0200151 ring->space = ring->head - (ring->tail + I915_RING_FREE_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800153 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Dave Airlie7c1c2872008-11-28 14:22:24 +1000155 if (!dev->primary->master)
156 return;
157
158 master_priv = dev->primary->master->driver_priv;
159 if (ring->head == ring->tail && master_priv->sarea_priv)
160 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Dave Airlie84b1fd12007-07-11 15:53:27 +1000163static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000165 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000166 int i;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /* Make sure interrupts are disabled here because the uninstall ioctl
169 * may not have been called from userspace and after dev_private
170 * is freed, it's too late.
171 */
Eric Anholted4cb412008-07-29 12:10:39 -0700172 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000173 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200175 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000176 for (i = 0; i < I915_NUM_RINGS; i++)
177 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200178 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Keith Packard398c9cb2008-07-30 13:03:43 -0700180 /* Clear the HWS virtual address at teardown */
181 if (I915_NEED_GFX_HWS(dev))
182 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 return 0;
185}
186
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000187static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000189 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000190 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000191 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Dave Airlie3a03ac12009-01-11 09:03:49 +1000193 master_priv->sarea = drm_getsarea(dev);
194 if (master_priv->sarea) {
195 master_priv->sarea_priv = (drm_i915_sarea_t *)
196 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
197 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800198 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000199 }
200
Eric Anholt673a3942008-07-30 12:06:12 -0700201 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000202 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700203 i915_dma_cleanup(dev);
204 DRM_ERROR("Client tried to initialize ringbuffer in "
205 "GEM mode\n");
206 return -EINVAL;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Chris Wilsone8616b62011-01-20 09:57:11 +0000209 ret = intel_render_ring_init_dri(dev,
210 init->ring_start,
211 init->ring_size);
212 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700213 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000214 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200218 dev_priv->dri1.cpp = init->cpp;
219 dev_priv->dri1.back_offset = init->back_offset;
220 dev_priv->dri1.front_offset = init->front_offset;
221 dev_priv->dri1.current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000222 if (master_priv->sarea_priv)
223 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* Allow hardware batchbuffers unless told otherwise.
226 */
Daniel Vetter87813422012-05-02 11:49:32 +0200227 dev_priv->dri1.allow_batchbuffer = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
Dave Airlie84b1fd12007-07-11 15:53:27 +1000232static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000235 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800237 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Daniel Vetter4225d0f2012-04-26 23:28:16 +0200239 if (ring->virtual_start == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 DRM_ERROR("can not ioremap virtual address for"
241 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000242 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800246 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000248 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800250 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800251 ring->status_page.page_addr);
252 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100253 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000254 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000255 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800256
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800257 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 return 0;
260}
261
Eric Anholtc153f452007-09-03 12:06:45 +1000262static int i915_dma_init(struct drm_device *dev, void *data,
263 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Eric Anholtc153f452007-09-03 12:06:45 +1000265 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int retcode = 0;
267
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200268 if (drm_core_check_feature(dev, DRIVER_MODESET))
269 return -ENODEV;
270
Eric Anholtc153f452007-09-03 12:06:45 +1000271 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000273 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 case I915_CLEANUP_DMA:
276 retcode = i915_dma_cleanup(dev);
277 break;
278 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100279 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
281 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000282 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 break;
284 }
285
286 return retcode;
287}
288
289/* Implement basically the same security restrictions as hardware does
290 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
291 *
292 * Most of the calculations below involve calculating the size of a
293 * particular instruction. It's important to get the size right as
294 * that tells us where the next instruction to check is. Any illegal
295 * instruction detected will be given a size of zero, which is a
296 * signal to abort the rest of the buffer.
297 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100298static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 switch (((cmd >> 29) & 0x7)) {
301 case 0x0:
302 switch ((cmd >> 23) & 0x3f) {
303 case 0x0:
304 return 1; /* MI_NOOP */
305 case 0x4:
306 return 1; /* MI_FLUSH */
307 default:
308 return 0; /* disallow everything else */
309 }
310 break;
311 case 0x1:
312 return 0; /* reserved */
313 case 0x2:
314 return (cmd & 0xff) + 2; /* 2d commands */
315 case 0x3:
316 if (((cmd >> 24) & 0x1f) <= 0x18)
317 return 1;
318
319 switch ((cmd >> 24) & 0x1f) {
320 case 0x1c:
321 return 1;
322 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000323 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 case 0x3:
325 return (cmd & 0x1f) + 2;
326 case 0x4:
327 return (cmd & 0xf) + 2;
328 default:
329 return (cmd & 0xffff) + 2;
330 }
331 case 0x1e:
332 if (cmd & (1 << 23))
333 return (cmd & 0xffff) + 1;
334 else
335 return 1;
336 case 0x1f:
337 if ((cmd & (1 << 23)) == 0) /* inline vertices */
338 return (cmd & 0x1ffff) + 2;
339 else if (cmd & (1 << 17)) /* indirect random */
340 if ((cmd & 0xffff) == 0)
341 return 0; /* unknown length, too hard */
342 else
343 return (((cmd & 0xffff) + 1) / 2) + 1;
344 else
345 return 2; /* indirect sequential */
346 default:
347 return 0;
348 }
349 default:
350 return 0;
351 }
352
353 return 0;
354}
355
Eric Anholt201361a2009-03-11 12:30:04 -0700356static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100359 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000361 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000362 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100365 int sz = validate_cmd(buffer[i]);
366 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000367 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100368 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100371 ret = BEGIN_LP_RING((dwords+1)&~1);
372 if (ret)
373 return ret;
374
375 for (i = 0; i < dwords; i++)
376 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100377 if (dwords & 1)
378 OUT_RING(0);
379
380 ADVANCE_LP_RING();
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383}
384
Eric Anholt673a3942008-07-30 12:06:12 -0700385int
386i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000387 struct drm_clip_rect *box,
388 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100390 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100391 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000393 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
394 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000396 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000397 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100400 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100401 ret = BEGIN_LP_RING(4);
402 if (ret)
403 return ret;
404
Alan Hourihanec29b6692006-08-12 16:29:24 +1000405 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000406 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
407 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000408 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000409 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100410 ret = BEGIN_LP_RING(6);
411 if (ret)
412 return ret;
413
Alan Hourihanec29b6692006-08-12 16:29:24 +1000414 OUT_RING(GFX_OP_DRAWRECT_INFO);
415 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000416 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
417 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000418 OUT_RING(DR4);
419 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000420 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100421 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 return 0;
424}
425
Alan Hourihanec29b6692006-08-12 16:29:24 +1000426/* XXX: Emitting the counter should really be moved to part of the IRQ
427 * emit. For now, do it in both places:
428 */
429
Dave Airlie84b1fd12007-07-11 15:53:27 +1000430static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100431{
432 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000433 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100434
Daniel Vetter231f42a2012-11-02 19:55:05 +0100435 dev_priv->dri1.counter++;
436 if (dev_priv->dri1.counter > 0x7FFFFFFFUL)
437 dev_priv->dri1.counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000438 if (master_priv->sarea_priv)
Daniel Vetter231f42a2012-11-02 19:55:05 +0100439 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter;
Dave Airliede227f52006-01-25 15:31:43 +1100440
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100441 if (BEGIN_LP_RING(4) == 0) {
442 OUT_RING(MI_STORE_DWORD_INDEX);
443 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100444 OUT_RING(dev_priv->dri1.counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100445 OUT_RING(0);
446 ADVANCE_LP_RING();
447 }
Dave Airliede227f52006-01-25 15:31:43 +1100448}
449
Dave Airlie84b1fd12007-07-11 15:53:27 +1000450static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700451 drm_i915_cmdbuffer_t *cmd,
452 struct drm_clip_rect *cliprects,
453 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 int nbox = cmd->num_cliprects;
456 int i = 0, count, ret;
457
458 if (cmd->sz & 0x3) {
459 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000460 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 i915_kernel_lost_context(dev);
464
465 count = nbox ? nbox : 1;
466
467 for (i = 0; i < count; i++) {
468 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000469 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 cmd->DR1, cmd->DR4);
471 if (ret)
472 return ret;
473 }
474
Eric Anholt201361a2009-03-11 12:30:04 -0700475 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (ret)
477 return ret;
478 }
479
Dave Airliede227f52006-01-25 15:31:43 +1100480 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 0;
482}
483
Dave Airlie84b1fd12007-07-11 15:53:27 +1000484static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700485 drm_i915_batchbuffer_t * batch,
486 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100488 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100490 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if ((batch->start | batch->used) & 0x7) {
493 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000494 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
497 i915_kernel_lost_context(dev);
498
499 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 for (i = 0; i < count; i++) {
501 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000502 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100503 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (ret)
505 return ret;
506 }
507
Keith Packard0790d5e2008-07-30 12:28:47 -0700508 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100509 ret = BEGIN_LP_RING(2);
510 if (ret)
511 return ret;
512
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100513 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000514 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
515 OUT_RING(batch->start);
516 } else {
517 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
518 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100521 ret = BEGIN_LP_RING(4);
522 if (ret)
523 return ret;
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 OUT_RING(MI_BATCH_BUFFER);
526 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
527 OUT_RING(batch->start + batch->used - 4);
528 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100530 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
Zou Nan hai1cafd342010-06-25 13:40:24 +0800533
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100534 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100535 if (BEGIN_LP_RING(2) == 0) {
536 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
537 OUT_RING(MI_NOOP);
538 ADVANCE_LP_RING();
539 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100542 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return 0;
544}
545
Dave Airlieaf6061a2008-05-07 12:15:39 +1000546static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000549 struct drm_i915_master_private *master_priv =
550 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100551 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Dave Airlie7c1c2872008-11-28 14:22:24 +1000553 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400554 return -EINVAL;
555
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800556 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800557 __func__,
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200558 dev_priv->dri1.current_page,
yakui_zhaobe25ed92009-06-02 14:13:55 +0800559 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Dave Airlieaf6061a2008-05-07 12:15:39 +1000561 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100563 ret = BEGIN_LP_RING(10);
564 if (ret)
565 return ret;
566
Jesse Barnes585fb112008-07-29 11:54:06 -0700567 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000568 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Dave Airlieaf6061a2008-05-07 12:15:39 +1000570 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
571 OUT_RING(0);
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200572 if (dev_priv->dri1.current_page == 0) {
573 OUT_RING(dev_priv->dri1.back_offset);
574 dev_priv->dri1.current_page = 1;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000575 } else {
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200576 OUT_RING(dev_priv->dri1.front_offset);
577 dev_priv->dri1.current_page = 0;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000578 }
579 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000580
Dave Airlieaf6061a2008-05-07 12:15:39 +1000581 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
582 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100583
Dave Airlieaf6061a2008-05-07 12:15:39 +1000584 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000585
Daniel Vetter231f42a2012-11-02 19:55:05 +0100586 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000587
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100588 if (BEGIN_LP_RING(4) == 0) {
589 OUT_RING(MI_STORE_DWORD_INDEX);
590 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100591 OUT_RING(dev_priv->dri1.counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100592 OUT_RING(0);
593 ADVANCE_LP_RING();
594 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000595
Daniel Vetter5d985ac2012-08-12 19:27:13 +0200596 master_priv->sarea_priv->pf_current_page = dev_priv->dri1.current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000600static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 i915_kernel_lost_context(dev);
Chris Wilson3e960502012-11-27 16:22:54 +0000603 return intel_ring_idle(LP_RING(dev->dev_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Eric Anholtc153f452007-09-03 12:06:45 +1000606static int i915_flush_ioctl(struct drm_device *dev, void *data,
607 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Eric Anholt546b0972008-09-01 16:45:29 -0700609 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200611 if (drm_core_check_feature(dev, DRIVER_MODESET))
612 return -ENODEV;
613
Eric Anholt546b0972008-09-01 16:45:29 -0700614 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
615
616 mutex_lock(&dev->struct_mutex);
617 ret = i915_quiescent(dev);
618 mutex_unlock(&dev->struct_mutex);
619
620 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Eric Anholtc153f452007-09-03 12:06:45 +1000623static int i915_batchbuffer(struct drm_device *dev, void *data,
624 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000627 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000629 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000630 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700632 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200634 if (drm_core_check_feature(dev, DRIVER_MODESET))
635 return -ENODEV;
636
Daniel Vetter87813422012-05-02 11:49:32 +0200637 if (!dev_priv->dri1.allow_batchbuffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000639 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800642 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800643 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Eric Anholt546b0972008-09-01 16:45:29 -0700645 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Anholt201361a2009-03-11 12:30:04 -0700647 if (batch->num_cliprects < 0)
648 return -EINVAL;
649
650 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700651 cliprects = kcalloc(batch->num_cliprects,
Daniel Vetterb14c5672013-09-19 12:18:32 +0200652 sizeof(*cliprects),
Eric Anholt9a298b22009-03-24 12:23:04 -0700653 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700654 if (cliprects == NULL)
655 return -ENOMEM;
656
657 ret = copy_from_user(cliprects, batch->cliprects,
658 batch->num_cliprects *
659 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200660 if (ret != 0) {
661 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700662 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200663 }
Eric Anholt201361a2009-03-11 12:30:04 -0700664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Eric Anholt546b0972008-09-01 16:45:29 -0700666 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700667 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700668 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400670 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000671 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700672
673fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700674 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return ret;
677}
678
Eric Anholtc153f452007-09-03 12:06:45 +1000679static int i915_cmdbuffer(struct drm_device *dev, void *data,
680 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000683 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000685 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000686 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700687 struct drm_clip_rect *cliprects = NULL;
688 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 int ret;
690
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800691 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800692 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200694 if (drm_core_check_feature(dev, DRIVER_MODESET))
695 return -ENODEV;
696
Eric Anholt546b0972008-09-01 16:45:29 -0700697 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Eric Anholt201361a2009-03-11 12:30:04 -0700699 if (cmdbuf->num_cliprects < 0)
700 return -EINVAL;
701
Eric Anholt9a298b22009-03-24 12:23:04 -0700702 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700703 if (batch_data == NULL)
704 return -ENOMEM;
705
706 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200707 if (ret != 0) {
708 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700709 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200710 }
Eric Anholt201361a2009-03-11 12:30:04 -0700711
712 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700713 cliprects = kcalloc(cmdbuf->num_cliprects,
Daniel Vetterb14c5672013-09-19 12:18:32 +0200714 sizeof(*cliprects), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000715 if (cliprects == NULL) {
716 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700717 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000718 }
Eric Anholt201361a2009-03-11 12:30:04 -0700719
720 ret = copy_from_user(cliprects, cmdbuf->cliprects,
721 cmdbuf->num_cliprects *
722 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200723 if (ret != 0) {
724 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700725 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
Eric Anholt546b0972008-09-01 16:45:29 -0700729 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700730 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700731 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (ret) {
733 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000734 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400737 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000738 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700739
Eric Anholt201361a2009-03-11 12:30:04 -0700740fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700741 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000742fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700743 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700744
745 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Daniel Vetter94888672012-04-26 23:28:08 +0200748static int i915_emit_irq(struct drm_device * dev)
749{
750 drm_i915_private_t *dev_priv = dev->dev_private;
751 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
752
753 i915_kernel_lost_context(dev);
754
755 DRM_DEBUG_DRIVER("\n");
756
Daniel Vetter231f42a2012-11-02 19:55:05 +0100757 dev_priv->dri1.counter++;
758 if (dev_priv->dri1.counter > 0x7FFFFFFFUL)
759 dev_priv->dri1.counter = 1;
Daniel Vetter94888672012-04-26 23:28:08 +0200760 if (master_priv->sarea_priv)
Daniel Vetter231f42a2012-11-02 19:55:05 +0100761 master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200762
763 if (BEGIN_LP_RING(4) == 0) {
764 OUT_RING(MI_STORE_DWORD_INDEX);
765 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Daniel Vetter231f42a2012-11-02 19:55:05 +0100766 OUT_RING(dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200767 OUT_RING(MI_USER_INTERRUPT);
768 ADVANCE_LP_RING();
769 }
770
Daniel Vetter231f42a2012-11-02 19:55:05 +0100771 return dev_priv->dri1.counter;
Daniel Vetter94888672012-04-26 23:28:08 +0200772}
773
774static int i915_wait_irq(struct drm_device * dev, int irq_nr)
775{
776 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
777 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
778 int ret = 0;
779 struct intel_ring_buffer *ring = LP_RING(dev_priv);
780
781 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
782 READ_BREADCRUMB(dev_priv));
783
784 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
785 if (master_priv->sarea_priv)
786 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
787 return 0;
788 }
789
790 if (master_priv->sarea_priv)
791 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
792
793 if (ring->irq_get(ring)) {
794 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
795 READ_BREADCRUMB(dev_priv) >= irq_nr);
796 ring->irq_put(ring);
797 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
798 ret = -EBUSY;
799
800 if (ret == -EBUSY) {
801 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Daniel Vetter231f42a2012-11-02 19:55:05 +0100802 READ_BREADCRUMB(dev_priv), (int)dev_priv->dri1.counter);
Daniel Vetter94888672012-04-26 23:28:08 +0200803 }
804
805 return ret;
806}
807
808/* Needs the lock as it touches the ring.
809 */
810static int i915_irq_emit(struct drm_device *dev, void *data,
811 struct drm_file *file_priv)
812{
813 drm_i915_private_t *dev_priv = dev->dev_private;
814 drm_i915_irq_emit_t *emit = data;
815 int result;
816
817 if (drm_core_check_feature(dev, DRIVER_MODESET))
818 return -ENODEV;
819
820 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
821 DRM_ERROR("called with no initialization\n");
822 return -EINVAL;
823 }
824
825 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
826
827 mutex_lock(&dev->struct_mutex);
828 result = i915_emit_irq(dev);
829 mutex_unlock(&dev->struct_mutex);
830
831 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
832 DRM_ERROR("copy_to_user\n");
833 return -EFAULT;
834 }
835
836 return 0;
837}
838
839/* Doesn't need the hardware lock.
840 */
841static int i915_irq_wait(struct drm_device *dev, void *data,
842 struct drm_file *file_priv)
843{
844 drm_i915_private_t *dev_priv = dev->dev_private;
845 drm_i915_irq_wait_t *irqwait = data;
846
847 if (drm_core_check_feature(dev, DRIVER_MODESET))
848 return -ENODEV;
849
850 if (!dev_priv) {
851 DRM_ERROR("called with no initialization\n");
852 return -EINVAL;
853 }
854
855 return i915_wait_irq(dev, irqwait->irq_seq);
856}
857
Daniel Vetterd1c1edb2012-04-26 23:28:01 +0200858static int i915_vblank_pipe_get(struct drm_device *dev, void *data,
859 struct drm_file *file_priv)
860{
861 drm_i915_private_t *dev_priv = dev->dev_private;
862 drm_i915_vblank_pipe_t *pipe = data;
863
864 if (drm_core_check_feature(dev, DRIVER_MODESET))
865 return -ENODEV;
866
867 if (!dev_priv) {
868 DRM_ERROR("called with no initialization\n");
869 return -EINVAL;
870 }
871
872 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
873
874 return 0;
875}
876
877/**
878 * Schedule buffer swap at given vertical blank.
879 */
880static int i915_vblank_swap(struct drm_device *dev, void *data,
881 struct drm_file *file_priv)
882{
883 /* The delayed swap mechanism was fundamentally racy, and has been
884 * removed. The model was that the client requested a delayed flip/swap
885 * from the kernel, then waited for vblank before continuing to perform
886 * rendering. The problem was that the kernel might wake the client
887 * up before it dispatched the vblank swap (since the lock has to be
888 * held while touching the ringbuffer), in which case the client would
889 * clear and start the next frame before the swap occurred, and
890 * flicker would occur in addition to likely missing the vblank.
891 *
892 * In the absence of this ioctl, userland falls back to a correct path
893 * of waiting for a vblank, then dispatching the swap on its own.
894 * Context switching to userland and back is plenty fast enough for
895 * meeting the requirements of vblank swapping.
896 */
897 return -EINVAL;
898}
899
Eric Anholtc153f452007-09-03 12:06:45 +1000900static int i915_flip_bufs(struct drm_device *dev, void *data,
901 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Eric Anholt546b0972008-09-01 16:45:29 -0700903 int ret;
904
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200905 if (drm_core_check_feature(dev, DRIVER_MODESET))
906 return -ENODEV;
907
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800908 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Eric Anholt546b0972008-09-01 16:45:29 -0700910 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Eric Anholt546b0972008-09-01 16:45:29 -0700912 mutex_lock(&dev->struct_mutex);
913 ret = i915_dispatch_flip(dev);
914 mutex_unlock(&dev->struct_mutex);
915
916 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Eric Anholtc153f452007-09-03 12:06:45 +1000919static int i915_getparam(struct drm_device *dev, void *data,
920 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000923 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 int value;
925
926 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000927 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000928 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930
Eric Anholtc153f452007-09-03 12:06:45 +1000931 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700933 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 break;
935 case I915_PARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200936 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100938 case I915_PARAM_LAST_DISPATCH:
939 value = READ_BREADCRUMB(dev_priv);
940 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400941 case I915_PARAM_CHIPSET_ID:
Ville Syrjäläffbab09b2013-10-04 14:53:40 +0300942 value = dev->pdev->device;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400943 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700944 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200945 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700946 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800947 case I915_PARAM_NUM_FENCES_AVAIL:
948 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
949 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200950 case I915_PARAM_HAS_OVERLAY:
951 value = dev_priv->overlay ? 1 : 0;
952 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800953 case I915_PARAM_HAS_PAGEFLIPPING:
954 value = 1;
955 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500956 case I915_PARAM_HAS_EXECBUF2:
957 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200958 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500959 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800960 case I915_PARAM_HAS_BSD:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100961 value = intel_ring_initialized(&dev_priv->ring[VCS]);
Zou Nan haie3a815f2010-05-31 13:58:47 +0800962 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100963 case I915_PARAM_HAS_BLT:
Chris Wilsonedc912f2012-05-11 14:29:32 +0100964 value = intel_ring_initialized(&dev_priv->ring[BCS]);
Chris Wilson549f7362010-10-19 11:19:32 +0100965 break;
Xiang, Haihaoa1f2cc72013-05-28 19:22:34 -0700966 case I915_PARAM_HAS_VEBOX:
967 value = intel_ring_initialized(&dev_priv->ring[VECS]);
968 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100969 case I915_PARAM_HAS_RELAXED_FENCING:
970 value = 1;
971 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100972 case I915_PARAM_HAS_COHERENT_RINGS:
973 value = 1;
974 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000975 case I915_PARAM_HAS_EXEC_CONSTANTS:
976 value = INTEL_INFO(dev)->gen >= 4;
977 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000978 case I915_PARAM_HAS_RELAXED_DELTA:
979 value = 1;
980 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800981 case I915_PARAM_HAS_GEN7_SOL_RESET:
982 value = 1;
983 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200984 case I915_PARAM_HAS_LLC:
985 value = HAS_LLC(dev);
986 break;
Chris Wilson651d7942013-08-08 14:41:10 +0100987 case I915_PARAM_HAS_WT:
988 value = HAS_WT(dev);
989 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100990 case I915_PARAM_HAS_ALIASING_PPGTT:
991 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
992 break;
Ben Widawsky172cf152012-06-05 15:24:25 -0700993 case I915_PARAM_HAS_WAIT_TIMEOUT:
994 value = 1;
995 break;
Chris Wilson2fedbff2012-08-08 10:23:22 +0100996 case I915_PARAM_HAS_SEMAPHORES:
997 value = i915_semaphore_is_enabled(dev);
998 break;
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000999 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
1000 value = 1;
1001 break;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001002 case I915_PARAM_HAS_SECURE_BATCHES:
1003 value = capable(CAP_SYS_ADMIN);
1004 break;
Daniel Vetterb45305f2012-12-17 16:21:27 +01001005 case I915_PARAM_HAS_PINNED_BATCHES:
1006 value = 1;
1007 break;
Daniel Vettered5982e2013-01-17 22:23:36 +01001008 case I915_PARAM_HAS_EXEC_NO_RELOC:
1009 value = 1;
1010 break;
Chris Wilsoneef90cc2013-01-08 10:53:17 +00001011 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
1012 value = 1;
1013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 default:
Ben Widawskye29c32d2013-05-31 11:28:45 -07001015 DRM_DEBUG("Unknown parameter %d\n", param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001016 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
Eric Anholtc153f452007-09-03 12:06:45 +10001019 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001021 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
1024 return 0;
1025}
1026
Eric Anholtc153f452007-09-03 12:06:45 +10001027static int i915_setparam(struct drm_device *dev, void *data,
1028 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001031 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001034 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001035 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Eric Anholtc153f452007-09-03 12:06:45 +10001038 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 break;
1041 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
1043 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +02001044 dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001046 case I915_SETPARAM_NUM_USED_FENCES:
1047 if (param->value > dev_priv->num_fence_regs ||
1048 param->value < 0)
1049 return -EINVAL;
1050 /* Userspace can use first N regs */
1051 dev_priv->fence_reg_start = param->value;
1052 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001054 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +08001055 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001056 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
1059 return 0;
1060}
1061
Eric Anholtc153f452007-09-03 12:06:45 +10001062static int i915_set_status_page(struct drm_device *dev, void *data,
1063 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001064{
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001065 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001066 drm_i915_hws_addr_t *hws = data;
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001067 struct intel_ring_buffer *ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001068
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001069 if (drm_core_check_feature(dev, DRIVER_MODESET))
1070 return -ENODEV;
1071
Zhenyu Wangb39d50e2008-02-19 20:59:09 +10001072 if (!I915_NEED_GFX_HWS(dev))
1073 return -EINVAL;
1074
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001075 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001076 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001077 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001078 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001079
Jesse Barnes79e53942008-11-07 14:24:08 -08001080 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1081 WARN(1, "tried to set status page when mode setting active\n");
1082 return 0;
1083 }
1084
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001085 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001086
Mika Kuoppala4f1ba0f2012-11-12 14:20:19 +02001087 ring = LP_RING(dev_priv);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001088 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +10001089
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001090 dev_priv->dri1.gfx_hws_cpu_addr =
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001091 ioremap_wc(dev_priv->gtt.mappable_base + hws->addr, 4096);
Daniel Vetter316d3882012-04-26 23:28:15 +02001092 if (dev_priv->dri1.gfx_hws_cpu_addr == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001093 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -07001094 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001095 DRM_ERROR("can not ioremap virtual address for"
1096 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001097 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001098 }
Daniel Vetter316d3882012-04-26 23:28:15 +02001099
1100 memset_io(dev_priv->dri1.gfx_hws_cpu_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001101 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001102
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001103 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001104 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001105 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001106 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001107 return 0;
1108}
1109
Dave Airlieec2a4c32009-08-04 11:43:41 +10001110static int i915_get_bridge_dev(struct drm_device *dev)
1111{
1112 struct drm_i915_private *dev_priv = dev->dev_private;
1113
Akshay Joshi0206e352011-08-16 15:34:10 -04001114 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +10001115 if (!dev_priv->bridge_dev) {
1116 DRM_ERROR("bridge device not found\n");
1117 return -1;
1118 }
1119 return 0;
1120}
1121
Zhenyu Wangc48044112009-12-17 14:48:43 +08001122#define MCHBAR_I915 0x44
1123#define MCHBAR_I965 0x48
1124#define MCHBAR_SIZE (4*4096)
1125
1126#define DEVEN_REG 0x54
1127#define DEVEN_MCHBAR_EN (1 << 28)
1128
1129/* Allocate space for the MCH regs if needed, return nonzero on error */
1130static int
1131intel_alloc_mchbar_resource(struct drm_device *dev)
1132{
1133 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001134 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001135 u32 temp_lo, temp_hi = 0;
1136 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001137 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001138
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001139 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001140 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
1141 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
1142 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
1143
1144 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
1145#ifdef CONFIG_PNP
1146 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +01001147 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
1148 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001149#endif
1150
1151 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +01001152 dev_priv->mch_res.name = "i915 MCHBAR";
1153 dev_priv->mch_res.flags = IORESOURCE_MEM;
1154 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
1155 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001156 MCHBAR_SIZE, MCHBAR_SIZE,
1157 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +01001158 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001159 dev_priv->bridge_dev);
1160 if (ret) {
1161 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
1162 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001163 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001164 }
1165
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001166 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001167 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
1168 upper_32_bits(dev_priv->mch_res.start));
1169
1170 pci_write_config_dword(dev_priv->bridge_dev, reg,
1171 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +01001172 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001173}
1174
1175/* Setup MCHBAR if possible, return true if we should disable it again */
1176static void
1177intel_setup_mchbar(struct drm_device *dev)
1178{
1179 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001180 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001181 u32 temp;
1182 bool enabled;
1183
1184 dev_priv->mchbar_need_disable = false;
1185
1186 if (IS_I915G(dev) || IS_I915GM(dev)) {
1187 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1188 enabled = !!(temp & DEVEN_MCHBAR_EN);
1189 } else {
1190 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1191 enabled = temp & 1;
1192 }
1193
1194 /* If it's already enabled, don't have to do anything */
1195 if (enabled)
1196 return;
1197
1198 if (intel_alloc_mchbar_resource(dev))
1199 return;
1200
1201 dev_priv->mchbar_need_disable = true;
1202
1203 /* Space is allocated or reserved, so enable it. */
1204 if (IS_I915G(dev) || IS_I915GM(dev)) {
1205 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1206 temp | DEVEN_MCHBAR_EN);
1207 } else {
1208 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1209 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1210 }
1211}
1212
1213static void
1214intel_teardown_mchbar(struct drm_device *dev)
1215{
1216 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001217 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001218 u32 temp;
1219
1220 if (dev_priv->mchbar_need_disable) {
1221 if (IS_I915G(dev) || IS_I915GM(dev)) {
1222 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1223 temp &= ~DEVEN_MCHBAR_EN;
1224 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1225 } else {
1226 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1227 temp &= ~1;
1228 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1229 }
1230 }
1231
1232 if (dev_priv->mch_res.start)
1233 release_resource(&dev_priv->mch_res);
1234}
1235
Dave Airlie28d52042009-09-21 14:33:58 +10001236/* true = enable decode, false = disable decoder */
1237static unsigned int i915_vga_set_decode(void *cookie, bool state)
1238{
1239 struct drm_device *dev = cookie;
1240
1241 intel_modeset_vga_set_state(dev, state);
1242 if (state)
1243 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1244 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1245 else
1246 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1247}
1248
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001249static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1250{
1251 struct drm_device *dev = pci_get_drvdata(pdev);
1252 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1253 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001254 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001255 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001256 /* i915 resume handler doesn't set to D0 */
1257 pci_set_power_state(dev->pdev, PCI_D0);
1258 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001259 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001260 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001261 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001262 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001263 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001264 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001265 }
1266}
1267
1268static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1269{
1270 struct drm_device *dev = pci_get_drvdata(pdev);
1271 bool can_switch;
1272
1273 spin_lock(&dev->count_lock);
1274 can_switch = (dev->open_count == 0);
1275 spin_unlock(&dev->count_lock);
1276 return can_switch;
1277}
1278
Takashi Iwai26ec6852012-05-11 07:51:17 +02001279static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
1280 .set_gpu_state = i915_switcheroo_set_state,
1281 .reprobe = NULL,
1282 .can_switch = i915_switcheroo_can_switch,
1283};
1284
Chris Wilson2c7111d2011-03-29 10:40:27 +01001285static int i915_load_modeset_init(struct drm_device *dev)
1286{
1287 struct drm_i915_private *dev_priv = dev->dev_private;
1288 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001289
Bryan Freed6d139a82010-10-14 09:14:51 +01001290 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001291 if (ret)
1292 DRM_INFO("failed to find VBIOS tables\n");
1293
Chris Wilson934f9922011-01-20 13:09:12 +00001294 /* If we have > 1 VGA cards, then we need to arbitrate access
1295 * to the common VGA resources.
1296 *
1297 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1298 * then we do not take part in VGA arbitration and the
1299 * vga_client_register() fails with -ENODEV.
1300 */
Dave Airlieebff5fa92013-10-11 15:12:04 +10001301 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1302 if (ret && ret != -ENODEV)
1303 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001304
Jesse Barnes723bfd72010-10-07 16:01:13 -07001305 intel_register_dsm_handler();
1306
Dave Airlie0d697042012-09-10 12:28:36 +10001307 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops, false);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001308 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001309 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001310
Chris Wilson9797fbf2012-04-24 15:47:39 +01001311 /* Initialise stolen first so that we may reserve preallocated
1312 * objects for the BIOS to KMS transition.
1313 */
1314 ret = i915_gem_init_stolen(dev);
1315 if (ret)
1316 goto cleanup_vga_switcheroo;
1317
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001318 ret = drm_irq_install(dev);
1319 if (ret)
1320 goto cleanup_gem_stolen;
1321
Imre Deakddb642f2013-10-28 17:20:35 +02001322 intel_power_domains_init_hw(dev);
Ville Syrjäläa1485322013-09-16 17:38:34 +03001323
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001324 /* Important: The output setup functions called by modeset_init need
1325 * working irqs for e.g. gmbus and dp aux transfers. */
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001326 intel_modeset_init(dev);
1327
Chris Wilson1070a422012-04-24 15:47:41 +01001328 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001329 if (ret)
Ville Syrjäläa1485322013-09-16 17:38:34 +03001330 goto cleanup_power;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001331
Jesse Barnes073f34d2012-11-02 11:13:59 -07001332 INIT_WORK(&dev_priv->console_resume_work, intel_console_resume);
1333
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001334 intel_modeset_gem_init(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001335
Jesse Barnes79e53942008-11-07 14:24:08 -08001336 /* Always safe in the mode setting case. */
1337 /* FIXME: do pre/post-mode set stuff in core KMS code */
Ville Syrjäläba0bf122013-10-04 14:53:33 +03001338 dev->vblank_disable_allowed = true;
Ville Syrjäläce352552013-09-20 10:14:23 +03001339 if (INTEL_INFO(dev)->num_pipes == 0) {
1340 intel_display_power_put(dev, POWER_DOMAIN_VGA);
Ben Widawskye3c74752013-04-05 13:12:39 -07001341 return 0;
Ville Syrjäläce352552013-09-20 10:14:23 +03001342 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001343
Chris Wilson5a793952010-06-06 10:50:03 +01001344 ret = intel_fbdev_init(dev);
1345 if (ret)
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001346 goto cleanup_gem;
1347
1348 /* Only enable hotplug handling once the fbdev is fully set up. */
Daniel Vetter20afbda2012-12-11 14:05:07 +01001349 intel_hpd_init(dev);
1350
1351 /*
1352 * Some ports require correctly set-up hpd registers for detection to
1353 * work properly (leading to ghost connected connector status), e.g. VGA
1354 * on gm45. Hence we can only set up the initial fbdev config after hpd
1355 * irqs are fully enabled. Now we should scan for the initial config
1356 * only once hotplug handling is enabled, but due to screwed-up locking
1357 * around kms/fbdev init we can't protect the fdbev initial config
1358 * scanning against hotplug events. Hence do this first and ignore the
1359 * tiny window where we will loose hotplug notifactions.
1360 */
1361 intel_fbdev_initial_config(dev);
1362
1363 /* Only enable hotplug handling once the fbdev is fully set up. */
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001364 dev_priv->enable_hotplug_processing = true;
Chris Wilson5a793952010-06-06 10:50:03 +01001365
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001366 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001367
Jesse Barnes79e53942008-11-07 14:24:08 -08001368 return 0;
1369
Chris Wilson2c7111d2011-03-29 10:40:27 +01001370cleanup_gem:
1371 mutex_lock(&dev->struct_mutex);
1372 i915_gem_cleanup_ringbuffer(dev);
Ben Widawsky55d23282013-05-25 12:26:39 -07001373 i915_gem_context_fini(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001374 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001375 i915_gem_cleanup_aliasing_ppgtt(dev);
Ben Widawsky93bd8642013-07-16 16:50:06 -07001376 drm_mm_takedown(&dev_priv->gtt.base.mm);
Ville Syrjäläa1485322013-09-16 17:38:34 +03001377cleanup_power:
1378 intel_display_power_put(dev, POWER_DOMAIN_VGA);
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001379 drm_irq_uninstall(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001380cleanup_gem_stolen:
1381 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001382cleanup_vga_switcheroo:
1383 vga_switcheroo_unregister_client(dev->pdev);
1384cleanup_vga_client:
1385 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001386out:
1387 return ret;
1388}
1389
Dave Airlie7c1c2872008-11-28 14:22:24 +10001390int i915_master_create(struct drm_device *dev, struct drm_master *master)
1391{
1392 struct drm_i915_master_private *master_priv;
1393
Eric Anholt9a298b22009-03-24 12:23:04 -07001394 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001395 if (!master_priv)
1396 return -ENOMEM;
1397
1398 master->driver_priv = master_priv;
1399 return 0;
1400}
1401
1402void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1403{
1404 struct drm_i915_master_private *master_priv = master->driver_priv;
1405
1406 if (!master_priv)
1407 return;
1408
Eric Anholt9a298b22009-03-24 12:23:04 -07001409 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001410
1411 master->driver_priv = NULL;
1412}
1413
Daniel Vetter4520f532013-10-09 09:18:51 +02001414#ifdef CONFIG_DRM_I915_FBDEV
Daniel Vettere1887192012-06-12 11:28:17 +02001415static void i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
1416{
1417 struct apertures_struct *ap;
1418 struct pci_dev *pdev = dev_priv->dev->pdev;
1419 bool primary;
1420
1421 ap = alloc_apertures(1);
1422 if (!ap)
1423 return;
1424
Ben Widawskydabb7a92013-01-17 12:45:16 -08001425 ap->ranges[0].base = dev_priv->gtt.mappable_base;
Ben Widawskyf64e2922013-05-25 12:26:36 -07001426 ap->ranges[0].size = dev_priv->gtt.mappable_end;
Ben Widawsky93d18792013-01-17 12:45:17 -08001427
Daniel Vettere1887192012-06-12 11:28:17 +02001428 primary =
1429 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
1430
1431 remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
1432
1433 kfree(ap);
1434}
Daniel Vetter4520f532013-10-09 09:18:51 +02001435#else
1436static void i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
1437{
1438}
1439#endif
Daniel Vettere1887192012-06-12 11:28:17 +02001440
Daniel Vetterc96ea642012-08-08 22:01:51 +02001441static void i915_dump_device_info(struct drm_i915_private *dev_priv)
1442{
1443 const struct intel_device_info *info = dev_priv->info;
1444
Damien Lespiaue2a58002013-04-23 16:38:34 +01001445#define PRINT_S(name) "%s"
1446#define SEP_EMPTY
Damien Lespiau79fc46d2013-04-23 16:37:17 +01001447#define PRINT_FLAG(name) info->name ? #name "," : ""
1448#define SEP_COMMA ,
Daniel Vetterc96ea642012-08-08 22:01:51 +02001449 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x flags="
Damien Lespiaue2a58002013-04-23 16:38:34 +01001450 DEV_INFO_FOR_EACH_FLAG(PRINT_S, SEP_EMPTY),
Daniel Vetterc96ea642012-08-08 22:01:51 +02001451 info->gen,
1452 dev_priv->dev->pdev->device,
Damien Lespiau79fc46d2013-04-23 16:37:17 +01001453 DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_COMMA));
Damien Lespiaue2a58002013-04-23 16:38:34 +01001454#undef PRINT_S
1455#undef SEP_EMPTY
Damien Lespiau79fc46d2013-04-23 16:37:17 +01001456#undef PRINT_FLAG
1457#undef SEP_COMMA
Daniel Vetterc96ea642012-08-08 22:01:51 +02001458}
1459
Eric Anholt63ee41d2010-12-20 18:40:06 -08001460/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001461 * i915_driver_load - setup chip and create an initial config
1462 * @dev: DRM device
1463 * @flags: startup flags
1464 *
1465 * The driver load routine has to do several things:
1466 * - drive output discovery via intel_modeset_init()
1467 * - initialize the memory manager
1468 * - allocate initial config memory
1469 * - setup the DRM framebuffer with the allocated memory
1470 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001471int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001472{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001473 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001474 struct intel_device_info *info;
Chris Wilson934d6082012-09-14 11:57:46 +01001475 int ret = 0, mmio_bar, mmio_size;
Daniel Vetter9021f282012-03-26 09:45:41 +02001476 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001477
Daniel Vetter26394d92012-03-26 21:33:18 +02001478 info = (struct intel_device_info *) flags;
1479
1480 /* Refuse to load on gen6+ without kms enabled. */
Jani Nikulae147acc2013-10-10 15:25:37 +03001481 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET)) {
1482 DRM_INFO("Your hardware requires kernel modesetting (KMS)\n");
1483 DRM_INFO("See CONFIG_DRM_I915_KMS, nomodeset, and i915.modeset parameters\n");
Daniel Vetter26394d92012-03-26 21:33:18 +02001484 return -ENODEV;
Jani Nikulae147acc2013-10-10 15:25:37 +03001485 }
Daniel Vetter26394d92012-03-26 21:33:18 +02001486
Daniel Vetterb14c5672013-09-19 12:18:32 +02001487 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001488 if (dev_priv == NULL)
1489 return -ENOMEM;
1490
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001491 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001492 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001493 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001494
Konstantin Khlebnikov7dcd2672013-07-17 10:22:58 +04001495 spin_lock_init(&dev_priv->irq_lock);
1496 spin_lock_init(&dev_priv->gpu_error.lock);
Konstantin Khlebnikov7dcd2672013-07-17 10:22:58 +04001497 spin_lock_init(&dev_priv->backlight.lock);
Chris Wilson907b28c2013-07-19 20:36:52 +01001498 spin_lock_init(&dev_priv->uncore.lock);
Daniel Vetterc20e8352013-07-24 22:40:23 +02001499 spin_lock_init(&dev_priv->mm.object_stat_lock);
Konstantin Khlebnikov7dcd2672013-07-17 10:22:58 +04001500 mutex_init(&dev_priv->dpio_lock);
Konstantin Khlebnikov7dcd2672013-07-17 10:22:58 +04001501 mutex_init(&dev_priv->modeset_restore_lock);
1502
Daniel Vetterf742a552013-12-06 10:17:53 +01001503 intel_pm_setup(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03001504
Damien Lespiau07144422013-10-15 18:55:40 +01001505 intel_display_crc_init(dev);
1506
Daniel Vetterc96ea642012-08-08 22:01:51 +02001507 i915_dump_device_info(dev_priv);
1508
Paulo Zanonied1c9e22013-08-12 14:34:08 -03001509 /* Not all pre-production machines fall into this category, only the
1510 * very first ones. Almost everything should work, except for maybe
1511 * suspend/resume. And we don't implement workarounds that affect only
1512 * pre-production machines. */
1513 if (IS_HSW_EARLY_SDV(dev))
1514 DRM_INFO("This is an early pre-production Haswell machine. "
1515 "It may not be fully functional.\n");
1516
Dave Airlieec2a4c32009-08-04 11:43:41 +10001517 if (i915_get_bridge_dev(dev)) {
1518 ret = -EIO;
1519 goto free_priv;
1520 }
1521
Ben Widawsky1e1bd0f2013-04-08 18:43:49 -07001522 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1523 /* Before gen4, the registers and the GTT are behind different BARs.
1524 * However, from gen4 onwards, the registers and the GTT are shared
1525 * in the same BAR, so we want to restrict this ioremap from
1526 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
1527 * the register BAR remains the same size for all the earlier
1528 * generations up to Ironlake.
1529 */
1530 if (info->gen < 5)
1531 mmio_size = 512*1024;
1532 else
1533 mmio_size = 2*1024*1024;
1534
1535 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
1536 if (!dev_priv->regs) {
1537 DRM_ERROR("failed to map registers\n");
1538 ret = -EIO;
1539 goto put_bridge;
1540 }
1541
Chris Wilson907b28c2013-07-19 20:36:52 +01001542 intel_uncore_early_sanitize(dev);
Ben Widawsky1e1bd0f2013-04-08 18:43:49 -07001543
Ben Widawskyc3d685a2013-10-08 16:31:03 -07001544 /* This must be called before any calls to HAS_PCH_* */
1545 intel_detect_pch(dev);
1546
1547 intel_uncore_init(dev);
1548
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001549 ret = i915_gem_gtt_init(dev);
1550 if (ret)
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001551 goto out_regs;
Daniel Vettere1887192012-06-12 11:28:17 +02001552
Chris Wilson16233922012-10-26 12:06:41 +01001553 if (drm_core_check_feature(dev, DRIVER_MODESET))
1554 i915_kick_out_firmware_fb(dev_priv);
Daniel Vettere1887192012-06-12 11:28:17 +02001555
Dave Airlie466e69b2011-12-19 11:15:29 +00001556 pci_set_master(dev->pdev);
1557
Daniel Vetter9f82d232010-08-30 21:25:23 +02001558 /* overlay on gen2 is broken and can't address above 1G */
1559 if (IS_GEN2(dev))
1560 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1561
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001562 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1563 * using 32bit addressing, overwriting memory if HWS is located
1564 * above 4GB.
1565 *
1566 * The documentation also mentions an issue with undefined
1567 * behaviour if any general state is accessed within a page above 4GB,
1568 * which also needs to be handled carefully.
1569 */
1570 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1571 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1572
Ben Widawsky93d18792013-01-17 12:45:17 -08001573 aperture_size = dev_priv->gtt.mappable_end;
Chris Wilson71e93392010-10-27 18:46:52 +01001574
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001575 dev_priv->gtt.mappable =
1576 io_mapping_create_wc(dev_priv->gtt.mappable_base,
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001577 aperture_size);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001578 if (dev_priv->gtt.mappable == NULL) {
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001579 ret = -EIO;
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001580 goto out_gtt;
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001581 }
1582
Ben Widawsky911bdf02013-06-27 16:30:23 -07001583 dev_priv->gtt.mtrr = arch_phys_wc_add(dev_priv->gtt.mappable_base,
1584 aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08001585
Chris Wilsone642abb2010-09-09 12:46:34 +01001586 /* The i915 workqueue is primarily used for batched retirement of
1587 * requests (and thus managing bo) once the task has been completed
1588 * by the GPU. i915_gem_retire_requests() is called directly when we
1589 * need high-priority retirement, such as waiting for an explicit
1590 * bo.
1591 *
1592 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001593 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001594 *
1595 * All tasks on the workqueue are expected to acquire the dev mutex
1596 * so there is no point in running more than one instance of the
Tejun Heo53621862012-08-22 16:40:57 -07001597 * workqueue at any time. Use an ordered one.
Chris Wilsone642abb2010-09-09 12:46:34 +01001598 */
Tejun Heo53621862012-08-22 16:40:57 -07001599 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001600 if (dev_priv->wq == NULL) {
1601 DRM_ERROR("Failed to create our workqueue.\n");
1602 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07001603 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001604 }
1605
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001606 intel_irq_init(dev);
Ben Widawsky78511f22013-10-04 21:22:49 -07001607 intel_uncore_sanitize(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001608
Zhenyu Wangc48044112009-12-17 14:48:43 +08001609 /* Try to make sure MCHBAR is enabled before poking at it */
1610 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001611 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001612 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001613
Bryan Freed6d139a82010-10-14 09:14:51 +01001614 intel_setup_bios(dev);
1615
Eric Anholt673a3942008-07-30 12:06:12 -07001616 i915_gem_load(dev);
1617
Eric Anholted4cb412008-07-29 12:10:39 -07001618 /* On the 945G/GM, the chipset reports the MSI capability on the
1619 * integrated graphics even though the support isn't actually there
1620 * according to the published specs. It doesn't appear to function
1621 * correctly in testing on 945G.
1622 * This may be a side effect of MSI having been made available for PEG
1623 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001624 *
1625 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001626 * be lost or delayed, but we use them anyways to avoid
1627 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001628 */
Keith Packardb60678a2008-12-08 11:12:28 -08001629 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001630 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001631
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001632 dev_priv->num_plane = 1;
1633 if (IS_VALLEYVIEW(dev))
1634 dev_priv->num_plane = 2;
1635
Ben Widawskye3c74752013-04-05 13:12:39 -07001636 if (INTEL_INFO(dev)->num_pipes) {
1637 ret = drm_vblank_init(dev, INTEL_INFO(dev)->num_pipes);
1638 if (ret)
1639 goto out_gem_unload;
1640 }
Keith Packard52440212008-11-18 09:30:25 -08001641
Wang Xingchaoa38911a2013-05-30 22:07:11 +08001642 if (HAS_POWER_WELL(dev))
Imre Deakddb642f2013-10-28 17:20:35 +02001643 intel_power_domains_init(dev);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08001644
Jesse Barnes79e53942008-11-07 14:24:08 -08001645 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02001646 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001647 if (ret < 0) {
1648 DRM_ERROR("failed to init modeset\n");
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001649 goto out_power_well;
Jesse Barnes79e53942008-11-07 14:24:08 -08001650 }
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02001651 } else {
1652 /* Start out suspended in ums mode. */
1653 dev_priv->ums.mm_suspended = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -08001654 }
1655
Ben Widawsky0136db582012-04-10 21:17:01 -07001656 i915_setup_sysfs(dev);
1657
Ben Widawskye3c74752013-04-05 13:12:39 -07001658 if (INTEL_INFO(dev)->num_pipes) {
1659 /* Must be done after probing outputs */
1660 intel_opregion_init(dev);
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001661 acpi_video_register();
Ben Widawskye3c74752013-04-05 13:12:39 -07001662 }
Matthew Garrett74a365b2009-03-19 21:35:39 +00001663
Daniel Vettereb48eb02012-04-26 23:28:12 +02001664 if (IS_GEN5(dev))
1665 intel_gpu_ips_init(dev_priv);
Eric Anholt63ee41d2010-12-20 18:40:06 -08001666
Jesse Barnes79e53942008-11-07 14:24:08 -08001667 return 0;
1668
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001669out_power_well:
1670 if (HAS_POWER_WELL(dev))
Imre Deakddb642f2013-10-28 17:20:35 +02001671 intel_power_domains_remove(dev);
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001672 drm_vblank_cleanup(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001673out_gem_unload:
Dave Chinner7dc19d52013-08-28 10:18:11 +10001674 if (dev_priv->mm.inactive_shrinker.scan_objects)
Keith Packarda7b85d22011-07-10 13:12:17 -07001675 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1676
Chris Wilson56e2ea32010-11-08 17:10:29 +00001677 if (dev->pdev->msi_enabled)
1678 pci_disable_msi(dev->pdev);
1679
1680 intel_teardown_gmbus(dev);
1681 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001682 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07001683out_mtrrfree:
Ben Widawsky911bdf02013-06-27 16:30:23 -07001684 arch_phys_wc_del(dev_priv->gtt.mtrr);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001685 io_mapping_free(dev_priv->gtt.mappable);
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001686out_gtt:
1687 list_del(&dev_priv->gtt.base.global_link);
1688 drm_mm_takedown(&dev_priv->gtt.base.mm);
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001689 dev_priv->gtt.base.cleanup(&dev_priv->gtt.base);
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001690out_regs:
Ben Widawskyc3d685a2013-10-08 16:31:03 -07001691 intel_uncore_fini(dev);
Chris Wilson6dda5692010-10-29 21:02:18 +01001692 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001693put_bridge:
1694 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001695free_priv:
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001696 if (dev_priv->slab)
1697 kmem_cache_destroy(dev_priv->slab);
Eric Anholt9a298b22009-03-24 12:23:04 -07001698 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001699 return ret;
1700}
1701
1702int i915_driver_unload(struct drm_device *dev)
1703{
1704 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02001705 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001706
Daniel Vettereb48eb02012-04-26 23:28:12 +02001707 intel_gpu_ips_teardown();
Jesse Barnes7648fa92010-05-20 14:28:11 -07001708
Paulo Zanoni79f8dea2013-08-14 14:40:37 -03001709 if (HAS_POWER_WELL(dev)) {
1710 /* The i915.ko module is still not prepared to be loaded when
1711 * the power well is not enabled, so just enable it in case
1712 * we're going to unload/reload. */
Imre Deakbaa70702013-10-25 17:36:48 +03001713 intel_display_set_init_power(dev, true);
Imre Deakddb642f2013-10-28 17:20:35 +02001714 intel_power_domains_remove(dev);
Paulo Zanoni79f8dea2013-08-14 14:40:37 -03001715 }
Wang Xingchaoa38911a2013-05-30 22:07:11 +08001716
Ben Widawsky0136db582012-04-10 21:17:01 -07001717 i915_teardown_sysfs(dev);
1718
Dave Chinner7dc19d52013-08-28 10:18:11 +10001719 if (dev_priv->mm.inactive_shrinker.scan_objects)
Chris Wilson17250b72010-10-28 12:51:39 +01001720 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1721
Chris Wilson45c5f202013-10-16 11:50:01 +01001722 ret = i915_gem_suspend(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02001723 if (ret)
1724 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001725
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001726 io_mapping_free(dev_priv->gtt.mappable);
Ben Widawsky911bdf02013-06-27 16:30:23 -07001727 arch_phys_wc_del(dev_priv->gtt.mtrr);
Eric Anholtab657db12009-01-23 12:57:47 -08001728
Chris Wilson44834a62010-08-19 16:09:23 +01001729 acpi_video_unregister();
1730
Jesse Barnes79e53942008-11-07 14:24:08 -08001731 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01001732 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001733 intel_modeset_cleanup(dev);
Jesse Barnes073f34d2012-11-02 11:13:59 -07001734 cancel_work_sync(&dev_priv->console_resume_work);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07001735
Zhao Yakui6363ee62009-11-24 09:48:44 +08001736 /*
1737 * free the memory space allocated for the child device
1738 * config parsed from VBT
1739 */
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03001740 if (dev_priv->vbt.child_dev && dev_priv->vbt.child_dev_num) {
1741 kfree(dev_priv->vbt.child_dev);
1742 dev_priv->vbt.child_dev = NULL;
1743 dev_priv->vbt.child_dev_num = 0;
Zhao Yakui6363ee62009-11-24 09:48:44 +08001744 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02001745
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001746 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10001747 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001748 }
1749
Daniel Vettera8b48992010-08-20 21:25:11 +02001750 /* Free error state after interrupts are fully disabled. */
Daniel Vetter99584db2012-11-14 17:14:04 +01001751 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
1752 cancel_work_sync(&dev_priv->gpu_error.work);
Daniel Vettera8b48992010-08-20 21:25:11 +02001753 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001754
Paulo Zanonic67a4702013-08-19 13:18:09 -03001755 cancel_delayed_work_sync(&dev_priv->pc8.enable_work);
1756
Eric Anholted4cb412008-07-29 12:10:39 -07001757 if (dev->pdev->msi_enabled)
1758 pci_disable_msi(dev->pdev);
1759
Chris Wilson44834a62010-08-19 16:09:23 +01001760 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001761
Jesse Barnes79e53942008-11-07 14:24:08 -08001762 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02001763 /* Flush any outstanding unpin_work. */
1764 flush_workqueue(dev_priv->wq);
1765
Jesse Barnes79e53942008-11-07 14:24:08 -08001766 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07001767 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001768 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter55a66622012-06-19 21:55:32 +02001769 i915_gem_context_fini(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001770 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001771 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001772 i915_gem_cleanup_stolen(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01001773
1774 if (!I915_NEED_GFX_HWS(dev))
1775 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001776 }
1777
Ben Widawskya7bbbd62013-07-16 16:50:07 -07001778 list_del(&dev_priv->gtt.base.global_link);
1779 WARN_ON(!list_empty(&dev_priv->vm_list));
Ben Widawsky93bd8642013-07-16 16:50:06 -07001780 drm_mm_takedown(&dev_priv->gtt.base.mm);
Daniel Vetter701394c2010-10-10 18:54:08 +01001781
Chris Wilsoncbb47d12013-09-23 17:33:20 -03001782 drm_vblank_cleanup(dev);
1783
Chris Wilsonf899fc62010-07-20 15:44:45 -07001784 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001785 intel_teardown_mchbar(dev);
1786
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001787 destroy_workqueue(dev_priv->wq);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001788 pm_qos_remove_request(&dev_priv->pm_qos);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02001789
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001790 dev_priv->gtt.base.cleanup(&dev_priv->gtt.base);
Imre Deak6640aab2013-05-22 17:47:13 +03001791
Chris Wilsonaec347a2013-08-26 13:46:09 +01001792 intel_uncore_fini(dev);
1793 if (dev_priv->regs != NULL)
1794 pci_iounmap(dev->pdev, dev_priv->regs);
1795
Chris Wilson42dcedd2012-11-15 11:32:30 +00001796 if (dev_priv->slab)
1797 kmem_cache_destroy(dev_priv->slab);
Eric Anholt9a298b22009-03-24 12:23:04 -07001798
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001799 pci_dev_put(dev_priv->bridge_dev);
Dave Airlie22eae942005-11-10 22:16:34 +11001800 kfree(dev->dev_private);
1801
1802 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001803}
1804
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001805int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001806{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001807 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001808
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001809 ret = i915_gem_open(dev, file);
1810 if (ret)
1811 return ret;
Ben Widawsky254f9652012-06-04 14:42:42 -07001812
Eric Anholt673a3942008-07-30 12:06:12 -07001813 return 0;
1814}
1815
Jesse Barnes79e53942008-11-07 14:24:08 -08001816/**
1817 * i915_driver_lastclose - clean up after all DRM clients have exited
1818 * @dev: DRM device
1819 *
1820 * Take care of cleaning up after all DRM clients have exited. In the
1821 * mode setting case, we want to restore the kernel's initial mode (just
1822 * in case the last client left us in a bad state).
1823 *
Daniel Vetter9021f282012-03-26 09:45:41 +02001824 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08001825 * and DMA structures, since the kernel won't be using them, and clea
1826 * up any GEM state.
1827 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001828void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001830 drm_i915_private_t *dev_priv = dev->dev_private;
1831
Daniel Vettere8aeaee2012-07-21 16:47:09 +02001832 /* On gen6+ we refuse to init without kms enabled, but then the drm core
1833 * goes right around and calls lastclose. Check for this and don't clean
1834 * up anything. */
1835 if (!dev_priv)
1836 return;
1837
1838 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter0632fef2013-10-08 17:44:49 +02001839 intel_fbdev_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001840 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10001841 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001842 }
Dave Airlie144a75f2008-03-30 07:53:58 +10001843
Eric Anholt673a3942008-07-30 12:06:12 -07001844 i915_gem_lastclose(dev);
1845
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001846 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Eric Anholt6c340ea2007-08-25 20:23:09 +10001849void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
Chris Wilson0d1430a2013-12-04 14:52:06 +00001851 mutex_lock(&dev->struct_mutex);
Ben Widawsky254f9652012-06-04 14:42:42 -07001852 i915_gem_context_close(dev, file_priv);
Eric Anholtb9624422009-06-03 07:27:35 +00001853 i915_gem_release(dev, file_priv);
Chris Wilson0d1430a2013-12-04 14:52:06 +00001854 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001857void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001858{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001859 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001860
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001861 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07001862}
1863
Rob Clarkbaa70942013-08-02 13:27:49 -04001864const struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001865 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1866 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
1867 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
1868 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
1869 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
1870 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001871 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH|DRM_RENDER_ALLOW),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001872 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001873 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1874 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1875 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001876 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01001877 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterd1c1edb2012-04-26 23:28:01 +02001878 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001879 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
1880 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
1881 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1882 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1883 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001884 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001885 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1886 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001887 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1888 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1889 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1890 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001891 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1892 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001893 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1894 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1895 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1896 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1897 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1898 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1899 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1900 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1901 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1902 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001903 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001904 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
Dave Airlie1b2f1482010-08-14 20:20:34 +10001905 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1906 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08001907 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1908 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001909 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1910 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1911 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1912 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
Dave Airliec94f7022005-07-07 21:03:38 +10001913};
1914
1915int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001916
Daniel Vetter9021f282012-03-26 09:45:41 +02001917/*
1918 * This is really ugly: Because old userspace abused the linux agp interface to
1919 * manage the gtt, we need to claim that all intel devices are agp. For
1920 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10001921 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001922int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10001923{
1924 return 1;
1925}