blob: a693b27f3df4c0c08a218feae01bde7c27b154a6 [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"
Jordan Crousedcdb1672010-05-27 13:40:25 -060037#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100038#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080039#include <linux/acpi.h>
40#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100041#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Chris Wilson44834a62010-08-19 16:09:23 +010043#include <acpi/video.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Keith Packard398c9cb2008-07-30 13:03:43 -070045/**
46 * Sets up the hardware status page for devices that need a physical address
47 * in the register.
48 */
Eric Anholt3043c602008-10-02 12:24:47 -070049static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070050{
51 drm_i915_private_t *dev_priv = dev->dev_private;
52 /* Program Hardware Status Page */
53 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080054 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070055
56 if (!dev_priv->status_page_dmah) {
57 DRM_ERROR("Can not allocate hardware status page\n");
58 return -ENOMEM;
59 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +080060 dev_priv->render_ring.status_page.page_addr
61 = dev_priv->status_page_dmah->vaddr;
Keith Packard398c9cb2008-07-30 13:03:43 -070062 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
63
Zou Nan hai8187a2b2010-05-21 09:08:55 +080064 memset(dev_priv->render_ring.status_page.page_addr, 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070065
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080066 if (IS_I965G(dev))
67 dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) &
68 0xf0;
69
Keith Packard398c9cb2008-07-30 13:03:43 -070070 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080071 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070072 return 0;
73}
74
75/**
76 * Frees the hardware status page, whether it's a physical address or a virtual
77 * address set up by the X Server.
78 */
Eric Anholt3043c602008-10-02 12:24:47 -070079static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070080{
81 drm_i915_private_t *dev_priv = dev->dev_private;
82 if (dev_priv->status_page_dmah) {
83 drm_pci_free(dev, dev_priv->status_page_dmah);
84 dev_priv->status_page_dmah = NULL;
85 }
86
Zou Nan hai852835f2010-05-21 09:08:56 +080087 if (dev_priv->render_ring.status_page.gfx_addr) {
88 dev_priv->render_ring.status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -070089 drm_core_ioremapfree(&dev_priv->hws_map, dev);
90 }
91
92 /* Need to rewrite hardware status page */
93 I915_WRITE(HWS_PGA, 0x1ffff000);
94}
95
Dave Airlie84b1fd12007-07-11 15:53:27 +100096void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +100099 struct drm_i915_master_private *master_priv;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800100 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Jesse Barnes79e53942008-11-07 14:24:08 -0800102 /*
103 * We should never lose context on the ring with modesetting
104 * as we don't expose it to userspace
105 */
106 if (drm_core_check_feature(dev, DRIVER_MODESET))
107 return;
108
Jesse Barnes585fb112008-07-29 11:54:06 -0700109 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
110 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 ring->space = ring->head - (ring->tail + 8);
112 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800113 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Dave Airlie7c1c2872008-11-28 14:22:24 +1000115 if (!dev->primary->master)
116 return;
117
118 master_priv = dev->primary->master->driver_priv;
119 if (ring->head == ring->tail && master_priv->sarea_priv)
120 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Dave Airlie84b1fd12007-07-11 15:53:27 +1000123static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000125 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Make sure interrupts are disabled here because the uninstall ioctl
127 * may not have been called from userspace and after dev_private
128 * is freed, it's too late.
129 */
Eric Anholted4cb412008-07-29 12:10:39 -0700130 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000131 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200133 mutex_lock(&dev->struct_mutex);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800134 intel_cleanup_ring_buffer(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800135 if (HAS_BSD(dev))
136 intel_cleanup_ring_buffer(dev, &dev_priv->bsd_ring);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200137 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Keith Packard398c9cb2008-07-30 13:03:43 -0700139 /* Clear the HWS virtual address at teardown */
140 if (I915_NEED_GFX_HWS(dev))
141 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return 0;
144}
145
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000146static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000148 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000149 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Dave Airlie3a03ac12009-01-11 09:03:49 +1000151 master_priv->sarea = drm_getsarea(dev);
152 if (master_priv->sarea) {
153 master_priv->sarea_priv = (drm_i915_sarea_t *)
154 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
155 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800156 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000157 }
158
Eric Anholt673a3942008-07-30 12:06:12 -0700159 if (init->ring_size != 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800160 if (dev_priv->render_ring.gem_object != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700161 i915_dma_cleanup(dev);
162 DRM_ERROR("Client tried to initialize ringbuffer in "
163 "GEM mode\n");
164 return -EINVAL;
165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800167 dev_priv->render_ring.size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Eric Anholtd3301d82010-05-21 13:55:54 -0700169 dev_priv->render_ring.map.offset = init->ring_start;
170 dev_priv->render_ring.map.size = init->ring_size;
171 dev_priv->render_ring.map.type = 0;
172 dev_priv->render_ring.map.flags = 0;
173 dev_priv->render_ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Anholtd3301d82010-05-21 13:55:54 -0700175 drm_core_ioremap_wc(&dev_priv->render_ring.map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700176
Eric Anholtd3301d82010-05-21 13:55:54 -0700177 if (dev_priv->render_ring.map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700178 i915_dma_cleanup(dev);
179 DRM_ERROR("can not ioremap virtual address for"
180 " ring buffer\n");
181 return -ENOMEM;
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Eric Anholtd3301d82010-05-21 13:55:54 -0700185 dev_priv->render_ring.virtual_start = dev_priv->render_ring.map.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000187 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 dev_priv->back_offset = init->back_offset;
189 dev_priv->front_offset = init->front_offset;
190 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000191 if (master_priv->sarea_priv)
192 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /* Allow hardware batchbuffers unless told otherwise.
195 */
196 dev_priv->allow_batchbuffer = 1;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return 0;
199}
200
Dave Airlie84b1fd12007-07-11 15:53:27 +1000201static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
204
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800205 struct intel_ring_buffer *ring;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800206 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800208 ring = &dev_priv->render_ring;
209
210 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)
224 ring->setup_status_page(dev, ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000225 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700226 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
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 */
266static int do_validate_cmd(int cmd)
267{
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
324static int validate_cmd(int cmd)
325{
326 int ret = do_validate_cmd(cmd);
327
Dave Airliebc5f4522007-11-05 12:50:58 +1000328/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 return ret;
331}
332
Eric Anholt201361a2009-03-11 12:30:04 -0700333static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 drm_i915_private_t *dev_priv = dev->dev_private;
336 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800338 if ((dwords+1) * sizeof(int) >= dev_priv->render_ring.size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000339 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100340
Alan Hourihanec29b6692006-08-12 16:29:24 +1000341 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 for (i = 0; i < dwords;) {
344 int cmd, sz;
345
Eric Anholt201361a2009-03-11 12:30:04 -0700346 cmd = buffer[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 OUT_RING(cmd);
352
353 while (++i, --sz) {
Eric Anholt201361a2009-03-11 12:30:04 -0700354 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357
Dave Airliede227f52006-01-25 15:31:43 +1100358 if (dwords & 1)
359 OUT_RING(0);
360
361 ADVANCE_LP_RING();
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 0;
364}
365
Eric Anholt673a3942008-07-30 12:06:12 -0700366int
367i915_emit_box(struct drm_device *dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700368 struct drm_clip_rect *boxes,
Eric Anholt673a3942008-07-30 12:06:12 -0700369 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Eric Anholt201361a2009-03-11 12:30:04 -0700371 struct drm_clip_rect box = boxes[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
374 DRM_ERROR("Bad box %d,%d..%d,%d\n",
375 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000376 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Alan Hourihanec29b6692006-08-12 16:29:24 +1000379 if (IS_I965G(dev)) {
380 BEGIN_LP_RING(4);
381 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
382 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000383 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000384 OUT_RING(DR4);
385 ADVANCE_LP_RING();
386 } else {
387 BEGIN_LP_RING(6);
388 OUT_RING(GFX_OP_DRAWRECT_INFO);
389 OUT_RING(DR1);
390 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
391 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
392 OUT_RING(DR4);
393 OUT_RING(0);
394 ADVANCE_LP_RING();
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 return 0;
398}
399
Alan Hourihanec29b6692006-08-12 16:29:24 +1000400/* XXX: Emitting the counter should really be moved to part of the IRQ
401 * emit. For now, do it in both places:
402 */
403
Dave Airlie84b1fd12007-07-11 15:53:27 +1000404static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100405{
406 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000407 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100408
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400409 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000410 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400411 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000412 if (master_priv->sarea_priv)
413 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100414
415 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700416 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000417 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100418 OUT_RING(dev_priv->counter);
419 OUT_RING(0);
420 ADVANCE_LP_RING();
421}
422
Dave Airlie84b1fd12007-07-11 15:53:27 +1000423static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700424 drm_i915_cmdbuffer_t *cmd,
425 struct drm_clip_rect *cliprects,
426 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 int nbox = cmd->num_cliprects;
429 int i = 0, count, ret;
430
431 if (cmd->sz & 0x3) {
432 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000433 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
436 i915_kernel_lost_context(dev);
437
438 count = nbox ? nbox : 1;
439
440 for (i = 0; i < count; i++) {
441 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700442 ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 cmd->DR1, cmd->DR4);
444 if (ret)
445 return ret;
446 }
447
Eric Anholt201361a2009-03-11 12:30:04 -0700448 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (ret)
450 return ret;
451 }
452
Dave Airliede227f52006-01-25 15:31:43 +1100453 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
455}
456
Dave Airlie84b1fd12007-07-11 15:53:27 +1000457static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700458 drm_i915_batchbuffer_t * batch,
459 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int nbox = batch->num_cliprects;
462 int i = 0, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 if ((batch->start | batch->used) & 0x7) {
465 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000466 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 i915_kernel_lost_context(dev);
470
471 count = nbox ? nbox : 1;
472
473 for (i = 0; i < count; i++) {
474 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700475 int ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 batch->DR1, batch->DR4);
477 if (ret)
478 return ret;
479 }
480
Keith Packard0790d5e2008-07-30 12:28:47 -0700481 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000483 if (IS_I965G(dev)) {
484 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
485 OUT_RING(batch->start);
486 } else {
487 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
488 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 ADVANCE_LP_RING();
491 } else {
492 BEGIN_LP_RING(4);
493 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);
497 ADVANCE_LP_RING();
498 }
499 }
500
Zou Nan hai1cafd342010-06-25 13:40:24 +0800501
502 if (IS_G4X(dev) || IS_IRONLAKE(dev)) {
503 BEGIN_LP_RING(2);
504 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
505 OUT_RING(MI_NOOP);
506 ADVANCE_LP_RING();
507 }
Dave Airliede227f52006-01-25 15:31:43 +1100508 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 return 0;
511}
512
Dave Airlieaf6061a2008-05-07 12:15:39 +1000513static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000516 struct drm_i915_master_private *master_priv =
517 dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Dave Airlie7c1c2872008-11-28 14:22:24 +1000519 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400520 return -EINVAL;
521
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800522 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800523 __func__,
524 dev_priv->current_page,
525 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Dave Airlieaf6061a2008-05-07 12:15:39 +1000527 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Dave Airlieaf6061a2008-05-07 12:15:39 +1000529 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700530 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000531 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 ADVANCE_LP_RING();
533
Dave Airlieaf6061a2008-05-07 12:15:39 +1000534 BEGIN_LP_RING(6);
535 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
536 OUT_RING(0);
537 if (dev_priv->current_page == 0) {
538 OUT_RING(dev_priv->back_offset);
539 dev_priv->current_page = 1;
540 } else {
541 OUT_RING(dev_priv->front_offset);
542 dev_priv->current_page = 0;
543 }
544 OUT_RING(0);
545 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000546
Dave Airlieaf6061a2008-05-07 12:15:39 +1000547 BEGIN_LP_RING(2);
548 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
549 OUT_RING(0);
550 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000551
Dave Airlie7c1c2872008-11-28 14:22:24 +1000552 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000553
Dave Airlieaf6061a2008-05-07 12:15:39 +1000554 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700555 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000556 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000557 OUT_RING(dev_priv->counter);
558 OUT_RING(0);
559 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000560
Dave Airlie7c1c2872008-11-28 14:22:24 +1000561 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Dave Airlie84b1fd12007-07-11 15:53:27 +1000565static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 drm_i915_private_t *dev_priv = dev->dev_private;
568
569 i915_kernel_lost_context(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800570 return intel_wait_ring_buffer(dev, &dev_priv->render_ring,
571 dev_priv->render_ring.size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Eric Anholtc153f452007-09-03 12:06:45 +1000574static int i915_flush_ioctl(struct drm_device *dev, void *data,
575 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Eric Anholt546b0972008-09-01 16:45:29 -0700577 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Eric Anholt546b0972008-09-01 16:45:29 -0700579 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
580
581 mutex_lock(&dev->struct_mutex);
582 ret = i915_quiescent(dev);
583 mutex_unlock(&dev->struct_mutex);
584
585 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Eric Anholtc153f452007-09-03 12:06:45 +1000588static int i915_batchbuffer(struct drm_device *dev, void *data,
589 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000592 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000594 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000595 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700597 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (!dev_priv->allow_batchbuffer) {
600 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000601 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800604 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800605 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Eric Anholt546b0972008-09-01 16:45:29 -0700607 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Eric Anholt201361a2009-03-11 12:30:04 -0700609 if (batch->num_cliprects < 0)
610 return -EINVAL;
611
612 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700613 cliprects = kcalloc(batch->num_cliprects,
614 sizeof(struct drm_clip_rect),
615 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700616 if (cliprects == NULL)
617 return -ENOMEM;
618
619 ret = copy_from_user(cliprects, batch->cliprects,
620 batch->num_cliprects *
621 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200622 if (ret != 0) {
623 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700624 goto fail_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200625 }
Eric Anholt201361a2009-03-11 12:30:04 -0700626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Eric Anholt546b0972008-09-01 16:45:29 -0700628 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700629 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700630 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400632 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000633 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700634
635fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700636 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return ret;
639}
640
Eric Anholtc153f452007-09-03 12:06:45 +1000641static int i915_cmdbuffer(struct drm_device *dev, void *data,
642 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000645 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000647 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000648 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700649 struct drm_clip_rect *cliprects = NULL;
650 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int ret;
652
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800653 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800654 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Eric Anholt546b0972008-09-01 16:45:29 -0700656 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Eric Anholt201361a2009-03-11 12:30:04 -0700658 if (cmdbuf->num_cliprects < 0)
659 return -EINVAL;
660
Eric Anholt9a298b22009-03-24 12:23:04 -0700661 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700662 if (batch_data == NULL)
663 return -ENOMEM;
664
665 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
Dan Carpenter9927a402010-06-19 15:12:51 +0200666 if (ret != 0) {
667 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700668 goto fail_batch_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200669 }
Eric Anholt201361a2009-03-11 12:30:04 -0700670
671 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700672 cliprects = kcalloc(cmdbuf->num_cliprects,
673 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000674 if (cliprects == NULL) {
675 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700676 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000677 }
Eric Anholt201361a2009-03-11 12:30:04 -0700678
679 ret = copy_from_user(cliprects, cmdbuf->cliprects,
680 cmdbuf->num_cliprects *
681 sizeof(struct drm_clip_rect));
Dan Carpenter9927a402010-06-19 15:12:51 +0200682 if (ret != 0) {
683 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -0700684 goto fail_clip_free;
Dan Carpenter9927a402010-06-19 15:12:51 +0200685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
Eric Anholt546b0972008-09-01 16:45:29 -0700688 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700689 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700690 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (ret) {
692 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000693 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400696 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000697 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700698
Eric Anholt201361a2009-03-11 12:30:04 -0700699fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700700 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000701fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700702 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700703
704 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Eric Anholtc153f452007-09-03 12:06:45 +1000707static int i915_flip_bufs(struct drm_device *dev, void *data,
708 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Eric Anholt546b0972008-09-01 16:45:29 -0700710 int ret;
711
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800712 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Eric Anholt546b0972008-09-01 16:45:29 -0700714 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Eric Anholt546b0972008-09-01 16:45:29 -0700716 mutex_lock(&dev->struct_mutex);
717 ret = i915_dispatch_flip(dev);
718 mutex_unlock(&dev->struct_mutex);
719
720 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Eric Anholtc153f452007-09-03 12:06:45 +1000723static int i915_getparam(struct drm_device *dev, void *data,
724 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000727 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 int value;
729
730 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000731 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000732 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Eric Anholtc153f452007-09-03 12:06:45 +1000735 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700737 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 break;
739 case I915_PARAM_ALLOW_BATCHBUFFER:
740 value = dev_priv->allow_batchbuffer ? 1 : 0;
741 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100742 case I915_PARAM_LAST_DISPATCH:
743 value = READ_BREADCRUMB(dev_priv);
744 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400745 case I915_PARAM_CHIPSET_ID:
746 value = dev->pci_device;
747 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700748 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000749 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700750 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800751 case I915_PARAM_NUM_FENCES_AVAIL:
752 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
753 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200754 case I915_PARAM_HAS_OVERLAY:
755 value = dev_priv->overlay ? 1 : 0;
756 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800757 case I915_PARAM_HAS_PAGEFLIPPING:
758 value = 1;
759 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500760 case I915_PARAM_HAS_EXECBUF2:
761 /* depends on GEM */
762 value = dev_priv->has_gem;
763 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800764 case I915_PARAM_HAS_BSD:
765 value = HAS_BSD(dev);
766 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800768 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500769 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000770 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
Eric Anholtc153f452007-09-03 12:06:45 +1000773 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000775 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
778 return 0;
779}
780
Eric Anholtc153f452007-09-03 12:06:45 +1000781static int i915_setparam(struct drm_device *dev, void *data,
782 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000785 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000788 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000789 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Eric Anholtc153f452007-09-03 12:06:45 +1000792 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000796 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
798 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000799 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800801 case I915_SETPARAM_NUM_USED_FENCES:
802 if (param->value > dev_priv->num_fence_regs ||
803 param->value < 0)
804 return -EINVAL;
805 /* Userspace can use first N regs */
806 dev_priv->fence_reg_start = param->value;
807 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800809 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800810 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000811 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
814 return 0;
815}
816
Eric Anholtc153f452007-09-03 12:06:45 +1000817static int i915_set_status_page(struct drm_device *dev, void *data,
818 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000819{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000820 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000821 drm_i915_hws_addr_t *hws = data;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800822 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000823
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000824 if (!I915_NEED_GFX_HWS(dev))
825 return -EINVAL;
826
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000827 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000828 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000829 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000830 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000831
Jesse Barnes79e53942008-11-07 14:24:08 -0800832 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
833 WARN(1, "tried to set status page when mode setting active\n");
834 return 0;
835 }
836
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800837 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000838
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800839 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000840
Eric Anholt8b409582007-11-22 16:40:37 +1000841 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000842 dev_priv->hws_map.size = 4*1024;
843 dev_priv->hws_map.type = 0;
844 dev_priv->hws_map.flags = 0;
845 dev_priv->hws_map.mtrr = 0;
846
Dave Airliedd0910b2009-02-25 14:49:21 +1000847 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000848 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000849 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700850 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000851 DRM_ERROR("can not ioremap virtual address for"
852 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000853 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000854 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800855 ring->status_page.page_addr = dev_priv->hws_map.handle;
856 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
857 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000858
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800859 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700860 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800861 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700862 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000863 return 0;
864}
865
Dave Airlieec2a4c32009-08-04 11:43:41 +1000866static int i915_get_bridge_dev(struct drm_device *dev)
867{
868 struct drm_i915_private *dev_priv = dev->dev_private;
869
870 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
871 if (!dev_priv->bridge_dev) {
872 DRM_ERROR("bridge device not found\n");
873 return -1;
874 }
875 return 0;
876}
877
Zhenyu Wangc48044112009-12-17 14:48:43 +0800878#define MCHBAR_I915 0x44
879#define MCHBAR_I965 0x48
880#define MCHBAR_SIZE (4*4096)
881
882#define DEVEN_REG 0x54
883#define DEVEN_MCHBAR_EN (1 << 28)
884
885/* Allocate space for the MCH regs if needed, return nonzero on error */
886static int
887intel_alloc_mchbar_resource(struct drm_device *dev)
888{
889 drm_i915_private_t *dev_priv = dev->dev_private;
890 int reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
891 u32 temp_lo, temp_hi = 0;
892 u64 mchbar_addr;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100893 int ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800894
895 if (IS_I965G(dev))
896 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
897 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
898 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
899
900 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
901#ifdef CONFIG_PNP
902 if (mchbar_addr &&
Chris Wilsona25c25c2010-08-20 14:36:45 +0100903 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
904 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800905#endif
906
907 /* Get some space for it */
Chris Wilsona25c25c2010-08-20 14:36:45 +0100908 dev_priv->mch_res.name = "i915 MCHBAR";
909 dev_priv->mch_res.flags = IORESOURCE_MEM;
910 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
911 &dev_priv->mch_res,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800912 MCHBAR_SIZE, MCHBAR_SIZE,
913 PCIBIOS_MIN_MEM,
Chris Wilsona25c25c2010-08-20 14:36:45 +0100914 0, pcibios_align_resource,
Zhenyu Wangc48044112009-12-17 14:48:43 +0800915 dev_priv->bridge_dev);
916 if (ret) {
917 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
918 dev_priv->mch_res.start = 0;
Chris Wilsona25c25c2010-08-20 14:36:45 +0100919 return ret;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800920 }
921
922 if (IS_I965G(dev))
923 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
924 upper_32_bits(dev_priv->mch_res.start));
925
926 pci_write_config_dword(dev_priv->bridge_dev, reg,
927 lower_32_bits(dev_priv->mch_res.start));
Chris Wilsona25c25c2010-08-20 14:36:45 +0100928 return 0;
Zhenyu Wangc48044112009-12-17 14:48:43 +0800929}
930
931/* Setup MCHBAR if possible, return true if we should disable it again */
932static void
933intel_setup_mchbar(struct drm_device *dev)
934{
935 drm_i915_private_t *dev_priv = dev->dev_private;
936 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
937 u32 temp;
938 bool enabled;
939
940 dev_priv->mchbar_need_disable = false;
941
942 if (IS_I915G(dev) || IS_I915GM(dev)) {
943 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
944 enabled = !!(temp & DEVEN_MCHBAR_EN);
945 } else {
946 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
947 enabled = temp & 1;
948 }
949
950 /* If it's already enabled, don't have to do anything */
951 if (enabled)
952 return;
953
954 if (intel_alloc_mchbar_resource(dev))
955 return;
956
957 dev_priv->mchbar_need_disable = true;
958
959 /* Space is allocated or reserved, so enable it. */
960 if (IS_I915G(dev) || IS_I915GM(dev)) {
961 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
962 temp | DEVEN_MCHBAR_EN);
963 } else {
964 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
965 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
966 }
967}
968
969static void
970intel_teardown_mchbar(struct drm_device *dev)
971{
972 drm_i915_private_t *dev_priv = dev->dev_private;
973 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
974 u32 temp;
975
976 if (dev_priv->mchbar_need_disable) {
977 if (IS_I915G(dev) || IS_I915GM(dev)) {
978 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
979 temp &= ~DEVEN_MCHBAR_EN;
980 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
981 } else {
982 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
983 temp &= ~1;
984 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
985 }
986 }
987
988 if (dev_priv->mch_res.start)
989 release_resource(&dev_priv->mch_res);
990}
991
Jesse Barnes79e53942008-11-07 14:24:08 -0800992/**
993 * i915_probe_agp - get AGP bootup configuration
994 * @pdev: PCI device
995 * @aperture_size: returns AGP aperture configured size
996 * @preallocated_size: returns size of BIOS preallocated AGP space
997 *
998 * Since Intel integrated graphics are UMA, the BIOS has to set aside
999 * some RAM for the framebuffer at early boot. This code figures out
1000 * how much was set aside so we can use it for our own purposes.
1001 */
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001002static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size,
Daniel Vetterac622a92010-09-08 21:26:07 +02001003 uint32_t *preallocated_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001004{
Dave Airlieec2a4c32009-08-04 11:43:41 +10001005 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001006 u16 tmp = 0;
1007 unsigned long overhead;
Eric Anholt241fa852009-01-02 18:05:51 -08001008 unsigned long stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001009
Jesse Barnes79e53942008-11-07 14:24:08 -08001010 /* Get the fb aperture size and "stolen" memory amount. */
Dave Airlieec2a4c32009-08-04 11:43:41 +10001011 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &tmp);
Jesse Barnes79e53942008-11-07 14:24:08 -08001012
1013 *aperture_size = 1024 * 1024;
1014 *preallocated_size = 1024 * 1024;
1015
Eric Anholt60fd99e2008-12-03 22:50:02 -08001016 switch (dev->pdev->device) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001017 case PCI_DEVICE_ID_INTEL_82830_CGC:
1018 case PCI_DEVICE_ID_INTEL_82845G_IG:
1019 case PCI_DEVICE_ID_INTEL_82855GM_IG:
1020 case PCI_DEVICE_ID_INTEL_82865_IG:
1021 if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
1022 *aperture_size *= 64;
1023 else
1024 *aperture_size *= 128;
1025 break;
1026 default:
1027 /* 9xx supports large sizes, just look at the length */
Eric Anholt60fd99e2008-12-03 22:50:02 -08001028 *aperture_size = pci_resource_len(dev->pdev, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001029 break;
1030 }
1031
1032 /*
1033 * Some of the preallocated space is taken by the GTT
1034 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
1035 */
Eric Anholtbad720f2009-10-22 16:11:14 -07001036 if (IS_G4X(dev) || IS_PINEVIEW(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev))
Eric Anholt60fd99e2008-12-03 22:50:02 -08001037 overhead = 4096;
1038 else
1039 overhead = (*aperture_size / 1024) + 4096;
1040
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001041 if (IS_GEN6(dev)) {
1042 /* SNB has memory control reg at 0x50.w */
1043 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &tmp);
1044
1045 switch (tmp & SNB_GMCH_GMS_STOLEN_MASK) {
1046 case INTEL_855_GMCH_GMS_DISABLED:
Eric Anholtbad720f2009-10-22 16:11:14 -07001047 DRM_ERROR("video memory is disabled\n");
1048 return -1;
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001049 case SNB_GMCH_GMS_STOLEN_32M:
1050 stolen = 32 * 1024 * 1024;
1051 break;
1052 case SNB_GMCH_GMS_STOLEN_64M:
1053 stolen = 64 * 1024 * 1024;
1054 break;
1055 case SNB_GMCH_GMS_STOLEN_96M:
1056 stolen = 96 * 1024 * 1024;
1057 break;
1058 case SNB_GMCH_GMS_STOLEN_128M:
1059 stolen = 128 * 1024 * 1024;
1060 break;
1061 case SNB_GMCH_GMS_STOLEN_160M:
1062 stolen = 160 * 1024 * 1024;
1063 break;
1064 case SNB_GMCH_GMS_STOLEN_192M:
1065 stolen = 192 * 1024 * 1024;
1066 break;
1067 case SNB_GMCH_GMS_STOLEN_224M:
1068 stolen = 224 * 1024 * 1024;
1069 break;
1070 case SNB_GMCH_GMS_STOLEN_256M:
1071 stolen = 256 * 1024 * 1024;
1072 break;
1073 case SNB_GMCH_GMS_STOLEN_288M:
1074 stolen = 288 * 1024 * 1024;
1075 break;
1076 case SNB_GMCH_GMS_STOLEN_320M:
1077 stolen = 320 * 1024 * 1024;
1078 break;
1079 case SNB_GMCH_GMS_STOLEN_352M:
1080 stolen = 352 * 1024 * 1024;
1081 break;
1082 case SNB_GMCH_GMS_STOLEN_384M:
1083 stolen = 384 * 1024 * 1024;
1084 break;
1085 case SNB_GMCH_GMS_STOLEN_416M:
1086 stolen = 416 * 1024 * 1024;
1087 break;
1088 case SNB_GMCH_GMS_STOLEN_448M:
1089 stolen = 448 * 1024 * 1024;
1090 break;
1091 case SNB_GMCH_GMS_STOLEN_480M:
1092 stolen = 480 * 1024 * 1024;
1093 break;
1094 case SNB_GMCH_GMS_STOLEN_512M:
1095 stolen = 512 * 1024 * 1024;
1096 break;
1097 default:
1098 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1099 tmp & SNB_GMCH_GMS_STOLEN_MASK);
1100 return -1;
Eric Anholtbad720f2009-10-22 16:11:14 -07001101 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001102 } else {
1103 switch (tmp & INTEL_GMCH_GMS_MASK) {
1104 case INTEL_855_GMCH_GMS_DISABLED:
1105 DRM_ERROR("video memory is disabled\n");
1106 return -1;
1107 case INTEL_855_GMCH_GMS_STOLEN_1M:
1108 stolen = 1 * 1024 * 1024;
1109 break;
1110 case INTEL_855_GMCH_GMS_STOLEN_4M:
1111 stolen = 4 * 1024 * 1024;
1112 break;
1113 case INTEL_855_GMCH_GMS_STOLEN_8M:
1114 stolen = 8 * 1024 * 1024;
1115 break;
1116 case INTEL_855_GMCH_GMS_STOLEN_16M:
1117 stolen = 16 * 1024 * 1024;
1118 break;
1119 case INTEL_855_GMCH_GMS_STOLEN_32M:
1120 stolen = 32 * 1024 * 1024;
1121 break;
1122 case INTEL_915G_GMCH_GMS_STOLEN_48M:
1123 stolen = 48 * 1024 * 1024;
1124 break;
1125 case INTEL_915G_GMCH_GMS_STOLEN_64M:
1126 stolen = 64 * 1024 * 1024;
1127 break;
1128 case INTEL_GMCH_GMS_STOLEN_128M:
1129 stolen = 128 * 1024 * 1024;
1130 break;
1131 case INTEL_GMCH_GMS_STOLEN_256M:
1132 stolen = 256 * 1024 * 1024;
1133 break;
1134 case INTEL_GMCH_GMS_STOLEN_96M:
1135 stolen = 96 * 1024 * 1024;
1136 break;
1137 case INTEL_GMCH_GMS_STOLEN_160M:
1138 stolen = 160 * 1024 * 1024;
1139 break;
1140 case INTEL_GMCH_GMS_STOLEN_224M:
1141 stolen = 224 * 1024 * 1024;
1142 break;
1143 case INTEL_GMCH_GMS_STOLEN_352M:
1144 stolen = 352 * 1024 * 1024;
1145 break;
1146 default:
1147 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1148 tmp & INTEL_GMCH_GMS_MASK);
1149 return -1;
1150 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001151 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001152
Eric Anholt241fa852009-01-02 18:05:51 -08001153 *preallocated_size = stolen - overhead;
Jesse Barnes79e53942008-11-07 14:24:08 -08001154
1155 return 0;
1156}
1157
Jesse Barnes80824002009-09-10 15:28:06 -07001158#define PTE_ADDRESS_MASK 0xfffff000
1159#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1160#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1161#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1162#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1163#define PTE_MAPPING_TYPE_MASK (3 << 1)
1164#define PTE_VALID (1 << 0)
1165
1166/**
1167 * i915_gtt_to_phys - take a GTT address and turn it into a physical one
1168 * @dev: drm device
1169 * @gtt_addr: address to translate
1170 *
1171 * Some chip functions require allocations from stolen space but need the
1172 * physical address of the memory in question. We use this routine
1173 * to get a physical address suitable for register programming from a given
1174 * GTT address.
1175 */
1176static unsigned long i915_gtt_to_phys(struct drm_device *dev,
1177 unsigned long gtt_addr)
1178{
1179 unsigned long *gtt;
1180 unsigned long entry, phys;
1181 int gtt_bar = IS_I9XX(dev) ? 0 : 1;
1182 int gtt_offset, gtt_size;
1183
1184 if (IS_I965G(dev)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001185 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001186 gtt_offset = 2*1024*1024;
1187 gtt_size = 2*1024*1024;
1188 } else {
1189 gtt_offset = 512*1024;
1190 gtt_size = 512*1024;
1191 }
1192 } else {
1193 gtt_bar = 3;
1194 gtt_offset = 0;
1195 gtt_size = pci_resource_len(dev->pdev, gtt_bar);
1196 }
1197
1198 gtt = ioremap_wc(pci_resource_start(dev->pdev, gtt_bar) + gtt_offset,
1199 gtt_size);
1200 if (!gtt) {
1201 DRM_ERROR("ioremap of GTT failed\n");
1202 return 0;
1203 }
1204
1205 entry = *(volatile u32 *)(gtt + (gtt_addr / 1024));
1206
Zhao Yakui44d98a62009-10-09 11:39:40 +08001207 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, PTE: 0x%08lx\n", gtt_addr, entry);
Jesse Barnes80824002009-09-10 15:28:06 -07001208
1209 /* Mask out these reserved bits on this hardware. */
1210 if (!IS_I9XX(dev) || IS_I915G(dev) || IS_I915GM(dev) ||
1211 IS_I945G(dev) || IS_I945GM(dev)) {
1212 entry &= ~PTE_ADDRESS_MASK_HIGH;
1213 }
1214
1215 /* If it's not a mapping type we know, then bail. */
1216 if ((entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_UNCACHED &&
1217 (entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_CACHED) {
1218 iounmap(gtt);
1219 return 0;
1220 }
1221
1222 if (!(entry & PTE_VALID)) {
1223 DRM_ERROR("bad GTT entry in stolen space\n");
1224 iounmap(gtt);
1225 return 0;
1226 }
1227
1228 iounmap(gtt);
1229
1230 phys =(entry & PTE_ADDRESS_MASK) |
1231 ((uint64_t)(entry & PTE_ADDRESS_MASK_HIGH) << (32 - 4));
1232
Zhao Yakui44d98a62009-10-09 11:39:40 +08001233 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, phys addr: 0x%08lx\n", gtt_addr, phys);
Jesse Barnes80824002009-09-10 15:28:06 -07001234
1235 return phys;
1236}
1237
1238static void i915_warn_stolen(struct drm_device *dev)
1239{
1240 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1241 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1242}
1243
1244static void i915_setup_compression(struct drm_device *dev, int size)
1245{
1246 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001247 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001248 unsigned long cfb_base;
1249 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001250
1251 /* Leave 1M for line length buffer & misc. */
1252 compressed_fb = drm_mm_search_free(&dev_priv->vram, size, 4096, 0);
1253 if (!compressed_fb) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001254 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001255 i915_warn_stolen(dev);
1256 return;
1257 }
1258
1259 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1260 if (!compressed_fb) {
1261 i915_warn_stolen(dev);
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001262 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001263 return;
1264 }
1265
Jesse Barnes74dff282009-09-14 15:39:40 -07001266 cfb_base = i915_gtt_to_phys(dev, compressed_fb->start);
1267 if (!cfb_base) {
1268 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1269 drm_mm_put_block(compressed_fb);
Jesse Barnes80824002009-09-10 15:28:06 -07001270 }
1271
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001272 if (!(IS_GM45(dev) || IS_IRONLAKE_M(dev))) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001273 compressed_llb = drm_mm_search_free(&dev_priv->vram, 4096,
1274 4096, 0);
1275 if (!compressed_llb) {
1276 i915_warn_stolen(dev);
1277 return;
1278 }
1279
1280 compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096);
1281 if (!compressed_llb) {
1282 i915_warn_stolen(dev);
1283 return;
1284 }
1285
1286 ll_base = i915_gtt_to_phys(dev, compressed_llb->start);
1287 if (!ll_base) {
1288 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1289 drm_mm_put_block(compressed_fb);
1290 drm_mm_put_block(compressed_llb);
1291 }
Jesse Barnes80824002009-09-10 15:28:06 -07001292 }
1293
1294 dev_priv->cfb_size = size;
1295
Adam Jacksonee5382a2010-04-23 11:17:39 -04001296 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001297 dev_priv->compressed_fb = compressed_fb;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001298 if (IS_IRONLAKE_M(dev))
1299 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1300 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001301 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1302 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001303 I915_WRITE(FBC_CFB_BASE, cfb_base);
1304 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001305 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001306 }
1307
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001308 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base,
Jesse Barnes80824002009-09-10 15:28:06 -07001309 ll_base, size >> 20);
Jesse Barnes80824002009-09-10 15:28:06 -07001310}
1311
Jesse Barnes20bf3772010-04-21 11:39:22 -07001312static void i915_cleanup_compression(struct drm_device *dev)
1313{
1314 struct drm_i915_private *dev_priv = dev->dev_private;
1315
1316 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001317 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001318 drm_mm_put_block(dev_priv->compressed_llb);
1319}
1320
Dave Airlie28d52042009-09-21 14:33:58 +10001321/* true = enable decode, false = disable decoder */
1322static unsigned int i915_vga_set_decode(void *cookie, bool state)
1323{
1324 struct drm_device *dev = cookie;
1325
1326 intel_modeset_vga_set_state(dev, state);
1327 if (state)
1328 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1329 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1330 else
1331 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1332}
1333
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001334static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1335{
1336 struct drm_device *dev = pci_get_drvdata(pdev);
1337 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1338 if (state == VGA_SWITCHEROO_ON) {
Dave Airliefbf81762010-06-01 09:09:06 +10001339 printk(KERN_INFO "i915: switched on\n");
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001340 /* i915 resume handler doesn't set to D0 */
1341 pci_set_power_state(dev->pdev, PCI_D0);
1342 i915_resume(dev);
Dave Airliefbf81762010-06-01 09:09:06 +10001343 drm_kms_helper_poll_enable(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001344 } else {
1345 printk(KERN_ERR "i915: switched off\n");
Dave Airliefbf81762010-06-01 09:09:06 +10001346 drm_kms_helper_poll_disable(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001347 i915_suspend(dev, pmm);
1348 }
1349}
1350
1351static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1352{
1353 struct drm_device *dev = pci_get_drvdata(pdev);
1354 bool can_switch;
1355
1356 spin_lock(&dev->count_lock);
1357 can_switch = (dev->open_count == 0);
1358 spin_unlock(&dev->count_lock);
1359 return can_switch;
1360}
1361
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001362static int i915_load_modeset_init(struct drm_device *dev,
1363 unsigned long prealloc_size,
1364 unsigned long agp_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001365{
1366 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001367 int ret = 0;
1368
Jesse Barnes79e53942008-11-07 14:24:08 -08001369 /* Basic memrange allocator for stolen space (aka vram) */
1370 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
Jesse Barnes80824002009-09-10 15:28:06 -07001371 DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024));
Jesse Barnes79e53942008-11-07 14:24:08 -08001372
Ben Gamari11ed50e2009-09-14 17:48:45 -04001373 /* We're off and running w/KMS */
1374 dev_priv->mm.suspended = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001375
Eric Anholt13f4c432009-05-12 15:27:36 -07001376 /* Let GEM Manage from end of prealloc space to end of aperture.
1377 *
1378 * However, leave one page at the end still bound to the scratch page.
1379 * There are a number of places where the hardware apparently
1380 * prefetches past the end of the object, and we've seen multiple
1381 * hangs with the GPU head pointer stuck in a batchbuffer bound
1382 * at the last page of the aperture. One page should be enough to
1383 * keep any prefetching inside of the aperture.
1384 */
1385 i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
Jesse Barnes79e53942008-11-07 14:24:08 -08001386
Ben Gamari11ed50e2009-09-14 17:48:45 -04001387 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001388 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001389 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001390 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001391 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001392
Jesse Barnes80824002009-09-10 15:28:06 -07001393 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001394 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001395 int cfb_size;
1396
1397 /* Try to get an 8M buffer... */
1398 if (prealloc_size > (9*1024*1024))
1399 cfb_size = 8*1024*1024;
1400 else /* fall back to 7/8 of the stolen space */
1401 cfb_size = prealloc_size * 7 / 8;
1402 i915_setup_compression(dev, cfb_size);
1403 }
1404
Jesse Barnes79e53942008-11-07 14:24:08 -08001405 /* Allow hardware batchbuffers unless told otherwise.
1406 */
1407 dev_priv->allow_batchbuffer = 1;
1408
1409 ret = intel_init_bios(dev);
1410 if (ret)
1411 DRM_INFO("failed to find VBIOS tables\n");
1412
Dave Airlie28d52042009-09-21 14:33:58 +10001413 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1414 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1415 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001416 goto cleanup_ringbuffer;
Dave Airlie28d52042009-09-21 14:33:58 +10001417
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001418 ret = vga_switcheroo_register_client(dev->pdev,
1419 i915_switcheroo_set_state,
1420 i915_switcheroo_can_switch);
1421 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001422 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001423
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001424 /* IIR "flip pending" bit means done if this bit is set */
1425 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1426 dev_priv->flip_pending_is_done = true;
1427
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001428 intel_modeset_init(dev);
1429
Jesse Barnes79e53942008-11-07 14:24:08 -08001430 ret = drm_irq_install(dev);
1431 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001432 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001433
Jesse Barnes79e53942008-11-07 14:24:08 -08001434 /* Always safe in the mode setting case. */
1435 /* FIXME: do pre/post-mode set stuff in core KMS code */
1436 dev->vblank_disable_allowed = 1;
1437
Chris Wilson5a793952010-06-06 10:50:03 +01001438 ret = intel_fbdev_init(dev);
1439 if (ret)
1440 goto cleanup_irq;
1441
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001442 drm_kms_helper_poll_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001443 return 0;
1444
Chris Wilson5a793952010-06-06 10:50:03 +01001445cleanup_irq:
1446 drm_irq_uninstall(dev);
1447cleanup_vga_switcheroo:
1448 vga_switcheroo_unregister_client(dev->pdev);
1449cleanup_vga_client:
1450 vga_client_register(dev->pdev, NULL, NULL, NULL);
1451cleanup_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001452 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001453 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001454 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001455out:
1456 return ret;
1457}
1458
Dave Airlie7c1c2872008-11-28 14:22:24 +10001459int i915_master_create(struct drm_device *dev, struct drm_master *master)
1460{
1461 struct drm_i915_master_private *master_priv;
1462
Eric Anholt9a298b22009-03-24 12:23:04 -07001463 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001464 if (!master_priv)
1465 return -ENOMEM;
1466
1467 master->driver_priv = master_priv;
1468 return 0;
1469}
1470
1471void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1472{
1473 struct drm_i915_master_private *master_priv = master->driver_priv;
1474
1475 if (!master_priv)
1476 return;
1477
Eric Anholt9a298b22009-03-24 12:23:04 -07001478 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001479
1480 master->driver_priv = NULL;
1481}
1482
Jesse Barnes7648fa92010-05-20 14:28:11 -07001483static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001484{
1485 drm_i915_private_t *dev_priv = dev->dev_private;
1486 u32 tmp;
1487
Shaohua Li7662c8b2009-06-26 11:23:55 +08001488 tmp = I915_READ(CLKCFG);
1489
1490 switch (tmp & CLKCFG_FSB_MASK) {
1491 case CLKCFG_FSB_533:
1492 dev_priv->fsb_freq = 533; /* 133*4 */
1493 break;
1494 case CLKCFG_FSB_800:
1495 dev_priv->fsb_freq = 800; /* 200*4 */
1496 break;
1497 case CLKCFG_FSB_667:
1498 dev_priv->fsb_freq = 667; /* 167*4 */
1499 break;
1500 case CLKCFG_FSB_400:
1501 dev_priv->fsb_freq = 400; /* 100*4 */
1502 break;
1503 }
1504
1505 switch (tmp & CLKCFG_MEM_MASK) {
1506 case CLKCFG_MEM_533:
1507 dev_priv->mem_freq = 533;
1508 break;
1509 case CLKCFG_MEM_667:
1510 dev_priv->mem_freq = 667;
1511 break;
1512 case CLKCFG_MEM_800:
1513 dev_priv->mem_freq = 800;
1514 break;
1515 }
Li Peng95534262010-05-18 18:58:44 +08001516
1517 /* detect pineview DDR3 setting */
1518 tmp = I915_READ(CSHRDDR3CTL);
1519 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001520}
1521
Jesse Barnes7648fa92010-05-20 14:28:11 -07001522static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1523{
1524 drm_i915_private_t *dev_priv = dev->dev_private;
1525 u16 ddrpll, csipll;
1526
1527 ddrpll = I915_READ16(DDRMPLL1);
1528 csipll = I915_READ16(CSIPLL0);
1529
1530 switch (ddrpll & 0xff) {
1531 case 0xc:
1532 dev_priv->mem_freq = 800;
1533 break;
1534 case 0x10:
1535 dev_priv->mem_freq = 1066;
1536 break;
1537 case 0x14:
1538 dev_priv->mem_freq = 1333;
1539 break;
1540 case 0x18:
1541 dev_priv->mem_freq = 1600;
1542 break;
1543 default:
1544 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1545 ddrpll & 0xff);
1546 dev_priv->mem_freq = 0;
1547 break;
1548 }
1549
1550 dev_priv->r_t = dev_priv->mem_freq;
1551
1552 switch (csipll & 0x3ff) {
1553 case 0x00c:
1554 dev_priv->fsb_freq = 3200;
1555 break;
1556 case 0x00e:
1557 dev_priv->fsb_freq = 3733;
1558 break;
1559 case 0x010:
1560 dev_priv->fsb_freq = 4266;
1561 break;
1562 case 0x012:
1563 dev_priv->fsb_freq = 4800;
1564 break;
1565 case 0x014:
1566 dev_priv->fsb_freq = 5333;
1567 break;
1568 case 0x016:
1569 dev_priv->fsb_freq = 5866;
1570 break;
1571 case 0x018:
1572 dev_priv->fsb_freq = 6400;
1573 break;
1574 default:
1575 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1576 csipll & 0x3ff);
1577 dev_priv->fsb_freq = 0;
1578 break;
1579 }
1580
1581 if (dev_priv->fsb_freq == 3200) {
1582 dev_priv->c_m = 0;
1583 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1584 dev_priv->c_m = 1;
1585 } else {
1586 dev_priv->c_m = 2;
1587 }
1588}
1589
1590struct v_table {
1591 u8 vid;
1592 unsigned long vd; /* in .1 mil */
1593 unsigned long vm; /* in .1 mil */
1594 u8 pvid;
1595};
1596
1597static struct v_table v_table[] = {
1598 { 0, 16125, 15000, 0x7f, },
1599 { 1, 16000, 14875, 0x7e, },
1600 { 2, 15875, 14750, 0x7d, },
1601 { 3, 15750, 14625, 0x7c, },
1602 { 4, 15625, 14500, 0x7b, },
1603 { 5, 15500, 14375, 0x7a, },
1604 { 6, 15375, 14250, 0x79, },
1605 { 7, 15250, 14125, 0x78, },
1606 { 8, 15125, 14000, 0x77, },
1607 { 9, 15000, 13875, 0x76, },
1608 { 10, 14875, 13750, 0x75, },
1609 { 11, 14750, 13625, 0x74, },
1610 { 12, 14625, 13500, 0x73, },
1611 { 13, 14500, 13375, 0x72, },
1612 { 14, 14375, 13250, 0x71, },
1613 { 15, 14250, 13125, 0x70, },
1614 { 16, 14125, 13000, 0x6f, },
1615 { 17, 14000, 12875, 0x6e, },
1616 { 18, 13875, 12750, 0x6d, },
1617 { 19, 13750, 12625, 0x6c, },
1618 { 20, 13625, 12500, 0x6b, },
1619 { 21, 13500, 12375, 0x6a, },
1620 { 22, 13375, 12250, 0x69, },
1621 { 23, 13250, 12125, 0x68, },
1622 { 24, 13125, 12000, 0x67, },
1623 { 25, 13000, 11875, 0x66, },
1624 { 26, 12875, 11750, 0x65, },
1625 { 27, 12750, 11625, 0x64, },
1626 { 28, 12625, 11500, 0x63, },
1627 { 29, 12500, 11375, 0x62, },
1628 { 30, 12375, 11250, 0x61, },
1629 { 31, 12250, 11125, 0x60, },
1630 { 32, 12125, 11000, 0x5f, },
1631 { 33, 12000, 10875, 0x5e, },
1632 { 34, 11875, 10750, 0x5d, },
1633 { 35, 11750, 10625, 0x5c, },
1634 { 36, 11625, 10500, 0x5b, },
1635 { 37, 11500, 10375, 0x5a, },
1636 { 38, 11375, 10250, 0x59, },
1637 { 39, 11250, 10125, 0x58, },
1638 { 40, 11125, 10000, 0x57, },
1639 { 41, 11000, 9875, 0x56, },
1640 { 42, 10875, 9750, 0x55, },
1641 { 43, 10750, 9625, 0x54, },
1642 { 44, 10625, 9500, 0x53, },
1643 { 45, 10500, 9375, 0x52, },
1644 { 46, 10375, 9250, 0x51, },
1645 { 47, 10250, 9125, 0x50, },
1646 { 48, 10125, 9000, 0x4f, },
1647 { 49, 10000, 8875, 0x4e, },
1648 { 50, 9875, 8750, 0x4d, },
1649 { 51, 9750, 8625, 0x4c, },
1650 { 52, 9625, 8500, 0x4b, },
1651 { 53, 9500, 8375, 0x4a, },
1652 { 54, 9375, 8250, 0x49, },
1653 { 55, 9250, 8125, 0x48, },
1654 { 56, 9125, 8000, 0x47, },
1655 { 57, 9000, 7875, 0x46, },
1656 { 58, 8875, 7750, 0x45, },
1657 { 59, 8750, 7625, 0x44, },
1658 { 60, 8625, 7500, 0x43, },
1659 { 61, 8500, 7375, 0x42, },
1660 { 62, 8375, 7250, 0x41, },
1661 { 63, 8250, 7125, 0x40, },
1662 { 64, 8125, 7000, 0x3f, },
1663 { 65, 8000, 6875, 0x3e, },
1664 { 66, 7875, 6750, 0x3d, },
1665 { 67, 7750, 6625, 0x3c, },
1666 { 68, 7625, 6500, 0x3b, },
1667 { 69, 7500, 6375, 0x3a, },
1668 { 70, 7375, 6250, 0x39, },
1669 { 71, 7250, 6125, 0x38, },
1670 { 72, 7125, 6000, 0x37, },
1671 { 73, 7000, 5875, 0x36, },
1672 { 74, 6875, 5750, 0x35, },
1673 { 75, 6750, 5625, 0x34, },
1674 { 76, 6625, 5500, 0x33, },
1675 { 77, 6500, 5375, 0x32, },
1676 { 78, 6375, 5250, 0x31, },
1677 { 79, 6250, 5125, 0x30, },
1678 { 80, 6125, 5000, 0x2f, },
1679 { 81, 6000, 4875, 0x2e, },
1680 { 82, 5875, 4750, 0x2d, },
1681 { 83, 5750, 4625, 0x2c, },
1682 { 84, 5625, 4500, 0x2b, },
1683 { 85, 5500, 4375, 0x2a, },
1684 { 86, 5375, 4250, 0x29, },
1685 { 87, 5250, 4125, 0x28, },
1686 { 88, 5125, 4000, 0x27, },
1687 { 89, 5000, 3875, 0x26, },
1688 { 90, 4875, 3750, 0x25, },
1689 { 91, 4750, 3625, 0x24, },
1690 { 92, 4625, 3500, 0x23, },
1691 { 93, 4500, 3375, 0x22, },
1692 { 94, 4375, 3250, 0x21, },
1693 { 95, 4250, 3125, 0x20, },
1694 { 96, 4125, 3000, 0x1f, },
1695 { 97, 4125, 3000, 0x1e, },
1696 { 98, 4125, 3000, 0x1d, },
1697 { 99, 4125, 3000, 0x1c, },
1698 { 100, 4125, 3000, 0x1b, },
1699 { 101, 4125, 3000, 0x1a, },
1700 { 102, 4125, 3000, 0x19, },
1701 { 103, 4125, 3000, 0x18, },
1702 { 104, 4125, 3000, 0x17, },
1703 { 105, 4125, 3000, 0x16, },
1704 { 106, 4125, 3000, 0x15, },
1705 { 107, 4125, 3000, 0x14, },
1706 { 108, 4125, 3000, 0x13, },
1707 { 109, 4125, 3000, 0x12, },
1708 { 110, 4125, 3000, 0x11, },
1709 { 111, 4125, 3000, 0x10, },
1710 { 112, 4125, 3000, 0x0f, },
1711 { 113, 4125, 3000, 0x0e, },
1712 { 114, 4125, 3000, 0x0d, },
1713 { 115, 4125, 3000, 0x0c, },
1714 { 116, 4125, 3000, 0x0b, },
1715 { 117, 4125, 3000, 0x0a, },
1716 { 118, 4125, 3000, 0x09, },
1717 { 119, 4125, 3000, 0x08, },
1718 { 120, 1125, 0, 0x07, },
1719 { 121, 1000, 0, 0x06, },
1720 { 122, 875, 0, 0x05, },
1721 { 123, 750, 0, 0x04, },
1722 { 124, 625, 0, 0x03, },
1723 { 125, 500, 0, 0x02, },
1724 { 126, 375, 0, 0x01, },
1725 { 127, 0, 0, 0x00, },
1726};
1727
1728struct cparams {
1729 int i;
1730 int t;
1731 int m;
1732 int c;
1733};
1734
1735static struct cparams cparams[] = {
1736 { 1, 1333, 301, 28664 },
1737 { 1, 1066, 294, 24460 },
1738 { 1, 800, 294, 25192 },
1739 { 0, 1333, 276, 27605 },
1740 { 0, 1066, 276, 27605 },
1741 { 0, 800, 231, 23784 },
1742};
1743
1744unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1745{
1746 u64 total_count, diff, ret;
1747 u32 count1, count2, count3, m = 0, c = 0;
1748 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1749 int i;
1750
1751 diff1 = now - dev_priv->last_time1;
1752
1753 count1 = I915_READ(DMIEC);
1754 count2 = I915_READ(DDREC);
1755 count3 = I915_READ(CSIEC);
1756
1757 total_count = count1 + count2 + count3;
1758
1759 /* FIXME: handle per-counter overflow */
1760 if (total_count < dev_priv->last_count1) {
1761 diff = ~0UL - dev_priv->last_count1;
1762 diff += total_count;
1763 } else {
1764 diff = total_count - dev_priv->last_count1;
1765 }
1766
1767 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1768 if (cparams[i].i == dev_priv->c_m &&
1769 cparams[i].t == dev_priv->r_t) {
1770 m = cparams[i].m;
1771 c = cparams[i].c;
1772 break;
1773 }
1774 }
1775
1776 div_u64(diff, diff1);
1777 ret = ((m * diff) + c);
1778 div_u64(ret, 10);
1779
1780 dev_priv->last_count1 = total_count;
1781 dev_priv->last_time1 = now;
1782
1783 return ret;
1784}
1785
1786unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1787{
1788 unsigned long m, x, b;
1789 u32 tsfs;
1790
1791 tsfs = I915_READ(TSFS);
1792
1793 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1794 x = I915_READ8(TR1);
1795
1796 b = tsfs & TSFS_INTR_MASK;
1797
1798 return ((m * x) / 127) - b;
1799}
1800
1801static unsigned long pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
1802{
1803 unsigned long val = 0;
1804 int i;
1805
1806 for (i = 0; i < ARRAY_SIZE(v_table); i++) {
1807 if (v_table[i].pvid == pxvid) {
1808 if (IS_MOBILE(dev_priv->dev))
1809 val = v_table[i].vm;
1810 else
1811 val = v_table[i].vd;
1812 }
1813 }
1814
1815 return val;
1816}
1817
1818void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1819{
1820 struct timespec now, diff1;
1821 u64 diff;
1822 unsigned long diffms;
1823 u32 count;
1824
1825 getrawmonotonic(&now);
1826 diff1 = timespec_sub(now, dev_priv->last_time2);
1827
1828 /* Don't divide by 0 */
1829 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1830 if (!diffms)
1831 return;
1832
1833 count = I915_READ(GFXEC);
1834
1835 if (count < dev_priv->last_count2) {
1836 diff = ~0UL - dev_priv->last_count2;
1837 diff += count;
1838 } else {
1839 diff = count - dev_priv->last_count2;
1840 }
1841
1842 dev_priv->last_count2 = count;
1843 dev_priv->last_time2 = now;
1844
1845 /* More magic constants... */
1846 diff = diff * 1181;
1847 div_u64(diff, diffms * 10);
1848 dev_priv->gfx_power = diff;
1849}
1850
1851unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1852{
1853 unsigned long t, corr, state1, corr2, state2;
1854 u32 pxvid, ext_v;
1855
1856 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1857 pxvid = (pxvid >> 24) & 0x7f;
1858 ext_v = pvid_to_extvid(dev_priv, pxvid);
1859
1860 state1 = ext_v;
1861
1862 t = i915_mch_val(dev_priv);
1863
1864 /* Revel in the empirically derived constants */
1865
1866 /* Correction factor in 1/100000 units */
1867 if (t > 80)
1868 corr = ((t * 2349) + 135940);
1869 else if (t >= 50)
1870 corr = ((t * 964) + 29317);
1871 else /* < 50 */
1872 corr = ((t * 301) + 1004);
1873
1874 corr = corr * ((150142 * state1) / 10000 - 78642);
1875 corr /= 100000;
1876 corr2 = (corr * dev_priv->corr);
1877
1878 state2 = (corr2 * state1) / 10000;
1879 state2 /= 100; /* convert to mW */
1880
1881 i915_update_gfx_val(dev_priv);
1882
1883 return dev_priv->gfx_power + state2;
1884}
1885
1886/* Global for IPS driver to get at the current i915 device */
1887static struct drm_i915_private *i915_mch_dev;
1888/*
1889 * Lock protecting IPS related data structures
1890 * - i915_mch_dev
1891 * - dev_priv->max_delay
1892 * - dev_priv->min_delay
1893 * - dev_priv->fmax
1894 * - dev_priv->gpu_busy
1895 */
Chris Wilson995b6762010-08-20 13:23:26 +01001896static DEFINE_SPINLOCK(mchdev_lock);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001897
1898/**
1899 * i915_read_mch_val - return value for IPS use
1900 *
1901 * Calculate and return a value for the IPS driver to use when deciding whether
1902 * we have thermal and power headroom to increase CPU or GPU power budget.
1903 */
1904unsigned long i915_read_mch_val(void)
1905{
1906 struct drm_i915_private *dev_priv;
1907 unsigned long chipset_val, graphics_val, ret = 0;
1908
1909 spin_lock(&mchdev_lock);
1910 if (!i915_mch_dev)
1911 goto out_unlock;
1912 dev_priv = i915_mch_dev;
1913
1914 chipset_val = i915_chipset_val(dev_priv);
1915 graphics_val = i915_gfx_val(dev_priv);
1916
1917 ret = chipset_val + graphics_val;
1918
1919out_unlock:
1920 spin_unlock(&mchdev_lock);
1921
1922 return ret;
1923}
1924EXPORT_SYMBOL_GPL(i915_read_mch_val);
1925
1926/**
1927 * i915_gpu_raise - raise GPU frequency limit
1928 *
1929 * Raise the limit; IPS indicates we have thermal headroom.
1930 */
1931bool i915_gpu_raise(void)
1932{
1933 struct drm_i915_private *dev_priv;
1934 bool ret = true;
1935
1936 spin_lock(&mchdev_lock);
1937 if (!i915_mch_dev) {
1938 ret = false;
1939 goto out_unlock;
1940 }
1941 dev_priv = i915_mch_dev;
1942
1943 if (dev_priv->max_delay > dev_priv->fmax)
1944 dev_priv->max_delay--;
1945
1946out_unlock:
1947 spin_unlock(&mchdev_lock);
1948
1949 return ret;
1950}
1951EXPORT_SYMBOL_GPL(i915_gpu_raise);
1952
1953/**
1954 * i915_gpu_lower - lower GPU frequency limit
1955 *
1956 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1957 * frequency maximum.
1958 */
1959bool i915_gpu_lower(void)
1960{
1961 struct drm_i915_private *dev_priv;
1962 bool ret = true;
1963
1964 spin_lock(&mchdev_lock);
1965 if (!i915_mch_dev) {
1966 ret = false;
1967 goto out_unlock;
1968 }
1969 dev_priv = i915_mch_dev;
1970
1971 if (dev_priv->max_delay < dev_priv->min_delay)
1972 dev_priv->max_delay++;
1973
1974out_unlock:
1975 spin_unlock(&mchdev_lock);
1976
1977 return ret;
1978}
1979EXPORT_SYMBOL_GPL(i915_gpu_lower);
1980
1981/**
1982 * i915_gpu_busy - indicate GPU business to IPS
1983 *
1984 * Tell the IPS driver whether or not the GPU is busy.
1985 */
1986bool i915_gpu_busy(void)
1987{
1988 struct drm_i915_private *dev_priv;
1989 bool ret = false;
1990
1991 spin_lock(&mchdev_lock);
1992 if (!i915_mch_dev)
1993 goto out_unlock;
1994 dev_priv = i915_mch_dev;
1995
1996 ret = dev_priv->busy;
1997
1998out_unlock:
1999 spin_unlock(&mchdev_lock);
2000
2001 return ret;
2002}
2003EXPORT_SYMBOL_GPL(i915_gpu_busy);
2004
2005/**
2006 * i915_gpu_turbo_disable - disable graphics turbo
2007 *
2008 * Disable graphics turbo by resetting the max frequency and setting the
2009 * current frequency to the default.
2010 */
2011bool i915_gpu_turbo_disable(void)
2012{
2013 struct drm_i915_private *dev_priv;
2014 bool ret = true;
2015
2016 spin_lock(&mchdev_lock);
2017 if (!i915_mch_dev) {
2018 ret = false;
2019 goto out_unlock;
2020 }
2021 dev_priv = i915_mch_dev;
2022
2023 dev_priv->max_delay = dev_priv->fstart;
2024
2025 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
2026 ret = false;
2027
2028out_unlock:
2029 spin_unlock(&mchdev_lock);
2030
2031 return ret;
2032}
2033EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
2034
Jesse Barnes79e53942008-11-07 14:24:08 -08002035/**
2036 * i915_driver_load - setup chip and create an initial config
2037 * @dev: DRM device
2038 * @flags: startup flags
2039 *
2040 * The driver load routine has to do several things:
2041 * - drive output discovery via intel_modeset_init()
2042 * - initialize the memory manager
2043 * - allocate initial config memory
2044 * - setup the DRM framebuffer with the allocated memory
2045 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002046int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11002047{
Luca Tettamantiea059a12010-04-08 21:41:59 +02002048 struct drm_i915_private *dev_priv;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +11002049 resource_size_t base, size;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002050 int ret = 0, mmio_bar;
Daniel Vetterac622a92010-09-08 21:26:07 +02002051 uint32_t agp_size, prealloc_size;
Dave Airlie22eae942005-11-10 22:16:34 +11002052 /* i915 has 4 more counters */
2053 dev->counters += 4;
2054 dev->types[6] = _DRM_STAT_IRQ;
2055 dev->types[7] = _DRM_STAT_PRIMARY;
2056 dev->types[8] = _DRM_STAT_SECONDARY;
2057 dev->types[9] = _DRM_STAT_DMA;
2058
Eric Anholt9a298b22009-03-24 12:23:04 -07002059 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002060 if (dev_priv == NULL)
2061 return -ENOMEM;
2062
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002063 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002064 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002065 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002066
2067 /* Add register map (needed for suspend/resume) */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002068 mmio_bar = IS_I9XX(dev) ? 0 : 1;
Jordan Crouse01d73a62010-05-27 13:40:24 -06002069 base = pci_resource_start(dev->pdev, mmio_bar);
2070 size = pci_resource_len(dev->pdev, mmio_bar);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002071
Dave Airlieec2a4c32009-08-04 11:43:41 +10002072 if (i915_get_bridge_dev(dev)) {
2073 ret = -EIO;
2074 goto free_priv;
2075 }
2076
Daniel Vetter9f82d232010-08-30 21:25:23 +02002077 /* overlay on gen2 is broken and can't address above 1G */
2078 if (IS_GEN2(dev))
2079 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
2080
Eric Anholt3043c602008-10-02 12:24:47 -07002081 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002082 if (!dev_priv->regs) {
2083 DRM_ERROR("failed to map registers\n");
2084 ret = -EIO;
Dave Airlieec2a4c32009-08-04 11:43:41 +10002085 goto put_bridge;
Jesse Barnes79e53942008-11-07 14:24:08 -08002086 }
Eric Anholted4cb412008-07-29 12:10:39 -07002087
Eric Anholtab657db12009-01-23 12:57:47 -08002088 dev_priv->mm.gtt_mapping =
2089 io_mapping_create_wc(dev->agp->base,
2090 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08002091 if (dev_priv->mm.gtt_mapping == NULL) {
2092 ret = -EIO;
2093 goto out_rmmap;
2094 }
2095
Eric Anholtab657db12009-01-23 12:57:47 -08002096 /* Set up a WC MTRR for non-PAT systems. This is more common than
2097 * one would think, because the kernel disables PAT on first
2098 * generation Core chips because WC PAT gets overridden by a UC
2099 * MTRR if present. Even if a UC MTRR isn't present.
2100 */
2101 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
2102 dev->agp->agp_info.aper_size *
2103 1024 * 1024,
2104 MTRR_TYPE_WRCOMB, 1);
2105 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07002106 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08002107 "performance may suffer.\n");
2108 }
2109
Daniel Vetterac622a92010-09-08 21:26:07 +02002110 ret = i915_probe_agp(dev, &agp_size, &prealloc_size);
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002111 if (ret)
2112 goto out_iomapfree;
2113
Jesse Barnesd1d6ca72010-07-08 09:22:46 -07002114 if (prealloc_size > intel_max_stolen) {
2115 DRM_INFO("detected %dM stolen memory, trimming to %dM\n",
2116 prealloc_size >> 20, intel_max_stolen >> 20);
2117 prealloc_size = intel_max_stolen;
2118 }
2119
Chris Wilsonaed5f1d2009-10-14 13:40:04 +01002120 dev_priv->wq = create_singlethread_workqueue("i915");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002121 if (dev_priv->wq == NULL) {
2122 DRM_ERROR("Failed to create our workqueue.\n");
2123 ret = -ENOMEM;
2124 goto out_iomapfree;
2125 }
2126
Dave Airlieac5c4e72008-12-19 15:38:34 +10002127 /* enable GEM by default */
2128 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10002129
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002130 if (prealloc_size > agp_size * 3 / 4) {
2131 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
2132 "memory stolen.\n",
2133 prealloc_size / 1024, agp_size / 1024);
2134 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
2135 "updating the BIOS to fix).\n");
2136 dev_priv->has_gem = 0;
2137 }
2138
Chris Wilson79a78dd2010-05-17 09:23:54 +01002139 if (dev_priv->has_gem == 0 &&
2140 drm_core_check_feature(dev, DRIVER_MODESET)) {
2141 DRM_ERROR("kernel modesetting requires GEM, disabling driver.\n");
2142 ret = -ENODEV;
2143 goto out_iomapfree;
2144 }
2145
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002146 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002147 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eric Anholtbad720f2009-10-22 16:11:14 -07002148 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07002149 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002150 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002151 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002152
Zhenyu Wangc48044112009-12-17 14:48:43 +08002153 /* Try to make sure MCHBAR is enabled before poking at it */
2154 intel_setup_mchbar(dev);
Chris Wilson44834a62010-08-19 16:09:23 +01002155 intel_opregion_setup(dev);
Zhenyu Wangc48044112009-12-17 14:48:43 +08002156
Eric Anholt673a3942008-07-30 12:06:12 -07002157 i915_gem_load(dev);
2158
Keith Packard398c9cb2008-07-30 13:03:43 -07002159 /* Init HWS */
2160 if (!I915_NEED_GFX_HWS(dev)) {
2161 ret = i915_init_phys_hws(dev);
2162 if (ret != 0)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002163 goto out_workqueue_free;
Keith Packard398c9cb2008-07-30 13:03:43 -07002164 }
Eric Anholted4cb412008-07-29 12:10:39 -07002165
Jesse Barnes7648fa92010-05-20 14:28:11 -07002166 if (IS_PINEVIEW(dev))
2167 i915_pineview_get_mem_freq(dev);
2168 else if (IS_IRONLAKE(dev))
2169 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002170
Eric Anholted4cb412008-07-29 12:10:39 -07002171 /* On the 945G/GM, the chipset reports the MSI capability on the
2172 * integrated graphics even though the support isn't actually there
2173 * according to the published specs. It doesn't appear to function
2174 * correctly in testing on 945G.
2175 * This may be a side effect of MSI having been made available for PEG
2176 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002177 *
2178 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002179 * be lost or delayed, but we use them anyways to avoid
2180 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002181 */
Keith Packardb60678a2008-12-08 11:12:28 -08002182 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002183 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002184
2185 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002186 spin_lock_init(&dev_priv->error_lock);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002187 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07002188
Keith Packard52440212008-11-18 09:30:25 -08002189 ret = drm_vblank_init(dev, I915_NUM_PIPE);
2190
2191 if (ret) {
2192 (void) i915_driver_unload(dev);
2193 return ret;
2194 }
2195
Ben Gamari11ed50e2009-09-14 17:48:45 -04002196 /* Start out suspended */
2197 dev_priv->mm.suspended = 1;
2198
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002199 intel_detect_pch(dev);
2200
Jesse Barnes79e53942008-11-07 14:24:08 -08002201 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetterac622a92010-09-08 21:26:07 +02002202 ret = i915_load_modeset_init(dev, prealloc_size, agp_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002203 if (ret < 0) {
2204 DRM_ERROR("failed to init modeset\n");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002205 goto out_workqueue_free;
Jesse Barnes79e53942008-11-07 14:24:08 -08002206 }
2207 }
2208
Matthew Garrett74a365b2009-03-19 21:35:39 +00002209 /* Must be done after probing outputs */
Chris Wilson44834a62010-08-19 16:09:23 +01002210 intel_opregion_init(dev);
2211 acpi_video_register();
Matthew Garrett74a365b2009-03-19 21:35:39 +00002212
Ben Gamarif65d9422009-09-14 17:48:44 -04002213 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2214 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002215
2216 spin_lock(&mchdev_lock);
2217 i915_mch_dev = dev_priv;
2218 dev_priv->mchdev_lock = &mchdev_lock;
2219 spin_unlock(&mchdev_lock);
2220
Jesse Barnes79e53942008-11-07 14:24:08 -08002221 return 0;
2222
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002223out_workqueue_free:
2224 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi6644107d2009-02-24 17:35:11 -08002225out_iomapfree:
2226 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002227out_rmmap:
2228 iounmap(dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002229put_bridge:
2230 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002231free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002232 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002233 return ret;
2234}
2235
2236int i915_driver_unload(struct drm_device *dev)
2237{
2238 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc911fc12010-08-20 21:23:20 +02002239 int ret;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002240
Jesse Barnes7648fa92010-05-20 14:28:11 -07002241 spin_lock(&mchdev_lock);
2242 i915_mch_dev = NULL;
2243 spin_unlock(&mchdev_lock);
2244
Daniel Vetterc911fc12010-08-20 21:23:20 +02002245 mutex_lock(&dev->struct_mutex);
2246 ret = i915_gpu_idle(dev);
2247 if (ret)
2248 DRM_ERROR("failed to idle hardware: %d\n", ret);
2249 mutex_unlock(&dev->struct_mutex);
2250
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002251 /* Cancel the retire work handler, which should be idle now. */
2252 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2253
Eric Anholtab657db12009-01-23 12:57:47 -08002254 io_mapping_free(dev_priv->mm.gtt_mapping);
2255 if (dev_priv->mm.gtt_mtrr >= 0) {
2256 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2257 dev->agp->agp_info.aper_size * 1024 * 1024);
2258 dev_priv->mm.gtt_mtrr = -1;
2259 }
2260
Chris Wilson44834a62010-08-19 16:09:23 +01002261 acpi_video_unregister();
2262
Jesse Barnes79e53942008-11-07 14:24:08 -08002263 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002264 intel_modeset_cleanup(dev);
2265
Zhao Yakui6363ee62009-11-24 09:48:44 +08002266 /*
2267 * free the memory space allocated for the child device
2268 * config parsed from VBT
2269 */
2270 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2271 kfree(dev_priv->child_dev);
2272 dev_priv->child_dev = NULL;
2273 dev_priv->child_dev_num = 0;
2274 }
Daniel Vetter6c0d93502010-08-20 18:26:46 +02002275
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002276 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002277 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002278 }
2279
Daniel Vettera8b48992010-08-20 21:25:11 +02002280 /* Free error state after interrupts are fully disabled. */
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002281 del_timer_sync(&dev_priv->hangcheck_timer);
2282 cancel_work_sync(&dev_priv->error_work);
Daniel Vettera8b48992010-08-20 21:25:11 +02002283 i915_destroy_error_state(dev);
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002284
Eric Anholted4cb412008-07-29 12:10:39 -07002285 if (dev->pdev->msi_enabled)
2286 pci_disable_msi(dev->pdev);
2287
Eric Anholt3043c602008-10-02 12:24:47 -07002288 if (dev_priv->regs != NULL)
2289 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002290
Chris Wilson44834a62010-08-19 16:09:23 +01002291 intel_opregion_fini(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002292
Jesse Barnes79e53942008-11-07 14:24:08 -08002293 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetter67e77c52010-08-20 22:26:30 +02002294 /* Flush any outstanding unpin_work. */
2295 flush_workqueue(dev_priv->wq);
2296
Dave Airlie71acb5e2008-12-30 20:31:46 +10002297 i915_gem_free_all_phys_object(dev);
2298
Jesse Barnes79e53942008-11-07 14:24:08 -08002299 mutex_lock(&dev->struct_mutex);
2300 i915_gem_cleanup_ringbuffer(dev);
2301 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002302 if (I915_HAS_FBC(dev) && i915_powersave)
2303 i915_cleanup_compression(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002304 drm_mm_takedown(&dev_priv->vram);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002305
2306 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002307 }
2308
Zhenyu Wangc48044112009-12-17 14:48:43 +08002309 intel_teardown_mchbar(dev);
2310
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02002311 destroy_workqueue(dev_priv->wq);
2312
Dave Airlieec2a4c32009-08-04 11:43:41 +10002313 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002314 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002315
Dave Airlie22eae942005-11-10 22:16:34 +11002316 return 0;
2317}
2318
Eric Anholt673a3942008-07-30 12:06:12 -07002319int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
2320{
2321 struct drm_i915_file_private *i915_file_priv;
2322
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002323 DRM_DEBUG_DRIVER("\n");
Eric Anholt673a3942008-07-30 12:06:12 -07002324 i915_file_priv = (struct drm_i915_file_private *)
Eric Anholt9a298b22009-03-24 12:23:04 -07002325 kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07002326
2327 if (!i915_file_priv)
2328 return -ENOMEM;
2329
2330 file_priv->driver_priv = i915_file_priv;
2331
Eric Anholtb9624422009-06-03 07:27:35 +00002332 INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002333
2334 return 0;
2335}
2336
Jesse Barnes79e53942008-11-07 14:24:08 -08002337/**
2338 * i915_driver_lastclose - clean up after all DRM clients have exited
2339 * @dev: DRM device
2340 *
2341 * Take care of cleaning up after all DRM clients have exited. In the
2342 * mode setting case, we want to restore the kernel's initial mode (just
2343 * in case the last client left us in a bad state).
2344 *
2345 * Additionally, in the non-mode setting case, we'll tear down the AGP
2346 * and DMA structures, since the kernel won't be using them, and clea
2347 * up any GEM state.
2348 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002349void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002351 drm_i915_private_t *dev_priv = dev->dev_private;
2352
Jesse Barnes79e53942008-11-07 14:24:08 -08002353 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10002354 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002355 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002356 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002357 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002358
Eric Anholt673a3942008-07-30 12:06:12 -07002359 i915_gem_lastclose(dev);
2360
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002361 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002362 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002363
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002364 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
Eric Anholt6c340ea2007-08-25 20:23:09 +10002367void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002369 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00002370 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08002371 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2372 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
Eric Anholt673a3942008-07-30 12:06:12 -07002375void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
2376{
2377 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
2378
Eric Anholt9a298b22009-03-24 12:23:04 -07002379 kfree(i915_file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002380}
2381
Eric Anholtc153f452007-09-03 12:06:45 +10002382struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002383 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2384 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2385 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2386 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2387 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2388 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2389 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2390 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2391 DRM_IOCTL_DEF_DRV(I915_ALLOC, i915_mem_alloc, DRM_AUTH),
2392 DRM_IOCTL_DEF_DRV(I915_FREE, i915_mem_free, DRM_AUTH),
2393 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2394 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
2395 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2396 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2397 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2398 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2399 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2400 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2401 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2402 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2403 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2404 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2405 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2406 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2407 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2408 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2409 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2410 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2411 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2412 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2413 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2414 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2415 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2416 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2417 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2418 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2419 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2420 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2421 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2422 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002423};
2424
2425int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002426
2427/**
2428 * Determine if the device really is AGP or not.
2429 *
2430 * All Intel graphics chipsets are treated as AGP, even if they are really
2431 * PCI-e.
2432 *
2433 * \param dev The device to be tested.
2434 *
2435 * \returns
2436 * A value of 1 is always retured to indictate every i9x5 is AGP.
2437 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002438int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002439{
2440 return 1;
2441}