2 * Copyright (c) 2000 Doug Rabson
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/dev/agp/agp_intel.c,v 1.36 2007/11/12 21:51:36 jhb Exp $
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/malloc.h>
32 #include <sys/kernel.h>
36 #include <bus/pci/pcivar.h>
37 #include <bus/pci/pcireg.h>
42 #include <vm/vm_object.h>
45 #define MAX_APSIZE 0x3f /* 256 MB */
47 struct agp_intel_softc
{
49 u_int32_t initial_aperture
; /* aperture size at startup */
50 struct agp_gatt
*gatt
;
52 u_int32_t current_aperture
; /* current aperture size */
56 agp_intel_match(device_t dev
)
58 if (pci_get_class(dev
) != PCIC_BRIDGE
59 || pci_get_subclass(dev
) != PCIS_BRIDGE_HOST
)
62 if (agp_find_caps(dev
) == 0)
65 switch (pci_get_devid(dev
)) {
66 /* Intel -- vendor 0x8086 */
68 return ("Intel 82443LX (440 LX) host to PCI bridge");
70 return ("Intel 82443BX (440 BX) host to PCI bridge");
72 return ("Intel 82443GX host to PCI bridge");
74 return ("Intel 82443GX host to AGP bridge");
76 return ("Intel 82815 (i815 GMCH) host to PCI bridge");
79 return ("Intel 82820 host to AGP bridge");
81 return ("Intel 82830 host to AGP bridge");
83 return ("Intel 82840 host to AGP bridge");
85 return ("Intel 82845 host to AGP bridge");
87 return ("Intel 82850 host to AGP bridge");
89 return ("Intel 82855 host to AGP bridge");
91 return ("Intel 82860 host to AGP bridge");
93 return ("Intel 82865 host to AGP bridge");
95 return ("Intel E7205 host to AGP bridge");
97 return ("Intel E7505 host to AGP bridge");
99 return ("Intel 82875P host to AGP bridge");
101 return ("Intel 82845G host to AGP bridge");
103 return ("Intel 82855GM host to AGP bridge");
110 agp_intel_probe(device_t dev
)
114 if (resource_disabled("agp", device_get_unit(dev
)))
116 desc
= agp_intel_match(dev
);
119 device_set_desc(dev
, desc
);
120 return (BUS_PROBE_DEFAULT
);
127 agp_intel_commit_gatt(device_t dev
)
129 struct agp_intel_softc
*sc
;
133 sc
= device_get_softc(dev
);
134 type
= pci_get_devid(dev
);
136 /* Install the gatt. */
137 pci_write_config(dev
, AGP_INTEL_ATTBASE
, sc
->gatt
->ag_physical
, 4);
139 /* Enable the GLTB and setup the control register. */
141 case 0x71908086: /* 440LX/EX */
142 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, 0x2080, 4);
144 case 0x71808086: /* 440BX */
146 * XXX: Should be 0xa080? Bit 9 is undefined, and
147 * bit 13 being on and bit 15 being clear is illegal.
149 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, 0x2280, 4);
152 value
= pci_read_config(dev
, AGP_INTEL_AGPCTRL
, 4);
153 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, value
| 0x80, 4);
156 /* Enable aperture accesses. */
158 case 0x25008086: /* i820 */
159 case 0x25018086: /* i820 */
160 pci_write_config(dev
, AGP_INTEL_I820_RDCR
,
161 (pci_read_config(dev
, AGP_INTEL_I820_RDCR
, 1)
164 case 0x1a308086: /* i845 */
165 case 0x25608086: /* i845G */
166 case 0x33408086: /* i855 */
167 case 0x35808086: /* i855GM */
168 case 0x25708086: /* i865 */
169 case 0x25788086: /* i875P */
170 pci_write_config(dev
, AGP_INTEL_I845_AGPM
,
171 (pci_read_config(dev
, AGP_INTEL_I845_AGPM
, 1)
174 case 0x1a218086: /* i840 */
175 case 0x25308086: /* i850 */
176 case 0x25318086: /* i860 */
177 case 0x255d8086: /* E7205 */
178 case 0x25508086: /* E7505 */
179 pci_write_config(dev
, AGP_INTEL_MCHCFG
,
180 (pci_read_config(dev
, AGP_INTEL_MCHCFG
, 2)
183 default: /* Intel Generic (maybe) */
184 pci_write_config(dev
, AGP_INTEL_NBXCFG
,
185 (pci_read_config(dev
, AGP_INTEL_NBXCFG
, 4)
186 & ~(1 << 10)) | (1 << 9), 4);
191 case 0x1a218086: /* i840 */
192 pci_write_config(dev
, AGP_INTEL_I8XX_ERRSTS
, 0xc000, 2);
194 case 0x25008086: /* i820 */
195 case 0x25018086: /* i820 */
196 case 0x1a308086: /* i845 */
197 case 0x25608086: /* i845G */
198 case 0x25308086: /* i850 */
199 case 0x33408086: /* i855 */
200 case 0x25318086: /* i860 */
201 case 0x25708086: /* i865 */
202 case 0x25788086: /* i875P */
203 case 0x255d8086: /* E7205 */
204 case 0x25508086: /* E7505 */
205 pci_write_config(dev
, AGP_INTEL_I8XX_ERRSTS
, 0x00ff, 2);
207 default: /* Intel Generic (maybe) */
208 pci_write_config(dev
, AGP_INTEL_ERRSTS
+ 1, 7, 1);
213 agp_intel_attach(device_t dev
)
215 struct agp_intel_softc
*sc
;
216 struct agp_gatt
*gatt
;
220 sc
= device_get_softc(dev
);
222 error
= agp_generic_attach(dev
);
226 /* Determine maximum supported aperture size. */
227 value
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1);
228 pci_write_config(dev
, AGP_INTEL_APSIZE
, MAX_APSIZE
, 1);
229 sc
->aperture_mask
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1) &
231 pci_write_config(dev
, AGP_INTEL_APSIZE
, value
, 1);
232 sc
->current_aperture
= sc
->initial_aperture
= AGP_GET_APERTURE(dev
);
233 if (sc
->initial_aperture
== 0) {
234 device_printf(dev
, "bad initial aperture size, disabling\n");
239 gatt
= agp_alloc_gatt(dev
);
244 * Probably contigmalloc failure. Try reducing the
245 * aperture so that the gatt size reduces.
247 if (AGP_SET_APERTURE(dev
, AGP_GET_APERTURE(dev
) / 2)) {
248 agp_generic_detach(dev
);
254 agp_intel_commit_gatt(dev
);
260 agp_intel_detach(device_t dev
)
262 struct agp_intel_softc
*sc
;
265 sc
= device_get_softc(dev
);
269 /* Disable aperture accesses. */
270 switch (pci_get_devid(dev
)) {
271 case 0x25008086: /* i820 */
272 case 0x25018086: /* i820 */
273 reg
= pci_read_config(dev
, AGP_INTEL_I820_RDCR
, 1) & ~(1 << 1);
274 kprintf("%s: set RDCR to %02x\n", __func__
, reg
& 0xff);
275 pci_write_config(dev
, AGP_INTEL_I820_RDCR
, reg
, 1);
277 case 0x1a308086: /* i845 */
278 case 0x25608086: /* i845G */
279 case 0x33408086: /* i855 */
280 case 0x35808086: /* i855GM */
281 case 0x25708086: /* i865 */
282 case 0x25788086: /* i875P */
283 reg
= pci_read_config(dev
, AGP_INTEL_I845_AGPM
, 1) & ~(1 << 1);
284 kprintf("%s: set AGPM to %02x\n", __func__
, reg
& 0xff);
285 pci_write_config(dev
, AGP_INTEL_I845_AGPM
, reg
, 1);
287 case 0x1a218086: /* i840 */
288 case 0x25308086: /* i850 */
289 case 0x25318086: /* i860 */
290 case 0x255d8086: /* E7205 */
291 case 0x25508086: /* E7505 */
292 reg
= pci_read_config(dev
, AGP_INTEL_MCHCFG
, 2) & ~(1 << 9);
293 kprintf("%s: set MCHCFG to %x04\n", __func__
, reg
& 0xffff);
294 pci_write_config(dev
, AGP_INTEL_MCHCFG
, reg
, 2);
296 default: /* Intel Generic (maybe) */
297 reg
= pci_read_config(dev
, AGP_INTEL_NBXCFG
, 4) & ~(1 << 9);
298 kprintf("%s: set NBXCFG to %08x\n", __func__
, reg
);
299 pci_write_config(dev
, AGP_INTEL_NBXCFG
, reg
, 4);
301 pci_write_config(dev
, AGP_INTEL_ATTBASE
, 0, 4);
302 AGP_SET_APERTURE(dev
, sc
->initial_aperture
);
303 agp_free_gatt(sc
->gatt
);
310 agp_intel_resume(device_t dev
)
312 struct agp_intel_softc
*sc
;
313 sc
= device_get_softc(dev
);
315 AGP_SET_APERTURE(dev
, sc
->current_aperture
);
316 agp_intel_commit_gatt(dev
);
317 return (bus_generic_resume(dev
));
321 agp_intel_get_aperture(device_t dev
)
323 struct agp_intel_softc
*sc
;
326 sc
= device_get_softc(dev
);
328 apsize
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1) & sc
->aperture_mask
;
331 * The size is determined by the number of low bits of
332 * register APBASE which are forced to zero. The low 22 bits
333 * are always forced to zero and each zero bit in the apsize
334 * field just read forces the corresponding bit in the 27:22
335 * to be zero. We calculate the aperture size accordingly.
337 return ((((apsize
^ sc
->aperture_mask
) << 22) | ((1 << 22) - 1)) + 1);
341 agp_intel_set_aperture(device_t dev
, u_int32_t aperture
)
343 struct agp_intel_softc
*sc
;
346 sc
= device_get_softc(dev
);
349 * Reverse the magic from get_aperture.
351 apsize
= ((aperture
- 1) >> 22) ^ sc
->aperture_mask
;
354 * Double check for sanity.
356 if ((((apsize
^ sc
->aperture_mask
) << 22) | ((1 << 22) - 1)) + 1 != aperture
)
359 sc
->current_aperture
= apsize
;
361 pci_write_config(dev
, AGP_INTEL_APSIZE
, apsize
, 1);
367 agp_intel_bind_page(device_t dev
, vm_offset_t offset
, vm_offset_t physical
)
369 struct agp_intel_softc
*sc
;
371 sc
= device_get_softc(dev
);
373 if (offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
))
376 sc
->gatt
->ag_virtual
[offset
>> AGP_PAGE_SHIFT
] = physical
| 0x17;
381 agp_intel_unbind_page(device_t dev
, vm_offset_t offset
)
383 struct agp_intel_softc
*sc
;
385 sc
= device_get_softc(dev
);
387 if (offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
))
390 sc
->gatt
->ag_virtual
[offset
>> AGP_PAGE_SHIFT
] = 0;
395 agp_intel_flush_tlb(device_t dev
)
399 val
= pci_read_config(dev
, AGP_INTEL_AGPCTRL
, 4);
400 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, val
& ~(1 << 7), 4);
401 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, val
, 4);
404 static device_method_t agp_intel_methods
[] = {
405 /* Device interface */
406 DEVMETHOD(device_probe
, agp_intel_probe
),
407 DEVMETHOD(device_attach
, agp_intel_attach
),
408 DEVMETHOD(device_detach
, agp_intel_detach
),
409 DEVMETHOD(device_shutdown
, bus_generic_shutdown
),
410 DEVMETHOD(device_suspend
, bus_generic_suspend
),
411 DEVMETHOD(device_resume
, agp_intel_resume
),
414 DEVMETHOD(agp_get_aperture
, agp_intel_get_aperture
),
415 DEVMETHOD(agp_set_aperture
, agp_intel_set_aperture
),
416 DEVMETHOD(agp_bind_page
, agp_intel_bind_page
),
417 DEVMETHOD(agp_unbind_page
, agp_intel_unbind_page
),
418 DEVMETHOD(agp_flush_tlb
, agp_intel_flush_tlb
),
419 DEVMETHOD(agp_enable
, agp_generic_enable
),
420 DEVMETHOD(agp_alloc_memory
, agp_generic_alloc_memory
),
421 DEVMETHOD(agp_free_memory
, agp_generic_free_memory
),
422 DEVMETHOD(agp_bind_memory
, agp_generic_bind_memory
),
423 DEVMETHOD(agp_unbind_memory
, agp_generic_unbind_memory
),
428 static driver_t agp_intel_driver
= {
431 sizeof(struct agp_intel_softc
),
434 static devclass_t agp_devclass
;
436 DRIVER_MODULE(agp_intel
, pci
, agp_intel_driver
, agp_devclass
, NULL
, NULL
);
437 MODULE_DEPEND(agp_intel
, agp
, 1, 1, 1);
438 MODULE_DEPEND(agp_intel
, pci
, 1, 1, 1);