summaryrefslogtreecommitdiffstats
path: root/sys/dev/agp
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2007-09-21 02:10:13 +0000
committerkevlo <kevlo@FreeBSD.org>2007-09-21 02:10:13 +0000
commitbe5effe1578253fec824b4ca40856aa85c5bd32d (patch)
tree4c4dac0e10152c416fab2732f073f22ce2ae2e27 /sys/dev/agp
parentee96f0aa6f321a84319c55663b2a1def01470a55 (diff)
downloadFreeBSD-src-be5effe1578253fec824b4ca40856aa85c5bd32d.zip
FreeBSD-src-be5effe1578253fec824b4ca40856aa85c5bd32d.tar.gz
- Add the device ID for the VIA VT3324 (CX700) chipset.
- Set and Get aperture size correctly for VIA's AGP3 chipsets. Approved by: re (kensmith)
Diffstat (limited to 'sys/dev/agp')
-rw-r--r--sys/dev/agp/agp_via.c104
1 files changed, 83 insertions, 21 deletions
diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c
index 8d69a5a..aa6d640 100644
--- a/sys/dev/agp/agp_via.c
+++ b/sys/dev/agp/agp_via.c
@@ -85,6 +85,8 @@ agp_via_match(device_t dev)
return ("VIA 3296 (P4M800) host to PCI bridge");
case 0x03051106:
return ("VIA 82C8363 (Apollo KT133x/KM133) host to PCI bridge");
+ case 0x03241106:
+ return ("VIA VT3324 (CX700) host to PCI bridge");
case 0x03911106:
return ("VIA 8371 (Apollo KX133) host to PCI bridge");
case 0x05011106:
@@ -166,6 +168,7 @@ agp_via_attach(device_t dev)
case 0x02591106:
case 0x02691106:
case 0x02961106:
+ case 0x03241106:
case 0x31231106:
case 0x31681106:
case 0x31891106:
@@ -227,6 +230,9 @@ agp_via_attach(device_t dev)
pci_write_config(dev, sc->regs[REG_GARTCTRL], gartctrl | (3 << 7), 4);
}
+ device_printf(dev, "aperture size is %dM\n",
+ sc->initial_aperture / 1024 / 1024);
+
return 0;
}
@@ -254,37 +260,93 @@ agp_via_get_aperture(device_t dev)
struct agp_via_softc *sc = device_get_softc(dev);
u_int32_t apsize;
- apsize = pci_read_config(dev, sc->regs[REG_APSIZE], 1) & 0x1f;
+ if (sc->regs == via_v2_regs) {
+ apsize = pci_read_config(dev, sc->regs[REG_APSIZE], 1) & 0x1f;
- /*
- * The size is determined by the number of low bits of
- * register APBASE which are forced to zero. The low 20 bits
- * are always forced to zero and each zero bit in the apsize
- * field just read forces the corresponding bit in the 27:20
- * to be zero. We calculate the aperture size accordingly.
- */
- return (((apsize ^ 0xff) << 20) | ((1 << 20) - 1)) + 1;
+ /*
+ * The size is determined by the number of low bits of
+ * register APBASE which are forced to zero. The low 20 bits
+ * are always forced to zero and each zero bit in the apsize
+ * field just read forces the corresponding bit in the 27:20
+ * to be zero. We calculate the aperture size accordingly.
+ */
+ return (((apsize ^ 0xff) << 20) | ((1 << 20) - 1)) + 1;
+ } else {
+ apsize = pci_read_config(dev, sc->regs[REG_APSIZE], 2) & 0xfff;
+ switch (apsize) {
+ case 0x800:
+ return 0x80000000;
+ case 0xc00:
+ return 0x40000000;
+ case 0xe00:
+ return 0x20000000;
+ case 0xf00:
+ return 0x10000000;
+ case 0xf20:
+ return 0x08000000;
+ case 0xf30:
+ return 0x04000000;
+ case 0xf38:
+ return 0x02000000;
+ default:
+ device_printf(dev, "Invalid aperture setting 0x%x",
+ pci_read_config(dev, sc->regs[REG_APSIZE], 2));
+ return 0;
+ }
+ }
}
static int
agp_via_set_aperture(device_t dev, u_int32_t aperture)
{
struct agp_via_softc *sc = device_get_softc(dev);
- u_int32_t apsize;
-
- /*
- * Reverse the magic from get_aperture.
- */
- apsize = ((aperture - 1) >> 20) ^ 0xff;
+ u_int32_t apsize, key, val;
- /*
- * Double check for sanity.
- */
- if ((((apsize ^ 0xff) << 20) | ((1 << 20) - 1)) + 1 != aperture)
- return EINVAL;
+ if (sc->regs == via_v2_regs) {
+ /*
+ * Reverse the magic from get_aperture.
+ */
+ apsize = ((aperture - 1) >> 20) ^ 0xff;
- pci_write_config(dev, sc->regs[REG_APSIZE], apsize, 1);
+ /*
+ * Double check for sanity.
+ */
+ if ((((apsize ^ 0xff) << 20) | ((1 << 20) - 1)) + 1 != aperture)
+ return EINVAL;
+ pci_write_config(dev, sc->regs[REG_APSIZE], apsize, 1);
+ } else {
+ switch (aperture) {
+ case 0x80000000:
+ key = 0x800;
+ break;
+ case 0x40000000:
+ key = 0xc00;
+ break;
+ case 0x20000000:
+ key = 0xe00;
+ break;
+ case 0x10000000:
+ key = 0xf00;
+ break;
+ case 0x08000000:
+ key = 0xf20;
+ break;
+ case 0x04000000:
+ key = 0xf30;
+ break;
+ case 0x02000000:
+ key = 0xf38;
+ break;
+ default:
+ device_printf(dev, "Invalid aperture size (%dMb)\n",
+ aperture / 1024 / 1024);
+ return EINVAL;
+ }
+ val = pci_read_config(dev, sc->regs[REG_APSIZE], 2);
+ pci_write_config(dev, sc->regs[REG_APSIZE],
+ ((val & ~0xfff) | key), 2);
+ }
return 0;
}
OpenPOWER on IntegriCloud