blob: 6f6c4bda689c9164e0a674e5b2d3695ad37ba0b4 [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 */
Daniel Vetter87813422012-05-02 11:49:32 +0200201 dev_priv->dri1.allow_batchbuffer = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
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
Daniel Vetter87813422012-05-02 11:49:32 +0200613 if (!dev_priv->dri1.allow_batchbuffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 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
Daniel Vetter94888672012-04-26 23:28:08 +0200724static int i915_emit_irq(struct drm_device * dev)
725{
726 drm_i915_private_t *dev_priv = dev->dev_private;
727 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
728
729 i915_kernel_lost_context(dev);
730
731 DRM_DEBUG_DRIVER("\n");
732
733 dev_priv->counter++;
734 if (dev_priv->counter > 0x7FFFFFFFUL)
735 dev_priv->counter = 1;
736 if (master_priv->sarea_priv)
737 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
738
739 if (BEGIN_LP_RING(4) == 0) {
740 OUT_RING(MI_STORE_DWORD_INDEX);
741 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
742 OUT_RING(dev_priv->counter);
743 OUT_RING(MI_USER_INTERRUPT);
744 ADVANCE_LP_RING();
745 }
746
747 return dev_priv->counter;
748}
749
750static int i915_wait_irq(struct drm_device * dev, int irq_nr)
751{
752 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
753 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
754 int ret = 0;
755 struct intel_ring_buffer *ring = LP_RING(dev_priv);
756
757 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
758 READ_BREADCRUMB(dev_priv));
759
760 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
761 if (master_priv->sarea_priv)
762 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
763 return 0;
764 }
765
766 if (master_priv->sarea_priv)
767 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
768
769 if (ring->irq_get(ring)) {
770 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
771 READ_BREADCRUMB(dev_priv) >= irq_nr);
772 ring->irq_put(ring);
773 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
774 ret = -EBUSY;
775
776 if (ret == -EBUSY) {
777 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
778 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
779 }
780
781 return ret;
782}
783
784/* Needs the lock as it touches the ring.
785 */
786static int i915_irq_emit(struct drm_device *dev, void *data,
787 struct drm_file *file_priv)
788{
789 drm_i915_private_t *dev_priv = dev->dev_private;
790 drm_i915_irq_emit_t *emit = data;
791 int result;
792
793 if (drm_core_check_feature(dev, DRIVER_MODESET))
794 return -ENODEV;
795
796 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
797 DRM_ERROR("called with no initialization\n");
798 return -EINVAL;
799 }
800
801 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
802
803 mutex_lock(&dev->struct_mutex);
804 result = i915_emit_irq(dev);
805 mutex_unlock(&dev->struct_mutex);
806
807 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
808 DRM_ERROR("copy_to_user\n");
809 return -EFAULT;
810 }
811
812 return 0;
813}
814
815/* Doesn't need the hardware lock.
816 */
817static int i915_irq_wait(struct drm_device *dev, void *data,
818 struct drm_file *file_priv)
819{
820 drm_i915_private_t *dev_priv = dev->dev_private;
821 drm_i915_irq_wait_t *irqwait = data;
822
823 if (drm_core_check_feature(dev, DRIVER_MODESET))
824 return -ENODEV;
825
826 if (!dev_priv) {
827 DRM_ERROR("called with no initialization\n");
828 return -EINVAL;
829 }
830
831 return i915_wait_irq(dev, irqwait->irq_seq);
832}
833
Daniel Vetterd1c1edb2012-04-26 23:28:01 +0200834static int i915_vblank_pipe_get(struct drm_device *dev, void *data,
835 struct drm_file *file_priv)
836{
837 drm_i915_private_t *dev_priv = dev->dev_private;
838 drm_i915_vblank_pipe_t *pipe = data;
839
840 if (drm_core_check_feature(dev, DRIVER_MODESET))
841 return -ENODEV;
842
843 if (!dev_priv) {
844 DRM_ERROR("called with no initialization\n");
845 return -EINVAL;
846 }
847
848 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
849
850 return 0;
851}
852
853/**
854 * Schedule buffer swap at given vertical blank.
855 */
856static int i915_vblank_swap(struct drm_device *dev, void *data,
857 struct drm_file *file_priv)
858{
859 /* The delayed swap mechanism was fundamentally racy, and has been
860 * removed. The model was that the client requested a delayed flip/swap
861 * from the kernel, then waited for vblank before continuing to perform
862 * rendering. The problem was that the kernel might wake the client
863 * up before it dispatched the vblank swap (since the lock has to be
864 * held while touching the ringbuffer), in which case the client would
865 * clear and start the next frame before the swap occurred, and
866 * flicker would occur in addition to likely missing the vblank.
867 *
868 * In the absence of this ioctl, userland falls back to a correct path
869 * of waiting for a vblank, then dispatching the swap on its own.
870 * Context switching to userland and back is plenty fast enough for
871 * meeting the requirements of vblank swapping.
872 */
873 return -EINVAL;
874}
875
Eric Anholtc153f452007-09-03 12:06:45 +1000876static int i915_flip_bufs(struct drm_device *dev, void *data,
877 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Eric Anholt546b0972008-09-01 16:45:29 -0700879 int ret;
880
Daniel Vettercd9d4e92012-04-24 08:29:42 +0200881 if (drm_core_check_feature(dev, DRIVER_MODESET))
882 return -ENODEV;
883
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800884 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Eric Anholt546b0972008-09-01 16:45:29 -0700886 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Eric Anholt546b0972008-09-01 16:45:29 -0700888 mutex_lock(&dev->struct_mutex);
889 ret = i915_dispatch_flip(dev);
890 mutex_unlock(&dev->struct_mutex);
891
892 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Eric Anholtc153f452007-09-03 12:06:45 +1000895static int i915_getparam(struct drm_device *dev, void *data,
896 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000899 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int value;
901
902 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000903 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000904 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
Eric Anholtc153f452007-09-03 12:06:45 +1000907 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700909 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 break;
911 case I915_PARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200912 value = dev_priv->dri1.allow_batchbuffer ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100914 case I915_PARAM_LAST_DISPATCH:
915 value = READ_BREADCRUMB(dev_priv);
916 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400917 case I915_PARAM_CHIPSET_ID:
918 value = dev->pci_device;
919 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700920 case I915_PARAM_HAS_GEM:
Daniel Vetter2e895b12012-04-23 16:50:51 +0200921 value = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700922 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800923 case I915_PARAM_NUM_FENCES_AVAIL:
924 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
925 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200926 case I915_PARAM_HAS_OVERLAY:
927 value = dev_priv->overlay ? 1 : 0;
928 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800929 case I915_PARAM_HAS_PAGEFLIPPING:
930 value = 1;
931 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500932 case I915_PARAM_HAS_EXECBUF2:
933 /* depends on GEM */
Daniel Vetter2e895b12012-04-23 16:50:51 +0200934 value = 1;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500935 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800936 case I915_PARAM_HAS_BSD:
937 value = HAS_BSD(dev);
938 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100939 case I915_PARAM_HAS_BLT:
940 value = HAS_BLT(dev);
941 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100942 case I915_PARAM_HAS_RELAXED_FENCING:
943 value = 1;
944 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100945 case I915_PARAM_HAS_COHERENT_RINGS:
946 value = 1;
947 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000948 case I915_PARAM_HAS_EXEC_CONSTANTS:
949 value = INTEL_INFO(dev)->gen >= 4;
950 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000951 case I915_PARAM_HAS_RELAXED_DELTA:
952 value = 1;
953 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800954 case I915_PARAM_HAS_GEN7_SOL_RESET:
955 value = 1;
956 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200957 case I915_PARAM_HAS_LLC:
958 value = HAS_LLC(dev);
959 break;
Daniel Vetter777ee962012-02-15 23:50:25 +0100960 case I915_PARAM_HAS_ALIASING_PPGTT:
961 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
962 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800964 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500965 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000966 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968
Eric Anholtc153f452007-09-03 12:06:45 +1000969 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000971 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
974 return 0;
975}
976
Eric Anholtc153f452007-09-03 12:06:45 +1000977static int i915_setparam(struct drm_device *dev, void *data,
978 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000981 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000984 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000985 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
Eric Anholtc153f452007-09-03 12:06:45 +1000988 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
991 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
993 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Daniel Vetter87813422012-05-02 11:49:32 +0200994 dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800996 case I915_SETPARAM_NUM_USED_FENCES:
997 if (param->value > dev_priv->num_fence_regs ||
998 param->value < 0)
999 return -EINVAL;
1000 /* Userspace can use first N regs */
1001 dev_priv->fence_reg_start = param->value;
1002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001004 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +08001005 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +10001006 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
1009 return 0;
1010}
1011
Eric Anholtc153f452007-09-03 12:06:45 +10001012static int i915_set_status_page(struct drm_device *dev, void *data,
1013 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001014{
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001015 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001016 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001017 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001018
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001019 if (drm_core_check_feature(dev, DRIVER_MODESET))
1020 return -ENODEV;
1021
Zhenyu Wangb39d50e2008-02-19 20:59:09 +10001022 if (!I915_NEED_GFX_HWS(dev))
1023 return -EINVAL;
1024
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001025 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001026 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001027 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001028 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001029
Jesse Barnes79e53942008-11-07 14:24:08 -08001030 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1031 WARN(1, "tried to set status page when mode setting active\n");
1032 return 0;
1033 }
1034
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001035 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001036
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001037 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +10001038
Eric Anholt8b409582007-11-22 16:40:37 +10001039 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001040 dev_priv->hws_map.size = 4*1024;
1041 dev_priv->hws_map.type = 0;
1042 dev_priv->hws_map.flags = 0;
1043 dev_priv->hws_map.mtrr = 0;
1044
Dave Airliedd0910b2009-02-25 14:49:21 +10001045 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001046 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001047 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -07001048 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001049 DRM_ERROR("can not ioremap virtual address for"
1050 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001051 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001052 }
Chris Wilson311bd682011-01-13 19:06:50 +00001053 ring->status_page.page_addr =
1054 (void __force __iomem *)dev_priv->hws_map.handle;
1055 memset_io(ring->status_page.page_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001056 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001057
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001058 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001059 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001060 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -07001061 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +10001062 return 0;
1063}
1064
Dave Airlieec2a4c32009-08-04 11:43:41 +10001065static int i915_get_bridge_dev(struct drm_device *dev)
1066{
1067 struct drm_i915_private *dev_priv = dev->dev_private;
1068
Akshay Joshi0206e352011-08-16 15:34:10 -04001069 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +10001070 if (!dev_priv->bridge_dev) {
1071 DRM_ERROR("bridge device not found\n");
1072 return -1;
1073 }
1074 return 0;
1075}
1076
Zhenyu Wangc48044112009-12-17 14:48:43 +08001077#define MCHBAR_I915 0x44
1078#define MCHBAR_I965 0x48
1079#define MCHBAR_SIZE (4*4096)
1080
1081#define DEVEN_REG 0x54
1082#define DEVEN_MCHBAR_EN (1 << 28)
1083
1084/* Allocate space for the MCH regs if needed, return nonzero on error */
1085static int
1086intel_alloc_mchbar_resource(struct drm_device *dev)
1087{
1088 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001089 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001090 u32 temp_lo, temp_hi = 0;
1091 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001092 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001093
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001094 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001095 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
1096 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
1097 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
1098
1099 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
1100#ifdef CONFIG_PNP
1101 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +01001102 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
1103 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001104#endif
1105
1106 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +01001107 dev_priv->mch_res.name = "i915 MCHBAR";
1108 dev_priv->mch_res.flags = IORESOURCE_MEM;
1109 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
1110 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001111 MCHBAR_SIZE, MCHBAR_SIZE,
1112 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +01001113 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +08001114 dev_priv->bridge_dev);
1115 if (ret) {
1116 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
1117 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +01001118 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001119 }
1120
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001121 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +08001122 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
1123 upper_32_bits(dev_priv->mch_res.start));
1124
1125 pci_write_config_dword(dev_priv->bridge_dev, reg,
1126 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +01001127 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001128}
1129
1130/* Setup MCHBAR if possible, return true if we should disable it again */
1131static void
1132intel_setup_mchbar(struct drm_device *dev)
1133{
1134 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001135 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001136 u32 temp;
1137 bool enabled;
1138
1139 dev_priv->mchbar_need_disable = false;
1140
1141 if (IS_I915G(dev) || IS_I915GM(dev)) {
1142 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1143 enabled = !!(temp & DEVEN_MCHBAR_EN);
1144 } else {
1145 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1146 enabled = temp & 1;
1147 }
1148
1149 /* If it's already enabled, don't have to do anything */
1150 if (enabled)
1151 return;
1152
1153 if (intel_alloc_mchbar_resource(dev))
1154 return;
1155
1156 dev_priv->mchbar_need_disable = true;
1157
1158 /* Space is allocated or reserved, so enable it. */
1159 if (IS_I915G(dev) || IS_I915GM(dev)) {
1160 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
1161 temp | DEVEN_MCHBAR_EN);
1162 } else {
1163 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1164 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1165 }
1166}
1167
1168static void
1169intel_teardown_mchbar(struct drm_device *dev)
1170{
1171 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001172 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +08001173 u32 temp;
1174
1175 if (dev_priv->mchbar_need_disable) {
1176 if (IS_I915G(dev) || IS_I915GM(dev)) {
1177 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1178 temp &= ~DEVEN_MCHBAR_EN;
1179 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1180 } else {
1181 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1182 temp &= ~1;
1183 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1184 }
1185 }
1186
1187 if (dev_priv->mch_res.start)
1188 release_resource(&dev_priv->mch_res);
1189}
1190
Dave Airlie28d52042009-09-21 14:33:58 +10001191/* true = enable decode, false = disable decoder */
1192static unsigned int i915_vga_set_decode(void *cookie, bool state)
1193{
1194 struct drm_device *dev = cookie;
1195
1196 intel_modeset_vga_set_state(dev, state);
1197 if (state)
1198 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1199 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1200 else
1201 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1202}
1203
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001204static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1205{
1206 struct drm_device *dev = pci_get_drvdata(pdev);
1207 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1208 if (state == VGA_SWITCHEROO_ON) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001209 pr_info("switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001210 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001211 /* i915 resume handler doesn't set to D0 */
1212 pci_set_power_state(dev->pdev, PCI_D0);
1213 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001214 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001215 } else {
Joe Perchesa70491c2012-03-18 13:00:11 -07001216 pr_err("switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001217 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001218 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001219 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001220 }
1221}
1222
1223static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1224{
1225 struct drm_device *dev = pci_get_drvdata(pdev);
1226 bool can_switch;
1227
1228 spin_lock(&dev->count_lock);
1229 can_switch = (dev->open_count == 0);
1230 spin_unlock(&dev->count_lock);
1231 return can_switch;
1232}
1233
Chris Wilson2c7111d2011-03-29 10:40:27 +01001234static int i915_load_modeset_init(struct drm_device *dev)
1235{
1236 struct drm_i915_private *dev_priv = dev->dev_private;
1237 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001238
Bryan Freed6d139a82010-10-14 09:14:51 +01001239 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001240 if (ret)
1241 DRM_INFO("failed to find VBIOS tables\n");
1242
Chris Wilson934f992c2011-01-20 13:09:12 +00001243 /* If we have > 1 VGA cards, then we need to arbitrate access
1244 * to the common VGA resources.
1245 *
1246 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1247 * then we do not take part in VGA arbitration and the
1248 * vga_client_register() fails with -ENODEV.
1249 */
Dave Airlie28d52042009-09-21 14:33:58 +10001250 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f992c2011-01-20 13:09:12 +00001251 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001252 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001253
Jesse Barnes723bfd72010-10-07 16:01:13 -07001254 intel_register_dsm_handler();
1255
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001256 ret = vga_switcheroo_register_client(dev->pdev,
1257 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001258 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001259 i915_switcheroo_can_switch);
1260 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001261 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001262
Chris Wilson9797fbf2012-04-24 15:47:39 +01001263 /* Initialise stolen first so that we may reserve preallocated
1264 * objects for the BIOS to KMS transition.
1265 */
1266 ret = i915_gem_init_stolen(dev);
1267 if (ret)
1268 goto cleanup_vga_switcheroo;
1269
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001270 intel_modeset_init(dev);
1271
Chris Wilson1070a422012-04-24 15:47:41 +01001272 ret = i915_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001273 if (ret)
Chris Wilson9797fbf2012-04-24 15:47:39 +01001274 goto cleanup_gem_stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001275
Chris Wilson2c7111d2011-03-29 10:40:27 +01001276 intel_modeset_gem_init(dev);
1277
1278 ret = drm_irq_install(dev);
1279 if (ret)
1280 goto cleanup_gem;
1281
Jesse Barnes79e53942008-11-07 14:24:08 -08001282 /* Always safe in the mode setting case. */
1283 /* FIXME: do pre/post-mode set stuff in core KMS code */
1284 dev->vblank_disable_allowed = 1;
1285
Chris Wilson5a793952010-06-06 10:50:03 +01001286 ret = intel_fbdev_init(dev);
1287 if (ret)
1288 goto cleanup_irq;
1289
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001290 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001291
1292 /* We're off and running w/KMS */
1293 dev_priv->mm.suspended = 0;
1294
Jesse Barnes79e53942008-11-07 14:24:08 -08001295 return 0;
1296
Chris Wilson5a793952010-06-06 10:50:03 +01001297cleanup_irq:
1298 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001299cleanup_gem:
1300 mutex_lock(&dev->struct_mutex);
1301 i915_gem_cleanup_ringbuffer(dev);
1302 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001303 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01001304cleanup_gem_stolen:
1305 i915_gem_cleanup_stolen(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001306cleanup_vga_switcheroo:
1307 vga_switcheroo_unregister_client(dev->pdev);
1308cleanup_vga_client:
1309 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001310out:
1311 return ret;
1312}
1313
Dave Airlie7c1c2872008-11-28 14:22:24 +10001314int i915_master_create(struct drm_device *dev, struct drm_master *master)
1315{
1316 struct drm_i915_master_private *master_priv;
1317
Eric Anholt9a298b22009-03-24 12:23:04 -07001318 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001319 if (!master_priv)
1320 return -ENOMEM;
1321
1322 master->driver_priv = master_priv;
1323 return 0;
1324}
1325
1326void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1327{
1328 struct drm_i915_master_private *master_priv = master->driver_priv;
1329
1330 if (!master_priv)
1331 return;
1332
Eric Anholt9a298b22009-03-24 12:23:04 -07001333 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001334
1335 master->driver_priv = NULL;
1336}
1337
Jesse Barnes7648fa92010-05-20 14:28:11 -07001338static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001339{
1340 drm_i915_private_t *dev_priv = dev->dev_private;
1341 u32 tmp;
1342
Shaohua Li7662c8b2009-06-26 11:23:55 +08001343 tmp = I915_READ(CLKCFG);
1344
1345 switch (tmp & CLKCFG_FSB_MASK) {
1346 case CLKCFG_FSB_533:
1347 dev_priv->fsb_freq = 533; /* 133*4 */
1348 break;
1349 case CLKCFG_FSB_800:
1350 dev_priv->fsb_freq = 800; /* 200*4 */
1351 break;
1352 case CLKCFG_FSB_667:
1353 dev_priv->fsb_freq = 667; /* 167*4 */
1354 break;
1355 case CLKCFG_FSB_400:
1356 dev_priv->fsb_freq = 400; /* 100*4 */
1357 break;
1358 }
1359
1360 switch (tmp & CLKCFG_MEM_MASK) {
1361 case CLKCFG_MEM_533:
1362 dev_priv->mem_freq = 533;
1363 break;
1364 case CLKCFG_MEM_667:
1365 dev_priv->mem_freq = 667;
1366 break;
1367 case CLKCFG_MEM_800:
1368 dev_priv->mem_freq = 800;
1369 break;
1370 }
Li Peng95534262010-05-18 18:58:44 +08001371
1372 /* detect pineview DDR3 setting */
1373 tmp = I915_READ(CSHRDDR3CTL);
1374 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001375}
1376
Jesse Barnes7648fa92010-05-20 14:28:11 -07001377static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1378{
1379 drm_i915_private_t *dev_priv = dev->dev_private;
1380 u16 ddrpll, csipll;
1381
1382 ddrpll = I915_READ16(DDRMPLL1);
1383 csipll = I915_READ16(CSIPLL0);
1384
1385 switch (ddrpll & 0xff) {
1386 case 0xc:
1387 dev_priv->mem_freq = 800;
1388 break;
1389 case 0x10:
1390 dev_priv->mem_freq = 1066;
1391 break;
1392 case 0x14:
1393 dev_priv->mem_freq = 1333;
1394 break;
1395 case 0x18:
1396 dev_priv->mem_freq = 1600;
1397 break;
1398 default:
1399 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1400 ddrpll & 0xff);
1401 dev_priv->mem_freq = 0;
1402 break;
1403 }
1404
1405 dev_priv->r_t = dev_priv->mem_freq;
1406
1407 switch (csipll & 0x3ff) {
1408 case 0x00c:
1409 dev_priv->fsb_freq = 3200;
1410 break;
1411 case 0x00e:
1412 dev_priv->fsb_freq = 3733;
1413 break;
1414 case 0x010:
1415 dev_priv->fsb_freq = 4266;
1416 break;
1417 case 0x012:
1418 dev_priv->fsb_freq = 4800;
1419 break;
1420 case 0x014:
1421 dev_priv->fsb_freq = 5333;
1422 break;
1423 case 0x016:
1424 dev_priv->fsb_freq = 5866;
1425 break;
1426 case 0x018:
1427 dev_priv->fsb_freq = 6400;
1428 break;
1429 default:
1430 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1431 csipll & 0x3ff);
1432 dev_priv->fsb_freq = 0;
1433 break;
1434 }
1435
1436 if (dev_priv->fsb_freq == 3200) {
1437 dev_priv->c_m = 0;
1438 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1439 dev_priv->c_m = 1;
1440 } else {
1441 dev_priv->c_m = 2;
1442 }
1443}
1444
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001445static const struct cparams {
1446 u16 i;
1447 u16 t;
1448 u16 m;
1449 u16 c;
1450} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001451 { 1, 1333, 301, 28664 },
1452 { 1, 1066, 294, 24460 },
1453 { 1, 800, 294, 25192 },
1454 { 0, 1333, 276, 27605 },
1455 { 0, 1066, 276, 27605 },
1456 { 0, 800, 231, 23784 },
1457};
1458
1459unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1460{
1461 u64 total_count, diff, ret;
1462 u32 count1, count2, count3, m = 0, c = 0;
1463 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1464 int i;
1465
1466 diff1 = now - dev_priv->last_time1;
1467
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001468 /* Prevent division-by-zero if we are asking too fast.
1469 * Also, we don't get interesting results if we are polling
1470 * faster than once in 10ms, so just return the saved value
1471 * in such cases.
1472 */
1473 if (diff1 <= 10)
1474 return dev_priv->chipset_power;
1475
Jesse Barnes7648fa92010-05-20 14:28:11 -07001476 count1 = I915_READ(DMIEC);
1477 count2 = I915_READ(DDREC);
1478 count3 = I915_READ(CSIEC);
1479
1480 total_count = count1 + count2 + count3;
1481
1482 /* FIXME: handle per-counter overflow */
1483 if (total_count < dev_priv->last_count1) {
1484 diff = ~0UL - dev_priv->last_count1;
1485 diff += total_count;
1486 } else {
1487 diff = total_count - dev_priv->last_count1;
1488 }
1489
1490 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1491 if (cparams[i].i == dev_priv->c_m &&
1492 cparams[i].t == dev_priv->r_t) {
1493 m = cparams[i].m;
1494 c = cparams[i].c;
1495 break;
1496 }
1497 }
1498
Jesse Barnesd270ae32010-09-27 10:35:44 -07001499 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001500 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001501 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001502
1503 dev_priv->last_count1 = total_count;
1504 dev_priv->last_time1 = now;
1505
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001506 dev_priv->chipset_power = ret;
1507
Jesse Barnes7648fa92010-05-20 14:28:11 -07001508 return ret;
1509}
1510
1511unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1512{
1513 unsigned long m, x, b;
1514 u32 tsfs;
1515
1516 tsfs = I915_READ(TSFS);
1517
1518 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1519 x = I915_READ8(TR1);
1520
1521 b = tsfs & TSFS_INTR_MASK;
1522
1523 return ((m * x) / 127) - b;
1524}
1525
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001526static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001527{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001528 static const struct v_table {
1529 u16 vd; /* in .1 mil */
1530 u16 vm; /* in .1 mil */
1531 } v_table[] = {
1532 { 0, 0, },
1533 { 375, 0, },
1534 { 500, 0, },
1535 { 625, 0, },
1536 { 750, 0, },
1537 { 875, 0, },
1538 { 1000, 0, },
1539 { 1125, 0, },
1540 { 4125, 3000, },
1541 { 4125, 3000, },
1542 { 4125, 3000, },
1543 { 4125, 3000, },
1544 { 4125, 3000, },
1545 { 4125, 3000, },
1546 { 4125, 3000, },
1547 { 4125, 3000, },
1548 { 4125, 3000, },
1549 { 4125, 3000, },
1550 { 4125, 3000, },
1551 { 4125, 3000, },
1552 { 4125, 3000, },
1553 { 4125, 3000, },
1554 { 4125, 3000, },
1555 { 4125, 3000, },
1556 { 4125, 3000, },
1557 { 4125, 3000, },
1558 { 4125, 3000, },
1559 { 4125, 3000, },
1560 { 4125, 3000, },
1561 { 4125, 3000, },
1562 { 4125, 3000, },
1563 { 4125, 3000, },
1564 { 4250, 3125, },
1565 { 4375, 3250, },
1566 { 4500, 3375, },
1567 { 4625, 3500, },
1568 { 4750, 3625, },
1569 { 4875, 3750, },
1570 { 5000, 3875, },
1571 { 5125, 4000, },
1572 { 5250, 4125, },
1573 { 5375, 4250, },
1574 { 5500, 4375, },
1575 { 5625, 4500, },
1576 { 5750, 4625, },
1577 { 5875, 4750, },
1578 { 6000, 4875, },
1579 { 6125, 5000, },
1580 { 6250, 5125, },
1581 { 6375, 5250, },
1582 { 6500, 5375, },
1583 { 6625, 5500, },
1584 { 6750, 5625, },
1585 { 6875, 5750, },
1586 { 7000, 5875, },
1587 { 7125, 6000, },
1588 { 7250, 6125, },
1589 { 7375, 6250, },
1590 { 7500, 6375, },
1591 { 7625, 6500, },
1592 { 7750, 6625, },
1593 { 7875, 6750, },
1594 { 8000, 6875, },
1595 { 8125, 7000, },
1596 { 8250, 7125, },
1597 { 8375, 7250, },
1598 { 8500, 7375, },
1599 { 8625, 7500, },
1600 { 8750, 7625, },
1601 { 8875, 7750, },
1602 { 9000, 7875, },
1603 { 9125, 8000, },
1604 { 9250, 8125, },
1605 { 9375, 8250, },
1606 { 9500, 8375, },
1607 { 9625, 8500, },
1608 { 9750, 8625, },
1609 { 9875, 8750, },
1610 { 10000, 8875, },
1611 { 10125, 9000, },
1612 { 10250, 9125, },
1613 { 10375, 9250, },
1614 { 10500, 9375, },
1615 { 10625, 9500, },
1616 { 10750, 9625, },
1617 { 10875, 9750, },
1618 { 11000, 9875, },
1619 { 11125, 10000, },
1620 { 11250, 10125, },
1621 { 11375, 10250, },
1622 { 11500, 10375, },
1623 { 11625, 10500, },
1624 { 11750, 10625, },
1625 { 11875, 10750, },
1626 { 12000, 10875, },
1627 { 12125, 11000, },
1628 { 12250, 11125, },
1629 { 12375, 11250, },
1630 { 12500, 11375, },
1631 { 12625, 11500, },
1632 { 12750, 11625, },
1633 { 12875, 11750, },
1634 { 13000, 11875, },
1635 { 13125, 12000, },
1636 { 13250, 12125, },
1637 { 13375, 12250, },
1638 { 13500, 12375, },
1639 { 13625, 12500, },
1640 { 13750, 12625, },
1641 { 13875, 12750, },
1642 { 14000, 12875, },
1643 { 14125, 13000, },
1644 { 14250, 13125, },
1645 { 14375, 13250, },
1646 { 14500, 13375, },
1647 { 14625, 13500, },
1648 { 14750, 13625, },
1649 { 14875, 13750, },
1650 { 15000, 13875, },
1651 { 15125, 14000, },
1652 { 15250, 14125, },
1653 { 15375, 14250, },
1654 { 15500, 14375, },
1655 { 15625, 14500, },
1656 { 15750, 14625, },
1657 { 15875, 14750, },
1658 { 16000, 14875, },
1659 { 16125, 15000, },
1660 };
1661 if (dev_priv->info->is_mobile)
1662 return v_table[pxvid].vm;
1663 else
1664 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001665}
1666
1667void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1668{
1669 struct timespec now, diff1;
1670 u64 diff;
1671 unsigned long diffms;
1672 u32 count;
1673
Chris Wilson582be6b2012-04-30 19:35:02 +01001674 if (dev_priv->info->gen != 5)
1675 return;
1676
Jesse Barnes7648fa92010-05-20 14:28:11 -07001677 getrawmonotonic(&now);
1678 diff1 = timespec_sub(now, dev_priv->last_time2);
1679
1680 /* Don't divide by 0 */
1681 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1682 if (!diffms)
1683 return;
1684
1685 count = I915_READ(GFXEC);
1686
1687 if (count < dev_priv->last_count2) {
1688 diff = ~0UL - dev_priv->last_count2;
1689 diff += count;
1690 } else {
1691 diff = count - dev_priv->last_count2;
1692 }
1693
1694 dev_priv->last_count2 = count;
1695 dev_priv->last_time2 = now;
1696
1697 /* More magic constants... */
1698 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001699 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001700 dev_priv->gfx_power = diff;
1701}
1702
1703unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1704{
1705 unsigned long t, corr, state1, corr2, state2;
1706 u32 pxvid, ext_v;
1707
1708 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1709 pxvid = (pxvid >> 24) & 0x7f;
1710 ext_v = pvid_to_extvid(dev_priv, pxvid);
1711
1712 state1 = ext_v;
1713
1714 t = i915_mch_val(dev_priv);
1715
1716 /* Revel in the empirically derived constants */
1717
1718 /* Correction factor in 1/100000 units */
1719 if (t > 80)
1720 corr = ((t * 2349) + 135940);
1721 else if (t >= 50)
1722 corr = ((t * 964) + 29317);
1723 else /* < 50 */
1724 corr = ((t * 301) + 1004);
1725
1726 corr = corr * ((150142 * state1) / 10000 - 78642);
1727 corr /= 100000;
1728 corr2 = (corr * dev_priv->corr);
1729
1730 state2 = (corr2 * state1) / 10000;
1731 state2 /= 100; /* convert to mW */
1732
1733 i915_update_gfx_val(dev_priv);
1734
1735 return dev_priv->gfx_power + state2;
1736}
1737
1738/* Global for IPS driver to get at the current i915 device */
1739static struct drm_i915_private *i915_mch_dev;
1740/*
1741 * Lock protecting IPS related data structures
1742 * - i915_mch_dev
1743 * - dev_priv->max_delay
1744 * - dev_priv->min_delay
1745 * - dev_priv->fmax
1746 * - dev_priv->gpu_busy
1747 */
Chris Wilson995b6762010-08-20 13:23:26 +01001748static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001749
1750/**
1751 * i915_read_mch_val - return value for IPS use
1752 *
1753 * Calculate and return a value for the IPS driver to use when deciding whether
1754 * we have thermal and power headroom to increase CPU or GPU power budget.
1755 */
1756unsigned long i915_read_mch_val(void)
1757{
Akshay Joshi0206e352011-08-16 15:34:10 -04001758 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001759 unsigned long chipset_val, graphics_val, ret = 0;
1760
Akshay Joshi0206e352011-08-16 15:34:10 -04001761 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001762 if (!i915_mch_dev)
1763 goto out_unlock;
1764 dev_priv = i915_mch_dev;
1765
1766 chipset_val = i915_chipset_val(dev_priv);
1767 graphics_val = i915_gfx_val(dev_priv);
1768
1769 ret = chipset_val + graphics_val;
1770
1771out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001772 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001773
Akshay Joshi0206e352011-08-16 15:34:10 -04001774 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001775}
1776EXPORT_SYMBOL_GPL(i915_read_mch_val);
1777
1778/**
1779 * i915_gpu_raise - raise GPU frequency limit
1780 *
1781 * Raise the limit; IPS indicates we have thermal headroom.
1782 */
1783bool i915_gpu_raise(void)
1784{
Akshay Joshi0206e352011-08-16 15:34:10 -04001785 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001786 bool ret = true;
1787
Akshay Joshi0206e352011-08-16 15:34:10 -04001788 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001789 if (!i915_mch_dev) {
1790 ret = false;
1791 goto out_unlock;
1792 }
1793 dev_priv = i915_mch_dev;
1794
1795 if (dev_priv->max_delay > dev_priv->fmax)
1796 dev_priv->max_delay--;
1797
1798out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001799 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001800
Akshay Joshi0206e352011-08-16 15:34:10 -04001801 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001802}
1803EXPORT_SYMBOL_GPL(i915_gpu_raise);
1804
1805/**
1806 * i915_gpu_lower - lower GPU frequency limit
1807 *
1808 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1809 * frequency maximum.
1810 */
1811bool i915_gpu_lower(void)
1812{
Akshay Joshi0206e352011-08-16 15:34:10 -04001813 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001814 bool ret = true;
1815
Akshay Joshi0206e352011-08-16 15:34:10 -04001816 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001817 if (!i915_mch_dev) {
1818 ret = false;
1819 goto out_unlock;
1820 }
1821 dev_priv = i915_mch_dev;
1822
1823 if (dev_priv->max_delay < dev_priv->min_delay)
1824 dev_priv->max_delay++;
1825
1826out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001827 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001828
Akshay Joshi0206e352011-08-16 15:34:10 -04001829 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001830}
1831EXPORT_SYMBOL_GPL(i915_gpu_lower);
1832
1833/**
1834 * i915_gpu_busy - indicate GPU business to IPS
1835 *
1836 * Tell the IPS driver whether or not the GPU is busy.
1837 */
1838bool i915_gpu_busy(void)
1839{
Akshay Joshi0206e352011-08-16 15:34:10 -04001840 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001841 bool ret = false;
1842
Akshay Joshi0206e352011-08-16 15:34:10 -04001843 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001844 if (!i915_mch_dev)
1845 goto out_unlock;
1846 dev_priv = i915_mch_dev;
1847
1848 ret = dev_priv->busy;
1849
1850out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001851 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001852
Akshay Joshi0206e352011-08-16 15:34:10 -04001853 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001854}
1855EXPORT_SYMBOL_GPL(i915_gpu_busy);
1856
1857/**
1858 * i915_gpu_turbo_disable - disable graphics turbo
1859 *
1860 * Disable graphics turbo by resetting the max frequency and setting the
1861 * current frequency to the default.
1862 */
1863bool i915_gpu_turbo_disable(void)
1864{
Akshay Joshi0206e352011-08-16 15:34:10 -04001865 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001866 bool ret = true;
1867
Akshay Joshi0206e352011-08-16 15:34:10 -04001868 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001869 if (!i915_mch_dev) {
1870 ret = false;
1871 goto out_unlock;
1872 }
1873 dev_priv = i915_mch_dev;
1874
1875 dev_priv->max_delay = dev_priv->fstart;
1876
1877 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1878 ret = false;
1879
1880out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001881 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001882
Akshay Joshi0206e352011-08-16 15:34:10 -04001883 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001884}
1885EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1886
Jesse Barnes79e53942008-11-07 14:24:08 -08001887/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001888 * Tells the intel_ips driver that the i915 driver is now loaded, if
1889 * IPS got loaded first.
1890 *
1891 * This awkward dance is so that neither module has to depend on the
1892 * other in order for IPS to do the appropriate communication of
1893 * GPU turbo limits to i915.
1894 */
1895static void
1896ips_ping_for_i915_load(void)
1897{
1898 void (*link)(void);
1899
1900 link = symbol_get(ips_link_to_i915_driver);
1901 if (link) {
1902 link();
1903 symbol_put(ips_link_to_i915_driver);
1904 }
1905}
1906
Adam Jacksone2b665c2012-03-14 11:22:10 -04001907static void
1908i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1909 unsigned long size)
1910{
Chris Wilson23f54be2012-03-23 17:38:49 +00001911 dev_priv->mm.gtt_mtrr = -1;
1912
Adam Jackson9e984bc12012-03-14 11:22:11 -04001913#if defined(CONFIG_X86_PAT)
1914 if (cpu_has_pat)
1915 return;
1916#endif
1917
Adam Jacksone2b665c2012-03-14 11:22:10 -04001918 /* Set up a WC MTRR for non-PAT systems. This is more common than
1919 * one would think, because the kernel disables PAT on first
1920 * generation Core chips because WC PAT gets overridden by a UC
1921 * MTRR if present. Even if a UC MTRR isn't present.
1922 */
1923 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1924 if (dev_priv->mm.gtt_mtrr < 0) {
1925 DRM_INFO("MTRR allocation failed. Graphics "
1926 "performance may suffer.\n");
1927 }
1928}
1929
Eric Anholt63ee41d2010-12-20 18:40:06 -08001930/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001931 * i915_driver_load - setup chip and create an initial config
1932 * @dev: DRM device
1933 * @flags: startup flags
1934 *
1935 * The driver load routine has to do several things:
1936 * - drive output discovery via intel_modeset_init()
1937 * - initialize the memory manager
1938 * - allocate initial config memory
1939 * - setup the DRM framebuffer with the allocated memory
1940 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001941int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001942{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001943 struct drm_i915_private *dev_priv;
Daniel Vetter26394d92012-03-26 21:33:18 +02001944 struct intel_device_info *info;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001945 int ret = 0, mmio_bar;
Daniel Vetter9021f282012-03-26 09:45:41 +02001946 uint32_t aperture_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001947
Daniel Vetter26394d92012-03-26 21:33:18 +02001948 info = (struct intel_device_info *) flags;
1949
1950 /* Refuse to load on gen6+ without kms enabled. */
1951 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET))
1952 return -ENODEV;
1953
Daniel Vetterac622a92010-09-08 21:26:07 +02001954
Dave Airlie22eae942005-11-10 22:16:34 +11001955 /* i915 has 4 more counters */
1956 dev->counters += 4;
1957 dev->types[6] = _DRM_STAT_IRQ;
1958 dev->types[7] = _DRM_STAT_PRIMARY;
1959 dev->types[8] = _DRM_STAT_SECONDARY;
1960 dev->types[9] = _DRM_STAT_DMA;
1961
Eric Anholt9a298b22009-03-24 12:23:04 -07001962 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001963 if (dev_priv == NULL)
1964 return -ENOMEM;
1965
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001966 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001967 dev_priv->dev = dev;
Daniel Vetter26394d92012-03-26 21:33:18 +02001968 dev_priv->info = info;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001969
Dave Airlieec2a4c32009-08-04 11:43:41 +10001970 if (i915_get_bridge_dev(dev)) {
1971 ret = -EIO;
1972 goto free_priv;
1973 }
1974
Dave Airlie466e69b2011-12-19 11:15:29 +00001975 pci_set_master(dev->pdev);
1976
Daniel Vetter9f82d232010-08-30 21:25:23 +02001977 /* overlay on gen2 is broken and can't address above 1G */
1978 if (IS_GEN2(dev))
1979 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1980
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001981 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1982 * using 32bit addressing, overwriting memory if HWS is located
1983 * above 4GB.
1984 *
1985 * The documentation also mentions an issue with undefined
1986 * behaviour if any general state is accessed within a page above 4GB,
1987 * which also needs to be handled carefully.
1988 */
1989 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1990 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1991
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001992 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1993 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
1994 if (!dev_priv->regs) {
1995 DRM_ERROR("failed to map registers\n");
1996 ret = -EIO;
1997 goto put_bridge;
1998 }
1999
Chris Wilson71e93392010-10-27 18:46:52 +01002000 dev_priv->mm.gtt = intel_gtt_get();
2001 if (!dev_priv->mm.gtt) {
2002 DRM_ERROR("Failed to initialize GTT\n");
2003 ret = -ENODEV;
Keith Packarda7b85d22011-07-10 13:12:17 -07002004 goto out_rmmap;
Chris Wilson71e93392010-10-27 18:46:52 +01002005 }
2006
Daniel Vetter9021f282012-03-26 09:45:41 +02002007 aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Chris Wilson71e93392010-10-27 18:46:52 +01002008
Akshay Joshi0206e352011-08-16 15:34:10 -04002009 dev_priv->mm.gtt_mapping =
Daniel Vetter9021f282012-03-26 09:45:41 +02002010 io_mapping_create_wc(dev->agp->base, aperture_size);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08002011 if (dev_priv->mm.gtt_mapping == NULL) {
2012 ret = -EIO;
2013 goto out_rmmap;
2014 }
2015
Daniel Vetter9021f282012-03-26 09:45:41 +02002016 i915_mtrr_setup(dev_priv, dev->agp->base, aperture_size);
Eric Anholtab657db12009-01-23 12:57:47 -08002017
Chris Wilsone642abb2010-09-09 12:46:34 +01002018 /* The i915 workqueue is primarily used for batched retirement of
2019 * requests (and thus managing bo) once the task has been completed
2020 * by the GPU. i915_gem_retire_requests() is called directly when we
2021 * need high-priority retirement, such as waiting for an explicit
2022 * bo.
2023 *
2024 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08002025 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01002026 *
2027 * All tasks on the workqueue are expected to acquire the dev mutex
2028 * so there is no point in running more than one instance of the
2029 * workqueue at any time: max_active = 1 and NON_REENTRANT.
2030 */
2031 dev_priv->wq = alloc_workqueue("i915",
2032 WQ_UNBOUND | WQ_NON_REENTRANT,
2033 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002034 if (dev_priv->wq == NULL) {
2035 DRM_ERROR("Failed to create our workqueue.\n");
2036 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07002037 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002038 }
2039
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002040 intel_irq_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002041
Zhenyu Wangc48044112009-12-17 14:48:43 +08002042 /* Try to make sure MCHBAR is enabled before poking at it */
2043 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07002044 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01002045 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002046
Bryan Freed6d139a82010-10-14 09:14:51 +01002047 /* Make sure the bios did its job and set up vital registers */
2048 intel_setup_bios(dev);
2049
Eric Anholt673a3942008-07-30 12:06:12 -07002050 i915_gem_load(dev);
2051
Keith Packard398c9cb2008-07-30 13:03:43 -07002052 /* Init HWS */
2053 if (!I915_NEED_GFX_HWS(dev)) {
2054 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002055 if (ret)
2056 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07002057 }
Eric Anholted4cb412008-07-29 12:10:39 -07002058
Jesse Barnes7648fa92010-05-20 14:28:11 -07002059 if (IS_PINEVIEW(dev))
2060 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01002061 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07002062 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002063
Eric Anholted4cb412008-07-29 12:10:39 -07002064 /* On the 945G/GM, the chipset reports the MSI capability on the
2065 * integrated graphics even though the support isn't actually there
2066 * according to the published specs. It doesn't appear to function
2067 * correctly in testing on 945G.
2068 * This may be a side effect of MSI having been made available for PEG
2069 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002070 *
2071 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002072 * be lost or delayed, but we use them anyways to avoid
2073 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002074 */
Keith Packardb60678a2008-12-08 11:12:28 -08002075 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002076 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002077
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01002078 spin_lock_init(&dev_priv->gt_lock);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002079 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002080 spin_lock_init(&dev_priv->error_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07002081 spin_lock_init(&dev_priv->rps_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07002082
Eugeni Dodonovc51ed782012-04-13 17:08:45 -03002083 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Jesse Barnes27f82272011-09-02 12:54:37 -07002084 dev_priv->num_pipe = 3;
2085 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002086 dev_priv->num_pipe = 2;
2087 else
2088 dev_priv->num_pipe = 1;
2089
2090 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002091 if (ret)
2092 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08002093
Ben Gamari11ed50e2009-09-14 17:48:45 -04002094 /* Start out suspended */
2095 dev_priv->mm.suspended = 1;
2096
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002097 intel_detect_pch(dev);
2098
Jesse Barnes79e53942008-11-07 14:24:08 -08002099 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02002100 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002101 if (ret < 0) {
2102 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00002103 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08002104 }
2105 }
2106
Ben Widawsky0136db52012-04-10 21:17:01 -07002107 i915_setup_sysfs(dev);
2108
Matthew Garrett74a365b2009-03-19 21:35:39 +00002109 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002110 intel_opregion_init(dev);
2111 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002112
Ben Gamarif65d9422009-09-14 17:48:44 -04002113 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2114 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002115
Chris Wilson582be6b2012-04-30 19:35:02 +01002116 if (IS_GEN5(dev)) {
2117 spin_lock(&mchdev_lock);
2118 i915_mch_dev = dev_priv;
2119 dev_priv->mchdev_lock = &mchdev_lock;
2120 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002121
Chris Wilson582be6b2012-04-30 19:35:02 +01002122 ips_ping_for_i915_load();
2123 }
Eric Anholt63ee41d2010-12-20 18:40:06 -08002124
Jesse Barnes79e53942008-11-07 14:24:08 -08002125 return 0;
2126
Chris Wilson56e2ea32010-11-08 17:10:29 +00002127out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07002128 if (dev_priv->mm.inactive_shrinker.shrink)
2129 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2130
Chris Wilson56e2ea32010-11-08 17:10:29 +00002131 if (dev->pdev->msi_enabled)
2132 pci_disable_msi(dev->pdev);
2133
2134 intel_teardown_gmbus(dev);
2135 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002136 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07002137out_mtrrfree:
2138 if (dev_priv->mm.gtt_mtrr >= 0) {
2139 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2140 dev->agp->agp_info.aper_size * 1024 * 1024);
2141 dev_priv->mm.gtt_mtrr = -1;
2142 }
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08002143 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002144out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01002145 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002146put_bridge:
2147 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002148free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002149 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002150 return ret;
2151}
2152
2153int i915_driver_unload(struct drm_device *dev)
2154{
2155 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002156 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002157
Jesse Barnes7648fa92010-05-20 14:28:11 -07002158 spin_lock(&mchdev_lock);
2159 i915_mch_dev = NULL;
2160 spin_unlock(&mchdev_lock);
2161
Ben Widawsky0136db52012-04-10 21:17:01 -07002162 i915_teardown_sysfs(dev);
2163
Chris Wilson17250b72010-10-28 12:51:39 +01002164 if (dev_priv->mm.inactive_shrinker.shrink)
2165 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2166
Daniel Vetterc911fc12010-08-20 21:23:20 +02002167 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002168 ret = i915_gpu_idle(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02002169 if (ret)
2170 DRM_ERROR("failed to idle hardware: %d\n", ret);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002171 i915_gem_retire_requests(dev);
Daniel Vetterc911fc12010-08-20 21:23:20 +02002172 mutex_unlock(&dev->struct_mutex);
2173
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002174 /* Cancel the retire work handler, which should be idle now. */
2175 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2176
Eric Anholtab657db12009-01-23 12:57:47 -08002177 io_mapping_free(dev_priv->mm.gtt_mapping);
2178 if (dev_priv->mm.gtt_mtrr >= 0) {
2179 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2180 dev->agp->agp_info.aper_size * 1024 * 1024);
2181 dev_priv->mm.gtt_mtrr = -1;
2182 }
2183
Chris Wilson44834a62010-08-19 16:09:23 +01002184 acpi_video_unregister();
2185
Jesse Barnes79e53942008-11-07 14:24:08 -08002186 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002187 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002188 intel_modeset_cleanup(dev);
2189
Zhao Yakui6363ee62009-11-24 09:48:44 +08002190 /*
2191 * free the memory space allocated for the child device
2192 * config parsed from VBT
2193 */
2194 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2195 kfree(dev_priv->child_dev);
2196 dev_priv->child_dev = NULL;
2197 dev_priv->child_dev_num = 0;
2198 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002199
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002200 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002201 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002202 }
2203
Daniel Vettera8b48992010-08-20 21:25:11 +02002204 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002205 del_timer_sync(&dev_priv->hangcheck_timer);
2206 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002207 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002208
Eric Anholted4cb412008-07-29 12:10:39 -07002209 if (dev->pdev->msi_enabled)
2210 pci_disable_msi(dev->pdev);
2211
Chris Wilson44834a62010-08-19 16:09:23 +01002212 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002213
Jesse Barnes79e53942008-11-07 14:24:08 -08002214 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002215 /* Flush any outstanding unpin_work. */
2216 flush_workqueue(dev_priv->wq);
2217
Jesse Barnes79e53942008-11-07 14:24:08 -08002218 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07002219 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002220 i915_gem_cleanup_ringbuffer(dev);
2221 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002222 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson9797fbf2012-04-24 15:47:39 +01002223 i915_gem_cleanup_stolen(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002224 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002225
2226 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002227
2228 if (!I915_NEED_GFX_HWS(dev))
2229 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002230 }
2231
Daniel Vetter701394c2010-10-10 18:54:08 +01002232 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002233 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002234
Chris Wilsonf899fc62010-07-20 15:44:45 -07002235 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002236 intel_teardown_mchbar(dev);
2237
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002238 destroy_workqueue(dev_priv->wq);
2239
Dave Airlieec2a4c32009-08-04 11:43:41 +10002240 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002241 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002242
Dave Airlie22eae942005-11-10 22:16:34 +11002243 return 0;
2244}
2245
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002246int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002247{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002248 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002249
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002250 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002251 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2252 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002253 return -ENOMEM;
2254
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002255 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002256
Chris Wilson1c255952010-09-26 11:03:27 +01002257 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002258 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002259
2260 return 0;
2261}
2262
Jesse Barnes79e53942008-11-07 14:24:08 -08002263/**
2264 * i915_driver_lastclose - clean up after all DRM clients have exited
2265 * @dev: DRM device
2266 *
2267 * Take care of cleaning up after all DRM clients have exited. In the
2268 * mode setting case, we want to restore the kernel's initial mode (just
2269 * in case the last client left us in a bad state).
2270 *
Daniel Vetter9021f282012-03-26 09:45:41 +02002271 * Additionally, in the non-mode setting case, we'll tear down the GTT
Jesse Barnes79e53942008-11-07 14:24:08 -08002272 * and DMA structures, since the kernel won't be using them, and clea
2273 * up any GEM state.
2274 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002275void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002277 drm_i915_private_t *dev_priv = dev->dev_private;
2278
Jesse Barnes79e53942008-11-07 14:24:08 -08002279 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01002280 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002281 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002282 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002283 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002284
Eric Anholt673a3942008-07-30 12:06:12 -07002285 i915_gem_lastclose(dev);
2286
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002287 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288}
2289
Eric Anholt6c340ea2007-08-25 20:23:09 +10002290void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Eric Anholtb9624422009-06-03 07:27:35 +00002292 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002295void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002296{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002297 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002298
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002299 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002300}
2301
Eric Anholtc153f452007-09-03 12:06:45 +10002302struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002303 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2304 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2305 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2306 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2307 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2308 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2309 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2310 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002311 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2312 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2313 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002314 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002315 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterd1c1edb2012-04-26 23:28:01 +02002316 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002317 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2318 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2319 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2320 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2321 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2322 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2323 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2324 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2325 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2326 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2327 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2328 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2329 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2330 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2331 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2332 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2333 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2334 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2335 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2336 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2337 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2338 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2339 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2340 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2341 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2342 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08002343 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2344 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 +10002345};
2346
2347int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002348
Daniel Vetter9021f282012-03-26 09:45:41 +02002349/*
2350 * This is really ugly: Because old userspace abused the linux agp interface to
2351 * manage the gtt, we need to claim that all intel devices are agp. For
2352 * otherwise the drm core refuses to initialize the agp support code.
Dave Airliecda17382005-07-10 17:31:26 +10002353 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002354int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002355{
2356 return 1;
2357}