]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/gpu/drm/i915/i915_dma.c
drm/i915: add HAS_ALIASING_PPGTT parameter for userspace
[mirror_ubuntu-zesty-kernel.git] / drivers / gpu / drm / i915 / i915_dma.c
CommitLineData
1da177e4
LT
1/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
0d6aa60b 3/*
1da177e4
LT
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
bc54fd1a
DA
6 *
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 *
0d6aa60b 27 */
1da177e4 28
a70491cc
JP
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
1da177e4
LT
31#include "drmP.h"
32#include "drm.h"
79e53945 33#include "drm_crtc_helper.h"
785b93ef 34#include "drm_fb_helper.h"
79e53945 35#include "intel_drv.h"
1da177e4
LT
36#include "i915_drm.h"
37#include "i915_drv.h"
1c5d22f7 38#include "i915_trace.h"
63ee41d7 39#include "../../../platform/x86/intel_ips.h"
dcdb1674 40#include <linux/pci.h>
28d52043 41#include <linux/vgaarb.h>
c4804411
ZW
42#include <linux/acpi.h>
43#include <linux/pnp.h>
6a9ee8af 44#include <linux/vga_switcheroo.h>
5a0e3ad6 45#include <linux/slab.h>
e0cd3608 46#include <linux/module.h>
44834a67 47#include <acpi/video.h>
9e984bc1 48#include <asm/pat.h>
1da177e4 49
4cbf74cc
CW
50static void i915_write_hws_pga(struct drm_device *dev)
51{
52 drm_i915_private_t *dev_priv = dev->dev_private;
53 u32 addr;
54
55 addr = dev_priv->status_page_dmah->busaddr;
56 if (INTEL_INFO(dev)->gen >= 4)
57 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
58 I915_WRITE(HWS_PGA, addr);
59}
60
398c9cb2
KP
61/**
62 * Sets up the hardware status page for devices that need a physical address
63 * in the register.
64 */
3043c60c 65static int i915_init_phys_hws(struct drm_device *dev)
398c9cb2
KP
66{
67 drm_i915_private_t *dev_priv = dev->dev_private;
1ec14ad3 68
398c9cb2
KP
69 /* Program Hardware Status Page */
70 dev_priv->status_page_dmah =
e6be8d9d 71 drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE);
398c9cb2
KP
72
73 if (!dev_priv->status_page_dmah) {
74 DRM_ERROR("Can not allocate hardware status page\n");
75 return -ENOMEM;
76 }
398c9cb2 77
f3234706
KP
78 memset_io((void __force __iomem *)dev_priv->status_page_dmah->vaddr,
79 0, PAGE_SIZE);
398c9cb2 80
4cbf74cc 81 i915_write_hws_pga(dev);
9b974cc1 82
8a4c47f3 83 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
398c9cb2
KP
84 return 0;
85}
86
87/**
88 * Frees the hardware status page, whether it's a physical address or a virtual
89 * address set up by the X Server.
90 */
3043c60c 91static void i915_free_hws(struct drm_device *dev)
398c9cb2
KP
92{
93 drm_i915_private_t *dev_priv = dev->dev_private;
1ec14ad3
CW
94 struct intel_ring_buffer *ring = LP_RING(dev_priv);
95
398c9cb2
KP
96 if (dev_priv->status_page_dmah) {
97 drm_pci_free(dev, dev_priv->status_page_dmah);
98 dev_priv->status_page_dmah = NULL;
99 }
100
1ec14ad3
CW
101 if (ring->status_page.gfx_addr) {
102 ring->status_page.gfx_addr = 0;
398c9cb2
KP
103 drm_core_ioremapfree(&dev_priv->hws_map, dev);
104 }
105
106 /* Need to rewrite hardware status page */
107 I915_WRITE(HWS_PGA, 0x1ffff000);
108}
109
84b1fd10 110void i915_kernel_lost_context(struct drm_device * dev)
1da177e4
LT
111{
112 drm_i915_private_t *dev_priv = dev->dev_private;
7c1c2871 113 struct drm_i915_master_private *master_priv;
1ec14ad3 114 struct intel_ring_buffer *ring = LP_RING(dev_priv);
1da177e4 115
79e53945
JB
116 /*
117 * We should never lose context on the ring with modesetting
118 * as we don't expose it to userspace
119 */
120 if (drm_core_check_feature(dev, DRIVER_MODESET))
121 return;
122
8168bd48
CW
123 ring->head = I915_READ_HEAD(ring) & HEAD_ADDR;
124 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
1da177e4
LT
125 ring->space = ring->head - (ring->tail + 8);
126 if (ring->space < 0)
8187a2b7 127 ring->space += ring->size;
1da177e4 128
7c1c2871
DA
129 if (!dev->primary->master)
130 return;
131
132 master_priv = dev->primary->master->driver_priv;
133 if (ring->head == ring->tail && master_priv->sarea_priv)
134 master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
1da177e4
LT
135}
136
84b1fd10 137static int i915_dma_cleanup(struct drm_device * dev)
1da177e4 138{
ba8bbcf6 139 drm_i915_private_t *dev_priv = dev->dev_private;
1ec14ad3
CW
140 int i;
141
1da177e4
LT
142 /* Make sure interrupts are disabled here because the uninstall ioctl
143 * may not have been called from userspace and after dev_private
144 * is freed, it's too late.
145 */
ed4cb414 146 if (dev->irq_enabled)
b5e89ed5 147 drm_irq_uninstall(dev);
1da177e4 148
ee0c6bfb 149 mutex_lock(&dev->struct_mutex);
1ec14ad3
CW
150 for (i = 0; i < I915_NUM_RINGS; i++)
151 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
ee0c6bfb 152 mutex_unlock(&dev->struct_mutex);
dc7a9319 153
398c9cb2
KP
154 /* Clear the HWS virtual address at teardown */
155 if (I915_NEED_GFX_HWS(dev))
156 i915_free_hws(dev);
1da177e4
LT
157
158 return 0;
159}
160
ba8bbcf6 161static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
1da177e4 162{
ba8bbcf6 163 drm_i915_private_t *dev_priv = dev->dev_private;
7c1c2871 164 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
e8616b6c 165 int ret;
1da177e4 166
3a03ac1a
DA
167 master_priv->sarea = drm_getsarea(dev);
168 if (master_priv->sarea) {
169 master_priv->sarea_priv = (drm_i915_sarea_t *)
170 ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
171 } else {
8a4c47f3 172 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
3a03ac1a
DA
173 }
174
673a394b 175 if (init->ring_size != 0) {
e8616b6c 176 if (LP_RING(dev_priv)->obj != NULL) {
673a394b
EA
177 i915_dma_cleanup(dev);
178 DRM_ERROR("Client tried to initialize ringbuffer in "
179 "GEM mode\n");
180 return -EINVAL;
181 }
1da177e4 182
e8616b6c
CW
183 ret = intel_render_ring_init_dri(dev,
184 init->ring_start,
185 init->ring_size);
186 if (ret) {
673a394b 187 i915_dma_cleanup(dev);
e8616b6c 188 return ret;
673a394b 189 }
1da177e4
LT
190 }
191
a6b54f3f 192 dev_priv->cpp = init->cpp;
1da177e4
LT
193 dev_priv->back_offset = init->back_offset;
194 dev_priv->front_offset = init->front_offset;
195 dev_priv->current_page = 0;
7c1c2871
DA
196 if (master_priv->sarea_priv)
197 master_priv->sarea_priv->pf_current_page = 0;
1da177e4 198
1da177e4
LT
199 /* Allow hardware batchbuffers unless told otherwise.
200 */
201 dev_priv->allow_batchbuffer = 1;
202
1da177e4
LT
203 return 0;
204}
205
84b1fd10 206static int i915_dma_resume(struct drm_device * dev)
1da177e4
LT
207{
208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1ec14ad3 209 struct intel_ring_buffer *ring = LP_RING(dev_priv);
1da177e4 210
8a4c47f3 211 DRM_DEBUG_DRIVER("%s\n", __func__);
1da177e4 212
8187a2b7 213 if (ring->map.handle == NULL) {
1da177e4
LT
214 DRM_ERROR("can not ioremap virtual address for"
215 " ring buffer\n");
20caafa6 216 return -ENOMEM;
1da177e4
LT
217 }
218
219 /* Program Hardware Status Page */
8187a2b7 220 if (!ring->status_page.page_addr) {
1da177e4 221 DRM_ERROR("Can not find hardware status page\n");
20caafa6 222 return -EINVAL;
1da177e4 223 }
8a4c47f3 224 DRM_DEBUG_DRIVER("hw status page @ %p\n",
8187a2b7
ZN
225 ring->status_page.page_addr);
226 if (ring->status_page.gfx_addr != 0)
78501eac 227 intel_ring_setup_status_page(ring);
dc7a9319 228 else
4cbf74cc 229 i915_write_hws_pga(dev);
8187a2b7 230
8a4c47f3 231 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
1da177e4
LT
232
233 return 0;
234}
235
c153f45f
EA
236static int i915_dma_init(struct drm_device *dev, void *data,
237 struct drm_file *file_priv)
1da177e4 238{
c153f45f 239 drm_i915_init_t *init = data;
1da177e4
LT
240 int retcode = 0;
241
c153f45f 242 switch (init->func) {
1da177e4 243 case I915_INIT_DMA:
ba8bbcf6 244 retcode = i915_initialize(dev, init);
1da177e4
LT
245 break;
246 case I915_CLEANUP_DMA:
247 retcode = i915_dma_cleanup(dev);
248 break;
249 case I915_RESUME_DMA:
0d6aa60b 250 retcode = i915_dma_resume(dev);
1da177e4
LT
251 break;
252 default:
20caafa6 253 retcode = -EINVAL;
1da177e4
LT
254 break;
255 }
256
257 return retcode;
258}
259
260/* Implement basically the same security restrictions as hardware does
261 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
262 *
263 * Most of the calculations below involve calculating the size of a
264 * particular instruction. It's important to get the size right as
265 * that tells us where the next instruction to check is. Any illegal
266 * instruction detected will be given a size of zero, which is a
267 * signal to abort the rest of the buffer.
268 */
e1f99ce6 269static int validate_cmd(int cmd)
1da177e4
LT
270{
271 switch (((cmd >> 29) & 0x7)) {
272 case 0x0:
273 switch ((cmd >> 23) & 0x3f) {
274 case 0x0:
275 return 1; /* MI_NOOP */
276 case 0x4:
277 return 1; /* MI_FLUSH */
278 default:
279 return 0; /* disallow everything else */
280 }
281 break;
282 case 0x1:
283 return 0; /* reserved */
284 case 0x2:
285 return (cmd & 0xff) + 2; /* 2d commands */
286 case 0x3:
287 if (((cmd >> 24) & 0x1f) <= 0x18)
288 return 1;
289
290 switch ((cmd >> 24) & 0x1f) {
291 case 0x1c:
292 return 1;
293 case 0x1d:
b5e89ed5 294 switch ((cmd >> 16) & 0xff) {
1da177e4
LT
295 case 0x3:
296 return (cmd & 0x1f) + 2;
297 case 0x4:
298 return (cmd & 0xf) + 2;
299 default:
300 return (cmd & 0xffff) + 2;
301 }
302 case 0x1e:
303 if (cmd & (1 << 23))
304 return (cmd & 0xffff) + 1;
305 else
306 return 1;
307 case 0x1f:
308 if ((cmd & (1 << 23)) == 0) /* inline vertices */
309 return (cmd & 0x1ffff) + 2;
310 else if (cmd & (1 << 17)) /* indirect random */
311 if ((cmd & 0xffff) == 0)
312 return 0; /* unknown length, too hard */
313 else
314 return (((cmd & 0xffff) + 1) / 2) + 1;
315 else
316 return 2; /* indirect sequential */
317 default:
318 return 0;
319 }
320 default:
321 return 0;
322 }
323
324 return 0;
325}
326
201361a5 327static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
1da177e4
LT
328{
329 drm_i915_private_t *dev_priv = dev->dev_private;
e1f99ce6 330 int i, ret;
1da177e4 331
1ec14ad3 332 if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8)
20caafa6 333 return -EINVAL;
de227f5f 334
1da177e4 335 for (i = 0; i < dwords;) {
e1f99ce6
CW
336 int sz = validate_cmd(buffer[i]);
337 if (sz == 0 || i + sz > dwords)
20caafa6 338 return -EINVAL;
e1f99ce6 339 i += sz;
1da177e4
LT
340 }
341
e1f99ce6
CW
342 ret = BEGIN_LP_RING((dwords+1)&~1);
343 if (ret)
344 return ret;
345
346 for (i = 0; i < dwords; i++)
347 OUT_RING(buffer[i]);
de227f5f
DA
348 if (dwords & 1)
349 OUT_RING(0);
350
351 ADVANCE_LP_RING();
352
1da177e4
LT
353 return 0;
354}
355
673a394b
EA
356int
357i915_emit_box(struct drm_device *dev,
c4e7a414
CW
358 struct drm_clip_rect *box,
359 int DR1, int DR4)
1da177e4 360{
e1f99ce6 361 struct drm_i915_private *dev_priv = dev->dev_private;
e1f99ce6 362 int ret;
1da177e4 363
c4e7a414
CW
364 if (box->y2 <= box->y1 || box->x2 <= box->x1 ||
365 box->y2 <= 0 || box->x2 <= 0) {
1da177e4 366 DRM_ERROR("Bad box %d,%d..%d,%d\n",
c4e7a414 367 box->x1, box->y1, box->x2, box->y2);
20caafa6 368 return -EINVAL;
1da177e4
LT
369 }
370
a6c45cf0 371 if (INTEL_INFO(dev)->gen >= 4) {
e1f99ce6
CW
372 ret = BEGIN_LP_RING(4);
373 if (ret)
374 return ret;
375
c29b669c 376 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
c4e7a414
CW
377 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
378 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
c29b669c 379 OUT_RING(DR4);
c29b669c 380 } else {
e1f99ce6
CW
381 ret = BEGIN_LP_RING(6);
382 if (ret)
383 return ret;
384
c29b669c
AH
385 OUT_RING(GFX_OP_DRAWRECT_INFO);
386 OUT_RING(DR1);
c4e7a414
CW
387 OUT_RING((box->x1 & 0xffff) | (box->y1 << 16));
388 OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16));
c29b669c
AH
389 OUT_RING(DR4);
390 OUT_RING(0);
c29b669c 391 }
e1f99ce6 392 ADVANCE_LP_RING();
1da177e4
LT
393
394 return 0;
395}
396
c29b669c
AH
397/* XXX: Emitting the counter should really be moved to part of the IRQ
398 * emit. For now, do it in both places:
399 */
400
84b1fd10 401static void i915_emit_breadcrumb(struct drm_device *dev)
de227f5f
DA
402{
403 drm_i915_private_t *dev_priv = dev->dev_private;
7c1c2871 404 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
de227f5f 405
c99b058f 406 dev_priv->counter++;
af6061af 407 if (dev_priv->counter > 0x7FFFFFFFUL)
c99b058f 408 dev_priv->counter = 0;
7c1c2871
DA
409 if (master_priv->sarea_priv)
410 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
de227f5f 411
e1f99ce6
CW
412 if (BEGIN_LP_RING(4) == 0) {
413 OUT_RING(MI_STORE_DWORD_INDEX);
414 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
415 OUT_RING(dev_priv->counter);
416 OUT_RING(0);
417 ADVANCE_LP_RING();
418 }
de227f5f
DA
419}
420
84b1fd10 421static int i915_dispatch_cmdbuffer(struct drm_device * dev,
201361a5
EA
422 drm_i915_cmdbuffer_t *cmd,
423 struct drm_clip_rect *cliprects,
424 void *cmdbuf)
1da177e4
LT
425{
426 int nbox = cmd->num_cliprects;
427 int i = 0, count, ret;
428
429 if (cmd->sz & 0x3) {
430 DRM_ERROR("alignment");
20caafa6 431 return -EINVAL;
1da177e4
LT
432 }
433
434 i915_kernel_lost_context(dev);
435
436 count = nbox ? nbox : 1;
437
438 for (i = 0; i < count; i++) {
439 if (i < nbox) {
c4e7a414 440 ret = i915_emit_box(dev, &cliprects[i],
1da177e4
LT
441 cmd->DR1, cmd->DR4);
442 if (ret)
443 return ret;
444 }
445
201361a5 446 ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
1da177e4
LT
447 if (ret)
448 return ret;
449 }
450
de227f5f 451 i915_emit_breadcrumb(dev);
1da177e4
LT
452 return 0;
453}
454
84b1fd10 455static int i915_dispatch_batchbuffer(struct drm_device * dev,
201361a5
EA
456 drm_i915_batchbuffer_t * batch,
457 struct drm_clip_rect *cliprects)
1da177e4 458{
e1f99ce6 459 struct drm_i915_private *dev_priv = dev->dev_private;
1da177e4 460 int nbox = batch->num_cliprects;
e1f99ce6 461 int i, count, ret;
1da177e4
LT
462
463 if ((batch->start | batch->used) & 0x7) {
464 DRM_ERROR("alignment");
20caafa6 465 return -EINVAL;
1da177e4
LT
466 }
467
468 i915_kernel_lost_context(dev);
469
470 count = nbox ? nbox : 1;
1da177e4
LT
471 for (i = 0; i < count; i++) {
472 if (i < nbox) {
c4e7a414 473 ret = i915_emit_box(dev, &cliprects[i],
e1f99ce6 474 batch->DR1, batch->DR4);
1da177e4
LT
475 if (ret)
476 return ret;
477 }
478
0790d5e1 479 if (!IS_I830(dev) && !IS_845G(dev)) {
e1f99ce6
CW
480 ret = BEGIN_LP_RING(2);
481 if (ret)
482 return ret;
483
a6c45cf0 484 if (INTEL_INFO(dev)->gen >= 4) {
21f16289
DA
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 }
1da177e4 491 } else {
e1f99ce6
CW
492 ret = BEGIN_LP_RING(4);
493 if (ret)
494 return ret;
495
1da177e4
LT
496 OUT_RING(MI_BATCH_BUFFER);
497 OUT_RING(batch->start | MI_BATCH_NON_SECURE);
498 OUT_RING(batch->start + batch->used - 4);
499 OUT_RING(0);
1da177e4 500 }
e1f99ce6 501 ADVANCE_LP_RING();
1da177e4
LT
502 }
503
1cafd347 504
f00a3ddf 505 if (IS_G4X(dev) || IS_GEN5(dev)) {
e1f99ce6
CW
506 if (BEGIN_LP_RING(2) == 0) {
507 OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP);
508 OUT_RING(MI_NOOP);
509 ADVANCE_LP_RING();
510 }
1cafd347 511 }
1da177e4 512
e1f99ce6 513 i915_emit_breadcrumb(dev);
1da177e4
LT
514 return 0;
515}
516
af6061af 517static int i915_dispatch_flip(struct drm_device * dev)
1da177e4
LT
518{
519 drm_i915_private_t *dev_priv = dev->dev_private;
7c1c2871
DA
520 struct drm_i915_master_private *master_priv =
521 dev->primary->master->driver_priv;
e1f99ce6 522 int ret;
1da177e4 523
7c1c2871 524 if (!master_priv->sarea_priv)
c99b058f
KH
525 return -EINVAL;
526
8a4c47f3 527 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
be25ed9c 528 __func__,
529 dev_priv->current_page,
530 master_priv->sarea_priv->pf_current_page);
1da177e4 531
af6061af
DA
532 i915_kernel_lost_context(dev);
533
e1f99ce6
CW
534 ret = BEGIN_LP_RING(10);
535 if (ret)
536 return ret;
537
585fb111 538 OUT_RING(MI_FLUSH | MI_READ_FLUSH);
af6061af 539 OUT_RING(0);
1da177e4 540
af6061af
DA
541 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
542 OUT_RING(0);
543 if (dev_priv->current_page == 0) {
544 OUT_RING(dev_priv->back_offset);
545 dev_priv->current_page = 1;
1da177e4 546 } else {
af6061af
DA
547 OUT_RING(dev_priv->front_offset);
548 dev_priv->current_page = 0;
1da177e4 549 }
af6061af 550 OUT_RING(0);
1da177e4 551
af6061af
DA
552 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
553 OUT_RING(0);
e1f99ce6 554
af6061af 555 ADVANCE_LP_RING();
1da177e4 556
7c1c2871 557 master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
1da177e4 558
e1f99ce6
CW
559 if (BEGIN_LP_RING(4) == 0) {
560 OUT_RING(MI_STORE_DWORD_INDEX);
561 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
562 OUT_RING(dev_priv->counter);
563 OUT_RING(0);
564 ADVANCE_LP_RING();
565 }
1da177e4 566
7c1c2871 567 master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
af6061af 568 return 0;
1da177e4
LT
569}
570
1ec14ad3 571static int i915_quiescent(struct drm_device *dev)
1da177e4 572{
1ec14ad3 573 struct intel_ring_buffer *ring = LP_RING(dev->dev_private);
1da177e4
LT
574
575 i915_kernel_lost_context(dev);
96f298aa 576 return intel_wait_ring_idle(ring);
1da177e4
LT
577}
578
c153f45f
EA
579static int i915_flush_ioctl(struct drm_device *dev, void *data,
580 struct drm_file *file_priv)
1da177e4 581{
546b0974
EA
582 int ret;
583
584 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1da177e4 585
546b0974
EA
586 mutex_lock(&dev->struct_mutex);
587 ret = i915_quiescent(dev);
588 mutex_unlock(&dev->struct_mutex);
589
590 return ret;
1da177e4
LT
591}
592
c153f45f
EA
593static int i915_batchbuffer(struct drm_device *dev, void *data,
594 struct drm_file *file_priv)
1da177e4 595{
1da177e4 596 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
7c1c2871 597 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1da177e4 598 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
7c1c2871 599 master_priv->sarea_priv;
c153f45f 600 drm_i915_batchbuffer_t *batch = data;
1da177e4 601 int ret;
201361a5 602 struct drm_clip_rect *cliprects = NULL;
1da177e4
LT
603
604 if (!dev_priv->allow_batchbuffer) {
605 DRM_ERROR("Batchbuffer ioctl disabled\n");
20caafa6 606 return -EINVAL;
1da177e4
LT
607 }
608
8a4c47f3 609 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
be25ed9c 610 batch->start, batch->used, batch->num_cliprects);
1da177e4 611
546b0974 612 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1da177e4 613
201361a5
EA
614 if (batch->num_cliprects < 0)
615 return -EINVAL;
616
617 if (batch->num_cliprects) {
9a298b2a
EA
618 cliprects = kcalloc(batch->num_cliprects,
619 sizeof(struct drm_clip_rect),
620 GFP_KERNEL);
201361a5
EA
621 if (cliprects == NULL)
622 return -ENOMEM;
623
624 ret = copy_from_user(cliprects, batch->cliprects,
625 batch->num_cliprects *
626 sizeof(struct drm_clip_rect));
9927a403
DC
627 if (ret != 0) {
628 ret = -EFAULT;
201361a5 629 goto fail_free;
9927a403 630 }
201361a5 631 }
1da177e4 632
546b0974 633 mutex_lock(&dev->struct_mutex);
201361a5 634 ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
546b0974 635 mutex_unlock(&dev->struct_mutex);
1da177e4 636
c99b058f 637 if (sarea_priv)
0baf823a 638 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
201361a5
EA
639
640fail_free:
9a298b2a 641 kfree(cliprects);
201361a5 642
1da177e4
LT
643 return ret;
644}
645
c153f45f
EA
646static int i915_cmdbuffer(struct drm_device *dev, void *data,
647 struct drm_file *file_priv)
1da177e4 648{
1da177e4 649 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
7c1c2871 650 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1da177e4 651 drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
7c1c2871 652 master_priv->sarea_priv;
c153f45f 653 drm_i915_cmdbuffer_t *cmdbuf = data;
201361a5
EA
654 struct drm_clip_rect *cliprects = NULL;
655 void *batch_data;
1da177e4
LT
656 int ret;
657
8a4c47f3 658 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
be25ed9c 659 cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
1da177e4 660
546b0974 661 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1da177e4 662
201361a5
EA
663 if (cmdbuf->num_cliprects < 0)
664 return -EINVAL;
665
9a298b2a 666 batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
201361a5
EA
667 if (batch_data == NULL)
668 return -ENOMEM;
669
670 ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
9927a403
DC
671 if (ret != 0) {
672 ret = -EFAULT;
201361a5 673 goto fail_batch_free;
9927a403 674 }
201361a5
EA
675
676 if (cmdbuf->num_cliprects) {
9a298b2a
EA
677 cliprects = kcalloc(cmdbuf->num_cliprects,
678 sizeof(struct drm_clip_rect), GFP_KERNEL);
a40e8d31
OA
679 if (cliprects == NULL) {
680 ret = -ENOMEM;
201361a5 681 goto fail_batch_free;
a40e8d31 682 }
201361a5
EA
683
684 ret = copy_from_user(cliprects, cmdbuf->cliprects,
685 cmdbuf->num_cliprects *
686 sizeof(struct drm_clip_rect));
9927a403
DC
687 if (ret != 0) {
688 ret = -EFAULT;
201361a5 689 goto fail_clip_free;
9927a403 690 }
1da177e4
LT
691 }
692
546b0974 693 mutex_lock(&dev->struct_mutex);
201361a5 694 ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
546b0974 695 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
696 if (ret) {
697 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
355d7f37 698 goto fail_clip_free;
1da177e4
LT
699 }
700
c99b058f 701 if (sarea_priv)
0baf823a 702 sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
201361a5 703
201361a5 704fail_clip_free:
9a298b2a 705 kfree(cliprects);
355d7f37 706fail_batch_free:
9a298b2a 707 kfree(batch_data);
201361a5
EA
708
709 return ret;
1da177e4
LT
710}
711
c153f45f
EA
712static int i915_flip_bufs(struct drm_device *dev, void *data,
713 struct drm_file *file_priv)
1da177e4 714{
546b0974
EA
715 int ret;
716
8a4c47f3 717 DRM_DEBUG_DRIVER("%s\n", __func__);
1da177e4 718
546b0974 719 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1da177e4 720
546b0974
EA
721 mutex_lock(&dev->struct_mutex);
722 ret = i915_dispatch_flip(dev);
723 mutex_unlock(&dev->struct_mutex);
724
725 return ret;
1da177e4
LT
726}
727
c153f45f
EA
728static int i915_getparam(struct drm_device *dev, void *data,
729 struct drm_file *file_priv)
1da177e4 730{
1da177e4 731 drm_i915_private_t *dev_priv = dev->dev_private;
c153f45f 732 drm_i915_getparam_t *param = data;
1da177e4
LT
733 int value;
734
735 if (!dev_priv) {
3e684eae 736 DRM_ERROR("called with no initialization\n");
20caafa6 737 return -EINVAL;
1da177e4
LT
738 }
739
c153f45f 740 switch (param->param) {
1da177e4 741 case I915_PARAM_IRQ_ACTIVE:
0a3e67a4 742 value = dev->pdev->irq ? 1 : 0;
1da177e4
LT
743 break;
744 case I915_PARAM_ALLOW_BATCHBUFFER:
745 value = dev_priv->allow_batchbuffer ? 1 : 0;
746 break;
0d6aa60b
DA
747 case I915_PARAM_LAST_DISPATCH:
748 value = READ_BREADCRUMB(dev_priv);
749 break;
ed4c9c4a
KH
750 case I915_PARAM_CHIPSET_ID:
751 value = dev->pci_device;
752 break;
673a394b 753 case I915_PARAM_HAS_GEM:
ac5c4e76 754 value = dev_priv->has_gem;
673a394b 755 break;
0f973f27
JB
756 case I915_PARAM_NUM_FENCES_AVAIL:
757 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
758 break;
02e792fb
DV
759 case I915_PARAM_HAS_OVERLAY:
760 value = dev_priv->overlay ? 1 : 0;
761 break;
e9560f7c
JB
762 case I915_PARAM_HAS_PAGEFLIPPING:
763 value = 1;
764 break;
76446cac
JB
765 case I915_PARAM_HAS_EXECBUF2:
766 /* depends on GEM */
767 value = dev_priv->has_gem;
768 break;
e3a815fc
ZN
769 case I915_PARAM_HAS_BSD:
770 value = HAS_BSD(dev);
771 break;
549f7365
CW
772 case I915_PARAM_HAS_BLT:
773 value = HAS_BLT(dev);
774 break;
a00b10c3
CW
775 case I915_PARAM_HAS_RELAXED_FENCING:
776 value = 1;
777 break;
bbf0c6b3
DV
778 case I915_PARAM_HAS_COHERENT_RINGS:
779 value = 1;
780 break;
72bfa19c
CW
781 case I915_PARAM_HAS_EXEC_CONSTANTS:
782 value = INTEL_INFO(dev)->gen >= 4;
783 break;
271d81b8
CW
784 case I915_PARAM_HAS_RELAXED_DELTA:
785 value = 1;
786 break;
ae662d31
EA
787 case I915_PARAM_HAS_GEN7_SOL_RESET:
788 value = 1;
789 break;
3d29b842
ED
790 case I915_PARAM_HAS_LLC:
791 value = HAS_LLC(dev);
792 break;
777ee96f
DV
793 case I915_PARAM_HAS_ALIASING_PPGTT:
794 value = dev_priv->mm.aliasing_ppgtt ? 1 : 0;
795 break;
1da177e4 796 default:
8a4c47f3 797 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
76446cac 798 param->param);
20caafa6 799 return -EINVAL;
1da177e4
LT
800 }
801
c153f45f 802 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
1da177e4 803 DRM_ERROR("DRM_COPY_TO_USER failed\n");
20caafa6 804 return -EFAULT;
1da177e4
LT
805 }
806
807 return 0;
808}
809
c153f45f
EA
810static int i915_setparam(struct drm_device *dev, void *data,
811 struct drm_file *file_priv)
1da177e4 812{
1da177e4 813 drm_i915_private_t *dev_priv = dev->dev_private;
c153f45f 814 drm_i915_setparam_t *param = data;
1da177e4
LT
815
816 if (!dev_priv) {
3e684eae 817 DRM_ERROR("called with no initialization\n");
20caafa6 818 return -EINVAL;
1da177e4
LT
819 }
820
c153f45f 821 switch (param->param) {
1da177e4 822 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
1da177e4
LT
823 break;
824 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
c153f45f 825 dev_priv->tex_lru_log_granularity = param->value;
1da177e4
LT
826 break;
827 case I915_SETPARAM_ALLOW_BATCHBUFFER:
c153f45f 828 dev_priv->allow_batchbuffer = param->value;
1da177e4 829 break;
0f973f27
JB
830 case I915_SETPARAM_NUM_USED_FENCES:
831 if (param->value > dev_priv->num_fence_regs ||
832 param->value < 0)
833 return -EINVAL;
834 /* Userspace can use first N regs */
835 dev_priv->fence_reg_start = param->value;
836 break;
1da177e4 837 default:
8a4c47f3 838 DRM_DEBUG_DRIVER("unknown parameter %d\n",
be25ed9c 839 param->param);
20caafa6 840 return -EINVAL;
1da177e4
LT
841 }
842
843 return 0;
844}
845
c153f45f
EA
846static int i915_set_status_page(struct drm_device *dev, void *data,
847 struct drm_file *file_priv)
dc7a9319 848{
dc7a9319 849 drm_i915_private_t *dev_priv = dev->dev_private;
c153f45f 850 drm_i915_hws_addr_t *hws = data;
1ec14ad3 851 struct intel_ring_buffer *ring = LP_RING(dev_priv);
b39d50e5
ZW
852
853 if (!I915_NEED_GFX_HWS(dev))
854 return -EINVAL;
dc7a9319
WZ
855
856 if (!dev_priv) {
3e684eae 857 DRM_ERROR("called with no initialization\n");
20caafa6 858 return -EINVAL;
dc7a9319 859 }
dc7a9319 860
79e53945
JB
861 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
862 WARN(1, "tried to set status page when mode setting active\n");
863 return 0;
864 }
865
8a4c47f3 866 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr);
c153f45f 867
8187a2b7 868 ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12);
dc7a9319 869
8b409580 870 dev_priv->hws_map.offset = dev->agp->base + hws->addr;
dc7a9319
WZ
871 dev_priv->hws_map.size = 4*1024;
872 dev_priv->hws_map.type = 0;
873 dev_priv->hws_map.flags = 0;
874 dev_priv->hws_map.mtrr = 0;
875
dd0910b3 876 drm_core_ioremap_wc(&dev_priv->hws_map, dev);
dc7a9319 877 if (dev_priv->hws_map.handle == NULL) {
dc7a9319 878 i915_dma_cleanup(dev);
e20f9c64 879 ring->status_page.gfx_addr = 0;
dc7a9319
WZ
880 DRM_ERROR("can not ioremap virtual address for"
881 " G33 hw status page\n");
20caafa6 882 return -ENOMEM;
dc7a9319 883 }
311bd68e
CW
884 ring->status_page.page_addr =
885 (void __force __iomem *)dev_priv->hws_map.handle;
886 memset_io(ring->status_page.page_addr, 0, PAGE_SIZE);
8187a2b7 887 I915_WRITE(HWS_PGA, ring->status_page.gfx_addr);
dc7a9319 888
8a4c47f3 889 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
e20f9c64 890 ring->status_page.gfx_addr);
8a4c47f3 891 DRM_DEBUG_DRIVER("load hws at %p\n",
e20f9c64 892 ring->status_page.page_addr);
dc7a9319
WZ
893 return 0;
894}
895
ec2a4c3f
DA
896static int i915_get_bridge_dev(struct drm_device *dev)
897{
898 struct drm_i915_private *dev_priv = dev->dev_private;
899
0206e353 900 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
ec2a4c3f
DA
901 if (!dev_priv->bridge_dev) {
902 DRM_ERROR("bridge device not found\n");
903 return -1;
904 }
905 return 0;
906}
907
c4804411
ZW
908#define MCHBAR_I915 0x44
909#define MCHBAR_I965 0x48
910#define MCHBAR_SIZE (4*4096)
911
912#define DEVEN_REG 0x54
913#define DEVEN_MCHBAR_EN (1 << 28)
914
915/* Allocate space for the MCH regs if needed, return nonzero on error */
916static int
917intel_alloc_mchbar_resource(struct drm_device *dev)
918{
919 drm_i915_private_t *dev_priv = dev->dev_private;
a6c45cf0 920 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
921 u32 temp_lo, temp_hi = 0;
922 u64 mchbar_addr;
a25c25c2 923 int ret;
c4804411 924
a6c45cf0 925 if (INTEL_INFO(dev)->gen >= 4)
c4804411
ZW
926 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
927 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
928 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
929
930 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
931#ifdef CONFIG_PNP
932 if (mchbar_addr &&
a25c25c2
CW
933 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
934 return 0;
c4804411
ZW
935#endif
936
937 /* Get some space for it */
a25c25c2
CW
938 dev_priv->mch_res.name = "i915 MCHBAR";
939 dev_priv->mch_res.flags = IORESOURCE_MEM;
940 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
941 &dev_priv->mch_res,
c4804411
ZW
942 MCHBAR_SIZE, MCHBAR_SIZE,
943 PCIBIOS_MIN_MEM,
a25c25c2 944 0, pcibios_align_resource,
c4804411
ZW
945 dev_priv->bridge_dev);
946 if (ret) {
947 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
948 dev_priv->mch_res.start = 0;
a25c25c2 949 return ret;
c4804411
ZW
950 }
951
a6c45cf0 952 if (INTEL_INFO(dev)->gen >= 4)
c4804411
ZW
953 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
954 upper_32_bits(dev_priv->mch_res.start));
955
956 pci_write_config_dword(dev_priv->bridge_dev, reg,
957 lower_32_bits(dev_priv->mch_res.start));
a25c25c2 958 return 0;
c4804411
ZW
959}
960
961/* Setup MCHBAR if possible, return true if we should disable it again */
962static void
963intel_setup_mchbar(struct drm_device *dev)
964{
965 drm_i915_private_t *dev_priv = dev->dev_private;
a6c45cf0 966 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
967 u32 temp;
968 bool enabled;
969
970 dev_priv->mchbar_need_disable = false;
971
972 if (IS_I915G(dev) || IS_I915GM(dev)) {
973 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
974 enabled = !!(temp & DEVEN_MCHBAR_EN);
975 } else {
976 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
977 enabled = temp & 1;
978 }
979
980 /* If it's already enabled, don't have to do anything */
981 if (enabled)
982 return;
983
984 if (intel_alloc_mchbar_resource(dev))
985 return;
986
987 dev_priv->mchbar_need_disable = true;
988
989 /* Space is allocated or reserved, so enable it. */
990 if (IS_I915G(dev) || IS_I915GM(dev)) {
991 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
992 temp | DEVEN_MCHBAR_EN);
993 } else {
994 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
995 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
996 }
997}
998
999static void
1000intel_teardown_mchbar(struct drm_device *dev)
1001{
1002 drm_i915_private_t *dev_priv = dev->dev_private;
a6c45cf0 1003 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
1004 u32 temp;
1005
1006 if (dev_priv->mchbar_need_disable) {
1007 if (IS_I915G(dev) || IS_I915GM(dev)) {
1008 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1009 temp &= ~DEVEN_MCHBAR_EN;
1010 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
1011 } else {
1012 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1013 temp &= ~1;
1014 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
1015 }
1016 }
1017
1018 if (dev_priv->mch_res.start)
1019 release_resource(&dev_priv->mch_res);
1020}
1021
80824003
JB
1022#define PTE_ADDRESS_MASK 0xfffff000
1023#define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1024#define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1025#define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1026#define PTE_MAPPING_TYPE_CACHED (3 << 1)
1027#define PTE_MAPPING_TYPE_MASK (3 << 1)
1028#define PTE_VALID (1 << 0)
1029
1030/**
fe669bf8
CW
1031 * i915_stolen_to_phys - take an offset into stolen memory and turn it into
1032 * a physical one
80824003 1033 * @dev: drm device
fe669bf8 1034 * @offset: address to translate
80824003 1035 *
fe669bf8
CW
1036 * Some chip functions require allocations from stolen space and need the
1037 * physical address of the memory in question.
80824003 1038 */
fe669bf8 1039static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset)
80824003 1040{
fe669bf8
CW
1041 struct drm_i915_private *dev_priv = dev->dev_private;
1042 struct pci_dev *pdev = dev_priv->bridge_dev;
1043 u32 base;
1044
1045#if 0
1046 /* On the machines I have tested the Graphics Base of Stolen Memory
1047 * is unreliable, so compute the base by subtracting the stolen memory
1048 * from the Top of Low Usable DRAM which is where the BIOS places
1049 * the graphics stolen memory.
1050 */
1051 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1052 /* top 32bits are reserved = 0 */
1053 pci_read_config_dword(pdev, 0xA4, &base);
80824003 1054 } else {
fe669bf8
CW
1055 /* XXX presume 8xx is the same as i915 */
1056 pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base);
1057 }
1058#else
1059 if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
1060 u16 val;
1061 pci_read_config_word(pdev, 0xb0, &val);
1062 base = val >> 4 << 20;
1063 } else {
1064 u8 val;
1065 pci_read_config_byte(pdev, 0x9c, &val);
1066 base = val >> 3 << 27;
80824003 1067 }
c64f7ba5 1068 base -= dev_priv->mm.gtt->stolen_size;
fe669bf8 1069#endif
80824003 1070
fe669bf8 1071 return base + offset;
80824003
JB
1072}
1073
1074static void i915_warn_stolen(struct drm_device *dev)
1075{
1076 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1077 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1078}
1079
1080static void i915_setup_compression(struct drm_device *dev, int size)
1081{
1082 struct drm_i915_private *dev_priv = dev->dev_private;
132b6aab 1083 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
29bd0ae2
AM
1084 unsigned long cfb_base;
1085 unsigned long ll_base = 0;
80824003 1086
43a9539f
CW
1087 /* Just in case the BIOS is doing something questionable. */
1088 intel_disable_fbc(dev);
1089
fe669bf8
CW
1090 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
1091 if (compressed_fb)
1092 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
1093 if (!compressed_fb)
1094 goto err;
80824003 1095
fe669bf8
CW
1096 cfb_base = i915_stolen_to_phys(dev, compressed_fb->start);
1097 if (!cfb_base)
1098 goto err_fb;
80824003 1099
9c04f015 1100 if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) {
fe669bf8
CW
1101 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
1102 4096, 4096, 0);
1103 if (compressed_llb)
1104 compressed_llb = drm_mm_get_block(compressed_llb,
1105 4096, 4096);
1106 if (!compressed_llb)
1107 goto err_fb;
74dff282 1108
fe669bf8
CW
1109 ll_base = i915_stolen_to_phys(dev, compressed_llb->start);
1110 if (!ll_base)
1111 goto err_llb;
80824003
JB
1112 }
1113
1114 dev_priv->cfb_size = size;
1115
20bf377e 1116 dev_priv->compressed_fb = compressed_fb;
9c04f015 1117 if (HAS_PCH_SPLIT(dev))
b52eb4dc
ZY
1118 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
1119 else if (IS_GM45(dev)) {
74dff282
JB
1120 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
1121 } else {
74dff282
JB
1122 I915_WRITE(FBC_CFB_BASE, cfb_base);
1123 I915_WRITE(FBC_LL_BASE, ll_base);
20bf377e 1124 dev_priv->compressed_llb = compressed_llb;
80824003
JB
1125 }
1126
fe669bf8
CW
1127 DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n",
1128 cfb_base, ll_base, size >> 20);
1129 return;
1130
1131err_llb:
1132 drm_mm_put_block(compressed_llb);
1133err_fb:
1134 drm_mm_put_block(compressed_fb);
1135err:
1136 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
1137 i915_warn_stolen(dev);
80824003
JB
1138}
1139
20bf377e
JB
1140static void i915_cleanup_compression(struct drm_device *dev)
1141{
1142 struct drm_i915_private *dev_priv = dev->dev_private;
1143
1144 drm_mm_put_block(dev_priv->compressed_fb);
aebf0daf 1145 if (dev_priv->compressed_llb)
20bf377e
JB
1146 drm_mm_put_block(dev_priv->compressed_llb);
1147}
1148
28d52043
DA
1149/* true = enable decode, false = disable decoder */
1150static unsigned int i915_vga_set_decode(void *cookie, bool state)
1151{
1152 struct drm_device *dev = cookie;
1153
1154 intel_modeset_vga_set_state(dev, state);
1155 if (state)
1156 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1157 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1158 else
1159 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1160}
1161
6a9ee8af
DA
1162static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1163{
1164 struct drm_device *dev = pci_get_drvdata(pdev);
1165 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1166 if (state == VGA_SWITCHEROO_ON) {
a70491cc 1167 pr_info("switched on\n");
5bcf719b 1168 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
6a9ee8af
DA
1169 /* i915 resume handler doesn't set to D0 */
1170 pci_set_power_state(dev->pdev, PCI_D0);
1171 i915_resume(dev);
5bcf719b 1172 dev->switch_power_state = DRM_SWITCH_POWER_ON;
6a9ee8af 1173 } else {
a70491cc 1174 pr_err("switched off\n");
5bcf719b 1175 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
6a9ee8af 1176 i915_suspend(dev, pmm);
5bcf719b 1177 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
6a9ee8af
DA
1178 }
1179}
1180
1181static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
1182{
1183 struct drm_device *dev = pci_get_drvdata(pdev);
1184 bool can_switch;
1185
1186 spin_lock(&dev->count_lock);
1187 can_switch = (dev->open_count == 0);
1188 spin_unlock(&dev->count_lock);
1189 return can_switch;
1190}
1191
2c7111db 1192static int i915_load_gem_init(struct drm_device *dev)
79e53945
JB
1193{
1194 struct drm_i915_private *dev_priv = dev->dev_private;
53984635 1195 unsigned long prealloc_size, gtt_size, mappable_size;
2c7111db 1196 int ret;
79e53945 1197
c64f7ba5 1198 prealloc_size = dev_priv->mm.gtt->stolen_size;
53984635
DV
1199 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
1200 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
53984635 1201
fe669bf8
CW
1202 /* Basic memrange allocator for stolen space */
1203 drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
79e53945 1204
d3ae0810 1205 mutex_lock(&dev->struct_mutex);
e21af88d 1206 if (i915_enable_ppgtt && HAS_ALIASING_PPGTT(dev)) {
1d2a314c
DV
1207 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
1208 * aperture accordingly when using aliasing ppgtt. */
1209 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
1210 /* For paranoia keep the guard page in between. */
1211 gtt_size -= PAGE_SIZE;
1212
1213 i915_gem_do_init(dev, 0, mappable_size, gtt_size);
1214
1215 ret = i915_gem_init_aliasing_ppgtt(dev);
1216 if (ret)
1217 return ret;
1218 } else {
1219 /* Let GEM Manage all of the aperture.
1220 *
1221 * However, leave one page at the end still bound to the scratch
1222 * page. There are a number of places where the hardware
1223 * apparently prefetches past the end of the object, and we've
1224 * seen multiple hangs with the GPU head pointer stuck in a
1225 * batchbuffer bound at the last page of the aperture. One page
1226 * should be enough to keep any prefetching inside of the
1227 * aperture.
1228 */
1229 i915_gem_do_init(dev, 0, mappable_size, gtt_size - PAGE_SIZE);
1230 }
79e53945 1231
f691e2f4 1232 ret = i915_gem_init_hw(dev);
11ed50ec 1233 mutex_unlock(&dev->struct_mutex);
1d2a314c
DV
1234 if (ret) {
1235 i915_gem_cleanup_aliasing_ppgtt(dev);
2c7111db 1236 return ret;
1d2a314c 1237 }
79e53945 1238
80824003 1239 /* Try to set up FBC with a reasonable compressed buffer size */
9216d44d 1240 if (I915_HAS_FBC(dev) && i915_powersave) {
80824003
JB
1241 int cfb_size;
1242
fe669bf8
CW
1243 /* Leave 1M for line length buffer & misc. */
1244
1245 /* Try to get a 32M buffer... */
1246 if (prealloc_size > (36*1024*1024))
1247 cfb_size = 32*1024*1024;
80824003
JB
1248 else /* fall back to 7/8 of the stolen space */
1249 cfb_size = prealloc_size * 7 / 8;
1250 i915_setup_compression(dev, cfb_size);
1251 }
1252
fe669bf8 1253 /* Allow hardware batchbuffers unless told otherwise. */
79e53945 1254 dev_priv->allow_batchbuffer = 1;
2c7111db
CW
1255 return 0;
1256}
1257
1258static int i915_load_modeset_init(struct drm_device *dev)
1259{
1260 struct drm_i915_private *dev_priv = dev->dev_private;
1261 int ret;
79e53945 1262
6d139a87 1263 ret = intel_parse_bios(dev);
79e53945
JB
1264 if (ret)
1265 DRM_INFO("failed to find VBIOS tables\n");
1266
934f992c
CW
1267 /* If we have > 1 VGA cards, then we need to arbitrate access
1268 * to the common VGA resources.
1269 *
1270 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
1271 * then we do not take part in VGA arbitration and the
1272 * vga_client_register() fails with -ENODEV.
1273 */
28d52043 1274 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
934f992c 1275 if (ret && ret != -ENODEV)
2c7111db 1276 goto out;
28d52043 1277
723bfd70
JB
1278 intel_register_dsm_handler();
1279
6a9ee8af
DA
1280 ret = vga_switcheroo_register_client(dev->pdev,
1281 i915_switcheroo_set_state,
8d608aa6 1282 NULL,
6a9ee8af
DA
1283 i915_switcheroo_can_switch);
1284 if (ret)
5a79395b 1285 goto cleanup_vga_client;
6a9ee8af 1286
1afe3e9d
JB
1287 /* IIR "flip pending" bit means done if this bit is set */
1288 if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE))
1289 dev_priv->flip_pending_is_done = true;
1290
b01f2c3a
JB
1291 intel_modeset_init(dev);
1292
2c7111db 1293 ret = i915_load_gem_init(dev);
79e53945 1294 if (ret)
5a79395b 1295 goto cleanup_vga_switcheroo;
79e53945 1296
2c7111db
CW
1297 intel_modeset_gem_init(dev);
1298
1299 ret = drm_irq_install(dev);
1300 if (ret)
1301 goto cleanup_gem;
1302
79e53945
JB
1303 /* Always safe in the mode setting case. */
1304 /* FIXME: do pre/post-mode set stuff in core KMS code */
1305 dev->vblank_disable_allowed = 1;
1306
5a79395b
CW
1307 ret = intel_fbdev_init(dev);
1308 if (ret)
1309 goto cleanup_irq;
1310
eb1f8e4f 1311 drm_kms_helper_poll_init(dev);
87acb0a5
CW
1312
1313 /* We're off and running w/KMS */
1314 dev_priv->mm.suspended = 0;
1315
79e53945
JB
1316 return 0;
1317
5a79395b
CW
1318cleanup_irq:
1319 drm_irq_uninstall(dev);
2c7111db
CW
1320cleanup_gem:
1321 mutex_lock(&dev->struct_mutex);
1322 i915_gem_cleanup_ringbuffer(dev);
1323 mutex_unlock(&dev->struct_mutex);
1d2a314c 1324 i915_gem_cleanup_aliasing_ppgtt(dev);
5a79395b
CW
1325cleanup_vga_switcheroo:
1326 vga_switcheroo_unregister_client(dev->pdev);
1327cleanup_vga_client:
1328 vga_client_register(dev->pdev, NULL, NULL, NULL);
79e53945
JB
1329out:
1330 return ret;
1331}
1332
7c1c2871
DA
1333int i915_master_create(struct drm_device *dev, struct drm_master *master)
1334{
1335 struct drm_i915_master_private *master_priv;
1336
9a298b2a 1337 master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
7c1c2871
DA
1338 if (!master_priv)
1339 return -ENOMEM;
1340
1341 master->driver_priv = master_priv;
1342 return 0;
1343}
1344
1345void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
1346{
1347 struct drm_i915_master_private *master_priv = master->driver_priv;
1348
1349 if (!master_priv)
1350 return;
1351
9a298b2a 1352 kfree(master_priv);
7c1c2871
DA
1353
1354 master->driver_priv = NULL;
1355}
1356
7648fa99 1357static void i915_pineview_get_mem_freq(struct drm_device *dev)
7662c8bd
SL
1358{
1359 drm_i915_private_t *dev_priv = dev->dev_private;
1360 u32 tmp;
1361
7662c8bd
SL
1362 tmp = I915_READ(CLKCFG);
1363
1364 switch (tmp & CLKCFG_FSB_MASK) {
1365 case CLKCFG_FSB_533:
1366 dev_priv->fsb_freq = 533; /* 133*4 */
1367 break;
1368 case CLKCFG_FSB_800:
1369 dev_priv->fsb_freq = 800; /* 200*4 */
1370 break;
1371 case CLKCFG_FSB_667:
1372 dev_priv->fsb_freq = 667; /* 167*4 */
1373 break;
1374 case CLKCFG_FSB_400:
1375 dev_priv->fsb_freq = 400; /* 100*4 */
1376 break;
1377 }
1378
1379 switch (tmp & CLKCFG_MEM_MASK) {
1380 case CLKCFG_MEM_533:
1381 dev_priv->mem_freq = 533;
1382 break;
1383 case CLKCFG_MEM_667:
1384 dev_priv->mem_freq = 667;
1385 break;
1386 case CLKCFG_MEM_800:
1387 dev_priv->mem_freq = 800;
1388 break;
1389 }
95534263
LP
1390
1391 /* detect pineview DDR3 setting */
1392 tmp = I915_READ(CSHRDDR3CTL);
1393 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
7662c8bd
SL
1394}
1395
7648fa99
JB
1396static void i915_ironlake_get_mem_freq(struct drm_device *dev)
1397{
1398 drm_i915_private_t *dev_priv = dev->dev_private;
1399 u16 ddrpll, csipll;
1400
1401 ddrpll = I915_READ16(DDRMPLL1);
1402 csipll = I915_READ16(CSIPLL0);
1403
1404 switch (ddrpll & 0xff) {
1405 case 0xc:
1406 dev_priv->mem_freq = 800;
1407 break;
1408 case 0x10:
1409 dev_priv->mem_freq = 1066;
1410 break;
1411 case 0x14:
1412 dev_priv->mem_freq = 1333;
1413 break;
1414 case 0x18:
1415 dev_priv->mem_freq = 1600;
1416 break;
1417 default:
1418 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
1419 ddrpll & 0xff);
1420 dev_priv->mem_freq = 0;
1421 break;
1422 }
1423
1424 dev_priv->r_t = dev_priv->mem_freq;
1425
1426 switch (csipll & 0x3ff) {
1427 case 0x00c:
1428 dev_priv->fsb_freq = 3200;
1429 break;
1430 case 0x00e:
1431 dev_priv->fsb_freq = 3733;
1432 break;
1433 case 0x010:
1434 dev_priv->fsb_freq = 4266;
1435 break;
1436 case 0x012:
1437 dev_priv->fsb_freq = 4800;
1438 break;
1439 case 0x014:
1440 dev_priv->fsb_freq = 5333;
1441 break;
1442 case 0x016:
1443 dev_priv->fsb_freq = 5866;
1444 break;
1445 case 0x018:
1446 dev_priv->fsb_freq = 6400;
1447 break;
1448 default:
1449 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
1450 csipll & 0x3ff);
1451 dev_priv->fsb_freq = 0;
1452 break;
1453 }
1454
1455 if (dev_priv->fsb_freq == 3200) {
1456 dev_priv->c_m = 0;
1457 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
1458 dev_priv->c_m = 1;
1459 } else {
1460 dev_priv->c_m = 2;
1461 }
1462}
1463
faa60c41
CW
1464static const struct cparams {
1465 u16 i;
1466 u16 t;
1467 u16 m;
1468 u16 c;
1469} cparams[] = {
7648fa99
JB
1470 { 1, 1333, 301, 28664 },
1471 { 1, 1066, 294, 24460 },
1472 { 1, 800, 294, 25192 },
1473 { 0, 1333, 276, 27605 },
1474 { 0, 1066, 276, 27605 },
1475 { 0, 800, 231, 23784 },
1476};
1477
1478unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
1479{
1480 u64 total_count, diff, ret;
1481 u32 count1, count2, count3, m = 0, c = 0;
1482 unsigned long now = jiffies_to_msecs(jiffies), diff1;
1483 int i;
1484
1485 diff1 = now - dev_priv->last_time1;
1486
4ed0b577
ED
1487 /* Prevent division-by-zero if we are asking too fast.
1488 * Also, we don't get interesting results if we are polling
1489 * faster than once in 10ms, so just return the saved value
1490 * in such cases.
1491 */
1492 if (diff1 <= 10)
1493 return dev_priv->chipset_power;
1494
7648fa99
JB
1495 count1 = I915_READ(DMIEC);
1496 count2 = I915_READ(DDREC);
1497 count3 = I915_READ(CSIEC);
1498
1499 total_count = count1 + count2 + count3;
1500
1501 /* FIXME: handle per-counter overflow */
1502 if (total_count < dev_priv->last_count1) {
1503 diff = ~0UL - dev_priv->last_count1;
1504 diff += total_count;
1505 } else {
1506 diff = total_count - dev_priv->last_count1;
1507 }
1508
1509 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
1510 if (cparams[i].i == dev_priv->c_m &&
1511 cparams[i].t == dev_priv->r_t) {
1512 m = cparams[i].m;
1513 c = cparams[i].c;
1514 break;
1515 }
1516 }
1517
d270ae34 1518 diff = div_u64(diff, diff1);
7648fa99 1519 ret = ((m * diff) + c);
d270ae34 1520 ret = div_u64(ret, 10);
7648fa99
JB
1521
1522 dev_priv->last_count1 = total_count;
1523 dev_priv->last_time1 = now;
1524
4ed0b577
ED
1525 dev_priv->chipset_power = ret;
1526
7648fa99
JB
1527 return ret;
1528}
1529
1530unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
1531{
1532 unsigned long m, x, b;
1533 u32 tsfs;
1534
1535 tsfs = I915_READ(TSFS);
1536
1537 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
1538 x = I915_READ8(TR1);
1539
1540 b = tsfs & TSFS_INTR_MASK;
1541
1542 return ((m * x) / 127) - b;
1543}
1544
faa60c41 1545static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
7648fa99 1546{
faa60c41
CW
1547 static const struct v_table {
1548 u16 vd; /* in .1 mil */
1549 u16 vm; /* in .1 mil */
1550 } v_table[] = {
1551 { 0, 0, },
1552 { 375, 0, },
1553 { 500, 0, },
1554 { 625, 0, },
1555 { 750, 0, },
1556 { 875, 0, },
1557 { 1000, 0, },
1558 { 1125, 0, },
1559 { 4125, 3000, },
1560 { 4125, 3000, },
1561 { 4125, 3000, },
1562 { 4125, 3000, },
1563 { 4125, 3000, },
1564 { 4125, 3000, },
1565 { 4125, 3000, },
1566 { 4125, 3000, },
1567 { 4125, 3000, },
1568 { 4125, 3000, },
1569 { 4125, 3000, },
1570 { 4125, 3000, },
1571 { 4125, 3000, },
1572 { 4125, 3000, },
1573 { 4125, 3000, },
1574 { 4125, 3000, },
1575 { 4125, 3000, },
1576 { 4125, 3000, },
1577 { 4125, 3000, },
1578 { 4125, 3000, },
1579 { 4125, 3000, },
1580 { 4125, 3000, },
1581 { 4125, 3000, },
1582 { 4125, 3000, },
1583 { 4250, 3125, },
1584 { 4375, 3250, },
1585 { 4500, 3375, },
1586 { 4625, 3500, },
1587 { 4750, 3625, },
1588 { 4875, 3750, },
1589 { 5000, 3875, },
1590 { 5125, 4000, },
1591 { 5250, 4125, },
1592 { 5375, 4250, },
1593 { 5500, 4375, },
1594 { 5625, 4500, },
1595 { 5750, 4625, },
1596 { 5875, 4750, },
1597 { 6000, 4875, },
1598 { 6125, 5000, },
1599 { 6250, 5125, },
1600 { 6375, 5250, },
1601 { 6500, 5375, },
1602 { 6625, 5500, },
1603 { 6750, 5625, },
1604 { 6875, 5750, },
1605 { 7000, 5875, },
1606 { 7125, 6000, },
1607 { 7250, 6125, },
1608 { 7375, 6250, },
1609 { 7500, 6375, },
1610 { 7625, 6500, },
1611 { 7750, 6625, },
1612 { 7875, 6750, },
1613 { 8000, 6875, },
1614 { 8125, 7000, },
1615 { 8250, 7125, },
1616 { 8375, 7250, },
1617 { 8500, 7375, },
1618 { 8625, 7500, },
1619 { 8750, 7625, },
1620 { 8875, 7750, },
1621 { 9000, 7875, },
1622 { 9125, 8000, },
1623 { 9250, 8125, },
1624 { 9375, 8250, },
1625 { 9500, 8375, },
1626 { 9625, 8500, },
1627 { 9750, 8625, },
1628 { 9875, 8750, },
1629 { 10000, 8875, },
1630 { 10125, 9000, },
1631 { 10250, 9125, },
1632 { 10375, 9250, },
1633 { 10500, 9375, },
1634 { 10625, 9500, },
1635 { 10750, 9625, },
1636 { 10875, 9750, },
1637 { 11000, 9875, },
1638 { 11125, 10000, },
1639 { 11250, 10125, },
1640 { 11375, 10250, },
1641 { 11500, 10375, },
1642 { 11625, 10500, },
1643 { 11750, 10625, },
1644 { 11875, 10750, },
1645 { 12000, 10875, },
1646 { 12125, 11000, },
1647 { 12250, 11125, },
1648 { 12375, 11250, },
1649 { 12500, 11375, },
1650 { 12625, 11500, },
1651 { 12750, 11625, },
1652 { 12875, 11750, },
1653 { 13000, 11875, },
1654 { 13125, 12000, },
1655 { 13250, 12125, },
1656 { 13375, 12250, },
1657 { 13500, 12375, },
1658 { 13625, 12500, },
1659 { 13750, 12625, },
1660 { 13875, 12750, },
1661 { 14000, 12875, },
1662 { 14125, 13000, },
1663 { 14250, 13125, },
1664 { 14375, 13250, },
1665 { 14500, 13375, },
1666 { 14625, 13500, },
1667 { 14750, 13625, },
1668 { 14875, 13750, },
1669 { 15000, 13875, },
1670 { 15125, 14000, },
1671 { 15250, 14125, },
1672 { 15375, 14250, },
1673 { 15500, 14375, },
1674 { 15625, 14500, },
1675 { 15750, 14625, },
1676 { 15875, 14750, },
1677 { 16000, 14875, },
1678 { 16125, 15000, },
1679 };
1680 if (dev_priv->info->is_mobile)
1681 return v_table[pxvid].vm;
1682 else
1683 return v_table[pxvid].vd;
7648fa99
JB
1684}
1685
1686void i915_update_gfx_val(struct drm_i915_private *dev_priv)
1687{
1688 struct timespec now, diff1;
1689 u64 diff;
1690 unsigned long diffms;
1691 u32 count;
1692
1693 getrawmonotonic(&now);
1694 diff1 = timespec_sub(now, dev_priv->last_time2);
1695
1696 /* Don't divide by 0 */
1697 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
1698 if (!diffms)
1699 return;
1700
1701 count = I915_READ(GFXEC);
1702
1703 if (count < dev_priv->last_count2) {
1704 diff = ~0UL - dev_priv->last_count2;
1705 diff += count;
1706 } else {
1707 diff = count - dev_priv->last_count2;
1708 }
1709
1710 dev_priv->last_count2 = count;
1711 dev_priv->last_time2 = now;
1712
1713 /* More magic constants... */
1714 diff = diff * 1181;
d270ae34 1715 diff = div_u64(diff, diffms * 10);
7648fa99
JB
1716 dev_priv->gfx_power = diff;
1717}
1718
1719unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
1720{
1721 unsigned long t, corr, state1, corr2, state2;
1722 u32 pxvid, ext_v;
1723
1724 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4));
1725 pxvid = (pxvid >> 24) & 0x7f;
1726 ext_v = pvid_to_extvid(dev_priv, pxvid);
1727
1728 state1 = ext_v;
1729
1730 t = i915_mch_val(dev_priv);
1731
1732 /* Revel in the empirically derived constants */
1733
1734 /* Correction factor in 1/100000 units */
1735 if (t > 80)
1736 corr = ((t * 2349) + 135940);
1737 else if (t >= 50)
1738 corr = ((t * 964) + 29317);
1739 else /* < 50 */
1740 corr = ((t * 301) + 1004);
1741
1742 corr = corr * ((150142 * state1) / 10000 - 78642);
1743 corr /= 100000;
1744 corr2 = (corr * dev_priv->corr);
1745
1746 state2 = (corr2 * state1) / 10000;
1747 state2 /= 100; /* convert to mW */
1748
1749 i915_update_gfx_val(dev_priv);
1750
1751 return dev_priv->gfx_power + state2;
1752}
1753
1754/* Global for IPS driver to get at the current i915 device */
1755static struct drm_i915_private *i915_mch_dev;
1756/*
1757 * Lock protecting IPS related data structures
1758 * - i915_mch_dev
1759 * - dev_priv->max_delay
1760 * - dev_priv->min_delay
1761 * - dev_priv->fmax
1762 * - dev_priv->gpu_busy
1763 */
995b6762 1764static DEFINE_SPINLOCK(mchdev_lock);
7648fa99
JB
1765
1766/**
1767 * i915_read_mch_val - return value for IPS use
1768 *
1769 * Calculate and return a value for the IPS driver to use when deciding whether
1770 * we have thermal and power headroom to increase CPU or GPU power budget.
1771 */
1772unsigned long i915_read_mch_val(void)
1773{
0206e353 1774 struct drm_i915_private *dev_priv;
7648fa99
JB
1775 unsigned long chipset_val, graphics_val, ret = 0;
1776
0206e353 1777 spin_lock(&mchdev_lock);
7648fa99
JB
1778 if (!i915_mch_dev)
1779 goto out_unlock;
1780 dev_priv = i915_mch_dev;
1781
1782 chipset_val = i915_chipset_val(dev_priv);
1783 graphics_val = i915_gfx_val(dev_priv);
1784
1785 ret = chipset_val + graphics_val;
1786
1787out_unlock:
0206e353 1788 spin_unlock(&mchdev_lock);
7648fa99 1789
0206e353 1790 return ret;
7648fa99
JB
1791}
1792EXPORT_SYMBOL_GPL(i915_read_mch_val);
1793
1794/**
1795 * i915_gpu_raise - raise GPU frequency limit
1796 *
1797 * Raise the limit; IPS indicates we have thermal headroom.
1798 */
1799bool i915_gpu_raise(void)
1800{
0206e353 1801 struct drm_i915_private *dev_priv;
7648fa99
JB
1802 bool ret = true;
1803
0206e353 1804 spin_lock(&mchdev_lock);
7648fa99
JB
1805 if (!i915_mch_dev) {
1806 ret = false;
1807 goto out_unlock;
1808 }
1809 dev_priv = i915_mch_dev;
1810
1811 if (dev_priv->max_delay > dev_priv->fmax)
1812 dev_priv->max_delay--;
1813
1814out_unlock:
0206e353 1815 spin_unlock(&mchdev_lock);
7648fa99 1816
0206e353 1817 return ret;
7648fa99
JB
1818}
1819EXPORT_SYMBOL_GPL(i915_gpu_raise);
1820
1821/**
1822 * i915_gpu_lower - lower GPU frequency limit
1823 *
1824 * IPS indicates we're close to a thermal limit, so throttle back the GPU
1825 * frequency maximum.
1826 */
1827bool i915_gpu_lower(void)
1828{
0206e353 1829 struct drm_i915_private *dev_priv;
7648fa99
JB
1830 bool ret = true;
1831
0206e353 1832 spin_lock(&mchdev_lock);
7648fa99
JB
1833 if (!i915_mch_dev) {
1834 ret = false;
1835 goto out_unlock;
1836 }
1837 dev_priv = i915_mch_dev;
1838
1839 if (dev_priv->max_delay < dev_priv->min_delay)
1840 dev_priv->max_delay++;
1841
1842out_unlock:
0206e353 1843 spin_unlock(&mchdev_lock);
7648fa99 1844
0206e353 1845 return ret;
7648fa99
JB
1846}
1847EXPORT_SYMBOL_GPL(i915_gpu_lower);
1848
1849/**
1850 * i915_gpu_busy - indicate GPU business to IPS
1851 *
1852 * Tell the IPS driver whether or not the GPU is busy.
1853 */
1854bool i915_gpu_busy(void)
1855{
0206e353 1856 struct drm_i915_private *dev_priv;
7648fa99
JB
1857 bool ret = false;
1858
0206e353 1859 spin_lock(&mchdev_lock);
7648fa99
JB
1860 if (!i915_mch_dev)
1861 goto out_unlock;
1862 dev_priv = i915_mch_dev;
1863
1864 ret = dev_priv->busy;
1865
1866out_unlock:
0206e353 1867 spin_unlock(&mchdev_lock);
7648fa99 1868
0206e353 1869 return ret;
7648fa99
JB
1870}
1871EXPORT_SYMBOL_GPL(i915_gpu_busy);
1872
1873/**
1874 * i915_gpu_turbo_disable - disable graphics turbo
1875 *
1876 * Disable graphics turbo by resetting the max frequency and setting the
1877 * current frequency to the default.
1878 */
1879bool i915_gpu_turbo_disable(void)
1880{
0206e353 1881 struct drm_i915_private *dev_priv;
7648fa99
JB
1882 bool ret = true;
1883
0206e353 1884 spin_lock(&mchdev_lock);
7648fa99
JB
1885 if (!i915_mch_dev) {
1886 ret = false;
1887 goto out_unlock;
1888 }
1889 dev_priv = i915_mch_dev;
1890
1891 dev_priv->max_delay = dev_priv->fstart;
1892
1893 if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart))
1894 ret = false;
1895
1896out_unlock:
0206e353 1897 spin_unlock(&mchdev_lock);
7648fa99 1898
0206e353 1899 return ret;
7648fa99
JB
1900}
1901EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
1902
63ee41d7
EA
1903/**
1904 * Tells the intel_ips driver that the i915 driver is now loaded, if
1905 * IPS got loaded first.
1906 *
1907 * This awkward dance is so that neither module has to depend on the
1908 * other in order for IPS to do the appropriate communication of
1909 * GPU turbo limits to i915.
1910 */
1911static void
1912ips_ping_for_i915_load(void)
1913{
1914 void (*link)(void);
1915
1916 link = symbol_get(ips_link_to_i915_driver);
1917 if (link) {
1918 link();
1919 symbol_put(ips_link_to_i915_driver);
1920 }
1921}
1922
e2b665c4
AJ
1923static void
1924i915_mtrr_setup(struct drm_i915_private *dev_priv, unsigned long base,
1925 unsigned long size)
1926{
9e984bc1
AJ
1927#if defined(CONFIG_X86_PAT)
1928 if (cpu_has_pat)
1929 return;
1930#endif
1931
e2b665c4
AJ
1932 /* Set up a WC MTRR for non-PAT systems. This is more common than
1933 * one would think, because the kernel disables PAT on first
1934 * generation Core chips because WC PAT gets overridden by a UC
1935 * MTRR if present. Even if a UC MTRR isn't present.
1936 */
1937 dev_priv->mm.gtt_mtrr = mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
1938 if (dev_priv->mm.gtt_mtrr < 0) {
1939 DRM_INFO("MTRR allocation failed. Graphics "
1940 "performance may suffer.\n");
1941 }
1942}
1943
79e53945
JB
1944/**
1945 * i915_driver_load - setup chip and create an initial config
1946 * @dev: DRM device
1947 * @flags: startup flags
1948 *
1949 * The driver load routine has to do several things:
1950 * - drive output discovery via intel_modeset_init()
1951 * - initialize the memory manager
1952 * - allocate initial config memory
1953 * - setup the DRM framebuffer with the allocated memory
1954 */
84b1fd10 1955int i915_driver_load(struct drm_device *dev, unsigned long flags)
22eae947 1956{
ea059a1e 1957 struct drm_i915_private *dev_priv;
cfdf1fa2 1958 int ret = 0, mmio_bar;
fe669bf8
CW
1959 uint32_t agp_size;
1960
22eae947
DA
1961 /* i915 has 4 more counters */
1962 dev->counters += 4;
1963 dev->types[6] = _DRM_STAT_IRQ;
1964 dev->types[7] = _DRM_STAT_PRIMARY;
1965 dev->types[8] = _DRM_STAT_SECONDARY;
1966 dev->types[9] = _DRM_STAT_DMA;
1967
9a298b2a 1968 dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
ba8bbcf6
JB
1969 if (dev_priv == NULL)
1970 return -ENOMEM;
1971
ba8bbcf6 1972 dev->dev_private = (void *)dev_priv;
673a394b 1973 dev_priv->dev = dev;
cfdf1fa2 1974 dev_priv->info = (struct intel_device_info *) flags;
ba8bbcf6 1975
ec2a4c3f
DA
1976 if (i915_get_bridge_dev(dev)) {
1977 ret = -EIO;
1978 goto free_priv;
1979 }
1980
466e69b8
DA
1981 pci_set_master(dev->pdev);
1982
9f82d238
DV
1983 /* overlay on gen2 is broken and can't address above 1G */
1984 if (IS_GEN2(dev))
1985 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
1986
6927faf3
JN
1987 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1988 * using 32bit addressing, overwriting memory if HWS is located
1989 * above 4GB.
1990 *
1991 * The documentation also mentions an issue with undefined
1992 * behaviour if any general state is accessed within a page above 4GB,
1993 * which also needs to be handled carefully.
1994 */
1995 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1996 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
1997
b4ce0f85
CW
1998 mmio_bar = IS_GEN2(dev) ? 1 : 0;
1999 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0);
2000 if (!dev_priv->regs) {
2001 DRM_ERROR("failed to map registers\n");
2002 ret = -EIO;
2003 goto put_bridge;
2004 }
2005
71e9339c
CW
2006 dev_priv->mm.gtt = intel_gtt_get();
2007 if (!dev_priv->mm.gtt) {
2008 DRM_ERROR("Failed to initialize GTT\n");
2009 ret = -ENODEV;
a7b85d2a 2010 goto out_rmmap;
71e9339c
CW
2011 }
2012
71e9339c
CW
2013 agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
2014
0206e353 2015 dev_priv->mm.gtt_mapping =
71e9339c 2016 io_mapping_create_wc(dev->agp->base, agp_size);
6644107d
VP
2017 if (dev_priv->mm.gtt_mapping == NULL) {
2018 ret = -EIO;
2019 goto out_rmmap;
2020 }
2021
e2b665c4 2022 i915_mtrr_setup(dev_priv, dev->agp->base, agp_size);
19966754 2023
e642abbf
CW
2024 /* The i915 workqueue is primarily used for batched retirement of
2025 * requests (and thus managing bo) once the task has been completed
2026 * by the GPU. i915_gem_retire_requests() is called directly when we
2027 * need high-priority retirement, such as waiting for an explicit
2028 * bo.
2029 *
2030 * It is also used for periodic low-priority events, such as
df9c2042 2031 * idle-timers and recording error state.
e642abbf
CW
2032 *
2033 * All tasks on the workqueue are expected to acquire the dev mutex
2034 * so there is no point in running more than one instance of the
2035 * workqueue at any time: max_active = 1 and NON_REENTRANT.
2036 */
2037 dev_priv->wq = alloc_workqueue("i915",
2038 WQ_UNBOUND | WQ_NON_REENTRANT,
2039 1);
9c9fe1f8
EA
2040 if (dev_priv->wq == NULL) {
2041 DRM_ERROR("Failed to create our workqueue.\n");
2042 ret = -ENOMEM;
a7b85d2a 2043 goto out_mtrrfree;
9c9fe1f8
EA
2044 }
2045
ac5c4e76
DA
2046 /* enable GEM by default */
2047 dev_priv->has_gem = 1;
ac5c4e76 2048
f71d4af4 2049 intel_irq_init(dev);
9880b7a5 2050
c4804411
ZW
2051 /* Try to make sure MCHBAR is enabled before poking at it */
2052 intel_setup_mchbar(dev);
f899fc64 2053 intel_setup_gmbus(dev);
44834a67 2054 intel_opregion_setup(dev);
c4804411 2055
6d139a87
BF
2056 /* Make sure the bios did its job and set up vital registers */
2057 intel_setup_bios(dev);
2058
673a394b
EA
2059 i915_gem_load(dev);
2060
398c9cb2
KP
2061 /* Init HWS */
2062 if (!I915_NEED_GFX_HWS(dev)) {
2063 ret = i915_init_phys_hws(dev);
56e2ea34
CW
2064 if (ret)
2065 goto out_gem_unload;
398c9cb2 2066 }
ed4cb414 2067
7648fa99
JB
2068 if (IS_PINEVIEW(dev))
2069 i915_pineview_get_mem_freq(dev);
f00a3ddf 2070 else if (IS_GEN5(dev))
7648fa99 2071 i915_ironlake_get_mem_freq(dev);
7662c8bd 2072
ed4cb414
EA
2073 /* On the 945G/GM, the chipset reports the MSI capability on the
2074 * integrated graphics even though the support isn't actually there
2075 * according to the published specs. It doesn't appear to function
2076 * correctly in testing on 945G.
2077 * This may be a side effect of MSI having been made available for PEG
2078 * and the registers being closely associated.
d1ed629f
KP
2079 *
2080 * According to chipset errata, on the 965GM, MSI interrupts may
b60678a7
KP
2081 * be lost or delayed, but we use them anyways to avoid
2082 * stuck interrupts on some machines.
ed4cb414 2083 */
b60678a7 2084 if (!IS_I945G(dev) && !IS_I945GM(dev))
d3e74d02 2085 pci_enable_msi(dev->pdev);
ed4cb414 2086
9f1f46a4 2087 spin_lock_init(&dev_priv->gt_lock);
1ec14ad3 2088 spin_lock_init(&dev_priv->irq_lock);
63eeaf38 2089 spin_lock_init(&dev_priv->error_lock);
4912d041 2090 spin_lock_init(&dev_priv->rps_lock);
ed4cb414 2091
27f8227b
JB
2092 if (IS_IVYBRIDGE(dev))
2093 dev_priv->num_pipe = 3;
2094 else if (IS_MOBILE(dev) || !IS_GEN2(dev))
9db4a9c7
JB
2095 dev_priv->num_pipe = 2;
2096 else
2097 dev_priv->num_pipe = 1;
2098
2099 ret = drm_vblank_init(dev, dev_priv->num_pipe);
56e2ea34
CW
2100 if (ret)
2101 goto out_gem_unload;
52440211 2102
11ed50ec
BG
2103 /* Start out suspended */
2104 dev_priv->mm.suspended = 1;
2105
3bad0781
ZW
2106 intel_detect_pch(dev);
2107
79e53945 2108 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
53984635 2109 ret = i915_load_modeset_init(dev);
79e53945
JB
2110 if (ret < 0) {
2111 DRM_ERROR("failed to init modeset\n");
56e2ea34 2112 goto out_gem_unload;
79e53945
JB
2113 }
2114 }
2115
74a365b3 2116 /* Must be done after probing outputs */
44834a67
CW
2117 intel_opregion_init(dev);
2118 acpi_video_register();
74a365b3 2119
f65d9421
BG
2120 setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed,
2121 (unsigned long) dev);
7648fa99
JB
2122
2123 spin_lock(&mchdev_lock);
2124 i915_mch_dev = dev_priv;
2125 dev_priv->mchdev_lock = &mchdev_lock;
2126 spin_unlock(&mchdev_lock);
2127
63ee41d7
EA
2128 ips_ping_for_i915_load();
2129
79e53945
JB
2130 return 0;
2131
56e2ea34 2132out_gem_unload:
a7b85d2a
KP
2133 if (dev_priv->mm.inactive_shrinker.shrink)
2134 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2135
56e2ea34
CW
2136 if (dev->pdev->msi_enabled)
2137 pci_disable_msi(dev->pdev);
2138
2139 intel_teardown_gmbus(dev);
2140 intel_teardown_mchbar(dev);
9c9fe1f8 2141 destroy_workqueue(dev_priv->wq);
a7b85d2a
KP
2142out_mtrrfree:
2143 if (dev_priv->mm.gtt_mtrr >= 0) {
2144 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2145 dev->agp->agp_info.aper_size * 1024 * 1024);
2146 dev_priv->mm.gtt_mtrr = -1;
2147 }
6644107d 2148 io_mapping_free(dev_priv->mm.gtt_mapping);
79e53945 2149out_rmmap:
6dda569f 2150 pci_iounmap(dev->pdev, dev_priv->regs);
ec2a4c3f
DA
2151put_bridge:
2152 pci_dev_put(dev_priv->bridge_dev);
79e53945 2153free_priv:
9a298b2a 2154 kfree(dev_priv);
ba8bbcf6
JB
2155 return ret;
2156}
2157
2158int i915_driver_unload(struct drm_device *dev)
2159{
2160 struct drm_i915_private *dev_priv = dev->dev_private;
c911fc1c 2161 int ret;
ba8bbcf6 2162
7648fa99
JB
2163 spin_lock(&mchdev_lock);
2164 i915_mch_dev = NULL;
2165 spin_unlock(&mchdev_lock);
2166
17250b71
CW
2167 if (dev_priv->mm.inactive_shrinker.shrink)
2168 unregister_shrinker(&dev_priv->mm.inactive_shrinker);
2169
c911fc1c 2170 mutex_lock(&dev->struct_mutex);
b93f9cf1 2171 ret = i915_gpu_idle(dev, true);
c911fc1c
DV
2172 if (ret)
2173 DRM_ERROR("failed to idle hardware: %d\n", ret);
2174 mutex_unlock(&dev->struct_mutex);
2175
75ef9da2
DV
2176 /* Cancel the retire work handler, which should be idle now. */
2177 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2178
ab657db1
EA
2179 io_mapping_free(dev_priv->mm.gtt_mapping);
2180 if (dev_priv->mm.gtt_mtrr >= 0) {
2181 mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
2182 dev->agp->agp_info.aper_size * 1024 * 1024);
2183 dev_priv->mm.gtt_mtrr = -1;
2184 }
2185
44834a67
CW
2186 acpi_video_unregister();
2187
79e53945 2188 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
7b4f3990 2189 intel_fbdev_fini(dev);
3d8620cc
JB
2190 intel_modeset_cleanup(dev);
2191
6363ee6f
ZY
2192 /*
2193 * free the memory space allocated for the child device
2194 * config parsed from VBT
2195 */
2196 if (dev_priv->child_dev && dev_priv->child_dev_num) {
2197 kfree(dev_priv->child_dev);
2198 dev_priv->child_dev = NULL;
2199 dev_priv->child_dev_num = 0;
2200 }
6c0d9350 2201
6a9ee8af 2202 vga_switcheroo_unregister_client(dev->pdev);
28d52043 2203 vga_client_register(dev->pdev, NULL, NULL, NULL);
79e53945
JB
2204 }
2205
a8b4899e 2206 /* Free error state after interrupts are fully disabled. */
bc0c7f14
DV
2207 del_timer_sync(&dev_priv->hangcheck_timer);
2208 cancel_work_sync(&dev_priv->error_work);
a8b4899e 2209 i915_destroy_error_state(dev);
bc0c7f14 2210
ed4cb414
EA
2211 if (dev->pdev->msi_enabled)
2212 pci_disable_msi(dev->pdev);
2213
44834a67 2214 intel_opregion_fini(dev);
8ee1c3db 2215
79e53945 2216 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
67e77c5a
DV
2217 /* Flush any outstanding unpin_work. */
2218 flush_workqueue(dev_priv->wq);
2219
79e53945 2220 mutex_lock(&dev->struct_mutex);
ecbec53b 2221 i915_gem_free_all_phys_object(dev);
79e53945
JB
2222 i915_gem_cleanup_ringbuffer(dev);
2223 mutex_unlock(&dev->struct_mutex);
1d2a314c 2224 i915_gem_cleanup_aliasing_ppgtt(dev);
20bf377e
JB
2225 if (I915_HAS_FBC(dev) && i915_powersave)
2226 i915_cleanup_compression(dev);
fe669bf8 2227 drm_mm_takedown(&dev_priv->mm.stolen);
02e792fb
DV
2228
2229 intel_cleanup_overlay(dev);
c2873e96
KP
2230
2231 if (!I915_NEED_GFX_HWS(dev))
2232 i915_free_hws(dev);
79e53945
JB
2233 }
2234
701394cc 2235 if (dev_priv->regs != NULL)
6dda569f 2236 pci_iounmap(dev->pdev, dev_priv->regs);
701394cc 2237
f899fc64 2238 intel_teardown_gmbus(dev);
c4804411
ZW
2239 intel_teardown_mchbar(dev);
2240
bc0c7f14
DV
2241 destroy_workqueue(dev_priv->wq);
2242
ec2a4c3f 2243 pci_dev_put(dev_priv->bridge_dev);
9a298b2a 2244 kfree(dev->dev_private);
ba8bbcf6 2245
22eae947
DA
2246 return 0;
2247}
2248
f787a5f5 2249int i915_driver_open(struct drm_device *dev, struct drm_file *file)
673a394b 2250{
f787a5f5 2251 struct drm_i915_file_private *file_priv;
673a394b 2252
8a4c47f3 2253 DRM_DEBUG_DRIVER("\n");
f787a5f5
CW
2254 file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL);
2255 if (!file_priv)
673a394b
EA
2256 return -ENOMEM;
2257
f787a5f5 2258 file->driver_priv = file_priv;
673a394b 2259
1c25595f 2260 spin_lock_init(&file_priv->mm.lock);
f787a5f5 2261 INIT_LIST_HEAD(&file_priv->mm.request_list);
673a394b
EA
2262
2263 return 0;
2264}
2265
79e53945
JB
2266/**
2267 * i915_driver_lastclose - clean up after all DRM clients have exited
2268 * @dev: DRM device
2269 *
2270 * Take care of cleaning up after all DRM clients have exited. In the
2271 * mode setting case, we want to restore the kernel's initial mode (just
2272 * in case the last client left us in a bad state).
2273 *
2274 * Additionally, in the non-mode setting case, we'll tear down the AGP
2275 * and DMA structures, since the kernel won't be using them, and clea
2276 * up any GEM state.
2277 */
84b1fd10 2278void i915_driver_lastclose(struct drm_device * dev)
1da177e4 2279{
ba8bbcf6
JB
2280 drm_i915_private_t *dev_priv = dev->dev_private;
2281
79e53945 2282 if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
e8e7a2b8 2283 intel_fb_restore_mode(dev);
6a9ee8af 2284 vga_switcheroo_process_delayed_switch();
144a75fa 2285 return;
79e53945 2286 }
144a75fa 2287
673a394b
EA
2288 i915_gem_lastclose(dev);
2289
b5e89ed5 2290 i915_dma_cleanup(dev);
1da177e4
LT
2291}
2292
6c340eac 2293void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
1da177e4 2294{
b962442e 2295 i915_gem_release(dev, file_priv);
1da177e4
LT
2296}
2297
f787a5f5 2298void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
673a394b 2299{
f787a5f5 2300 struct drm_i915_file_private *file_priv = file->driver_priv;
673a394b 2301
f787a5f5 2302 kfree(file_priv);
673a394b
EA
2303}
2304
c153f45f 2305struct drm_ioctl_desc i915_ioctls[] = {
1b2f1489
DA
2306 DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2307 DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
2308 DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH),
2309 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
2310 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
2311 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
2312 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH),
2313 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
b2c606fe
DV
2314 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2315 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2316 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1b2f1489 2317 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
b2c606fe 2318 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1b2f1489
DA
2319 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2320 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH),
2321 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
2322 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2323 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2324 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
2325 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED),
2326 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2327 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
2328 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
2329 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED),
2330 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2331 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
2332 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED),
2333 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED),
2334 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED),
2335 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED),
2336 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED),
2337 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED),
2338 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED),
2339 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED),
2340 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED),
2341 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED),
2342 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
2343 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED),
2344 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2345 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
8ea30864
JB
2346 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
2347 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
c94f7029
DA
2348};
2349
2350int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
cda17380
DA
2351
2352/**
2353 * Determine if the device really is AGP or not.
2354 *
2355 * All Intel graphics chipsets are treated as AGP, even if they are really
2356 * PCI-e.
2357 *
2358 * \param dev The device to be tested.
2359 *
2360 * \returns
2361 * A value of 1 is always retured to indictate every i9x5 is AGP.
2362 */
84b1fd10 2363int i915_driver_device_is_agp(struct drm_device * dev)
cda17380
DA
2364{
2365 return 1;
2366}