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/pci/agp_intel.c,v 1.1.2.5 2003/06/02 17:38:19 jhb Exp $
27 * $DragonFly: src/sys/dev/agp/agp_intel.c,v 1.7 2006/12/23 00:26:14 swildner Exp $
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/malloc.h>
36 #include <sys/kernel.h>
40 #include <bus/pci/pcivar.h>
41 #include <bus/pci/pcireg.h>
46 #include <vm/vm_object.h>
49 #define MAX_APSIZE 0x3f /* 256 MB */
51 struct agp_intel_softc
{
53 u_int32_t initial_aperture
; /* aperture size at startup */
54 struct agp_gatt
*gatt
;
59 agp_intel_match(device_t dev
)
61 if (pci_get_class(dev
) != PCIC_BRIDGE
62 || pci_get_subclass(dev
) != PCIS_BRIDGE_HOST
)
65 if (agp_find_caps(dev
) == 0)
68 switch (pci_get_devid(dev
)) {
69 /* Intel -- vendor 0x8086 */
71 return ("Intel 82443LX (440 LX) host to PCI bridge");
74 return ("Intel 82443BX (440 BX) host to PCI bridge");
77 return ("Intel 82443GX host to PCI bridge");
80 return ("Intel 82443GX host to AGP bridge");
83 return ("Intel 82815 (i815 GMCH) host to PCI bridge");
87 return ("Intel 82820 host to AGP bridge");
90 return ("Intel 82830 host to AGP bridge");
93 return ("Intel 82840 host to AGP bridge");
96 return ("Intel 82845 host to AGP bridge");
99 return ("Intel 82850 host to AGP bridge");
102 return ("Intel 82855 host to AGP bridge");
105 return ("Intel 82860 host to AGP bridge");
108 return ("Intel 82865 host to AGP bridge");
111 return ("Intel 82875P host to AGP bridge");
113 case 0x25608086: /* i845G */
114 return ("Intel 82845G host to AGP bridge");
117 if (pci_get_vendor(dev
) == 0x8086)
118 return ("Intel Generic host to PCI bridge");
124 agp_intel_probe(device_t dev
)
128 desc
= agp_intel_match(dev
);
131 device_set_desc(dev
, desc
);
139 agp_intel_attach(device_t dev
)
141 struct agp_intel_softc
*sc
= device_get_softc(dev
);
142 struct agp_gatt
*gatt
;
143 u_int32_t type
= pci_get_devid(dev
);
147 error
= agp_generic_attach(dev
);
151 /* Determine maximum supported aperture size. */
152 value
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1);
153 pci_write_config(dev
, AGP_INTEL_APSIZE
, MAX_APSIZE
, 1);
154 sc
->aperture_mask
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1) &
156 pci_write_config(dev
, AGP_INTEL_APSIZE
, value
, 1);
157 sc
->initial_aperture
= AGP_GET_APERTURE(dev
);
160 gatt
= agp_alloc_gatt(dev
);
165 * Probably contigmalloc failure. Try reducing the
166 * aperture so that the gatt size reduces.
168 if (AGP_SET_APERTURE(dev
, AGP_GET_APERTURE(dev
) / 2)) {
169 agp_generic_detach(dev
);
175 /* Install the gatt. */
176 pci_write_config(dev
, AGP_INTEL_ATTBASE
, gatt
->ag_physical
, 4);
178 /* Enable the GLTB and setup the control register. */
180 case 0x71908086: /* 440LX/EX */
181 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, 0x2080, 4);
183 case 0x71808086: /* 440BX */
185 * XXX: Should be 0xa080? Bit 9 is undefined, and
186 * bit 13 being on and bit 15 being clear is illegal.
188 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, 0x2280, 4);
191 value
= pci_read_config(dev
, AGP_INTEL_AGPCTRL
, 4);
192 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, value
| 0x80, 4);
195 /* Enable things, clear errors etc. */
197 case 0x1a218086: /* i840 */
198 case 0x25308086: /* i850 */
199 case 0x25318086: /* i860 */
200 pci_write_config(dev
, AGP_INTEL_MCHCFG
,
201 (pci_read_config(dev
, AGP_INTEL_MCHCFG
, 2)
205 case 0x25008086: /* i820 */
206 case 0x25018086: /* i820 */
207 pci_write_config(dev
, AGP_INTEL_I820_RDCR
,
208 (pci_read_config(dev
, AGP_INTEL_I820_RDCR
, 1)
212 case 0x1a308086: /* i845 */
213 case 0x33408086: /* i855 */
214 case 0x25708086: /* i865 */
215 case 0x25788086: /* i875P */
216 case 0x25608086: /* i845G */
217 pci_write_config(dev
, AGP_INTEL_I845_MCHCFG
,
218 (pci_read_config(dev
, AGP_INTEL_I845_MCHCFG
, 1)
222 default: /* Intel Generic (maybe) */
223 pci_write_config(dev
, AGP_INTEL_NBXCFG
,
224 (pci_read_config(dev
, AGP_INTEL_NBXCFG
, 4)
225 & ~(1 << 10)) | (1 << 9), 4);
229 case 0x1a218086: /* i840 */
230 pci_write_config(dev
, AGP_INTEL_I8XX_ERRSTS
, 0xc000, 2);
233 case 0x25008086: /* i820 */
234 case 0x25018086: /* i820 */
235 case 0x1a308086: /* i845 */
236 case 0x25308086: /* i850 */
237 case 0x33408086: /* i855 */
238 case 0x25318086: /* i860 */
239 case 0x25708086: /* i865 */
240 case 0x25788086: /* i875P */
241 case 0x25608086: /* i845G */
242 pci_write_config(dev
, AGP_INTEL_I8XX_ERRSTS
, 0x00ff, 2);
245 default: /* Intel Generic (maybe) */
246 pci_write_config(dev
, AGP_INTEL_ERRSTS
+ 1, 7, 1);
253 agp_intel_detach(device_t dev
)
255 struct agp_intel_softc
*sc
= device_get_softc(dev
);
256 u_int32_t type
= pci_get_devid(dev
);
259 error
= agp_generic_detach(dev
);
264 case 0x1a218086: /* i840 */
265 case 0x25308086: /* i850 */
266 case 0x25318086: /* i860 */
267 kprintf("%s: set MCHCFG to %x\n", __func__
, (unsigned)
268 (pci_read_config(dev
, AGP_INTEL_MCHCFG
, 2)
270 pci_write_config(dev
, AGP_INTEL_MCHCFG
,
271 (pci_read_config(dev
, AGP_INTEL_MCHCFG
, 2)
274 case 0x25008086: /* i820 */
275 case 0x25018086: /* i820 */
276 kprintf("%s: set RDCR to %x\n", __func__
, (unsigned)
277 (pci_read_config(dev
, AGP_INTEL_I820_RDCR
, 1)
279 pci_write_config(dev
, AGP_INTEL_I820_RDCR
,
280 (pci_read_config(dev
, AGP_INTEL_I820_RDCR
, 1)
283 case 0x1a308086: /* i845 */
284 case 0x25608086: /* i845G */
285 case 0x33408086: /* i855 */
286 case 0x25708086: /* i865 */
287 case 0x25788086: /* i875P */
288 kprintf("%s: set MCHCFG to %x\n", __func__
, (unsigned)
289 (pci_read_config(dev
, AGP_INTEL_I845_MCHCFG
, 1)
291 pci_write_config(dev
, AGP_INTEL_MCHCFG
,
292 (pci_read_config(dev
, AGP_INTEL_I845_MCHCFG
, 1)
295 default: /* Intel Generic (maybe) */
296 kprintf("%s: set NBXCFG to %x\n", __func__
,
297 (pci_read_config(dev
, AGP_INTEL_NBXCFG
, 4)
299 pci_write_config(dev
, AGP_INTEL_NBXCFG
,
300 (pci_read_config(dev
, AGP_INTEL_NBXCFG
, 4)
303 pci_write_config(dev
, AGP_INTEL_ATTBASE
, 0, 4);
304 AGP_SET_APERTURE(dev
, sc
->initial_aperture
);
305 agp_free_gatt(sc
->gatt
);
311 agp_intel_get_aperture(device_t dev
)
313 struct agp_intel_softc
*sc
= device_get_softc(dev
);
316 apsize
= pci_read_config(dev
, AGP_INTEL_APSIZE
, 1) & sc
->aperture_mask
;
319 * The size is determined by the number of low bits of
320 * register APBASE which are forced to zero. The low 22 bits
321 * are always forced to zero and each zero bit in the apsize
322 * field just read forces the corresponding bit in the 27:22
323 * to be zero. We calculate the aperture size accordingly.
325 return (((apsize
^ sc
->aperture_mask
) << 22) | ((1 << 22) - 1)) + 1;
329 agp_intel_set_aperture(device_t dev
, u_int32_t aperture
)
331 struct agp_intel_softc
*sc
= device_get_softc(dev
);
335 * Reverse the magic from get_aperture.
337 apsize
= ((aperture
- 1) >> 22) ^ sc
->aperture_mask
;
340 * Double check for sanity.
342 if ((((apsize
^ sc
->aperture_mask
) << 22) | ((1 << 22) - 1)) + 1 != aperture
)
345 pci_write_config(dev
, AGP_INTEL_APSIZE
, apsize
, 1);
351 agp_intel_bind_page(device_t dev
, int offset
, vm_offset_t physical
)
353 struct agp_intel_softc
*sc
= device_get_softc(dev
);
355 if (offset
< 0 || offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
))
358 sc
->gatt
->ag_virtual
[offset
>> AGP_PAGE_SHIFT
] = physical
| 0x17;
363 agp_intel_unbind_page(device_t dev
, int offset
)
365 struct agp_intel_softc
*sc
= device_get_softc(dev
);
367 if (offset
< 0 || offset
>= (sc
->gatt
->ag_entries
<< AGP_PAGE_SHIFT
))
370 sc
->gatt
->ag_virtual
[offset
>> AGP_PAGE_SHIFT
] = 0;
375 agp_intel_flush_tlb(device_t dev
)
379 val
= pci_read_config(dev
, AGP_INTEL_AGPCTRL
, 4);
380 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, val
& ~(1 << 7), 4);
381 pci_write_config(dev
, AGP_INTEL_AGPCTRL
, val
, 4);
384 static device_method_t agp_intel_methods
[] = {
385 /* Device interface */
386 DEVMETHOD(device_probe
, agp_intel_probe
),
387 DEVMETHOD(device_attach
, agp_intel_attach
),
388 DEVMETHOD(device_detach
, agp_intel_detach
),
389 DEVMETHOD(device_shutdown
, bus_generic_shutdown
),
390 DEVMETHOD(device_suspend
, bus_generic_suspend
),
391 DEVMETHOD(device_resume
, bus_generic_resume
),
394 DEVMETHOD(agp_get_aperture
, agp_intel_get_aperture
),
395 DEVMETHOD(agp_set_aperture
, agp_intel_set_aperture
),
396 DEVMETHOD(agp_bind_page
, agp_intel_bind_page
),
397 DEVMETHOD(agp_unbind_page
, agp_intel_unbind_page
),
398 DEVMETHOD(agp_flush_tlb
, agp_intel_flush_tlb
),
399 DEVMETHOD(agp_enable
, agp_generic_enable
),
400 DEVMETHOD(agp_alloc_memory
, agp_generic_alloc_memory
),
401 DEVMETHOD(agp_free_memory
, agp_generic_free_memory
),
402 DEVMETHOD(agp_bind_memory
, agp_generic_bind_memory
),
403 DEVMETHOD(agp_unbind_memory
, agp_generic_unbind_memory
),
408 static driver_t agp_intel_driver
= {
411 sizeof(struct agp_intel_softc
),
414 static devclass_t agp_devclass
;
416 DRIVER_MODULE(agp_intel
, pci
, agp_intel_driver
, agp_devclass
, 0, 0);
417 MODULE_DEPEND(agp_intel
, agp
, 1, 1, 1);
418 MODULE_DEPEND(agp_intel
, pci
, 1, 1, 1);