blob: 19677ecfe2bf86ce71fcb4b8d9af855f0424c99b [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"
Dave Airlie28d52042009-09-21 14:33:58 +100037#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080038#include <linux/acpi.h>
39#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100040#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Keith Packard398c9cb2008-07-30 13:03:43 -070043/**
44 * Sets up the hardware status page for devices that need a physical address
45 * in the register.
46 */
Eric Anholt3043c602008-10-02 12:24:47 -070047static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070048{
49 drm_i915_private_t *dev_priv = dev->dev_private;
50 /* Program Hardware Status Page */
51 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080052 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070053
54 if (!dev_priv->status_page_dmah) {
55 DRM_ERROR("Can not allocate hardware status page\n");
56 return -ENOMEM;
57 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +080058 dev_priv->render_ring.status_page.page_addr
59 = dev_priv->status_page_dmah->vaddr;
Keith Packard398c9cb2008-07-30 13:03:43 -070060 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
61
Zou Nan hai8187a2b2010-05-21 09:08:55 +080062 memset(dev_priv->render_ring.status_page.page_addr, 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070063
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080064 if (IS_I965G(dev))
65 dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) &
66 0xf0;
67
Keith Packard398c9cb2008-07-30 13:03:43 -070068 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080069 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070070 return 0;
71}
72
73/**
74 * Frees the hardware status page, whether it's a physical address or a virtual
75 * address set up by the X Server.
76 */
Eric Anholt3043c602008-10-02 12:24:47 -070077static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070078{
79 drm_i915_private_t *dev_priv = dev->dev_private;
80 if (dev_priv->status_page_dmah) {
81 drm_pci_free(dev, dev_priv->status_page_dmah);
82 dev_priv->status_page_dmah = NULL;
83 }
84
Zou Nan hai852835f2010-05-21 09:08:56 +080085 if (dev_priv->render_ring.status_page.gfx_addr) {
86 dev_priv->render_ring.status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -070087 drm_core_ioremapfree(&dev_priv->hws_map, dev);
88 }
89
90 /* Need to rewrite hardware status page */
91 I915_WRITE(HWS_PGA, 0x1ffff000);
92}
93
Dave Airlie84b1fd12007-07-11 15:53:27 +100094void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +100097 struct drm_i915_master_private *master_priv;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080098 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Jesse Barnes79e53942008-11-07 14:24:08 -0800100 /*
101 * We should never lose context on the ring with modesetting
102 * as we don't expose it to userspace
103 */
104 if (drm_core_check_feature(dev, DRIVER_MODESET))
105 return;
106
Jesse Barnes585fb112008-07-29 11:54:06 -0700107 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
108 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ring->space = ring->head - (ring->tail + 8);
110 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800111 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Dave Airlie7c1c2872008-11-28 14:22:24 +1000113 if (!dev->primary->master)
114 return;
115
116 master_priv = dev->primary->master->driver_priv;
117 if (ring->head == ring->tail && master_priv->sarea_priv)
118 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Dave Airlie84b1fd12007-07-11 15:53:27 +1000121static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000123 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* Make sure interrupts are disabled here because the uninstall ioctl
125 * may not have been called from userspace and after dev_private
126 * is freed, it's too late.
127 */
Eric Anholted4cb412008-07-29 12:10:39 -0700128 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000129 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200131 mutex_lock(&dev->struct_mutex);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800132 intel_cleanup_ring_buffer(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800133 if (HAS_BSD(dev))
134 intel_cleanup_ring_buffer(dev, &dev_priv->bsd_ring);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200135 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Keith Packard398c9cb2008-07-30 13:03:43 -0700137 /* Clear the HWS virtual address at teardown */
138 if (I915_NEED_GFX_HWS(dev))
139 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 return 0;
142}
143
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000144static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000146 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000147 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dave Airlie3a03ac12009-01-11 09:03:49 +1000149 master_priv->sarea = drm_getsarea(dev);
150 if (master_priv->sarea) {
151 master_priv->sarea_priv = (drm_i915_sarea_t *)
152 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
153 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800154 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000155 }
156
Eric Anholt673a3942008-07-30 12:06:12 -0700157 if (init->ring_size != 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800158 if (dev_priv->render_ring.gem_object != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700159 i915_dma_cleanup(dev);
160 DRM_ERROR("Client tried to initialize ringbuffer in "
161 "GEM mode\n");
162 return -EINVAL;
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800165 dev_priv->render_ring.size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Eric Anholtd3301d82010-05-21 13:55:54 -0700167 dev_priv->render_ring.map.offset = init->ring_start;
168 dev_priv->render_ring.map.size = init->ring_size;
169 dev_priv->render_ring.map.type = 0;
170 dev_priv->render_ring.map.flags = 0;
171 dev_priv->render_ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Eric Anholtd3301d82010-05-21 13:55:54 -0700173 drm_core_ioremap_wc(&dev_priv->render_ring.map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700174
Eric Anholtd3301d82010-05-21 13:55:54 -0700175 if (dev_priv->render_ring.map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700176 i915_dma_cleanup(dev);
177 DRM_ERROR("can not ioremap virtual address for"
178 " ring buffer\n");
179 return -ENOMEM;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
Eric Anholtd3301d82010-05-21 13:55:54 -0700183 dev_priv->render_ring.virtual_start = dev_priv->render_ring.map.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000185 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 dev_priv->back_offset = init->back_offset;
187 dev_priv->front_offset = init->front_offset;
188 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000189 if (master_priv->sarea_priv)
190 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /* Allow hardware batchbuffers unless told otherwise.
193 */
194 dev_priv->allow_batchbuffer = 1;
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 0;
197}
198
Dave Airlie84b1fd12007-07-11 15:53:27 +1000199static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
202
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800203 struct intel_ring_buffer *ring;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800204 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800206 ring = &dev_priv->render_ring;
207
208 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 DRM_ERROR("can not ioremap virtual address for"
210 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000211 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800215 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000217 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800219 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800220 ring->status_page.page_addr);
221 if (ring->status_page.gfx_addr != 0)
222 ring->setup_status_page(dev, ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000223 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700224 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800225
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800226 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 return 0;
229}
230
Eric Anholtc153f452007-09-03 12:06:45 +1000231static int i915_dma_init(struct drm_device *dev, void *data,
232 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Eric Anholtc153f452007-09-03 12:06:45 +1000234 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 int retcode = 0;
236
Eric Anholtc153f452007-09-03 12:06:45 +1000237 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000239 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
241 case I915_CLEANUP_DMA:
242 retcode = i915_dma_cleanup(dev);
243 break;
244 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100245 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000248 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 break;
250 }
251
252 return retcode;
253}
254
255/* Implement basically the same security restrictions as hardware does
256 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
257 *
258 * Most of the calculations below involve calculating the size of a
259 * particular instruction. It's important to get the size right as
260 * that tells us where the next instruction to check is. Any illegal
261 * instruction detected will be given a size of zero, which is a
262 * signal to abort the rest of the buffer.
263 */
264static int do_validate_cmd(int cmd)
265{
266 switch (((cmd >> 29) & 0x7)) {
267 case 0x0:
268 switch ((cmd >> 23) & 0x3f) {
269 case 0x0:
270 return 1; /* MI_NOOP */
271 case 0x4:
272 return 1; /* MI_FLUSH */
273 default:
274 return 0; /* disallow everything else */
275 }
276 break;
277 case 0x1:
278 return 0; /* reserved */
279 case 0x2:
280 return (cmd & 0xff) + 2; /* 2d commands */
281 case 0x3:
282 if (((cmd >> 24) & 0x1f) <= 0x18)
283 return 1;
284
285 switch ((cmd >> 24) & 0x1f) {
286 case 0x1c:
287 return 1;
288 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000289 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 case 0x3:
291 return (cmd & 0x1f) + 2;
292 case 0x4:
293 return (cmd & 0xf) + 2;
294 default:
295 return (cmd & 0xffff) + 2;
296 }
297 case 0x1e:
298 if (cmd & (1 << 23))
299 return (cmd & 0xffff) + 1;
300 else
301 return 1;
302 case 0x1f:
303 if ((cmd & (1 << 23)) == 0) /* inline vertices */
304 return (cmd & 0x1ffff) + 2;
305 else if (cmd & (1 << 17)) /* indirect random */
306 if ((cmd & 0xffff) == 0)
307 return 0; /* unknown length, too hard */
308 else
309 return (((cmd & 0xffff) + 1) / 2) + 1;
310 else
311 return 2; /* indirect sequential */
312 default:
313 return 0;
314 }
315 default:
316 return 0;
317 }
318
319 return 0;
320}
321
322static int validate_cmd(int cmd)
323{
324 int ret = do_validate_cmd(cmd);
325
Dave Airliebc5f4522007-11-05 12:50:58 +1000326/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 return ret;
329}
330
Eric Anholt201361a2009-03-11 12:30:04 -0700331static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 drm_i915_private_t *dev_priv = dev->dev_private;
334 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800336 if ((dwords+1) * sizeof(int) >= dev_priv->render_ring.size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000337 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100338
Alan Hourihanec29b6692006-08-12 16:29:24 +1000339 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 for (i = 0; i < dwords;) {
342 int cmd, sz;
343
Eric Anholt201361a2009-03-11 12:30:04 -0700344 cmd = buffer[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000347 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 OUT_RING(cmd);
350
351 while (++i, --sz) {
Eric Anholt201361a2009-03-11 12:30:04 -0700352 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
Dave Airliede227f52006-01-25 15:31:43 +1100356 if (dwords & 1)
357 OUT_RING(0);
358
359 ADVANCE_LP_RING();
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362}
363
Eric Anholt673a3942008-07-30 12:06:12 -0700364int
365i915_emit_box(struct drm_device *dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700366 struct drm_clip_rect *boxes,
Eric Anholt673a3942008-07-30 12:06:12 -0700367 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Eric Anholt201361a2009-03-11 12:30:04 -0700369 struct drm_clip_rect box = boxes[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
372 DRM_ERROR("Bad box %d,%d..%d,%d\n",
373 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000374 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Alan Hourihanec29b6692006-08-12 16:29:24 +1000377 if (IS_I965G(dev)) {
378 BEGIN_LP_RING(4);
379 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
380 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000381 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000382 OUT_RING(DR4);
383 ADVANCE_LP_RING();
384 } else {
385 BEGIN_LP_RING(6);
386 OUT_RING(GFX_OP_DRAWRECT_INFO);
387 OUT_RING(DR1);
388 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
389 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
390 OUT_RING(DR4);
391 OUT_RING(0);
392 ADVANCE_LP_RING();
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 return 0;
396}
397
Alan Hourihanec29b6692006-08-12 16:29:24 +1000398/* XXX: Emitting the counter should really be moved to part of the IRQ
399 * emit. For now, do it in both places:
400 */
401
Dave Airlie84b1fd12007-07-11 15:53:27 +1000402static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100403{
404 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000405 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100406
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400407 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000408 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400409 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000410 if (master_priv->sarea_priv)
411 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100412
413 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700414 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000415 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100416 OUT_RING(dev_priv->counter);
417 OUT_RING(0);
418 ADVANCE_LP_RING();
419}
420
Dave Airlie84b1fd12007-07-11 15:53:27 +1000421static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700422 drm_i915_cmdbuffer_t *cmd,
423 struct drm_clip_rect *cliprects,
424 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 int nbox = cmd->num_cliprects;
427 int i = 0, count, ret;
428
429 if (cmd->sz & 0x3) {
430 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000431 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
434 i915_kernel_lost_context(dev);
435
436 count = nbox ? nbox : 1;
437
438 for (i = 0; i < count; i++) {
439 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700440 ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 cmd->DR1, cmd->DR4);
442 if (ret)
443 return ret;
444 }
445
Eric Anholt201361a2009-03-11 12:30:04 -0700446 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (ret)
448 return ret;
449 }
450
Dave Airliede227f52006-01-25 15:31:43 +1100451 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return 0;
453}
454
Dave Airlie84b1fd12007-07-11 15:53:27 +1000455static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700456 drm_i915_batchbuffer_t * batch,
457 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int nbox = batch->num_cliprects;
460 int i = 0, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 if ((batch->start | batch->used) & 0x7) {
463 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000464 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466
467 i915_kernel_lost_context(dev);
468
469 count = nbox ? nbox : 1;
470
471 for (i = 0; i < count; i++) {
472 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700473 int ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 batch->DR1, batch->DR4);
475 if (ret)
476 return ret;
477 }
478
Keith Packard0790d5e2008-07-30 12:28:47 -0700479 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000481 if (IS_I965G(dev)) {
482 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
483 OUT_RING(batch->start);
484 } else {
485 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
486 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 ADVANCE_LP_RING();
489 } else {
490 BEGIN_LP_RING(4);
491 OUT_RING(MI_BATCH_BUFFER);
492 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
493 OUT_RING(batch->start + batch->used - 4);
494 OUT_RING(0);
495 ADVANCE_LP_RING();
496 }
497 }
498
Dave Airliede227f52006-01-25 15:31:43 +1100499 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 return 0;
502}
503
Dave Airlieaf6061a2008-05-07 12:15:39 +1000504static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000507 struct drm_i915_master_private *master_priv =
508 dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dave Airlie7c1c2872008-11-28 14:22:24 +1000510 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400511 return -EINVAL;
512
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800513 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800514 __func__,
515 dev_priv->current_page,
516 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Dave Airlieaf6061a2008-05-07 12:15:39 +1000518 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Dave Airlieaf6061a2008-05-07 12:15:39 +1000520 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700521 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000522 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 ADVANCE_LP_RING();
524
Dave Airlieaf6061a2008-05-07 12:15:39 +1000525 BEGIN_LP_RING(6);
526 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
527 OUT_RING(0);
528 if (dev_priv->current_page == 0) {
529 OUT_RING(dev_priv->back_offset);
530 dev_priv->current_page = 1;
531 } else {
532 OUT_RING(dev_priv->front_offset);
533 dev_priv->current_page = 0;
534 }
535 OUT_RING(0);
536 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000537
Dave Airlieaf6061a2008-05-07 12:15:39 +1000538 BEGIN_LP_RING(2);
539 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
540 OUT_RING(0);
541 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000542
Dave Airlie7c1c2872008-11-28 14:22:24 +1000543 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000544
Dave Airlieaf6061a2008-05-07 12:15:39 +1000545 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700546 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000547 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000548 OUT_RING(dev_priv->counter);
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->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000553 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Dave Airlie84b1fd12007-07-11 15:53:27 +1000556static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 drm_i915_private_t *dev_priv = dev->dev_private;
559
560 i915_kernel_lost_context(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800561 return intel_wait_ring_buffer(dev, &dev_priv->render_ring,
562 dev_priv->render_ring.size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Eric Anholtc153f452007-09-03 12:06:45 +1000565static int i915_flush_ioctl(struct drm_device *dev, void *data,
566 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Eric Anholt546b0972008-09-01 16:45:29 -0700568 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Eric Anholt546b0972008-09-01 16:45:29 -0700570 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
571
572 mutex_lock(&dev->struct_mutex);
573 ret = i915_quiescent(dev);
574 mutex_unlock(&dev->struct_mutex);
575
576 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Eric Anholtc153f452007-09-03 12:06:45 +1000579static int i915_batchbuffer(struct drm_device *dev, void *data,
580 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000583 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000585 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000586 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700588 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 if (!dev_priv->allow_batchbuffer) {
591 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000592 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800595 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800596 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Eric Anholt546b0972008-09-01 16:45:29 -0700598 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Eric Anholt201361a2009-03-11 12:30:04 -0700600 if (batch->num_cliprects < 0)
601 return -EINVAL;
602
603 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700604 cliprects = kcalloc(batch->num_cliprects,
605 sizeof(struct drm_clip_rect),
606 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700607 if (cliprects == NULL)
608 return -ENOMEM;
609
610 ret = copy_from_user(cliprects, batch->cliprects,
611 batch->num_cliprects *
612 sizeof(struct drm_clip_rect));
613 if (ret != 0)
614 goto fail_free;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Eric Anholt546b0972008-09-01 16:45:29 -0700617 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700618 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700619 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400621 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000622 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700623
624fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700625 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return ret;
628}
629
Eric Anholtc153f452007-09-03 12:06:45 +1000630static int i915_cmdbuffer(struct drm_device *dev, void *data,
631 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000634 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000636 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000637 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700638 struct drm_clip_rect *cliprects = NULL;
639 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int ret;
641
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800642 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800643 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Eric Anholt546b0972008-09-01 16:45:29 -0700645 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Anholt201361a2009-03-11 12:30:04 -0700647 if (cmdbuf->num_cliprects < 0)
648 return -EINVAL;
649
Eric Anholt9a298b22009-03-24 12:23:04 -0700650 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700651 if (batch_data == NULL)
652 return -ENOMEM;
653
654 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
655 if (ret != 0)
656 goto fail_batch_free;
657
658 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700659 cliprects = kcalloc(cmdbuf->num_cliprects,
660 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000661 if (cliprects == NULL) {
662 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700663 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000664 }
Eric Anholt201361a2009-03-11 12:30:04 -0700665
666 ret = copy_from_user(cliprects, cmdbuf->cliprects,
667 cmdbuf->num_cliprects *
668 sizeof(struct drm_clip_rect));
669 if (ret != 0)
670 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
Eric Anholt546b0972008-09-01 16:45:29 -0700673 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700674 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700675 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (ret) {
677 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000678 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400681 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000682 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700683
Eric Anholt201361a2009-03-11 12:30:04 -0700684fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700685 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000686fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700687 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700688
689 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Eric Anholtc153f452007-09-03 12:06:45 +1000692static int i915_flip_bufs(struct drm_device *dev, void *data,
693 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Eric Anholt546b0972008-09-01 16:45:29 -0700695 int ret;
696
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800697 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Eric Anholt546b0972008-09-01 16:45:29 -0700699 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Eric Anholt546b0972008-09-01 16:45:29 -0700701 mutex_lock(&dev->struct_mutex);
702 ret = i915_dispatch_flip(dev);
703 mutex_unlock(&dev->struct_mutex);
704
705 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Eric Anholtc153f452007-09-03 12:06:45 +1000708static int i915_getparam(struct drm_device *dev, void *data,
709 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000712 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 int value;
714
715 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000716 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000717 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Eric Anholtc153f452007-09-03 12:06:45 +1000720 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700722 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 break;
724 case I915_PARAM_ALLOW_BATCHBUFFER:
725 value = dev_priv->allow_batchbuffer ? 1 : 0;
726 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100727 case I915_PARAM_LAST_DISPATCH:
728 value = READ_BREADCRUMB(dev_priv);
729 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400730 case I915_PARAM_CHIPSET_ID:
731 value = dev->pci_device;
732 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700733 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000734 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700735 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800736 case I915_PARAM_NUM_FENCES_AVAIL:
737 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
738 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200739 case I915_PARAM_HAS_OVERLAY:
740 value = dev_priv->overlay ? 1 : 0;
741 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800742 case I915_PARAM_HAS_PAGEFLIPPING:
743 value = 1;
744 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500745 case I915_PARAM_HAS_EXECBUF2:
746 /* depends on GEM */
747 value = dev_priv->has_gem;
748 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800749 case I915_PARAM_HAS_BSD:
750 value = HAS_BSD(dev);
751 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800753 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500754 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000755 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Eric Anholtc153f452007-09-03 12:06:45 +1000758 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000760 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
763 return 0;
764}
765
Eric Anholtc153f452007-09-03 12:06:45 +1000766static int i915_setparam(struct drm_device *dev, void *data,
767 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000770 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000773 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000774 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Eric Anholtc153f452007-09-03 12:06:45 +1000777 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 break;
780 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000781 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 break;
783 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000784 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800786 case I915_SETPARAM_NUM_USED_FENCES:
787 if (param->value > dev_priv->num_fence_regs ||
788 param->value < 0)
789 return -EINVAL;
790 /* Userspace can use first N regs */
791 dev_priv->fence_reg_start = param->value;
792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800794 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800795 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000796 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
799 return 0;
800}
801
Eric Anholtc153f452007-09-03 12:06:45 +1000802static int i915_set_status_page(struct drm_device *dev, void *data,
803 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000804{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000805 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000806 drm_i915_hws_addr_t *hws = data;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800807 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000808
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000809 if (!I915_NEED_GFX_HWS(dev))
810 return -EINVAL;
811
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000812 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000813 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000814 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000815 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000816
Jesse Barnes79e53942008-11-07 14:24:08 -0800817 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
818 WARN(1, "tried to set status page when mode setting active\n");
819 return 0;
820 }
821
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800822 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000823
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800824 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000825
Eric Anholt8b409582007-11-22 16:40:37 +1000826 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000827 dev_priv->hws_map.size = 4*1024;
828 dev_priv->hws_map.type = 0;
829 dev_priv->hws_map.flags = 0;
830 dev_priv->hws_map.mtrr = 0;
831
Dave Airliedd0910b2009-02-25 14:49:21 +1000832 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000833 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000834 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700835 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000836 DRM_ERROR("can not ioremap virtual address for"
837 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000838 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000839 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800840 ring->status_page.page_addr = dev_priv->hws_map.handle;
841 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
842 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000843
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800844 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700845 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800846 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700847 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000848 return 0;
849}
850
Dave Airlieec2a4c32009-08-04 11:43:41 +1000851static int i915_get_bridge_dev(struct drm_device *dev)
852{
853 struct drm_i915_private *dev_priv = dev->dev_private;
854
855 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
856 if (!dev_priv->bridge_dev) {
857 DRM_ERROR("bridge device not found\n");
858 return -1;
859 }
860 return 0;
861}
862
Zhenyu Wangc48044112009-12-17 14:48:43 +0800863#define MCHBAR_I915 0x44
864#define MCHBAR_I965 0x48
865#define MCHBAR_SIZE (4*4096)
866
867#define DEVEN_REG 0x54
868#define DEVEN_MCHBAR_EN (1 << 28)
869
870/* Allocate space for the MCH regs if needed, return nonzero on error */
871static int
872intel_alloc_mchbar_resource(struct drm_device *dev)
873{
874 drm_i915_private_t *dev_priv = dev->dev_private;
875 int reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
876 u32 temp_lo, temp_hi = 0;
877 u64 mchbar_addr;
878 int ret = 0;
879
880 if (IS_I965G(dev))
881 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
882 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
883 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
884
885 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
886#ifdef CONFIG_PNP
887 if (mchbar_addr &&
888 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) {
889 ret = 0;
890 goto out;
891 }
892#endif
893
894 /* Get some space for it */
895 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus, &dev_priv->mch_res,
896 MCHBAR_SIZE, MCHBAR_SIZE,
897 PCIBIOS_MIN_MEM,
898 0, pcibios_align_resource,
899 dev_priv->bridge_dev);
900 if (ret) {
901 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
902 dev_priv->mch_res.start = 0;
903 goto out;
904 }
905
906 if (IS_I965G(dev))
907 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
908 upper_32_bits(dev_priv->mch_res.start));
909
910 pci_write_config_dword(dev_priv->bridge_dev, reg,
911 lower_32_bits(dev_priv->mch_res.start));
912out:
913 return ret;
914}
915
916/* Setup MCHBAR if possible, return true if we should disable it again */
917static void
918intel_setup_mchbar(struct drm_device *dev)
919{
920 drm_i915_private_t *dev_priv = dev->dev_private;
921 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
922 u32 temp;
923 bool enabled;
924
925 dev_priv->mchbar_need_disable = false;
926
927 if (IS_I915G(dev) || IS_I915GM(dev)) {
928 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
929 enabled = !!(temp & DEVEN_MCHBAR_EN);
930 } else {
931 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
932 enabled = temp & 1;
933 }
934
935 /* If it's already enabled, don't have to do anything */
936 if (enabled)
937 return;
938
939 if (intel_alloc_mchbar_resource(dev))
940 return;
941
942 dev_priv->mchbar_need_disable = true;
943
944 /* Space is allocated or reserved, so enable it. */
945 if (IS_I915G(dev) || IS_I915GM(dev)) {
946 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
947 temp | DEVEN_MCHBAR_EN);
948 } else {
949 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
950 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
951 }
952}
953
954static void
955intel_teardown_mchbar(struct drm_device *dev)
956{
957 drm_i915_private_t *dev_priv = dev->dev_private;
958 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
959 u32 temp;
960
961 if (dev_priv->mchbar_need_disable) {
962 if (IS_I915G(dev) || IS_I915GM(dev)) {
963 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
964 temp &= ~DEVEN_MCHBAR_EN;
965 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
966 } else {
967 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
968 temp &= ~1;
969 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
970 }
971 }
972
973 if (dev_priv->mch_res.start)
974 release_resource(&dev_priv->mch_res);
975}
976
Jesse Barnes79e53942008-11-07 14:24:08 -0800977/**
978 * i915_probe_agp - get AGP bootup configuration
979 * @pdev: PCI device
980 * @aperture_size: returns AGP aperture configured size
981 * @preallocated_size: returns size of BIOS preallocated AGP space
982 *
983 * Since Intel integrated graphics are UMA, the BIOS has to set aside
984 * some RAM for the framebuffer at early boot. This code figures out
985 * how much was set aside so we can use it for our own purposes.
986 */
Eric Anholt2a34f5e62009-07-02 09:30:50 -0700987static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size,
Jesse Barnes80824002009-09-10 15:28:06 -0700988 uint32_t *preallocated_size,
989 uint32_t *start)
Jesse Barnes79e53942008-11-07 14:24:08 -0800990{
Dave Airlieec2a4c32009-08-04 11:43:41 +1000991 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800992 u16 tmp = 0;
993 unsigned long overhead;
Eric Anholt241fa852009-01-02 18:05:51 -0800994 unsigned long stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -0800995
Jesse Barnes79e53942008-11-07 14:24:08 -0800996 /* Get the fb aperture size and "stolen" memory amount. */
Dave Airlieec2a4c32009-08-04 11:43:41 +1000997 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &tmp);
Jesse Barnes79e53942008-11-07 14:24:08 -0800998
999 *aperture_size = 1024 * 1024;
1000 *preallocated_size = 1024 * 1024;
1001
Eric Anholt60fd99e2008-12-03 22:50:02 -08001002 switch (dev->pdev->device) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001003 case PCI_DEVICE_ID_INTEL_82830_CGC:
1004 case PCI_DEVICE_ID_INTEL_82845G_IG:
1005 case PCI_DEVICE_ID_INTEL_82855GM_IG:
1006 case PCI_DEVICE_ID_INTEL_82865_IG:
1007 if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
1008 *aperture_size *= 64;
1009 else
1010 *aperture_size *= 128;
1011 break;
1012 default:
1013 /* 9xx supports large sizes, just look at the length */
Eric Anholt60fd99e2008-12-03 22:50:02 -08001014 *aperture_size = pci_resource_len(dev->pdev, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001015 break;
1016 }
1017
1018 /*
1019 * Some of the preallocated space is taken by the GTT
1020 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
1021 */
Eric Anholtbad720f2009-10-22 16:11:14 -07001022 if (IS_G4X(dev) || IS_PINEVIEW(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev))
Eric Anholt60fd99e2008-12-03 22:50:02 -08001023 overhead = 4096;
1024 else
1025 overhead = (*aperture_size / 1024) + 4096;
1026
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001027 if (IS_GEN6(dev)) {
1028 /* SNB has memory control reg at 0x50.w */
1029 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &tmp);
1030
1031 switch (tmp & SNB_GMCH_GMS_STOLEN_MASK) {
1032 case INTEL_855_GMCH_GMS_DISABLED:
Eric Anholtbad720f2009-10-22 16:11:14 -07001033 DRM_ERROR("video memory is disabled\n");
1034 return -1;
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001035 case SNB_GMCH_GMS_STOLEN_32M:
1036 stolen = 32 * 1024 * 1024;
1037 break;
1038 case SNB_GMCH_GMS_STOLEN_64M:
1039 stolen = 64 * 1024 * 1024;
1040 break;
1041 case SNB_GMCH_GMS_STOLEN_96M:
1042 stolen = 96 * 1024 * 1024;
1043 break;
1044 case SNB_GMCH_GMS_STOLEN_128M:
1045 stolen = 128 * 1024 * 1024;
1046 break;
1047 case SNB_GMCH_GMS_STOLEN_160M:
1048 stolen = 160 * 1024 * 1024;
1049 break;
1050 case SNB_GMCH_GMS_STOLEN_192M:
1051 stolen = 192 * 1024 * 1024;
1052 break;
1053 case SNB_GMCH_GMS_STOLEN_224M:
1054 stolen = 224 * 1024 * 1024;
1055 break;
1056 case SNB_GMCH_GMS_STOLEN_256M:
1057 stolen = 256 * 1024 * 1024;
1058 break;
1059 case SNB_GMCH_GMS_STOLEN_288M:
1060 stolen = 288 * 1024 * 1024;
1061 break;
1062 case SNB_GMCH_GMS_STOLEN_320M:
1063 stolen = 320 * 1024 * 1024;
1064 break;
1065 case SNB_GMCH_GMS_STOLEN_352M:
1066 stolen = 352 * 1024 * 1024;
1067 break;
1068 case SNB_GMCH_GMS_STOLEN_384M:
1069 stolen = 384 * 1024 * 1024;
1070 break;
1071 case SNB_GMCH_GMS_STOLEN_416M:
1072 stolen = 416 * 1024 * 1024;
1073 break;
1074 case SNB_GMCH_GMS_STOLEN_448M:
1075 stolen = 448 * 1024 * 1024;
1076 break;
1077 case SNB_GMCH_GMS_STOLEN_480M:
1078 stolen = 480 * 1024 * 1024;
1079 break;
1080 case SNB_GMCH_GMS_STOLEN_512M:
1081 stolen = 512 * 1024 * 1024;
1082 break;
1083 default:
1084 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1085 tmp & SNB_GMCH_GMS_STOLEN_MASK);
1086 return -1;
Eric Anholtbad720f2009-10-22 16:11:14 -07001087 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001088 } else {
1089 switch (tmp & INTEL_GMCH_GMS_MASK) {
1090 case INTEL_855_GMCH_GMS_DISABLED:
1091 DRM_ERROR("video memory is disabled\n");
1092 return -1;
1093 case INTEL_855_GMCH_GMS_STOLEN_1M:
1094 stolen = 1 * 1024 * 1024;
1095 break;
1096 case INTEL_855_GMCH_GMS_STOLEN_4M:
1097 stolen = 4 * 1024 * 1024;
1098 break;
1099 case INTEL_855_GMCH_GMS_STOLEN_8M:
1100 stolen = 8 * 1024 * 1024;
1101 break;
1102 case INTEL_855_GMCH_GMS_STOLEN_16M:
1103 stolen = 16 * 1024 * 1024;
1104 break;
1105 case INTEL_855_GMCH_GMS_STOLEN_32M:
1106 stolen = 32 * 1024 * 1024;
1107 break;
1108 case INTEL_915G_GMCH_GMS_STOLEN_48M:
1109 stolen = 48 * 1024 * 1024;
1110 break;
1111 case INTEL_915G_GMCH_GMS_STOLEN_64M:
1112 stolen = 64 * 1024 * 1024;
1113 break;
1114 case INTEL_GMCH_GMS_STOLEN_128M:
1115 stolen = 128 * 1024 * 1024;
1116 break;
1117 case INTEL_GMCH_GMS_STOLEN_256M:
1118 stolen = 256 * 1024 * 1024;
1119 break;
1120 case INTEL_GMCH_GMS_STOLEN_96M:
1121 stolen = 96 * 1024 * 1024;
1122 break;
1123 case INTEL_GMCH_GMS_STOLEN_160M:
1124 stolen = 160 * 1024 * 1024;
1125 break;
1126 case INTEL_GMCH_GMS_STOLEN_224M:
1127 stolen = 224 * 1024 * 1024;
1128 break;
1129 case INTEL_GMCH_GMS_STOLEN_352M:
1130 stolen = 352 * 1024 * 1024;
1131 break;
1132 default:
1133 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1134 tmp & INTEL_GMCH_GMS_MASK);
1135 return -1;
1136 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001137 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001138
Eric Anholt241fa852009-01-02 18:05:51 -08001139 *preallocated_size = stolen - overhead;
Jesse Barnes80824002009-09-10 15:28:06 -07001140 *start = overhead;
Jesse Barnes79e53942008-11-07 14:24:08 -08001141
1142 return 0;
1143}
1144
Jesse Barnes80824002009-09-10 15:28:06 -07001145#define PTE_ADDRESS_MASK 0xfffff000
1146#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1147#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1148#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1149#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1150#define PTE_MAPPING_TYPE_MASK (3 << 1)
1151#define PTE_VALID (1 << 0)
1152
1153/**
1154 * i915_gtt_to_phys - take a GTT address and turn it into a physical one
1155 * @dev: drm device
1156 * @gtt_addr: address to translate
1157 *
1158 * Some chip functions require allocations from stolen space but need the
1159 * physical address of the memory in question. We use this routine
1160 * to get a physical address suitable for register programming from a given
1161 * GTT address.
1162 */
1163static unsigned long i915_gtt_to_phys(struct drm_device *dev,
1164 unsigned long gtt_addr)
1165{
1166 unsigned long *gtt;
1167 unsigned long entry, phys;
1168 int gtt_bar = IS_I9XX(dev) ? 0 : 1;
1169 int gtt_offset, gtt_size;
1170
1171 if (IS_I965G(dev)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001172 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001173 gtt_offset = 2*1024*1024;
1174 gtt_size = 2*1024*1024;
1175 } else {
1176 gtt_offset = 512*1024;
1177 gtt_size = 512*1024;
1178 }
1179 } else {
1180 gtt_bar = 3;
1181 gtt_offset = 0;
1182 gtt_size = pci_resource_len(dev->pdev, gtt_bar);
1183 }
1184
1185 gtt = ioremap_wc(pci_resource_start(dev->pdev, gtt_bar) + gtt_offset,
1186 gtt_size);
1187 if (!gtt) {
1188 DRM_ERROR("ioremap of GTT failed\n");
1189 return 0;
1190 }
1191
1192 entry = *(volatile u32 *)(gtt + (gtt_addr / 1024));
1193
Zhao Yakui44d98a62009-10-09 11:39:40 +08001194 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, PTE: 0x%08lx\n", gtt_addr, entry);
Jesse Barnes80824002009-09-10 15:28:06 -07001195
1196 /* Mask out these reserved bits on this hardware. */
1197 if (!IS_I9XX(dev) || IS_I915G(dev) || IS_I915GM(dev) ||
1198 IS_I945G(dev) || IS_I945GM(dev)) {
1199 entry &= ~PTE_ADDRESS_MASK_HIGH;
1200 }
1201
1202 /* If it's not a mapping type we know, then bail. */
1203 if ((entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_UNCACHED &&
1204 (entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_CACHED) {
1205 iounmap(gtt);
1206 return 0;
1207 }
1208
1209 if (!(entry & PTE_VALID)) {
1210 DRM_ERROR("bad GTT entry in stolen space\n");
1211 iounmap(gtt);
1212 return 0;
1213 }
1214
1215 iounmap(gtt);
1216
1217 phys =(entry & PTE_ADDRESS_MASK) |
1218 ((uint64_t)(entry & PTE_ADDRESS_MASK_HIGH) << (32 - 4));
1219
Zhao Yakui44d98a62009-10-09 11:39:40 +08001220 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, phys addr: 0x%08lx\n", gtt_addr, phys);
Jesse Barnes80824002009-09-10 15:28:06 -07001221
1222 return phys;
1223}
1224
1225static void i915_warn_stolen(struct drm_device *dev)
1226{
1227 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1228 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1229}
1230
1231static void i915_setup_compression(struct drm_device *dev, int size)
1232{
1233 struct drm_i915_private *dev_priv = dev->dev_private;
1234 struct drm_mm_node *compressed_fb, *compressed_llb;
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001235 unsigned long cfb_base;
1236 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001237
1238 /* Leave 1M for line length buffer & misc. */
1239 compressed_fb = drm_mm_search_free(&dev_priv->vram, size, 4096, 0);
1240 if (!compressed_fb) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001241 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001242 i915_warn_stolen(dev);
1243 return;
1244 }
1245
1246 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1247 if (!compressed_fb) {
1248 i915_warn_stolen(dev);
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001249 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001250 return;
1251 }
1252
Jesse Barnes74dff282009-09-14 15:39:40 -07001253 cfb_base = i915_gtt_to_phys(dev, compressed_fb->start);
1254 if (!cfb_base) {
1255 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1256 drm_mm_put_block(compressed_fb);
Jesse Barnes80824002009-09-10 15:28:06 -07001257 }
1258
Jesse Barnes74dff282009-09-14 15:39:40 -07001259 if (!IS_GM45(dev)) {
1260 compressed_llb = drm_mm_search_free(&dev_priv->vram, 4096,
1261 4096, 0);
1262 if (!compressed_llb) {
1263 i915_warn_stolen(dev);
1264 return;
1265 }
1266
1267 compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096);
1268 if (!compressed_llb) {
1269 i915_warn_stolen(dev);
1270 return;
1271 }
1272
1273 ll_base = i915_gtt_to_phys(dev, compressed_llb->start);
1274 if (!ll_base) {
1275 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1276 drm_mm_put_block(compressed_fb);
1277 drm_mm_put_block(compressed_llb);
1278 }
Jesse Barnes80824002009-09-10 15:28:06 -07001279 }
1280
1281 dev_priv->cfb_size = size;
1282
Adam Jacksonee5382a2010-04-23 11:17:39 -04001283 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001284 dev_priv->compressed_fb = compressed_fb;
1285
Jesse Barnes74dff282009-09-14 15:39:40 -07001286 if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001287 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1288 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001289 I915_WRITE(FBC_CFB_BASE, cfb_base);
1290 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001291 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001292 }
1293
Jesse Barnes80824002009-09-10 15:28:06 -07001294 DRM_DEBUG("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base,
1295 ll_base, size >> 20);
Jesse Barnes80824002009-09-10 15:28:06 -07001296}
1297
Jesse Barnes20bf3772010-04-21 11:39:22 -07001298static void i915_cleanup_compression(struct drm_device *dev)
1299{
1300 struct drm_i915_private *dev_priv = dev->dev_private;
1301
1302 drm_mm_put_block(dev_priv->compressed_fb);
1303 if (!IS_GM45(dev))
1304 drm_mm_put_block(dev_priv->compressed_llb);
1305}
1306
Dave Airlie28d52042009-09-21 14:33:58 +10001307/* true = enable decode, false = disable decoder */
1308static unsigned int i915_vga_set_decode(void *cookie, bool state)
1309{
1310 struct drm_device *dev = cookie;
1311
1312 intel_modeset_vga_set_state(dev, state);
1313 if (state)
1314 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1315 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1316 else
1317 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1318}
1319
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001320static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1321{
1322 struct drm_device *dev = pci_get_drvdata(pdev);
1323 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1324 if (state == VGA_SWITCHEROO_ON) {
1325 printk(KERN_INFO "i915: switched off\n");
1326 /* i915 resume handler doesn't set to D0 */
1327 pci_set_power_state(dev->pdev, PCI_D0);
1328 i915_resume(dev);
1329 } else {
1330 printk(KERN_ERR "i915: switched off\n");
1331 i915_suspend(dev, pmm);
1332 }
1333}
1334
1335static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1336{
1337 struct drm_device *dev = pci_get_drvdata(pdev);
1338 bool can_switch;
1339
1340 spin_lock(&dev->count_lock);
1341 can_switch = (dev->open_count == 0);
1342 spin_unlock(&dev->count_lock);
1343 return can_switch;
1344}
1345
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001346static int i915_load_modeset_init(struct drm_device *dev,
Jesse Barnes80824002009-09-10 15:28:06 -07001347 unsigned long prealloc_start,
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001348 unsigned long prealloc_size,
1349 unsigned long agp_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001350{
1351 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001352 int fb_bar = IS_I9XX(dev) ? 2 : 0;
1353 int ret = 0;
1354
1355 dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
1356 0xff000000;
1357
Jesse Barnes79e53942008-11-07 14:24:08 -08001358 /* Basic memrange allocator for stolen space (aka vram) */
1359 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
Jesse Barnes80824002009-09-10 15:28:06 -07001360 DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024));
Jesse Barnes79e53942008-11-07 14:24:08 -08001361
Ben Gamari11ed50e2009-09-14 17:48:45 -04001362 /* We're off and running w/KMS */
1363 dev_priv->mm.suspended = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001364
Eric Anholt13f4c432009-05-12 15:27:36 -07001365 /* Let GEM Manage from end of prealloc space to end of aperture.
1366 *
1367 * However, leave one page at the end still bound to the scratch page.
1368 * There are a number of places where the hardware apparently
1369 * prefetches past the end of the object, and we've seen multiple
1370 * hangs with the GPU head pointer stuck in a batchbuffer bound
1371 * at the last page of the aperture. One page should be enough to
1372 * keep any prefetching inside of the aperture.
1373 */
1374 i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
Jesse Barnes79e53942008-11-07 14:24:08 -08001375
Ben Gamari11ed50e2009-09-14 17:48:45 -04001376 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001377 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001378 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001379 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001380 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001381
Jesse Barnes80824002009-09-10 15:28:06 -07001382 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001383 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001384 int cfb_size;
1385
1386 /* Try to get an 8M buffer... */
1387 if (prealloc_size > (9*1024*1024))
1388 cfb_size = 8*1024*1024;
1389 else /* fall back to 7/8 of the stolen space */
1390 cfb_size = prealloc_size * 7 / 8;
1391 i915_setup_compression(dev, cfb_size);
1392 }
1393
Jesse Barnes79e53942008-11-07 14:24:08 -08001394 /* Allow hardware batchbuffers unless told otherwise.
1395 */
1396 dev_priv->allow_batchbuffer = 1;
1397
1398 ret = intel_init_bios(dev);
1399 if (ret)
1400 DRM_INFO("failed to find VBIOS tables\n");
1401
Dave Airlie28d52042009-09-21 14:33:58 +10001402 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1403 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1404 if (ret)
1405 goto destroy_ringbuffer;
1406
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001407 ret = vga_switcheroo_register_client(dev->pdev,
1408 i915_switcheroo_set_state,
1409 i915_switcheroo_can_switch);
1410 if (ret)
1411 goto destroy_ringbuffer;
1412
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001413 /* IIR "flip pending" bit means done if this bit is set */
1414 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1415 dev_priv->flip_pending_is_done = true;
1416
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001417 intel_modeset_init(dev);
1418
Jesse Barnes79e53942008-11-07 14:24:08 -08001419 ret = drm_irq_install(dev);
1420 if (ret)
1421 goto destroy_ringbuffer;
1422
Jesse Barnes79e53942008-11-07 14:24:08 -08001423 /* Always safe in the mode setting case. */
1424 /* FIXME: do pre/post-mode set stuff in core KMS code */
1425 dev->vblank_disable_allowed = 1;
1426
1427 /*
1428 * Initialize the hardware status page IRQ location.
1429 */
1430
1431 I915_WRITE(INSTPM, (1 << 5) | (1 << 21));
1432
Dave Airlie38651672010-03-30 05:34:13 +00001433 intel_fbdev_init(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001434 drm_kms_helper_poll_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001435 return 0;
1436
Jesse Barnes79e53942008-11-07 14:24:08 -08001437destroy_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001438 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001439 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001440 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001441out:
1442 return ret;
1443}
1444
Dave Airlie7c1c2872008-11-28 14:22:24 +10001445int i915_master_create(struct drm_device *dev, struct drm_master *master)
1446{
1447 struct drm_i915_master_private *master_priv;
1448
Eric Anholt9a298b22009-03-24 12:23:04 -07001449 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001450 if (!master_priv)
1451 return -ENOMEM;
1452
1453 master->driver_priv = master_priv;
1454 return 0;
1455}
1456
1457void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1458{
1459 struct drm_i915_master_private *master_priv = master->driver_priv;
1460
1461 if (!master_priv)
1462 return;
1463
Eric Anholt9a298b22009-03-24 12:23:04 -07001464 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001465
1466 master->driver_priv = NULL;
1467}
1468
Jesse Barnes7648fa92010-05-20 14:28:11 -07001469static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001470{
1471 drm_i915_private_t *dev_priv = dev->dev_private;
1472 u32 tmp;
1473
Shaohua Li7662c8b2009-06-26 11:23:55 +08001474 tmp = I915_READ(CLKCFG);
1475
1476 switch (tmp & CLKCFG_FSB_MASK) {
1477 case CLKCFG_FSB_533:
1478 dev_priv->fsb_freq = 533; /* 133*4 */
1479 break;
1480 case CLKCFG_FSB_800:
1481 dev_priv->fsb_freq = 800; /* 200*4 */
1482 break;
1483 case CLKCFG_FSB_667:
1484 dev_priv->fsb_freq = 667; /* 167*4 */
1485 break;
1486 case CLKCFG_FSB_400:
1487 dev_priv->fsb_freq = 400; /* 100*4 */
1488 break;
1489 }
1490
1491 switch (tmp & CLKCFG_MEM_MASK) {
1492 case CLKCFG_MEM_533:
1493 dev_priv->mem_freq = 533;
1494 break;
1495 case CLKCFG_MEM_667:
1496 dev_priv->mem_freq = 667;
1497 break;
1498 case CLKCFG_MEM_800:
1499 dev_priv->mem_freq = 800;
1500 break;
1501 }
Li Peng95534262010-05-18 18:58:44 +08001502
1503 /* detect pineview DDR3 setting */
1504 tmp = I915_READ(CSHRDDR3CTL);
1505 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001506}
1507
Jesse Barnes7648fa92010-05-20 14:28:11 -07001508static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1509{
1510 drm_i915_private_t *dev_priv = dev->dev_private;
1511 u16 ddrpll, csipll;
1512
1513 ddrpll = I915_READ16(DDRMPLL1);
1514 csipll = I915_READ16(CSIPLL0);
1515
1516 switch (ddrpll & 0xff) {
1517 case 0xc:
1518 dev_priv->mem_freq = 800;
1519 break;
1520 case 0x10:
1521 dev_priv->mem_freq = 1066;
1522 break;
1523 case 0x14:
1524 dev_priv->mem_freq = 1333;
1525 break;
1526 case 0x18:
1527 dev_priv->mem_freq = 1600;
1528 break;
1529 default:
1530 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1531 ddrpll & 0xff);
1532 dev_priv->mem_freq = 0;
1533 break;
1534 }
1535
1536 dev_priv->r_t = dev_priv->mem_freq;
1537
1538 switch (csipll & 0x3ff) {
1539 case 0x00c:
1540 dev_priv->fsb_freq = 3200;
1541 break;
1542 case 0x00e:
1543 dev_priv->fsb_freq = 3733;
1544 break;
1545 case 0x010:
1546 dev_priv->fsb_freq = 4266;
1547 break;
1548 case 0x012:
1549 dev_priv->fsb_freq = 4800;
1550 break;
1551 case 0x014:
1552 dev_priv->fsb_freq = 5333;
1553 break;
1554 case 0x016:
1555 dev_priv->fsb_freq = 5866;
1556 break;
1557 case 0x018:
1558 dev_priv->fsb_freq = 6400;
1559 break;
1560 default:
1561 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1562 csipll & 0x3ff);
1563 dev_priv->fsb_freq = 0;
1564 break;
1565 }
1566
1567 if (dev_priv->fsb_freq == 3200) {
1568 dev_priv->c_m = 0;
1569 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1570 dev_priv->c_m = 1;
1571 } else {
1572 dev_priv->c_m = 2;
1573 }
1574}
1575
1576struct v_table {
1577 u8 vid;
1578 unsigned long vd; /* in .1 mil */
1579 unsigned long vm; /* in .1 mil */
1580 u8 pvid;
1581};
1582
1583static struct v_table v_table[] = {
1584 { 0, 16125, 15000, 0x7f, },
1585 { 1, 16000, 14875, 0x7e, },
1586 { 2, 15875, 14750, 0x7d, },
1587 { 3, 15750, 14625, 0x7c, },
1588 { 4, 15625, 14500, 0x7b, },
1589 { 5, 15500, 14375, 0x7a, },
1590 { 6, 15375, 14250, 0x79, },
1591 { 7, 15250, 14125, 0x78, },
1592 { 8, 15125, 14000, 0x77, },
1593 { 9, 15000, 13875, 0x76, },
1594 { 10, 14875, 13750, 0x75, },
1595 { 11, 14750, 13625, 0x74, },
1596 { 12, 14625, 13500, 0x73, },
1597 { 13, 14500, 13375, 0x72, },
1598 { 14, 14375, 13250, 0x71, },
1599 { 15, 14250, 13125, 0x70, },
1600 { 16, 14125, 13000, 0x6f, },
1601 { 17, 14000, 12875, 0x6e, },
1602 { 18, 13875, 12750, 0x6d, },
1603 { 19, 13750, 12625, 0x6c, },
1604 { 20, 13625, 12500, 0x6b, },
1605 { 21, 13500, 12375, 0x6a, },
1606 { 22, 13375, 12250, 0x69, },
1607 { 23, 13250, 12125, 0x68, },
1608 { 24, 13125, 12000, 0x67, },
1609 { 25, 13000, 11875, 0x66, },
1610 { 26, 12875, 11750, 0x65, },
1611 { 27, 12750, 11625, 0x64, },
1612 { 28, 12625, 11500, 0x63, },
1613 { 29, 12500, 11375, 0x62, },
1614 { 30, 12375, 11250, 0x61, },
1615 { 31, 12250, 11125, 0x60, },
1616 { 32, 12125, 11000, 0x5f, },
1617 { 33, 12000, 10875, 0x5e, },
1618 { 34, 11875, 10750, 0x5d, },
1619 { 35, 11750, 10625, 0x5c, },
1620 { 36, 11625, 10500, 0x5b, },
1621 { 37, 11500, 10375, 0x5a, },
1622 { 38, 11375, 10250, 0x59, },
1623 { 39, 11250, 10125, 0x58, },
1624 { 40, 11125, 10000, 0x57, },
1625 { 41, 11000, 9875, 0x56, },
1626 { 42, 10875, 9750, 0x55, },
1627 { 43, 10750, 9625, 0x54, },
1628 { 44, 10625, 9500, 0x53, },
1629 { 45, 10500, 9375, 0x52, },
1630 { 46, 10375, 9250, 0x51, },
1631 { 47, 10250, 9125, 0x50, },
1632 { 48, 10125, 9000, 0x4f, },
1633 { 49, 10000, 8875, 0x4e, },
1634 { 50, 9875, 8750, 0x4d, },
1635 { 51, 9750, 8625, 0x4c, },
1636 { 52, 9625, 8500, 0x4b, },
1637 { 53, 9500, 8375, 0x4a, },
1638 { 54, 9375, 8250, 0x49, },
1639 { 55, 9250, 8125, 0x48, },
1640 { 56, 9125, 8000, 0x47, },
1641 { 57, 9000, 7875, 0x46, },
1642 { 58, 8875, 7750, 0x45, },
1643 { 59, 8750, 7625, 0x44, },
1644 { 60, 8625, 7500, 0x43, },
1645 { 61, 8500, 7375, 0x42, },
1646 { 62, 8375, 7250, 0x41, },
1647 { 63, 8250, 7125, 0x40, },
1648 { 64, 8125, 7000, 0x3f, },
1649 { 65, 8000, 6875, 0x3e, },
1650 { 66, 7875, 6750, 0x3d, },
1651 { 67, 7750, 6625, 0x3c, },
1652 { 68, 7625, 6500, 0x3b, },
1653 { 69, 7500, 6375, 0x3a, },
1654 { 70, 7375, 6250, 0x39, },
1655 { 71, 7250, 6125, 0x38, },
1656 { 72, 7125, 6000, 0x37, },
1657 { 73, 7000, 5875, 0x36, },
1658 { 74, 6875, 5750, 0x35, },
1659 { 75, 6750, 5625, 0x34, },
1660 { 76, 6625, 5500, 0x33, },
1661 { 77, 6500, 5375, 0x32, },
1662 { 78, 6375, 5250, 0x31, },
1663 { 79, 6250, 5125, 0x30, },
1664 { 80, 6125, 5000, 0x2f, },
1665 { 81, 6000, 4875, 0x2e, },
1666 { 82, 5875, 4750, 0x2d, },
1667 { 83, 5750, 4625, 0x2c, },
1668 { 84, 5625, 4500, 0x2b, },
1669 { 85, 5500, 4375, 0x2a, },
1670 { 86, 5375, 4250, 0x29, },
1671 { 87, 5250, 4125, 0x28, },
1672 { 88, 5125, 4000, 0x27, },
1673 { 89, 5000, 3875, 0x26, },
1674 { 90, 4875, 3750, 0x25, },
1675 { 91, 4750, 3625, 0x24, },
1676 { 92, 4625, 3500, 0x23, },
1677 { 93, 4500, 3375, 0x22, },
1678 { 94, 4375, 3250, 0x21, },
1679 { 95, 4250, 3125, 0x20, },
1680 { 96, 4125, 3000, 0x1f, },
1681 { 97, 4125, 3000, 0x1e, },
1682 { 98, 4125, 3000, 0x1d, },
1683 { 99, 4125, 3000, 0x1c, },
1684 { 100, 4125, 3000, 0x1b, },
1685 { 101, 4125, 3000, 0x1a, },
1686 { 102, 4125, 3000, 0x19, },
1687 { 103, 4125, 3000, 0x18, },
1688 { 104, 4125, 3000, 0x17, },
1689 { 105, 4125, 3000, 0x16, },
1690 { 106, 4125, 3000, 0x15, },
1691 { 107, 4125, 3000, 0x14, },
1692 { 108, 4125, 3000, 0x13, },
1693 { 109, 4125, 3000, 0x12, },
1694 { 110, 4125, 3000, 0x11, },
1695 { 111, 4125, 3000, 0x10, },
1696 { 112, 4125, 3000, 0x0f, },
1697 { 113, 4125, 3000, 0x0e, },
1698 { 114, 4125, 3000, 0x0d, },
1699 { 115, 4125, 3000, 0x0c, },
1700 { 116, 4125, 3000, 0x0b, },
1701 { 117, 4125, 3000, 0x0a, },
1702 { 118, 4125, 3000, 0x09, },
1703 { 119, 4125, 3000, 0x08, },
1704 { 120, 1125, 0, 0x07, },
1705 { 121, 1000, 0, 0x06, },
1706 { 122, 875, 0, 0x05, },
1707 { 123, 750, 0, 0x04, },
1708 { 124, 625, 0, 0x03, },
1709 { 125, 500, 0, 0x02, },
1710 { 126, 375, 0, 0x01, },
1711 { 127, 0, 0, 0x00, },
1712};
1713
1714struct cparams {
1715 int i;
1716 int t;
1717 int m;
1718 int c;
1719};
1720
1721static struct cparams cparams[] = {
1722 { 1, 1333, 301, 28664 },
1723 { 1, 1066, 294, 24460 },
1724 { 1, 800, 294, 25192 },
1725 { 0, 1333, 276, 27605 },
1726 { 0, 1066, 276, 27605 },
1727 { 0, 800, 231, 23784 },
1728};
1729
1730unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1731{
1732 u64 total_count, diff, ret;
1733 u32 count1, count2, count3, m = 0, c = 0;
1734 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1735 int i;
1736
1737 diff1 = now - dev_priv->last_time1;
1738
1739 count1 = I915_READ(DMIEC);
1740 count2 = I915_READ(DDREC);
1741 count3 = I915_READ(CSIEC);
1742
1743 total_count = count1 + count2 + count3;
1744
1745 /* FIXME: handle per-counter overflow */
1746 if (total_count < dev_priv->last_count1) {
1747 diff = ~0UL - dev_priv->last_count1;
1748 diff += total_count;
1749 } else {
1750 diff = total_count - dev_priv->last_count1;
1751 }
1752
1753 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1754 if (cparams[i].i == dev_priv->c_m &&
1755 cparams[i].t == dev_priv->r_t) {
1756 m = cparams[i].m;
1757 c = cparams[i].c;
1758 break;
1759 }
1760 }
1761
1762 div_u64(diff, diff1);
1763 ret = ((m * diff) + c);
1764 div_u64(ret, 10);
1765
1766 dev_priv->last_count1 = total_count;
1767 dev_priv->last_time1 = now;
1768
1769 return ret;
1770}
1771
1772unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1773{
1774 unsigned long m, x, b;
1775 u32 tsfs;
1776
1777 tsfs = I915_READ(TSFS);
1778
1779 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1780 x = I915_READ8(TR1);
1781
1782 b = tsfs & TSFS_INTR_MASK;
1783
1784 return ((m * x) / 127) - b;
1785}
1786
1787static unsigned long pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
1788{
1789 unsigned long val = 0;
1790 int i;
1791
1792 for (i = 0; i < ARRAY_SIZE(v_table); i++) {
1793 if (v_table[i].pvid == pxvid) {
1794 if (IS_MOBILE(dev_priv->dev))
1795 val = v_table[i].vm;
1796 else
1797 val = v_table[i].vd;
1798 }
1799 }
1800
1801 return val;
1802}
1803
1804void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1805{
1806 struct timespec now, diff1;
1807 u64 diff;
1808 unsigned long diffms;
1809 u32 count;
1810
1811 getrawmonotonic(&now);
1812 diff1 = timespec_sub(now, dev_priv->last_time2);
1813
1814 /* Don't divide by 0 */
1815 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1816 if (!diffms)
1817 return;
1818
1819 count = I915_READ(GFXEC);
1820
1821 if (count < dev_priv->last_count2) {
1822 diff = ~0UL - dev_priv->last_count2;
1823 diff += count;
1824 } else {
1825 diff = count - dev_priv->last_count2;
1826 }
1827
1828 dev_priv->last_count2 = count;
1829 dev_priv->last_time2 = now;
1830
1831 /* More magic constants... */
1832 diff = diff * 1181;
1833 div_u64(diff, diffms * 10);
1834 dev_priv->gfx_power = diff;
1835}
1836
1837unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1838{
1839 unsigned long t, corr, state1, corr2, state2;
1840 u32 pxvid, ext_v;
1841
1842 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1843 pxvid = (pxvid >> 24) & 0x7f;
1844 ext_v = pvid_to_extvid(dev_priv, pxvid);
1845
1846 state1 = ext_v;
1847
1848 t = i915_mch_val(dev_priv);
1849
1850 /* Revel in the empirically derived constants */
1851
1852 /* Correction factor in 1/100000 units */
1853 if (t > 80)
1854 corr = ((t * 2349) + 135940);
1855 else if (t >= 50)
1856 corr = ((t * 964) + 29317);
1857 else /* < 50 */
1858 corr = ((t * 301) + 1004);
1859
1860 corr = corr * ((150142 * state1) / 10000 - 78642);
1861 corr /= 100000;
1862 corr2 = (corr * dev_priv->corr);
1863
1864 state2 = (corr2 * state1) / 10000;
1865 state2 /= 100; /* convert to mW */
1866
1867 i915_update_gfx_val(dev_priv);
1868
1869 return dev_priv->gfx_power + state2;
1870}
1871
1872/* Global for IPS driver to get at the current i915 device */
1873static struct drm_i915_private *i915_mch_dev;
1874/*
1875 * Lock protecting IPS related data structures
1876 * - i915_mch_dev
1877 * - dev_priv->max_delay
1878 * - dev_priv->min_delay
1879 * - dev_priv->fmax
1880 * - dev_priv->gpu_busy
1881 */
1882DEFINE_SPINLOCK(mchdev_lock);
1883
1884/**
1885 * i915_read_mch_val - return value for IPS use
1886 *
1887 * Calculate and return a value for the IPS driver to use when deciding whether
1888 * we have thermal and power headroom to increase CPU or GPU power budget.
1889 */
1890unsigned long i915_read_mch_val(void)
1891{
1892 struct drm_i915_private *dev_priv;
1893 unsigned long chipset_val, graphics_val, ret = 0;
1894
1895 spin_lock(&mchdev_lock);
1896 if (!i915_mch_dev)
1897 goto out_unlock;
1898 dev_priv = i915_mch_dev;
1899
1900 chipset_val = i915_chipset_val(dev_priv);
1901 graphics_val = i915_gfx_val(dev_priv);
1902
1903 ret = chipset_val + graphics_val;
1904
1905out_unlock:
1906 spin_unlock(&mchdev_lock);
1907
1908 return ret;
1909}
1910EXPORT_SYMBOL_GPL(i915_read_mch_val);
1911
1912/**
1913 * i915_gpu_raise - raise GPU frequency limit
1914 *
1915 * Raise the limit; IPS indicates we have thermal headroom.
1916 */
1917bool i915_gpu_raise(void)
1918{
1919 struct drm_i915_private *dev_priv;
1920 bool ret = true;
1921
1922 spin_lock(&mchdev_lock);
1923 if (!i915_mch_dev) {
1924 ret = false;
1925 goto out_unlock;
1926 }
1927 dev_priv = i915_mch_dev;
1928
1929 if (dev_priv->max_delay > dev_priv->fmax)
1930 dev_priv->max_delay--;
1931
1932out_unlock:
1933 spin_unlock(&mchdev_lock);
1934
1935 return ret;
1936}
1937EXPORT_SYMBOL_GPL(i915_gpu_raise);
1938
1939/**
1940 * i915_gpu_lower - lower GPU frequency limit
1941 *
1942 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1943 * frequency maximum.
1944 */
1945bool i915_gpu_lower(void)
1946{
1947 struct drm_i915_private *dev_priv;
1948 bool ret = true;
1949
1950 spin_lock(&mchdev_lock);
1951 if (!i915_mch_dev) {
1952 ret = false;
1953 goto out_unlock;
1954 }
1955 dev_priv = i915_mch_dev;
1956
1957 if (dev_priv->max_delay < dev_priv->min_delay)
1958 dev_priv->max_delay++;
1959
1960out_unlock:
1961 spin_unlock(&mchdev_lock);
1962
1963 return ret;
1964}
1965EXPORT_SYMBOL_GPL(i915_gpu_lower);
1966
1967/**
1968 * i915_gpu_busy - indicate GPU business to IPS
1969 *
1970 * Tell the IPS driver whether or not the GPU is busy.
1971 */
1972bool i915_gpu_busy(void)
1973{
1974 struct drm_i915_private *dev_priv;
1975 bool ret = false;
1976
1977 spin_lock(&mchdev_lock);
1978 if (!i915_mch_dev)
1979 goto out_unlock;
1980 dev_priv = i915_mch_dev;
1981
1982 ret = dev_priv->busy;
1983
1984out_unlock:
1985 spin_unlock(&mchdev_lock);
1986
1987 return ret;
1988}
1989EXPORT_SYMBOL_GPL(i915_gpu_busy);
1990
1991/**
1992 * i915_gpu_turbo_disable - disable graphics turbo
1993 *
1994 * Disable graphics turbo by resetting the max frequency and setting the
1995 * current frequency to the default.
1996 */
1997bool i915_gpu_turbo_disable(void)
1998{
1999 struct drm_i915_private *dev_priv;
2000 bool ret = true;
2001
2002 spin_lock(&mchdev_lock);
2003 if (!i915_mch_dev) {
2004 ret = false;
2005 goto out_unlock;
2006 }
2007 dev_priv = i915_mch_dev;
2008
2009 dev_priv->max_delay = dev_priv->fstart;
2010
2011 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
2012 ret = false;
2013
2014out_unlock:
2015 spin_unlock(&mchdev_lock);
2016
2017 return ret;
2018}
2019EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
2020
Jesse Barnes79e53942008-11-07 14:24:08 -08002021/**
2022 * i915_driver_load - setup chip and create an initial config
2023 * @dev: DRM device
2024 * @flags: startup flags
2025 *
2026 * The driver load routine has to do several things:
2027 * - drive output discovery via intel_modeset_init()
2028 * - initialize the memory manager
2029 * - allocate initial config memory
2030 * - setup the DRM framebuffer with the allocated memory
2031 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002032int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11002033{
Luca Tettamantiea059a12010-04-08 21:41:59 +02002034 struct drm_i915_private *dev_priv;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +11002035 resource_size_t base, size;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002036 int ret = 0, mmio_bar;
Jesse Barnes80824002009-09-10 15:28:06 -07002037 uint32_t agp_size, prealloc_size, prealloc_start;
Dave Airlie22eae942005-11-10 22:16:34 +11002038 /* i915 has 4 more counters */
2039 dev->counters += 4;
2040 dev->types[6] = _DRM_STAT_IRQ;
2041 dev->types[7] = _DRM_STAT_PRIMARY;
2042 dev->types[8] = _DRM_STAT_SECONDARY;
2043 dev->types[9] = _DRM_STAT_DMA;
2044
Eric Anholt9a298b22009-03-24 12:23:04 -07002045 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002046 if (dev_priv == NULL)
2047 return -ENOMEM;
2048
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002049 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002050 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002051 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002052
2053 /* Add register map (needed for suspend/resume) */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002054 mmio_bar = IS_I9XX(dev) ? 0 : 1;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002055 base = drm_get_resource_start(dev, mmio_bar);
2056 size = drm_get_resource_len(dev, mmio_bar);
2057
Dave Airlieec2a4c32009-08-04 11:43:41 +10002058 if (i915_get_bridge_dev(dev)) {
2059 ret = -EIO;
2060 goto free_priv;
2061 }
2062
Eric Anholt3043c602008-10-02 12:24:47 -07002063 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002064 if (!dev_priv->regs) {
2065 DRM_ERROR("failed to map registers\n");
2066 ret = -EIO;
Dave Airlieec2a4c32009-08-04 11:43:41 +10002067 goto put_bridge;
Jesse Barnes79e53942008-11-07 14:24:08 -08002068 }
Eric Anholted4cb412008-07-29 12:10:39 -07002069
Eric Anholtab657db12009-01-23 12:57:47 -08002070 dev_priv->mm.gtt_mapping =
2071 io_mapping_create_wc(dev->agp->base,
2072 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002073 if (dev_priv->mm.gtt_mapping == NULL) {
2074 ret = -EIO;
2075 goto out_rmmap;
2076 }
2077
Eric Anholtab657db12009-01-23 12:57:47 -08002078 /* Set up a WC MTRR for non-PAT systems. This is more common than
2079 * one would think, because the kernel disables PAT on first
2080 * generation Core chips because WC PAT gets overridden by a UC
2081 * MTRR if present. Even if a UC MTRR isn't present.
2082 */
2083 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
2084 dev->agp->agp_info.aper_size *
2085 1024 * 1024,
2086 MTRR_TYPE_WRCOMB, 1);
2087 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07002088 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08002089 "performance may suffer.\n");
2090 }
2091
Jesse Barnes80824002009-09-10 15:28:06 -07002092 ret = i915_probe_agp(dev, &agp_size, &prealloc_size, &prealloc_start);
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002093 if (ret)
2094 goto out_iomapfree;
2095
Chris Wilsonaed5f1d2009-10-14 13:40:04 +01002096 dev_priv->wq = create_singlethread_workqueue("i915");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002097 if (dev_priv->wq == NULL) {
2098 DRM_ERROR("Failed to create our workqueue.\n");
2099 ret = -ENOMEM;
2100 goto out_iomapfree;
2101 }
2102
Dave Airlieac5c4e72008-12-19 15:38:34 +10002103 /* enable GEM by default */
2104 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10002105
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002106 if (prealloc_size > agp_size * 3 / 4) {
2107 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
2108 "memory stolen.\n",
2109 prealloc_size / 1024, agp_size / 1024);
2110 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
2111 "updating the BIOS to fix).\n");
2112 dev_priv->has_gem = 0;
2113 }
2114
Chris Wilson79a78dd2010-05-17 09:23:54 +01002115 if (dev_priv->has_gem == 0 &&
2116 drm_core_check_feature(dev, DRIVER_MODESET)) {
2117 DRM_ERROR("kernel modesetting requires GEM, disabling driver.\n");
2118 ret = -ENODEV;
2119 goto out_iomapfree;
2120 }
2121
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002122 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002123 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eric Anholtbad720f2009-10-22 16:11:14 -07002124 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07002125 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002126 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002127 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002128
Zhenyu Wangc48044112009-12-17 14:48:43 +08002129 /* Try to make sure MCHBAR is enabled before poking at it */
2130 intel_setup_mchbar(dev);
2131
Eric Anholt673a3942008-07-30 12:06:12 -07002132 i915_gem_load(dev);
2133
Keith Packard398c9cb2008-07-30 13:03:43 -07002134 /* Init HWS */
2135 if (!I915_NEED_GFX_HWS(dev)) {
2136 ret = i915_init_phys_hws(dev);
2137 if (ret != 0)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002138 goto out_workqueue_free;
Keith Packard398c9cb2008-07-30 13:03:43 -07002139 }
Eric Anholted4cb412008-07-29 12:10:39 -07002140
Jesse Barnes7648fa92010-05-20 14:28:11 -07002141 if (IS_PINEVIEW(dev))
2142 i915_pineview_get_mem_freq(dev);
2143 else if (IS_IRONLAKE(dev))
2144 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002145
Eric Anholted4cb412008-07-29 12:10:39 -07002146 /* On the 945G/GM, the chipset reports the MSI capability on the
2147 * integrated graphics even though the support isn't actually there
2148 * according to the published specs. It doesn't appear to function
2149 * correctly in testing on 945G.
2150 * This may be a side effect of MSI having been made available for PEG
2151 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002152 *
2153 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002154 * be lost or delayed, but we use them anyways to avoid
2155 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002156 */
Keith Packardb60678a2008-12-08 11:12:28 -08002157 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002158 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002159
2160 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002161 spin_lock_init(&dev_priv->error_lock);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002162 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07002163
Keith Packard52440212008-11-18 09:30:25 -08002164 ret = drm_vblank_init(dev, I915_NUM_PIPE);
2165
2166 if (ret) {
2167 (void) i915_driver_unload(dev);
2168 return ret;
2169 }
2170
Ben Gamari11ed50e2009-09-14 17:48:45 -04002171 /* Start out suspended */
2172 dev_priv->mm.suspended = 1;
2173
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002174 intel_detect_pch(dev);
2175
Jesse Barnes79e53942008-11-07 14:24:08 -08002176 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes80824002009-09-10 15:28:06 -07002177 ret = i915_load_modeset_init(dev, prealloc_start,
2178 prealloc_size, agp_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002179 if (ret < 0) {
2180 DRM_ERROR("failed to init modeset\n");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002181 goto out_workqueue_free;
Jesse Barnes79e53942008-11-07 14:24:08 -08002182 }
2183 }
2184
Matthew Garrett74a365b2009-03-19 21:35:39 +00002185 /* Must be done after probing outputs */
Zhao Yakui01c66882009-10-28 05:10:00 +00002186 intel_opregion_init(dev, 0);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002187
Ben Gamarif65d9422009-09-14 17:48:44 -04002188 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2189 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002190
2191 spin_lock(&mchdev_lock);
2192 i915_mch_dev = dev_priv;
2193 dev_priv->mchdev_lock = &mchdev_lock;
2194 spin_unlock(&mchdev_lock);
2195
Jesse Barnes79e53942008-11-07 14:24:08 -08002196 return 0;
2197
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002198out_workqueue_free:
2199 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002200out_iomapfree:
2201 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002202out_rmmap:
2203 iounmap(dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002204put_bridge:
2205 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002206free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002207 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002208 return ret;
2209}
2210
2211int i915_driver_unload(struct drm_device *dev)
2212{
2213 struct drm_i915_private *dev_priv = dev->dev_private;
2214
Chris Wilson9df30792010-02-18 10:24:56 +00002215 i915_destroy_error_state(dev);
2216
Jesse Barnes7648fa92010-05-20 14:28:11 -07002217 spin_lock(&mchdev_lock);
2218 i915_mch_dev = NULL;
2219 spin_unlock(&mchdev_lock);
2220
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002221 destroy_workqueue(dev_priv->wq);
Ben Gamarif65d9422009-09-14 17:48:44 -04002222 del_timer_sync(&dev_priv->hangcheck_timer);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002223
Eric Anholtab657db12009-01-23 12:57:47 -08002224 io_mapping_free(dev_priv->mm.gtt_mapping);
2225 if (dev_priv->mm.gtt_mtrr >= 0) {
2226 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2227 dev->agp->agp_info.aper_size * 1024 * 1024);
2228 dev_priv->mm.gtt_mtrr = -1;
2229 }
2230
Jesse Barnes79e53942008-11-07 14:24:08 -08002231 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002232 intel_modeset_cleanup(dev);
2233
Zhao Yakui6363ee62009-11-24 09:48:44 +08002234 /*
2235 * free the memory space allocated for the child device
2236 * config parsed from VBT
2237 */
2238 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2239 kfree(dev_priv->child_dev);
2240 dev_priv->child_dev = NULL;
2241 dev_priv->child_dev_num = 0;
2242 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002243 drm_irq_uninstall(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002244 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002245 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002246 }
2247
Eric Anholted4cb412008-07-29 12:10:39 -07002248 if (dev->pdev->msi_enabled)
2249 pci_disable_msi(dev->pdev);
2250
Eric Anholt3043c602008-10-02 12:24:47 -07002251 if (dev_priv->regs != NULL)
2252 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002253
Zhao Yakui01c66882009-10-28 05:10:00 +00002254 intel_opregion_free(dev, 0);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002255
Jesse Barnes79e53942008-11-07 14:24:08 -08002256 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10002257 i915_gem_free_all_phys_object(dev);
2258
Jesse Barnes79e53942008-11-07 14:24:08 -08002259 mutex_lock(&dev->struct_mutex);
2260 i915_gem_cleanup_ringbuffer(dev);
2261 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002262 if (I915_HAS_FBC(dev) && i915_powersave)
2263 i915_cleanup_compression(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002264 drm_mm_takedown(&dev_priv->vram);
2265 i915_gem_lastclose(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002266
2267 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002268 }
2269
Zhenyu Wangc48044112009-12-17 14:48:43 +08002270 intel_teardown_mchbar(dev);
2271
Dave Airlieec2a4c32009-08-04 11:43:41 +10002272 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002273 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002274
Dave Airlie22eae942005-11-10 22:16:34 +11002275 return 0;
2276}
2277
Eric Anholt673a3942008-07-30 12:06:12 -07002278int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
2279{
2280 struct drm_i915_file_private *i915_file_priv;
2281
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002282 DRM_DEBUG_DRIVER("\n");
Eric Anholt673a3942008-07-30 12:06:12 -07002283 i915_file_priv = (struct drm_i915_file_private *)
Eric Anholt9a298b22009-03-24 12:23:04 -07002284 kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07002285
2286 if (!i915_file_priv)
2287 return -ENOMEM;
2288
2289 file_priv->driver_priv = i915_file_priv;
2290
Eric Anholtb9624422009-06-03 07:27:35 +00002291 INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002292
2293 return 0;
2294}
2295
Jesse Barnes79e53942008-11-07 14:24:08 -08002296/**
2297 * i915_driver_lastclose - clean up after all DRM clients have exited
2298 * @dev: DRM device
2299 *
2300 * Take care of cleaning up after all DRM clients have exited. In the
2301 * mode setting case, we want to restore the kernel's initial mode (just
2302 * in case the last client left us in a bad state).
2303 *
2304 * Additionally, in the non-mode setting case, we'll tear down the AGP
2305 * and DMA structures, since the kernel won't be using them, and clea
2306 * up any GEM state.
2307 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002308void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002310 drm_i915_private_t *dev_priv = dev->dev_private;
2311
Jesse Barnes79e53942008-11-07 14:24:08 -08002312 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10002313 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002314 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002315 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002316 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002317
Eric Anholt673a3942008-07-30 12:06:12 -07002318 i915_gem_lastclose(dev);
2319
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002320 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002321 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002322
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002323 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
Eric Anholt6c340ea2007-08-25 20:23:09 +10002326void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002328 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00002329 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08002330 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2331 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
Eric Anholt673a3942008-07-30 12:06:12 -07002334void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
2335{
2336 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
2337
Eric Anholt9a298b22009-03-24 12:23:04 -07002338 kfree(i915_file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002339}
2340
Eric Anholtc153f452007-09-03 12:06:45 +10002341struct drm_ioctl_desc i915_ioctls[] = {
2342 DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2343 DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2344 DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
2345 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2346 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2347 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2348 DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
2349 DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2350 DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
2351 DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
2352 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2353 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
2354 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
2355 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
2356 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ),
2357 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
Matthias Hopf4b408932008-10-18 07:18:05 +10002358 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Eric Anholtf05dd2f2010-02-26 13:32:11 -08002359 DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2360 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2361 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2362 DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2363 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2364 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2365 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2366 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2367 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2368 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2369 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2370 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2371 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2372 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2373 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2374 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2375 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2376 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2377 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2378 DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2379 DRM_IOCTL_DEF(DRM_I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2380 DRM_IOCTL_DEF(DRM_I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2381 DRM_IOCTL_DEF(DRM_I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002382};
2383
2384int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002385
2386/**
2387 * Determine if the device really is AGP or not.
2388 *
2389 * All Intel graphics chipsets are treated as AGP, even if they are really
2390 * PCI-e.
2391 *
2392 * \param dev The device to be tested.
2393 *
2394 * \returns
2395 * A value of 1 is always retured to indictate every i9x5 is AGP.
2396 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002397int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002398{
2399 return 1;
2400}