1 /*- 2 * Copyright (c) 2000 Doug Rabson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 13 * 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 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/malloc.h> 33 #include <sys/kernel.h> 34 #include <sys/module.h> 35 #include <sys/bus.h> 36 #include <sys/lock.h> 37 #include <sys/mutex.h> 38 #include <sys/proc.h> 39 40 #include <dev/agp/agppriv.h> 41 #include <dev/agp/agpreg.h> 42 #include <dev/pci/pcivar.h> 43 #include <dev/pci/pcireg.h> 44 45 #include <vm/vm.h> 46 #include <vm/vm_object.h> 47 #include <vm/pmap.h> 48 49 #define MAX_APSIZE 0x3f /* 256 MB */ 50 51 struct agp_intel_softc { 52 struct agp_softc agp; 53 u_int32_t initial_aperture; /* aperture size at startup */ 54 struct agp_gatt *gatt; 55 u_int aperture_mask; 56 u_int32_t current_aperture; /* current aperture size */ 57 }; 58 59 static const char* 60 agp_intel_match(device_t dev) 61 { 62 if (pci_get_class(dev) != PCIC_BRIDGE 63 || pci_get_subclass(dev) != PCIS_BRIDGE_HOST) 64 return (NULL); 65 66 if (agp_find_caps(dev) == 0) 67 return (NULL); 68 69 switch (pci_get_devid(dev)) { 70 /* Intel -- vendor 0x8086 */ 71 case 0x71808086: 72 return ("Intel 82443LX (440 LX) host to PCI bridge"); 73 case 0x71908086: 74 return ("Intel 82443BX (440 BX) host to PCI bridge"); 75 case 0x71a08086: 76 return ("Intel 82443GX host to PCI bridge"); 77 case 0x71a18086: 78 return ("Intel 82443GX host to AGP bridge"); 79 } 80 81 return (NULL); 82 } 83 84 static int 85 agp_intel_probe(device_t dev) 86 { 87 const char *desc; 88 89 if (resource_disabled("agp", device_get_unit(dev))) 90 return (ENXIO); 91 desc = agp_intel_match(dev); 92 if (desc) { 93 device_set_desc(dev, desc); 94 return (BUS_PROBE_DEFAULT); 95 } 96 97 return (ENXIO); 98 } 99 100 static void 101 agp_intel_commit_gatt(device_t dev) 102 { 103 struct agp_intel_softc *sc; 104 u_int32_t type; 105 u_int32_t value; 106 107 sc = device_get_softc(dev); 108 type = pci_get_devid(dev); 109 110 /* Install the gatt. */ 111 pci_write_config(dev, AGP_INTEL_ATTBASE, sc->gatt->ag_physical, 4); 112 113 /* Enable the GLTB and setup the control register. */ 114 switch (type) { 115 case 0x71908086: /* 440LX/EX */ 116 pci_write_config(dev, AGP_INTEL_AGPCTRL, 0x2080, 4); 117 break; 118 case 0x71808086: /* 440BX */ 119 /* 120 * XXX: Should be 0xa080? Bit 9 is undefined, and 121 * bit 13 being on and bit 15 being clear is illegal. 122 */ 123 pci_write_config(dev, AGP_INTEL_AGPCTRL, 0x2280, 4); 124 break; 125 default: 126 value = pci_read_config(dev, AGP_INTEL_AGPCTRL, 4); 127 pci_write_config(dev, AGP_INTEL_AGPCTRL, value | 0x80, 4); 128 } 129 130 /* Enable aperture accesses. */ 131 switch (type) { 132 default: /* Intel Generic (maybe) */ 133 pci_write_config(dev, AGP_INTEL_NBXCFG, 134 (pci_read_config(dev, AGP_INTEL_NBXCFG, 4) 135 & ~(1 << 10)) | (1 << 9), 4); 136 } 137 138 /* Clear errors. */ 139 switch (type) { 140 default: /* Intel Generic (maybe) */ 141 pci_write_config(dev, AGP_INTEL_ERRSTS + 1, 7, 1); 142 } 143 } 144 145 static int 146 agp_intel_attach(device_t dev) 147 { 148 struct agp_intel_softc *sc; 149 struct agp_gatt *gatt; 150 u_int32_t value; 151 int error; 152 153 sc = device_get_softc(dev); 154 155 error = agp_generic_attach(dev); 156 if (error) 157 return (error); 158 159 /* Determine maximum supported aperture size. */ 160 value = pci_read_config(dev, AGP_INTEL_APSIZE, 1); 161 pci_write_config(dev, AGP_INTEL_APSIZE, MAX_APSIZE, 1); 162 sc->aperture_mask = pci_read_config(dev, AGP_INTEL_APSIZE, 1) & 163 MAX_APSIZE; 164 pci_write_config(dev, AGP_INTEL_APSIZE, value, 1); 165 sc->current_aperture = sc->initial_aperture = AGP_GET_APERTURE(dev); 166 167 for (;;) { 168 gatt = agp_alloc_gatt(dev); 169 if (gatt) 170 break; 171 172 /* 173 * Probably contigmalloc failure. Try reducing the 174 * aperture so that the gatt size reduces. 175 */ 176 if (AGP_SET_APERTURE(dev, AGP_GET_APERTURE(dev) / 2)) { 177 agp_generic_detach(dev); 178 return (ENOMEM); 179 } 180 } 181 sc->gatt = gatt; 182 183 agp_intel_commit_gatt(dev); 184 185 return (0); 186 } 187 188 static int 189 agp_intel_detach(device_t dev) 190 { 191 struct agp_intel_softc *sc; 192 u_int32_t reg; 193 194 sc = device_get_softc(dev); 195 196 agp_free_cdev(dev); 197 198 /* Disable aperture accesses. */ 199 switch (pci_get_devid(dev)) { 200 default: /* Intel Generic (maybe) */ 201 reg = pci_read_config(dev, AGP_INTEL_NBXCFG, 4) & ~(1 << 9); 202 printf("%s: set NBXCFG to %08x\n", __func__, reg); 203 pci_write_config(dev, AGP_INTEL_NBXCFG, reg, 4); 204 } 205 pci_write_config(dev, AGP_INTEL_ATTBASE, 0, 4); 206 AGP_SET_APERTURE(dev, sc->initial_aperture); 207 agp_free_gatt(sc->gatt); 208 agp_free_res(dev); 209 210 return (0); 211 } 212 213 static int 214 agp_intel_resume(device_t dev) 215 { 216 struct agp_intel_softc *sc; 217 sc = device_get_softc(dev); 218 219 AGP_SET_APERTURE(dev, sc->current_aperture); 220 agp_intel_commit_gatt(dev); 221 return (bus_generic_resume(dev)); 222 } 223 224 static u_int32_t 225 agp_intel_get_aperture(device_t dev) 226 { 227 struct agp_intel_softc *sc; 228 u_int32_t apsize; 229 230 sc = device_get_softc(dev); 231 232 apsize = pci_read_config(dev, AGP_INTEL_APSIZE, 1) & sc->aperture_mask; 233 234 /* 235 * The size is determined by the number of low bits of 236 * register APBASE which are forced to zero. The low 22 bits 237 * are always forced to zero and each zero bit in the apsize 238 * field just read forces the corresponding bit in the 27:22 239 * to be zero. We calculate the aperture size accordingly. 240 */ 241 return ((((apsize ^ sc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1); 242 } 243 244 static int 245 agp_intel_set_aperture(device_t dev, u_int32_t aperture) 246 { 247 struct agp_intel_softc *sc; 248 u_int32_t apsize; 249 250 sc = device_get_softc(dev); 251 252 /* 253 * Reverse the magic from get_aperture. 254 */ 255 apsize = ((aperture - 1) >> 22) ^ sc->aperture_mask; 256 257 /* 258 * Double check for sanity. 259 */ 260 if ((((apsize ^ sc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1 != aperture) 261 return (EINVAL); 262 263 sc->current_aperture = apsize; 264 265 pci_write_config(dev, AGP_INTEL_APSIZE, apsize, 1); 266 267 return (0); 268 } 269 270 static int 271 agp_intel_bind_page(device_t dev, vm_offset_t offset, vm_offset_t physical) 272 { 273 struct agp_intel_softc *sc; 274 275 sc = device_get_softc(dev); 276 277 if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT)) 278 return (EINVAL); 279 280 sc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical | 0x17; 281 return (0); 282 } 283 284 static int 285 agp_intel_unbind_page(device_t dev, vm_offset_t offset) 286 { 287 struct agp_intel_softc *sc; 288 289 sc = device_get_softc(dev); 290 291 if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT)) 292 return (EINVAL); 293 294 sc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0; 295 return (0); 296 } 297 298 static void 299 agp_intel_flush_tlb(device_t dev) 300 { 301 u_int32_t val; 302 303 val = pci_read_config(dev, AGP_INTEL_AGPCTRL, 4); 304 pci_write_config(dev, AGP_INTEL_AGPCTRL, val & ~(1 << 7), 4); 305 pci_write_config(dev, AGP_INTEL_AGPCTRL, val, 4); 306 } 307 308 static device_method_t agp_intel_methods[] = { 309 /* Device interface */ 310 DEVMETHOD(device_probe, agp_intel_probe), 311 DEVMETHOD(device_attach, agp_intel_attach), 312 DEVMETHOD(device_detach, agp_intel_detach), 313 DEVMETHOD(device_shutdown, bus_generic_shutdown), 314 DEVMETHOD(device_suspend, bus_generic_suspend), 315 DEVMETHOD(device_resume, agp_intel_resume), 316 317 /* AGP interface */ 318 DEVMETHOD(agp_get_aperture, agp_intel_get_aperture), 319 DEVMETHOD(agp_set_aperture, agp_intel_set_aperture), 320 DEVMETHOD(agp_bind_page, agp_intel_bind_page), 321 DEVMETHOD(agp_unbind_page, agp_intel_unbind_page), 322 DEVMETHOD(agp_flush_tlb, agp_intel_flush_tlb), 323 DEVMETHOD(agp_enable, agp_generic_enable), 324 DEVMETHOD(agp_alloc_memory, agp_generic_alloc_memory), 325 DEVMETHOD(agp_free_memory, agp_generic_free_memory), 326 DEVMETHOD(agp_bind_memory, agp_generic_bind_memory), 327 DEVMETHOD(agp_unbind_memory, agp_generic_unbind_memory), 328 329 { 0, 0 } 330 }; 331 332 static driver_t agp_intel_driver = { 333 "agp", 334 agp_intel_methods, 335 sizeof(struct agp_intel_softc), 336 }; 337 338 static devclass_t agp_devclass; 339 340 DRIVER_MODULE(agp_intel, hostb, agp_intel_driver, agp_devclass, 0, 0); 341 MODULE_DEPEND(agp_intel, agp, 1, 1, 1); 342 MODULE_DEPEND(agp_intel, pci, 1, 1, 1); 343