blob: e2983a9a1255b01cb4bf8f0ad578fac7c89c1d6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "drmP.h"
32#include "drm.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "drm_crtc_helper.h"
Dave Airlie785b93e2009-08-28 15:46:53 +100034#include "drm_fb_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i915_drm.h"
37#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010038#include "i915_trace.h"
Eric Anholt63ee41d2010-12-20 18:40:06 -080039#include "../../../platform/x86/intel_ips.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060040#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100041#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080042#include <linux/acpi.h>
43#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100044#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040046#include <linux/module.h>
Chris Wilson44834a62010-08-19 16:09:23 +010047#include <acpi/video.h>
Adam Jackson9e984bc12012-03-14 11:22:11 -040048#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Chris Wilson4cbf74c2011-02-25 22:26:23 +000050static void i915_write_hws_pga(struct drm_device *dev)
51{
52 drm_i915_private_t *dev_priv = dev->dev_private;
53 u32 addr;
54
55 addr = dev_priv->status_page_dmah->busaddr;
56 if (INTEL_INFO(dev)->gen >= 4)
57 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
58 I915_WRITE(HWS_PGA, addr);
59}
60
Keith Packard398c9cb2008-07-30 13:03:43 -070061/**
62 * Sets up the hardware status page for devices that need a physical address
63 * in the register.
64 */
Eric Anholt3043c602008-10-02 12:24:47 -070065static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070066{
67 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000068
Keith Packard398c9cb2008-07-30 13:03:43 -070069 /* Program Hardware Status Page */
70 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080071 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070072
73 if (!dev_priv->status_page_dmah) {
74 DRM_ERROR("Can not allocate hardware status page\n");
75 return -ENOMEM;
76 }
Keith Packard398c9cb2008-07-30 13:03:43 -070077
Keith Packardf3234702011-07-22 10:44:39 -070078 memset_io((void __force __iomem *)dev_priv->status_page_dmah->vaddr,
79 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070080
Chris Wilson4cbf74c2011-02-25 22:26:23 +000081 i915_write_hws_pga(dev);
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080082
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080083 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070084 return 0;
85}
86
87/**
88 * Frees the hardware status page, whether it's a physical address or a virtual
89 * address set up by the X Server.
90 */
Eric Anholt3043c602008-10-02 12:24:47 -070091static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070092{
93 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000094 struct intel_ring_buffer *ring = LP_RING(dev_priv);
95
Keith Packard398c9cb2008-07-30 13:03:43 -070096 if (dev_priv->status_page_dmah) {
97 drm_pci_free(dev, dev_priv->status_page_dmah);
98 dev_priv->status_page_dmah = NULL;
99 }
100
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000101 if (ring->status_page.gfx_addr) {
102 ring->status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -0700103 drm_core_ioremapfree(&dev_priv->hws_map, dev);
104 }
105
106 /* Need to rewrite hardware status page */
107 I915_WRITE(HWS_PGA, 0x1ffff000);
108}
109
Dave Airlie84b1fd12007-07-11 15:53:27 +1000110void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000113 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000114 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Jesse Barnes79e53942008-11-07 14:24:08 -0800116 /*
117 * We should never lose context on the ring with modesetting
118 * as we don't expose it to userspace
119 */
120 if (drm_core_check_feature(dev, DRIVER_MODESET))
121 return;
122
Chris Wilson8168bd42010-11-11 17:54:52 +0000123 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
124 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 ring->space = ring->head - (ring->tail + 8);
126 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800127 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Dave Airlie7c1c2872008-11-28 14:22:24 +1000129 if (!dev->primary->master)
130 return;
131
132 master_priv = dev->primary->master->driver_priv;
133 if (ring->head == ring->tail && master_priv->sarea_priv)
134 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Dave Airlie84b1fd12007-07-11 15:53:27 +1000137static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000139 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000140 int i;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* Make sure interrupts are disabled here because the uninstall ioctl
143 * may not have been called from userspace and after dev_private
144 * is freed, it's too late.
145 */
Eric Anholted4cb412008-07-29 12:10:39 -0700146 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000147 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200149 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000150 for (i = 0; i < I915_NUM_RINGS; i++)
151 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200152 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Keith Packard398c9cb2008-07-30 13:03:43 -0700154 /* Clear the HWS virtual address at teardown */
155 if (I915_NEED_GFX_HWS(dev))
156 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return 0;
159}
160
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000161static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000163 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000164 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000165 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Airlie3a03ac12009-01-11 09:03:49 +1000167 master_priv->sarea = drm_getsarea(dev);
168 if (master_priv->sarea) {
169 master_priv->sarea_priv = (drm_i915_sarea_t *)
170 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
171 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800172 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000173 }
174
Eric Anholt673a3942008-07-30 12:06:12 -0700175 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000176 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700177 i915_dma_cleanup(dev);
178 DRM_ERROR("Client tried to initialize ringbuffer in "
179 "GEM mode\n");
180 return -EINVAL;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Chris Wilsone8616b62011-01-20 09:57:11 +0000183 ret = intel_render_ring_init_dri(dev,
184 init->ring_start,
185 init->ring_size);
186 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700187 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000188 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000192 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dev_priv->back_offset = init->back_offset;
194 dev_priv->front_offset = init->front_offset;
195 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000196 if (master_priv->sarea_priv)
197 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* Allow hardware batchbuffers unless told otherwise.
200 */
201 dev_priv->allow_batchbuffer = 1;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204}
205
Dave Airlie84b1fd12007-07-11 15:53:27 +1000206static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000209 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800211 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800213 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 DRM_ERROR("can not ioremap virtual address for"
215 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000216 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800220 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000222 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800224 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800225 ring->status_page.page_addr);
226 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100227 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000228 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000229 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800230
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800231 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 return 0;
234}
235
Eric Anholtc153f452007-09-03 12:06:45 +1000236static int i915_dma_init(struct drm_device *dev, void *data,
237 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Eric Anholtc153f452007-09-03 12:06:45 +1000239 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int retcode = 0;
241
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200242 if (drm_core_check_feature(dev, DRIVER_MODESET))
243 return -ENODEV;
244
Eric Anholtc153f452007-09-03 12:06:45 +1000245 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000247 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 break;
249 case I915_CLEANUP_DMA:
250 retcode = i915_dma_cleanup(dev);
251 break;
252 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100253 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
255 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000256 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 }
259
260 return retcode;
261}
262
263/* Implement basically the same security restrictions as hardware does
264 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
265 *
266 * Most of the calculations below involve calculating the size of a
267 * particular instruction. It's important to get the size right as
268 * that tells us where the next instruction to check is. Any illegal
269 * instruction detected will be given a size of zero, which is a
270 * signal to abort the rest of the buffer.
271 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100272static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 switch (((cmd >> 29) & 0x7)) {
275 case 0x0:
276 switch ((cmd >> 23) & 0x3f) {
277 case 0x0:
278 return 1; /* MI_NOOP */
279 case 0x4:
280 return 1; /* MI_FLUSH */
281 default:
282 return 0; /* disallow everything else */
283 }
284 break;
285 case 0x1:
286 return 0; /* reserved */
287 case 0x2:
288 return (cmd & 0xff) + 2; /* 2d commands */
289 case 0x3:
290 if (((cmd >> 24) & 0x1f) <= 0x18)
291 return 1;
292
293 switch ((cmd >> 24) & 0x1f) {
294 case 0x1c:
295 return 1;
296 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000297 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 case 0x3:
299 return (cmd & 0x1f) + 2;
300 case 0x4:
301 return (cmd & 0xf) + 2;
302 default:
303 return (cmd & 0xffff) + 2;
304 }
305 case 0x1e:
306 if (cmd & (1 << 23))
307 return (cmd & 0xffff) + 1;
308 else
309 return 1;
310 case 0x1f:
311 if ((cmd & (1 << 23)) == 0) /* inline vertices */
312 return (cmd & 0x1ffff) + 2;
313 else if (cmd & (1 << 17)) /* indirect random */
314 if ((cmd & 0xffff) == 0)
315 return 0; /* unknown length, too hard */
316 else
317 return (((cmd & 0xffff) + 1) / 2) + 1;
318 else
319 return 2; /* indirect sequential */
320 default:
321 return 0;
322 }
323 default:
324 return 0;
325 }
326
327 return 0;
328}
329
Eric Anholt201361a2009-03-11 12:30:04 -0700330static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100333 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000335 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000336 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100339 int sz = validate_cmd(buffer[i]);
340 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000341 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100342 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100345 ret = BEGIN_LP_RING((dwords+1)&~1);
346 if (ret)
347 return ret;
348
349 for (i = 0; i < dwords; i++)
350 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100351 if (dwords & 1)
352 OUT_RING(0);
353
354 ADVANCE_LP_RING();
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357}
358
Eric Anholt673a3942008-07-30 12:06:12 -0700359int
360i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000361 struct drm_clip_rect *box,
362 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100364 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100365 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000367 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
368 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000370 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000371 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100374 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100375 ret = BEGIN_LP_RING(4);
376 if (ret)
377 return ret;
378
Alan Hourihanec29b6692006-08-12 16:29:24 +1000379 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000380 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
381 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000382 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000383 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100384 ret = BEGIN_LP_RING(6);
385 if (ret)
386 return ret;
387
Alan Hourihanec29b6692006-08-12 16:29:24 +1000388 OUT_RING(GFX_OP_DRAWRECT_INFO);
389 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000390 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
391 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000392 OUT_RING(DR4);
393 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000394 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100395 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 return 0;
398}
399
Alan Hourihanec29b6692006-08-12 16:29:24 +1000400/* XXX: Emitting the counter should really be moved to part of the IRQ
401 * emit. For now, do it in both places:
402 */
403
Dave Airlie84b1fd12007-07-11 15:53:27 +1000404static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100405{
406 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000407 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100408
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400409 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000410 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400411 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000412 if (master_priv->sarea_priv)
413 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100414
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100415 if (BEGIN_LP_RING(4) == 0) {
416 OUT_RING(MI_STORE_DWORD_INDEX);
417 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
418 OUT_RING(dev_priv->counter);
419 OUT_RING(0);
420 ADVANCE_LP_RING();
421 }
Dave Airliede227f52006-01-25 15:31:43 +1100422}
423
Dave Airlie84b1fd12007-07-11 15:53:27 +1000424static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700425 drm_i915_cmdbuffer_t *cmd,
426 struct drm_clip_rect *cliprects,
427 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 int nbox = cmd->num_cliprects;
430 int i = 0, count, ret;
431
432 if (cmd->sz & 0x3) {
433 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000434 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 i915_kernel_lost_context(dev);
438
439 count = nbox ? nbox : 1;
440
441 for (i = 0; i < count; i++) {
442 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000443 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 cmd->DR1, cmd->DR4);
445 if (ret)
446 return ret;
447 }
448
Eric Anholt201361a2009-03-11 12:30:04 -0700449 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (ret)
451 return ret;
452 }
453
Dave Airliede227f52006-01-25 15:31:43 +1100454 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
Dave Airlie84b1fd12007-07-11 15:53:27 +1000458static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700459 drm_i915_batchbuffer_t * batch,
460 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100462 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100464 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if ((batch->start | batch->used) & 0x7) {
467 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000468 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470
471 i915_kernel_lost_context(dev);
472
473 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 for (i = 0; i < count; i++) {
475 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000476 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100477 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (ret)
479 return ret;
480 }
481
Keith Packard0790d5e2008-07-30 12:28:47 -0700482 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100483 ret = BEGIN_LP_RING(2);
484 if (ret)
485 return ret;
486
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100487 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000488 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
489 OUT_RING(batch->start);
490 } else {
491 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
492 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100495 ret = BEGIN_LP_RING(4);
496 if (ret)
497 return ret;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 OUT_RING(MI_BATCH_BUFFER);
500 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
501 OUT_RING(batch->start + batch->used - 4);
502 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100504 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Zou Nan hai1cafd342010-06-25 13:40:24 +0800507
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100508 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100509 if (BEGIN_LP_RING(2) == 0) {
510 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
511 OUT_RING(MI_NOOP);
512 ADVANCE_LP_RING();
513 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100516 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return 0;
518}
519
Dave Airlieaf6061a2008-05-07 12:15:39 +1000520static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000523 struct drm_i915_master_private *master_priv =
524 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100525 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Dave Airlie7c1c2872008-11-28 14:22:24 +1000527 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400528 return -EINVAL;
529
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800530 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800531 __func__,
532 dev_priv->current_page,
533 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Dave Airlieaf6061a2008-05-07 12:15:39 +1000535 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100537 ret = BEGIN_LP_RING(10);
538 if (ret)
539 return ret;
540
Jesse Barnes585fb112008-07-29 11:54:06 -0700541 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000542 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dave Airlieaf6061a2008-05-07 12:15:39 +1000544 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
545 OUT_RING(0);
546 if (dev_priv->current_page == 0) {
547 OUT_RING(dev_priv->back_offset);
548 dev_priv->current_page = 1;
549 } else {
550 OUT_RING(dev_priv->front_offset);
551 dev_priv->current_page = 0;
552 }
553 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000554
Dave Airlieaf6061a2008-05-07 12:15:39 +1000555 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
556 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100557
Dave Airlieaf6061a2008-05-07 12:15:39 +1000558 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000559
Dave Airlie7c1c2872008-11-28 14:22:24 +1000560 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000561
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100562 if (BEGIN_LP_RING(4) == 0) {
563 OUT_RING(MI_STORE_DWORD_INDEX);
564 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
565 OUT_RING(dev_priv->counter);
566 OUT_RING(0);
567 ADVANCE_LP_RING();
568 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000569
Dave Airlie7c1c2872008-11-28 14:22:24 +1000570 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000574static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000576 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 i915_kernel_lost_context(dev);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700579 return intel_wait_ring_idle(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Eric Anholtc153f452007-09-03 12:06:45 +1000582static int i915_flush_ioctl(struct drm_device *dev, void *data,
583 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Eric Anholt546b0972008-09-01 16:45:29 -0700585 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200587 if (drm_core_check_feature(dev, DRIVER_MODESET))
588 return -ENODEV;
589
Eric Anholt546b0972008-09-01 16:45:29 -0700590 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
591
592 mutex_lock(&dev->struct_mutex);
593 ret = i915_quiescent(dev);
594 mutex_unlock(&dev->struct_mutex);
595
596 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Eric Anholtc153f452007-09-03 12:06:45 +1000599static int i915_batchbuffer(struct drm_device *dev, void *data,
600 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000603 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000605 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000606 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700608 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200610 if (drm_core_check_feature(dev, DRIVER_MODESET))
611 return -ENODEV;
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!dev_priv->allow_batchbuffer) {
614 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800618 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800619 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Eric Anholt546b0972008-09-01 16:45:29 -0700621 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Eric Anholt201361a2009-03-11 12:30:04 -0700623 if (batch->num_cliprects < 0)
624 return -EINVAL;
625
626 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700627 cliprects = kcalloc(batch->num_cliprects,
628 sizeof(struct drm_clip_rect),
629 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700630 if (cliprects == NULL)
631 return -ENOMEM;
632
633 ret = copy_from_user(cliprects, batch->cliprects,
634 batch->num_cliprects *
635 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200636 if (ret != 0) {
637 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700638 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200639 }
Eric Anholt201361a2009-03-11 12:30:04 -0700640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Eric Anholt546b0972008-09-01 16:45:29 -0700642 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700643 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700644 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400646 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000647 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700648
649fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700650 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return ret;
653}
654
Eric Anholtc153f452007-09-03 12:06:45 +1000655static int i915_cmdbuffer(struct drm_device *dev, void *data,
656 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000659 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000661 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000662 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700663 struct drm_clip_rect *cliprects = NULL;
664 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int ret;
666
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800667 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800668 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200670 if (drm_core_check_feature(dev, DRIVER_MODESET))
671 return -ENODEV;
672
Eric Anholt546b0972008-09-01 16:45:29 -0700673 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Eric Anholt201361a2009-03-11 12:30:04 -0700675 if (cmdbuf->num_cliprects < 0)
676 return -EINVAL;
677
Eric Anholt9a298b22009-03-24 12:23:04 -0700678 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700679 if (batch_data == NULL)
680 return -ENOMEM;
681
682 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200683 if (ret != 0) {
684 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700685 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200686 }
Eric Anholt201361a2009-03-11 12:30:04 -0700687
688 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700689 cliprects = kcalloc(cmdbuf->num_cliprects,
690 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000691 if (cliprects == NULL) {
692 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700693 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000694 }
Eric Anholt201361a2009-03-11 12:30:04 -0700695
696 ret = copy_from_user(cliprects, cmdbuf->cliprects,
697 cmdbuf->num_cliprects *
698 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200699 if (ret != 0) {
700 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700701 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
Eric Anholt546b0972008-09-01 16:45:29 -0700705 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700706 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700707 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (ret) {
709 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000710 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400713 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000714 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700715
Eric Anholt201361a2009-03-11 12:30:04 -0700716fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700717 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000718fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700719 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700720
721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Eric Anholtc153f452007-09-03 12:06:45 +1000724static int i915_flip_bufs(struct drm_device *dev, void *data,
725 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Eric Anholt546b0972008-09-01 16:45:29 -0700727 int ret;
728
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200729 if (drm_core_check_feature(dev, DRIVER_MODESET))
730 return -ENODEV;
731
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800732 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Eric Anholt546b0972008-09-01 16:45:29 -0700734 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Eric Anholt546b0972008-09-01 16:45:29 -0700736 mutex_lock(&dev->struct_mutex);
737 ret = i915_dispatch_flip(dev);
738 mutex_unlock(&dev->struct_mutex);
739
740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Eric Anholtc153f452007-09-03 12:06:45 +1000743static int i915_getparam(struct drm_device *dev, void *data,
744 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000747 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int value;
749
750 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000751 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000752 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
Eric Anholtc153f452007-09-03 12:06:45 +1000755 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700757 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 break;
759 case I915_PARAM_ALLOW_BATCHBUFFER:
760 value = dev_priv->allow_batchbuffer ? 1 : 0;
761 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100762 case I915_PARAM_LAST_DISPATCH:
763 value = READ_BREADCRUMB(dev_priv);
764 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400765 case I915_PARAM_CHIPSET_ID:
766 value = dev->pci_device;
767 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700768 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200769 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700770 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800771 case I915_PARAM_NUM_FENCES_AVAIL:
772 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
773 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774 case I915_PARAM_HAS_OVERLAY:
775 value = dev_priv->overlay ? 1 : 0;
776 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800777 case I915_PARAM_HAS_PAGEFLIPPING:
778 value = 1;
779 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500780 case I915_PARAM_HAS_EXECBUF2:
781 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200782 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500783 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800784 case I915_PARAM_HAS_BSD:
785 value = HAS_BSD(dev);
786 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100787 case I915_PARAM_HAS_BLT:
788 value = HAS_BLT(dev);
789 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100790 case I915_PARAM_HAS_RELAXED_FENCING:
791 value = 1;
792 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100793 case I915_PARAM_HAS_COHERENT_RINGS:
794 value = 1;
795 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000796 case I915_PARAM_HAS_EXEC_CONSTANTS:
797 value = INTEL_INFO(dev)->gen >= 4;
798 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000799 case I915_PARAM_HAS_RELAXED_DELTA:
800 value = 1;
801 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800802 case I915_PARAM_HAS_GEN7_SOL_RESET:
803 value = 1;
804 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200805 case I915_PARAM_HAS_LLC:
806 value = HAS_LLC(dev);
807 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100808 case I915_PARAM_HAS_ALIASING_PPGTT:
809 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800812 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500813 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000814 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
Eric Anholtc153f452007-09-03 12:06:45 +1000817 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000819 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
822 return 0;
823}
824
Eric Anholtc153f452007-09-03 12:06:45 +1000825static int i915_setparam(struct drm_device *dev, void *data,
826 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000829 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000832 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
Eric Anholtc153f452007-09-03 12:06:45 +1000836 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000840 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 break;
842 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000843 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800845 case I915_SETPARAM_NUM_USED_FENCES:
846 if (param->value > dev_priv->num_fence_regs ||
847 param->value < 0)
848 return -EINVAL;
849 /* Userspace can use first N regs */
850 dev_priv->fence_reg_start = param->value;
851 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800853 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800854 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000855 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857
858 return 0;
859}
860
Eric Anholtc153f452007-09-03 12:06:45 +1000861static int i915_set_status_page(struct drm_device *dev, void *data,
862 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000863{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000864 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000865 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000866 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000867
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200868 if (drm_core_check_feature(dev, DRIVER_MODESET))
869 return -ENODEV;
870
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000871 if (!I915_NEED_GFX_HWS(dev))
872 return -EINVAL;
873
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000874 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000875 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000876 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000877 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000878
Jesse Barnes79e53942008-11-07 14:24:08 -0800879 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
880 WARN(1, "tried to set status page when mode setting active\n");
881 return 0;
882 }
883
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800884 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000885
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800886 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000887
Eric Anholt8b409582007-11-22 16:40:37 +1000888 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000889 dev_priv->hws_map.size = 4*1024;
890 dev_priv->hws_map.type = 0;
891 dev_priv->hws_map.flags = 0;
892 dev_priv->hws_map.mtrr = 0;
893
Dave Airliedd0910b2009-02-25 14:49:21 +1000894 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000895 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000896 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700897 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000898 DRM_ERROR("can not ioremap virtual address for"
899 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000900 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000901 }
Chris Wilson311bd682011-01-13 19:06:50 +0000902 ring->status_page.page_addr =
903 (void __force __iomem *)dev_priv->hws_map.handle;
904 memset_io(ring->status_page.page_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800905 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000906
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800907 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700908 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800909 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700910 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000911 return 0;
912}
913
Dave Airlieec2a4c32009-08-04 11:43:41 +1000914static int i915_get_bridge_dev(struct drm_device *dev)
915{
916 struct drm_i915_private *dev_priv = dev->dev_private;
917
Akshay Joshi0206e352011-08-16 15:34:10 -0400918 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +1000919 if (!dev_priv->bridge_dev) {
920 DRM_ERROR("bridge device not found\n");
921 return -1;
922 }
923 return 0;
924}
925
Zhenyu Wangc48044112009-12-17 14:48:43 +0800926#define MCHBAR_I915 0x44
927#define MCHBAR_I965 0x48
928#define MCHBAR_SIZE (4*4096)
929
930#define DEVEN_REG 0x54
931#define DEVEN_MCHBAR_EN (1 << 28)
932
933/* Allocate space for the MCH regs if needed, return nonzero on error */
934static int
935intel_alloc_mchbar_resource(struct drm_device *dev)
936{
937 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100938 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800939 u32 temp_lo, temp_hi = 0;
940 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100941 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800942
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100943 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800944 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
945 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
946 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
947
948 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
949#ifdef CONFIG_PNP
950 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100951 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
952 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800953#endif
954
955 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100956 dev_priv->mch_res.name = "i915 MCHBAR";
957 dev_priv->mch_res.flags = IORESOURCE_MEM;
958 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
959 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800960 MCHBAR_SIZE, MCHBAR_SIZE,
961 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100962 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800963 dev_priv->bridge_dev);
964 if (ret) {
965 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
966 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100967 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800968 }
969
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100970 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800971 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
972 upper_32_bits(dev_priv->mch_res.start));
973
974 pci_write_config_dword(dev_priv->bridge_dev, reg,
975 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100976 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800977}
978
979/* Setup MCHBAR if possible, return true if we should disable it again */
980static void
981intel_setup_mchbar(struct drm_device *dev)
982{
983 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100984 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800985 u32 temp;
986 bool enabled;
987
988 dev_priv->mchbar_need_disable = false;
989
990 if (IS_I915G(dev) || IS_I915GM(dev)) {
991 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
992 enabled = !!(temp & DEVEN_MCHBAR_EN);
993 } else {
994 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
995 enabled = temp & 1;
996 }
997
998 /* If it's already enabled, don't have to do anything */
999 if (enabled)
1000 return;
1001
1002 if (intel_alloc_mchbar_resource(dev))
1003 return;
1004
1005 dev_priv->mchbar_need_disable = true;
1006
1007 /* Space is allocated or reserved, so enable it. */
1008 if (IS_I915G(dev) || IS_I915GM(dev)) {
1009 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1010 temp | DEVEN_MCHBAR_EN);
1011 } else {
1012 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1013 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1014 }
1015}
1016
1017static void
1018intel_teardown_mchbar(struct drm_device *dev)
1019{
1020 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001021 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001022 u32 temp;
1023
1024 if (dev_priv->mchbar_need_disable) {
1025 if (IS_I915G(dev) || IS_I915GM(dev)) {
1026 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1027 temp &= ~DEVEN_MCHBAR_EN;
1028 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1029 } else {
1030 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1031 temp &= ~1;
1032 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1033 }
1034 }
1035
1036 if (dev_priv->mch_res.start)
1037 release_resource(&dev_priv->mch_res);
1038}
1039
Dave Airlie28d52042009-09-21 14:33:58 +10001040/* true = enable decode, false = disable decoder */
1041static unsigned int i915_vga_set_decode(void *cookie, bool state)
1042{
1043 struct drm_device *dev = cookie;
1044
1045 intel_modeset_vga_set_state(dev, state);
1046 if (state)
1047 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1048 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1049 else
1050 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1051}
1052
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001053static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1054{
1055 struct drm_device *dev = pci_get_drvdata(pdev);
1056 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1057 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001058 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001059 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001060 /* i915 resume handler doesn't set to D0 */
1061 pci_set_power_state(dev->pdev, PCI_D0);
1062 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001063 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001064 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001065 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001066 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001067 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001068 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001069 }
1070}
1071
1072static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1073{
1074 struct drm_device *dev = pci_get_drvdata(pdev);
1075 bool can_switch;
1076
1077 spin_lock(&dev->count_lock);
1078 can_switch = (dev->open_count == 0);
1079 spin_unlock(&dev->count_lock);
1080 return can_switch;
1081}
1082
Chris Wilson2c7111d2011-03-29 10:40:27 +01001083static int i915_load_modeset_init(struct drm_device *dev)
1084{
1085 struct drm_i915_private *dev_priv = dev->dev_private;
1086 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001087
Bryan Freed6d139a82010-10-14 09:14:51 +01001088 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001089 if (ret)
1090 DRM_INFO("failed to find VBIOS tables\n");
1091
Chris Wilson934f9922011-01-20 13:09:12 +00001092 /* If we have > 1 VGA cards, then we need to arbitrate access
1093 * to the common VGA resources.
1094 *
1095 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1096 * then we do not take part in VGA arbitration and the
1097 * vga_client_register() fails with -ENODEV.
1098 */
Dave Airlie28d52042009-09-21 14:33:58 +10001099 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001100 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001101 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001102
Jesse Barnes723bfd72010-10-07 16:01:13 -07001103 intel_register_dsm_handler();
1104
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001105 ret = vga_switcheroo_register_client(dev->pdev,
1106 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001107 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001108 i915_switcheroo_can_switch);
1109 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001110 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001111
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001112 /* IIR "flip pending" bit means done if this bit is set */
1113 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1114 dev_priv->flip_pending_is_done = true;
1115
Chris Wilson9797fbf2012-04-24 15:47:39 +01001116 /* Initialise stolen first so that we may reserve preallocated
1117 * objects for the BIOS to KMS transition.
1118 */
1119 ret = i915_gem_init_stolen(dev);
1120 if (ret)
1121 goto cleanup_vga_switcheroo;
1122
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001123 intel_modeset_init(dev);
1124
Chris Wilson1070a422012-04-24 15:47:41 +01001125 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001126 if (ret)
Chris Wilson9797fbf2012-04-24 15:47:39 +01001127 goto cleanup_gem_stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001128
Chris Wilson2c7111d2011-03-29 10:40:27 +01001129 intel_modeset_gem_init(dev);
1130
1131 ret = drm_irq_install(dev);
1132 if (ret)
1133 goto cleanup_gem;
1134
Jesse Barnes79e53942008-11-07 14:24:08 -08001135 /* Always safe in the mode setting case. */
1136 /* FIXME: do pre/post-mode set stuff in core KMS code */
1137 dev->vblank_disable_allowed = 1;
1138
Chris Wilson5a793952010-06-06 10:50:03 +01001139 ret = intel_fbdev_init(dev);
1140 if (ret)
1141 goto cleanup_irq;
1142
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001143 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001144
1145 /* We're off and running w/KMS */
1146 dev_priv->mm.suspended = 0;
1147
Jesse Barnes79e53942008-11-07 14:24:08 -08001148 return 0;
1149
Chris Wilson5a793952010-06-06 10:50:03 +01001150cleanup_irq:
1151 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001152cleanup_gem:
1153 mutex_lock(&dev->struct_mutex);
1154 i915_gem_cleanup_ringbuffer(dev);
1155 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001156 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001157cleanup_gem_stolen:
1158 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001159cleanup_vga_switcheroo:
1160 vga_switcheroo_unregister_client(dev->pdev);
1161cleanup_vga_client:
1162 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001163out:
1164 return ret;
1165}
1166
Dave Airlie7c1c2872008-11-28 14:22:24 +10001167int i915_master_create(struct drm_device *dev, struct drm_master *master)
1168{
1169 struct drm_i915_master_private *master_priv;
1170
Eric Anholt9a298b22009-03-24 12:23:04 -07001171 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001172 if (!master_priv)
1173 return -ENOMEM;
1174
1175 master->driver_priv = master_priv;
1176 return 0;
1177}
1178
1179void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1180{
1181 struct drm_i915_master_private *master_priv = master->driver_priv;
1182
1183 if (!master_priv)
1184 return;
1185
Eric Anholt9a298b22009-03-24 12:23:04 -07001186 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001187
1188 master->driver_priv = NULL;
1189}
1190
Jesse Barnes7648fa92010-05-20 14:28:11 -07001191static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001192{
1193 drm_i915_private_t *dev_priv = dev->dev_private;
1194 u32 tmp;
1195
Shaohua Li7662c8b2009-06-26 11:23:55 +08001196 tmp = I915_READ(CLKCFG);
1197
1198 switch (tmp & CLKCFG_FSB_MASK) {
1199 case CLKCFG_FSB_533:
1200 dev_priv->fsb_freq = 533; /* 133*4 */
1201 break;
1202 case CLKCFG_FSB_800:
1203 dev_priv->fsb_freq = 800; /* 200*4 */
1204 break;
1205 case CLKCFG_FSB_667:
1206 dev_priv->fsb_freq = 667; /* 167*4 */
1207 break;
1208 case CLKCFG_FSB_400:
1209 dev_priv->fsb_freq = 400; /* 100*4 */
1210 break;
1211 }
1212
1213 switch (tmp & CLKCFG_MEM_MASK) {
1214 case CLKCFG_MEM_533:
1215 dev_priv->mem_freq = 533;
1216 break;
1217 case CLKCFG_MEM_667:
1218 dev_priv->mem_freq = 667;
1219 break;
1220 case CLKCFG_MEM_800:
1221 dev_priv->mem_freq = 800;
1222 break;
1223 }
Li Peng95534262010-05-18 18:58:44 +08001224
1225 /* detect pineview DDR3 setting */
1226 tmp = I915_READ(CSHRDDR3CTL);
1227 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001228}
1229
Jesse Barnes7648fa92010-05-20 14:28:11 -07001230static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1231{
1232 drm_i915_private_t *dev_priv = dev->dev_private;
1233 u16 ddrpll, csipll;
1234
1235 ddrpll = I915_READ16(DDRMPLL1);
1236 csipll = I915_READ16(CSIPLL0);
1237
1238 switch (ddrpll & 0xff) {
1239 case 0xc:
1240 dev_priv->mem_freq = 800;
1241 break;
1242 case 0x10:
1243 dev_priv->mem_freq = 1066;
1244 break;
1245 case 0x14:
1246 dev_priv->mem_freq = 1333;
1247 break;
1248 case 0x18:
1249 dev_priv->mem_freq = 1600;
1250 break;
1251 default:
1252 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1253 ddrpll & 0xff);
1254 dev_priv->mem_freq = 0;
1255 break;
1256 }
1257
1258 dev_priv->r_t = dev_priv->mem_freq;
1259
1260 switch (csipll & 0x3ff) {
1261 case 0x00c:
1262 dev_priv->fsb_freq = 3200;
1263 break;
1264 case 0x00e:
1265 dev_priv->fsb_freq = 3733;
1266 break;
1267 case 0x010:
1268 dev_priv->fsb_freq = 4266;
1269 break;
1270 case 0x012:
1271 dev_priv->fsb_freq = 4800;
1272 break;
1273 case 0x014:
1274 dev_priv->fsb_freq = 5333;
1275 break;
1276 case 0x016:
1277 dev_priv->fsb_freq = 5866;
1278 break;
1279 case 0x018:
1280 dev_priv->fsb_freq = 6400;
1281 break;
1282 default:
1283 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1284 csipll & 0x3ff);
1285 dev_priv->fsb_freq = 0;
1286 break;
1287 }
1288
1289 if (dev_priv->fsb_freq == 3200) {
1290 dev_priv->c_m = 0;
1291 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1292 dev_priv->c_m = 1;
1293 } else {
1294 dev_priv->c_m = 2;
1295 }
1296}
1297
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001298static const struct cparams {
1299 u16 i;
1300 u16 t;
1301 u16 m;
1302 u16 c;
1303} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001304 { 1, 1333, 301, 28664 },
1305 { 1, 1066, 294, 24460 },
1306 { 1, 800, 294, 25192 },
1307 { 0, 1333, 276, 27605 },
1308 { 0, 1066, 276, 27605 },
1309 { 0, 800, 231, 23784 },
1310};
1311
1312unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1313{
1314 u64 total_count, diff, ret;
1315 u32 count1, count2, count3, m = 0, c = 0;
1316 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1317 int i;
1318
1319 diff1 = now - dev_priv->last_time1;
1320
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001321 /* Prevent division-by-zero if we are asking too fast.
1322 * Also, we don't get interesting results if we are polling
1323 * faster than once in 10ms, so just return the saved value
1324 * in such cases.
1325 */
1326 if (diff1 <= 10)
1327 return dev_priv->chipset_power;
1328
Jesse Barnes7648fa92010-05-20 14:28:11 -07001329 count1 = I915_READ(DMIEC);
1330 count2 = I915_READ(DDREC);
1331 count3 = I915_READ(CSIEC);
1332
1333 total_count = count1 + count2 + count3;
1334
1335 /* FIXME: handle per-counter overflow */
1336 if (total_count < dev_priv->last_count1) {
1337 diff = ~0UL - dev_priv->last_count1;
1338 diff += total_count;
1339 } else {
1340 diff = total_count - dev_priv->last_count1;
1341 }
1342
1343 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1344 if (cparams[i].i == dev_priv->c_m &&
1345 cparams[i].t == dev_priv->r_t) {
1346 m = cparams[i].m;
1347 c = cparams[i].c;
1348 break;
1349 }
1350 }
1351
Jesse Barnesd270ae32010-09-27 10:35:44 -07001352 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001353 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001354 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001355
1356 dev_priv->last_count1 = total_count;
1357 dev_priv->last_time1 = now;
1358
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001359 dev_priv->chipset_power = ret;
1360
Jesse Barnes7648fa92010-05-20 14:28:11 -07001361 return ret;
1362}
1363
1364unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1365{
1366 unsigned long m, x, b;
1367 u32 tsfs;
1368
1369 tsfs = I915_READ(TSFS);
1370
1371 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1372 x = I915_READ8(TR1);
1373
1374 b = tsfs & TSFS_INTR_MASK;
1375
1376 return ((m * x) / 127) - b;
1377}
1378
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001379static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001380{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001381 static const struct v_table {
1382 u16 vd; /* in .1 mil */
1383 u16 vm; /* in .1 mil */
1384 } v_table[] = {
1385 { 0, 0, },
1386 { 375, 0, },
1387 { 500, 0, },
1388 { 625, 0, },
1389 { 750, 0, },
1390 { 875, 0, },
1391 { 1000, 0, },
1392 { 1125, 0, },
1393 { 4125, 3000, },
1394 { 4125, 3000, },
1395 { 4125, 3000, },
1396 { 4125, 3000, },
1397 { 4125, 3000, },
1398 { 4125, 3000, },
1399 { 4125, 3000, },
1400 { 4125, 3000, },
1401 { 4125, 3000, },
1402 { 4125, 3000, },
1403 { 4125, 3000, },
1404 { 4125, 3000, },
1405 { 4125, 3000, },
1406 { 4125, 3000, },
1407 { 4125, 3000, },
1408 { 4125, 3000, },
1409 { 4125, 3000, },
1410 { 4125, 3000, },
1411 { 4125, 3000, },
1412 { 4125, 3000, },
1413 { 4125, 3000, },
1414 { 4125, 3000, },
1415 { 4125, 3000, },
1416 { 4125, 3000, },
1417 { 4250, 3125, },
1418 { 4375, 3250, },
1419 { 4500, 3375, },
1420 { 4625, 3500, },
1421 { 4750, 3625, },
1422 { 4875, 3750, },
1423 { 5000, 3875, },
1424 { 5125, 4000, },
1425 { 5250, 4125, },
1426 { 5375, 4250, },
1427 { 5500, 4375, },
1428 { 5625, 4500, },
1429 { 5750, 4625, },
1430 { 5875, 4750, },
1431 { 6000, 4875, },
1432 { 6125, 5000, },
1433 { 6250, 5125, },
1434 { 6375, 5250, },
1435 { 6500, 5375, },
1436 { 6625, 5500, },
1437 { 6750, 5625, },
1438 { 6875, 5750, },
1439 { 7000, 5875, },
1440 { 7125, 6000, },
1441 { 7250, 6125, },
1442 { 7375, 6250, },
1443 { 7500, 6375, },
1444 { 7625, 6500, },
1445 { 7750, 6625, },
1446 { 7875, 6750, },
1447 { 8000, 6875, },
1448 { 8125, 7000, },
1449 { 8250, 7125, },
1450 { 8375, 7250, },
1451 { 8500, 7375, },
1452 { 8625, 7500, },
1453 { 8750, 7625, },
1454 { 8875, 7750, },
1455 { 9000, 7875, },
1456 { 9125, 8000, },
1457 { 9250, 8125, },
1458 { 9375, 8250, },
1459 { 9500, 8375, },
1460 { 9625, 8500, },
1461 { 9750, 8625, },
1462 { 9875, 8750, },
1463 { 10000, 8875, },
1464 { 10125, 9000, },
1465 { 10250, 9125, },
1466 { 10375, 9250, },
1467 { 10500, 9375, },
1468 { 10625, 9500, },
1469 { 10750, 9625, },
1470 { 10875, 9750, },
1471 { 11000, 9875, },
1472 { 11125, 10000, },
1473 { 11250, 10125, },
1474 { 11375, 10250, },
1475 { 11500, 10375, },
1476 { 11625, 10500, },
1477 { 11750, 10625, },
1478 { 11875, 10750, },
1479 { 12000, 10875, },
1480 { 12125, 11000, },
1481 { 12250, 11125, },
1482 { 12375, 11250, },
1483 { 12500, 11375, },
1484 { 12625, 11500, },
1485 { 12750, 11625, },
1486 { 12875, 11750, },
1487 { 13000, 11875, },
1488 { 13125, 12000, },
1489 { 13250, 12125, },
1490 { 13375, 12250, },
1491 { 13500, 12375, },
1492 { 13625, 12500, },
1493 { 13750, 12625, },
1494 { 13875, 12750, },
1495 { 14000, 12875, },
1496 { 14125, 13000, },
1497 { 14250, 13125, },
1498 { 14375, 13250, },
1499 { 14500, 13375, },
1500 { 14625, 13500, },
1501 { 14750, 13625, },
1502 { 14875, 13750, },
1503 { 15000, 13875, },
1504 { 15125, 14000, },
1505 { 15250, 14125, },
1506 { 15375, 14250, },
1507 { 15500, 14375, },
1508 { 15625, 14500, },
1509 { 15750, 14625, },
1510 { 15875, 14750, },
1511 { 16000, 14875, },
1512 { 16125, 15000, },
1513 };
1514 if (dev_priv->info->is_mobile)
1515 return v_table[pxvid].vm;
1516 else
1517 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001518}
1519
1520void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1521{
1522 struct timespec now, diff1;
1523 u64 diff;
1524 unsigned long diffms;
1525 u32 count;
1526
1527 getrawmonotonic(&now);
1528 diff1 = timespec_sub(now, dev_priv->last_time2);
1529
1530 /* Don't divide by 0 */
1531 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1532 if (!diffms)
1533 return;
1534
1535 count = I915_READ(GFXEC);
1536
1537 if (count < dev_priv->last_count2) {
1538 diff = ~0UL - dev_priv->last_count2;
1539 diff += count;
1540 } else {
1541 diff = count - dev_priv->last_count2;
1542 }
1543
1544 dev_priv->last_count2 = count;
1545 dev_priv->last_time2 = now;
1546
1547 /* More magic constants... */
1548 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001549 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001550 dev_priv->gfx_power = diff;
1551}
1552
1553unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1554{
1555 unsigned long t, corr, state1, corr2, state2;
1556 u32 pxvid, ext_v;
1557
1558 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1559 pxvid = (pxvid >> 24) & 0x7f;
1560 ext_v = pvid_to_extvid(dev_priv, pxvid);
1561
1562 state1 = ext_v;
1563
1564 t = i915_mch_val(dev_priv);
1565
1566 /* Revel in the empirically derived constants */
1567
1568 /* Correction factor in 1/100000 units */
1569 if (t > 80)
1570 corr = ((t * 2349) + 135940);
1571 else if (t >= 50)
1572 corr = ((t * 964) + 29317);
1573 else /* < 50 */
1574 corr = ((t * 301) + 1004);
1575
1576 corr = corr * ((150142 * state1) / 10000 - 78642);
1577 corr /= 100000;
1578 corr2 = (corr * dev_priv->corr);
1579
1580 state2 = (corr2 * state1) / 10000;
1581 state2 /= 100; /* convert to mW */
1582
1583 i915_update_gfx_val(dev_priv);
1584
1585 return dev_priv->gfx_power + state2;
1586}
1587
1588/* Global for IPS driver to get at the current i915 device */
1589static struct drm_i915_private *i915_mch_dev;
1590/*
1591 * Lock protecting IPS related data structures
1592 * - i915_mch_dev
1593 * - dev_priv->max_delay
1594 * - dev_priv->min_delay
1595 * - dev_priv->fmax
1596 * - dev_priv->gpu_busy
1597 */
Chris Wilson995b6762010-08-20 13:23:26 +01001598static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001599
1600/**
1601 * i915_read_mch_val - return value for IPS use
1602 *
1603 * Calculate and return a value for the IPS driver to use when deciding whether
1604 * we have thermal and power headroom to increase CPU or GPU power budget.
1605 */
1606unsigned long i915_read_mch_val(void)
1607{
Akshay Joshi0206e352011-08-16 15:34:10 -04001608 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001609 unsigned long chipset_val, graphics_val, ret = 0;
1610
Akshay Joshi0206e352011-08-16 15:34:10 -04001611 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001612 if (!i915_mch_dev)
1613 goto out_unlock;
1614 dev_priv = i915_mch_dev;
1615
1616 chipset_val = i915_chipset_val(dev_priv);
1617 graphics_val = i915_gfx_val(dev_priv);
1618
1619 ret = chipset_val + graphics_val;
1620
1621out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001622 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001623
Akshay Joshi0206e352011-08-16 15:34:10 -04001624 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001625}
1626EXPORT_SYMBOL_GPL(i915_read_mch_val);
1627
1628/**
1629 * i915_gpu_raise - raise GPU frequency limit
1630 *
1631 * Raise the limit; IPS indicates we have thermal headroom.
1632 */
1633bool i915_gpu_raise(void)
1634{
Akshay Joshi0206e352011-08-16 15:34:10 -04001635 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001636 bool ret = true;
1637
Akshay Joshi0206e352011-08-16 15:34:10 -04001638 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001639 if (!i915_mch_dev) {
1640 ret = false;
1641 goto out_unlock;
1642 }
1643 dev_priv = i915_mch_dev;
1644
1645 if (dev_priv->max_delay > dev_priv->fmax)
1646 dev_priv->max_delay--;
1647
1648out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001649 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001650
Akshay Joshi0206e352011-08-16 15:34:10 -04001651 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001652}
1653EXPORT_SYMBOL_GPL(i915_gpu_raise);
1654
1655/**
1656 * i915_gpu_lower - lower GPU frequency limit
1657 *
1658 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1659 * frequency maximum.
1660 */
1661bool i915_gpu_lower(void)
1662{
Akshay Joshi0206e352011-08-16 15:34:10 -04001663 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001664 bool ret = true;
1665
Akshay Joshi0206e352011-08-16 15:34:10 -04001666 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001667 if (!i915_mch_dev) {
1668 ret = false;
1669 goto out_unlock;
1670 }
1671 dev_priv = i915_mch_dev;
1672
1673 if (dev_priv->max_delay < dev_priv->min_delay)
1674 dev_priv->max_delay++;
1675
1676out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001677 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001678
Akshay Joshi0206e352011-08-16 15:34:10 -04001679 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001680}
1681EXPORT_SYMBOL_GPL(i915_gpu_lower);
1682
1683/**
1684 * i915_gpu_busy - indicate GPU business to IPS
1685 *
1686 * Tell the IPS driver whether or not the GPU is busy.
1687 */
1688bool i915_gpu_busy(void)
1689{
Akshay Joshi0206e352011-08-16 15:34:10 -04001690 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001691 bool ret = false;
1692
Akshay Joshi0206e352011-08-16 15:34:10 -04001693 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001694 if (!i915_mch_dev)
1695 goto out_unlock;
1696 dev_priv = i915_mch_dev;
1697
1698 ret = dev_priv->busy;
1699
1700out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001701 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001702
Akshay Joshi0206e352011-08-16 15:34:10 -04001703 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001704}
1705EXPORT_SYMBOL_GPL(i915_gpu_busy);
1706
1707/**
1708 * i915_gpu_turbo_disable - disable graphics turbo
1709 *
1710 * Disable graphics turbo by resetting the max frequency and setting the
1711 * current frequency to the default.
1712 */
1713bool i915_gpu_turbo_disable(void)
1714{
Akshay Joshi0206e352011-08-16 15:34:10 -04001715 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001716 bool ret = true;
1717
Akshay Joshi0206e352011-08-16 15:34:10 -04001718 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001719 if (!i915_mch_dev) {
1720 ret = false;
1721 goto out_unlock;
1722 }
1723 dev_priv = i915_mch_dev;
1724
1725 dev_priv->max_delay = dev_priv->fstart;
1726
1727 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1728 ret = false;
1729
1730out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001731 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001732
Akshay Joshi0206e352011-08-16 15:34:10 -04001733 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001734}
1735EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1736
Jesse Barnes79e53942008-11-07 14:24:08 -08001737/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001738 * Tells the intel_ips driver that the i915 driver is now loaded, if
1739 * IPS got loaded first.
1740 *
1741 * This awkward dance is so that neither module has to depend on the
1742 * other in order for IPS to do the appropriate communication of
1743 * GPU turbo limits to i915.
1744 */
1745static void
1746ips_ping_for_i915_load(void)
1747{
1748 void (*link)(void);
1749
1750 link = symbol_get(ips_link_to_i915_driver);
1751 if (link) {
1752 link();
1753 symbol_put(ips_link_to_i915_driver);
1754 }
1755}
1756
Adam Jacksone2b665c2012-03-14 11:22:10 -04001757static void
1758i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1759 unsigned long size)
1760{
Chris Wilson23f54be2012-03-23 17:38:49 +00001761 dev_priv->mm.gtt_mtrr = -1;
1762
Adam Jackson9e984bc12012-03-14 11:22:11 -04001763#if defined(CONFIG_X86_PAT)
1764 if (cpu_has_pat)
1765 return;
1766#endif
1767
Adam Jacksone2b665c2012-03-14 11:22:10 -04001768 /* Set up a WC MTRR for non-PAT systems. This is more common than
1769 * one would think, because the kernel disables PAT on first
1770 * generation Core chips because WC PAT gets overridden by a UC
1771 * MTRR if present. Even if a UC MTRR isn't present.
1772 */
1773 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1774 if (dev_priv->mm.gtt_mtrr < 0) {
1775 DRM_INFO("MTRR allocation failed. Graphics "
1776 "performance may suffer.\n");
1777 }
1778}
1779
Eric Anholt63ee41d2010-12-20 18:40:06 -08001780/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001781 * i915_driver_load - setup chip and create an initial config
1782 * @dev: DRM device
1783 * @flags: startup flags
1784 *
1785 * The driver load routine has to do several things:
1786 * - drive output discovery via intel_modeset_init()
1787 * - initialize the memory manager
1788 * - allocate initial config memory
1789 * - setup the DRM framebuffer with the allocated memory
1790 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001791int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001792{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001793 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001794 struct intel_device_info *info;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001795 int ret = 0, mmio_bar;
Daniel Vetter9021f282012-03-26 09:45:41 +02001796 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001797
Daniel Vetter26394d92012-03-26 21:33:18 +02001798 info = (struct intel_device_info *) flags;
1799
1800 /* Refuse to load on gen6+ without kms enabled. */
1801 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1802 return -ENODEV;
1803
Daniel Vetterac622a92010-09-08 21:26:07 +02001804
Dave Airlie22eae942005-11-10 22:16:34 +11001805 /* i915 has 4 more counters */
1806 dev->counters += 4;
1807 dev->types[6] = _DRM_STAT_IRQ;
1808 dev->types[7] = _DRM_STAT_PRIMARY;
1809 dev->types[8] = _DRM_STAT_SECONDARY;
1810 dev->types[9] = _DRM_STAT_DMA;
1811
Eric Anholt9a298b22009-03-24 12:23:04 -07001812 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001813 if (dev_priv == NULL)
1814 return -ENOMEM;
1815
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001816 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001817 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001818 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001819
Dave Airlieec2a4c32009-08-04 11:43:41 +10001820 if (i915_get_bridge_dev(dev)) {
1821 ret = -EIO;
1822 goto free_priv;
1823 }
1824
Dave Airlie466e69b2011-12-19 11:15:29 +00001825 pci_set_master(dev->pdev);
1826
Daniel Vetter9f82d232010-08-30 21:25:23 +02001827 /* overlay on gen2 is broken and can't address above 1G */
1828 if (IS_GEN2(dev))
1829 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1830
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001831 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1832 * using 32bit addressing, overwriting memory if HWS is located
1833 * above 4GB.
1834 *
1835 * The documentation also mentions an issue with undefined
1836 * behaviour if any general state is accessed within a page above 4GB,
1837 * which also needs to be handled carefully.
1838 */
1839 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1840 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1841
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001842 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1843 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
1844 if (!dev_priv->regs) {
1845 DRM_ERROR("failed to map registers\n");
1846 ret = -EIO;
1847 goto put_bridge;
1848 }
1849
Chris Wilson71e93392010-10-27 18:46:52 +01001850 dev_priv->mm.gtt = intel_gtt_get();
1851 if (!dev_priv->mm.gtt) {
1852 DRM_ERROR("Failed to initialize GTT\n");
1853 ret = -ENODEV;
Keith Packarda7b85d22011-07-10 13:12:17 -07001854 goto out_rmmap;
Chris Wilson71e93392010-10-27 18:46:52 +01001855 }
1856
Daniel Vetter9021f282012-03-26 09:45:41 +02001857 aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Chris Wilson71e93392010-10-27 18:46:52 +01001858
Akshay Joshi0206e352011-08-16 15:34:10 -04001859 dev_priv->mm.gtt_mapping =
Daniel Vetter9021f282012-03-26 09:45:41 +02001860 io_mapping_create_wc(dev->agp->base, aperture_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001861 if (dev_priv->mm.gtt_mapping == NULL) {
1862 ret = -EIO;
1863 goto out_rmmap;
1864 }
1865
Daniel Vetter9021f282012-03-26 09:45:41 +02001866 i915_mtrr_setup(dev_priv, dev->agp->base, aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08001867
Chris Wilsone642abb2010-09-09 12:46:34 +01001868 /* The i915 workqueue is primarily used for batched retirement of
1869 * requests (and thus managing bo) once the task has been completed
1870 * by the GPU. i915_gem_retire_requests() is called directly when we
1871 * need high-priority retirement, such as waiting for an explicit
1872 * bo.
1873 *
1874 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08001875 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01001876 *
1877 * All tasks on the workqueue are expected to acquire the dev mutex
1878 * so there is no point in running more than one instance of the
1879 * workqueue at any time: max_active = 1 and NON_REENTRANT.
1880 */
1881 dev_priv->wq = alloc_workqueue("i915",
1882 WQ_UNBOUND | WQ_NON_REENTRANT,
1883 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001884 if (dev_priv->wq == NULL) {
1885 DRM_ERROR("Failed to create our workqueue.\n");
1886 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07001887 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001888 }
1889
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001890 intel_irq_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08001891
Zhenyu Wangc48044112009-12-17 14:48:43 +08001892 /* Try to make sure MCHBAR is enabled before poking at it */
1893 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001894 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01001895 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08001896
Bryan Freed6d139a82010-10-14 09:14:51 +01001897 /* Make sure the bios did its job and set up vital registers */
1898 intel_setup_bios(dev);
1899
Eric Anholt673a3942008-07-30 12:06:12 -07001900 i915_gem_load(dev);
1901
Keith Packard398c9cb2008-07-30 13:03:43 -07001902 /* Init HWS */
1903 if (!I915_NEED_GFX_HWS(dev)) {
1904 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001905 if (ret)
1906 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07001907 }
Eric Anholted4cb412008-07-29 12:10:39 -07001908
Jesse Barnes7648fa92010-05-20 14:28:11 -07001909 if (IS_PINEVIEW(dev))
1910 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01001911 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07001912 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08001913
Eric Anholted4cb412008-07-29 12:10:39 -07001914 /* On the 945G/GM, the chipset reports the MSI capability on the
1915 * integrated graphics even though the support isn't actually there
1916 * according to the published specs. It doesn't appear to function
1917 * correctly in testing on 945G.
1918 * This may be a side effect of MSI having been made available for PEG
1919 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07001920 *
1921 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08001922 * be lost or delayed, but we use them anyways to avoid
1923 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07001924 */
Keith Packardb60678a2008-12-08 11:12:28 -08001925 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08001926 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07001927
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001928 spin_lock_init(&dev_priv->gt_lock);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001929 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001930 spin_lock_init(&dev_priv->error_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001931 spin_lock_init(&dev_priv->rps_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07001932
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03001933 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07001934 dev_priv->num_pipe = 3;
1935 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001936 dev_priv->num_pipe = 2;
1937 else
1938 dev_priv->num_pipe = 1;
1939
1940 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00001941 if (ret)
1942 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08001943
Ben Gamari11ed50e2009-09-14 17:48:45 -04001944 /* Start out suspended */
1945 dev_priv->mm.suspended = 1;
1946
Zhenyu Wang3bad0782010-04-07 16:15:53 +08001947 intel_detect_pch(dev);
1948
Jesse Barnes79e53942008-11-07 14:24:08 -08001949 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02001950 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001951 if (ret < 0) {
1952 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00001953 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08001954 }
1955 }
1956
Ben Widawsky0136db582012-04-10 21:17:01 -07001957 i915_setup_sysfs(dev);
1958
Matthew Garrett74a365b2009-03-19 21:35:39 +00001959 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01001960 intel_opregion_init(dev);
1961 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00001962
Ben Gamarif65d9422009-09-14 17:48:44 -04001963 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
1964 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001965
1966 spin_lock(&mchdev_lock);
1967 i915_mch_dev = dev_priv;
1968 dev_priv->mchdev_lock = &mchdev_lock;
1969 spin_unlock(&mchdev_lock);
1970
Eric Anholt63ee41d2010-12-20 18:40:06 -08001971 ips_ping_for_i915_load();
1972
Jesse Barnes79e53942008-11-07 14:24:08 -08001973 return 0;
1974
Chris Wilson56e2ea32010-11-08 17:10:29 +00001975out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07001976 if (dev_priv->mm.inactive_shrinker.shrink)
1977 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
1978
Chris Wilson56e2ea32010-11-08 17:10:29 +00001979 if (dev->pdev->msi_enabled)
1980 pci_disable_msi(dev->pdev);
1981
1982 intel_teardown_gmbus(dev);
1983 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001984 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07001985out_mtrrfree:
1986 if (dev_priv->mm.gtt_mtrr >= 0) {
1987 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
1988 dev->agp->agp_info.aper_size * 1024 * 1024);
1989 dev_priv->mm.gtt_mtrr = -1;
1990 }
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08001991 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08001992out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01001993 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10001994put_bridge:
1995 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001996free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07001997 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001998 return ret;
1999}
2000
2001int i915_driver_unload(struct drm_device *dev)
2002{
2003 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002004 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002005
Jesse Barnes7648fa92010-05-20 14:28:11 -07002006 spin_lock(&mchdev_lock);
2007 i915_mch_dev = NULL;
2008 spin_unlock(&mchdev_lock);
2009
Ben Widawsky0136db582012-04-10 21:17:01 -07002010 i915_teardown_sysfs(dev);
2011
Chris Wilson17250b72010-10-28 12:51:39 +01002012 if (dev_priv->mm.inactive_shrinker.shrink)
2013 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2014
Daniel Vetterc911fc12010-08-20 21:23:20 +02002015 mutex_lock(&dev->struct_mutex);
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002016 ret = i915_gpu_idle(dev, true);
Daniel Vetterc911fc12010-08-20 21:23:20 +02002017 if (ret)
2018 DRM_ERROR("failed to idle hardware: %d\n", ret);
2019 mutex_unlock(&dev->struct_mutex);
2020
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002021 /* Cancel the retire work handler, which should be idle now. */
2022 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2023
Eric Anholtab657db12009-01-23 12:57:47 -08002024 io_mapping_free(dev_priv->mm.gtt_mapping);
2025 if (dev_priv->mm.gtt_mtrr >= 0) {
2026 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2027 dev->agp->agp_info.aper_size * 1024 * 1024);
2028 dev_priv->mm.gtt_mtrr = -1;
2029 }
2030
Chris Wilson44834a62010-08-19 16:09:23 +01002031 acpi_video_unregister();
2032
Jesse Barnes79e53942008-11-07 14:24:08 -08002033 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002034 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002035 intel_modeset_cleanup(dev);
2036
Zhao Yakui6363ee62009-11-24 09:48:44 +08002037 /*
2038 * free the memory space allocated for the child device
2039 * config parsed from VBT
2040 */
2041 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2042 kfree(dev_priv->child_dev);
2043 dev_priv->child_dev = NULL;
2044 dev_priv->child_dev_num = 0;
2045 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002046
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002047 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002048 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002049 }
2050
Daniel Vettera8b48992010-08-20 21:25:11 +02002051 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002052 del_timer_sync(&dev_priv->hangcheck_timer);
2053 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002054 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002055
Eric Anholted4cb412008-07-29 12:10:39 -07002056 if (dev->pdev->msi_enabled)
2057 pci_disable_msi(dev->pdev);
2058
Chris Wilson44834a62010-08-19 16:09:23 +01002059 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002060
Jesse Barnes79e53942008-11-07 14:24:08 -08002061 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002062 /* Flush any outstanding unpin_work. */
2063 flush_workqueue(dev_priv->wq);
2064
Jesse Barnes79e53942008-11-07 14:24:08 -08002065 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07002066 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002067 i915_gem_cleanup_ringbuffer(dev);
2068 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002069 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01002070 i915_gem_cleanup_stolen(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002071 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002072
2073 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002074
2075 if (!I915_NEED_GFX_HWS(dev))
2076 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002077 }
2078
Daniel Vetter701394c2010-10-10 18:54:08 +01002079 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002080 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002081
Chris Wilsonf899fc62010-07-20 15:44:45 -07002082 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002083 intel_teardown_mchbar(dev);
2084
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002085 destroy_workqueue(dev_priv->wq);
2086
Dave Airlieec2a4c32009-08-04 11:43:41 +10002087 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002088 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002089
Dave Airlie22eae942005-11-10 22:16:34 +11002090 return 0;
2091}
2092
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002093int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002094{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002095 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002096
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002097 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002098 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2099 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002100 return -ENOMEM;
2101
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002102 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002103
Chris Wilson1c255952010-09-26 11:03:27 +01002104 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002105 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002106
2107 return 0;
2108}
2109
Jesse Barnes79e53942008-11-07 14:24:08 -08002110/**
2111 * i915_driver_lastclose - clean up after all DRM clients have exited
2112 * @dev: DRM device
2113 *
2114 * Take care of cleaning up after all DRM clients have exited. In the
2115 * mode setting case, we want to restore the kernel's initial mode (just
2116 * in case the last client left us in a bad state).
2117 *
Daniel Vetter9021f282012-03-26 09:45:41 +02002118 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08002119 * and DMA structures, since the kernel won't be using them, and clea
2120 * up any GEM state.
2121 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002122void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002124 drm_i915_private_t *dev_priv = dev->dev_private;
2125
Jesse Barnes79e53942008-11-07 14:24:08 -08002126 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01002127 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002128 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002129 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002130 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002131
Eric Anholt673a3942008-07-30 12:06:12 -07002132 i915_gem_lastclose(dev);
2133
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002134 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
Eric Anholt6c340ea2007-08-25 20:23:09 +10002137void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
Eric Anholtb9624422009-06-03 07:27:35 +00002139 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002142void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002143{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002144 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002145
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002146 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002147}
2148
Eric Anholtc153f452007-09-03 12:06:45 +10002149struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002150 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2151 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2152 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2153 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2154 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2155 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2156 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2157 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002158 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2159 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2160 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002161 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002162 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002163 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2164 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2165 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2166 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2167 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2168 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2169 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2170 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2171 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2172 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2173 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2174 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2175 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2176 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2177 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2178 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2179 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2180 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2181 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2182 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2183 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2184 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2185 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2186 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2187 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2188 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2189 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08002190 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2191 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002192};
2193
2194int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002195
Daniel Vetter9021f282012-03-26 09:45:41 +02002196/*
2197 * This is really ugly: Because old userspace abused the linux agp interface to
2198 * manage the gtt, we need to claim that all intel devices are agp. For
2199 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10002200 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002201int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002202{
2203 return 1;
2204}