1 /* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
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.
31 #include "drm_crtc_helper.h"
32 #include "drm_fb_helper.h"
33 #include "intel_drv.h"
36 #include "i915_trace.h"
37 #include <linux/vgaarb.h>
39 /* Really want an OS-independent resettable timer. Would like to have
40 * this loop run for (eg) 3 sec, but have the timer reset every time
41 * the head pointer changes, so that EBUSY only happens if the ring
42 * actually stalls for (eg) 3 seconds.
44 int i915_wait_ring(struct drm_device
* dev
, int n
, const char *caller
)
46 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
47 drm_i915_ring_buffer_t
*ring
= &(dev_priv
->ring
);
48 u32 acthd_reg
= IS_I965G(dev
) ? ACTHD_I965
: ACTHD
;
49 u32 last_acthd
= I915_READ(acthd_reg
);
51 u32 last_head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
54 trace_i915_ring_wait_begin (dev
);
56 for (i
= 0; i
< 100000; i
++) {
57 ring
->head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
58 acthd
= I915_READ(acthd_reg
);
59 ring
->space
= ring
->head
- (ring
->tail
+ 8);
61 ring
->space
+= ring
->Size
;
62 if (ring
->space
>= n
) {
63 trace_i915_ring_wait_end (dev
);
67 if (dev
->primary
->master
) {
68 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
69 if (master_priv
->sarea_priv
)
70 master_priv
->sarea_priv
->perf_boxes
|= I915_BOX_WAIT
;
74 if (ring
->head
!= last_head
)
76 if (acthd
!= last_acthd
)
79 last_head
= ring
->head
;
81 msleep_interruptible(10);
85 trace_i915_ring_wait_end (dev
);
89 /* As a ringbuffer is only allowed to wrap between instructions, fill
90 * the tail with NOOPs.
92 int i915_wrap_ring(struct drm_device
*dev
)
94 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
95 volatile unsigned int *virt
;
98 rem
= dev_priv
->ring
.Size
- dev_priv
->ring
.tail
;
99 if (dev_priv
->ring
.space
< rem
) {
100 int ret
= i915_wait_ring(dev
, rem
, __func__
);
104 dev_priv
->ring
.space
-= rem
;
106 virt
= (unsigned int *)
107 (dev_priv
->ring
.virtual_start
+ dev_priv
->ring
.tail
);
112 dev_priv
->ring
.tail
= 0;
118 * Sets up the hardware status page for devices that need a physical address
121 static int i915_init_phys_hws(struct drm_device
*dev
)
123 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
124 /* Program Hardware Status Page */
125 dev_priv
->status_page_dmah
=
126 drm_pci_alloc(dev
, PAGE_SIZE
, PAGE_SIZE
, 0xffffffff);
128 if (!dev_priv
->status_page_dmah
) {
129 DRM_ERROR("Can not allocate hardware status page\n");
132 dev_priv
->hw_status_page
= dev_priv
->status_page_dmah
->vaddr
;
133 dev_priv
->dma_status_page
= dev_priv
->status_page_dmah
->busaddr
;
135 memset(dev_priv
->hw_status_page
, 0, PAGE_SIZE
);
137 I915_WRITE(HWS_PGA
, dev_priv
->dma_status_page
);
138 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
143 * Frees the hardware status page, whether it's a physical address or a virtual
144 * address set up by the X Server.
146 static void i915_free_hws(struct drm_device
*dev
)
148 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
149 if (dev_priv
->status_page_dmah
) {
150 drm_pci_free(dev
, dev_priv
->status_page_dmah
);
151 dev_priv
->status_page_dmah
= NULL
;
154 if (dev_priv
->status_gfx_addr
) {
155 dev_priv
->status_gfx_addr
= 0;
156 drm_core_ioremapfree(&dev_priv
->hws_map
, dev
);
159 /* Need to rewrite hardware status page */
160 I915_WRITE(HWS_PGA
, 0x1ffff000);
163 void i915_kernel_lost_context(struct drm_device
* dev
)
165 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
166 struct drm_i915_master_private
*master_priv
;
167 drm_i915_ring_buffer_t
*ring
= &(dev_priv
->ring
);
170 * We should never lose context on the ring with modesetting
171 * as we don't expose it to userspace
173 if (drm_core_check_feature(dev
, DRIVER_MODESET
))
176 ring
->head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
177 ring
->tail
= I915_READ(PRB0_TAIL
) & TAIL_ADDR
;
178 ring
->space
= ring
->head
- (ring
->tail
+ 8);
180 ring
->space
+= ring
->Size
;
182 if (!dev
->primary
->master
)
185 master_priv
= dev
->primary
->master
->driver_priv
;
186 if (ring
->head
== ring
->tail
&& master_priv
->sarea_priv
)
187 master_priv
->sarea_priv
->perf_boxes
|= I915_BOX_RING_EMPTY
;
190 static int i915_dma_cleanup(struct drm_device
* dev
)
192 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
193 /* Make sure interrupts are disabled here because the uninstall ioctl
194 * may not have been called from userspace and after dev_private
195 * is freed, it's too late.
197 if (dev
->irq_enabled
)
198 drm_irq_uninstall(dev
);
200 if (dev_priv
->ring
.virtual_start
) {
201 drm_core_ioremapfree(&dev_priv
->ring
.map
, dev
);
202 dev_priv
->ring
.virtual_start
= NULL
;
203 dev_priv
->ring
.map
.handle
= NULL
;
204 dev_priv
->ring
.map
.size
= 0;
207 /* Clear the HWS virtual address at teardown */
208 if (I915_NEED_GFX_HWS(dev
))
214 static int i915_initialize(struct drm_device
* dev
, drm_i915_init_t
* init
)
216 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
217 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
219 master_priv
->sarea
= drm_getsarea(dev
);
220 if (master_priv
->sarea
) {
221 master_priv
->sarea_priv
= (drm_i915_sarea_t
*)
222 ((u8
*)master_priv
->sarea
->handle
+ init
->sarea_priv_offset
);
224 DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n");
227 if (init
->ring_size
!= 0) {
228 if (dev_priv
->ring
.ring_obj
!= NULL
) {
229 i915_dma_cleanup(dev
);
230 DRM_ERROR("Client tried to initialize ringbuffer in "
235 dev_priv
->ring
.Size
= init
->ring_size
;
237 dev_priv
->ring
.map
.offset
= init
->ring_start
;
238 dev_priv
->ring
.map
.size
= init
->ring_size
;
239 dev_priv
->ring
.map
.type
= 0;
240 dev_priv
->ring
.map
.flags
= 0;
241 dev_priv
->ring
.map
.mtrr
= 0;
243 drm_core_ioremap_wc(&dev_priv
->ring
.map
, dev
);
245 if (dev_priv
->ring
.map
.handle
== NULL
) {
246 i915_dma_cleanup(dev
);
247 DRM_ERROR("can not ioremap virtual address for"
253 dev_priv
->ring
.virtual_start
= dev_priv
->ring
.map
.handle
;
255 dev_priv
->cpp
= init
->cpp
;
256 dev_priv
->back_offset
= init
->back_offset
;
257 dev_priv
->front_offset
= init
->front_offset
;
258 dev_priv
->current_page
= 0;
259 if (master_priv
->sarea_priv
)
260 master_priv
->sarea_priv
->pf_current_page
= 0;
262 /* Allow hardware batchbuffers unless told otherwise.
264 dev_priv
->allow_batchbuffer
= 1;
269 static int i915_dma_resume(struct drm_device
* dev
)
271 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
273 DRM_DEBUG_DRIVER("%s\n", __func__
);
275 if (dev_priv
->ring
.map
.handle
== NULL
) {
276 DRM_ERROR("can not ioremap virtual address for"
281 /* Program Hardware Status Page */
282 if (!dev_priv
->hw_status_page
) {
283 DRM_ERROR("Can not find hardware status page\n");
286 DRM_DEBUG_DRIVER("hw status page @ %p\n",
287 dev_priv
->hw_status_page
);
289 if (dev_priv
->status_gfx_addr
!= 0)
290 I915_WRITE(HWS_PGA
, dev_priv
->status_gfx_addr
);
292 I915_WRITE(HWS_PGA
, dev_priv
->dma_status_page
);
293 DRM_DEBUG_DRIVER("Enabled hardware status page\n");
298 static int i915_dma_init(struct drm_device
*dev
, void *data
,
299 struct drm_file
*file_priv
)
301 drm_i915_init_t
*init
= data
;
304 switch (init
->func
) {
306 retcode
= i915_initialize(dev
, init
);
308 case I915_CLEANUP_DMA
:
309 retcode
= i915_dma_cleanup(dev
);
311 case I915_RESUME_DMA
:
312 retcode
= i915_dma_resume(dev
);
322 /* Implement basically the same security restrictions as hardware does
323 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
325 * Most of the calculations below involve calculating the size of a
326 * particular instruction. It's important to get the size right as
327 * that tells us where the next instruction to check is. Any illegal
328 * instruction detected will be given a size of zero, which is a
329 * signal to abort the rest of the buffer.
331 static int do_validate_cmd(int cmd
)
333 switch (((cmd
>> 29) & 0x7)) {
335 switch ((cmd
>> 23) & 0x3f) {
337 return 1; /* MI_NOOP */
339 return 1; /* MI_FLUSH */
341 return 0; /* disallow everything else */
345 return 0; /* reserved */
347 return (cmd
& 0xff) + 2; /* 2d commands */
349 if (((cmd
>> 24) & 0x1f) <= 0x18)
352 switch ((cmd
>> 24) & 0x1f) {
356 switch ((cmd
>> 16) & 0xff) {
358 return (cmd
& 0x1f) + 2;
360 return (cmd
& 0xf) + 2;
362 return (cmd
& 0xffff) + 2;
366 return (cmd
& 0xffff) + 1;
370 if ((cmd
& (1 << 23)) == 0) /* inline vertices */
371 return (cmd
& 0x1ffff) + 2;
372 else if (cmd
& (1 << 17)) /* indirect random */
373 if ((cmd
& 0xffff) == 0)
374 return 0; /* unknown length, too hard */
376 return (((cmd
& 0xffff) + 1) / 2) + 1;
378 return 2; /* indirect sequential */
389 static int validate_cmd(int cmd
)
391 int ret
= do_validate_cmd(cmd
);
393 /* printk("validate_cmd( %x ): %d\n", cmd, ret); */
398 static int i915_emit_cmds(struct drm_device
* dev
, int *buffer
, int dwords
)
400 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
404 if ((dwords
+1) * sizeof(int) >= dev_priv
->ring
.Size
- 8)
407 BEGIN_LP_RING((dwords
+1)&~1);
409 for (i
= 0; i
< dwords
;) {
414 if ((sz
= validate_cmd(cmd
)) == 0 || i
+ sz
> dwords
)
433 i915_emit_box(struct drm_device
*dev
,
434 struct drm_clip_rect
*boxes
,
435 int i
, int DR1
, int DR4
)
437 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
438 struct drm_clip_rect box
= boxes
[i
];
441 if (box
.y2
<= box
.y1
|| box
.x2
<= box
.x1
|| box
.y2
<= 0 || box
.x2
<= 0) {
442 DRM_ERROR("Bad box %d,%d..%d,%d\n",
443 box
.x1
, box
.y1
, box
.x2
, box
.y2
);
449 OUT_RING(GFX_OP_DRAWRECT_INFO_I965
);
450 OUT_RING((box
.x1
& 0xffff) | (box
.y1
<< 16));
451 OUT_RING(((box
.x2
- 1) & 0xffff) | ((box
.y2
- 1) << 16));
456 OUT_RING(GFX_OP_DRAWRECT_INFO
);
458 OUT_RING((box
.x1
& 0xffff) | (box
.y1
<< 16));
459 OUT_RING(((box
.x2
- 1) & 0xffff) | ((box
.y2
- 1) << 16));
468 /* XXX: Emitting the counter should really be moved to part of the IRQ
469 * emit. For now, do it in both places:
472 static void i915_emit_breadcrumb(struct drm_device
*dev
)
474 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
475 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
479 if (dev_priv
->counter
> 0x7FFFFFFFUL
)
480 dev_priv
->counter
= 0;
481 if (master_priv
->sarea_priv
)
482 master_priv
->sarea_priv
->last_enqueue
= dev_priv
->counter
;
485 OUT_RING(MI_STORE_DWORD_INDEX
);
486 OUT_RING(I915_BREADCRUMB_INDEX
<< MI_STORE_DWORD_INDEX_SHIFT
);
487 OUT_RING(dev_priv
->counter
);
492 static int i915_dispatch_cmdbuffer(struct drm_device
* dev
,
493 drm_i915_cmdbuffer_t
*cmd
,
494 struct drm_clip_rect
*cliprects
,
497 int nbox
= cmd
->num_cliprects
;
498 int i
= 0, count
, ret
;
501 DRM_ERROR("alignment");
505 i915_kernel_lost_context(dev
);
507 count
= nbox
? nbox
: 1;
509 for (i
= 0; i
< count
; i
++) {
511 ret
= i915_emit_box(dev
, cliprects
, i
,
517 ret
= i915_emit_cmds(dev
, cmdbuf
, cmd
->sz
/ 4);
522 i915_emit_breadcrumb(dev
);
526 static int i915_dispatch_batchbuffer(struct drm_device
* dev
,
527 drm_i915_batchbuffer_t
* batch
,
528 struct drm_clip_rect
*cliprects
)
530 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
531 int nbox
= batch
->num_cliprects
;
535 if ((batch
->start
| batch
->used
) & 0x7) {
536 DRM_ERROR("alignment");
540 i915_kernel_lost_context(dev
);
542 count
= nbox
? nbox
: 1;
544 for (i
= 0; i
< count
; i
++) {
546 int ret
= i915_emit_box(dev
, cliprects
, i
,
547 batch
->DR1
, batch
->DR4
);
552 if (!IS_I830(dev
) && !IS_845G(dev
)) {
555 OUT_RING(MI_BATCH_BUFFER_START
| (2 << 6) | MI_BATCH_NON_SECURE_I965
);
556 OUT_RING(batch
->start
);
558 OUT_RING(MI_BATCH_BUFFER_START
| (2 << 6));
559 OUT_RING(batch
->start
| MI_BATCH_NON_SECURE
);
564 OUT_RING(MI_BATCH_BUFFER
);
565 OUT_RING(batch
->start
| MI_BATCH_NON_SECURE
);
566 OUT_RING(batch
->start
+ batch
->used
- 4);
572 i915_emit_breadcrumb(dev
);
577 static int i915_dispatch_flip(struct drm_device
* dev
)
579 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
580 struct drm_i915_master_private
*master_priv
=
581 dev
->primary
->master
->driver_priv
;
584 if (!master_priv
->sarea_priv
)
587 DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n",
589 dev_priv
->current_page
,
590 master_priv
->sarea_priv
->pf_current_page
);
592 i915_kernel_lost_context(dev
);
595 OUT_RING(MI_FLUSH
| MI_READ_FLUSH
);
600 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO
| ASYNC_FLIP
);
602 if (dev_priv
->current_page
== 0) {
603 OUT_RING(dev_priv
->back_offset
);
604 dev_priv
->current_page
= 1;
606 OUT_RING(dev_priv
->front_offset
);
607 dev_priv
->current_page
= 0;
613 OUT_RING(MI_WAIT_FOR_EVENT
| MI_WAIT_FOR_PLANE_A_FLIP
);
617 master_priv
->sarea_priv
->last_enqueue
= dev_priv
->counter
++;
620 OUT_RING(MI_STORE_DWORD_INDEX
);
621 OUT_RING(I915_BREADCRUMB_INDEX
<< MI_STORE_DWORD_INDEX_SHIFT
);
622 OUT_RING(dev_priv
->counter
);
626 master_priv
->sarea_priv
->pf_current_page
= dev_priv
->current_page
;
630 static int i915_quiescent(struct drm_device
* dev
)
632 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
634 i915_kernel_lost_context(dev
);
635 return i915_wait_ring(dev
, dev_priv
->ring
.Size
- 8, __func__
);
638 static int i915_flush_ioctl(struct drm_device
*dev
, void *data
,
639 struct drm_file
*file_priv
)
643 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
645 mutex_lock(&dev
->struct_mutex
);
646 ret
= i915_quiescent(dev
);
647 mutex_unlock(&dev
->struct_mutex
);
652 static int i915_batchbuffer(struct drm_device
*dev
, void *data
,
653 struct drm_file
*file_priv
)
655 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
656 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
657 drm_i915_sarea_t
*sarea_priv
= (drm_i915_sarea_t
*)
658 master_priv
->sarea_priv
;
659 drm_i915_batchbuffer_t
*batch
= data
;
661 struct drm_clip_rect
*cliprects
= NULL
;
663 if (!dev_priv
->allow_batchbuffer
) {
664 DRM_ERROR("Batchbuffer ioctl disabled\n");
668 DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n",
669 batch
->start
, batch
->used
, batch
->num_cliprects
);
671 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
673 if (batch
->num_cliprects
< 0)
676 if (batch
->num_cliprects
) {
677 cliprects
= kcalloc(batch
->num_cliprects
,
678 sizeof(struct drm_clip_rect
),
680 if (cliprects
== NULL
)
683 ret
= copy_from_user(cliprects
, batch
->cliprects
,
684 batch
->num_cliprects
*
685 sizeof(struct drm_clip_rect
));
690 mutex_lock(&dev
->struct_mutex
);
691 ret
= i915_dispatch_batchbuffer(dev
, batch
, cliprects
);
692 mutex_unlock(&dev
->struct_mutex
);
695 sarea_priv
->last_dispatch
= READ_BREADCRUMB(dev_priv
);
703 static int i915_cmdbuffer(struct drm_device
*dev
, void *data
,
704 struct drm_file
*file_priv
)
706 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
707 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
708 drm_i915_sarea_t
*sarea_priv
= (drm_i915_sarea_t
*)
709 master_priv
->sarea_priv
;
710 drm_i915_cmdbuffer_t
*cmdbuf
= data
;
711 struct drm_clip_rect
*cliprects
= NULL
;
715 DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
716 cmdbuf
->buf
, cmdbuf
->sz
, cmdbuf
->num_cliprects
);
718 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
720 if (cmdbuf
->num_cliprects
< 0)
723 batch_data
= kmalloc(cmdbuf
->sz
, GFP_KERNEL
);
724 if (batch_data
== NULL
)
727 ret
= copy_from_user(batch_data
, cmdbuf
->buf
, cmdbuf
->sz
);
729 goto fail_batch_free
;
731 if (cmdbuf
->num_cliprects
) {
732 cliprects
= kcalloc(cmdbuf
->num_cliprects
,
733 sizeof(struct drm_clip_rect
), GFP_KERNEL
);
734 if (cliprects
== NULL
)
735 goto fail_batch_free
;
737 ret
= copy_from_user(cliprects
, cmdbuf
->cliprects
,
738 cmdbuf
->num_cliprects
*
739 sizeof(struct drm_clip_rect
));
744 mutex_lock(&dev
->struct_mutex
);
745 ret
= i915_dispatch_cmdbuffer(dev
, cmdbuf
, cliprects
, batch_data
);
746 mutex_unlock(&dev
->struct_mutex
);
748 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
753 sarea_priv
->last_dispatch
= READ_BREADCRUMB(dev_priv
);
763 static int i915_flip_bufs(struct drm_device
*dev
, void *data
,
764 struct drm_file
*file_priv
)
768 DRM_DEBUG_DRIVER("%s\n", __func__
);
770 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
772 mutex_lock(&dev
->struct_mutex
);
773 ret
= i915_dispatch_flip(dev
);
774 mutex_unlock(&dev
->struct_mutex
);
779 static int i915_getparam(struct drm_device
*dev
, void *data
,
780 struct drm_file
*file_priv
)
782 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
783 drm_i915_getparam_t
*param
= data
;
787 DRM_ERROR("called with no initialization\n");
791 switch (param
->param
) {
792 case I915_PARAM_IRQ_ACTIVE
:
793 value
= dev
->pdev
->irq
? 1 : 0;
795 case I915_PARAM_ALLOW_BATCHBUFFER
:
796 value
= dev_priv
->allow_batchbuffer
? 1 : 0;
798 case I915_PARAM_LAST_DISPATCH
:
799 value
= READ_BREADCRUMB(dev_priv
);
801 case I915_PARAM_CHIPSET_ID
:
802 value
= dev
->pci_device
;
804 case I915_PARAM_HAS_GEM
:
805 value
= dev_priv
->has_gem
;
807 case I915_PARAM_NUM_FENCES_AVAIL
:
808 value
= dev_priv
->num_fence_regs
- dev_priv
->fence_reg_start
;
811 DRM_DEBUG_DRIVER("Unknown parameter %d\n",
816 if (DRM_COPY_TO_USER(param
->value
, &value
, sizeof(int))) {
817 DRM_ERROR("DRM_COPY_TO_USER failed\n");
824 static int i915_setparam(struct drm_device
*dev
, void *data
,
825 struct drm_file
*file_priv
)
827 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
828 drm_i915_setparam_t
*param
= data
;
831 DRM_ERROR("called with no initialization\n");
835 switch (param
->param
) {
836 case I915_SETPARAM_USE_MI_BATCHBUFFER_START
:
838 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY
:
839 dev_priv
->tex_lru_log_granularity
= param
->value
;
841 case I915_SETPARAM_ALLOW_BATCHBUFFER
:
842 dev_priv
->allow_batchbuffer
= param
->value
;
844 case I915_SETPARAM_NUM_USED_FENCES
:
845 if (param
->value
> dev_priv
->num_fence_regs
||
848 /* Userspace can use first N regs */
849 dev_priv
->fence_reg_start
= param
->value
;
852 DRM_DEBUG_DRIVER("unknown parameter %d\n",
860 static int i915_set_status_page(struct drm_device
*dev
, void *data
,
861 struct drm_file
*file_priv
)
863 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
864 drm_i915_hws_addr_t
*hws
= data
;
866 if (!I915_NEED_GFX_HWS(dev
))
870 DRM_ERROR("called with no initialization\n");
874 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
875 WARN(1, "tried to set status page when mode setting active\n");
879 DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32
)hws
->addr
);
881 dev_priv
->status_gfx_addr
= hws
->addr
& (0x1ffff<<12);
883 dev_priv
->hws_map
.offset
= dev
->agp
->base
+ hws
->addr
;
884 dev_priv
->hws_map
.size
= 4*1024;
885 dev_priv
->hws_map
.type
= 0;
886 dev_priv
->hws_map
.flags
= 0;
887 dev_priv
->hws_map
.mtrr
= 0;
889 drm_core_ioremap_wc(&dev_priv
->hws_map
, dev
);
890 if (dev_priv
->hws_map
.handle
== NULL
) {
891 i915_dma_cleanup(dev
);
892 dev_priv
->status_gfx_addr
= 0;
893 DRM_ERROR("can not ioremap virtual address for"
894 " G33 hw status page\n");
897 dev_priv
->hw_status_page
= dev_priv
->hws_map
.handle
;
899 memset(dev_priv
->hw_status_page
, 0, PAGE_SIZE
);
900 I915_WRITE(HWS_PGA
, dev_priv
->status_gfx_addr
);
901 DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n",
902 dev_priv
->status_gfx_addr
);
903 DRM_DEBUG_DRIVER("load hws at %p\n",
904 dev_priv
->hw_status_page
);
908 static int i915_get_bridge_dev(struct drm_device
*dev
)
910 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
912 dev_priv
->bridge_dev
= pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
913 if (!dev_priv
->bridge_dev
) {
914 DRM_ERROR("bridge device not found\n");
921 * i915_probe_agp - get AGP bootup configuration
923 * @aperture_size: returns AGP aperture configured size
924 * @preallocated_size: returns size of BIOS preallocated AGP space
926 * Since Intel integrated graphics are UMA, the BIOS has to set aside
927 * some RAM for the framebuffer at early boot. This code figures out
928 * how much was set aside so we can use it for our own purposes.
930 static int i915_probe_agp(struct drm_device
*dev
, uint32_t *aperture_size
,
931 uint32_t *preallocated_size
,
934 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
936 unsigned long overhead
;
937 unsigned long stolen
;
939 /* Get the fb aperture size and "stolen" memory amount. */
940 pci_read_config_word(dev_priv
->bridge_dev
, INTEL_GMCH_CTRL
, &tmp
);
942 *aperture_size
= 1024 * 1024;
943 *preallocated_size
= 1024 * 1024;
945 switch (dev
->pdev
->device
) {
946 case PCI_DEVICE_ID_INTEL_82830_CGC
:
947 case PCI_DEVICE_ID_INTEL_82845G_IG
:
948 case PCI_DEVICE_ID_INTEL_82855GM_IG
:
949 case PCI_DEVICE_ID_INTEL_82865_IG
:
950 if ((tmp
& INTEL_GMCH_MEM_MASK
) == INTEL_GMCH_MEM_64M
)
951 *aperture_size
*= 64;
953 *aperture_size
*= 128;
956 /* 9xx supports large sizes, just look at the length */
957 *aperture_size
= pci_resource_len(dev
->pdev
, 2);
962 * Some of the preallocated space is taken by the GTT
963 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
965 if (IS_G4X(dev
) || IS_IGD(dev
) || IS_IGDNG(dev
))
968 overhead
= (*aperture_size
/ 1024) + 4096;
970 switch (tmp
& INTEL_GMCH_GMS_MASK
) {
971 case INTEL_855_GMCH_GMS_DISABLED
:
972 DRM_ERROR("video memory is disabled\n");
974 case INTEL_855_GMCH_GMS_STOLEN_1M
:
975 stolen
= 1 * 1024 * 1024;
977 case INTEL_855_GMCH_GMS_STOLEN_4M
:
978 stolen
= 4 * 1024 * 1024;
980 case INTEL_855_GMCH_GMS_STOLEN_8M
:
981 stolen
= 8 * 1024 * 1024;
983 case INTEL_855_GMCH_GMS_STOLEN_16M
:
984 stolen
= 16 * 1024 * 1024;
986 case INTEL_855_GMCH_GMS_STOLEN_32M
:
987 stolen
= 32 * 1024 * 1024;
989 case INTEL_915G_GMCH_GMS_STOLEN_48M
:
990 stolen
= 48 * 1024 * 1024;
992 case INTEL_915G_GMCH_GMS_STOLEN_64M
:
993 stolen
= 64 * 1024 * 1024;
995 case INTEL_GMCH_GMS_STOLEN_128M
:
996 stolen
= 128 * 1024 * 1024;
998 case INTEL_GMCH_GMS_STOLEN_256M
:
999 stolen
= 256 * 1024 * 1024;
1001 case INTEL_GMCH_GMS_STOLEN_96M
:
1002 stolen
= 96 * 1024 * 1024;
1004 case INTEL_GMCH_GMS_STOLEN_160M
:
1005 stolen
= 160 * 1024 * 1024;
1007 case INTEL_GMCH_GMS_STOLEN_224M
:
1008 stolen
= 224 * 1024 * 1024;
1010 case INTEL_GMCH_GMS_STOLEN_352M
:
1011 stolen
= 352 * 1024 * 1024;
1014 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
1015 tmp
& INTEL_GMCH_GMS_MASK
);
1018 *preallocated_size
= stolen
- overhead
;
1024 #define PTE_ADDRESS_MASK 0xfffff000
1025 #define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */
1026 #define PTE_MAPPING_TYPE_UNCACHED (0 << 1)
1027 #define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */
1028 #define PTE_MAPPING_TYPE_CACHED (3 << 1)
1029 #define PTE_MAPPING_TYPE_MASK (3 << 1)
1030 #define PTE_VALID (1 << 0)
1033 * i915_gtt_to_phys - take a GTT address and turn it into a physical one
1035 * @gtt_addr: address to translate
1037 * Some chip functions require allocations from stolen space but need the
1038 * physical address of the memory in question. We use this routine
1039 * to get a physical address suitable for register programming from a given
1042 static unsigned long i915_gtt_to_phys(struct drm_device
*dev
,
1043 unsigned long gtt_addr
)
1046 unsigned long entry
, phys
;
1047 int gtt_bar
= IS_I9XX(dev
) ? 0 : 1;
1048 int gtt_offset
, gtt_size
;
1050 if (IS_I965G(dev
)) {
1051 if (IS_G4X(dev
) || IS_IGDNG(dev
)) {
1052 gtt_offset
= 2*1024*1024;
1053 gtt_size
= 2*1024*1024;
1055 gtt_offset
= 512*1024;
1056 gtt_size
= 512*1024;
1061 gtt_size
= pci_resource_len(dev
->pdev
, gtt_bar
);
1064 gtt
= ioremap_wc(pci_resource_start(dev
->pdev
, gtt_bar
) + gtt_offset
,
1067 DRM_ERROR("ioremap of GTT failed\n");
1071 entry
= *(volatile u32
*)(gtt
+ (gtt_addr
/ 1024));
1073 DRM_DEBUG("GTT addr: 0x%08lx, PTE: 0x%08lx\n", gtt_addr
, entry
);
1075 /* Mask out these reserved bits on this hardware. */
1076 if (!IS_I9XX(dev
) || IS_I915G(dev
) || IS_I915GM(dev
) ||
1077 IS_I945G(dev
) || IS_I945GM(dev
)) {
1078 entry
&= ~PTE_ADDRESS_MASK_HIGH
;
1081 /* If it's not a mapping type we know, then bail. */
1082 if ((entry
& PTE_MAPPING_TYPE_MASK
) != PTE_MAPPING_TYPE_UNCACHED
&&
1083 (entry
& PTE_MAPPING_TYPE_MASK
) != PTE_MAPPING_TYPE_CACHED
) {
1088 if (!(entry
& PTE_VALID
)) {
1089 DRM_ERROR("bad GTT entry in stolen space\n");
1096 phys
=(entry
& PTE_ADDRESS_MASK
) |
1097 ((uint64_t)(entry
& PTE_ADDRESS_MASK_HIGH
) << (32 - 4));
1099 DRM_DEBUG("GTT addr: 0x%08lx, phys addr: 0x%08lx\n", gtt_addr
, phys
);
1104 static void i915_warn_stolen(struct drm_device
*dev
)
1106 DRM_ERROR("not enough stolen space for compressed buffer, disabling\n");
1107 DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n");
1110 static void i915_setup_compression(struct drm_device
*dev
, int size
)
1112 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1113 struct drm_mm_node
*compressed_fb
, *compressed_llb
;
1114 unsigned long cfb_base
, ll_base
;
1116 /* Leave 1M for line length buffer & misc. */
1117 compressed_fb
= drm_mm_search_free(&dev_priv
->vram
, size
, 4096, 0);
1118 if (!compressed_fb
) {
1119 i915_warn_stolen(dev
);
1123 compressed_fb
= drm_mm_get_block(compressed_fb
, size
, 4096);
1124 if (!compressed_fb
) {
1125 i915_warn_stolen(dev
);
1129 cfb_base
= i915_gtt_to_phys(dev
, compressed_fb
->start
);
1131 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1132 drm_mm_put_block(compressed_fb
);
1135 if (!IS_GM45(dev
)) {
1136 compressed_llb
= drm_mm_search_free(&dev_priv
->vram
, 4096,
1138 if (!compressed_llb
) {
1139 i915_warn_stolen(dev
);
1143 compressed_llb
= drm_mm_get_block(compressed_llb
, 4096, 4096);
1144 if (!compressed_llb
) {
1145 i915_warn_stolen(dev
);
1149 ll_base
= i915_gtt_to_phys(dev
, compressed_llb
->start
);
1151 DRM_ERROR("failed to get stolen phys addr, disabling FBC\n");
1152 drm_mm_put_block(compressed_fb
);
1153 drm_mm_put_block(compressed_llb
);
1157 dev_priv
->cfb_size
= size
;
1160 g4x_disable_fbc(dev
);
1161 I915_WRITE(DPFC_CB_BASE
, compressed_fb
->start
);
1163 i8xx_disable_fbc(dev
);
1164 I915_WRITE(FBC_CFB_BASE
, cfb_base
);
1165 I915_WRITE(FBC_LL_BASE
, ll_base
);
1168 DRM_DEBUG("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", cfb_base
,
1169 ll_base
, size
>> 20);
1172 /* true = enable decode, false = disable decoder */
1173 static unsigned int i915_vga_set_decode(void *cookie
, bool state
)
1175 struct drm_device
*dev
= cookie
;
1177 intel_modeset_vga_set_state(dev
, state
);
1179 return VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
1180 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
1182 return VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
1185 static int i915_load_modeset_init(struct drm_device
*dev
,
1186 unsigned long prealloc_start
,
1187 unsigned long prealloc_size
,
1188 unsigned long agp_size
)
1190 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1191 int fb_bar
= IS_I9XX(dev
) ? 2 : 0;
1194 dev
->mode_config
.fb_base
= drm_get_resource_start(dev
, fb_bar
) &
1197 if (IS_MOBILE(dev
) || IS_I9XX(dev
))
1198 dev_priv
->cursor_needs_physical
= true;
1200 dev_priv
->cursor_needs_physical
= false;
1202 if (IS_I965G(dev
) || IS_G33(dev
))
1203 dev_priv
->cursor_needs_physical
= false;
1205 /* Basic memrange allocator for stolen space (aka vram) */
1206 drm_mm_init(&dev_priv
->vram
, 0, prealloc_size
);
1207 DRM_INFO("set up %ldM of stolen space\n", prealloc_size
/ (1024*1024));
1209 /* We're off and running w/KMS */
1210 dev_priv
->mm
.suspended
= 0;
1212 /* Let GEM Manage from end of prealloc space to end of aperture.
1214 * However, leave one page at the end still bound to the scratch page.
1215 * There are a number of places where the hardware apparently
1216 * prefetches past the end of the object, and we've seen multiple
1217 * hangs with the GPU head pointer stuck in a batchbuffer bound
1218 * at the last page of the aperture. One page should be enough to
1219 * keep any prefetching inside of the aperture.
1221 i915_gem_do_init(dev
, prealloc_size
, agp_size
- 4096);
1223 mutex_lock(&dev
->struct_mutex
);
1224 ret
= i915_gem_init_ringbuffer(dev
);
1225 mutex_unlock(&dev
->struct_mutex
);
1229 /* Try to set up FBC with a reasonable compressed buffer size */
1230 if (I915_HAS_FBC(dev
) && i915_powersave
) {
1233 /* Try to get an 8M buffer... */
1234 if (prealloc_size
> (9*1024*1024))
1235 cfb_size
= 8*1024*1024;
1236 else /* fall back to 7/8 of the stolen space */
1237 cfb_size
= prealloc_size
* 7 / 8;
1238 i915_setup_compression(dev
, cfb_size
);
1241 /* Allow hardware batchbuffers unless told otherwise.
1243 dev_priv
->allow_batchbuffer
= 1;
1245 ret
= intel_init_bios(dev
);
1247 DRM_INFO("failed to find VBIOS tables\n");
1249 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1250 ret
= vga_client_register(dev
->pdev
, dev
, NULL
, i915_vga_set_decode
);
1252 goto destroy_ringbuffer
;
1254 ret
= drm_irq_install(dev
);
1256 goto destroy_ringbuffer
;
1258 /* Always safe in the mode setting case. */
1259 /* FIXME: do pre/post-mode set stuff in core KMS code */
1260 dev
->vblank_disable_allowed
= 1;
1263 * Initialize the hardware status page IRQ location.
1266 I915_WRITE(INSTPM
, (1 << 5) | (1 << 21));
1268 intel_modeset_init(dev
);
1270 drm_helper_initial_config(dev
);
1275 i915_gem_cleanup_ringbuffer(dev
);
1280 int i915_master_create(struct drm_device
*dev
, struct drm_master
*master
)
1282 struct drm_i915_master_private
*master_priv
;
1284 master_priv
= kzalloc(sizeof(*master_priv
), GFP_KERNEL
);
1288 master
->driver_priv
= master_priv
;
1292 void i915_master_destroy(struct drm_device
*dev
, struct drm_master
*master
)
1294 struct drm_i915_master_private
*master_priv
= master
->driver_priv
;
1301 master
->driver_priv
= NULL
;
1304 static void i915_get_mem_freq(struct drm_device
*dev
)
1306 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
1312 tmp
= I915_READ(CLKCFG
);
1314 switch (tmp
& CLKCFG_FSB_MASK
) {
1315 case CLKCFG_FSB_533
:
1316 dev_priv
->fsb_freq
= 533; /* 133*4 */
1318 case CLKCFG_FSB_800
:
1319 dev_priv
->fsb_freq
= 800; /* 200*4 */
1321 case CLKCFG_FSB_667
:
1322 dev_priv
->fsb_freq
= 667; /* 167*4 */
1324 case CLKCFG_FSB_400
:
1325 dev_priv
->fsb_freq
= 400; /* 100*4 */
1329 switch (tmp
& CLKCFG_MEM_MASK
) {
1330 case CLKCFG_MEM_533
:
1331 dev_priv
->mem_freq
= 533;
1333 case CLKCFG_MEM_667
:
1334 dev_priv
->mem_freq
= 667;
1336 case CLKCFG_MEM_800
:
1337 dev_priv
->mem_freq
= 800;
1343 * i915_driver_load - setup chip and create an initial config
1345 * @flags: startup flags
1347 * The driver load routine has to do several things:
1348 * - drive output discovery via intel_modeset_init()
1349 * - initialize the memory manager
1350 * - allocate initial config memory
1351 * - setup the DRM framebuffer with the allocated memory
1353 int i915_driver_load(struct drm_device
*dev
, unsigned long flags
)
1355 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1356 resource_size_t base
, size
;
1357 int ret
= 0, mmio_bar
= IS_I9XX(dev
) ? 0 : 1;
1358 uint32_t agp_size
, prealloc_size
, prealloc_start
;
1360 /* i915 has 4 more counters */
1362 dev
->types
[6] = _DRM_STAT_IRQ
;
1363 dev
->types
[7] = _DRM_STAT_PRIMARY
;
1364 dev
->types
[8] = _DRM_STAT_SECONDARY
;
1365 dev
->types
[9] = _DRM_STAT_DMA
;
1367 dev_priv
= kzalloc(sizeof(drm_i915_private_t
), GFP_KERNEL
);
1368 if (dev_priv
== NULL
)
1371 dev
->dev_private
= (void *)dev_priv
;
1372 dev_priv
->dev
= dev
;
1374 /* Add register map (needed for suspend/resume) */
1375 base
= drm_get_resource_start(dev
, mmio_bar
);
1376 size
= drm_get_resource_len(dev
, mmio_bar
);
1378 if (i915_get_bridge_dev(dev
)) {
1383 dev_priv
->regs
= ioremap(base
, size
);
1384 if (!dev_priv
->regs
) {
1385 DRM_ERROR("failed to map registers\n");
1390 dev_priv
->mm
.gtt_mapping
=
1391 io_mapping_create_wc(dev
->agp
->base
,
1392 dev
->agp
->agp_info
.aper_size
* 1024*1024);
1393 if (dev_priv
->mm
.gtt_mapping
== NULL
) {
1398 /* Set up a WC MTRR for non-PAT systems. This is more common than
1399 * one would think, because the kernel disables PAT on first
1400 * generation Core chips because WC PAT gets overridden by a UC
1401 * MTRR if present. Even if a UC MTRR isn't present.
1403 dev_priv
->mm
.gtt_mtrr
= mtrr_add(dev
->agp
->base
,
1404 dev
->agp
->agp_info
.aper_size
*
1406 MTRR_TYPE_WRCOMB
, 1);
1407 if (dev_priv
->mm
.gtt_mtrr
< 0) {
1408 DRM_INFO("MTRR allocation failed. Graphics "
1409 "performance may suffer.\n");
1412 ret
= i915_probe_agp(dev
, &agp_size
, &prealloc_size
, &prealloc_start
);
1416 dev_priv
->wq
= create_workqueue("i915");
1417 if (dev_priv
->wq
== NULL
) {
1418 DRM_ERROR("Failed to create our workqueue.\n");
1423 /* enable GEM by default */
1424 dev_priv
->has_gem
= 1;
1426 if (prealloc_size
> agp_size
* 3 / 4) {
1427 DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
1429 prealloc_size
/ 1024, agp_size
/ 1024);
1430 DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
1431 "updating the BIOS to fix).\n");
1432 dev_priv
->has_gem
= 0;
1435 dev
->driver
->get_vblank_counter
= i915_get_vblank_counter
;
1436 dev
->max_vblank_count
= 0xffffff; /* only 24 bits of frame count */
1437 if (IS_G4X(dev
) || IS_IGDNG(dev
)) {
1438 dev
->max_vblank_count
= 0xffffffff; /* full 32 bit counter */
1439 dev
->driver
->get_vblank_counter
= gm45_get_vblank_counter
;
1445 if (!I915_NEED_GFX_HWS(dev
)) {
1446 ret
= i915_init_phys_hws(dev
);
1448 goto out_workqueue_free
;
1451 i915_get_mem_freq(dev
);
1453 /* On the 945G/GM, the chipset reports the MSI capability on the
1454 * integrated graphics even though the support isn't actually there
1455 * according to the published specs. It doesn't appear to function
1456 * correctly in testing on 945G.
1457 * This may be a side effect of MSI having been made available for PEG
1458 * and the registers being closely associated.
1460 * According to chipset errata, on the 965GM, MSI interrupts may
1461 * be lost or delayed, but we use them anyways to avoid
1462 * stuck interrupts on some machines.
1464 if (!IS_I945G(dev
) && !IS_I945GM(dev
))
1465 pci_enable_msi(dev
->pdev
);
1467 spin_lock_init(&dev_priv
->user_irq_lock
);
1468 spin_lock_init(&dev_priv
->error_lock
);
1469 dev_priv
->user_irq_refcount
= 0;
1470 dev_priv
->trace_irq_seqno
= 0;
1472 ret
= drm_vblank_init(dev
, I915_NUM_PIPE
);
1475 (void) i915_driver_unload(dev
);
1479 /* Start out suspended */
1480 dev_priv
->mm
.suspended
= 1;
1482 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1483 ret
= i915_load_modeset_init(dev
, prealloc_start
,
1484 prealloc_size
, agp_size
);
1486 DRM_ERROR("failed to init modeset\n");
1487 goto out_workqueue_free
;
1491 /* Must be done after probing outputs */
1492 /* FIXME: verify on IGDNG */
1494 intel_opregion_init(dev
, 0);
1496 setup_timer(&dev_priv
->hangcheck_timer
, i915_hangcheck_elapsed
,
1497 (unsigned long) dev
);
1501 destroy_workqueue(dev_priv
->wq
);
1503 io_mapping_free(dev_priv
->mm
.gtt_mapping
);
1505 iounmap(dev_priv
->regs
);
1507 pci_dev_put(dev_priv
->bridge_dev
);
1513 int i915_driver_unload(struct drm_device
*dev
)
1515 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1517 destroy_workqueue(dev_priv
->wq
);
1518 del_timer_sync(&dev_priv
->hangcheck_timer
);
1520 io_mapping_free(dev_priv
->mm
.gtt_mapping
);
1521 if (dev_priv
->mm
.gtt_mtrr
>= 0) {
1522 mtrr_del(dev_priv
->mm
.gtt_mtrr
, dev
->agp
->base
,
1523 dev
->agp
->agp_info
.aper_size
* 1024 * 1024);
1524 dev_priv
->mm
.gtt_mtrr
= -1;
1527 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1528 drm_irq_uninstall(dev
);
1529 vga_client_register(dev
->pdev
, NULL
, NULL
, NULL
);
1532 if (dev
->pdev
->msi_enabled
)
1533 pci_disable_msi(dev
->pdev
);
1535 if (dev_priv
->regs
!= NULL
)
1536 iounmap(dev_priv
->regs
);
1539 intel_opregion_free(dev
, 0);
1541 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1542 intel_modeset_cleanup(dev
);
1544 i915_gem_free_all_phys_object(dev
);
1546 mutex_lock(&dev
->struct_mutex
);
1547 i915_gem_cleanup_ringbuffer(dev
);
1548 mutex_unlock(&dev
->struct_mutex
);
1549 drm_mm_takedown(&dev_priv
->vram
);
1550 i915_gem_lastclose(dev
);
1553 pci_dev_put(dev_priv
->bridge_dev
);
1554 kfree(dev
->dev_private
);
1559 int i915_driver_open(struct drm_device
*dev
, struct drm_file
*file_priv
)
1561 struct drm_i915_file_private
*i915_file_priv
;
1563 DRM_DEBUG_DRIVER("\n");
1564 i915_file_priv
= (struct drm_i915_file_private
*)
1565 kmalloc(sizeof(*i915_file_priv
), GFP_KERNEL
);
1567 if (!i915_file_priv
)
1570 file_priv
->driver_priv
= i915_file_priv
;
1572 INIT_LIST_HEAD(&i915_file_priv
->mm
.request_list
);
1578 * i915_driver_lastclose - clean up after all DRM clients have exited
1581 * Take care of cleaning up after all DRM clients have exited. In the
1582 * mode setting case, we want to restore the kernel's initial mode (just
1583 * in case the last client left us in a bad state).
1585 * Additionally, in the non-mode setting case, we'll tear down the AGP
1586 * and DMA structures, since the kernel won't be using them, and clea
1589 void i915_driver_lastclose(struct drm_device
* dev
)
1591 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
1593 if (!dev_priv
|| drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1594 drm_fb_helper_restore();
1598 i915_gem_lastclose(dev
);
1600 if (dev_priv
->agp_heap
)
1601 i915_mem_takedown(&(dev_priv
->agp_heap
));
1603 i915_dma_cleanup(dev
);
1606 void i915_driver_preclose(struct drm_device
* dev
, struct drm_file
*file_priv
)
1608 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
1609 i915_gem_release(dev
, file_priv
);
1610 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1611 i915_mem_release(dev
, file_priv
, dev_priv
->agp_heap
);
1614 void i915_driver_postclose(struct drm_device
*dev
, struct drm_file
*file_priv
)
1616 struct drm_i915_file_private
*i915_file_priv
= file_priv
->driver_priv
;
1618 kfree(i915_file_priv
);
1621 struct drm_ioctl_desc i915_ioctls
[] = {
1622 DRM_IOCTL_DEF(DRM_I915_INIT
, i915_dma_init
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1623 DRM_IOCTL_DEF(DRM_I915_FLUSH
, i915_flush_ioctl
, DRM_AUTH
),
1624 DRM_IOCTL_DEF(DRM_I915_FLIP
, i915_flip_bufs
, DRM_AUTH
),
1625 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER
, i915_batchbuffer
, DRM_AUTH
),
1626 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT
, i915_irq_emit
, DRM_AUTH
),
1627 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT
, i915_irq_wait
, DRM_AUTH
),
1628 DRM_IOCTL_DEF(DRM_I915_GETPARAM
, i915_getparam
, DRM_AUTH
),
1629 DRM_IOCTL_DEF(DRM_I915_SETPARAM
, i915_setparam
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1630 DRM_IOCTL_DEF(DRM_I915_ALLOC
, i915_mem_alloc
, DRM_AUTH
),
1631 DRM_IOCTL_DEF(DRM_I915_FREE
, i915_mem_free
, DRM_AUTH
),
1632 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP
, i915_mem_init_heap
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1633 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER
, i915_cmdbuffer
, DRM_AUTH
),
1634 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP
, i915_mem_destroy_heap
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1635 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE
, i915_vblank_pipe_set
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1636 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE
, i915_vblank_pipe_get
, DRM_AUTH
),
1637 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP
, i915_vblank_swap
, DRM_AUTH
),
1638 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR
, i915_set_status_page
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1639 DRM_IOCTL_DEF(DRM_I915_GEM_INIT
, i915_gem_init_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1640 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER
, i915_gem_execbuffer
, DRM_AUTH
),
1641 DRM_IOCTL_DEF(DRM_I915_GEM_PIN
, i915_gem_pin_ioctl
, DRM_AUTH
|DRM_ROOT_ONLY
),
1642 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN
, i915_gem_unpin_ioctl
, DRM_AUTH
|DRM_ROOT_ONLY
),
1643 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY
, i915_gem_busy_ioctl
, DRM_AUTH
),
1644 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE
, i915_gem_throttle_ioctl
, DRM_AUTH
),
1645 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT
, i915_gem_entervt_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1646 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT
, i915_gem_leavevt_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1647 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE
, i915_gem_create_ioctl
, 0),
1648 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD
, i915_gem_pread_ioctl
, 0),
1649 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE
, i915_gem_pwrite_ioctl
, 0),
1650 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP
, i915_gem_mmap_ioctl
, 0),
1651 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT
, i915_gem_mmap_gtt_ioctl
, 0),
1652 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN
, i915_gem_set_domain_ioctl
, 0),
1653 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH
, i915_gem_sw_finish_ioctl
, 0),
1654 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING
, i915_gem_set_tiling
, 0),
1655 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING
, i915_gem_get_tiling
, 0),
1656 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE
, i915_gem_get_aperture_ioctl
, 0),
1657 DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID
, intel_get_pipe_from_crtc_id
, 0),
1658 DRM_IOCTL_DEF(DRM_I915_GEM_MADVISE
, i915_gem_madvise_ioctl
, 0),
1661 int i915_max_ioctl
= DRM_ARRAY_SIZE(i915_ioctls
);
1664 * Determine if the device really is AGP or not.
1666 * All Intel graphics chipsets are treated as AGP, even if they are really
1669 * \param dev The device to be tested.
1672 * A value of 1 is always retured to indictate every i9x5 is AGP.
1674 int i915_driver_device_is_agp(struct drm_device
* dev
)