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 "intel_drv.h"
36 /* Really want an OS-independent resettable timer. Would like to have
37 * this loop run for (eg) 3 sec, but have the timer reset every time
38 * the head pointer changes, so that EBUSY only happens if the ring
39 * actually stalls for (eg) 3 seconds.
41 int i915_wait_ring(struct drm_device
* dev
, int n
, const char *caller
)
43 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
44 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
45 drm_i915_ring_buffer_t
*ring
= &(dev_priv
->ring
);
46 u32 acthd_reg
= IS_I965G(dev
) ? ACTHD_I965
: ACTHD
;
47 u32 last_acthd
= I915_READ(acthd_reg
);
49 u32 last_head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
52 for (i
= 0; i
< 100000; i
++) {
53 ring
->head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
54 acthd
= I915_READ(acthd_reg
);
55 ring
->space
= ring
->head
- (ring
->tail
+ 8);
57 ring
->space
+= ring
->Size
;
61 if (master_priv
->sarea_priv
)
62 master_priv
->sarea_priv
->perf_boxes
|= I915_BOX_WAIT
;
64 if (ring
->head
!= last_head
)
66 if (acthd
!= last_acthd
)
69 last_head
= ring
->head
;
71 msleep_interruptible(10);
79 * Sets up the hardware status page for devices that need a physical address
82 static int i915_init_phys_hws(struct drm_device
*dev
)
84 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
85 /* Program Hardware Status Page */
86 dev_priv
->status_page_dmah
=
87 drm_pci_alloc(dev
, PAGE_SIZE
, PAGE_SIZE
, 0xffffffff);
89 if (!dev_priv
->status_page_dmah
) {
90 DRM_ERROR("Can not allocate hardware status page\n");
93 dev_priv
->hw_status_page
= dev_priv
->status_page_dmah
->vaddr
;
94 dev_priv
->dma_status_page
= dev_priv
->status_page_dmah
->busaddr
;
96 memset(dev_priv
->hw_status_page
, 0, PAGE_SIZE
);
98 I915_WRITE(HWS_PGA
, dev_priv
->dma_status_page
);
99 DRM_DEBUG("Enabled hardware status page\n");
104 * Frees the hardware status page, whether it's a physical address or a virtual
105 * address set up by the X Server.
107 static void i915_free_hws(struct drm_device
*dev
)
109 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
110 if (dev_priv
->status_page_dmah
) {
111 drm_pci_free(dev
, dev_priv
->status_page_dmah
);
112 dev_priv
->status_page_dmah
= NULL
;
115 if (dev_priv
->status_gfx_addr
) {
116 dev_priv
->status_gfx_addr
= 0;
117 drm_core_ioremapfree(&dev_priv
->hws_map
, dev
);
120 /* Need to rewrite hardware status page */
121 I915_WRITE(HWS_PGA
, 0x1ffff000);
124 void i915_kernel_lost_context(struct drm_device
* dev
)
126 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
127 struct drm_i915_master_private
*master_priv
;
128 drm_i915_ring_buffer_t
*ring
= &(dev_priv
->ring
);
131 * We should never lose context on the ring with modesetting
132 * as we don't expose it to userspace
134 if (drm_core_check_feature(dev
, DRIVER_MODESET
))
137 ring
->head
= I915_READ(PRB0_HEAD
) & HEAD_ADDR
;
138 ring
->tail
= I915_READ(PRB0_TAIL
) & TAIL_ADDR
;
139 ring
->space
= ring
->head
- (ring
->tail
+ 8);
141 ring
->space
+= ring
->Size
;
143 if (!dev
->primary
->master
)
146 master_priv
= dev
->primary
->master
->driver_priv
;
147 if (ring
->head
== ring
->tail
&& master_priv
->sarea_priv
)
148 master_priv
->sarea_priv
->perf_boxes
|= I915_BOX_RING_EMPTY
;
151 static int i915_dma_cleanup(struct drm_device
* dev
)
153 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
154 /* Make sure interrupts are disabled here because the uninstall ioctl
155 * may not have been called from userspace and after dev_private
156 * is freed, it's too late.
158 if (dev
->irq_enabled
)
159 drm_irq_uninstall(dev
);
161 if (dev_priv
->ring
.virtual_start
) {
162 drm_core_ioremapfree(&dev_priv
->ring
.map
, dev
);
163 dev_priv
->ring
.virtual_start
= NULL
;
164 dev_priv
->ring
.map
.handle
= NULL
;
165 dev_priv
->ring
.map
.size
= 0;
168 /* Clear the HWS virtual address at teardown */
169 if (I915_NEED_GFX_HWS(dev
))
175 static int i915_initialize(struct drm_device
* dev
, drm_i915_init_t
* init
)
177 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
178 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
180 if (init
->ring_size
!= 0) {
181 if (dev_priv
->ring
.ring_obj
!= NULL
) {
182 i915_dma_cleanup(dev
);
183 DRM_ERROR("Client tried to initialize ringbuffer in "
188 dev_priv
->ring
.Size
= init
->ring_size
;
189 dev_priv
->ring
.tail_mask
= dev_priv
->ring
.Size
- 1;
191 dev_priv
->ring
.map
.offset
= init
->ring_start
;
192 dev_priv
->ring
.map
.size
= init
->ring_size
;
193 dev_priv
->ring
.map
.type
= 0;
194 dev_priv
->ring
.map
.flags
= 0;
195 dev_priv
->ring
.map
.mtrr
= 0;
197 drm_core_ioremap(&dev_priv
->ring
.map
, dev
);
199 if (dev_priv
->ring
.map
.handle
== NULL
) {
200 i915_dma_cleanup(dev
);
201 DRM_ERROR("can not ioremap virtual address for"
207 dev_priv
->ring
.virtual_start
= dev_priv
->ring
.map
.handle
;
209 dev_priv
->cpp
= init
->cpp
;
210 dev_priv
->back_offset
= init
->back_offset
;
211 dev_priv
->front_offset
= init
->front_offset
;
212 dev_priv
->current_page
= 0;
213 if (master_priv
->sarea_priv
)
214 master_priv
->sarea_priv
->pf_current_page
= 0;
216 /* Allow hardware batchbuffers unless told otherwise.
218 dev_priv
->allow_batchbuffer
= 1;
223 static int i915_dma_resume(struct drm_device
* dev
)
225 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
227 DRM_DEBUG("%s\n", __func__
);
229 if (dev_priv
->ring
.map
.handle
== NULL
) {
230 DRM_ERROR("can not ioremap virtual address for"
235 /* Program Hardware Status Page */
236 if (!dev_priv
->hw_status_page
) {
237 DRM_ERROR("Can not find hardware status page\n");
240 DRM_DEBUG("hw status page @ %p\n", dev_priv
->hw_status_page
);
242 if (dev_priv
->status_gfx_addr
!= 0)
243 I915_WRITE(HWS_PGA
, dev_priv
->status_gfx_addr
);
245 I915_WRITE(HWS_PGA
, dev_priv
->dma_status_page
);
246 DRM_DEBUG("Enabled hardware status page\n");
251 static int i915_dma_init(struct drm_device
*dev
, void *data
,
252 struct drm_file
*file_priv
)
254 drm_i915_init_t
*init
= data
;
257 switch (init
->func
) {
259 retcode
= i915_initialize(dev
, init
);
261 case I915_CLEANUP_DMA
:
262 retcode
= i915_dma_cleanup(dev
);
264 case I915_RESUME_DMA
:
265 retcode
= i915_dma_resume(dev
);
275 /* Implement basically the same security restrictions as hardware does
276 * for MI_BATCH_NON_SECURE. These can be made stricter at any time.
278 * Most of the calculations below involve calculating the size of a
279 * particular instruction. It's important to get the size right as
280 * that tells us where the next instruction to check is. Any illegal
281 * instruction detected will be given a size of zero, which is a
282 * signal to abort the rest of the buffer.
284 static int do_validate_cmd(int cmd
)
286 switch (((cmd
>> 29) & 0x7)) {
288 switch ((cmd
>> 23) & 0x3f) {
290 return 1; /* MI_NOOP */
292 return 1; /* MI_FLUSH */
294 return 0; /* disallow everything else */
298 return 0; /* reserved */
300 return (cmd
& 0xff) + 2; /* 2d commands */
302 if (((cmd
>> 24) & 0x1f) <= 0x18)
305 switch ((cmd
>> 24) & 0x1f) {
309 switch ((cmd
>> 16) & 0xff) {
311 return (cmd
& 0x1f) + 2;
313 return (cmd
& 0xf) + 2;
315 return (cmd
& 0xffff) + 2;
319 return (cmd
& 0xffff) + 1;
323 if ((cmd
& (1 << 23)) == 0) /* inline vertices */
324 return (cmd
& 0x1ffff) + 2;
325 else if (cmd
& (1 << 17)) /* indirect random */
326 if ((cmd
& 0xffff) == 0)
327 return 0; /* unknown length, too hard */
329 return (((cmd
& 0xffff) + 1) / 2) + 1;
331 return 2; /* indirect sequential */
342 static int validate_cmd(int cmd
)
344 int ret
= do_validate_cmd(cmd
);
346 /* printk("validate_cmd( %x ): %d\n", cmd, ret); */
351 static int i915_emit_cmds(struct drm_device
* dev
, int __user
* buffer
, int dwords
)
353 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
357 if ((dwords
+1) * sizeof(int) >= dev_priv
->ring
.Size
- 8)
360 BEGIN_LP_RING((dwords
+1)&~1);
362 for (i
= 0; i
< dwords
;) {
365 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd
, &buffer
[i
], sizeof(cmd
)))
368 if ((sz
= validate_cmd(cmd
)) == 0 || i
+ sz
> dwords
)
374 if (DRM_COPY_FROM_USER_UNCHECKED(&cmd
, &buffer
[i
],
391 i915_emit_box(struct drm_device
*dev
,
392 struct drm_clip_rect __user
*boxes
,
393 int i
, int DR1
, int DR4
)
395 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
396 struct drm_clip_rect box
;
399 if (DRM_COPY_FROM_USER_UNCHECKED(&box
, &boxes
[i
], sizeof(box
))) {
403 if (box
.y2
<= box
.y1
|| box
.x2
<= box
.x1
|| box
.y2
<= 0 || box
.x2
<= 0) {
404 DRM_ERROR("Bad box %d,%d..%d,%d\n",
405 box
.x1
, box
.y1
, box
.x2
, box
.y2
);
411 OUT_RING(GFX_OP_DRAWRECT_INFO_I965
);
412 OUT_RING((box
.x1
& 0xffff) | (box
.y1
<< 16));
413 OUT_RING(((box
.x2
- 1) & 0xffff) | ((box
.y2
- 1) << 16));
418 OUT_RING(GFX_OP_DRAWRECT_INFO
);
420 OUT_RING((box
.x1
& 0xffff) | (box
.y1
<< 16));
421 OUT_RING(((box
.x2
- 1) & 0xffff) | ((box
.y2
- 1) << 16));
430 /* XXX: Emitting the counter should really be moved to part of the IRQ
431 * emit. For now, do it in both places:
434 static void i915_emit_breadcrumb(struct drm_device
*dev
)
436 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
437 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
441 if (dev_priv
->counter
> 0x7FFFFFFFUL
)
442 dev_priv
->counter
= 0;
443 if (master_priv
->sarea_priv
)
444 master_priv
->sarea_priv
->last_enqueue
= dev_priv
->counter
;
447 OUT_RING(MI_STORE_DWORD_INDEX
);
448 OUT_RING(I915_BREADCRUMB_INDEX
<< MI_STORE_DWORD_INDEX_SHIFT
);
449 OUT_RING(dev_priv
->counter
);
454 static int i915_dispatch_cmdbuffer(struct drm_device
* dev
,
455 drm_i915_cmdbuffer_t
* cmd
)
457 int nbox
= cmd
->num_cliprects
;
458 int i
= 0, count
, ret
;
461 DRM_ERROR("alignment");
465 i915_kernel_lost_context(dev
);
467 count
= nbox
? nbox
: 1;
469 for (i
= 0; i
< count
; i
++) {
471 ret
= i915_emit_box(dev
, cmd
->cliprects
, i
,
477 ret
= i915_emit_cmds(dev
, (int __user
*)cmd
->buf
, cmd
->sz
/ 4);
482 i915_emit_breadcrumb(dev
);
486 static int i915_dispatch_batchbuffer(struct drm_device
* dev
,
487 drm_i915_batchbuffer_t
* batch
)
489 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
490 struct drm_clip_rect __user
*boxes
= batch
->cliprects
;
491 int nbox
= batch
->num_cliprects
;
495 if ((batch
->start
| batch
->used
) & 0x7) {
496 DRM_ERROR("alignment");
500 i915_kernel_lost_context(dev
);
502 count
= nbox
? nbox
: 1;
504 for (i
= 0; i
< count
; i
++) {
506 int ret
= i915_emit_box(dev
, boxes
, i
,
507 batch
->DR1
, batch
->DR4
);
512 if (!IS_I830(dev
) && !IS_845G(dev
)) {
515 OUT_RING(MI_BATCH_BUFFER_START
| (2 << 6) | MI_BATCH_NON_SECURE_I965
);
516 OUT_RING(batch
->start
);
518 OUT_RING(MI_BATCH_BUFFER_START
| (2 << 6));
519 OUT_RING(batch
->start
| MI_BATCH_NON_SECURE
);
524 OUT_RING(MI_BATCH_BUFFER
);
525 OUT_RING(batch
->start
| MI_BATCH_NON_SECURE
);
526 OUT_RING(batch
->start
+ batch
->used
- 4);
532 i915_emit_breadcrumb(dev
);
537 static int i915_dispatch_flip(struct drm_device
* dev
)
539 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
540 struct drm_i915_master_private
*master_priv
=
541 dev
->primary
->master
->driver_priv
;
544 if (!master_priv
->sarea_priv
)
547 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
549 dev_priv
->current_page
,
550 master_priv
->sarea_priv
->pf_current_page
);
552 i915_kernel_lost_context(dev
);
555 OUT_RING(MI_FLUSH
| MI_READ_FLUSH
);
560 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO
| ASYNC_FLIP
);
562 if (dev_priv
->current_page
== 0) {
563 OUT_RING(dev_priv
->back_offset
);
564 dev_priv
->current_page
= 1;
566 OUT_RING(dev_priv
->front_offset
);
567 dev_priv
->current_page
= 0;
573 OUT_RING(MI_WAIT_FOR_EVENT
| MI_WAIT_FOR_PLANE_A_FLIP
);
577 master_priv
->sarea_priv
->last_enqueue
= dev_priv
->counter
++;
580 OUT_RING(MI_STORE_DWORD_INDEX
);
581 OUT_RING(I915_BREADCRUMB_INDEX
<< MI_STORE_DWORD_INDEX_SHIFT
);
582 OUT_RING(dev_priv
->counter
);
586 master_priv
->sarea_priv
->pf_current_page
= dev_priv
->current_page
;
590 static int i915_quiescent(struct drm_device
* dev
)
592 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
594 i915_kernel_lost_context(dev
);
595 return i915_wait_ring(dev
, dev_priv
->ring
.Size
- 8, __func__
);
598 static int i915_flush_ioctl(struct drm_device
*dev
, void *data
,
599 struct drm_file
*file_priv
)
603 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
605 mutex_lock(&dev
->struct_mutex
);
606 ret
= i915_quiescent(dev
);
607 mutex_unlock(&dev
->struct_mutex
);
612 static int i915_batchbuffer(struct drm_device
*dev
, void *data
,
613 struct drm_file
*file_priv
)
615 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
616 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
617 drm_i915_sarea_t
*sarea_priv
= (drm_i915_sarea_t
*)
618 master_priv
->sarea_priv
;
619 drm_i915_batchbuffer_t
*batch
= data
;
622 if (!dev_priv
->allow_batchbuffer
) {
623 DRM_ERROR("Batchbuffer ioctl disabled\n");
627 DRM_DEBUG("i915 batchbuffer, start %x used %d cliprects %d\n",
628 batch
->start
, batch
->used
, batch
->num_cliprects
);
630 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
632 if (batch
->num_cliprects
&& DRM_VERIFYAREA_READ(batch
->cliprects
,
633 batch
->num_cliprects
*
634 sizeof(struct drm_clip_rect
)))
637 mutex_lock(&dev
->struct_mutex
);
638 ret
= i915_dispatch_batchbuffer(dev
, batch
);
639 mutex_unlock(&dev
->struct_mutex
);
642 sarea_priv
->last_dispatch
= READ_BREADCRUMB(dev_priv
);
646 static int i915_cmdbuffer(struct drm_device
*dev
, void *data
,
647 struct drm_file
*file_priv
)
649 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
650 struct drm_i915_master_private
*master_priv
= dev
->primary
->master
->driver_priv
;
651 drm_i915_sarea_t
*sarea_priv
= (drm_i915_sarea_t
*)
652 master_priv
->sarea_priv
;
653 drm_i915_cmdbuffer_t
*cmdbuf
= data
;
656 DRM_DEBUG("i915 cmdbuffer, buf %p sz %d cliprects %d\n",
657 cmdbuf
->buf
, cmdbuf
->sz
, cmdbuf
->num_cliprects
);
659 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
661 if (cmdbuf
->num_cliprects
&&
662 DRM_VERIFYAREA_READ(cmdbuf
->cliprects
,
663 cmdbuf
->num_cliprects
*
664 sizeof(struct drm_clip_rect
))) {
665 DRM_ERROR("Fault accessing cliprects\n");
669 mutex_lock(&dev
->struct_mutex
);
670 ret
= i915_dispatch_cmdbuffer(dev
, cmdbuf
);
671 mutex_unlock(&dev
->struct_mutex
);
673 DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
678 sarea_priv
->last_dispatch
= READ_BREADCRUMB(dev_priv
);
682 static int i915_flip_bufs(struct drm_device
*dev
, void *data
,
683 struct drm_file
*file_priv
)
687 DRM_DEBUG("%s\n", __func__
);
689 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
691 mutex_lock(&dev
->struct_mutex
);
692 ret
= i915_dispatch_flip(dev
);
693 mutex_unlock(&dev
->struct_mutex
);
698 static int i915_getparam(struct drm_device
*dev
, void *data
,
699 struct drm_file
*file_priv
)
701 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
702 drm_i915_getparam_t
*param
= data
;
706 DRM_ERROR("called with no initialization\n");
710 switch (param
->param
) {
711 case I915_PARAM_IRQ_ACTIVE
:
712 value
= dev
->pdev
->irq
? 1 : 0;
714 case I915_PARAM_ALLOW_BATCHBUFFER
:
715 value
= dev_priv
->allow_batchbuffer
? 1 : 0;
717 case I915_PARAM_LAST_DISPATCH
:
718 value
= READ_BREADCRUMB(dev_priv
);
720 case I915_PARAM_CHIPSET_ID
:
721 value
= dev
->pci_device
;
723 case I915_PARAM_HAS_GEM
:
724 value
= dev_priv
->has_gem
;
727 DRM_ERROR("Unknown parameter %d\n", param
->param
);
731 if (DRM_COPY_TO_USER(param
->value
, &value
, sizeof(int))) {
732 DRM_ERROR("DRM_COPY_TO_USER failed\n");
739 static int i915_setparam(struct drm_device
*dev
, void *data
,
740 struct drm_file
*file_priv
)
742 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
743 drm_i915_setparam_t
*param
= data
;
746 DRM_ERROR("called with no initialization\n");
750 switch (param
->param
) {
751 case I915_SETPARAM_USE_MI_BATCHBUFFER_START
:
753 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY
:
754 dev_priv
->tex_lru_log_granularity
= param
->value
;
756 case I915_SETPARAM_ALLOW_BATCHBUFFER
:
757 dev_priv
->allow_batchbuffer
= param
->value
;
760 DRM_ERROR("unknown parameter %d\n", param
->param
);
767 static int i915_set_status_page(struct drm_device
*dev
, void *data
,
768 struct drm_file
*file_priv
)
770 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
771 drm_i915_hws_addr_t
*hws
= data
;
773 if (!I915_NEED_GFX_HWS(dev
))
777 DRM_ERROR("called with no initialization\n");
781 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
782 WARN(1, "tried to set status page when mode setting active\n");
786 printk(KERN_DEBUG
"set status page addr 0x%08x\n", (u32
)hws
->addr
);
788 dev_priv
->status_gfx_addr
= hws
->addr
& (0x1ffff<<12);
790 dev_priv
->hws_map
.offset
= dev
->agp
->base
+ hws
->addr
;
791 dev_priv
->hws_map
.size
= 4*1024;
792 dev_priv
->hws_map
.type
= 0;
793 dev_priv
->hws_map
.flags
= 0;
794 dev_priv
->hws_map
.mtrr
= 0;
796 drm_core_ioremap(&dev_priv
->hws_map
, dev
);
797 if (dev_priv
->hws_map
.handle
== NULL
) {
798 i915_dma_cleanup(dev
);
799 dev_priv
->status_gfx_addr
= 0;
800 DRM_ERROR("can not ioremap virtual address for"
801 " G33 hw status page\n");
804 dev_priv
->hw_status_page
= dev_priv
->hws_map
.handle
;
806 memset(dev_priv
->hw_status_page
, 0, PAGE_SIZE
);
807 I915_WRITE(HWS_PGA
, dev_priv
->status_gfx_addr
);
808 DRM_DEBUG("load hws HWS_PGA with gfx mem 0x%x\n",
809 dev_priv
->status_gfx_addr
);
810 DRM_DEBUG("load hws at %p\n", dev_priv
->hw_status_page
);
815 * i915_probe_agp - get AGP bootup configuration
817 * @aperture_size: returns AGP aperture configured size
818 * @preallocated_size: returns size of BIOS preallocated AGP space
820 * Since Intel integrated graphics are UMA, the BIOS has to set aside
821 * some RAM for the framebuffer at early boot. This code figures out
822 * how much was set aside so we can use it for our own purposes.
824 static int i915_probe_agp(struct drm_device
*dev
, unsigned long *aperture_size
,
825 unsigned long *preallocated_size
)
827 struct pci_dev
*bridge_dev
;
829 unsigned long overhead
;
831 bridge_dev
= pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
833 DRM_ERROR("bridge device not found\n");
837 /* Get the fb aperture size and "stolen" memory amount. */
838 pci_read_config_word(bridge_dev
, INTEL_GMCH_CTRL
, &tmp
);
839 pci_dev_put(bridge_dev
);
841 *aperture_size
= 1024 * 1024;
842 *preallocated_size
= 1024 * 1024;
844 switch (dev
->pdev
->device
) {
845 case PCI_DEVICE_ID_INTEL_82830_CGC
:
846 case PCI_DEVICE_ID_INTEL_82845G_IG
:
847 case PCI_DEVICE_ID_INTEL_82855GM_IG
:
848 case PCI_DEVICE_ID_INTEL_82865_IG
:
849 if ((tmp
& INTEL_GMCH_MEM_MASK
) == INTEL_GMCH_MEM_64M
)
850 *aperture_size
*= 64;
852 *aperture_size
*= 128;
855 /* 9xx supports large sizes, just look at the length */
856 *aperture_size
= pci_resource_len(dev
->pdev
, 2);
861 * Some of the preallocated space is taken by the GTT
862 * and popup. GTT is 1K per MB of aperture size, and popup is 4K.
867 overhead
= (*aperture_size
/ 1024) + 4096;
869 switch (tmp
& INTEL_855_GMCH_GMS_MASK
) {
870 case INTEL_855_GMCH_GMS_STOLEN_1M
:
871 break; /* 1M already */
872 case INTEL_855_GMCH_GMS_STOLEN_4M
:
873 *preallocated_size
*= 4;
875 case INTEL_855_GMCH_GMS_STOLEN_8M
:
876 *preallocated_size
*= 8;
878 case INTEL_855_GMCH_GMS_STOLEN_16M
:
879 *preallocated_size
*= 16;
881 case INTEL_855_GMCH_GMS_STOLEN_32M
:
882 *preallocated_size
*= 32;
884 case INTEL_915G_GMCH_GMS_STOLEN_48M
:
885 *preallocated_size
*= 48;
887 case INTEL_915G_GMCH_GMS_STOLEN_64M
:
888 *preallocated_size
*= 64;
890 case INTEL_855_GMCH_GMS_DISABLED
:
891 DRM_ERROR("video memory is disabled\n");
894 DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
895 tmp
& INTEL_855_GMCH_GMS_MASK
);
898 *preallocated_size
-= overhead
;
903 static int i915_load_modeset_init(struct drm_device
*dev
)
905 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
906 unsigned long agp_size
, prealloc_size
;
907 int fb_bar
= IS_I9XX(dev
) ? 2 : 0;
910 dev
->devname
= kstrdup(DRIVER_NAME
, GFP_KERNEL
);
916 dev
->mode_config
.fb_base
= drm_get_resource_start(dev
, fb_bar
) &
919 DRM_DEBUG("*** fb base 0x%08lx\n", dev
->mode_config
.fb_base
);
921 if (IS_MOBILE(dev
) || (IS_I9XX(dev
) && !IS_I965G(dev
) && !IS_G33(dev
)))
922 dev_priv
->cursor_needs_physical
= true;
924 dev_priv
->cursor_needs_physical
= false;
926 ret
= i915_probe_agp(dev
, &agp_size
, &prealloc_size
);
930 /* Basic memrange allocator for stolen space (aka vram) */
931 drm_mm_init(&dev_priv
->vram
, 0, prealloc_size
);
933 /* Let GEM Manage from end of prealloc space to end of aperture */
934 i915_gem_do_init(dev
, prealloc_size
, agp_size
);
936 ret
= i915_gem_init_ringbuffer(dev
);
940 dev_priv
->mm
.gtt_mapping
=
941 io_mapping_create_wc(dev
->agp
->base
,
942 dev
->agp
->agp_info
.aper_size
* 1024*1024);
944 /* Allow hardware batchbuffers unless told otherwise.
946 dev_priv
->allow_batchbuffer
= 1;
948 ret
= intel_init_bios(dev
);
950 DRM_INFO("failed to find VBIOS tables\n");
952 ret
= drm_irq_install(dev
);
954 goto destroy_ringbuffer
;
956 /* FIXME: re-add hotplug support */
958 ret
= drm_hotplug_init(dev
);
960 goto destroy_ringbuffer
;
963 /* Always safe in the mode setting case. */
964 /* FIXME: do pre/post-mode set stuff in core KMS code */
965 dev
->vblank_disable_allowed
= 1;
968 * Initialize the hardware status page IRQ location.
971 I915_WRITE(INSTPM
, (1 << 5) | (1 << 21));
973 intel_modeset_init(dev
);
975 drm_helper_initial_config(dev
, false);
980 i915_gem_cleanup_ringbuffer(dev
);
987 int i915_master_create(struct drm_device
*dev
, struct drm_master
*master
)
989 struct drm_i915_master_private
*master_priv
;
991 master_priv
= drm_calloc(1, sizeof(*master_priv
), DRM_MEM_DRIVER
);
995 master
->driver_priv
= master_priv
;
999 void i915_master_destroy(struct drm_device
*dev
, struct drm_master
*master
)
1001 struct drm_i915_master_private
*master_priv
= master
->driver_priv
;
1006 drm_free(master_priv
, sizeof(*master_priv
), DRM_MEM_DRIVER
);
1008 master
->driver_priv
= NULL
;
1012 * i915_driver_load - setup chip and create an initial config
1014 * @flags: startup flags
1016 * The driver load routine has to do several things:
1017 * - drive output discovery via intel_modeset_init()
1018 * - initialize the memory manager
1019 * - allocate initial config memory
1020 * - setup the DRM framebuffer with the allocated memory
1022 int i915_driver_load(struct drm_device
*dev
, unsigned long flags
)
1024 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1025 unsigned long base
, size
;
1026 int ret
= 0, mmio_bar
= IS_I9XX(dev
) ? 0 : 1;
1028 /* i915 has 4 more counters */
1030 dev
->types
[6] = _DRM_STAT_IRQ
;
1031 dev
->types
[7] = _DRM_STAT_PRIMARY
;
1032 dev
->types
[8] = _DRM_STAT_SECONDARY
;
1033 dev
->types
[9] = _DRM_STAT_DMA
;
1035 dev_priv
= drm_alloc(sizeof(drm_i915_private_t
), DRM_MEM_DRIVER
);
1036 if (dev_priv
== NULL
)
1039 memset(dev_priv
, 0, sizeof(drm_i915_private_t
));
1041 dev
->dev_private
= (void *)dev_priv
;
1042 dev_priv
->dev
= dev
;
1044 /* Add register map (needed for suspend/resume) */
1045 base
= drm_get_resource_start(dev
, mmio_bar
);
1046 size
= drm_get_resource_len(dev
, mmio_bar
);
1048 dev_priv
->regs
= ioremap(base
, size
);
1049 if (!dev_priv
->regs
) {
1050 DRM_ERROR("failed to map registers\n");
1055 #ifdef CONFIG_HIGHMEM64G
1056 /* don't enable GEM on PAE - needs agp + set_memory_* interface fixes */
1057 dev_priv
->has_gem
= 0;
1059 /* enable GEM by default */
1060 dev_priv
->has_gem
= 1;
1066 if (!I915_NEED_GFX_HWS(dev
)) {
1067 ret
= i915_init_phys_hws(dev
);
1072 /* On the 945G/GM, the chipset reports the MSI capability on the
1073 * integrated graphics even though the support isn't actually there
1074 * according to the published specs. It doesn't appear to function
1075 * correctly in testing on 945G.
1076 * This may be a side effect of MSI having been made available for PEG
1077 * and the registers being closely associated.
1079 * According to chipset errata, on the 965GM, MSI interrupts may
1080 * be lost or delayed, but we use them anyways to avoid
1081 * stuck interrupts on some machines.
1083 if (!IS_I945G(dev
) && !IS_I945GM(dev
))
1084 pci_enable_msi(dev
->pdev
);
1086 intel_opregion_init(dev
);
1088 spin_lock_init(&dev_priv
->user_irq_lock
);
1089 dev_priv
->user_irq_refcount
= 0;
1091 ret
= drm_vblank_init(dev
, I915_NUM_PIPE
);
1094 (void) i915_driver_unload(dev
);
1098 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1099 ret
= i915_load_modeset_init(dev
);
1101 DRM_ERROR("failed to init modeset\n");
1109 iounmap(dev_priv
->regs
);
1111 drm_free(dev_priv
, sizeof(struct drm_i915_private
), DRM_MEM_DRIVER
);
1115 int i915_driver_unload(struct drm_device
*dev
)
1117 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1119 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1120 io_mapping_free(dev_priv
->mm
.gtt_mapping
);
1121 drm_irq_uninstall(dev
);
1124 if (dev
->pdev
->msi_enabled
)
1125 pci_disable_msi(dev
->pdev
);
1127 if (dev_priv
->regs
!= NULL
)
1128 iounmap(dev_priv
->regs
);
1130 intel_opregion_free(dev
);
1132 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1133 intel_modeset_cleanup(dev
);
1135 mutex_lock(&dev
->struct_mutex
);
1136 i915_gem_cleanup_ringbuffer(dev
);
1137 mutex_unlock(&dev
->struct_mutex
);
1138 drm_mm_takedown(&dev_priv
->vram
);
1139 i915_gem_lastclose(dev
);
1142 drm_free(dev
->dev_private
, sizeof(drm_i915_private_t
),
1148 int i915_driver_open(struct drm_device
*dev
, struct drm_file
*file_priv
)
1150 struct drm_i915_file_private
*i915_file_priv
;
1153 i915_file_priv
= (struct drm_i915_file_private
*)
1154 drm_alloc(sizeof(*i915_file_priv
), DRM_MEM_FILES
);
1156 if (!i915_file_priv
)
1159 file_priv
->driver_priv
= i915_file_priv
;
1161 i915_file_priv
->mm
.last_gem_seqno
= 0;
1162 i915_file_priv
->mm
.last_gem_throttle_seqno
= 0;
1168 * i915_driver_lastclose - clean up after all DRM clients have exited
1171 * Take care of cleaning up after all DRM clients have exited. In the
1172 * mode setting case, we want to restore the kernel's initial mode (just
1173 * in case the last client left us in a bad state).
1175 * Additionally, in the non-mode setting case, we'll tear down the AGP
1176 * and DMA structures, since the kernel won't be using them, and clea
1179 void i915_driver_lastclose(struct drm_device
* dev
)
1181 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
1183 if (!dev_priv
|| drm_core_check_feature(dev
, DRIVER_MODESET
)) {
1188 i915_gem_lastclose(dev
);
1190 if (dev_priv
->agp_heap
)
1191 i915_mem_takedown(&(dev_priv
->agp_heap
));
1193 i915_dma_cleanup(dev
);
1196 void i915_driver_preclose(struct drm_device
* dev
, struct drm_file
*file_priv
)
1198 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
1199 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1200 i915_mem_release(dev
, file_priv
, dev_priv
->agp_heap
);
1203 void i915_driver_postclose(struct drm_device
*dev
, struct drm_file
*file_priv
)
1205 struct drm_i915_file_private
*i915_file_priv
= file_priv
->driver_priv
;
1207 drm_free(i915_file_priv
, sizeof(*i915_file_priv
), DRM_MEM_FILES
);
1210 struct drm_ioctl_desc i915_ioctls
[] = {
1211 DRM_IOCTL_DEF(DRM_I915_INIT
, i915_dma_init
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1212 DRM_IOCTL_DEF(DRM_I915_FLUSH
, i915_flush_ioctl
, DRM_AUTH
),
1213 DRM_IOCTL_DEF(DRM_I915_FLIP
, i915_flip_bufs
, DRM_AUTH
),
1214 DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER
, i915_batchbuffer
, DRM_AUTH
),
1215 DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT
, i915_irq_emit
, DRM_AUTH
),
1216 DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT
, i915_irq_wait
, DRM_AUTH
),
1217 DRM_IOCTL_DEF(DRM_I915_GETPARAM
, i915_getparam
, DRM_AUTH
),
1218 DRM_IOCTL_DEF(DRM_I915_SETPARAM
, i915_setparam
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1219 DRM_IOCTL_DEF(DRM_I915_ALLOC
, i915_mem_alloc
, DRM_AUTH
),
1220 DRM_IOCTL_DEF(DRM_I915_FREE
, i915_mem_free
, DRM_AUTH
),
1221 DRM_IOCTL_DEF(DRM_I915_INIT_HEAP
, i915_mem_init_heap
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1222 DRM_IOCTL_DEF(DRM_I915_CMDBUFFER
, i915_cmdbuffer
, DRM_AUTH
),
1223 DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP
, i915_mem_destroy_heap
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1224 DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE
, i915_vblank_pipe_set
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1225 DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE
, i915_vblank_pipe_get
, DRM_AUTH
),
1226 DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP
, i915_vblank_swap
, DRM_AUTH
),
1227 DRM_IOCTL_DEF(DRM_I915_HWS_ADDR
, i915_set_status_page
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1228 DRM_IOCTL_DEF(DRM_I915_GEM_INIT
, i915_gem_init_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1229 DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER
, i915_gem_execbuffer
, DRM_AUTH
),
1230 DRM_IOCTL_DEF(DRM_I915_GEM_PIN
, i915_gem_pin_ioctl
, DRM_AUTH
|DRM_ROOT_ONLY
),
1231 DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN
, i915_gem_unpin_ioctl
, DRM_AUTH
|DRM_ROOT_ONLY
),
1232 DRM_IOCTL_DEF(DRM_I915_GEM_BUSY
, i915_gem_busy_ioctl
, DRM_AUTH
),
1233 DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE
, i915_gem_throttle_ioctl
, DRM_AUTH
),
1234 DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT
, i915_gem_entervt_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1235 DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT
, i915_gem_leavevt_ioctl
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
1236 DRM_IOCTL_DEF(DRM_I915_GEM_CREATE
, i915_gem_create_ioctl
, 0),
1237 DRM_IOCTL_DEF(DRM_I915_GEM_PREAD
, i915_gem_pread_ioctl
, 0),
1238 DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE
, i915_gem_pwrite_ioctl
, 0),
1239 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP
, i915_gem_mmap_ioctl
, 0),
1240 DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT
, i915_gem_mmap_gtt_ioctl
, 0),
1241 DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN
, i915_gem_set_domain_ioctl
, 0),
1242 DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH
, i915_gem_sw_finish_ioctl
, 0),
1243 DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING
, i915_gem_set_tiling
, 0),
1244 DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING
, i915_gem_get_tiling
, 0),
1245 DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE
, i915_gem_get_aperture_ioctl
, 0),
1248 int i915_max_ioctl
= DRM_ARRAY_SIZE(i915_ioctls
);
1251 * Determine if the device really is AGP or not.
1253 * All Intel graphics chipsets are treated as AGP, even if they are really
1256 * \param dev The device to be tested.
1259 * A value of 1 is always retured to indictate every i9x5 is AGP.
1261 int i915_driver_device_is_agp(struct drm_device
* dev
)