aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/agp
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2005-06-26 04:01:11 +0000
committerEric Anholt <anholt@FreeBSD.org>2005-06-26 04:01:11 +0000
commit11b0d58251f354c5d070c236eef696745803dd20 (patch)
tree92a45805f0f4a45c2280f2c2510ceed29e2af4c5 /sys/dev/agp
parent68d376254cc2b9f3ae4bf572f5cf73d9db59cad1 (diff)
Notes
Diffstat (limited to 'sys/dev/agp')
-rw-r--r--sys/dev/agp/agp_via.c34
1 files changed, 27 insertions, 7 deletions
diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c
index 118b9068d4d29..f2cd381f27348 100644
--- a/sys/dev/agp/agp_via.c
+++ b/sys/dev/agp/agp_via.c
@@ -211,11 +211,22 @@ agp_via_attach(device_t dev)
}
sc->gatt = gatt;
- /* Install the gatt. */
- pci_write_config(dev, sc->regs[REG_ATTBASE], gatt->ag_physical | 3, 4);
-
- /* Enable the aperture. */
- pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x0f, 4);
+ if (sc->regs == via_v2_regs) {
+ /* Install the gatt. */
+ pci_write_config(dev, sc->regs[REG_ATTBASE], gatt->ag_physical | 3, 4);
+
+ /* Enable the aperture. */
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x0f, 4);
+ } else {
+ u_int32_t gartctrl;
+
+ /* Install the gatt. */
+ pci_write_config(dev, sc->regs[REG_ATTBASE], gatt->ag_physical, 4);
+
+ /* Enable the aperture. */
+ gartctrl = pci_read_config(dev, sc->regs[REG_ATTBASE], 4);
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], gartctrl | (3 << 7), 4);
+ }
return 0;
}
@@ -306,9 +317,18 @@ static void
agp_via_flush_tlb(device_t dev)
{
struct agp_via_softc *sc = device_get_softc(dev);
+ u_int32_t gartctrl;
- pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x8f, 4);
- pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x0f, 4);
+ if (sc->regs == via_v2_regs) {
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x8f, 4);
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], 0x0f, 4);
+ } else {
+ gartctrl = pci_read_config(dev, sc->regs[REG_GARTCTRL], 4);
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], gartctrl &
+ ~(1 << 7), 4);
+ pci_write_config(dev, sc->regs[REG_GARTCTRL], gartctrl, 4);
+ }
+
}
static device_method_t agp_via_methods[] = {