blob: 7796f452ed1d005737a2aaae7df0a8a00f134778 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "drmP.h"
30#include "drm.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include "drm_crtc_helper.h"
Dave Airlie785b93e2009-08-28 15:46:53 +100032#include "drm_fb_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "i915_drm.h"
35#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010036#include "i915_trace.h"
Jordan Crousedcdb1672010-05-27 13:40:25 -060037#include <linux/pci.h>
Dave Airlie28d52042009-09-21 14:33:58 +100038#include <linux/vgaarb.h>
Zhenyu Wangc48044112009-12-17 14:48:43 +080039#include <linux/acpi.h>
40#include <linux/pnp.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100041#include <linux/vga_switcheroo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jesse Barnesd1d6ca72010-07-08 09:22:46 -070044extern int intel_max_stolen; /* from AGP driver */
45
Keith Packard398c9cb2008-07-30 13:03:43 -070046/**
47 * Sets up the hardware status page for devices that need a physical address
48 * in the register.
49 */
Eric Anholt3043c602008-10-02 12:24:47 -070050static int i915_init_phys_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070051{
52 drm_i915_private_t *dev_priv = dev->dev_private;
53 /* Program Hardware Status Page */
54 dev_priv->status_page_dmah =
Zhenyu Wange6be8d92010-01-05 11:25:05 +080055 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070056
57 if (!dev_priv->status_page_dmah) {
58 DRM_ERROR("Can not allocate hardware status page\n");
59 return -ENOMEM;
60 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +080061 dev_priv->render_ring.status_page.page_addr
62 = dev_priv->status_page_dmah->vaddr;
Keith Packard398c9cb2008-07-30 13:03:43 -070063 dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;
64
Zou Nan hai8187a2b2010-05-21 09:08:55 +080065 memset(dev_priv->render_ring.status_page.page_addr, 0, PAGE_SIZE);
Keith Packard398c9cb2008-07-30 13:03:43 -070066
Zhenyu Wang9b974cc2010-01-05 11:25:06 +080067 if (IS_I965G(dev))
68 dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) &
69 0xf0;
70
Keith Packard398c9cb2008-07-30 13:03:43 -070071 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +080072 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Keith Packard398c9cb2008-07-30 13:03:43 -070073 return 0;
74}
75
76/**
77 * Frees the hardware status page, whether it's a physical address or a virtual
78 * address set up by the X Server.
79 */
Eric Anholt3043c602008-10-02 12:24:47 -070080static void i915_free_hws(struct drm_device *dev)
Keith Packard398c9cb2008-07-30 13:03:43 -070081{
82 drm_i915_private_t *dev_priv = dev->dev_private;
83 if (dev_priv->status_page_dmah) {
84 drm_pci_free(dev, dev_priv->status_page_dmah);
85 dev_priv->status_page_dmah = NULL;
86 }
87
Zou Nan hai852835f2010-05-21 09:08:56 +080088 if (dev_priv->render_ring.status_page.gfx_addr) {
89 dev_priv->render_ring.status_page.gfx_addr = 0;
Keith Packard398c9cb2008-07-30 13:03:43 -070090 drm_core_ioremapfree(&dev_priv->hws_map, dev);
91 }
92
93 /* Need to rewrite hardware status page */
94 I915_WRITE(HWS_PGA, 0x1ffff000);
95}
96
Dave Airlie84b1fd12007-07-11 15:53:27 +100097void i915_kernel_lost_context(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000100 struct drm_i915_master_private *master_priv;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800101 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Jesse Barnes79e53942008-11-07 14:24:08 -0800103 /*
104 * We should never lose context on the ring with modesetting
105 * as we don't expose it to userspace
106 */
107 if (drm_core_check_feature(dev, DRIVER_MODESET))
108 return;
109
Jesse Barnes585fb112008-07-29 11:54:06 -0700110 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
111 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 ring->space = ring->head - (ring->tail + 8);
113 if (ring->space < 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800114 ring->space += ring->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Dave Airlie7c1c2872008-11-28 14:22:24 +1000116 if (!dev->primary->master)
117 return;
118
119 master_priv = dev->primary->master->driver_priv;
120 if (ring->head == ring->tail && master_priv->sarea_priv)
121 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Dave Airlie84b1fd12007-07-11 15:53:27 +1000124static int i915_dma_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000126 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Make sure interrupts are disabled here because the uninstall ioctl
128 * may not have been called from userspace and after dev_private
129 * is freed, it's too late.
130 */
Eric Anholted4cb412008-07-29 12:10:39 -0700131 if (dev->irq_enabled)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200134 mutex_lock(&dev->struct_mutex);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800135 intel_cleanup_ring_buffer(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800136 if (HAS_BSD(dev))
137 intel_cleanup_ring_buffer(dev, &dev_priv->bsd_ring);
Dan Carpenteree0c6bf2010-06-23 13:19:55 +0200138 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Keith Packard398c9cb2008-07-30 13:03:43 -0700140 /* Clear the HWS virtual address at teardown */
141 if (I915_NEED_GFX_HWS(dev))
142 i915_free_hws(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return 0;
145}
146
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000147static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000149 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000150 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dave Airlie3a03ac12009-01-11 09:03:49 +1000152 master_priv->sarea = drm_getsarea(dev);
153 if (master_priv->sarea) {
154 master_priv->sarea_priv = (drm_i915_sarea_t *)
155 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
156 } else {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800157 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
Dave Airlie3a03ac12009-01-11 09:03:49 +1000158 }
159
Eric Anholt673a3942008-07-30 12:06:12 -0700160 if (init->ring_size != 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800161 if (dev_priv->render_ring.gem_object != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700162 i915_dma_cleanup(dev);
163 DRM_ERROR("Client tried to initialize ringbuffer in "
164 "GEM mode\n");
165 return -EINVAL;
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800168 dev_priv->render_ring.size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric Anholtd3301d82010-05-21 13:55:54 -0700170 dev_priv->render_ring.map.offset = init->ring_start;
171 dev_priv->render_ring.map.size = init->ring_size;
172 dev_priv->render_ring.map.type = 0;
173 dev_priv->render_ring.map.flags = 0;
174 dev_priv->render_ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Eric Anholtd3301d82010-05-21 13:55:54 -0700176 drm_core_ioremap_wc(&dev_priv->render_ring.map, dev);
Eric Anholt673a3942008-07-30 12:06:12 -0700177
Eric Anholtd3301d82010-05-21 13:55:54 -0700178 if (dev_priv->render_ring.map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -0700179 i915_dma_cleanup(dev);
180 DRM_ERROR("can not ioremap virtual address for"
181 " ring buffer\n");
182 return -ENOMEM;
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Eric Anholtd3301d82010-05-21 13:55:54 -0700186 dev_priv->render_ring.virtual_start = dev_priv->render_ring.map.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000188 dev_priv->cpp = init->cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dev_priv->back_offset = init->back_offset;
190 dev_priv->front_offset = init->front_offset;
191 dev_priv->current_page = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000192 if (master_priv->sarea_priv)
193 master_priv->sarea_priv->pf_current_page = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* Allow hardware batchbuffers unless told otherwise.
196 */
197 dev_priv->allow_batchbuffer = 1;
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
200}
201
Dave Airlie84b1fd12007-07-11 15:53:27 +1000202static int i915_dma_resume(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
205
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800206 struct intel_ring_buffer *ring;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800207 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800209 ring = &dev_priv->render_ring;
210
211 if (ring->map.handle == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 DRM_ERROR("can not ioremap virtual address for"
213 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000214 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 /* Program Hardware Status Page */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800218 if (!ring->status_page.page_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 DRM_ERROR("Can not find hardware status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000220 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800222 DRM_DEBUG_DRIVER("hw status page @ %p\n",
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800223 ring->status_page.page_addr);
224 if (ring->status_page.gfx_addr != 0)
225 ring->setup_status_page(dev, ring);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000226 else
Jesse Barnes585fb112008-07-29 11:54:06 -0700227 I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800228
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800229 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return 0;
232}
233
Eric Anholtc153f452007-09-03 12:06:45 +1000234static int i915_dma_init(struct drm_device *dev, void *data,
235 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Eric Anholtc153f452007-09-03 12:06:45 +1000237 drm_i915_init_t *init = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 int retcode = 0;
239
Eric Anholtc153f452007-09-03 12:06:45 +1000240 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 case I915_INIT_DMA:
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000242 retcode = i915_initialize(dev, init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 case I915_CLEANUP_DMA:
245 retcode = i915_dma_cleanup(dev);
246 break;
247 case I915_RESUME_DMA:
Dave Airlie0d6aa602006-01-02 20:14:23 +1100248 retcode = i915_dma_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 break;
250 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000251 retcode = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253 }
254
255 return retcode;
256}
257
258/* Implement basically the same security restrictions as hardware does
259 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
260 *
261 * Most of the calculations below involve calculating the size of a
262 * particular instruction. It's important to get the size right as
263 * that tells us where the next instruction to check is. Any illegal
264 * instruction detected will be given a size of zero, which is a
265 * signal to abort the rest of the buffer.
266 */
267static int do_validate_cmd(int cmd)
268{
269 switch (((cmd >> 29) & 0x7)) {
270 case 0x0:
271 switch ((cmd >> 23) & 0x3f) {
272 case 0x0:
273 return 1; /* MI_NOOP */
274 case 0x4:
275 return 1; /* MI_FLUSH */
276 default:
277 return 0; /* disallow everything else */
278 }
279 break;
280 case 0x1:
281 return 0; /* reserved */
282 case 0x2:
283 return (cmd & 0xff) + 2; /* 2d commands */
284 case 0x3:
285 if (((cmd >> 24) & 0x1f) <= 0x18)
286 return 1;
287
288 switch ((cmd >> 24) & 0x1f) {
289 case 0x1c:
290 return 1;
291 case 0x1d:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000292 switch ((cmd >> 16) & 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 case 0x3:
294 return (cmd & 0x1f) + 2;
295 case 0x4:
296 return (cmd & 0xf) + 2;
297 default:
298 return (cmd & 0xffff) + 2;
299 }
300 case 0x1e:
301 if (cmd & (1 << 23))
302 return (cmd & 0xffff) + 1;
303 else
304 return 1;
305 case 0x1f:
306 if ((cmd & (1 << 23)) == 0) /* inline vertices */
307 return (cmd & 0x1ffff) + 2;
308 else if (cmd & (1 << 17)) /* indirect random */
309 if ((cmd & 0xffff) == 0)
310 return 0; /* unknown length, too hard */
311 else
312 return (((cmd & 0xffff) + 1) / 2) + 1;
313 else
314 return 2; /* indirect sequential */
315 default:
316 return 0;
317 }
318 default:
319 return 0;
320 }
321
322 return 0;
323}
324
325static int validate_cmd(int cmd)
326{
327 int ret = do_validate_cmd(cmd);
328
Dave Airliebc5f4522007-11-05 12:50:58 +1000329/* printk("validate_cmd( %x ): %d\n", cmd, ret); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 return ret;
332}
333
Eric Anholt201361a2009-03-11 12:30:04 -0700334static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 drm_i915_private_t *dev_priv = dev->dev_private;
337 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800339 if ((dwords+1) * sizeof(int) >= dev_priv->render_ring.size - 8)
Eric Anholt20caafa2007-08-25 19:22:43 +1000340 return -EINVAL;
Dave Airliede227f52006-01-25 15:31:43 +1100341
Alan Hourihanec29b6692006-08-12 16:29:24 +1000342 BEGIN_LP_RING((dwords+1)&~1);
Dave Airliede227f52006-01-25 15:31:43 +1100343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 for (i = 0; i < dwords;) {
345 int cmd, sz;
346
Eric Anholt201361a2009-03-11 12:30:04 -0700347 cmd = buffer[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
Eric Anholt20caafa2007-08-25 19:22:43 +1000350 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 OUT_RING(cmd);
353
354 while (++i, --sz) {
Eric Anholt201361a2009-03-11 12:30:04 -0700355 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
Dave Airliede227f52006-01-25 15:31:43 +1100359 if (dwords & 1)
360 OUT_RING(0);
361
362 ADVANCE_LP_RING();
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
365}
366
Eric Anholt673a3942008-07-30 12:06:12 -0700367int
368i915_emit_box(struct drm_device *dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700369 struct drm_clip_rect *boxes,
Eric Anholt673a3942008-07-30 12:06:12 -0700370 int i, int DR1, int DR4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Eric Anholt201361a2009-03-11 12:30:04 -0700372 struct drm_clip_rect box = boxes[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
375 DRM_ERROR("Bad box %d,%d..%d,%d\n",
376 box.x1, box.y1, box.x2, box.y2);
Eric Anholt20caafa2007-08-25 19:22:43 +1000377 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
Alan Hourihanec29b6692006-08-12 16:29:24 +1000380 if (IS_I965G(dev)) {
381 BEGIN_LP_RING(4);
382 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
383 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
Andrew Morton78eca432006-08-16 09:15:51 +1000384 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
Alan Hourihanec29b6692006-08-12 16:29:24 +1000385 OUT_RING(DR4);
386 ADVANCE_LP_RING();
387 } else {
388 BEGIN_LP_RING(6);
389 OUT_RING(GFX_OP_DRAWRECT_INFO);
390 OUT_RING(DR1);
391 OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
392 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
393 OUT_RING(DR4);
394 OUT_RING(0);
395 ADVANCE_LP_RING();
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 return 0;
399}
400
Alan Hourihanec29b6692006-08-12 16:29:24 +1000401/* XXX: Emitting the counter should really be moved to part of the IRQ
402 * emit. For now, do it in both places:
403 */
404
Dave Airlie84b1fd12007-07-11 15:53:27 +1000405static void i915_emit_breadcrumb(struct drm_device *dev)
Dave Airliede227f52006-01-25 15:31:43 +1100406{
407 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000408 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Dave Airliede227f52006-01-25 15:31:43 +1100409
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400410 dev_priv->counter++;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000411 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400412 dev_priv->counter = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000413 if (master_priv->sarea_priv)
414 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Dave Airliede227f52006-01-25 15:31:43 +1100415
416 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700417 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000418 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airliede227f52006-01-25 15:31:43 +1100419 OUT_RING(dev_priv->counter);
420 OUT_RING(0);
421 ADVANCE_LP_RING();
422}
423
Dave Airlie84b1fd12007-07-11 15:53:27 +1000424static int i915_dispatch_cmdbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700425 drm_i915_cmdbuffer_t *cmd,
426 struct drm_clip_rect *cliprects,
427 void *cmdbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 int nbox = cmd->num_cliprects;
430 int i = 0, count, ret;
431
432 if (cmd->sz & 0x3) {
433 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000434 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 i915_kernel_lost_context(dev);
438
439 count = nbox ? nbox : 1;
440
441 for (i = 0; i < count; i++) {
442 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700443 ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 cmd->DR1, cmd->DR4);
445 if (ret)
446 return ret;
447 }
448
Eric Anholt201361a2009-03-11 12:30:04 -0700449 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (ret)
451 return ret;
452 }
453
Dave Airliede227f52006-01-25 15:31:43 +1100454 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
Dave Airlie84b1fd12007-07-11 15:53:27 +1000458static int i915_dispatch_batchbuffer(struct drm_device * dev,
Eric Anholt201361a2009-03-11 12:30:04 -0700459 drm_i915_batchbuffer_t * batch,
460 struct drm_clip_rect *cliprects)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int nbox = batch->num_cliprects;
463 int i = 0, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if ((batch->start | batch->used) & 0x7) {
466 DRM_ERROR("alignment");
Eric Anholt20caafa2007-08-25 19:22:43 +1000467 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 i915_kernel_lost_context(dev);
471
472 count = nbox ? nbox : 1;
473
474 for (i = 0; i < count; i++) {
475 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -0700476 int ret = i915_emit_box(dev, cliprects, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 batch->DR1, batch->DR4);
478 if (ret)
479 return ret;
480 }
481
Keith Packard0790d5e2008-07-30 12:28:47 -0700482 if (!IS_I830(dev) && !IS_845G(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 BEGIN_LP_RING(2);
Dave Airlie21f16282007-08-07 09:09:51 +1000484 if (IS_I965G(dev)) {
485 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
486 OUT_RING(batch->start);
487 } else {
488 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
489 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ADVANCE_LP_RING();
492 } else {
493 BEGIN_LP_RING(4);
494 OUT_RING(MI_BATCH_BUFFER);
495 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
496 OUT_RING(batch->start + batch->used - 4);
497 OUT_RING(0);
498 ADVANCE_LP_RING();
499 }
500 }
501
Zou Nan hai1cafd342010-06-25 13:40:24 +0800502
503 if (IS_G4X(dev) || IS_IRONLAKE(dev)) {
504 BEGIN_LP_RING(2);
505 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
506 OUT_RING(MI_NOOP);
507 ADVANCE_LP_RING();
508 }
Dave Airliede227f52006-01-25 15:31:43 +1100509 i915_emit_breadcrumb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 return 0;
512}
513
Dave Airlieaf6061a2008-05-07 12:15:39 +1000514static int i915_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000517 struct drm_i915_master_private *master_priv =
518 dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Dave Airlie7c1c2872008-11-28 14:22:24 +1000520 if (!master_priv->sarea_priv)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400521 return -EINVAL;
522
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800523 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800524 __func__,
525 dev_priv->current_page,
526 master_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Dave Airlieaf6061a2008-05-07 12:15:39 +1000528 i915_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Dave Airlieaf6061a2008-05-07 12:15:39 +1000530 BEGIN_LP_RING(2);
Jesse Barnes585fb112008-07-29 11:54:06 -0700531 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000532 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 ADVANCE_LP_RING();
534
Dave Airlieaf6061a2008-05-07 12:15:39 +1000535 BEGIN_LP_RING(6);
536 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
537 OUT_RING(0);
538 if (dev_priv->current_page == 0) {
539 OUT_RING(dev_priv->back_offset);
540 dev_priv->current_page = 1;
541 } else {
542 OUT_RING(dev_priv->front_offset);
543 dev_priv->current_page = 0;
544 }
545 OUT_RING(0);
546 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000547
Dave Airlieaf6061a2008-05-07 12:15:39 +1000548 BEGIN_LP_RING(2);
549 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
550 OUT_RING(0);
551 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000552
Dave Airlie7c1c2872008-11-28 14:22:24 +1000553 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
Jesse Barnesac741ab2008-04-22 16:03:07 +1000554
Dave Airlieaf6061a2008-05-07 12:15:39 +1000555 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700556 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000557 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000558 OUT_RING(dev_priv->counter);
559 OUT_RING(0);
560 ADVANCE_LP_RING();
Jesse Barnesac741ab2008-04-22 16:03:07 +1000561
Dave Airlie7c1c2872008-11-28 14:22:24 +1000562 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Dave Airlie84b1fd12007-07-11 15:53:27 +1000566static int i915_quiescent(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 drm_i915_private_t *dev_priv = dev->dev_private;
569
570 i915_kernel_lost_context(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800571 return intel_wait_ring_buffer(dev, &dev_priv->render_ring,
572 dev_priv->render_ring.size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Eric Anholtc153f452007-09-03 12:06:45 +1000575static int i915_flush_ioctl(struct drm_device *dev, void *data,
576 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Eric Anholt546b0972008-09-01 16:45:29 -0700578 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Eric Anholt546b0972008-09-01 16:45:29 -0700580 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
581
582 mutex_lock(&dev->struct_mutex);
583 ret = i915_quiescent(dev);
584 mutex_unlock(&dev->struct_mutex);
585
586 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Eric Anholtc153f452007-09-03 12:06:45 +1000589static int i915_batchbuffer(struct drm_device *dev, void *data,
590 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000593 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000595 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000596 drm_i915_batchbuffer_t *batch = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int ret;
Eric Anholt201361a2009-03-11 12:30:04 -0700598 struct drm_clip_rect *cliprects = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!dev_priv->allow_batchbuffer) {
601 DRM_ERROR("Batchbuffer ioctl disabled\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000602 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800605 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800606 batch->start, batch->used, batch->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Eric Anholt546b0972008-09-01 16:45:29 -0700608 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Eric Anholt201361a2009-03-11 12:30:04 -0700610 if (batch->num_cliprects < 0)
611 return -EINVAL;
612
613 if (batch->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700614 cliprects = kcalloc(batch->num_cliprects,
615 sizeof(struct drm_clip_rect),
616 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700617 if (cliprects == NULL)
618 return -ENOMEM;
619
620 ret = copy_from_user(cliprects, batch->cliprects,
621 batch->num_cliprects *
622 sizeof(struct drm_clip_rect));
623 if (ret != 0)
624 goto fail_free;
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Eric Anholt546b0972008-09-01 16:45:29 -0700627 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700628 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
Eric Anholt546b0972008-09-01 16:45:29 -0700629 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400631 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000632 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700633
634fail_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700635 kfree(cliprects);
Eric Anholt201361a2009-03-11 12:30:04 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return ret;
638}
639
Eric Anholtc153f452007-09-03 12:06:45 +1000640static int i915_cmdbuffer(struct drm_device *dev, void *data,
641 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000644 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000646 master_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000647 drm_i915_cmdbuffer_t *cmdbuf = data;
Eric Anholt201361a2009-03-11 12:30:04 -0700648 struct drm_clip_rect *cliprects = NULL;
649 void *batch_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int ret;
651
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800652 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800653 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric Anholt546b0972008-09-01 16:45:29 -0700655 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Eric Anholt201361a2009-03-11 12:30:04 -0700657 if (cmdbuf->num_cliprects < 0)
658 return -EINVAL;
659
Eric Anholt9a298b22009-03-24 12:23:04 -0700660 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -0700661 if (batch_data == NULL)
662 return -ENOMEM;
663
664 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
665 if (ret != 0)
666 goto fail_batch_free;
667
668 if (cmdbuf->num_cliprects) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700669 cliprects = kcalloc(cmdbuf->num_cliprects,
670 sizeof(struct drm_clip_rect), GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000671 if (cliprects == NULL) {
672 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -0700673 goto fail_batch_free;
Owain Ainswortha40e8d32010-02-09 14:25:55 +0000674 }
Eric Anholt201361a2009-03-11 12:30:04 -0700675
676 ret = copy_from_user(cliprects, cmdbuf->cliprects,
677 cmdbuf->num_cliprects *
678 sizeof(struct drm_clip_rect));
679 if (ret != 0)
680 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
Eric Anholt546b0972008-09-01 16:45:29 -0700683 mutex_lock(&dev->struct_mutex);
Eric Anholt201361a2009-03-11 12:30:04 -0700684 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
Eric Anholt546b0972008-09-01 16:45:29 -0700685 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (ret) {
687 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
Chris Wright355d7f32009-04-17 01:18:55 +0000688 goto fail_clip_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400691 if (sarea_priv)
Keith Packard0baf8232008-11-08 11:44:14 +1000692 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Eric Anholt201361a2009-03-11 12:30:04 -0700693
Eric Anholt201361a2009-03-11 12:30:04 -0700694fail_clip_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700695 kfree(cliprects);
Chris Wright355d7f32009-04-17 01:18:55 +0000696fail_batch_free:
Eric Anholt9a298b22009-03-24 12:23:04 -0700697 kfree(batch_data);
Eric Anholt201361a2009-03-11 12:30:04 -0700698
699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Eric Anholtc153f452007-09-03 12:06:45 +1000702static int i915_flip_bufs(struct drm_device *dev, void *data,
703 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Eric Anholt546b0972008-09-01 16:45:29 -0700705 int ret;
706
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800707 DRM_DEBUG_DRIVER("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Eric Anholt546b0972008-09-01 16:45:29 -0700709 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Eric Anholt546b0972008-09-01 16:45:29 -0700711 mutex_lock(&dev->struct_mutex);
712 ret = i915_dispatch_flip(dev);
713 mutex_unlock(&dev->struct_mutex);
714
715 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Eric Anholtc153f452007-09-03 12:06:45 +1000718static int i915_getparam(struct drm_device *dev, void *data,
719 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000722 drm_i915_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int value;
724
725 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000726 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000727 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Eric Anholtc153f452007-09-03 12:06:45 +1000730 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 case I915_PARAM_IRQ_ACTIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700732 value = dev->pdev->irq ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 case I915_PARAM_ALLOW_BATCHBUFFER:
735 value = dev_priv->allow_batchbuffer ? 1 : 0;
736 break;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100737 case I915_PARAM_LAST_DISPATCH:
738 value = READ_BREADCRUMB(dev_priv);
739 break;
Kristian Høgsberged4c9c42008-08-20 11:08:52 -0400740 case I915_PARAM_CHIPSET_ID:
741 value = dev->pci_device;
742 break;
Eric Anholt673a3942008-07-30 12:06:12 -0700743 case I915_PARAM_HAS_GEM:
Dave Airlieac5c4e72008-12-19 15:38:34 +1000744 value = dev_priv->has_gem;
Eric Anholt673a3942008-07-30 12:06:12 -0700745 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800746 case I915_PARAM_NUM_FENCES_AVAIL:
747 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
748 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200749 case I915_PARAM_HAS_OVERLAY:
750 value = dev_priv->overlay ? 1 : 0;
751 break;
Jesse Barnese9560f72009-11-19 10:49:07 -0800752 case I915_PARAM_HAS_PAGEFLIPPING:
753 value = 1;
754 break;
Jesse Barnes76446ca2009-12-17 22:05:42 -0500755 case I915_PARAM_HAS_EXECBUF2:
756 /* depends on GEM */
757 value = dev_priv->has_gem;
758 break;
Zou Nan haie3a815f2010-05-31 13:58:47 +0800759 case I915_PARAM_HAS_BSD:
760 value = HAS_BSD(dev);
761 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800763 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
Jesse Barnes76446ca2009-12-17 22:05:42 -0500764 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000765 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Eric Anholtc153f452007-09-03 12:06:45 +1000768 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 DRM_ERROR("DRM_COPY_TO_USER failed\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000770 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
773 return 0;
774}
775
Eric Anholtc153f452007-09-03 12:06:45 +1000776static int i915_setparam(struct drm_device *dev, void *data,
777 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000780 drm_i915_setparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000783 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000784 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Eric Anholtc153f452007-09-03 12:06:45 +1000787 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
Eric Anholtc153f452007-09-03 12:06:45 +1000791 dev_priv->tex_lru_log_granularity = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 break;
793 case I915_SETPARAM_ALLOW_BATCHBUFFER:
Eric Anholtc153f452007-09-03 12:06:45 +1000794 dev_priv->allow_batchbuffer = param->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800796 case I915_SETPARAM_NUM_USED_FENCES:
797 if (param->value > dev_priv->num_fence_regs ||
798 param->value < 0)
799 return -EINVAL;
800 /* Userspace can use first N regs */
801 dev_priv->fence_reg_start = param->value;
802 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 default:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800804 DRM_DEBUG_DRIVER("unknown parameter %d\n",
yakui_zhaobe25ed92009-06-02 14:13:55 +0800805 param->param);
Eric Anholt20caafa2007-08-25 19:22:43 +1000806 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
809 return 0;
810}
811
Eric Anholtc153f452007-09-03 12:06:45 +1000812static int i915_set_status_page(struct drm_device *dev, void *data,
813 struct drm_file *file_priv)
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000814{
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000815 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000816 drm_i915_hws_addr_t *hws = data;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800817 struct intel_ring_buffer *ring = &dev_priv->render_ring;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000818
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000819 if (!I915_NEED_GFX_HWS(dev))
820 return -EINVAL;
821
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000822 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000823 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000824 return -EINVAL;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000825 }
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000826
Jesse Barnes79e53942008-11-07 14:24:08 -0800827 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
828 WARN(1, "tried to set status page when mode setting active\n");
829 return 0;
830 }
831
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800832 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000833
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800834 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
Eric Anholtc153f452007-09-03 12:06:45 +1000835
Eric Anholt8b409582007-11-22 16:40:37 +1000836 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000837 dev_priv->hws_map.size = 4*1024;
838 dev_priv->hws_map.type = 0;
839 dev_priv->hws_map.flags = 0;
840 dev_priv->hws_map.mtrr = 0;
841
Dave Airliedd0910b2009-02-25 14:49:21 +1000842 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000843 if (dev_priv->hws_map.handle == NULL) {
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000844 i915_dma_cleanup(dev);
Eric Anholte20f9c62010-05-26 14:51:06 -0700845 ring->status_page.gfx_addr = 0;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000846 DRM_ERROR("can not ioremap virtual address for"
847 " G33 hw status page\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000848 return -ENOMEM;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000849 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800850 ring->status_page.page_addr = dev_priv->hws_map.handle;
851 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
852 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000853
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800854 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700855 ring->status_page.gfx_addr);
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800856 DRM_DEBUG_DRIVER("load hws at %p\n",
Eric Anholte20f9c62010-05-26 14:51:06 -0700857 ring->status_page.page_addr);
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000858 return 0;
859}
860
Dave Airlieec2a4c32009-08-04 11:43:41 +1000861static int i915_get_bridge_dev(struct drm_device *dev)
862{
863 struct drm_i915_private *dev_priv = dev->dev_private;
864
865 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
866 if (!dev_priv->bridge_dev) {
867 DRM_ERROR("bridge device not found\n");
868 return -1;
869 }
870 return 0;
871}
872
Zhenyu Wangc48044112009-12-17 14:48:43 +0800873#define MCHBAR_I915 0x44
874#define MCHBAR_I965 0x48
875#define MCHBAR_SIZE (4*4096)
876
877#define DEVEN_REG 0x54
878#define DEVEN_MCHBAR_EN (1 << 28)
879
880/* Allocate space for the MCH regs if needed, return nonzero on error */
881static int
882intel_alloc_mchbar_resource(struct drm_device *dev)
883{
884 drm_i915_private_t *dev_priv = dev->dev_private;
885 int reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
886 u32 temp_lo, temp_hi = 0;
887 u64 mchbar_addr;
888 int ret = 0;
889
890 if (IS_I965G(dev))
891 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
892 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
893 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
894
895 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
896#ifdef CONFIG_PNP
897 if (mchbar_addr &&
898 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) {
899 ret = 0;
900 goto out;
901 }
902#endif
903
904 /* Get some space for it */
905 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus, &dev_priv->mch_res,
906 MCHBAR_SIZE, MCHBAR_SIZE,
907 PCIBIOS_MIN_MEM,
908 0, pcibios_align_resource,
909 dev_priv->bridge_dev);
910 if (ret) {
911 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
912 dev_priv->mch_res.start = 0;
913 goto out;
914 }
915
916 if (IS_I965G(dev))
917 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
918 upper_32_bits(dev_priv->mch_res.start));
919
920 pci_write_config_dword(dev_priv->bridge_dev, reg,
921 lower_32_bits(dev_priv->mch_res.start));
922out:
923 return ret;
924}
925
926/* Setup MCHBAR if possible, return true if we should disable it again */
927static void
928intel_setup_mchbar(struct drm_device *dev)
929{
930 drm_i915_private_t *dev_priv = dev->dev_private;
931 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
932 u32 temp;
933 bool enabled;
934
935 dev_priv->mchbar_need_disable = false;
936
937 if (IS_I915G(dev) || IS_I915GM(dev)) {
938 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
939 enabled = !!(temp & DEVEN_MCHBAR_EN);
940 } else {
941 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
942 enabled = temp & 1;
943 }
944
945 /* If it's already enabled, don't have to do anything */
946 if (enabled)
947 return;
948
949 if (intel_alloc_mchbar_resource(dev))
950 return;
951
952 dev_priv->mchbar_need_disable = true;
953
954 /* Space is allocated or reserved, so enable it. */
955 if (IS_I915G(dev) || IS_I915GM(dev)) {
956 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
957 temp | DEVEN_MCHBAR_EN);
958 } else {
959 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
960 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
961 }
962}
963
964static void
965intel_teardown_mchbar(struct drm_device *dev)
966{
967 drm_i915_private_t *dev_priv = dev->dev_private;
968 int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915;
969 u32 temp;
970
971 if (dev_priv->mchbar_need_disable) {
972 if (IS_I915G(dev) || IS_I915GM(dev)) {
973 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
974 temp &= ~DEVEN_MCHBAR_EN;
975 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
976 } else {
977 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
978 temp &= ~1;
979 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
980 }
981 }
982
983 if (dev_priv->mch_res.start)
984 release_resource(&dev_priv->mch_res);
985}
986
Jesse Barnes79e53942008-11-07 14:24:08 -0800987/**
988 * i915_probe_agp - get AGP bootup configuration
989 * @pdev: PCI device
990 * @aperture_size: returns AGP aperture configured size
991 * @preallocated_size: returns size of BIOS preallocated AGP space
992 *
993 * Since Intel integrated graphics are UMA, the BIOS has to set aside
994 * some RAM for the framebuffer at early boot. This code figures out
995 * how much was set aside so we can use it for our own purposes.
996 */
Eric Anholt2a34f5e62009-07-02 09:30:50 -0700997static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size,
Jesse Barnes80824002009-09-10 15:28:06 -0700998 uint32_t *preallocated_size,
999 uint32_t *start)
Jesse Barnes79e53942008-11-07 14:24:08 -08001000{
Dave Airlieec2a4c32009-08-04 11:43:41 +10001001 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001002 u16 tmp = 0;
1003 unsigned long overhead;
Eric Anholt241fa852009-01-02 18:05:51 -08001004 unsigned long stolen;
Jesse Barnes79e53942008-11-07 14:24:08 -08001005
Jesse Barnes79e53942008-11-07 14:24:08 -08001006 /* Get the fb aperture size and "stolen" memory amount. */
Dave Airlieec2a4c32009-08-04 11:43:41 +10001007 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &tmp);
Jesse Barnes79e53942008-11-07 14:24:08 -08001008
1009 *aperture_size = 1024 * 1024;
1010 *preallocated_size = 1024 * 1024;
1011
Eric Anholt60fd99e2008-12-03 22:50:02 -08001012 switch (dev->pdev->device) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001013 case PCI_DEVICE_ID_INTEL_82830_CGC:
1014 case PCI_DEVICE_ID_INTEL_82845G_IG:
1015 case PCI_DEVICE_ID_INTEL_82855GM_IG:
1016 case PCI_DEVICE_ID_INTEL_82865_IG:
1017 if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
1018 *aperture_size *= 64;
1019 else
1020 *aperture_size *= 128;
1021 break;
1022 default:
1023 /* 9xx supports large sizes, just look at the length */
Eric Anholt60fd99e2008-12-03 22:50:02 -08001024 *aperture_size = pci_resource_len(dev->pdev, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001025 break;
1026 }
1027
1028 /*
1029 * Some of the preallocated space is taken by the GTT
1030 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
1031 */
Eric Anholtbad720f2009-10-22 16:11:14 -07001032 if (IS_G4X(dev) || IS_PINEVIEW(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev))
Eric Anholt60fd99e2008-12-03 22:50:02 -08001033 overhead = 4096;
1034 else
1035 overhead = (*aperture_size / 1024) + 4096;
1036
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001037 if (IS_GEN6(dev)) {
1038 /* SNB has memory control reg at 0x50.w */
1039 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &tmp);
1040
1041 switch (tmp & SNB_GMCH_GMS_STOLEN_MASK) {
1042 case INTEL_855_GMCH_GMS_DISABLED:
Eric Anholtbad720f2009-10-22 16:11:14 -07001043 DRM_ERROR("video memory is disabled\n");
1044 return -1;
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001045 case SNB_GMCH_GMS_STOLEN_32M:
1046 stolen = 32 * 1024 * 1024;
1047 break;
1048 case SNB_GMCH_GMS_STOLEN_64M:
1049 stolen = 64 * 1024 * 1024;
1050 break;
1051 case SNB_GMCH_GMS_STOLEN_96M:
1052 stolen = 96 * 1024 * 1024;
1053 break;
1054 case SNB_GMCH_GMS_STOLEN_128M:
1055 stolen = 128 * 1024 * 1024;
1056 break;
1057 case SNB_GMCH_GMS_STOLEN_160M:
1058 stolen = 160 * 1024 * 1024;
1059 break;
1060 case SNB_GMCH_GMS_STOLEN_192M:
1061 stolen = 192 * 1024 * 1024;
1062 break;
1063 case SNB_GMCH_GMS_STOLEN_224M:
1064 stolen = 224 * 1024 * 1024;
1065 break;
1066 case SNB_GMCH_GMS_STOLEN_256M:
1067 stolen = 256 * 1024 * 1024;
1068 break;
1069 case SNB_GMCH_GMS_STOLEN_288M:
1070 stolen = 288 * 1024 * 1024;
1071 break;
1072 case SNB_GMCH_GMS_STOLEN_320M:
1073 stolen = 320 * 1024 * 1024;
1074 break;
1075 case SNB_GMCH_GMS_STOLEN_352M:
1076 stolen = 352 * 1024 * 1024;
1077 break;
1078 case SNB_GMCH_GMS_STOLEN_384M:
1079 stolen = 384 * 1024 * 1024;
1080 break;
1081 case SNB_GMCH_GMS_STOLEN_416M:
1082 stolen = 416 * 1024 * 1024;
1083 break;
1084 case SNB_GMCH_GMS_STOLEN_448M:
1085 stolen = 448 * 1024 * 1024;
1086 break;
1087 case SNB_GMCH_GMS_STOLEN_480M:
1088 stolen = 480 * 1024 * 1024;
1089 break;
1090 case SNB_GMCH_GMS_STOLEN_512M:
1091 stolen = 512 * 1024 * 1024;
1092 break;
1093 default:
1094 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1095 tmp & SNB_GMCH_GMS_STOLEN_MASK);
1096 return -1;
Eric Anholtbad720f2009-10-22 16:11:14 -07001097 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001098 } else {
1099 switch (tmp & INTEL_GMCH_GMS_MASK) {
1100 case INTEL_855_GMCH_GMS_DISABLED:
1101 DRM_ERROR("video memory is disabled\n");
1102 return -1;
1103 case INTEL_855_GMCH_GMS_STOLEN_1M:
1104 stolen = 1 * 1024 * 1024;
1105 break;
1106 case INTEL_855_GMCH_GMS_STOLEN_4M:
1107 stolen = 4 * 1024 * 1024;
1108 break;
1109 case INTEL_855_GMCH_GMS_STOLEN_8M:
1110 stolen = 8 * 1024 * 1024;
1111 break;
1112 case INTEL_855_GMCH_GMS_STOLEN_16M:
1113 stolen = 16 * 1024 * 1024;
1114 break;
1115 case INTEL_855_GMCH_GMS_STOLEN_32M:
1116 stolen = 32 * 1024 * 1024;
1117 break;
1118 case INTEL_915G_GMCH_GMS_STOLEN_48M:
1119 stolen = 48 * 1024 * 1024;
1120 break;
1121 case INTEL_915G_GMCH_GMS_STOLEN_64M:
1122 stolen = 64 * 1024 * 1024;
1123 break;
1124 case INTEL_GMCH_GMS_STOLEN_128M:
1125 stolen = 128 * 1024 * 1024;
1126 break;
1127 case INTEL_GMCH_GMS_STOLEN_256M:
1128 stolen = 256 * 1024 * 1024;
1129 break;
1130 case INTEL_GMCH_GMS_STOLEN_96M:
1131 stolen = 96 * 1024 * 1024;
1132 break;
1133 case INTEL_GMCH_GMS_STOLEN_160M:
1134 stolen = 160 * 1024 * 1024;
1135 break;
1136 case INTEL_GMCH_GMS_STOLEN_224M:
1137 stolen = 224 * 1024 * 1024;
1138 break;
1139 case INTEL_GMCH_GMS_STOLEN_352M:
1140 stolen = 352 * 1024 * 1024;
1141 break;
1142 default:
1143 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1144 tmp & INTEL_GMCH_GMS_MASK);
1145 return -1;
1146 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001147 }
Zhenyu Wang14bc4902009-11-11 01:25:25 +08001148
Eric Anholt241fa852009-01-02 18:05:51 -08001149 *preallocated_size = stolen - overhead;
Jesse Barnes80824002009-09-10 15:28:06 -07001150 *start = overhead;
Jesse Barnes79e53942008-11-07 14:24:08 -08001151
1152 return 0;
1153}
1154
Jesse Barnes80824002009-09-10 15:28:06 -07001155#define PTE_ADDRESS_MASK 0xfffff000
1156#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1157#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1158#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1159#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1160#define PTE_MAPPING_TYPE_MASK (3 << 1)
1161#define PTE_VALID (1 << 0)
1162
1163/**
1164 * i915_gtt_to_phys - take a GTT address and turn it into a physical one
1165 * @dev: drm device
1166 * @gtt_addr: address to translate
1167 *
1168 * Some chip functions require allocations from stolen space but need the
1169 * physical address of the memory in question. We use this routine
1170 * to get a physical address suitable for register programming from a given
1171 * GTT address.
1172 */
1173static unsigned long i915_gtt_to_phys(struct drm_device *dev,
1174 unsigned long gtt_addr)
1175{
1176 unsigned long *gtt;
1177 unsigned long entry, phys;
1178 int gtt_bar = IS_I9XX(dev) ? 0 : 1;
1179 int gtt_offset, gtt_size;
1180
1181 if (IS_I965G(dev)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001182 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001183 gtt_offset = 2*1024*1024;
1184 gtt_size = 2*1024*1024;
1185 } else {
1186 gtt_offset = 512*1024;
1187 gtt_size = 512*1024;
1188 }
1189 } else {
1190 gtt_bar = 3;
1191 gtt_offset = 0;
1192 gtt_size = pci_resource_len(dev->pdev, gtt_bar);
1193 }
1194
1195 gtt = ioremap_wc(pci_resource_start(dev->pdev, gtt_bar) + gtt_offset,
1196 gtt_size);
1197 if (!gtt) {
1198 DRM_ERROR("ioremap of GTT failed\n");
1199 return 0;
1200 }
1201
1202 entry = *(volatile u32 *)(gtt + (gtt_addr / 1024));
1203
Zhao Yakui44d98a62009-10-09 11:39:40 +08001204 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, PTE: 0x%08lx\n", gtt_addr, entry);
Jesse Barnes80824002009-09-10 15:28:06 -07001205
1206 /* Mask out these reserved bits on this hardware. */
1207 if (!IS_I9XX(dev) || IS_I915G(dev) || IS_I915GM(dev) ||
1208 IS_I945G(dev) || IS_I945GM(dev)) {
1209 entry &= ~PTE_ADDRESS_MASK_HIGH;
1210 }
1211
1212 /* If it's not a mapping type we know, then bail. */
1213 if ((entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_UNCACHED &&
1214 (entry & PTE_MAPPING_TYPE_MASK) != PTE_MAPPING_TYPE_CACHED) {
1215 iounmap(gtt);
1216 return 0;
1217 }
1218
1219 if (!(entry & PTE_VALID)) {
1220 DRM_ERROR("bad GTT entry in stolen space\n");
1221 iounmap(gtt);
1222 return 0;
1223 }
1224
1225 iounmap(gtt);
1226
1227 phys =(entry & PTE_ADDRESS_MASK) |
1228 ((uint64_t)(entry & PTE_ADDRESS_MASK_HIGH) << (32 - 4));
1229
Zhao Yakui44d98a62009-10-09 11:39:40 +08001230 DRM_DEBUG_DRIVER("GTT addr: 0x%08lx, phys addr: 0x%08lx\n", gtt_addr, phys);
Jesse Barnes80824002009-09-10 15:28:06 -07001231
1232 return phys;
1233}
1234
1235static void i915_warn_stolen(struct drm_device *dev)
1236{
1237 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1238 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1239}
1240
1241static void i915_setup_compression(struct drm_device *dev, int size)
1242{
1243 struct drm_i915_private *dev_priv = dev->dev_private;
Prarit Bhargava132b6aa2010-05-27 13:37:56 -04001244 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
Andrew Morton29bd0ae2009-11-17 14:08:52 -08001245 unsigned long cfb_base;
1246 unsigned long ll_base = 0;
Jesse Barnes80824002009-09-10 15:28:06 -07001247
1248 /* Leave 1M for line length buffer & misc. */
1249 compressed_fb = drm_mm_search_free(&dev_priv->vram, size, 4096, 0);
1250 if (!compressed_fb) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001251 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001252 i915_warn_stolen(dev);
1253 return;
1254 }
1255
1256 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1257 if (!compressed_fb) {
1258 i915_warn_stolen(dev);
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001259 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001260 return;
1261 }
1262
Jesse Barnes74dff282009-09-14 15:39:40 -07001263 cfb_base = i915_gtt_to_phys(dev, compressed_fb->start);
1264 if (!cfb_base) {
1265 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1266 drm_mm_put_block(compressed_fb);
Jesse Barnes80824002009-09-10 15:28:06 -07001267 }
1268
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001269 if (!(IS_GM45(dev) || IS_IRONLAKE_M(dev))) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001270 compressed_llb = drm_mm_search_free(&dev_priv->vram, 4096,
1271 4096, 0);
1272 if (!compressed_llb) {
1273 i915_warn_stolen(dev);
1274 return;
1275 }
1276
1277 compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096);
1278 if (!compressed_llb) {
1279 i915_warn_stolen(dev);
1280 return;
1281 }
1282
1283 ll_base = i915_gtt_to_phys(dev, compressed_llb->start);
1284 if (!ll_base) {
1285 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1286 drm_mm_put_block(compressed_fb);
1287 drm_mm_put_block(compressed_llb);
1288 }
Jesse Barnes80824002009-09-10 15:28:06 -07001289 }
1290
1291 dev_priv->cfb_size = size;
1292
Adam Jacksonee5382a2010-04-23 11:17:39 -04001293 intel_disable_fbc(dev);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001294 dev_priv->compressed_fb = compressed_fb;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001295 if (IS_IRONLAKE_M(dev))
1296 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1297 else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001298 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1299 } else {
Jesse Barnes74dff282009-09-14 15:39:40 -07001300 I915_WRITE(FBC_CFB_BASE, cfb_base);
1301 I915_WRITE(FBC_LL_BASE, ll_base);
Jesse Barnes20bf3772010-04-21 11:39:22 -07001302 dev_priv->compressed_llb = compressed_llb;
Jesse Barnes80824002009-09-10 15:28:06 -07001303 }
1304
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001305 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base,
Jesse Barnes80824002009-09-10 15:28:06 -07001306 ll_base, size >> 20);
Jesse Barnes80824002009-09-10 15:28:06 -07001307}
1308
Jesse Barnes20bf3772010-04-21 11:39:22 -07001309static void i915_cleanup_compression(struct drm_device *dev)
1310{
1311 struct drm_i915_private *dev_priv = dev->dev_private;
1312
1313 drm_mm_put_block(dev_priv->compressed_fb);
Jesse Barnesaebf0da2010-07-22 08:12:20 -07001314 if (dev_priv->compressed_llb)
Jesse Barnes20bf3772010-04-21 11:39:22 -07001315 drm_mm_put_block(dev_priv->compressed_llb);
1316}
1317
Dave Airlie28d52042009-09-21 14:33:58 +10001318/* true = enable decode, false = disable decoder */
1319static unsigned int i915_vga_set_decode(void *cookie, bool state)
1320{
1321 struct drm_device *dev = cookie;
1322
1323 intel_modeset_vga_set_state(dev, state);
1324 if (state)
1325 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1326 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1327 else
1328 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1329}
1330
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001331static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1332{
1333 struct drm_device *dev = pci_get_drvdata(pdev);
1334 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1335 if (state == VGA_SWITCHEROO_ON) {
Dave Airliefbf81762010-06-01 09:09:06 +10001336 printk(KERN_INFO "i915: switched on\n");
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001337 /* i915 resume handler doesn't set to D0 */
1338 pci_set_power_state(dev->pdev, PCI_D0);
1339 i915_resume(dev);
Dave Airliefbf81762010-06-01 09:09:06 +10001340 drm_kms_helper_poll_enable(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001341 } else {
1342 printk(KERN_ERR "i915: switched off\n");
Dave Airliefbf81762010-06-01 09:09:06 +10001343 drm_kms_helper_poll_disable(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001344 i915_suspend(dev, pmm);
1345 }
1346}
1347
1348static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1349{
1350 struct drm_device *dev = pci_get_drvdata(pdev);
1351 bool can_switch;
1352
1353 spin_lock(&dev->count_lock);
1354 can_switch = (dev->open_count == 0);
1355 spin_unlock(&dev->count_lock);
1356 return can_switch;
1357}
1358
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001359static int i915_load_modeset_init(struct drm_device *dev,
Jesse Barnes80824002009-09-10 15:28:06 -07001360 unsigned long prealloc_start,
Eric Anholt2a34f5e62009-07-02 09:30:50 -07001361 unsigned long prealloc_size,
1362 unsigned long agp_size)
Jesse Barnes79e53942008-11-07 14:24:08 -08001363{
1364 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001365 int fb_bar = IS_I9XX(dev) ? 2 : 0;
1366 int ret = 0;
1367
Jordan Crouse01d73a62010-05-27 13:40:24 -06001368 dev->mode_config.fb_base = pci_resource_start(dev->pdev, fb_bar) &
Jesse Barnes79e53942008-11-07 14:24:08 -08001369 0xff000000;
1370
Jesse Barnes79e53942008-11-07 14:24:08 -08001371 /* Basic memrange allocator for stolen space (aka vram) */
1372 drm_mm_init(&dev_priv->vram, 0, prealloc_size);
Jesse Barnes80824002009-09-10 15:28:06 -07001373 DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024));
Jesse Barnes79e53942008-11-07 14:24:08 -08001374
Ben Gamari11ed50e2009-09-14 17:48:45 -04001375 /* We're off and running w/KMS */
1376 dev_priv->mm.suspended = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001377
Eric Anholt13f4c432009-05-12 15:27:36 -07001378 /* Let GEM Manage from end of prealloc space to end of aperture.
1379 *
1380 * However, leave one page at the end still bound to the scratch page.
1381 * There are a number of places where the hardware apparently
1382 * prefetches past the end of the object, and we've seen multiple
1383 * hangs with the GPU head pointer stuck in a batchbuffer bound
1384 * at the last page of the aperture. One page should be enough to
1385 * keep any prefetching inside of the aperture.
1386 */
1387 i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
Jesse Barnes79e53942008-11-07 14:24:08 -08001388
Ben Gamari11ed50e2009-09-14 17:48:45 -04001389 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001390 ret = i915_gem_init_ringbuffer(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001391 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001392 if (ret)
Dave Airlieb8da7de2009-06-02 16:50:35 +10001393 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001394
Jesse Barnes80824002009-09-10 15:28:06 -07001395 /* Try to set up FBC with a reasonable compressed buffer size */
Shaohua Li9216d442009-10-10 15:20:55 +08001396 if (I915_HAS_FBC(dev) && i915_powersave) {
Jesse Barnes80824002009-09-10 15:28:06 -07001397 int cfb_size;
1398
1399 /* Try to get an 8M buffer... */
1400 if (prealloc_size > (9*1024*1024))
1401 cfb_size = 8*1024*1024;
1402 else /* fall back to 7/8 of the stolen space */
1403 cfb_size = prealloc_size * 7 / 8;
1404 i915_setup_compression(dev, cfb_size);
1405 }
1406
Jesse Barnes79e53942008-11-07 14:24:08 -08001407 /* Allow hardware batchbuffers unless told otherwise.
1408 */
1409 dev_priv->allow_batchbuffer = 1;
1410
1411 ret = intel_init_bios(dev);
1412 if (ret)
1413 DRM_INFO("failed to find VBIOS tables\n");
1414
Dave Airlie28d52042009-09-21 14:33:58 +10001415 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1416 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
1417 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001418 goto cleanup_ringbuffer;
Dave Airlie28d52042009-09-21 14:33:58 +10001419
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001420 ret = vga_switcheroo_register_client(dev->pdev,
1421 i915_switcheroo_set_state,
1422 i915_switcheroo_can_switch);
1423 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001424 goto cleanup_vga_client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001425
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001426 /* IIR "flip pending" bit means done if this bit is set */
1427 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1428 dev_priv->flip_pending_is_done = true;
1429
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001430 intel_modeset_init(dev);
1431
Jesse Barnes79e53942008-11-07 14:24:08 -08001432 ret = drm_irq_install(dev);
1433 if (ret)
Chris Wilson5a793952010-06-06 10:50:03 +01001434 goto cleanup_vga_switcheroo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001435
Jesse Barnes79e53942008-11-07 14:24:08 -08001436 /* Always safe in the mode setting case. */
1437 /* FIXME: do pre/post-mode set stuff in core KMS code */
1438 dev->vblank_disable_allowed = 1;
1439
1440 /*
1441 * Initialize the hardware status page IRQ location.
1442 */
1443
1444 I915_WRITE(INSTPM, (1 << 5) | (1 << 21));
1445
Chris Wilson5a793952010-06-06 10:50:03 +01001446 ret = intel_fbdev_init(dev);
1447 if (ret)
1448 goto cleanup_irq;
1449
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001450 drm_kms_helper_poll_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001451 return 0;
1452
Chris Wilson5a793952010-06-06 10:50:03 +01001453cleanup_irq:
1454 drm_irq_uninstall(dev);
1455cleanup_vga_switcheroo:
1456 vga_switcheroo_unregister_client(dev->pdev);
1457cleanup_vga_client:
1458 vga_client_register(dev->pdev, NULL, NULL, NULL);
1459cleanup_ringbuffer:
Eric Anholt21099532009-11-09 14:57:34 -08001460 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001461 i915_gem_cleanup_ringbuffer(dev);
Eric Anholt21099532009-11-09 14:57:34 -08001462 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001463out:
1464 return ret;
1465}
1466
Dave Airlie7c1c2872008-11-28 14:22:24 +10001467int i915_master_create(struct drm_device *dev, struct drm_master *master)
1468{
1469 struct drm_i915_master_private *master_priv;
1470
Eric Anholt9a298b22009-03-24 12:23:04 -07001471 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001472 if (!master_priv)
1473 return -ENOMEM;
1474
1475 master->driver_priv = master_priv;
1476 return 0;
1477}
1478
1479void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1480{
1481 struct drm_i915_master_private *master_priv = master->driver_priv;
1482
1483 if (!master_priv)
1484 return;
1485
Eric Anholt9a298b22009-03-24 12:23:04 -07001486 kfree(master_priv);
Dave Airlie7c1c2872008-11-28 14:22:24 +10001487
1488 master->driver_priv = NULL;
1489}
1490
Jesse Barnes7648fa92010-05-20 14:28:11 -07001491static void i915_pineview_get_mem_freq(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08001492{
1493 drm_i915_private_t *dev_priv = dev->dev_private;
1494 u32 tmp;
1495
Shaohua Li7662c8b2009-06-26 11:23:55 +08001496 tmp = I915_READ(CLKCFG);
1497
1498 switch (tmp & CLKCFG_FSB_MASK) {
1499 case CLKCFG_FSB_533:
1500 dev_priv->fsb_freq = 533; /* 133*4 */
1501 break;
1502 case CLKCFG_FSB_800:
1503 dev_priv->fsb_freq = 800; /* 200*4 */
1504 break;
1505 case CLKCFG_FSB_667:
1506 dev_priv->fsb_freq = 667; /* 167*4 */
1507 break;
1508 case CLKCFG_FSB_400:
1509 dev_priv->fsb_freq = 400; /* 100*4 */
1510 break;
1511 }
1512
1513 switch (tmp & CLKCFG_MEM_MASK) {
1514 case CLKCFG_MEM_533:
1515 dev_priv->mem_freq = 533;
1516 break;
1517 case CLKCFG_MEM_667:
1518 dev_priv->mem_freq = 667;
1519 break;
1520 case CLKCFG_MEM_800:
1521 dev_priv->mem_freq = 800;
1522 break;
1523 }
Li Peng95534262010-05-18 18:58:44 +08001524
1525 /* detect pineview DDR3 setting */
1526 tmp = I915_READ(CSHRDDR3CTL);
1527 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001528}
1529
Jesse Barnes7648fa92010-05-20 14:28:11 -07001530static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1531{
1532 drm_i915_private_t *dev_priv = dev->dev_private;
1533 u16 ddrpll, csipll;
1534
1535 ddrpll = I915_READ16(DDRMPLL1);
1536 csipll = I915_READ16(CSIPLL0);
1537
1538 switch (ddrpll & 0xff) {
1539 case 0xc:
1540 dev_priv->mem_freq = 800;
1541 break;
1542 case 0x10:
1543 dev_priv->mem_freq = 1066;
1544 break;
1545 case 0x14:
1546 dev_priv->mem_freq = 1333;
1547 break;
1548 case 0x18:
1549 dev_priv->mem_freq = 1600;
1550 break;
1551 default:
1552 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1553 ddrpll & 0xff);
1554 dev_priv->mem_freq = 0;
1555 break;
1556 }
1557
1558 dev_priv->r_t = dev_priv->mem_freq;
1559
1560 switch (csipll & 0x3ff) {
1561 case 0x00c:
1562 dev_priv->fsb_freq = 3200;
1563 break;
1564 case 0x00e:
1565 dev_priv->fsb_freq = 3733;
1566 break;
1567 case 0x010:
1568 dev_priv->fsb_freq = 4266;
1569 break;
1570 case 0x012:
1571 dev_priv->fsb_freq = 4800;
1572 break;
1573 case 0x014:
1574 dev_priv->fsb_freq = 5333;
1575 break;
1576 case 0x016:
1577 dev_priv->fsb_freq = 5866;
1578 break;
1579 case 0x018:
1580 dev_priv->fsb_freq = 6400;
1581 break;
1582 default:
1583 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1584 csipll & 0x3ff);
1585 dev_priv->fsb_freq = 0;
1586 break;
1587 }
1588
1589 if (dev_priv->fsb_freq == 3200) {
1590 dev_priv->c_m = 0;
1591 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1592 dev_priv->c_m = 1;
1593 } else {
1594 dev_priv->c_m = 2;
1595 }
1596}
1597
1598struct v_table {
1599 u8 vid;
1600 unsigned long vd; /* in .1 mil */
1601 unsigned long vm; /* in .1 mil */
1602 u8 pvid;
1603};
1604
1605static struct v_table v_table[] = {
1606 { 0, 16125, 15000, 0x7f, },
1607 { 1, 16000, 14875, 0x7e, },
1608 { 2, 15875, 14750, 0x7d, },
1609 { 3, 15750, 14625, 0x7c, },
1610 { 4, 15625, 14500, 0x7b, },
1611 { 5, 15500, 14375, 0x7a, },
1612 { 6, 15375, 14250, 0x79, },
1613 { 7, 15250, 14125, 0x78, },
1614 { 8, 15125, 14000, 0x77, },
1615 { 9, 15000, 13875, 0x76, },
1616 { 10, 14875, 13750, 0x75, },
1617 { 11, 14750, 13625, 0x74, },
1618 { 12, 14625, 13500, 0x73, },
1619 { 13, 14500, 13375, 0x72, },
1620 { 14, 14375, 13250, 0x71, },
1621 { 15, 14250, 13125, 0x70, },
1622 { 16, 14125, 13000, 0x6f, },
1623 { 17, 14000, 12875, 0x6e, },
1624 { 18, 13875, 12750, 0x6d, },
1625 { 19, 13750, 12625, 0x6c, },
1626 { 20, 13625, 12500, 0x6b, },
1627 { 21, 13500, 12375, 0x6a, },
1628 { 22, 13375, 12250, 0x69, },
1629 { 23, 13250, 12125, 0x68, },
1630 { 24, 13125, 12000, 0x67, },
1631 { 25, 13000, 11875, 0x66, },
1632 { 26, 12875, 11750, 0x65, },
1633 { 27, 12750, 11625, 0x64, },
1634 { 28, 12625, 11500, 0x63, },
1635 { 29, 12500, 11375, 0x62, },
1636 { 30, 12375, 11250, 0x61, },
1637 { 31, 12250, 11125, 0x60, },
1638 { 32, 12125, 11000, 0x5f, },
1639 { 33, 12000, 10875, 0x5e, },
1640 { 34, 11875, 10750, 0x5d, },
1641 { 35, 11750, 10625, 0x5c, },
1642 { 36, 11625, 10500, 0x5b, },
1643 { 37, 11500, 10375, 0x5a, },
1644 { 38, 11375, 10250, 0x59, },
1645 { 39, 11250, 10125, 0x58, },
1646 { 40, 11125, 10000, 0x57, },
1647 { 41, 11000, 9875, 0x56, },
1648 { 42, 10875, 9750, 0x55, },
1649 { 43, 10750, 9625, 0x54, },
1650 { 44, 10625, 9500, 0x53, },
1651 { 45, 10500, 9375, 0x52, },
1652 { 46, 10375, 9250, 0x51, },
1653 { 47, 10250, 9125, 0x50, },
1654 { 48, 10125, 9000, 0x4f, },
1655 { 49, 10000, 8875, 0x4e, },
1656 { 50, 9875, 8750, 0x4d, },
1657 { 51, 9750, 8625, 0x4c, },
1658 { 52, 9625, 8500, 0x4b, },
1659 { 53, 9500, 8375, 0x4a, },
1660 { 54, 9375, 8250, 0x49, },
1661 { 55, 9250, 8125, 0x48, },
1662 { 56, 9125, 8000, 0x47, },
1663 { 57, 9000, 7875, 0x46, },
1664 { 58, 8875, 7750, 0x45, },
1665 { 59, 8750, 7625, 0x44, },
1666 { 60, 8625, 7500, 0x43, },
1667 { 61, 8500, 7375, 0x42, },
1668 { 62, 8375, 7250, 0x41, },
1669 { 63, 8250, 7125, 0x40, },
1670 { 64, 8125, 7000, 0x3f, },
1671 { 65, 8000, 6875, 0x3e, },
1672 { 66, 7875, 6750, 0x3d, },
1673 { 67, 7750, 6625, 0x3c, },
1674 { 68, 7625, 6500, 0x3b, },
1675 { 69, 7500, 6375, 0x3a, },
1676 { 70, 7375, 6250, 0x39, },
1677 { 71, 7250, 6125, 0x38, },
1678 { 72, 7125, 6000, 0x37, },
1679 { 73, 7000, 5875, 0x36, },
1680 { 74, 6875, 5750, 0x35, },
1681 { 75, 6750, 5625, 0x34, },
1682 { 76, 6625, 5500, 0x33, },
1683 { 77, 6500, 5375, 0x32, },
1684 { 78, 6375, 5250, 0x31, },
1685 { 79, 6250, 5125, 0x30, },
1686 { 80, 6125, 5000, 0x2f, },
1687 { 81, 6000, 4875, 0x2e, },
1688 { 82, 5875, 4750, 0x2d, },
1689 { 83, 5750, 4625, 0x2c, },
1690 { 84, 5625, 4500, 0x2b, },
1691 { 85, 5500, 4375, 0x2a, },
1692 { 86, 5375, 4250, 0x29, },
1693 { 87, 5250, 4125, 0x28, },
1694 { 88, 5125, 4000, 0x27, },
1695 { 89, 5000, 3875, 0x26, },
1696 { 90, 4875, 3750, 0x25, },
1697 { 91, 4750, 3625, 0x24, },
1698 { 92, 4625, 3500, 0x23, },
1699 { 93, 4500, 3375, 0x22, },
1700 { 94, 4375, 3250, 0x21, },
1701 { 95, 4250, 3125, 0x20, },
1702 { 96, 4125, 3000, 0x1f, },
1703 { 97, 4125, 3000, 0x1e, },
1704 { 98, 4125, 3000, 0x1d, },
1705 { 99, 4125, 3000, 0x1c, },
1706 { 100, 4125, 3000, 0x1b, },
1707 { 101, 4125, 3000, 0x1a, },
1708 { 102, 4125, 3000, 0x19, },
1709 { 103, 4125, 3000, 0x18, },
1710 { 104, 4125, 3000, 0x17, },
1711 { 105, 4125, 3000, 0x16, },
1712 { 106, 4125, 3000, 0x15, },
1713 { 107, 4125, 3000, 0x14, },
1714 { 108, 4125, 3000, 0x13, },
1715 { 109, 4125, 3000, 0x12, },
1716 { 110, 4125, 3000, 0x11, },
1717 { 111, 4125, 3000, 0x10, },
1718 { 112, 4125, 3000, 0x0f, },
1719 { 113, 4125, 3000, 0x0e, },
1720 { 114, 4125, 3000, 0x0d, },
1721 { 115, 4125, 3000, 0x0c, },
1722 { 116, 4125, 3000, 0x0b, },
1723 { 117, 4125, 3000, 0x0a, },
1724 { 118, 4125, 3000, 0x09, },
1725 { 119, 4125, 3000, 0x08, },
1726 { 120, 1125, 0, 0x07, },
1727 { 121, 1000, 0, 0x06, },
1728 { 122, 875, 0, 0x05, },
1729 { 123, 750, 0, 0x04, },
1730 { 124, 625, 0, 0x03, },
1731 { 125, 500, 0, 0x02, },
1732 { 126, 375, 0, 0x01, },
1733 { 127, 0, 0, 0x00, },
1734};
1735
1736struct cparams {
1737 int i;
1738 int t;
1739 int m;
1740 int c;
1741};
1742
1743static struct cparams cparams[] = {
1744 { 1, 1333, 301, 28664 },
1745 { 1, 1066, 294, 24460 },
1746 { 1, 800, 294, 25192 },
1747 { 0, 1333, 276, 27605 },
1748 { 0, 1066, 276, 27605 },
1749 { 0, 800, 231, 23784 },
1750};
1751
1752unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1753{
1754 u64 total_count, diff, ret;
1755 u32 count1, count2, count3, m = 0, c = 0;
1756 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1757 int i;
1758
1759 diff1 = now - dev_priv->last_time1;
1760
1761 count1 = I915_READ(DMIEC);
1762 count2 = I915_READ(DDREC);
1763 count3 = I915_READ(CSIEC);
1764
1765 total_count = count1 + count2 + count3;
1766
1767 /* FIXME: handle per-counter overflow */
1768 if (total_count < dev_priv->last_count1) {
1769 diff = ~0UL - dev_priv->last_count1;
1770 diff += total_count;
1771 } else {
1772 diff = total_count - dev_priv->last_count1;
1773 }
1774
1775 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1776 if (cparams[i].i == dev_priv->c_m &&
1777 cparams[i].t == dev_priv->r_t) {
1778 m = cparams[i].m;
1779 c = cparams[i].c;
1780 break;
1781 }
1782 }
1783
1784 div_u64(diff, diff1);
1785 ret = ((m * diff) + c);
1786 div_u64(ret, 10);
1787
1788 dev_priv->last_count1 = total_count;
1789 dev_priv->last_time1 = now;
1790
1791 return ret;
1792}
1793
1794unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1795{
1796 unsigned long m, x, b;
1797 u32 tsfs;
1798
1799 tsfs = I915_READ(TSFS);
1800
1801 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1802 x = I915_READ8(TR1);
1803
1804 b = tsfs & TSFS_INTR_MASK;
1805
1806 return ((m * x) / 127) - b;
1807}
1808
1809static unsigned long pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
1810{
1811 unsigned long val = 0;
1812 int i;
1813
1814 for (i = 0; i < ARRAY_SIZE(v_table); i++) {
1815 if (v_table[i].pvid == pxvid) {
1816 if (IS_MOBILE(dev_priv->dev))
1817 val = v_table[i].vm;
1818 else
1819 val = v_table[i].vd;
1820 }
1821 }
1822
1823 return val;
1824}
1825
1826void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1827{
1828 struct timespec now, diff1;
1829 u64 diff;
1830 unsigned long diffms;
1831 u32 count;
1832
1833 getrawmonotonic(&now);
1834 diff1 = timespec_sub(now, dev_priv->last_time2);
1835
1836 /* Don't divide by 0 */
1837 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1838 if (!diffms)
1839 return;
1840
1841 count = I915_READ(GFXEC);
1842
1843 if (count < dev_priv->last_count2) {
1844 diff = ~0UL - dev_priv->last_count2;
1845 diff += count;
1846 } else {
1847 diff = count - dev_priv->last_count2;
1848 }
1849
1850 dev_priv->last_count2 = count;
1851 dev_priv->last_time2 = now;
1852
1853 /* More magic constants... */
1854 diff = diff * 1181;
1855 div_u64(diff, diffms * 10);
1856 dev_priv->gfx_power = diff;
1857}
1858
1859unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1860{
1861 unsigned long t, corr, state1, corr2, state2;
1862 u32 pxvid, ext_v;
1863
1864 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1865 pxvid = (pxvid >> 24) & 0x7f;
1866 ext_v = pvid_to_extvid(dev_priv, pxvid);
1867
1868 state1 = ext_v;
1869
1870 t = i915_mch_val(dev_priv);
1871
1872 /* Revel in the empirically derived constants */
1873
1874 /* Correction factor in 1/100000 units */
1875 if (t > 80)
1876 corr = ((t * 2349) + 135940);
1877 else if (t >= 50)
1878 corr = ((t * 964) + 29317);
1879 else /* < 50 */
1880 corr = ((t * 301) + 1004);
1881
1882 corr = corr * ((150142 * state1) / 10000 - 78642);
1883 corr /= 100000;
1884 corr2 = (corr * dev_priv->corr);
1885
1886 state2 = (corr2 * state1) / 10000;
1887 state2 /= 100; /* convert to mW */
1888
1889 i915_update_gfx_val(dev_priv);
1890
1891 return dev_priv->gfx_power + state2;
1892}
1893
1894/* Global for IPS driver to get at the current i915 device */
1895static struct drm_i915_private *i915_mch_dev;
1896/*
1897 * Lock protecting IPS related data structures
1898 * - i915_mch_dev
1899 * - dev_priv->max_delay
1900 * - dev_priv->min_delay
1901 * - dev_priv->fmax
1902 * - dev_priv->gpu_busy
1903 */
1904DEFINE_SPINLOCK(mchdev_lock);
1905
1906/**
1907 * i915_read_mch_val - return value for IPS use
1908 *
1909 * Calculate and return a value for the IPS driver to use when deciding whether
1910 * we have thermal and power headroom to increase CPU or GPU power budget.
1911 */
1912unsigned long i915_read_mch_val(void)
1913{
1914 struct drm_i915_private *dev_priv;
1915 unsigned long chipset_val, graphics_val, ret = 0;
1916
1917 spin_lock(&mchdev_lock);
1918 if (!i915_mch_dev)
1919 goto out_unlock;
1920 dev_priv = i915_mch_dev;
1921
1922 chipset_val = i915_chipset_val(dev_priv);
1923 graphics_val = i915_gfx_val(dev_priv);
1924
1925 ret = chipset_val + graphics_val;
1926
1927out_unlock:
1928 spin_unlock(&mchdev_lock);
1929
1930 return ret;
1931}
1932EXPORT_SYMBOL_GPL(i915_read_mch_val);
1933
1934/**
1935 * i915_gpu_raise - raise GPU frequency limit
1936 *
1937 * Raise the limit; IPS indicates we have thermal headroom.
1938 */
1939bool i915_gpu_raise(void)
1940{
1941 struct drm_i915_private *dev_priv;
1942 bool ret = true;
1943
1944 spin_lock(&mchdev_lock);
1945 if (!i915_mch_dev) {
1946 ret = false;
1947 goto out_unlock;
1948 }
1949 dev_priv = i915_mch_dev;
1950
1951 if (dev_priv->max_delay > dev_priv->fmax)
1952 dev_priv->max_delay--;
1953
1954out_unlock:
1955 spin_unlock(&mchdev_lock);
1956
1957 return ret;
1958}
1959EXPORT_SYMBOL_GPL(i915_gpu_raise);
1960
1961/**
1962 * i915_gpu_lower - lower GPU frequency limit
1963 *
1964 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1965 * frequency maximum.
1966 */
1967bool i915_gpu_lower(void)
1968{
1969 struct drm_i915_private *dev_priv;
1970 bool ret = true;
1971
1972 spin_lock(&mchdev_lock);
1973 if (!i915_mch_dev) {
1974 ret = false;
1975 goto out_unlock;
1976 }
1977 dev_priv = i915_mch_dev;
1978
1979 if (dev_priv->max_delay < dev_priv->min_delay)
1980 dev_priv->max_delay++;
1981
1982out_unlock:
1983 spin_unlock(&mchdev_lock);
1984
1985 return ret;
1986}
1987EXPORT_SYMBOL_GPL(i915_gpu_lower);
1988
1989/**
1990 * i915_gpu_busy - indicate GPU business to IPS
1991 *
1992 * Tell the IPS driver whether or not the GPU is busy.
1993 */
1994bool i915_gpu_busy(void)
1995{
1996 struct drm_i915_private *dev_priv;
1997 bool ret = false;
1998
1999 spin_lock(&mchdev_lock);
2000 if (!i915_mch_dev)
2001 goto out_unlock;
2002 dev_priv = i915_mch_dev;
2003
2004 ret = dev_priv->busy;
2005
2006out_unlock:
2007 spin_unlock(&mchdev_lock);
2008
2009 return ret;
2010}
2011EXPORT_SYMBOL_GPL(i915_gpu_busy);
2012
2013/**
2014 * i915_gpu_turbo_disable - disable graphics turbo
2015 *
2016 * Disable graphics turbo by resetting the max frequency and setting the
2017 * current frequency to the default.
2018 */
2019bool i915_gpu_turbo_disable(void)
2020{
2021 struct drm_i915_private *dev_priv;
2022 bool ret = true;
2023
2024 spin_lock(&mchdev_lock);
2025 if (!i915_mch_dev) {
2026 ret = false;
2027 goto out_unlock;
2028 }
2029 dev_priv = i915_mch_dev;
2030
2031 dev_priv->max_delay = dev_priv->fstart;
2032
2033 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
2034 ret = false;
2035
2036out_unlock:
2037 spin_unlock(&mchdev_lock);
2038
2039 return ret;
2040}
2041EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
2042
Jesse Barnes79e53942008-11-07 14:24:08 -08002043/**
2044 * i915_driver_load - setup chip and create an initial config
2045 * @dev: DRM device
2046 * @flags: startup flags
2047 *
2048 * The driver load routine has to do several things:
2049 * - drive output discovery via intel_modeset_init()
2050 * - initialize the memory manager
2051 * - allocate initial config memory
2052 * - setup the DRM framebuffer with the allocated memory
2053 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002054int i915_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11002055{
Luca Tettamantiea059a12010-04-08 21:41:59 +02002056 struct drm_i915_private *dev_priv;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +11002057 resource_size_t base, size;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002058 int ret = 0, mmio_bar;
Jesse Barnes80824002009-09-10 15:28:06 -07002059 uint32_t agp_size, prealloc_size, prealloc_start;
Dave Airlie22eae942005-11-10 22:16:34 +11002060 /* i915 has 4 more counters */
2061 dev->counters += 4;
2062 dev->types[6] = _DRM_STAT_IRQ;
2063 dev->types[7] = _DRM_STAT_PRIMARY;
2064 dev->types[8] = _DRM_STAT_SECONDARY;
2065 dev->types[9] = _DRM_STAT_DMA;
2066
Eric Anholt9a298b22009-03-24 12:23:04 -07002067 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002068 if (dev_priv == NULL)
2069 return -ENOMEM;
2070
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002071 dev->dev_private = (void *)dev_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002072 dev_priv->dev = dev;
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002073 dev_priv->info = (struct intel_device_info *) flags;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002074
2075 /* Add register map (needed for suspend/resume) */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -05002076 mmio_bar = IS_I9XX(dev) ? 0 : 1;
Jordan Crouse01d73a62010-05-27 13:40:24 -06002077 base = pci_resource_start(dev->pdev, mmio_bar);
2078 size = pci_resource_len(dev->pdev, mmio_bar);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002079
Dave Airlieec2a4c32009-08-04 11:43:41 +10002080 if (i915_get_bridge_dev(dev)) {
2081 ret = -EIO;
2082 goto free_priv;
2083 }
2084
Daniel Vetter9f82d232010-08-30 21:25:23 +02002085 /* overlay on gen2 is broken and can't address above 1G */
2086 if (IS_GEN2(dev))
2087 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
2088
Eric Anholt3043c602008-10-02 12:24:47 -07002089 dev_priv->regs = ioremap(base, size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002090 if (!dev_priv->regs) {
2091 DRM_ERROR("failed to map registers\n");
2092 ret = -EIO;
Dave Airlieec2a4c32009-08-04 11:43:41 +10002093 goto put_bridge;
Jesse Barnes79e53942008-11-07 14:24:08 -08002094 }
Eric Anholted4cb412008-07-29 12:10:39 -07002095
Eric Anholtab657db12009-01-23 12:57:47 -08002096 dev_priv->mm.gtt_mapping =
2097 io_mapping_create_wc(dev->agp->base,
2098 dev->agp->agp_info.aper_size * 1024*1024);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002099 if (dev_priv->mm.gtt_mapping == NULL) {
2100 ret = -EIO;
2101 goto out_rmmap;
2102 }
2103
Eric Anholtab657db12009-01-23 12:57:47 -08002104 /* Set up a WC MTRR for non-PAT systems. This is more common than
2105 * one would think, because the kernel disables PAT on first
2106 * generation Core chips because WC PAT gets overridden by a UC
2107 * MTRR if present. Even if a UC MTRR isn't present.
2108 */
2109 dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
2110 dev->agp->agp_info.aper_size *
2111 1024 * 1024,
2112 MTRR_TYPE_WRCOMB, 1);
2113 if (dev_priv->mm.gtt_mtrr < 0) {
Eric Anholt040aefa2009-03-10 12:31:12 -07002114 DRM_INFO("MTRR allocation failed. Graphics "
Eric Anholtab657db12009-01-23 12:57:47 -08002115 "performance may suffer.\n");
2116 }
2117
Jesse Barnes80824002009-09-10 15:28:06 -07002118 ret = i915_probe_agp(dev, &agp_size, &prealloc_size, &prealloc_start);
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002119 if (ret)
2120 goto out_iomapfree;
2121
Jesse Barnesd1d6ca72010-07-08 09:22:46 -07002122 if (prealloc_size > intel_max_stolen) {
2123 DRM_INFO("detected %dM stolen memory, trimming to %dM\n",
2124 prealloc_size >> 20, intel_max_stolen >> 20);
2125 prealloc_size = intel_max_stolen;
2126 }
2127
Chris Wilsonaed5f1d2009-10-14 13:40:04 +01002128 dev_priv->wq = create_singlethread_workqueue("i915");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002129 if (dev_priv->wq == NULL) {
2130 DRM_ERROR("Failed to create our workqueue.\n");
2131 ret = -ENOMEM;
2132 goto out_iomapfree;
2133 }
2134
Dave Airlieac5c4e72008-12-19 15:38:34 +10002135 /* enable GEM by default */
2136 dev_priv->has_gem = 1;
Dave Airlieac5c4e72008-12-19 15:38:34 +10002137
Eric Anholt2a34f5e62009-07-02 09:30:50 -07002138 if (prealloc_size > agp_size * 3 / 4) {
2139 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
2140 "memory stolen.\n",
2141 prealloc_size / 1024, agp_size / 1024);
2142 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
2143 "updating the BIOS to fix).\n");
2144 dev_priv->has_gem = 0;
2145 }
2146
Chris Wilson79a78dd2010-05-17 09:23:54 +01002147 if (dev_priv->has_gem == 0 &&
2148 drm_core_check_feature(dev, DRIVER_MODESET)) {
2149 DRM_ERROR("kernel modesetting requires GEM, disabling driver.\n");
2150 ret = -ENODEV;
2151 goto out_iomapfree;
2152 }
2153
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002154 dev->driver->get_vblank_counter = i915_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002155 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eric Anholtbad720f2009-10-22 16:11:14 -07002156 if (IS_G4X(dev) || IS_IRONLAKE(dev) || IS_GEN6(dev)) {
Jesse Barnes42c27982009-05-05 13:13:16 -07002157 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002158 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Jesse Barnes42c27982009-05-05 13:13:16 -07002159 }
Jesse Barnes9880b7a2009-02-06 10:22:41 -08002160
Zhenyu Wangc48044112009-12-17 14:48:43 +08002161 /* Try to make sure MCHBAR is enabled before poking at it */
2162 intel_setup_mchbar(dev);
2163
Eric Anholt673a3942008-07-30 12:06:12 -07002164 i915_gem_load(dev);
2165
Keith Packard398c9cb2008-07-30 13:03:43 -07002166 /* Init HWS */
2167 if (!I915_NEED_GFX_HWS(dev)) {
2168 ret = i915_init_phys_hws(dev);
2169 if (ret != 0)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002170 goto out_workqueue_free;
Keith Packard398c9cb2008-07-30 13:03:43 -07002171 }
Eric Anholted4cb412008-07-29 12:10:39 -07002172
Jesse Barnes7648fa92010-05-20 14:28:11 -07002173 if (IS_PINEVIEW(dev))
2174 i915_pineview_get_mem_freq(dev);
2175 else if (IS_IRONLAKE(dev))
2176 i915_ironlake_get_mem_freq(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002177
Eric Anholted4cb412008-07-29 12:10:39 -07002178 /* On the 945G/GM, the chipset reports the MSI capability on the
2179 * integrated graphics even though the support isn't actually there
2180 * according to the published specs. It doesn't appear to function
2181 * correctly in testing on 945G.
2182 * This may be a side effect of MSI having been made available for PEG
2183 * and the registers being closely associated.
Keith Packardd1ed6292008-10-17 00:44:42 -07002184 *
2185 * According to chipset errata, on the 965GM, MSI interrupts may
Keith Packardb60678a2008-12-08 11:12:28 -08002186 * be lost or delayed, but we use them anyways to avoid
2187 * stuck interrupts on some machines.
Eric Anholted4cb412008-07-29 12:10:39 -07002188 */
Keith Packardb60678a2008-12-08 11:12:28 -08002189 if (!IS_I945G(dev) && !IS_I945GM(dev))
Eric Anholtd3e74d02008-11-03 14:46:17 -08002190 pci_enable_msi(dev->pdev);
Eric Anholted4cb412008-07-29 12:10:39 -07002191
2192 spin_lock_init(&dev_priv->user_irq_lock);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002193 spin_lock_init(&dev_priv->error_lock);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002194 dev_priv->trace_irq_seqno = 0;
Eric Anholted4cb412008-07-29 12:10:39 -07002195
Keith Packard52440212008-11-18 09:30:25 -08002196 ret = drm_vblank_init(dev, I915_NUM_PIPE);
2197
2198 if (ret) {
2199 (void) i915_driver_unload(dev);
2200 return ret;
2201 }
2202
Ben Gamari11ed50e2009-09-14 17:48:45 -04002203 /* Start out suspended */
2204 dev_priv->mm.suspended = 1;
2205
Zhenyu Wang3bad0782010-04-07 16:15:53 +08002206 intel_detect_pch(dev);
2207
Jesse Barnes79e53942008-11-07 14:24:08 -08002208 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes80824002009-09-10 15:28:06 -07002209 ret = i915_load_modeset_init(dev, prealloc_start,
2210 prealloc_size, agp_size);
Jesse Barnes79e53942008-11-07 14:24:08 -08002211 if (ret < 0) {
2212 DRM_ERROR("failed to init modeset\n");
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002213 goto out_workqueue_free;
Jesse Barnes79e53942008-11-07 14:24:08 -08002214 }
2215 }
2216
Matthew Garrett74a365b2009-03-19 21:35:39 +00002217 /* Must be done after probing outputs */
Zhao Yakui01c66882009-10-28 05:10:00 +00002218 intel_opregion_init(dev, 0);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002219
Ben Gamarif65d9422009-09-14 17:48:44 -04002220 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2221 (unsigned long) dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07002222
2223 spin_lock(&mchdev_lock);
2224 i915_mch_dev = dev_priv;
2225 dev_priv->mchdev_lock = &mchdev_lock;
2226 spin_unlock(&mchdev_lock);
2227
Jesse Barnes79e53942008-11-07 14:24:08 -08002228 return 0;
2229
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002230out_workqueue_free:
2231 destroy_workqueue(dev_priv->wq);
Venkatesh Pallipadi66441072009-02-24 17:35:11 -08002232out_iomapfree:
2233 io_mapping_free(dev_priv->mm.gtt_mapping);
Jesse Barnes79e53942008-11-07 14:24:08 -08002234out_rmmap:
2235 iounmap(dev_priv->regs);
Dave Airlieec2a4c32009-08-04 11:43:41 +10002236put_bridge:
2237 pci_dev_put(dev_priv->bridge_dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002238free_priv:
Eric Anholt9a298b22009-03-24 12:23:04 -07002239 kfree(dev_priv);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002240 return ret;
2241}
2242
2243int i915_driver_unload(struct drm_device *dev)
2244{
2245 struct drm_i915_private *dev_priv = dev->dev_private;
2246
Chris Wilson9df30792010-02-18 10:24:56 +00002247 i915_destroy_error_state(dev);
2248
Jesse Barnes7648fa92010-05-20 14:28:11 -07002249 spin_lock(&mchdev_lock);
2250 i915_mch_dev = NULL;
2251 spin_unlock(&mchdev_lock);
2252
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002253 destroy_workqueue(dev_priv->wq);
Ben Gamarif65d9422009-09-14 17:48:44 -04002254 del_timer_sync(&dev_priv->hangcheck_timer);
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002255
Eric Anholtab657db12009-01-23 12:57:47 -08002256 io_mapping_free(dev_priv->mm.gtt_mapping);
2257 if (dev_priv->mm.gtt_mtrr >= 0) {
2258 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2259 dev->agp->agp_info.aper_size * 1024 * 1024);
2260 dev_priv->mm.gtt_mtrr = -1;
2261 }
2262
Jesse Barnes79e53942008-11-07 14:24:08 -08002263 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jesse Barnes3d8620c2010-03-26 11:07:21 -07002264 intel_modeset_cleanup(dev);
2265
Zhao Yakui6363ee62009-11-24 09:48:44 +08002266 /*
2267 * free the memory space allocated for the child device
2268 * config parsed from VBT
2269 */
2270 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2271 kfree(dev_priv->child_dev);
2272 dev_priv->child_dev = NULL;
2273 dev_priv->child_dev_num = 0;
2274 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002275 drm_irq_uninstall(dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002276 vga_switcheroo_unregister_client(dev->pdev);
Dave Airlie28d52042009-09-21 14:33:58 +10002277 vga_client_register(dev->pdev, NULL, NULL, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08002278 }
2279
Eric Anholted4cb412008-07-29 12:10:39 -07002280 if (dev->pdev->msi_enabled)
2281 pci_disable_msi(dev->pdev);
2282
Eric Anholt3043c602008-10-02 12:24:47 -07002283 if (dev_priv->regs != NULL)
2284 iounmap(dev_priv->regs);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002285
Zhao Yakui01c66882009-10-28 05:10:00 +00002286 intel_opregion_free(dev, 0);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002287
Jesse Barnes79e53942008-11-07 14:24:08 -08002288 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10002289 i915_gem_free_all_phys_object(dev);
2290
Jesse Barnes79e53942008-11-07 14:24:08 -08002291 mutex_lock(&dev->struct_mutex);
2292 i915_gem_cleanup_ringbuffer(dev);
2293 mutex_unlock(&dev->struct_mutex);
Jesse Barnes20bf3772010-04-21 11:39:22 -07002294 if (I915_HAS_FBC(dev) && i915_powersave)
2295 i915_cleanup_compression(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002296 drm_mm_takedown(&dev_priv->vram);
2297 i915_gem_lastclose(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002298
2299 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002300 }
2301
Zhenyu Wangc48044112009-12-17 14:48:43 +08002302 intel_teardown_mchbar(dev);
2303
Dave Airlieec2a4c32009-08-04 11:43:41 +10002304 pci_dev_put(dev_priv->bridge_dev);
Eric Anholt9a298b22009-03-24 12:23:04 -07002305 kfree(dev->dev_private);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002306
Dave Airlie22eae942005-11-10 22:16:34 +11002307 return 0;
2308}
2309
Eric Anholt673a3942008-07-30 12:06:12 -07002310int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
2311{
2312 struct drm_i915_file_private *i915_file_priv;
2313
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002314 DRM_DEBUG_DRIVER("\n");
Eric Anholt673a3942008-07-30 12:06:12 -07002315 i915_file_priv = (struct drm_i915_file_private *)
Eric Anholt9a298b22009-03-24 12:23:04 -07002316 kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07002317
2318 if (!i915_file_priv)
2319 return -ENOMEM;
2320
2321 file_priv->driver_priv = i915_file_priv;
2322
Eric Anholtb9624422009-06-03 07:27:35 +00002323 INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002324
2325 return 0;
2326}
2327
Jesse Barnes79e53942008-11-07 14:24:08 -08002328/**
2329 * i915_driver_lastclose - clean up after all DRM clients have exited
2330 * @dev: DRM device
2331 *
2332 * Take care of cleaning up after all DRM clients have exited. In the
2333 * mode setting case, we want to restore the kernel's initial mode (just
2334 * in case the last client left us in a bad state).
2335 *
2336 * Additionally, in the non-mode setting case, we'll tear down the AGP
2337 * and DMA structures, since the kernel won't be using them, and clea
2338 * up any GEM state.
2339 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002340void i915_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002342 drm_i915_private_t *dev_priv = dev->dev_private;
2343
Jesse Barnes79e53942008-11-07 14:24:08 -08002344 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10002345 drm_fb_helper_restore();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10002346 vga_switcheroo_process_delayed_switch();
Dave Airlie144a75f2008-03-30 07:53:58 +10002347 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08002348 }
Dave Airlie144a75f2008-03-30 07:53:58 +10002349
Eric Anholt673a3942008-07-30 12:06:12 -07002350 i915_gem_lastclose(dev);
2351
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002352 if (dev_priv->agp_heap)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002353 i915_mem_takedown(&(dev_priv->agp_heap));
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002354
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002355 i915_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
2357
Eric Anholt6c340ea2007-08-25 20:23:09 +10002358void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002360 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00002361 i915_gem_release(dev, file_priv);
Jesse Barnes79e53942008-11-07 14:24:08 -08002362 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2363 i915_mem_release(dev, file_priv, dev_priv->agp_heap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364}
2365
Eric Anholt673a3942008-07-30 12:06:12 -07002366void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
2367{
2368 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
2369
Eric Anholt9a298b22009-03-24 12:23:04 -07002370 kfree(i915_file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002371}
2372
Eric Anholtc153f452007-09-03 12:06:45 +10002373struct drm_ioctl_desc i915_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10002374 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2375 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2376 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2377 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2378 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2379 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2380 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2381 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2382 DRM_IOCTL_DEF_DRV(I915_ALLOC, i915_mem_alloc, DRM_AUTH),
2383 DRM_IOCTL_DEF_DRV(I915_FREE, i915_mem_free, DRM_AUTH),
2384 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2385 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
2386 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2387 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2388 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2389 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2390 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2391 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2392 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2393 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2394 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2395 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2396 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2397 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2398 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2399 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2400 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2401 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2402 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2403 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2404 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2405 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2406 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2407 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2408 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2409 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2410 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2411 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2412 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2413 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Dave Airliec94f7022005-07-07 21:03:38 +10002414};
2415
2416int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10002417
2418/**
2419 * Determine if the device really is AGP or not.
2420 *
2421 * All Intel graphics chipsets are treated as AGP, even if they are really
2422 * PCI-e.
2423 *
2424 * \param dev The device to be tested.
2425 *
2426 * \returns
2427 * A value of 1 is always retured to indictate every i9x5 is AGP.
2428 */
Dave Airlie84b1fd12007-07-11 15:53:27 +10002429int i915_driver_device_is_agp(struct drm_device * dev)
Dave Airliecda17382005-07-10 17:31:26 +10002430{
2431 return 1;
2432}