2 * Copyright (c) 2000 Doug Rabson
3 * Copyright (c) 2000 Ruslan Ermilov
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * $FreeBSD: src/sys/dev/agp/agp_i810.c,v 1.43 2007/11/12 21:51:36 jhb Exp $
28 * $DragonFly: src/sys/dev/agp/agp_i810.c,v 1.19 2008/10/03 08:56:58 hasso Exp $
32 * Fixes for 830/845G support: David Dawes <dawes@xfree86.org>
33 * 852GM/855GM/865G support added by David Dawes <dawes@xfree86.org>
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/malloc.h>
41 #include <sys/kernel.h>
46 #include <bus/pci/pcivar.h>
47 #include <bus/pci/pcireg.h>
52 #include <vm/vm_object.h>
53 #include <vm/vm_page.h>
54 #include <vm/vm_pageout.h>
57 #include <machine/md_var.h>
59 #define bus_read_1(r, o) \
60 bus_space_read_1((r)->r_bustag, (r)->r_bushandle, (o))
61 #define bus_read_4(r, o) \
62 bus_space_read_4((r)->r_bustag, (r)->r_bushandle, (o))
63 #define bus_write_4(r, o, v) \
64 bus_space_write_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
66 MALLOC_DECLARE(M_AGP
);
69 CHIP_I810
, /* i810/i815 */
70 CHIP_I830
, /* 830M/845G */
71 CHIP_I855
, /* 852GM/855GM/865G */
72 CHIP_I915
, /* 915G/915GM */
74 CHIP_G33
, /* G33/Q33/Q35 */
75 CHIP_G4X
, /* G45/Q45 */
78 /* The i810 through i855 have the registers at BAR 1, and the GATT gets
79 * allocated by us. The i915 has registers in BAR 0 and the GATT is at the
80 * start of the stolen memory, and should only be accessed by the OS through
81 * BAR 3. The G965 has registers and GATT in the same BAR (0) -- first 512KB
82 * is registers, second 512KB is GATT.
84 static struct resource_spec agp_i810_res_spec
[] = {
85 { SYS_RES_MEMORY
, AGP_I810_MMADR
, RF_ACTIVE
| RF_SHAREABLE
},
89 static struct resource_spec agp_i915_res_spec
[] = {
90 { SYS_RES_MEMORY
, AGP_I915_MMADR
, RF_ACTIVE
| RF_SHAREABLE
},
91 { SYS_RES_MEMORY
, AGP_I915_GTTADR
, RF_ACTIVE
| RF_SHAREABLE
},
95 static struct resource_spec agp_i965_res_spec
[] = {
96 { SYS_RES_MEMORY
, AGP_I965_GTTMMADR
, RF_ACTIVE
| RF_SHAREABLE
},
100 struct agp_i810_softc
{
101 struct agp_softc agp
;
102 u_int32_t initial_aperture
; /* aperture size at startup */
103 struct agp_gatt
*gatt
;
104 int chiptype
; /* i810-like or i830 */
105 u_int32_t dcache_size
; /* i810 only */
106 u_int32_t stolen
; /* number of i830/845 gtt entries for stolen memory */
107 device_t bdev
; /* bridge device */
109 void *argb_cursor
; /* contigmalloc area for ARGB cursor */
111 struct resource_spec
* sc_res_spec
;
112 struct resource
*sc_res
[2];
115 /* For adding new devices, devid is the id of the graphics controller
116 * (pci:0:2:0, for example). The placeholder (usually at pci:0:2:1) for the
117 * second head should never be added. The bridge_offset is the offset to
118 * subtract from devid to get the id of the hostb that the device is on.
120 static const struct agp_i810_match
{
125 } agp_i810_matches
[] = {
126 {0x71218086, CHIP_I810
, 0x00010000,
127 "Intel 82810 (i810 GMCH) SVGA controller"},
128 {0x71238086, CHIP_I810
, 0x00010000,
129 "Intel 82810-DC100 (i810-DC100 GMCH) SVGA controller"},
130 {0x71258086, CHIP_I810
, 0x00010000,
131 "Intel 82810E (i810E GMCH) SVGA controller"},
132 {0x11328086, CHIP_I810
, 0x00020000,
133 "Intel 82815 (i815 GMCH) SVGA controller"},
134 {0x35778086, CHIP_I830
, 0x00020000,
135 "Intel 82830M (830M GMCH) SVGA controller"},
136 {0x25628086, CHIP_I830
, 0x00020000,
137 "Intel 82845M (845M GMCH) SVGA controller"},
138 {0x35828086, CHIP_I855
, 0x00020000,
139 "Intel 82852/855GM SVGA controller"},
140 {0x25728086, CHIP_I855
, 0x00020000,
141 "Intel 82865G (865G GMCH) SVGA controller"},
142 {0x25828086, CHIP_I915
, 0x00020000,
143 "Intel 82915G (915G GMCH) SVGA controller"},
144 {0x258A8086, CHIP_I915
, 0x00020000,
145 "Intel E7221 SVGA controller"},
146 {0x25928086, CHIP_I915
, 0x00020000,
147 "Intel 82915GM (915GM GMCH) SVGA controller"},
148 {0x27728086, CHIP_I915
, 0x00020000,
149 "Intel 82945G (945G GMCH) SVGA controller"},
150 {0x27A28086, CHIP_I915
, 0x00020000,
151 "Intel 82945GM (945GM GMCH) SVGA controller"},
152 {0x27AE8086, CHIP_I915
, 0x00020000,
153 "Intel 945GME SVGA controller"},
154 {0x29728086, CHIP_I965
, 0x00020000,
155 "Intel 946GZ SVGA controller"},
156 {0x29828086, CHIP_I965
, 0x00020000,
157 "Intel G965 SVGA controller"},
158 {0x29928086, CHIP_I965
, 0x00020000,
159 "Intel Q965 SVGA controller"},
160 {0x29A28086, CHIP_I965
, 0x00020000,
161 "Intel G965 SVGA controller"},
162 {0x29B28086, CHIP_G33
, 0x00020000,
163 "Intel Q35 SVGA controller"},
164 {0x29C28086, CHIP_G33
, 0x00020000,
165 "Intel G33 SVGA controller"},
166 {0x29D28086, CHIP_G33
, 0x00020000,
167 "Intel Q33 SVGA controller"},
168 {0x2A028086, CHIP_I965
, 0x00020000,
169 "Intel GM965 SVGA controller"},
170 {0x2A128086, CHIP_I965
, 0x00020000,
171 "Intel GME965 SVGA controller"},
172 {0x2A428086, CHIP_G4X
, 0x00020000,
173 "Intel GM45 SVGA controller"},
174 {0x2E028086, CHIP_G4X
, 0x00020000,
175 "Intel 4 Series SVGA controller"},
176 {0x2E328086, CHIP_G4X
, 0x00020000,
177 "Intel 4 Series SVGA controller"},
178 {0x2E128086, CHIP_G4X
, 0x00020000,
179 "Intel Q45 SVGA controller"},
180 {0x2E228086, CHIP_G4X
, 0x00020000,
181 "Intel G45 SVGA controller"},
185 static const struct agp_i810_match
*
186 agp_i810_match(device_t dev
)
190 if (pci_get_class(dev
) != PCIC_DISPLAY
191 || pci_get_subclass(dev
) != PCIS_DISPLAY_VGA
)
194 devid
= pci_get_devid(dev
);
195 for (i
= 0; agp_i810_matches
[i
].devid
!= 0; i
++) {
196 if (agp_i810_matches
[i
].devid
== devid
)
199 if (agp_i810_matches
[i
].devid
== 0)
202 return &agp_i810_matches
[i
];
206 * Find bridge device.
209 agp_i810_find_bridge(device_t dev
)
211 device_t
*children
, child
;
214 const struct agp_i810_match
*match
;
216 match
= agp_i810_match(dev
);
217 devid
= match
->devid
- match
->bridge_offset
;
219 if (device_get_children(device_get_parent(device_get_parent(dev
)),
220 &children
, &nchildren
))
223 for (i
= 0; i
< nchildren
; i
++) {
226 if (pci_get_devid(child
) == devid
) {
227 kfree(children
, M_TEMP
);
231 kfree(children
, M_TEMP
);
236 agp_i810_identify(driver_t
*driver
, device_t parent
)
239 if (device_find_child(parent
, "agp", -1) == NULL
&&
240 agp_i810_match(parent
))
241 device_add_child(parent
, "agp", -1);
245 agp_i810_probe(device_t dev
)
248 const struct agp_i810_match
*match
;
252 if (resource_disabled("agp", device_get_unit(dev
)))
254 match
= agp_i810_match(dev
);
258 bdev
= agp_i810_find_bridge(dev
);
261 kprintf("I810: can't find bridge device\n");
266 * checking whether internal graphics device has been activated.
268 switch (match
->chiptype
) {
270 smram
= pci_read_config(bdev
, AGP_I810_SMRAM
, 1);
271 if ((smram
& AGP_I810_SMRAM_GMS
) ==
272 AGP_I810_SMRAM_GMS_DISABLED
) {
274 kprintf("I810: disabled, not probing\n");
280 gcc1
= pci_read_config(bdev
, AGP_I830_GCC1
, 1);
281 if ((gcc1
& AGP_I830_GCC1_DEV2
) ==
282 AGP_I830_GCC1_DEV2_DISABLED
) {
284 kprintf("I830: disabled, not probing\n");
292 deven
= pci_read_config(bdev
, AGP_I915_DEVEN
, 4);
293 if ((deven
& AGP_I915_DEVEN_D2F0
) ==
294 AGP_I915_DEVEN_D2F0_DISABLED
) {
296 kprintf("I915: disabled, not probing\n");
303 if (match
->devid
== 0x35828086) {
304 switch (pci_read_config(dev
, AGP_I85X_CAPID
, 1)) {
307 "Intel 82855GME (855GME GMCH) SVGA controller");
311 "Intel 82855GM (855GM GMCH) SVGA controller");
315 "Intel 82852GME (852GME GMCH) SVGA controller");
319 "Intel 82852GM (852GM GMCH) SVGA controller");
323 "Intel 8285xM (85xGM GMCH) SVGA controller");
327 device_set_desc(dev
, match
->name
);
330 return BUS_PROBE_DEFAULT
;
334 agp_i810_dump_regs(device_t dev
)
336 struct agp_i810_softc
*sc
= device_get_softc(dev
);
338 device_printf(dev
, "AGP_I810_PGTBL_CTL: %08x\n",
339 bus_read_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
));
341 switch (sc
->chiptype
) {
343 device_printf(dev
, "AGP_I810_MISCC: 0x%04x\n",
344 pci_read_config(sc
->bdev
, AGP_I810_MISCC
, 2));
347 device_printf(dev
, "AGP_I830_GCC1: 0x%02x\n",
348 pci_read_config(sc
->bdev
, AGP_I830_GCC1
, 1));
351 device_printf(dev
, "AGP_I855_GCC1: 0x%02x\n",
352 pci_read_config(sc
->bdev
, AGP_I855_GCC1
, 1));
358 device_printf(dev
, "AGP_I855_GCC1: 0x%02x\n",
359 pci_read_config(sc
->bdev
, AGP_I855_GCC1
, 1));
360 device_printf(dev
, "AGP_I915_MSAC: 0x%02x\n",
361 pci_read_config(sc
->bdev
, AGP_I915_MSAC
, 1));
364 device_printf(dev
, "Aperture resource size: %d bytes\n",
365 AGP_GET_APERTURE(dev
));
369 agp_i810_attach(device_t dev
)
371 struct agp_i810_softc
*sc
= device_get_softc(dev
);
372 struct agp_gatt
*gatt
;
373 const struct agp_i810_match
*match
;
376 sc
->bdev
= agp_i810_find_bridge(dev
);
380 match
= agp_i810_match(dev
);
381 sc
->chiptype
= match
->chiptype
;
383 switch (sc
->chiptype
) {
387 sc
->sc_res_spec
= agp_i810_res_spec
;
388 agp_set_aperture_resource(dev
, AGP_APBASE
);
392 sc
->sc_res_spec
= agp_i915_res_spec
;
393 agp_set_aperture_resource(dev
, AGP_I915_GMADR
);
397 sc
->sc_res_spec
= agp_i965_res_spec
;
398 agp_set_aperture_resource(dev
, AGP_I915_GMADR
);
402 error
= agp_generic_attach(dev
);
406 if (sc
->chiptype
!= CHIP_I965
&& sc
->chiptype
!= CHIP_G33
&&
407 sc
->chiptype
!= CHIP_G4X
&& ptoa((vm_paddr_t
)Maxmem
) > 0xfffffffful
)
409 device_printf(dev
, "agp_i810.c does not support physical "
410 "memory above 4GB.\n");
414 if (bus_alloc_resources(dev
, sc
->sc_res_spec
, sc
->sc_res
)) {
415 agp_generic_detach(dev
);
419 sc
->initial_aperture
= AGP_GET_APERTURE(dev
);
420 if (sc
->initial_aperture
== 0) {
421 device_printf(dev
, "bad initial aperture size, disabling\n");
425 gatt
= kmalloc( sizeof(struct agp_gatt
), M_AGP
, M_INTWAIT
);
428 gatt
->ag_entries
= AGP_GET_APERTURE(dev
) >> AGP_PAGE_SHIFT
;
430 if ( sc
->chiptype
== CHIP_I810
) {
431 /* Some i810s have on-chip memory called dcache */
432 if (bus_read_1(sc
->sc_res
[0], AGP_I810_DRT
) &
433 AGP_I810_DRT_POPULATED
)
434 sc
->dcache_size
= 4 * 1024 * 1024;
438 /* According to the specs the gatt on the i810 must be 64k */
439 gatt
->ag_virtual
= contigmalloc( 64 * 1024, M_AGP
, 0,
440 0, ~0, PAGE_SIZE
, 0);
441 if (!gatt
->ag_virtual
) {
443 device_printf(dev
, "contiguous allocation failed\n");
444 bus_release_resources(dev
, sc
->sc_res_spec
,
447 agp_generic_detach(dev
);
450 bzero(gatt
->ag_virtual
, gatt
->ag_entries
* sizeof(u_int32_t
));
452 gatt
->ag_physical
= vtophys((vm_offset_t
) gatt
->ag_virtual
);
454 /* Install the GATT. */
455 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
,
456 gatt
->ag_physical
| 1);
457 } else if ( sc
->chiptype
== CHIP_I830
) {
458 /* The i830 automatically initializes the 128k gatt on boot. */
459 unsigned int gcc1
, pgtblctl
;
461 gcc1
= pci_read_config(sc
->bdev
, AGP_I830_GCC1
, 1);
462 switch (gcc1
& AGP_I830_GCC1_GMS
) {
463 case AGP_I830_GCC1_GMS_STOLEN_512
:
464 sc
->stolen
= (512 - 132) * 1024 / 4096;
466 case AGP_I830_GCC1_GMS_STOLEN_1024
:
467 sc
->stolen
= (1024 - 132) * 1024 / 4096;
469 case AGP_I830_GCC1_GMS_STOLEN_8192
:
470 sc
->stolen
= (8192 - 132) * 1024 / 4096;
474 device_printf(dev
, "unknown memory configuration, disabling\n");
475 bus_release_resources(dev
, sc
->sc_res_spec
,
478 agp_generic_detach(dev
);
481 if (sc
->stolen
> 0) {
482 device_printf(dev
, "detected %dk stolen memory\n",
485 device_printf(dev
, "aperture size is %dM\n",
486 sc
->initial_aperture
/ 1024 / 1024);
488 /* GATT address is already in there, make sure it's enabled */
489 pgtblctl
= bus_read_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
);
491 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
, pgtblctl
);
493 gatt
->ag_physical
= pgtblctl
& ~1;
494 } else if (sc
->chiptype
== CHIP_I855
|| sc
->chiptype
== CHIP_I915
||
495 sc
->chiptype
== CHIP_I965
|| sc
->chiptype
== CHIP_G33
||
496 sc
->chiptype
== CHIP_G4X
) {
497 unsigned int gcc1
, pgtblctl
, stolen
, gtt_size
;
499 /* Stolen memory is set up at the beginning of the aperture by
500 * the BIOS, consisting of the GATT followed by 4kb for the
503 switch (sc
->chiptype
) {
511 switch (bus_read_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
) &
512 AGP_I810_PGTBL_SIZE_MASK
) {
513 case AGP_I810_PGTBL_SIZE_128KB
:
516 case AGP_I810_PGTBL_SIZE_256KB
:
519 case AGP_I810_PGTBL_SIZE_512KB
:
522 case AGP_I965_PGTBL_SIZE_1MB
:
525 case AGP_I965_PGTBL_SIZE_2MB
:
528 case AGP_I965_PGTBL_SIZE_1_5MB
:
529 gtt_size
= 1024 + 512;
532 device_printf(dev
, "Bad PGTBL size\n");
533 bus_release_resources(dev
, sc
->sc_res_spec
,
536 agp_generic_detach(dev
);
541 gcc1
= pci_read_config(sc
->bdev
, AGP_I855_GCC1
, 2);
542 switch (gcc1
& AGP_G33_MGGC_GGMS_MASK
) {
543 case AGP_G33_MGGC_GGMS_SIZE_1M
:
546 case AGP_G33_MGGC_GGMS_SIZE_2M
:
550 device_printf(dev
, "Bad PGTBL size\n");
551 bus_release_resources(dev
, sc
->sc_res_spec
,
554 agp_generic_detach(dev
);
562 device_printf(dev
, "Bad chiptype\n");
563 bus_release_resources(dev
, sc
->sc_res_spec
,
566 agp_generic_detach(dev
);
570 /* GCC1 is called MGGC on i915+ */
571 gcc1
= pci_read_config(sc
->bdev
, AGP_I855_GCC1
, 1);
572 switch (gcc1
& AGP_I855_GCC1_GMS
) {
573 case AGP_I855_GCC1_GMS_STOLEN_1M
:
576 case AGP_I855_GCC1_GMS_STOLEN_4M
:
579 case AGP_I855_GCC1_GMS_STOLEN_8M
:
582 case AGP_I855_GCC1_GMS_STOLEN_16M
:
585 case AGP_I855_GCC1_GMS_STOLEN_32M
:
588 case AGP_I915_GCC1_GMS_STOLEN_48M
:
589 if (sc
->chiptype
== CHIP_I915
||
590 sc
->chiptype
== CHIP_I965
||
591 sc
->chiptype
== CHIP_G33
||
592 sc
->chiptype
== CHIP_G4X
) {
598 case AGP_I915_GCC1_GMS_STOLEN_64M
:
599 if (sc
->chiptype
== CHIP_I915
||
600 sc
->chiptype
== CHIP_I965
||
601 sc
->chiptype
== CHIP_G33
||
602 sc
->chiptype
== CHIP_G4X
) {
608 case AGP_G33_GCC1_GMS_STOLEN_128M
:
609 if (sc
->chiptype
== CHIP_I965
||
610 sc
->chiptype
== CHIP_G33
||
611 sc
->chiptype
== CHIP_G4X
) {
617 case AGP_G33_GCC1_GMS_STOLEN_256M
:
618 if (sc
->chiptype
== CHIP_I965
||
619 sc
->chiptype
== CHIP_G33
||
620 sc
->chiptype
== CHIP_G4X
) {
626 case AGP_G4X_GCC1_GMS_STOLEN_96M
:
627 if (sc
->chiptype
== CHIP_I965
||
628 sc
->chiptype
== CHIP_G4X
) {
634 case AGP_G4X_GCC1_GMS_STOLEN_160M
:
635 if (sc
->chiptype
== CHIP_I965
||
636 sc
->chiptype
== CHIP_G4X
) {
642 case AGP_G4X_GCC1_GMS_STOLEN_224M
:
643 if (sc
->chiptype
== CHIP_I965
||
644 sc
->chiptype
== CHIP_G4X
) {
650 case AGP_G4X_GCC1_GMS_STOLEN_352M
:
651 if (sc
->chiptype
== CHIP_I965
||
652 sc
->chiptype
== CHIP_G4X
) {
659 device_printf(dev
, "unknown memory configuration, "
661 bus_release_resources(dev
, sc
->sc_res_spec
,
664 agp_generic_detach(dev
);
670 sc
->stolen
= (stolen
- gtt_size
) * 1024 / 4096;
672 device_printf(dev
, "detected %dk stolen memory\n", sc
->stolen
* 4);
673 device_printf(dev
, "aperture size is %dM\n", sc
->initial_aperture
/ 1024 / 1024);
675 /* GATT address is already in there, make sure it's enabled */
676 pgtblctl
= bus_read_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
);
678 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
, pgtblctl
);
680 gatt
->ag_physical
= pgtblctl
& ~1;
684 agp_i810_dump_regs(dev
);
690 agp_i810_detach(device_t dev
)
692 struct agp_i810_softc
*sc
= device_get_softc(dev
);
696 /* Clear the GATT base. */
697 if ( sc
->chiptype
== CHIP_I810
) {
698 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
, 0);
700 unsigned int pgtblctl
;
701 pgtblctl
= bus_read_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
);
703 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
, pgtblctl
);
706 /* Put the aperture back the way it started. */
707 AGP_SET_APERTURE(dev
, sc
->initial_aperture
);
709 if ( sc
->chiptype
== CHIP_I810
) {
710 contigfree(sc
->gatt
->ag_virtual
, 64 * 1024, M_AGP
);
712 kfree(sc
->gatt
, M_AGP
);
714 bus_release_resources(dev
, sc
->sc_res_spec
, sc
->sc_res
);
721 agp_i810_resume(device_t dev
)
723 struct agp_i810_softc
*sc
;
724 sc
= device_get_softc(dev
);
726 AGP_SET_APERTURE(dev
, sc
->initial_aperture
);
728 /* Install the GATT. */
729 bus_write_4(sc
->sc_res
[0], AGP_I810_PGTBL_CTL
,
730 sc
->gatt
->ag_physical
| 1);
732 return (bus_generic_resume(dev
));
736 * Sets the PCI resource size of the aperture on i830-class and below chipsets,
737 * while returning failure on later chipsets when an actual change is
740 * This whole function is likely bogus, as the kernel would probably need to
741 * reconfigure the placement of the AGP aperture if a larger size is requested,
742 * which doesn't happen currently.
745 agp_i810_set_aperture(device_t dev
, u_int32_t aperture
)
747 struct agp_i810_softc
*sc
= device_get_softc(dev
);
748 u_int16_t miscc
, gcc1
;
750 switch (sc
->chiptype
) {
753 * Double check for sanity.
755 if (aperture
!= 32 * 1024 * 1024 && aperture
!= 64 * 1024 * 1024) {
756 device_printf(dev
, "bad aperture size %d\n", aperture
);
760 miscc
= pci_read_config(sc
->bdev
, AGP_I810_MISCC
, 2);
761 miscc
&= ~AGP_I810_MISCC_WINSIZE
;
762 if (aperture
== 32 * 1024 * 1024)
763 miscc
|= AGP_I810_MISCC_WINSIZE_32
;
765 miscc
|= AGP_I810_MISCC_WINSIZE_64
;
767 pci_write_config(sc
->bdev
, AGP_I810_MISCC
, miscc
, 2);
770 if (aperture
!= 64 * 1024 * 1024 &&
771 aperture
!= 128 * 1024 * 1024) {
772 device_printf(dev
, "bad aperture size %d\n", aperture
);
775 gcc1
= pci_read_config(sc
->bdev
, AGP_I830_GCC1
, 2);
776 gcc1
&= ~AGP_I830_GCC1_GMASIZE
;
777 if (aperture
== 64 * 1024 * 1024)
778 gcc1
|= AGP_I830_GCC1_GMASIZE_64
;
780 gcc1
|= AGP_I830_GCC1_GMASIZE_128
;
782 pci_write_config(sc
->bdev
, AGP_I830_GCC1
, gcc1
, 2);
789 return agp_generic_set_aperture(dev
, aperture
);
796 * Writes a GTT entry mapping the page at the given offset from the beginning
797 * of the aperture to the given physical address.
800 agp_i810_write_gtt_entry(device_t dev
, int offset
, vm_offset_t physical
,
803 struct agp_i810_softc
*sc
= device_get_softc(dev
);
806 pte
= (u_int32_t
)physical
| 1;
807 if (sc
->chiptype
== CHIP_I965
|| sc
->chiptype
== CHIP_G33
||
808 sc
->chiptype
== CHIP_G4X
) {
809 pte
|= (physical
& 0x0000000f00000000ull
) >> 28;
811 /* If we do actually have memory above 4GB on an older system,
812 * crash cleanly rather than scribble on system memory,
813 * so we know we need to fix it.
815 KASSERT((pte
& 0x0000000f00000000ull
) == 0,
816 (">4GB physical address in agp"));
819 switch (sc
->chiptype
) {
823 bus_write_4(sc
->sc_res
[0],
824 AGP_I810_GTT
+ (offset
>> AGP_PAGE_SHIFT
) * 4, pte
);
828 bus_write_4(sc
->sc_res
[1],
829 (offset
>> AGP_PAGE_SHIFT
) * 4, pte
);
832 bus_write_4(sc
->sc_res
[0],
833 (offset
>> AGP_PAGE_SHIFT
) * 4 + (512 * 1024), pte
);
836 bus_write_4(sc
->sc_res
[0],
837 (offset
>> AGP_PAGE_SHIFT
) * 4 + (2 * 1024 * 1024), pte
);
843 agp_i810_bind_page(device_t dev
, int offset
, vm_offset_t physical
)
845 struct agp_i810_softc
*sc
= device_get_softc(dev
);
847 if (offset
< 0 || offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
)) {
848 device_printf(dev
, "failed: offset is 0x%08x, shift is %d, entries is %d\n", offset
, AGP_PAGE_SHIFT
, sc
->gatt
->ag_entries
);
852 if ( sc
->chiptype
!= CHIP_I810
) {
853 if ( (offset
>> AGP_PAGE_SHIFT
) < sc
->stolen
) {
854 device_printf(dev
, "trying to bind into stolen memory");
859 agp_i810_write_gtt_entry(dev
, offset
, physical
, 1);
865 agp_i810_unbind_page(device_t dev
, int offset
)
867 struct agp_i810_softc
*sc
= device_get_softc(dev
);
869 if (offset
< 0 || offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
))
872 if ( sc
->chiptype
!= CHIP_I810
) {
873 if ( (offset
>> AGP_PAGE_SHIFT
) < sc
->stolen
) {
874 device_printf(dev
, "trying to unbind from stolen memory");
879 agp_i810_write_gtt_entry(dev
, offset
, 0, 0);
885 * Writing via memory mapped registers already flushes all TLBs.
888 agp_i810_flush_tlb(device_t dev
)
893 agp_i810_enable(device_t dev
, u_int32_t mode
)
899 static struct agp_memory
*
900 agp_i810_alloc_memory(device_t dev
, int type
, vm_size_t size
)
902 struct agp_i810_softc
*sc
= device_get_softc(dev
);
903 struct agp_memory
*mem
;
905 if ((size
& (AGP_PAGE_SIZE
- 1)) != 0)
908 if (sc
->agp
.as_allocated
+ size
> sc
->agp
.as_maxmem
)
913 * Mapping local DRAM into GATT.
915 if ( sc
->chiptype
!= CHIP_I810
)
917 if (size
!= sc
->dcache_size
)
919 } else if (type
== 2) {
921 * Type 2 is the contiguous physical memory type, that hands
922 * back a physical address. This is used for cursors on i810.
923 * Hand back as many single pages with physical as the user
924 * wants, but only allow one larger allocation (ARGB cursor)
927 if (size
!= AGP_PAGE_SIZE
) {
928 if (sc
->argb_cursor
!= NULL
)
931 /* Allocate memory for ARGB cursor, if we can. */
932 sc
->argb_cursor
= contigmalloc(size
, M_AGP
,
933 0, 0, ~0, PAGE_SIZE
, 0);
934 if (sc
->argb_cursor
== NULL
)
939 mem
= kmalloc(sizeof *mem
, M_AGP
, M_INTWAIT
);
940 mem
->am_id
= sc
->agp
.as_nextid
++;
943 if (type
!= 1 && (type
!= 2 || size
== AGP_PAGE_SIZE
))
944 mem
->am_obj
= vm_object_allocate(OBJT_DEFAULT
,
945 atop(round_page(size
)));
950 if (size
== AGP_PAGE_SIZE
) {
952 * Allocate and wire down the page now so that we can
953 * get its physical address.
957 m
= vm_page_grab(mem
->am_obj
, 0,
958 VM_ALLOC_NORMAL
|VM_ALLOC_ZERO
|VM_ALLOC_RETRY
);
959 if ((m
->flags
& PG_ZERO
) == 0)
960 vm_page_zero_fill(m
);
962 mem
->am_physical
= VM_PAGE_TO_PHYS(m
);
965 /* Our allocation is already nicely wired down for us.
966 * Just grab the physical address.
968 mem
->am_physical
= vtophys(sc
->argb_cursor
);
971 mem
->am_physical
= 0;
975 mem
->am_is_bound
= 0;
976 TAILQ_INSERT_TAIL(&sc
->agp
.as_memory
, mem
, am_link
);
977 sc
->agp
.as_allocated
+= size
;
983 agp_i810_free_memory(device_t dev
, struct agp_memory
*mem
)
985 struct agp_i810_softc
*sc
= device_get_softc(dev
);
987 if (mem
->am_is_bound
)
990 if (mem
->am_type
== 2) {
991 if (mem
->am_size
== AGP_PAGE_SIZE
) {
993 * Unwire the page which we wired in alloc_memory.
995 vm_page_t m
= vm_page_lookup(mem
->am_obj
, 0);
996 vm_page_unwire(m
, 0);
998 contigfree(sc
->argb_cursor
, mem
->am_size
, M_AGP
);
999 sc
->argb_cursor
= NULL
;
1003 sc
->agp
.as_allocated
-= mem
->am_size
;
1004 TAILQ_REMOVE(&sc
->agp
.as_memory
, mem
, am_link
);
1006 vm_object_deallocate(mem
->am_obj
);
1012 agp_i810_bind_memory(device_t dev
, struct agp_memory
*mem
,
1015 struct agp_i810_softc
*sc
= device_get_softc(dev
);
1018 /* Do some sanity checks first. */
1019 if (offset
< 0 || (offset
& (AGP_PAGE_SIZE
- 1)) != 0 ||
1020 offset
+ mem
->am_size
> AGP_GET_APERTURE(dev
)) {
1021 device_printf(dev
, "binding memory at bad offset %#x\n",
1026 if (mem
->am_type
== 2 && mem
->am_size
!= AGP_PAGE_SIZE
) {
1027 lockmgr(&sc
->agp
.as_lock
, LK_EXCLUSIVE
);
1028 if (mem
->am_is_bound
) {
1029 lockmgr(&sc
->agp
.as_lock
, LK_RELEASE
);
1032 /* The memory's already wired down, just stick it in the GTT. */
1033 for (i
= 0; i
< mem
->am_size
; i
+= AGP_PAGE_SIZE
) {
1034 agp_i810_write_gtt_entry(dev
, offset
+ i
,
1035 mem
->am_physical
+ i
, 1);
1038 mem
->am_offset
= offset
;
1039 mem
->am_is_bound
= 1;
1040 lockmgr(&sc
->agp
.as_lock
, LK_RELEASE
);
1044 if (mem
->am_type
!= 1)
1045 return agp_generic_bind_memory(dev
, mem
, offset
);
1047 if ( sc
->chiptype
!= CHIP_I810
)
1050 for (i
= 0; i
< mem
->am_size
; i
+= AGP_PAGE_SIZE
) {
1051 bus_write_4(sc
->sc_res
[0],
1052 AGP_I810_GTT
+ (i
>> AGP_PAGE_SHIFT
) * 4, i
| 3);
1059 agp_i810_unbind_memory(device_t dev
, struct agp_memory
*mem
)
1061 struct agp_i810_softc
*sc
= device_get_softc(dev
);
1064 if (mem
->am_type
== 2 && mem
->am_size
!= AGP_PAGE_SIZE
) {
1065 lockmgr(&sc
->agp
.as_lock
, LK_EXCLUSIVE
);
1066 if (!mem
->am_is_bound
) {
1067 lockmgr(&sc
->agp
.as_lock
, LK_RELEASE
);
1071 for (i
= 0; i
< mem
->am_size
; i
+= AGP_PAGE_SIZE
) {
1072 agp_i810_write_gtt_entry(dev
, mem
->am_offset
+ i
,
1076 mem
->am_is_bound
= 0;
1077 lockmgr(&sc
->agp
.as_lock
, LK_RELEASE
);
1081 if (mem
->am_type
!= 1)
1082 return agp_generic_unbind_memory(dev
, mem
);
1084 if ( sc
->chiptype
!= CHIP_I810
)
1087 for (i
= 0; i
< mem
->am_size
; i
+= AGP_PAGE_SIZE
) {
1088 bus_write_4(sc
->sc_res
[0],
1089 AGP_I810_GTT
+ (i
>> AGP_PAGE_SHIFT
) * 4, 0);
1095 static device_method_t agp_i810_methods
[] = {
1096 /* Device interface */
1097 DEVMETHOD(device_identify
, agp_i810_identify
),
1098 DEVMETHOD(device_probe
, agp_i810_probe
),
1099 DEVMETHOD(device_attach
, agp_i810_attach
),
1100 DEVMETHOD(device_detach
, agp_i810_detach
),
1101 DEVMETHOD(device_suspend
, bus_generic_suspend
),
1102 DEVMETHOD(device_resume
, agp_i810_resume
),
1105 DEVMETHOD(agp_get_aperture
, agp_generic_get_aperture
),
1106 DEVMETHOD(agp_set_aperture
, agp_i810_set_aperture
),
1107 DEVMETHOD(agp_bind_page
, agp_i810_bind_page
),
1108 DEVMETHOD(agp_unbind_page
, agp_i810_unbind_page
),
1109 DEVMETHOD(agp_flush_tlb
, agp_i810_flush_tlb
),
1110 DEVMETHOD(agp_enable
, agp_i810_enable
),
1111 DEVMETHOD(agp_alloc_memory
, agp_i810_alloc_memory
),
1112 DEVMETHOD(agp_free_memory
, agp_i810_free_memory
),
1113 DEVMETHOD(agp_bind_memory
, agp_i810_bind_memory
),
1114 DEVMETHOD(agp_unbind_memory
, agp_i810_unbind_memory
),
1119 static driver_t agp_i810_driver
= {
1122 sizeof(struct agp_i810_softc
),
1125 static devclass_t agp_devclass
;
1127 DRIVER_MODULE(agp_i810
, vgapci
, agp_i810_driver
, agp_devclass
, 0, 0);
1128 MODULE_DEPEND(agp_i810
, agp
, 1, 1, 1);
1129 MODULE_DEPEND(agp_i810
, pci
, 1, 1, 1);