blob: 785f67f963efd5b53e0a0358e956888b103da5bd [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
29#include "drmP.h"
30#include "drm.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include "drm_crtc_helper.h"
Dave Airlie785b93e2009-08-28 15:46:53 +100032#include "drm_fb_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "i915_drm.h"
35#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010036#include "i915_trace.h"
Eric Anholt63ee41d2010-12-20 18:40:06 -080037#include "../../../platform/x86/intel_ips.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060038#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100039#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080040#include <linux/acpi.h>
41#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100042#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040044#include <linux/module.h>
Chris Wilson44834a62010-08-19 16:09:23 +010045#include <acpi/video.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Chris Wilson4cbf74c2011-02-25 22:26:23 +000047static void i915_write_hws_pga(struct drm_device *dev)
48{
49 drm_i915_private_t *dev_priv = dev->dev_private;
50 u32 addr;
51
52 addr = dev_priv->status_page_dmah->busaddr;
53 if (INTEL_INFO(dev)->gen >= 4)
54 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
55 I915_WRITE(HWS_PGA, addr);
56}
57
Keith Packard398c9cb2008-07-30 13:03:43 -070058/**
59 * Sets up the hardware status page for devices that need a physical address
60 * in the register.
61 */
Eric Anholt3043c602008-10-02 12:24:47 -070062static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070063{
64 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000065
Keith Packard398c9cb2008-07-30 13:03:43 -070066 /* Program Hardware Status Page */
67 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080068 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070069
70 if (!dev_priv->status_page_dmah) {
71 DRM_ERROR("Can not allocate hardware status page\n");
72 return -ENOMEM;
73 }
Keith Packard398c9cb2008-07-30 13:03:43 -070074
Keith Packardf3234702011-07-22 10:44:39 -070075 memset_io((void __force __iomem *)dev_priv->status_page_dmah->vaddr,
76 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070077
Chris Wilson4cbf74c2011-02-25 22:26:23 +000078 i915_write_hws_pga(dev);
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080079
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080080 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070081 return 0;
82}
83
84/**
85 * Frees the hardware status page, whether it's a physical address or a virtual
86 * address set up by the X Server.
87 */
Eric Anholt3043c602008-10-02 12:24:47 -070088static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070089{
90 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000091 struct intel_ring_buffer *ring = LP_RING(dev_priv);
92
Keith Packard398c9cb2008-07-30 13:03:43 -070093 if (dev_priv->status_page_dmah) {
94 drm_pci_free(dev, dev_priv->status_page_dmah);
95 dev_priv->status_page_dmah = NULL;
96 }
97
Chris Wilson1ec14ad2010-12-04 11:30:53 +000098 if (ring->status_page.gfx_addr) {
99 ring->status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -0700100 drm_core_ioremapfree(&dev_priv->hws_map, dev);
101 }
102
103 /* Need to rewrite hardware status page */
104 I915_WRITE(HWS_PGA, 0x1ffff000);
105}
106
Dave Airlie84b1fd12007-07-11 15:53:27 +1000107void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000110 struct drm_i915_master_private *master_priv;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000111 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jesse Barnes79e53942008-11-07 14:24:08 -0800113 /*
114 * We should never lose context on the ring with modesetting
115 * as we don't expose it to userspace
116 */
117 if (drm_core_check_feature(dev, DRIVER_MODESET))
118 return;
119
Chris Wilson8168bd42010-11-11 17:54:52 +0000120 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
121 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 ring->space = ring->head - (ring->tail + 8);
123 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800124 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Dave Airlie7c1c2872008-11-28 14:22:24 +1000126 if (!dev->primary->master)
127 return;
128
129 master_priv = dev->primary->master->driver_priv;
130 if (ring->head == ring->tail && master_priv->sarea_priv)
131 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Dave Airlie84b1fd12007-07-11 15:53:27 +1000134static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000136 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000137 int i;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* Make sure interrupts are disabled here because the uninstall ioctl
140 * may not have been called from userspace and after dev_private
141 * is freed, it's too late.
142 */
Eric Anholted4cb412008-07-29 12:10:39 -0700143 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000144 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200146 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000147 for (i = 0; i < I915_NUM_RINGS; i++)
148 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200149 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Keith Packard398c9cb2008-07-30 13:03:43 -0700151 /* Clear the HWS virtual address at teardown */
152 if (I915_NEED_GFX_HWS(dev))
153 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return 0;
156}
157
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000158static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000160 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000161 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Chris Wilsone8616b62011-01-20 09:57:11 +0000162 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Dave Airlie3a03ac12009-01-11 09:03:49 +1000164 master_priv->sarea = drm_getsarea(dev);
165 if (master_priv->sarea) {
166 master_priv->sarea_priv = (drm_i915_sarea_t *)
167 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
168 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800169 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000170 }
171
Eric Anholt673a3942008-07-30 12:06:12 -0700172 if (init->ring_size != 0) {
Chris Wilsone8616b62011-01-20 09:57:11 +0000173 if (LP_RING(dev_priv)->obj != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700174 i915_dma_cleanup(dev);
175 DRM_ERROR("Client tried to initialize ringbuffer in "
176 "GEM mode\n");
177 return -EINVAL;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Chris Wilsone8616b62011-01-20 09:57:11 +0000180 ret = intel_render_ring_init_dri(dev,
181 init->ring_start,
182 init->ring_size);
183 if (ret) {
Eric Anholt673a3942008-07-30 12:06:12 -0700184 i915_dma_cleanup(dev);
Chris Wilsone8616b62011-01-20 09:57:11 +0000185 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000189 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 dev_priv->back_offset = init->back_offset;
191 dev_priv->front_offset = init->front_offset;
192 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000193 if (master_priv->sarea_priv)
194 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /* Allow hardware batchbuffers unless told otherwise.
197 */
198 dev_priv->allow_batchbuffer = 1;
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return 0;
201}
202
Dave Airlie84b1fd12007-07-11 15:53:27 +1000203static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000206 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800208 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800210 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 DRM_ERROR("can not ioremap virtual address for"
212 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000213 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
216 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800217 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000219 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800221 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800222 ring->status_page.page_addr);
223 if (ring->status_page.gfx_addr != 0)
Chris Wilson78501ea2010-10-27 12:18:21 +0100224 intel_ring_setup_status_page(ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000225 else
Chris Wilson4cbf74c2011-02-25 22:26:23 +0000226 i915_write_hws_pga(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800227
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800228 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 return 0;
231}
232
Eric Anholtc153f452007-09-03 12:06:45 +1000233static int i915_dma_init(struct drm_device *dev, void *data,
234 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Eric Anholtc153f452007-09-03 12:06:45 +1000236 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 int retcode = 0;
238
Eric Anholtc153f452007-09-03 12:06:45 +1000239 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000241 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243 case I915_CLEANUP_DMA:
244 retcode = i915_dma_cleanup(dev);
245 break;
246 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100247 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 break;
249 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000250 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252 }
253
254 return retcode;
255}
256
257/* Implement basically the same security restrictions as hardware does
258 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
259 *
260 * Most of the calculations below involve calculating the size of a
261 * particular instruction. It's important to get the size right as
262 * that tells us where the next instruction to check is. Any illegal
263 * instruction detected will be given a size of zero, which is a
264 * signal to abort the rest of the buffer.
265 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100266static int validate_cmd(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 switch (((cmd >> 29) & 0x7)) {
269 case 0x0:
270 switch ((cmd >> 23) & 0x3f) {
271 case 0x0:
272 return 1; /* MI_NOOP */
273 case 0x4:
274 return 1; /* MI_FLUSH */
275 default:
276 return 0; /* disallow everything else */
277 }
278 break;
279 case 0x1:
280 return 0; /* reserved */
281 case 0x2:
282 return (cmd & 0xff) + 2; /* 2d commands */
283 case 0x3:
284 if (((cmd >> 24) & 0x1f) <= 0x18)
285 return 1;
286
287 switch ((cmd >> 24) & 0x1f) {
288 case 0x1c:
289 return 1;
290 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000291 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 case 0x3:
293 return (cmd & 0x1f) + 2;
294 case 0x4:
295 return (cmd & 0xf) + 2;
296 default:
297 return (cmd & 0xffff) + 2;
298 }
299 case 0x1e:
300 if (cmd & (1 << 23))
301 return (cmd & 0xffff) + 1;
302 else
303 return 1;
304 case 0x1f:
305 if ((cmd & (1 << 23)) == 0) /* inline vertices */
306 return (cmd & 0x1ffff) + 2;
307 else if (cmd & (1 << 17)) /* indirect random */
308 if ((cmd & 0xffff) == 0)
309 return 0; /* unknown length, too hard */
310 else
311 return (((cmd & 0xffff) + 1) / 2) + 1;
312 else
313 return 2; /* indirect sequential */
314 default:
315 return 0;
316 }
317 default:
318 return 0;
319 }
320
321 return 0;
322}
323
Eric Anholt201361a2009-03-11 12:30:04 -0700324static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100327 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000329 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000330 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 for (i = 0; i < dwords;) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100333 int sz = validate_cmd(buffer[i]);
334 if (sz == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000335 return -EINVAL;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100336 i += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100339 ret = BEGIN_LP_RING((dwords+1)&~1);
340 if (ret)
341 return ret;
342
343 for (i = 0; i < dwords; i++)
344 OUT_RING(buffer[i]);
Dave Airliede227f52006-01-25 15:31:43 +1100345 if (dwords & 1)
346 OUT_RING(0);
347
348 ADVANCE_LP_RING();
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return 0;
351}
352
Eric Anholt673a3942008-07-30 12:06:12 -0700353int
354i915_emit_box(struct drm_device *dev,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000355 struct drm_clip_rect *box,
356 int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100358 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100359 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000361 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
362 box->y2 <= 0 || box->x2 <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 DRM_ERROR("Bad box %d,%d..%d,%d\n",
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000364 box->x1, box->y1, box->x2, box->y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000365 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100368 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100369 ret = BEGIN_LP_RING(4);
370 if (ret)
371 return ret;
372
Alan Hourihanec29b6692006-08-12 16:29:24 +1000373 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000374 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
375 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000376 OUT_RING(DR4);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000377 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100378 ret = BEGIN_LP_RING(6);
379 if (ret)
380 return ret;
381
Alan Hourihanec29b6692006-08-12 16:29:24 +1000382 OUT_RING(GFX_OP_DRAWRECT_INFO);
383 OUT_RING(DR1);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000384 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
385 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000386 OUT_RING(DR4);
387 OUT_RING(0);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000388 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100389 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 return 0;
392}
393
Alan Hourihanec29b6692006-08-12 16:29:24 +1000394/* XXX: Emitting the counter should really be moved to part of the IRQ
395 * emit. For now, do it in both places:
396 */
397
Dave Airlie84b1fd12007-07-11 15:53:27 +1000398static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100399{
400 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000401 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100402
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400403 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000404 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400405 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000406 if (master_priv->sarea_priv)
407 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100408
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100409 if (BEGIN_LP_RING(4) == 0) {
410 OUT_RING(MI_STORE_DWORD_INDEX);
411 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
412 OUT_RING(dev_priv->counter);
413 OUT_RING(0);
414 ADVANCE_LP_RING();
415 }
Dave Airliede227f52006-01-25 15:31:43 +1100416}
417
Dave Airlie84b1fd12007-07-11 15:53:27 +1000418static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700419 drm_i915_cmdbuffer_t *cmd,
420 struct drm_clip_rect *cliprects,
421 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 int nbox = cmd->num_cliprects;
424 int i = 0, count, ret;
425
426 if (cmd->sz & 0x3) {
427 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000428 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
431 i915_kernel_lost_context(dev);
432
433 count = nbox ? nbox : 1;
434
435 for (i = 0; i < count; i++) {
436 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000437 ret = i915_emit_box(dev, &cliprects[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 cmd->DR1, cmd->DR4);
439 if (ret)
440 return ret;
441 }
442
Eric Anholt201361a2009-03-11 12:30:04 -0700443 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (ret)
445 return ret;
446 }
447
Dave Airliede227f52006-01-25 15:31:43 +1100448 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return 0;
450}
451
Dave Airlie84b1fd12007-07-11 15:53:27 +1000452static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700453 drm_i915_batchbuffer_t * batch,
454 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100456 struct drm_i915_private *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 int nbox = batch->num_cliprects;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100458 int i, count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 if ((batch->start | batch->used) & 0x7) {
461 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000462 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
465 i915_kernel_lost_context(dev);
466
467 count = nbox ? nbox : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 for (i = 0; i < count; i++) {
469 if (i < nbox) {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000470 ret = i915_emit_box(dev, &cliprects[i],
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100471 batch->DR1, batch->DR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (ret)
473 return ret;
474 }
475
Keith Packard0790d5e2008-07-30 12:28:47 -0700476 if (!IS_I830(dev) && !IS_845G(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100477 ret = BEGIN_LP_RING(2);
478 if (ret)
479 return ret;
480
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100481 if (INTEL_INFO(dev)->gen >= 4) {
Dave Airlie21f16282007-08-07 09:09:51 +1000482 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
483 OUT_RING(batch->start);
484 } else {
485 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
486 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100489 ret = BEGIN_LP_RING(4);
490 if (ret)
491 return ret;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 OUT_RING(MI_BATCH_BUFFER);
494 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
495 OUT_RING(batch->start + batch->used - 4);
496 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100498 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Zou Nan hai1cafd342010-06-25 13:40:24 +0800501
Chris Wilsonf00a3dd2010-10-21 14:57:17 +0100502 if (IS_G4X(dev) || IS_GEN5(dev)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100503 if (BEGIN_LP_RING(2) == 0) {
504 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
505 OUT_RING(MI_NOOP);
506 ADVANCE_LP_RING();
507 }
Zou Nan hai1cafd342010-06-25 13:40:24 +0800508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100510 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512}
513
Dave Airlieaf6061a2008-05-07 12:15:39 +1000514static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000517 struct drm_i915_master_private *master_priv =
518 dev->primary->master->driver_priv;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100519 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Dave Airlie7c1c2872008-11-28 14:22:24 +1000521 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400522 return -EINVAL;
523
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800524 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800525 __func__,
526 dev_priv->current_page,
527 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Dave Airlieaf6061a2008-05-07 12:15:39 +1000529 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100531 ret = BEGIN_LP_RING(10);
532 if (ret)
533 return ret;
534
Jesse Barnes585fb112008-07-29 11:54:06 -0700535 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000536 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Airlieaf6061a2008-05-07 12:15:39 +1000538 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
539 OUT_RING(0);
540 if (dev_priv->current_page == 0) {
541 OUT_RING(dev_priv->back_offset);
542 dev_priv->current_page = 1;
543 } else {
544 OUT_RING(dev_priv->front_offset);
545 dev_priv->current_page = 0;
546 }
547 OUT_RING(0);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000548
Dave Airlieaf6061a2008-05-07 12:15:39 +1000549 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
550 OUT_RING(0);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100551
Dave Airlieaf6061a2008-05-07 12:15:39 +1000552 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000553
Dave Airlie7c1c2872008-11-28 14:22:24 +1000554 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000555
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100556 if (BEGIN_LP_RING(4) == 0) {
557 OUT_RING(MI_STORE_DWORD_INDEX);
558 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
559 OUT_RING(dev_priv->counter);
560 OUT_RING(0);
561 ADVANCE_LP_RING();
562 }
Jesse Barnesac741ab2008-04-22 16:03:07 +1000563
Dave Airlie7c1c2872008-11-28 14:22:24 +1000564 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000568static int i915_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000570 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 i915_kernel_lost_context(dev);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700573 return intel_wait_ring_idle(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Eric Anholtc153f452007-09-03 12:06:45 +1000576static int i915_flush_ioctl(struct drm_device *dev, void *data,
577 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Eric Anholt546b0972008-09-01 16:45:29 -0700579 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Eric Anholt546b0972008-09-01 16:45:29 -0700581 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
582
583 mutex_lock(&dev->struct_mutex);
584 ret = i915_quiescent(dev);
585 mutex_unlock(&dev->struct_mutex);
586
587 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Eric Anholtc153f452007-09-03 12:06:45 +1000590static int i915_batchbuffer(struct drm_device *dev, void *data,
591 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000594 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000596 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000597 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700599 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (!dev_priv->allow_batchbuffer) {
602 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000603 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800606 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800607 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Eric Anholt546b0972008-09-01 16:45:29 -0700609 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Eric Anholt201361a2009-03-11 12:30:04 -0700611 if (batch->num_cliprects < 0)
612 return -EINVAL;
613
614 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700615 cliprects = kcalloc(batch->num_cliprects,
616 sizeof(struct drm_clip_rect),
617 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700618 if (cliprects == NULL)
619 return -ENOMEM;
620
621 ret = copy_from_user(cliprects, batch->cliprects,
622 batch->num_cliprects *
623 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200624 if (ret != 0) {
625 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700626 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200627 }
Eric Anholt201361a2009-03-11 12:30:04 -0700628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Eric Anholt546b0972008-09-01 16:45:29 -0700630 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700631 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700632 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400634 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000635 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700636
637fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700638 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ret;
641}
642
Eric Anholtc153f452007-09-03 12:06:45 +1000643static int i915_cmdbuffer(struct drm_device *dev, void *data,
644 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000647 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000649 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000650 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700651 struct drm_clip_rect *cliprects = NULL;
652 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int ret;
654
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800655 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800656 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Eric Anholt546b0972008-09-01 16:45:29 -0700658 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Eric Anholt201361a2009-03-11 12:30:04 -0700660 if (cmdbuf->num_cliprects < 0)
661 return -EINVAL;
662
Eric Anholt9a298b22009-03-24 12:23:04 -0700663 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700664 if (batch_data == NULL)
665 return -ENOMEM;
666
667 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200668 if (ret != 0) {
669 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700670 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200671 }
Eric Anholt201361a2009-03-11 12:30:04 -0700672
673 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700674 cliprects = kcalloc(cmdbuf->num_cliprects,
675 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000676 if (cliprects == NULL) {
677 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700678 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000679 }
Eric Anholt201361a2009-03-11 12:30:04 -0700680
681 ret = copy_from_user(cliprects, cmdbuf->cliprects,
682 cmdbuf->num_cliprects *
683 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200684 if (ret != 0) {
685 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700686 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Eric Anholt546b0972008-09-01 16:45:29 -0700690 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700691 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700692 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (ret) {
694 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000695 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400698 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000699 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700700
Eric Anholt201361a2009-03-11 12:30:04 -0700701fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700702 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000703fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700704 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700705
706 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Eric Anholtc153f452007-09-03 12:06:45 +1000709static int i915_flip_bufs(struct drm_device *dev, void *data,
710 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Eric Anholt546b0972008-09-01 16:45:29 -0700712 int ret;
713
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800714 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Eric Anholt546b0972008-09-01 16:45:29 -0700716 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Eric Anholt546b0972008-09-01 16:45:29 -0700718 mutex_lock(&dev->struct_mutex);
719 ret = i915_dispatch_flip(dev);
720 mutex_unlock(&dev->struct_mutex);
721
722 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
Eric Anholtc153f452007-09-03 12:06:45 +1000725static int i915_getparam(struct drm_device *dev, void *data,
726 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000729 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 int value;
731
732 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000733 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Eric Anholtc153f452007-09-03 12:06:45 +1000737 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700739 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
741 case I915_PARAM_ALLOW_BATCHBUFFER:
742 value = dev_priv->allow_batchbuffer ? 1 : 0;
743 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100744 case I915_PARAM_LAST_DISPATCH:
745 value = READ_BREADCRUMB(dev_priv);
746 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400747 case I915_PARAM_CHIPSET_ID:
748 value = dev->pci_device;
749 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700750 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000751 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700752 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800753 case I915_PARAM_NUM_FENCES_AVAIL:
754 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
755 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200756 case I915_PARAM_HAS_OVERLAY:
757 value = dev_priv->overlay ? 1 : 0;
758 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800759 case I915_PARAM_HAS_PAGEFLIPPING:
760 value = 1;
761 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500762 case I915_PARAM_HAS_EXECBUF2:
763 /* depends on GEM */
764 value = dev_priv->has_gem;
765 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800766 case I915_PARAM_HAS_BSD:
767 value = HAS_BSD(dev);
768 break;
Chris Wilson549f7362010-10-19 11:19:32 +0100769 case I915_PARAM_HAS_BLT:
770 value = HAS_BLT(dev);
771 break;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100772 case I915_PARAM_HAS_RELAXED_FENCING:
773 value = 1;
774 break;
Daniel Vetterbbf0c6b2010-12-05 11:30:40 +0100775 case I915_PARAM_HAS_COHERENT_RINGS:
776 value = 1;
777 break;
Chris Wilson72bfa192010-12-19 11:42:05 +0000778 case I915_PARAM_HAS_EXEC_CONSTANTS:
779 value = INTEL_INFO(dev)->gen >= 4;
780 break;
Chris Wilson271d81b2011-03-01 15:24:41 +0000781 case I915_PARAM_HAS_RELAXED_DELTA:
782 value = 1;
783 break;
Eric Anholtae662d32012-01-03 09:23:29 -0800784 case I915_PARAM_HAS_GEN7_SOL_RESET:
785 value = 1;
786 break;
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200787 case I915_PARAM_HAS_LLC:
788 value = HAS_LLC(dev);
789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800791 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500792 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000793 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Eric Anholtc153f452007-09-03 12:06:45 +1000796 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000798 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 return 0;
802}
803
Eric Anholtc153f452007-09-03 12:06:45 +1000804static int i915_setparam(struct drm_device *dev, void *data,
805 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000808 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000811 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000812 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Eric Anholtc153f452007-09-03 12:06:45 +1000815 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000819 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 break;
821 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000822 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800824 case I915_SETPARAM_NUM_USED_FENCES:
825 if (param->value > dev_priv->num_fence_regs ||
826 param->value < 0)
827 return -EINVAL;
828 /* Userspace can use first N regs */
829 dev_priv->fence_reg_start = param->value;
830 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800832 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800833 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000834 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
837 return 0;
838}
839
Eric Anholtc153f452007-09-03 12:06:45 +1000840static int i915_set_status_page(struct drm_device *dev, void *data,
841 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000842{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000843 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000844 drm_i915_hws_addr_t *hws = data;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000845 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000846
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000847 if (!I915_NEED_GFX_HWS(dev))
848 return -EINVAL;
849
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000850 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000851 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000852 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000853 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000854
Jesse Barnes79e53942008-11-07 14:24:08 -0800855 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
856 WARN(1, "tried to set status page when mode setting active\n");
857 return 0;
858 }
859
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800860 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000861
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800862 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000863
Eric Anholt8b409582007-11-22 16:40:37 +1000864 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000865 dev_priv->hws_map.size = 4*1024;
866 dev_priv->hws_map.type = 0;
867 dev_priv->hws_map.flags = 0;
868 dev_priv->hws_map.mtrr = 0;
869
Dave Airliedd0910b2009-02-25 14:49:21 +1000870 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000871 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000872 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700873 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000874 DRM_ERROR("can not ioremap virtual address for"
875 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000876 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000877 }
Chris Wilson311bd682011-01-13 19:06:50 +0000878 ring->status_page.page_addr =
879 (void __force __iomem *)dev_priv->hws_map.handle;
880 memset_io(ring->status_page.page_addr, 0, PAGE_SIZE);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800881 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000882
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800883 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700884 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800885 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700886 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000887 return 0;
888}
889
Dave Airlieec2a4c32009-08-04 11:43:41 +1000890static int i915_get_bridge_dev(struct drm_device *dev)
891{
892 struct drm_i915_private *dev_priv = dev->dev_private;
893
Akshay Joshi0206e352011-08-16 15:34:10 -0400894 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
Dave Airlieec2a4c32009-08-04 11:43:41 +1000895 if (!dev_priv->bridge_dev) {
896 DRM_ERROR("bridge device not found\n");
897 return -1;
898 }
899 return 0;
900}
901
Zhenyu Wangc48044112009-12-17 14:48:43 +0800902#define MCHBAR_I915 0x44
903#define MCHBAR_I965 0x48
904#define MCHBAR_SIZE (4*4096)
905
906#define DEVEN_REG 0x54
907#define DEVEN_MCHBAR_EN (1 << 28)
908
909/* Allocate space for the MCH regs if needed, return nonzero on error */
910static int
911intel_alloc_mchbar_resource(struct drm_device *dev)
912{
913 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100914 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800915 u32 temp_lo, temp_hi = 0;
916 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100917 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800918
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100919 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800920 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
921 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
922 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
923
924 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
925#ifdef CONFIG_PNP
926 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100927 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
928 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800929#endif
930
931 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100932 dev_priv->mch_res.name = "i915 MCHBAR";
933 dev_priv->mch_res.flags = IORESOURCE_MEM;
934 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
935 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800936 MCHBAR_SIZE, MCHBAR_SIZE,
937 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100938 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800939 dev_priv->bridge_dev);
940 if (ret) {
941 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
942 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100943 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800944 }
945
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100946 if (INTEL_INFO(dev)->gen >= 4)
Zhenyu Wangc48044112009-12-17 14:48:43 +0800947 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
948 upper_32_bits(dev_priv->mch_res.start));
949
950 pci_write_config_dword(dev_priv->bridge_dev, reg,
951 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100952 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800953}
954
955/* Setup MCHBAR if possible, return true if we should disable it again */
956static void
957intel_setup_mchbar(struct drm_device *dev)
958{
959 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100960 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800961 u32 temp;
962 bool enabled;
963
964 dev_priv->mchbar_need_disable = false;
965
966 if (IS_I915G(dev) || IS_I915GM(dev)) {
967 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
968 enabled = !!(temp & DEVEN_MCHBAR_EN);
969 } else {
970 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
971 enabled = temp & 1;
972 }
973
974 /* If it's already enabled, don't have to do anything */
975 if (enabled)
976 return;
977
978 if (intel_alloc_mchbar_resource(dev))
979 return;
980
981 dev_priv->mchbar_need_disable = true;
982
983 /* Space is allocated or reserved, so enable it. */
984 if (IS_I915G(dev) || IS_I915GM(dev)) {
985 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
986 temp | DEVEN_MCHBAR_EN);
987 } else {
988 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
989 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
990 }
991}
992
993static void
994intel_teardown_mchbar(struct drm_device *dev)
995{
996 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100997 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800998 u32 temp;
999
1000 if (dev_priv->mchbar_need_disable) {
1001 if (IS_I915G(dev) || IS_I915GM(dev)) {
1002 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1003 temp &= ~DEVEN_MCHBAR_EN;
1004 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1005 } else {
1006 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1007 temp &= ~1;
1008 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1009 }
1010 }
1011
1012 if (dev_priv->mch_res.start)
1013 release_resource(&dev_priv->mch_res);
1014}
1015
Jesse Barnes80824002009-09-10 15:28:06 -07001016#define PTE_ADDRESS_MASK 0xfffff000
1017#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1018#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1019#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1020#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1021#define PTE_MAPPING_TYPE_MASK (3 << 1)
1022#define PTE_VALID (1 << 0)
1023
1024/**
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001025 * i915_stolen_to_phys - take an offset into stolen memory and turn it into
1026 * a physical one
Jesse Barnes80824002009-09-10 15:28:06 -07001027 * @dev: drm device
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001028 * @offset: address to translate
Jesse Barnes80824002009-09-10 15:28:06 -07001029 *
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001030 * Some chip functions require allocations from stolen space and need the
1031 * physical address of the memory in question.
Jesse Barnes80824002009-09-10 15:28:06 -07001032 */
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001033static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset)
Jesse Barnes80824002009-09-10 15:28:06 -07001034{
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001035 struct drm_i915_private *dev_priv = dev->dev_private;
1036 struct pci_dev *pdev = dev_priv->bridge_dev;
1037 u32 base;
Jesse Barnes80824002009-09-10 15:28:06 -07001038
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001039#if 0
1040 /* On the machines I have tested the Graphics Base of Stolen Memory
1041 * is unreliable, so compute the base by subtracting the stolen memory
1042 * from the Top of Low Usable DRAM which is where the BIOS places
1043 * the graphics stolen memory.
1044 */
1045 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1046 /* top 32bits are reserved = 0 */
1047 pci_read_config_dword(pdev, 0xA4, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001048 } else {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001049 /* XXX presume 8xx is the same as i915 */
1050 pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base);
Jesse Barnes80824002009-09-10 15:28:06 -07001051 }
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001052#else
1053 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1054 u16 val;
1055 pci_read_config_word(pdev, 0xb0, &val);
1056 base = val >> 4 << 20;
1057 } else {
1058 u8 val;
1059 pci_read_config_byte(pdev, 0x9c, &val);
1060 base = val >> 3 << 27;
Jesse Barnes80824002009-09-10 15:28:06 -07001061 }
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001062 base -= dev_priv->mm.gtt->stolen_size;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001063#endif
Jesse Barnes80824002009-09-10 15:28:06 -07001064
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001065 return base + offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001066}
1067
1068static void i915_warn_stolen(struct drm_device *dev)
1069{
1070 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1071 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1072}
1073
1074static void i915_setup_compression(struct drm_device *dev, int size)
1075{
1076 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001077 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001078 unsigned long cfb_base;
1079 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001080
Chris Wilson43a95392011-07-08 12:22:36 +01001081 /* Just in case the BIOS is doing something questionable. */
1082 intel_disable_fbc(dev);
1083
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001084 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
1085 if (compressed_fb)
1086 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1087 if (!compressed_fb)
1088 goto err;
Jesse Barnes80824002009-09-10 15:28:06 -07001089
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001090 cfb_base = i915_stolen_to_phys(dev, compressed_fb->start);
1091 if (!cfb_base)
1092 goto err_fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001093
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001094 if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) {
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001095 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
1096 4096, 4096, 0);
1097 if (compressed_llb)
1098 compressed_llb = drm_mm_get_block(compressed_llb,
1099 4096, 4096);
1100 if (!compressed_llb)
1101 goto err_fb;
Jesse Barnes74dff282009-09-14 15:39:40 -07001102
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001103 ll_base = i915_stolen_to_phys(dev, compressed_llb->start);
1104 if (!ll_base)
1105 goto err_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001106 }
1107
1108 dev_priv->cfb_size = size;
1109
Jesse Barnes20bf3772010-04-21 11:39:22 -07001110 dev_priv->compressed_fb = compressed_fb;
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001111 if (HAS_PCH_SPLIT(dev))
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001112 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1113 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001114 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1115 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001116 I915_WRITE(FBC_CFB_BASE, cfb_base);
1117 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001118 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001119 }
1120
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001121 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n",
1122 cfb_base, ll_base, size >> 20);
1123 return;
1124
1125err_llb:
1126 drm_mm_put_block(compressed_llb);
1127err_fb:
1128 drm_mm_put_block(compressed_fb);
1129err:
1130 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
1131 i915_warn_stolen(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001132}
1133
Jesse Barnes20bf3772010-04-21 11:39:22 -07001134static void i915_cleanup_compression(struct drm_device *dev)
1135{
1136 struct drm_i915_private *dev_priv = dev->dev_private;
1137
1138 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001139 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001140 drm_mm_put_block(dev_priv->compressed_llb);
1141}
1142
Dave Airlie28d52042009-09-21 14:33:58 +10001143/* true = enable decode, false = disable decoder */
1144static unsigned int i915_vga_set_decode(void *cookie, bool state)
1145{
1146 struct drm_device *dev = cookie;
1147
1148 intel_modeset_vga_set_state(dev, state);
1149 if (state)
1150 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1151 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1152 else
1153 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1154}
1155
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001156static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1157{
1158 struct drm_device *dev = pci_get_drvdata(pdev);
1159 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1160 if (state == VGA_SWITCHEROO_ON) {
Dave Airliefbf81762010-06-01 09:09:06 +10001161 printk(KERN_INFO "i915: switched on\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001162 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001163 /* i915 resume handler doesn't set to D0 */
1164 pci_set_power_state(dev->pdev, PCI_D0);
1165 i915_resume(dev);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001166 dev->switch_power_state = DRM_SWITCH_POWER_ON;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001167 } else {
1168 printk(KERN_ERR "i915: switched off\n");
Dave Airlie5bcf7192010-12-07 09:20:40 +10001169 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001170 i915_suspend(dev, pmm);
Dave Airlie5bcf7192010-12-07 09:20:40 +10001171 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001172 }
1173}
1174
1175static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1176{
1177 struct drm_device *dev = pci_get_drvdata(pdev);
1178 bool can_switch;
1179
1180 spin_lock(&dev->count_lock);
1181 can_switch = (dev->open_count == 0);
1182 spin_unlock(&dev->count_lock);
1183 return can_switch;
1184}
1185
Daniel Vetter650dc072012-04-02 10:08:35 +02001186static bool
1187intel_enable_ppgtt(struct drm_device *dev)
1188{
1189 if (i915_enable_ppgtt >= 0)
1190 return i915_enable_ppgtt;
1191
1192#ifdef CONFIG_INTEL_IOMMU
1193 /* Disable ppgtt on SNB if VT-d is on. */
1194 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
1195 return false;
1196#endif
1197
1198 return true;
1199}
1200
Chris Wilson2c7111d2011-03-29 10:40:27 +01001201static int i915_load_gem_init(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08001202{
1203 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53984632010-09-22 23:44:24 +02001204 unsigned long prealloc_size, gtt_size, mappable_size;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001205 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001206
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00001207 prealloc_size = dev_priv->mm.gtt->stolen_size;
Daniel Vetter53984632010-09-22 23:44:24 +02001208 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
1209 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
Daniel Vetter53984632010-09-22 23:44:24 +02001210
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001211 /* Basic memrange allocator for stolen space */
1212 drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08001213
Daniel Vetterd3ae0812012-01-26 11:41:11 +01001214 mutex_lock(&dev->struct_mutex);
Daniel Vetter650dc072012-04-02 10:08:35 +02001215 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001216 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
1217 * aperture accordingly when using aliasing ppgtt. */
1218 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
1219 /* For paranoia keep the guard page in between. */
1220 gtt_size -= PAGE_SIZE;
1221
1222 i915_gem_do_init(dev, 0, mappable_size, gtt_size);
1223
1224 ret = i915_gem_init_aliasing_ppgtt(dev);
Daniel Vettere02f14c2012-04-02 23:33:03 +02001225 if (ret) {
1226 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001227 return ret;
Daniel Vettere02f14c2012-04-02 23:33:03 +02001228 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001229 } else {
1230 /* Let GEM Manage all of the aperture.
1231 *
1232 * However, leave one page at the end still bound to the scratch
1233 * page. There are a number of places where the hardware
1234 * apparently prefetches past the end of the object, and we've
1235 * seen multiple hangs with the GPU head pointer stuck in a
1236 * batchbuffer bound at the last page of the aperture. One page
1237 * should be enough to keep any prefetching inside of the
1238 * aperture.
1239 */
1240 i915_gem_do_init(dev, 0, mappable_size, gtt_size - PAGE_SIZE);
1241 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001242
Daniel Vetterf691e2f2012-02-02 09:58:12 +01001243 ret = i915_gem_init_hw(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001244 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001245 if (ret) {
1246 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001247 return ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001248 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001249
Jesse Barnes80824002009-09-10 15:28:06 -07001250 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001251 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001252 int cfb_size;
1253
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001254 /* Leave 1M for line length buffer & misc. */
1255
1256 /* Try to get a 32M buffer... */
1257 if (prealloc_size > (36*1024*1024))
1258 cfb_size = 32*1024*1024;
Jesse Barnes80824002009-09-10 15:28:06 -07001259 else /* fall back to 7/8 of the stolen space */
1260 cfb_size = prealloc_size * 7 / 8;
1261 i915_setup_compression(dev, cfb_size);
1262 }
1263
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001264 /* Allow hardware batchbuffers unless told otherwise. */
Jesse Barnes79e53942008-11-07 14:24:08 -08001265 dev_priv->allow_batchbuffer = 1;
Chris Wilson2c7111d2011-03-29 10:40:27 +01001266 return 0;
1267}
1268
1269static int i915_load_modeset_init(struct drm_device *dev)
1270{
1271 struct drm_i915_private *dev_priv = dev->dev_private;
1272 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001273
Bryan Freed6d139a82010-10-14 09:14:51 +01001274 ret = intel_parse_bios(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001275 if (ret)
1276 DRM_INFO("failed to find VBIOS tables\n");
1277
Chris Wilson934f9922011-01-20 13:09:12 +00001278 /* If we have > 1 VGA cards, then we need to arbitrate access
1279 * to the common VGA resources.
1280 *
1281 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1282 * then we do not take part in VGA arbitration and the
1283 * vga_client_register() fails with -ENODEV.
1284 */
Dave Airlie28d52042009-09-21 14:33:58 +10001285 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson934f9922011-01-20 13:09:12 +00001286 if (ret && ret != -ENODEV)
Chris Wilson2c7111d2011-03-29 10:40:27 +01001287 goto out;
Dave Airlie28d52042009-09-21 14:33:58 +10001288
Jesse Barnes723bfd72010-10-07 16:01:13 -07001289 intel_register_dsm_handler();
1290
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001291 ret = vga_switcheroo_register_client(dev->pdev,
1292 i915_switcheroo_set_state,
Dave Airlie8d608aa2010-12-07 08:57:57 +10001293 NULL,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001294 i915_switcheroo_can_switch);
1295 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001296 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001297
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001298 /* IIR "flip pending" bit means done if this bit is set */
1299 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1300 dev_priv->flip_pending_is_done = true;
1301
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001302 intel_modeset_init(dev);
1303
Chris Wilson2c7111d2011-03-29 10:40:27 +01001304 ret = i915_load_gem_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001305 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001306 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001307
Chris Wilson2c7111d2011-03-29 10:40:27 +01001308 intel_modeset_gem_init(dev);
1309
1310 ret = drm_irq_install(dev);
1311 if (ret)
1312 goto cleanup_gem;
1313
Jesse Barnes79e53942008-11-07 14:24:08 -08001314 /* Always safe in the mode setting case. */
1315 /* FIXME: do pre/post-mode set stuff in core KMS code */
1316 dev->vblank_disable_allowed = 1;
1317
Chris Wilson5a793952010-06-06 10:50:03 +01001318 ret = intel_fbdev_init(dev);
1319 if (ret)
1320 goto cleanup_irq;
1321
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001322 drm_kms_helper_poll_init(dev);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001323
1324 /* We're off and running w/KMS */
1325 dev_priv->mm.suspended = 0;
1326
Jesse Barnes79e53942008-11-07 14:24:08 -08001327 return 0;
1328
Chris Wilson5a793952010-06-06 10:50:03 +01001329cleanup_irq:
1330 drm_irq_uninstall(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01001331cleanup_gem:
1332 mutex_lock(&dev->struct_mutex);
1333 i915_gem_cleanup_ringbuffer(dev);
1334 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001335 i915_gem_cleanup_aliasing_ppgtt(dev);
Chris Wilson5a793952010-06-06 10:50:03 +01001336cleanup_vga_switcheroo:
1337 vga_switcheroo_unregister_client(dev->pdev);
1338cleanup_vga_client:
1339 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001340out:
1341 return ret;
1342}
1343
Dave Airlie7c1c2872008-11-28 14:22:24 +10001344int i915_master_create(struct drm_device *dev, struct drm_master *master)
1345{
1346 struct drm_i915_master_private *master_priv;
1347
Eric Anholt9a298b22009-03-24 12:23:04 -07001348 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001349 if (!master_priv)
1350 return -ENOMEM;
1351
1352 master->driver_priv = master_priv;
1353 return 0;
1354}
1355
1356void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1357{
1358 struct drm_i915_master_private *master_priv = master->driver_priv;
1359
1360 if (!master_priv)
1361 return;
1362
Eric Anholt9a298b22009-03-24 12:23:04 -07001363 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001364
1365 master->driver_priv = NULL;
1366}
1367
Jesse Barnes7648fa92010-05-20 14:28:11 -07001368static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001369{
1370 drm_i915_private_t *dev_priv = dev->dev_private;
1371 u32 tmp;
1372
Shaohua Li7662c8b2009-06-26 11:23:55 +08001373 tmp = I915_READ(CLKCFG);
1374
1375 switch (tmp & CLKCFG_FSB_MASK) {
1376 case CLKCFG_FSB_533:
1377 dev_priv->fsb_freq = 533; /* 133*4 */
1378 break;
1379 case CLKCFG_FSB_800:
1380 dev_priv->fsb_freq = 800; /* 200*4 */
1381 break;
1382 case CLKCFG_FSB_667:
1383 dev_priv->fsb_freq = 667; /* 167*4 */
1384 break;
1385 case CLKCFG_FSB_400:
1386 dev_priv->fsb_freq = 400; /* 100*4 */
1387 break;
1388 }
1389
1390 switch (tmp & CLKCFG_MEM_MASK) {
1391 case CLKCFG_MEM_533:
1392 dev_priv->mem_freq = 533;
1393 break;
1394 case CLKCFG_MEM_667:
1395 dev_priv->mem_freq = 667;
1396 break;
1397 case CLKCFG_MEM_800:
1398 dev_priv->mem_freq = 800;
1399 break;
1400 }
Li Peng95534262010-05-18 18:58:44 +08001401
1402 /* detect pineview DDR3 setting */
1403 tmp = I915_READ(CSHRDDR3CTL);
1404 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001405}
1406
Jesse Barnes7648fa92010-05-20 14:28:11 -07001407static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1408{
1409 drm_i915_private_t *dev_priv = dev->dev_private;
1410 u16 ddrpll, csipll;
1411
1412 ddrpll = I915_READ16(DDRMPLL1);
1413 csipll = I915_READ16(CSIPLL0);
1414
1415 switch (ddrpll & 0xff) {
1416 case 0xc:
1417 dev_priv->mem_freq = 800;
1418 break;
1419 case 0x10:
1420 dev_priv->mem_freq = 1066;
1421 break;
1422 case 0x14:
1423 dev_priv->mem_freq = 1333;
1424 break;
1425 case 0x18:
1426 dev_priv->mem_freq = 1600;
1427 break;
1428 default:
1429 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1430 ddrpll & 0xff);
1431 dev_priv->mem_freq = 0;
1432 break;
1433 }
1434
1435 dev_priv->r_t = dev_priv->mem_freq;
1436
1437 switch (csipll & 0x3ff) {
1438 case 0x00c:
1439 dev_priv->fsb_freq = 3200;
1440 break;
1441 case 0x00e:
1442 dev_priv->fsb_freq = 3733;
1443 break;
1444 case 0x010:
1445 dev_priv->fsb_freq = 4266;
1446 break;
1447 case 0x012:
1448 dev_priv->fsb_freq = 4800;
1449 break;
1450 case 0x014:
1451 dev_priv->fsb_freq = 5333;
1452 break;
1453 case 0x016:
1454 dev_priv->fsb_freq = 5866;
1455 break;
1456 case 0x018:
1457 dev_priv->fsb_freq = 6400;
1458 break;
1459 default:
1460 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1461 csipll & 0x3ff);
1462 dev_priv->fsb_freq = 0;
1463 break;
1464 }
1465
1466 if (dev_priv->fsb_freq == 3200) {
1467 dev_priv->c_m = 0;
1468 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1469 dev_priv->c_m = 1;
1470 } else {
1471 dev_priv->c_m = 2;
1472 }
1473}
1474
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001475static const struct cparams {
1476 u16 i;
1477 u16 t;
1478 u16 m;
1479 u16 c;
1480} cparams[] = {
Jesse Barnes7648fa92010-05-20 14:28:11 -07001481 { 1, 1333, 301, 28664 },
1482 { 1, 1066, 294, 24460 },
1483 { 1, 800, 294, 25192 },
1484 { 0, 1333, 276, 27605 },
1485 { 0, 1066, 276, 27605 },
1486 { 0, 800, 231, 23784 },
1487};
1488
1489unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1490{
1491 u64 total_count, diff, ret;
1492 u32 count1, count2, count3, m = 0, c = 0;
1493 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1494 int i;
1495
1496 diff1 = now - dev_priv->last_time1;
1497
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001498 /* Prevent division-by-zero if we are asking too fast.
1499 * Also, we don't get interesting results if we are polling
1500 * faster than once in 10ms, so just return the saved value
1501 * in such cases.
1502 */
1503 if (diff1 <= 10)
1504 return dev_priv->chipset_power;
1505
Jesse Barnes7648fa92010-05-20 14:28:11 -07001506 count1 = I915_READ(DMIEC);
1507 count2 = I915_READ(DDREC);
1508 count3 = I915_READ(CSIEC);
1509
1510 total_count = count1 + count2 + count3;
1511
1512 /* FIXME: handle per-counter overflow */
1513 if (total_count < dev_priv->last_count1) {
1514 diff = ~0UL - dev_priv->last_count1;
1515 diff += total_count;
1516 } else {
1517 diff = total_count - dev_priv->last_count1;
1518 }
1519
1520 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1521 if (cparams[i].i == dev_priv->c_m &&
1522 cparams[i].t == dev_priv->r_t) {
1523 m = cparams[i].m;
1524 c = cparams[i].c;
1525 break;
1526 }
1527 }
1528
Jesse Barnesd270ae32010-09-27 10:35:44 -07001529 diff = div_u64(diff, diff1);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001530 ret = ((m * diff) + c);
Jesse Barnesd270ae32010-09-27 10:35:44 -07001531 ret = div_u64(ret, 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001532
1533 dev_priv->last_count1 = total_count;
1534 dev_priv->last_time1 = now;
1535
Eugeni Dodonov4ed0b572011-11-10 13:55:15 -02001536 dev_priv->chipset_power = ret;
1537
Jesse Barnes7648fa92010-05-20 14:28:11 -07001538 return ret;
1539}
1540
1541unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1542{
1543 unsigned long m, x, b;
1544 u32 tsfs;
1545
1546 tsfs = I915_READ(TSFS);
1547
1548 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1549 x = I915_READ8(TR1);
1550
1551 b = tsfs & TSFS_INTR_MASK;
1552
1553 return ((m * x) / 127) - b;
1554}
1555
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001556static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Jesse Barnes7648fa92010-05-20 14:28:11 -07001557{
Chris Wilsonfaa60c42010-11-23 13:50:14 +00001558 static const struct v_table {
1559 u16 vd; /* in .1 mil */
1560 u16 vm; /* in .1 mil */
1561 } v_table[] = {
1562 { 0, 0, },
1563 { 375, 0, },
1564 { 500, 0, },
1565 { 625, 0, },
1566 { 750, 0, },
1567 { 875, 0, },
1568 { 1000, 0, },
1569 { 1125, 0, },
1570 { 4125, 3000, },
1571 { 4125, 3000, },
1572 { 4125, 3000, },
1573 { 4125, 3000, },
1574 { 4125, 3000, },
1575 { 4125, 3000, },
1576 { 4125, 3000, },
1577 { 4125, 3000, },
1578 { 4125, 3000, },
1579 { 4125, 3000, },
1580 { 4125, 3000, },
1581 { 4125, 3000, },
1582 { 4125, 3000, },
1583 { 4125, 3000, },
1584 { 4125, 3000, },
1585 { 4125, 3000, },
1586 { 4125, 3000, },
1587 { 4125, 3000, },
1588 { 4125, 3000, },
1589 { 4125, 3000, },
1590 { 4125, 3000, },
1591 { 4125, 3000, },
1592 { 4125, 3000, },
1593 { 4125, 3000, },
1594 { 4250, 3125, },
1595 { 4375, 3250, },
1596 { 4500, 3375, },
1597 { 4625, 3500, },
1598 { 4750, 3625, },
1599 { 4875, 3750, },
1600 { 5000, 3875, },
1601 { 5125, 4000, },
1602 { 5250, 4125, },
1603 { 5375, 4250, },
1604 { 5500, 4375, },
1605 { 5625, 4500, },
1606 { 5750, 4625, },
1607 { 5875, 4750, },
1608 { 6000, 4875, },
1609 { 6125, 5000, },
1610 { 6250, 5125, },
1611 { 6375, 5250, },
1612 { 6500, 5375, },
1613 { 6625, 5500, },
1614 { 6750, 5625, },
1615 { 6875, 5750, },
1616 { 7000, 5875, },
1617 { 7125, 6000, },
1618 { 7250, 6125, },
1619 { 7375, 6250, },
1620 { 7500, 6375, },
1621 { 7625, 6500, },
1622 { 7750, 6625, },
1623 { 7875, 6750, },
1624 { 8000, 6875, },
1625 { 8125, 7000, },
1626 { 8250, 7125, },
1627 { 8375, 7250, },
1628 { 8500, 7375, },
1629 { 8625, 7500, },
1630 { 8750, 7625, },
1631 { 8875, 7750, },
1632 { 9000, 7875, },
1633 { 9125, 8000, },
1634 { 9250, 8125, },
1635 { 9375, 8250, },
1636 { 9500, 8375, },
1637 { 9625, 8500, },
1638 { 9750, 8625, },
1639 { 9875, 8750, },
1640 { 10000, 8875, },
1641 { 10125, 9000, },
1642 { 10250, 9125, },
1643 { 10375, 9250, },
1644 { 10500, 9375, },
1645 { 10625, 9500, },
1646 { 10750, 9625, },
1647 { 10875, 9750, },
1648 { 11000, 9875, },
1649 { 11125, 10000, },
1650 { 11250, 10125, },
1651 { 11375, 10250, },
1652 { 11500, 10375, },
1653 { 11625, 10500, },
1654 { 11750, 10625, },
1655 { 11875, 10750, },
1656 { 12000, 10875, },
1657 { 12125, 11000, },
1658 { 12250, 11125, },
1659 { 12375, 11250, },
1660 { 12500, 11375, },
1661 { 12625, 11500, },
1662 { 12750, 11625, },
1663 { 12875, 11750, },
1664 { 13000, 11875, },
1665 { 13125, 12000, },
1666 { 13250, 12125, },
1667 { 13375, 12250, },
1668 { 13500, 12375, },
1669 { 13625, 12500, },
1670 { 13750, 12625, },
1671 { 13875, 12750, },
1672 { 14000, 12875, },
1673 { 14125, 13000, },
1674 { 14250, 13125, },
1675 { 14375, 13250, },
1676 { 14500, 13375, },
1677 { 14625, 13500, },
1678 { 14750, 13625, },
1679 { 14875, 13750, },
1680 { 15000, 13875, },
1681 { 15125, 14000, },
1682 { 15250, 14125, },
1683 { 15375, 14250, },
1684 { 15500, 14375, },
1685 { 15625, 14500, },
1686 { 15750, 14625, },
1687 { 15875, 14750, },
1688 { 16000, 14875, },
1689 { 16125, 15000, },
1690 };
1691 if (dev_priv->info->is_mobile)
1692 return v_table[pxvid].vm;
1693 else
1694 return v_table[pxvid].vd;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001695}
1696
1697void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1698{
1699 struct timespec now, diff1;
1700 u64 diff;
1701 unsigned long diffms;
1702 u32 count;
1703
1704 getrawmonotonic(&now);
1705 diff1 = timespec_sub(now, dev_priv->last_time2);
1706
1707 /* Don't divide by 0 */
1708 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1709 if (!diffms)
1710 return;
1711
1712 count = I915_READ(GFXEC);
1713
1714 if (count < dev_priv->last_count2) {
1715 diff = ~0UL - dev_priv->last_count2;
1716 diff += count;
1717 } else {
1718 diff = count - dev_priv->last_count2;
1719 }
1720
1721 dev_priv->last_count2 = count;
1722 dev_priv->last_time2 = now;
1723
1724 /* More magic constants... */
1725 diff = diff * 1181;
Jesse Barnesd270ae32010-09-27 10:35:44 -07001726 diff = div_u64(diff, diffms * 10);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001727 dev_priv->gfx_power = diff;
1728}
1729
1730unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1731{
1732 unsigned long t, corr, state1, corr2, state2;
1733 u32 pxvid, ext_v;
1734
1735 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1736 pxvid = (pxvid >> 24) & 0x7f;
1737 ext_v = pvid_to_extvid(dev_priv, pxvid);
1738
1739 state1 = ext_v;
1740
1741 t = i915_mch_val(dev_priv);
1742
1743 /* Revel in the empirically derived constants */
1744
1745 /* Correction factor in 1/100000 units */
1746 if (t > 80)
1747 corr = ((t * 2349) + 135940);
1748 else if (t >= 50)
1749 corr = ((t * 964) + 29317);
1750 else /* < 50 */
1751 corr = ((t * 301) + 1004);
1752
1753 corr = corr * ((150142 * state1) / 10000 - 78642);
1754 corr /= 100000;
1755 corr2 = (corr * dev_priv->corr);
1756
1757 state2 = (corr2 * state1) / 10000;
1758 state2 /= 100; /* convert to mW */
1759
1760 i915_update_gfx_val(dev_priv);
1761
1762 return dev_priv->gfx_power + state2;
1763}
1764
1765/* Global for IPS driver to get at the current i915 device */
1766static struct drm_i915_private *i915_mch_dev;
1767/*
1768 * Lock protecting IPS related data structures
1769 * - i915_mch_dev
1770 * - dev_priv->max_delay
1771 * - dev_priv->min_delay
1772 * - dev_priv->fmax
1773 * - dev_priv->gpu_busy
1774 */
Chris Wilson995b6762010-08-20 13:23:26 +01001775static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001776
1777/**
1778 * i915_read_mch_val - return value for IPS use
1779 *
1780 * Calculate and return a value for the IPS driver to use when deciding whether
1781 * we have thermal and power headroom to increase CPU or GPU power budget.
1782 */
1783unsigned long i915_read_mch_val(void)
1784{
Akshay Joshi0206e352011-08-16 15:34:10 -04001785 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001786 unsigned long chipset_val, graphics_val, ret = 0;
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 goto out_unlock;
1791 dev_priv = i915_mch_dev;
1792
1793 chipset_val = i915_chipset_val(dev_priv);
1794 graphics_val = i915_gfx_val(dev_priv);
1795
1796 ret = chipset_val + graphics_val;
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_read_mch_val);
1804
1805/**
1806 * i915_gpu_raise - raise GPU frequency limit
1807 *
1808 * Raise the limit; IPS indicates we have thermal headroom.
1809 */
1810bool i915_gpu_raise(void)
1811{
Akshay Joshi0206e352011-08-16 15:34:10 -04001812 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001813 bool ret = true;
1814
Akshay Joshi0206e352011-08-16 15:34:10 -04001815 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001816 if (!i915_mch_dev) {
1817 ret = false;
1818 goto out_unlock;
1819 }
1820 dev_priv = i915_mch_dev;
1821
1822 if (dev_priv->max_delay > dev_priv->fmax)
1823 dev_priv->max_delay--;
1824
1825out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001826 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001827
Akshay Joshi0206e352011-08-16 15:34:10 -04001828 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001829}
1830EXPORT_SYMBOL_GPL(i915_gpu_raise);
1831
1832/**
1833 * i915_gpu_lower - lower GPU frequency limit
1834 *
1835 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1836 * frequency maximum.
1837 */
1838bool i915_gpu_lower(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 = true;
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 ret = false;
1846 goto out_unlock;
1847 }
1848 dev_priv = i915_mch_dev;
1849
1850 if (dev_priv->max_delay < dev_priv->min_delay)
1851 dev_priv->max_delay++;
1852
1853out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001854 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001855
Akshay Joshi0206e352011-08-16 15:34:10 -04001856 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001857}
1858EXPORT_SYMBOL_GPL(i915_gpu_lower);
1859
1860/**
1861 * i915_gpu_busy - indicate GPU business to IPS
1862 *
1863 * Tell the IPS driver whether or not the GPU is busy.
1864 */
1865bool i915_gpu_busy(void)
1866{
Akshay Joshi0206e352011-08-16 15:34:10 -04001867 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001868 bool ret = false;
1869
Akshay Joshi0206e352011-08-16 15:34:10 -04001870 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001871 if (!i915_mch_dev)
1872 goto out_unlock;
1873 dev_priv = i915_mch_dev;
1874
1875 ret = dev_priv->busy;
1876
1877out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001878 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001879
Akshay Joshi0206e352011-08-16 15:34:10 -04001880 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001881}
1882EXPORT_SYMBOL_GPL(i915_gpu_busy);
1883
1884/**
1885 * i915_gpu_turbo_disable - disable graphics turbo
1886 *
1887 * Disable graphics turbo by resetting the max frequency and setting the
1888 * current frequency to the default.
1889 */
1890bool i915_gpu_turbo_disable(void)
1891{
Akshay Joshi0206e352011-08-16 15:34:10 -04001892 struct drm_i915_private *dev_priv;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001893 bool ret = true;
1894
Akshay Joshi0206e352011-08-16 15:34:10 -04001895 spin_lock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001896 if (!i915_mch_dev) {
1897 ret = false;
1898 goto out_unlock;
1899 }
1900 dev_priv = i915_mch_dev;
1901
1902 dev_priv->max_delay = dev_priv->fstart;
1903
1904 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1905 ret = false;
1906
1907out_unlock:
Akshay Joshi0206e352011-08-16 15:34:10 -04001908 spin_unlock(&mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001909
Akshay Joshi0206e352011-08-16 15:34:10 -04001910 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001911}
1912EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1913
Jesse Barnes79e53942008-11-07 14:24:08 -08001914/**
Eric Anholt63ee41d2010-12-20 18:40:06 -08001915 * Tells the intel_ips driver that the i915 driver is now loaded, if
1916 * IPS got loaded first.
1917 *
1918 * This awkward dance is so that neither module has to depend on the
1919 * other in order for IPS to do the appropriate communication of
1920 * GPU turbo limits to i915.
1921 */
1922static void
1923ips_ping_for_i915_load(void)
1924{
1925 void (*link)(void);
1926
1927 link = symbol_get(ips_link_to_i915_driver);
1928 if (link) {
1929 link();
1930 symbol_put(ips_link_to_i915_driver);
1931 }
1932}
1933
1934/**
Jesse Barnes79e53942008-11-07 14:24:08 -08001935 * i915_driver_load - setup chip and create an initial config
1936 * @dev: DRM device
1937 * @flags: startup flags
1938 *
1939 * The driver load routine has to do several things:
1940 * - drive output discovery via intel_modeset_init()
1941 * - initialize the memory manager
1942 * - allocate initial config memory
1943 * - setup the DRM framebuffer with the allocated memory
1944 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001945int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001946{
Luca Tettamantiea059a12010-04-08 21:41:59 +02001947 struct drm_i915_private *dev_priv;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001948 int ret = 0, mmio_bar;
Chris Wilsonfe669bf2010-11-23 12:09:30 +00001949 uint32_t agp_size;
1950
Dave Airlie22eae942005-11-10 22:16:34 +11001951 /* i915 has 4 more counters */
1952 dev->counters += 4;
1953 dev->types[6] = _DRM_STAT_IRQ;
1954 dev->types[7] = _DRM_STAT_PRIMARY;
1955 dev->types[8] = _DRM_STAT_SECONDARY;
1956 dev->types[9] = _DRM_STAT_DMA;
1957
Eric Anholt9a298b22009-03-24 12:23:04 -07001958 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001959 if (dev_priv == NULL)
1960 return -ENOMEM;
1961
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001962 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001963 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05001964 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001965
Dave Airlieec2a4c32009-08-04 11:43:41 +10001966 if (i915_get_bridge_dev(dev)) {
1967 ret = -EIO;
1968 goto free_priv;
1969 }
1970
Dave Airlie466e69b2011-12-19 11:15:29 +00001971 pci_set_master(dev->pdev);
1972
Daniel Vetter9f82d232010-08-30 21:25:23 +02001973 /* overlay on gen2 is broken and can't address above 1G */
1974 if (IS_GEN2(dev))
1975 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1976
Jan Niehusmann6927faf2011-03-01 23:24:16 +01001977 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1978 * using 32bit addressing, overwriting memory if HWS is located
1979 * above 4GB.
1980 *
1981 * The documentation also mentions an issue with undefined
1982 * behaviour if any general state is accessed within a page above 4GB,
1983 * which also needs to be handled carefully.
1984 */
1985 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1986 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1987
Chris Wilsonb4ce0f82010-10-28 11:26:06 +01001988 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1989 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
1990 if (!dev_priv->regs) {
1991 DRM_ERROR("failed to map registers\n");
1992 ret = -EIO;
1993 goto put_bridge;
1994 }
1995
Chris Wilson71e93392010-10-27 18:46:52 +01001996 dev_priv->mm.gtt = intel_gtt_get();
1997 if (!dev_priv->mm.gtt) {
1998 DRM_ERROR("Failed to initialize GTT\n");
1999 ret = -ENODEV;
Keith Packarda7b85d22011-07-10 13:12:17 -07002000 goto out_rmmap;
Chris Wilson71e93392010-10-27 18:46:52 +01002001 }
2002
Chris Wilson71e93392010-10-27 18:46:52 +01002003 agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
2004
Akshay Joshi0206e352011-08-16 15:34:10 -04002005 dev_priv->mm.gtt_mapping =
Chris Wilson71e93392010-10-27 18:46:52 +01002006 io_mapping_create_wc(dev->agp->base, agp_size);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002007 if (dev_priv->mm.gtt_mapping == NULL) {
2008 ret = -EIO;
2009 goto out_rmmap;
2010 }
2011
Eric Anholtab657db12009-01-23 12:57:47 -08002012 /* Set up a WC MTRR for non-PAT systems. This is more common than
2013 * one would think, because the kernel disables PAT on first
2014 * generation Core chips because WC PAT gets overridden by a UC
2015 * MTRR if present. Even if a UC MTRR isn't present.
2016 */
2017 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
Chris Wilson71e93392010-10-27 18:46:52 +01002018 agp_size,
Eric Anholtab657db12009-01-23 12:57:47 -08002019 MTRR_TYPE_WRCOMB, 1);
2020 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07002021 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08002022 "performance may suffer.\n");
2023 }
2024
Chris Wilsone642abb2010-09-09 12:46:34 +01002025 /* The i915 workqueue is primarily used for batched retirement of
2026 * requests (and thus managing bo) once the task has been completed
2027 * by the GPU. i915_gem_retire_requests() is called directly when we
2028 * need high-priority retirement, such as waiting for an explicit
2029 * bo.
2030 *
2031 * It is also used for periodic low-priority events, such as
Eric Anholtdf9c2042010-11-18 09:31:12 +08002032 * idle-timers and recording error state.
Chris Wilsone642abb2010-09-09 12:46:34 +01002033 *
2034 * All tasks on the workqueue are expected to acquire the dev mutex
2035 * so there is no point in running more than one instance of the
2036 * workqueue at any time: max_active = 1 and NON_REENTRANT.
2037 */
2038 dev_priv->wq = alloc_workqueue("i915",
2039 WQ_UNBOUND | WQ_NON_REENTRANT,
2040 1);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002041 if (dev_priv->wq == NULL) {
2042 DRM_ERROR("Failed to create our workqueue.\n");
2043 ret = -ENOMEM;
Keith Packarda7b85d22011-07-10 13:12:17 -07002044 goto out_mtrrfree;
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002045 }
2046
Dave Airlieac5c4e72008-12-19 15:38:34 +10002047 /* enable GEM by default */
2048 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10002049
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002050 intel_irq_init(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002051
Zhenyu Wangc48044112009-12-17 14:48:43 +08002052 /* Try to make sure MCHBAR is enabled before poking at it */
2053 intel_setup_mchbar(dev);
Chris Wilsonf899fc62010-07-20 15:44:45 -07002054 intel_setup_gmbus(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01002055 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002056
Bryan Freed6d139a82010-10-14 09:14:51 +01002057 /* Make sure the bios did its job and set up vital registers */
2058 intel_setup_bios(dev);
2059
Eric Anholt673a3942008-07-30 12:06:12 -07002060 i915_gem_load(dev);
2061
Keith Packard398c9cb2008-07-30 13:03:43 -07002062 /* Init HWS */
2063 if (!I915_NEED_GFX_HWS(dev)) {
2064 ret = i915_init_phys_hws(dev);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002065 if (ret)
2066 goto out_gem_unload;
Keith Packard398c9cb2008-07-30 13:03:43 -07002067 }
Eric Anholted4cb412008-07-29 12:10:39 -07002068
Jesse Barnes7648fa92010-05-20 14:28:11 -07002069 if (IS_PINEVIEW(dev))
2070 i915_pineview_get_mem_freq(dev);
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01002071 else if (IS_GEN5(dev))
Jesse Barnes7648fa92010-05-20 14:28:11 -07002072 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002073
Eric Anholted4cb412008-07-29 12:10:39 -07002074 /* On the 945G/GM, the chipset reports the MSI capability on the
2075 * integrated graphics even though the support isn't actually there
2076 * according to the published specs. It doesn't appear to function
2077 * correctly in testing on 945G.
2078 * This may be a side effect of MSI having been made available for PEG
2079 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002080 *
2081 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002082 * be lost or delayed, but we use them anyways to avoid
2083 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002084 */
Keith Packardb60678a2008-12-08 11:12:28 -08002085 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002086 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002087
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01002088 spin_lock_init(&dev_priv->gt_lock);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002089 spin_lock_init(&dev_priv->irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002090 spin_lock_init(&dev_priv->error_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07002091 spin_lock_init(&dev_priv->rps_lock);
Eric Anholted4cb412008-07-29 12:10:39 -07002092
Jesse Barnes27f82272011-09-02 12:54:37 -07002093 if (IS_IVYBRIDGE(dev))
2094 dev_priv->num_pipe = 3;
2095 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002096 dev_priv->num_pipe = 2;
2097 else
2098 dev_priv->num_pipe = 1;
2099
2100 ret = drm_vblank_init(dev, dev_priv->num_pipe);
Chris Wilson56e2ea32010-11-08 17:10:29 +00002101 if (ret)
2102 goto out_gem_unload;
Keith Packard52440212008-11-18 09:30:25 -08002103
Ben Gamari11ed50e2009-09-14 17:48:45 -04002104 /* Start out suspended */
2105 dev_priv->mm.suspended = 1;
2106
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002107 intel_detect_pch(dev);
2108
Jesse Barnes79e53942008-11-07 14:24:08 -08002109 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter53984632010-09-22 23:44:24 +02002110 ret = i915_load_modeset_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002111 if (ret < 0) {
2112 DRM_ERROR("failed to init modeset\n");
Chris Wilson56e2ea32010-11-08 17:10:29 +00002113 goto out_gem_unload;
Jesse Barnes79e53942008-11-07 14:24:08 -08002114 }
2115 }
2116
Matthew Garrett74a365b2009-03-19 21:35:39 +00002117 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002118 intel_opregion_init(dev);
2119 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002120
Ben Gamarif65d9422009-09-14 17:48:44 -04002121 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2122 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002123
2124 spin_lock(&mchdev_lock);
2125 i915_mch_dev = dev_priv;
2126 dev_priv->mchdev_lock = &mchdev_lock;
2127 spin_unlock(&mchdev_lock);
2128
Eric Anholt63ee41d2010-12-20 18:40:06 -08002129 ips_ping_for_i915_load();
2130
Jesse Barnes79e53942008-11-07 14:24:08 -08002131 return 0;
2132
Chris Wilson56e2ea32010-11-08 17:10:29 +00002133out_gem_unload:
Keith Packarda7b85d22011-07-10 13:12:17 -07002134 if (dev_priv->mm.inactive_shrinker.shrink)
2135 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2136
Chris Wilson56e2ea32010-11-08 17:10:29 +00002137 if (dev->pdev->msi_enabled)
2138 pci_disable_msi(dev->pdev);
2139
2140 intel_teardown_gmbus(dev);
2141 intel_teardown_mchbar(dev);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002142 destroy_workqueue(dev_priv->wq);
Keith Packarda7b85d22011-07-10 13:12:17 -07002143out_mtrrfree:
2144 if (dev_priv->mm.gtt_mtrr >= 0) {
2145 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2146 dev->agp->agp_info.aper_size * 1024 * 1024);
2147 dev_priv->mm.gtt_mtrr = -1;
2148 }
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002149 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002150out_rmmap:
Chris Wilson6dda5692010-10-29 21:02:18 +01002151 pci_iounmap(dev->pdev, dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002152put_bridge:
2153 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002154free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002155 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002156 return ret;
2157}
2158
2159int i915_driver_unload(struct drm_device *dev)
2160{
2161 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002162 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002163
Jesse Barnes7648fa92010-05-20 14:28:11 -07002164 spin_lock(&mchdev_lock);
2165 i915_mch_dev = NULL;
2166 spin_unlock(&mchdev_lock);
2167
Chris Wilson17250b72010-10-28 12:51:39 +01002168 if (dev_priv->mm.inactive_shrinker.shrink)
2169 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2170
Daniel Vetterc911fc12010-08-20 21:23:20 +02002171 mutex_lock(&dev->struct_mutex);
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002172 ret = i915_gpu_idle(dev, true);
Daniel Vetterc911fc12010-08-20 21:23:20 +02002173 if (ret)
2174 DRM_ERROR("failed to idle hardware: %d\n", ret);
2175 mutex_unlock(&dev->struct_mutex);
2176
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002177 /* Cancel the retire work handler, which should be idle now. */
2178 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2179
Eric Anholtab657db12009-01-23 12:57:47 -08002180 io_mapping_free(dev_priv->mm.gtt_mapping);
2181 if (dev_priv->mm.gtt_mtrr >= 0) {
2182 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2183 dev->agp->agp_info.aper_size * 1024 * 1024);
2184 dev_priv->mm.gtt_mtrr = -1;
2185 }
2186
Chris Wilson44834a62010-08-19 16:09:23 +01002187 acpi_video_unregister();
2188
Jesse Barnes79e53942008-11-07 14:24:08 -08002189 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson7b4f3992010-10-04 15:33:04 +01002190 intel_fbdev_fini(dev);
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002191 intel_modeset_cleanup(dev);
2192
Zhao Yakui6363ee62009-11-24 09:48:44 +08002193 /*
2194 * free the memory space allocated for the child device
2195 * config parsed from VBT
2196 */
2197 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2198 kfree(dev_priv->child_dev);
2199 dev_priv->child_dev = NULL;
2200 dev_priv->child_dev_num = 0;
2201 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002202
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002203 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002204 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002205 }
2206
Daniel Vettera8b48992010-08-20 21:25:11 +02002207 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002208 del_timer_sync(&dev_priv->hangcheck_timer);
2209 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002210 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002211
Eric Anholted4cb412008-07-29 12:10:39 -07002212 if (dev->pdev->msi_enabled)
2213 pci_disable_msi(dev->pdev);
2214
Chris Wilson44834a62010-08-19 16:09:23 +01002215 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002216
Jesse Barnes79e53942008-11-07 14:24:08 -08002217 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002218 /* Flush any outstanding unpin_work. */
2219 flush_workqueue(dev_priv->wq);
2220
Jesse Barnes79e53942008-11-07 14:24:08 -08002221 mutex_lock(&dev->struct_mutex);
Hugh Dickinsecbec532011-06-27 16:18:20 -07002222 i915_gem_free_all_phys_object(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002223 i915_gem_cleanup_ringbuffer(dev);
2224 mutex_unlock(&dev->struct_mutex);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002225 i915_gem_cleanup_aliasing_ppgtt(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002226 if (I915_HAS_FBC(dev) && i915_powersave)
2227 i915_cleanup_compression(dev);
Chris Wilsonfe669bf2010-11-23 12:09:30 +00002228 drm_mm_takedown(&dev_priv->mm.stolen);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002229
2230 intel_cleanup_overlay(dev);
Keith Packardc2873e92010-10-07 09:20:12 +01002231
2232 if (!I915_NEED_GFX_HWS(dev))
2233 i915_free_hws(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002234 }
2235
Daniel Vetter701394c2010-10-10 18:54:08 +01002236 if (dev_priv->regs != NULL)
Chris Wilson6dda5692010-10-29 21:02:18 +01002237 pci_iounmap(dev->pdev, dev_priv->regs);
Daniel Vetter701394c2010-10-10 18:54:08 +01002238
Chris Wilsonf899fc62010-07-20 15:44:45 -07002239 intel_teardown_gmbus(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002240 intel_teardown_mchbar(dev);
2241
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002242 destroy_workqueue(dev_priv->wq);
2243
Dave Airlieec2a4c32009-08-04 11:43:41 +10002244 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002245 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002246
Dave Airlie22eae942005-11-10 22:16:34 +11002247 return 0;
2248}
2249
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002250int i915_driver_open(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002251{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002252 struct drm_i915_file_private *file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002253
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002254 DRM_DEBUG_DRIVER("\n");
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002255 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2256 if (!file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002257 return -ENOMEM;
2258
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002259 file->driver_priv = file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002260
Chris Wilson1c255952010-09-26 11:03:27 +01002261 spin_lock_init(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002262 INIT_LIST_HEAD(&file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002263
2264 return 0;
2265}
2266
Jesse Barnes79e53942008-11-07 14:24:08 -08002267/**
2268 * i915_driver_lastclose - clean up after all DRM clients have exited
2269 * @dev: DRM device
2270 *
2271 * Take care of cleaning up after all DRM clients have exited. In the
2272 * mode setting case, we want to restore the kernel's initial mode (just
2273 * in case the last client left us in a bad state).
2274 *
2275 * Additionally, in the non-mode setting case, we'll tear down the AGP
2276 * and DMA structures, since the kernel won't be using them, and clea
2277 * up any GEM state.
2278 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002279void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002281 drm_i915_private_t *dev_priv = dev->dev_private;
2282
Jesse Barnes79e53942008-11-07 14:24:08 -08002283 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +01002284 intel_fb_restore_mode(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002285 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002286 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002287 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002288
Eric Anholt673a3942008-07-30 12:06:12 -07002289 i915_gem_lastclose(dev);
2290
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002291 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292}
2293
Eric Anholt6c340ea2007-08-25 20:23:09 +10002294void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
Eric Anholtb9624422009-06-03 07:27:35 +00002296 i915_gem_release(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002299void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002300{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002301 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002302
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002303 kfree(file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002304}
2305
Eric Anholtc153f452007-09-03 12:06:45 +10002306struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002307 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2308 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2309 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2310 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2311 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2312 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2313 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2314 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002315 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2316 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2317 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002318 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
Daniel Vetterb2c606f2012-01-17 12:50:12 +01002319 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Dave Airlie1b2f1482010-08-14 20:20:34 +10002320 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2321 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2322 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2323 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2324 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2325 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2326 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2327 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2328 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2329 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2330 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2331 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2332 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2333 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2334 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2335 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2336 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2337 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2338 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2339 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2340 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2341 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2342 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2343 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2344 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2345 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2346 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Jesse Barnes8ea30862012-01-03 08:05:39 -08002347 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2348 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 +10002349};
2350
2351int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002352
2353/**
2354 * Determine if the device really is AGP or not.
2355 *
2356 * All Intel graphics chipsets are treated as AGP, even if they are really
2357 * PCI-e.
2358 *
2359 * \param dev The device to be tested.
2360 *
2361 * \returns
2362 * A value of 1 is always retured to indictate every i9x5 is AGP.
2363 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002364int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002365{
2366 return 1;
2367}