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