1 /*- 2 * Copyright (c) 2000 Doug Rabson 3 * Copyright (c) 2000 Ruslan Ermilov 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 /* 29 * Fixes for 830/845G support: David Dawes <dawes@xfree86.org> 30 * 852GM/855GM/865G support added by David Dawes <dawes@xfree86.org> 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include "opt_bus.h" 37 38 #include <sys/param.h> 39 #include <sys/systm.h> 40 #include <sys/malloc.h> 41 #include <sys/kernel.h> 42 #include <sys/module.h> 43 #include <sys/bus.h> 44 #include <sys/lock.h> 45 #include <sys/mutex.h> 46 #include <sys/proc.h> 47 48 #include <dev/agp/agppriv.h> 49 #include <dev/agp/agpreg.h> 50 #include <dev/pci/pcivar.h> 51 #include <dev/pci/pcireg.h> 52 53 #include <vm/vm.h> 54 #include <vm/vm_object.h> 55 #include <vm/vm_page.h> 56 #include <vm/vm_pageout.h> 57 #include <vm/pmap.h> 58 59 #include <machine/bus.h> 60 #include <machine/resource.h> 61 #include <machine/md_var.h> 62 #include <sys/rman.h> 63 64 MALLOC_DECLARE(M_AGP); 65 66 enum { 67 CHIP_I810, /* i810/i815 */ 68 CHIP_I830, /* 830M/845G */ 69 CHIP_I855, /* 852GM/855GM/865G */ 70 CHIP_I915, /* 915G/915GM */ 71 CHIP_I965, /* G965 */ 72 CHIP_G33, /* G33/Q33/Q35 */ 73 CHIP_G4X, /* G45/Q45 */ 74 }; 75 76 /* The i810 through i855 have the registers at BAR 1, and the GATT gets 77 * allocated by us. The i915 has registers in BAR 0 and the GATT is at the 78 * start of the stolen memory, and should only be accessed by the OS through 79 * BAR 3. The G965 has registers and GATT in the same BAR (0) -- first 512KB 80 * is registers, second 512KB is GATT. 81 */ 82 static struct resource_spec agp_i810_res_spec[] = { 83 { SYS_RES_MEMORY, AGP_I810_MMADR, RF_ACTIVE | RF_SHAREABLE }, 84 { -1, 0 } 85 }; 86 87 static struct resource_spec agp_i915_res_spec[] = { 88 { SYS_RES_MEMORY, AGP_I915_MMADR, RF_ACTIVE | RF_SHAREABLE }, 89 { SYS_RES_MEMORY, AGP_I915_GTTADR, RF_ACTIVE | RF_SHAREABLE }, 90 { -1, 0 } 91 }; 92 93 static struct resource_spec agp_i965_res_spec[] = { 94 { SYS_RES_MEMORY, AGP_I965_GTTMMADR, RF_ACTIVE | RF_SHAREABLE }, 95 { -1, 0 } 96 }; 97 98 struct agp_i810_softc { 99 struct agp_softc agp; 100 u_int32_t initial_aperture; /* aperture size at startup */ 101 struct agp_gatt *gatt; 102 int chiptype; /* i810-like or i830 */ 103 u_int32_t dcache_size; /* i810 only */ 104 u_int32_t stolen; /* number of i830/845 gtt entries for stolen memory */ 105 device_t bdev; /* bridge device */ 106 107 void *argb_cursor; /* contigmalloc area for ARGB cursor */ 108 109 struct resource_spec * sc_res_spec; 110 struct resource *sc_res[2]; 111 }; 112 113 /* For adding new devices, devid is the id of the graphics controller 114 * (pci:0:2:0, for example). The placeholder (usually at pci:0:2:1) for the 115 * second head should never be added. The bridge_offset is the offset to 116 * subtract from devid to get the id of the hostb that the device is on. 117 */ 118 static const struct agp_i810_match { 119 int devid; 120 int chiptype; 121 int bridge_offset; 122 char *name; 123 } agp_i810_matches[] = { 124 {0x71218086, CHIP_I810, 0x00010000, 125 "Intel 82810 (i810 GMCH) SVGA controller"}, 126 {0x71238086, CHIP_I810, 0x00010000, 127 "Intel 82810-DC100 (i810-DC100 GMCH) SVGA controller"}, 128 {0x71258086, CHIP_I810, 0x00010000, 129 "Intel 82810E (i810E GMCH) SVGA controller"}, 130 {0x11328086, CHIP_I810, 0x00020000, 131 "Intel 82815 (i815 GMCH) SVGA controller"}, 132 {0x35778086, CHIP_I830, 0x00020000, 133 "Intel 82830M (830M GMCH) SVGA controller"}, 134 {0x25628086, CHIP_I830, 0x00020000, 135 "Intel 82845M (845M GMCH) SVGA controller"}, 136 {0x35828086, CHIP_I855, 0x00020000, 137 "Intel 82852/855GM SVGA controller"}, 138 {0x25728086, CHIP_I855, 0x00020000, 139 "Intel 82865G (865G GMCH) SVGA controller"}, 140 {0x25828086, CHIP_I915, 0x00020000, 141 "Intel 82915G (915G GMCH) SVGA controller"}, 142 {0x258A8086, CHIP_I915, 0x00020000, 143 "Intel E7221 SVGA controller"}, 144 {0x25928086, CHIP_I915, 0x00020000, 145 "Intel 82915GM (915GM GMCH) SVGA controller"}, 146 {0x27728086, CHIP_I915, 0x00020000, 147 "Intel 82945G (945G GMCH) SVGA controller"}, 148 {0x27A28086, CHIP_I915, 0x00020000, 149 "Intel 82945GM (945GM GMCH) SVGA controller"}, 150 {0x27AE8086, CHIP_I915, 0x00020000, 151 "Intel 945GME SVGA controller"}, 152 {0x29728086, CHIP_I965, 0x00020000, 153 "Intel 946GZ SVGA controller"}, 154 {0x29828086, CHIP_I965, 0x00020000, 155 "Intel G965 SVGA controller"}, 156 {0x29928086, CHIP_I965, 0x00020000, 157 "Intel Q965 SVGA controller"}, 158 {0x29A28086, CHIP_I965, 0x00020000, 159 "Intel G965 SVGA controller"}, 160 {0x29B28086, CHIP_G33, 0x00020000, 161 "Intel Q35 SVGA controller"}, 162 {0x29C28086, CHIP_G33, 0x00020000, 163 "Intel G33 SVGA controller"}, 164 {0x29D28086, CHIP_G33, 0x00020000, 165 "Intel Q33 SVGA controller"}, 166 {0x2A028086, CHIP_I965, 0x00020000, 167 "Intel GM965 SVGA controller"}, 168 {0x2A128086, CHIP_I965, 0x00020000, 169 "Intel GME965 SVGA controller"}, 170 {0x2A428086, CHIP_G4X, 0x00020000, 171 "Intel GM45 SVGA controller"}, 172 {0x2E028086, CHIP_G4X, 0x00020000, 173 "Intel 4 Series SVGA controller"}, 174 {0x2E128086, CHIP_G4X, 0x00020000, 175 "Intel Q45 SVGA controller"}, 176 {0x2E228086, CHIP_G4X, 0x00020000, 177 "Intel G45 SVGA controller"}, 178 {0x2E328086, CHIP_G4X, 0x00020000, 179 "Intel G41 SVGA controller"}, 180 {0, 0, 0, NULL} 181 }; 182 183 static const struct agp_i810_match* 184 agp_i810_match(device_t dev) 185 { 186 int i, devid; 187 188 if (pci_get_class(dev) != PCIC_DISPLAY 189 || pci_get_subclass(dev) != PCIS_DISPLAY_VGA) 190 return NULL; 191 192 devid = pci_get_devid(dev); 193 for (i = 0; agp_i810_matches[i].devid != 0; i++) { 194 if (agp_i810_matches[i].devid == devid) 195 break; 196 } 197 if (agp_i810_matches[i].devid == 0) 198 return NULL; 199 else 200 return &agp_i810_matches[i]; 201 } 202 203 /* 204 * Find bridge device. 205 */ 206 static device_t 207 agp_i810_find_bridge(device_t dev) 208 { 209 device_t *children, child; 210 int nchildren, i; 211 u_int32_t devid; 212 const struct agp_i810_match *match; 213 214 match = agp_i810_match(dev); 215 devid = match->devid - match->bridge_offset; 216 217 if (device_get_children(device_get_parent(device_get_parent(dev)), 218 &children, &nchildren)) 219 return 0; 220 221 for (i = 0; i < nchildren; i++) { 222 child = children[i]; 223 224 if (pci_get_devid(child) == devid) { 225 free(children, M_TEMP); 226 return child; 227 } 228 } 229 free(children, M_TEMP); 230 return 0; 231 } 232 233 static void 234 agp_i810_identify(driver_t *driver, device_t parent) 235 { 236 237 if (device_find_child(parent, "agp", -1) == NULL && 238 agp_i810_match(parent)) 239 device_add_child(parent, "agp", -1); 240 } 241 242 static int 243 agp_i810_probe(device_t dev) 244 { 245 device_t bdev; 246 const struct agp_i810_match *match; 247 u_int8_t smram; 248 int gcc1, deven; 249 250 if (resource_disabled("agp", device_get_unit(dev))) 251 return (ENXIO); 252 match = agp_i810_match(dev); 253 if (match == NULL) 254 return ENXIO; 255 256 bdev = agp_i810_find_bridge(dev); 257 if (!bdev) { 258 if (bootverbose) 259 printf("I810: can't find bridge device\n"); 260 return ENXIO; 261 } 262 263 /* 264 * checking whether internal graphics device has been activated. 265 */ 266 switch (match->chiptype) { 267 case CHIP_I810: 268 smram = pci_read_config(bdev, AGP_I810_SMRAM, 1); 269 if ((smram & AGP_I810_SMRAM_GMS) == 270 AGP_I810_SMRAM_GMS_DISABLED) { 271 if (bootverbose) 272 printf("I810: disabled, not probing\n"); 273 return ENXIO; 274 } 275 break; 276 case CHIP_I830: 277 case CHIP_I855: 278 gcc1 = pci_read_config(bdev, AGP_I830_GCC1, 1); 279 if ((gcc1 & AGP_I830_GCC1_DEV2) == 280 AGP_I830_GCC1_DEV2_DISABLED) { 281 if (bootverbose) 282 printf("I830: disabled, not probing\n"); 283 return ENXIO; 284 } 285 break; 286 case CHIP_I915: 287 case CHIP_I965: 288 case CHIP_G33: 289 case CHIP_G4X: 290 deven = pci_read_config(bdev, AGP_I915_DEVEN, 4); 291 if ((deven & AGP_I915_DEVEN_D2F0) == 292 AGP_I915_DEVEN_D2F0_DISABLED) { 293 if (bootverbose) 294 printf("I915: disabled, not probing\n"); 295 return ENXIO; 296 } 297 break; 298 } 299 300 if (match->devid == 0x35828086) { 301 switch (pci_read_config(dev, AGP_I85X_CAPID, 1)) { 302 case AGP_I855_GME: 303 device_set_desc(dev, 304 "Intel 82855GME (855GME GMCH) SVGA controller"); 305 break; 306 case AGP_I855_GM: 307 device_set_desc(dev, 308 "Intel 82855GM (855GM GMCH) SVGA controller"); 309 break; 310 case AGP_I852_GME: 311 device_set_desc(dev, 312 "Intel 82852GME (852GME GMCH) SVGA controller"); 313 break; 314 case AGP_I852_GM: 315 device_set_desc(dev, 316 "Intel 82852GM (852GM GMCH) SVGA controller"); 317 break; 318 default: 319 device_set_desc(dev, 320 "Intel 8285xM (85xGM GMCH) SVGA controller"); 321 break; 322 } 323 } else { 324 device_set_desc(dev, match->name); 325 } 326 327 return BUS_PROBE_DEFAULT; 328 } 329 330 static void 331 agp_i810_dump_regs(device_t dev) 332 { 333 struct agp_i810_softc *sc = device_get_softc(dev); 334 335 device_printf(dev, "AGP_I810_PGTBL_CTL: %08x\n", 336 bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL)); 337 338 switch (sc->chiptype) { 339 case CHIP_I810: 340 device_printf(dev, "AGP_I810_MISCC: 0x%04x\n", 341 pci_read_config(sc->bdev, AGP_I810_MISCC, 2)); 342 break; 343 case CHIP_I830: 344 device_printf(dev, "AGP_I830_GCC1: 0x%02x\n", 345 pci_read_config(sc->bdev, AGP_I830_GCC1, 1)); 346 break; 347 case CHIP_I855: 348 device_printf(dev, "AGP_I855_GCC1: 0x%02x\n", 349 pci_read_config(sc->bdev, AGP_I855_GCC1, 1)); 350 break; 351 case CHIP_I915: 352 case CHIP_I965: 353 case CHIP_G33: 354 case CHIP_G4X: 355 device_printf(dev, "AGP_I855_GCC1: 0x%02x\n", 356 pci_read_config(sc->bdev, AGP_I855_GCC1, 1)); 357 device_printf(dev, "AGP_I915_MSAC: 0x%02x\n", 358 pci_read_config(sc->bdev, AGP_I915_MSAC, 1)); 359 break; 360 } 361 device_printf(dev, "Aperture resource size: %d bytes\n", 362 AGP_GET_APERTURE(dev)); 363 } 364 365 static int 366 agp_i810_attach(device_t dev) 367 { 368 struct agp_i810_softc *sc = device_get_softc(dev); 369 struct agp_gatt *gatt; 370 const struct agp_i810_match *match; 371 int error; 372 373 sc->bdev = agp_i810_find_bridge(dev); 374 if (!sc->bdev) 375 return ENOENT; 376 377 match = agp_i810_match(dev); 378 sc->chiptype = match->chiptype; 379 380 switch (sc->chiptype) { 381 case CHIP_I810: 382 case CHIP_I830: 383 case CHIP_I855: 384 sc->sc_res_spec = agp_i810_res_spec; 385 agp_set_aperture_resource(dev, AGP_APBASE); 386 break; 387 case CHIP_I915: 388 case CHIP_G33: 389 sc->sc_res_spec = agp_i915_res_spec; 390 agp_set_aperture_resource(dev, AGP_I915_GMADR); 391 break; 392 case CHIP_I965: 393 case CHIP_G4X: 394 sc->sc_res_spec = agp_i965_res_spec; 395 agp_set_aperture_resource(dev, AGP_I915_GMADR); 396 break; 397 } 398 399 error = agp_generic_attach(dev); 400 if (error) 401 return error; 402 403 if (sc->chiptype != CHIP_I965 && sc->chiptype != CHIP_G33 && 404 sc->chiptype != CHIP_G4X && ptoa((vm_paddr_t)Maxmem) > 0xfffffffful) 405 { 406 device_printf(dev, "agp_i810.c does not support physical " 407 "memory above 4GB.\n"); 408 return ENOENT; 409 } 410 411 if (bus_alloc_resources(dev, sc->sc_res_spec, sc->sc_res)) { 412 agp_generic_detach(dev); 413 return ENODEV; 414 } 415 416 sc->initial_aperture = AGP_GET_APERTURE(dev); 417 418 gatt = malloc( sizeof(struct agp_gatt), M_AGP, M_NOWAIT); 419 if (!gatt) { 420 bus_release_resources(dev, sc->sc_res_spec, sc->sc_res); 421 agp_generic_detach(dev); 422 return ENOMEM; 423 } 424 sc->gatt = gatt; 425 426 gatt->ag_entries = AGP_GET_APERTURE(dev) >> AGP_PAGE_SHIFT; 427 428 if ( sc->chiptype == CHIP_I810 ) { 429 /* Some i810s have on-chip memory called dcache */ 430 if (bus_read_1(sc->sc_res[0], AGP_I810_DRT) & 431 AGP_I810_DRT_POPULATED) 432 sc->dcache_size = 4 * 1024 * 1024; 433 else 434 sc->dcache_size = 0; 435 436 /* According to the specs the gatt on the i810 must be 64k */ 437 gatt->ag_virtual = contigmalloc( 64 * 1024, M_AGP, 0, 438 0, ~0, PAGE_SIZE, 0); 439 if (!gatt->ag_virtual) { 440 if (bootverbose) 441 device_printf(dev, "contiguous allocation failed\n"); 442 bus_release_resources(dev, sc->sc_res_spec, 443 sc->sc_res); 444 free(gatt, M_AGP); 445 agp_generic_detach(dev); 446 return ENOMEM; 447 } 448 bzero(gatt->ag_virtual, gatt->ag_entries * sizeof(u_int32_t)); 449 450 gatt->ag_physical = vtophys((vm_offset_t) gatt->ag_virtual); 451 agp_flush_cache(); 452 /* Install the GATT. */ 453 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, 454 gatt->ag_physical | 1); 455 } else if ( sc->chiptype == CHIP_I830 ) { 456 /* The i830 automatically initializes the 128k gatt on boot. */ 457 unsigned int gcc1, pgtblctl; 458 459 gcc1 = pci_read_config(sc->bdev, AGP_I830_GCC1, 1); 460 switch (gcc1 & AGP_I830_GCC1_GMS) { 461 case AGP_I830_GCC1_GMS_STOLEN_512: 462 sc->stolen = (512 - 132) * 1024 / 4096; 463 break; 464 case AGP_I830_GCC1_GMS_STOLEN_1024: 465 sc->stolen = (1024 - 132) * 1024 / 4096; 466 break; 467 case AGP_I830_GCC1_GMS_STOLEN_8192: 468 sc->stolen = (8192 - 132) * 1024 / 4096; 469 break; 470 default: 471 sc->stolen = 0; 472 device_printf(dev, "unknown memory configuration, disabling\n"); 473 bus_release_resources(dev, sc->sc_res_spec, 474 sc->sc_res); 475 free(gatt, M_AGP); 476 agp_generic_detach(dev); 477 return EINVAL; 478 } 479 480 /* GATT address is already in there, make sure it's enabled */ 481 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL); 482 pgtblctl |= 1; 483 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl); 484 485 gatt->ag_physical = pgtblctl & ~1; 486 } else if (sc->chiptype == CHIP_I855 || sc->chiptype == CHIP_I915 || 487 sc->chiptype == CHIP_I965 || sc->chiptype == CHIP_G33 || 488 sc->chiptype == CHIP_G4X) { 489 unsigned int gcc1, pgtblctl, stolen, gtt_size; 490 491 /* Stolen memory is set up at the beginning of the aperture by 492 * the BIOS, consisting of the GATT followed by 4kb for the 493 * BIOS display. 494 */ 495 switch (sc->chiptype) { 496 case CHIP_I855: 497 gtt_size = 128; 498 break; 499 case CHIP_I915: 500 gtt_size = 256; 501 break; 502 case CHIP_I965: 503 switch (bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL) & 504 AGP_I810_PGTBL_SIZE_MASK) { 505 case AGP_I810_PGTBL_SIZE_128KB: 506 gtt_size = 128; 507 break; 508 case AGP_I810_PGTBL_SIZE_256KB: 509 gtt_size = 256; 510 break; 511 case AGP_I810_PGTBL_SIZE_512KB: 512 gtt_size = 512; 513 break; 514 case AGP_I965_PGTBL_SIZE_1MB: 515 gtt_size = 1024; 516 break; 517 case AGP_I965_PGTBL_SIZE_2MB: 518 gtt_size = 2048; 519 break; 520 case AGP_I965_PGTBL_SIZE_1_5MB: 521 gtt_size = 1024 + 512; 522 break; 523 default: 524 device_printf(dev, "Bad PGTBL size\n"); 525 bus_release_resources(dev, sc->sc_res_spec, 526 sc->sc_res); 527 free(gatt, M_AGP); 528 agp_generic_detach(dev); 529 return EINVAL; 530 } 531 break; 532 case CHIP_G33: 533 gcc1 = pci_read_config(sc->bdev, AGP_I855_GCC1, 2); 534 switch (gcc1 & AGP_G33_MGGC_GGMS_MASK) { 535 case AGP_G33_MGGC_GGMS_SIZE_1M: 536 gtt_size = 1024; 537 break; 538 case AGP_G33_MGGC_GGMS_SIZE_2M: 539 gtt_size = 2048; 540 break; 541 default: 542 device_printf(dev, "Bad PGTBL size\n"); 543 bus_release_resources(dev, sc->sc_res_spec, 544 sc->sc_res); 545 free(gatt, M_AGP); 546 agp_generic_detach(dev); 547 return EINVAL; 548 } 549 break; 550 case CHIP_G4X: 551 gtt_size = 0; 552 break; 553 default: 554 device_printf(dev, "Bad chiptype\n"); 555 bus_release_resources(dev, sc->sc_res_spec, 556 sc->sc_res); 557 free(gatt, M_AGP); 558 agp_generic_detach(dev); 559 return EINVAL; 560 } 561 562 /* GCC1 is called MGGC on i915+ */ 563 gcc1 = pci_read_config(sc->bdev, AGP_I855_GCC1, 1); 564 switch (gcc1 & AGP_I855_GCC1_GMS) { 565 case AGP_I855_GCC1_GMS_STOLEN_1M: 566 stolen = 1024; 567 break; 568 case AGP_I855_GCC1_GMS_STOLEN_4M: 569 stolen = 4 * 1024; 570 break; 571 case AGP_I855_GCC1_GMS_STOLEN_8M: 572 stolen = 8 * 1024; 573 break; 574 case AGP_I855_GCC1_GMS_STOLEN_16M: 575 stolen = 16 * 1024; 576 break; 577 case AGP_I855_GCC1_GMS_STOLEN_32M: 578 stolen = 32 * 1024; 579 break; 580 case AGP_I915_GCC1_GMS_STOLEN_48M: 581 if (sc->chiptype == CHIP_I915 || 582 sc->chiptype == CHIP_I965 || 583 sc->chiptype == CHIP_G33 || 584 sc->chiptype == CHIP_G4X) { 585 stolen = 48 * 1024; 586 } else { 587 stolen = 0; 588 } 589 break; 590 case AGP_I915_GCC1_GMS_STOLEN_64M: 591 if (sc->chiptype == CHIP_I915 || 592 sc->chiptype == CHIP_I965 || 593 sc->chiptype == CHIP_G33 || 594 sc->chiptype == CHIP_G4X) { 595 stolen = 64 * 1024; 596 } else { 597 stolen = 0; 598 } 599 break; 600 case AGP_G33_GCC1_GMS_STOLEN_128M: 601 if (sc->chiptype == CHIP_I965 || 602 sc->chiptype == CHIP_G33 || 603 sc->chiptype == CHIP_G4X) { 604 stolen = 128 * 1024; 605 } else { 606 stolen = 0; 607 } 608 break; 609 case AGP_G33_GCC1_GMS_STOLEN_256M: 610 if (sc->chiptype == CHIP_I965 || 611 sc->chiptype == CHIP_G33 || 612 sc->chiptype == CHIP_G4X) { 613 stolen = 256 * 1024; 614 } else { 615 stolen = 0; 616 } 617 break; 618 case AGP_G4X_GCC1_GMS_STOLEN_96M: 619 if (sc->chiptype == CHIP_I965 || 620 sc->chiptype == CHIP_G4X) { 621 stolen = 96 * 1024; 622 } else { 623 stolen = 0; 624 } 625 break; 626 case AGP_G4X_GCC1_GMS_STOLEN_160M: 627 if (sc->chiptype == CHIP_I965 || 628 sc->chiptype == CHIP_G4X) { 629 stolen = 160 * 1024; 630 } else { 631 stolen = 0; 632 } 633 break; 634 case AGP_G4X_GCC1_GMS_STOLEN_224M: 635 if (sc->chiptype == CHIP_I965 || 636 sc->chiptype == CHIP_G4X) { 637 stolen = 224 * 1024; 638 } else { 639 stolen = 0; 640 } 641 break; 642 case AGP_G4X_GCC1_GMS_STOLEN_352M: 643 if (sc->chiptype == CHIP_I965 || 644 sc->chiptype == CHIP_G4X) { 645 stolen = 352 * 1024; 646 } else { 647 stolen = 0; 648 } 649 break; 650 default: 651 device_printf(dev, "unknown memory configuration, " 652 "disabling\n"); 653 bus_release_resources(dev, sc->sc_res_spec, 654 sc->sc_res); 655 free(gatt, M_AGP); 656 agp_generic_detach(dev); 657 return EINVAL; 658 } 659 660 gtt_size += 4; 661 662 sc->stolen = (stolen - gtt_size) * 1024 / 4096; 663 664 /* GATT address is already in there, make sure it's enabled */ 665 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL); 666 pgtblctl |= 1; 667 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl); 668 669 gatt->ag_physical = pgtblctl & ~1; 670 } 671 672 device_printf(dev, "aperture size is %dM", 673 sc->initial_aperture / 1024 / 1024); 674 if (sc->stolen > 0) 675 printf(", detected %dk stolen memory\n", sc->stolen * 4); 676 else 677 printf("\n"); 678 679 if (0) 680 agp_i810_dump_regs(dev); 681 682 return 0; 683 } 684 685 static int 686 agp_i810_detach(device_t dev) 687 { 688 struct agp_i810_softc *sc = device_get_softc(dev); 689 690 agp_free_cdev(dev); 691 692 /* Clear the GATT base. */ 693 if ( sc->chiptype == CHIP_I810 ) { 694 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, 0); 695 } else { 696 unsigned int pgtblctl; 697 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL); 698 pgtblctl &= ~1; 699 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl); 700 } 701 702 /* Put the aperture back the way it started. */ 703 AGP_SET_APERTURE(dev, sc->initial_aperture); 704 705 if ( sc->chiptype == CHIP_I810 ) { 706 contigfree(sc->gatt->ag_virtual, 64 * 1024, M_AGP); 707 } 708 free(sc->gatt, M_AGP); 709 710 bus_release_resources(dev, sc->sc_res_spec, sc->sc_res); 711 agp_free_res(dev); 712 713 return 0; 714 } 715 716 static int 717 agp_i810_resume(device_t dev) 718 { 719 struct agp_i810_softc *sc; 720 sc = device_get_softc(dev); 721 722 AGP_SET_APERTURE(dev, sc->initial_aperture); 723 724 /* Install the GATT. */ 725 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, 726 sc->gatt->ag_physical | 1); 727 728 return (bus_generic_resume(dev)); 729 } 730 731 /** 732 * Sets the PCI resource size of the aperture on i830-class and below chipsets, 733 * while returning failure on later chipsets when an actual change is 734 * requested. 735 * 736 * This whole function is likely bogus, as the kernel would probably need to 737 * reconfigure the placement of the AGP aperture if a larger size is requested, 738 * which doesn't happen currently. 739 */ 740 static int 741 agp_i810_set_aperture(device_t dev, u_int32_t aperture) 742 { 743 struct agp_i810_softc *sc = device_get_softc(dev); 744 u_int16_t miscc, gcc1; 745 746 switch (sc->chiptype) { 747 case CHIP_I810: 748 /* 749 * Double check for sanity. 750 */ 751 if (aperture != 32 * 1024 * 1024 && aperture != 64 * 1024 * 1024) { 752 device_printf(dev, "bad aperture size %d\n", aperture); 753 return EINVAL; 754 } 755 756 miscc = pci_read_config(sc->bdev, AGP_I810_MISCC, 2); 757 miscc &= ~AGP_I810_MISCC_WINSIZE; 758 if (aperture == 32 * 1024 * 1024) 759 miscc |= AGP_I810_MISCC_WINSIZE_32; 760 else 761 miscc |= AGP_I810_MISCC_WINSIZE_64; 762 763 pci_write_config(sc->bdev, AGP_I810_MISCC, miscc, 2); 764 break; 765 case CHIP_I830: 766 if (aperture != 64 * 1024 * 1024 && 767 aperture != 128 * 1024 * 1024) { 768 device_printf(dev, "bad aperture size %d\n", aperture); 769 return EINVAL; 770 } 771 gcc1 = pci_read_config(sc->bdev, AGP_I830_GCC1, 2); 772 gcc1 &= ~AGP_I830_GCC1_GMASIZE; 773 if (aperture == 64 * 1024 * 1024) 774 gcc1 |= AGP_I830_GCC1_GMASIZE_64; 775 else 776 gcc1 |= AGP_I830_GCC1_GMASIZE_128; 777 778 pci_write_config(sc->bdev, AGP_I830_GCC1, gcc1, 2); 779 break; 780 case CHIP_I855: 781 case CHIP_I915: 782 case CHIP_I965: 783 case CHIP_G33: 784 case CHIP_G4X: 785 return agp_generic_set_aperture(dev, aperture); 786 } 787 788 return 0; 789 } 790 791 /** 792 * Writes a GTT entry mapping the page at the given offset from the beginning 793 * of the aperture to the given physical address. 794 */ 795 static void 796 agp_i810_write_gtt_entry(device_t dev, int offset, vm_offset_t physical, 797 int enabled) 798 { 799 struct agp_i810_softc *sc = device_get_softc(dev); 800 u_int32_t pte; 801 802 pte = (u_int32_t)physical | 1; 803 if (sc->chiptype == CHIP_I965 || sc->chiptype == CHIP_G33 || 804 sc->chiptype == CHIP_G4X) { 805 pte |= (physical & 0x0000000f00000000ull) >> 28; 806 } else { 807 /* If we do actually have memory above 4GB on an older system, 808 * crash cleanly rather than scribble on system memory, 809 * so we know we need to fix it. 810 */ 811 KASSERT((pte & 0x0000000f00000000ull) == 0, 812 (">4GB physical address in agp")); 813 } 814 815 switch (sc->chiptype) { 816 case CHIP_I810: 817 case CHIP_I830: 818 case CHIP_I855: 819 bus_write_4(sc->sc_res[0], 820 AGP_I810_GTT + (offset >> AGP_PAGE_SHIFT) * 4, pte); 821 break; 822 case CHIP_I915: 823 case CHIP_G33: 824 bus_write_4(sc->sc_res[1], 825 (offset >> AGP_PAGE_SHIFT) * 4, pte); 826 break; 827 case CHIP_I965: 828 bus_write_4(sc->sc_res[0], 829 (offset >> AGP_PAGE_SHIFT) * 4 + (512 * 1024), pte); 830 break; 831 case CHIP_G4X: 832 bus_write_4(sc->sc_res[0], 833 (offset >> AGP_PAGE_SHIFT) * 4 + (2 * 1024 * 1024), pte); 834 break; 835 } 836 } 837 838 static int 839 agp_i810_bind_page(device_t dev, vm_offset_t offset, vm_offset_t physical) 840 { 841 struct agp_i810_softc *sc = device_get_softc(dev); 842 843 if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT)) { 844 device_printf(dev, "failed: offset is 0x%08jx, shift is %d, entries is %d\n", (intmax_t)offset, AGP_PAGE_SHIFT, sc->gatt->ag_entries); 845 return EINVAL; 846 } 847 848 if ( sc->chiptype != CHIP_I810 ) { 849 if ( (offset >> AGP_PAGE_SHIFT) < sc->stolen ) { 850 device_printf(dev, "trying to bind into stolen memory"); 851 return EINVAL; 852 } 853 } 854 855 agp_i810_write_gtt_entry(dev, offset, physical, 1); 856 857 return 0; 858 } 859 860 static int 861 agp_i810_unbind_page(device_t dev, vm_offset_t offset) 862 { 863 struct agp_i810_softc *sc = device_get_softc(dev); 864 865 if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT)) 866 return EINVAL; 867 868 if ( sc->chiptype != CHIP_I810 ) { 869 if ( (offset >> AGP_PAGE_SHIFT) < sc->stolen ) { 870 device_printf(dev, "trying to unbind from stolen memory"); 871 return EINVAL; 872 } 873 } 874 875 agp_i810_write_gtt_entry(dev, offset, 0, 0); 876 877 return 0; 878 } 879 880 /* 881 * Writing via memory mapped registers already flushes all TLBs. 882 */ 883 static void 884 agp_i810_flush_tlb(device_t dev) 885 { 886 } 887 888 static int 889 agp_i810_enable(device_t dev, u_int32_t mode) 890 { 891 892 return 0; 893 } 894 895 static struct agp_memory * 896 agp_i810_alloc_memory(device_t dev, int type, vm_size_t size) 897 { 898 struct agp_i810_softc *sc = device_get_softc(dev); 899 struct agp_memory *mem; 900 901 if ((size & (AGP_PAGE_SIZE - 1)) != 0) 902 return 0; 903 904 if (sc->agp.as_allocated + size > sc->agp.as_maxmem) 905 return 0; 906 907 if (type == 1) { 908 /* 909 * Mapping local DRAM into GATT. 910 */ 911 if ( sc->chiptype != CHIP_I810 ) 912 return 0; 913 if (size != sc->dcache_size) 914 return 0; 915 } else if (type == 2) { 916 /* 917 * Type 2 is the contiguous physical memory type, that hands 918 * back a physical address. This is used for cursors on i810. 919 * Hand back as many single pages with physical as the user 920 * wants, but only allow one larger allocation (ARGB cursor) 921 * for simplicity. 922 */ 923 if (size != AGP_PAGE_SIZE) { 924 if (sc->argb_cursor != NULL) 925 return 0; 926 927 /* Allocate memory for ARGB cursor, if we can. */ 928 sc->argb_cursor = contigmalloc(size, M_AGP, 929 0, 0, ~0, PAGE_SIZE, 0); 930 if (sc->argb_cursor == NULL) 931 return 0; 932 } 933 } 934 935 mem = malloc(sizeof *mem, M_AGP, M_WAITOK); 936 mem->am_id = sc->agp.as_nextid++; 937 mem->am_size = size; 938 mem->am_type = type; 939 if (type != 1 && (type != 2 || size == AGP_PAGE_SIZE)) 940 mem->am_obj = vm_object_allocate(OBJT_DEFAULT, 941 atop(round_page(size))); 942 else 943 mem->am_obj = 0; 944 945 if (type == 2) { 946 if (size == AGP_PAGE_SIZE) { 947 /* 948 * Allocate and wire down the page now so that we can 949 * get its physical address. 950 */ 951 vm_page_t m; 952 953 VM_OBJECT_LOCK(mem->am_obj); 954 m = vm_page_grab(mem->am_obj, 0, VM_ALLOC_NOBUSY | 955 VM_ALLOC_WIRED | VM_ALLOC_ZERO | VM_ALLOC_RETRY); 956 VM_OBJECT_UNLOCK(mem->am_obj); 957 mem->am_physical = VM_PAGE_TO_PHYS(m); 958 } else { 959 /* Our allocation is already nicely wired down for us. 960 * Just grab the physical address. 961 */ 962 mem->am_physical = vtophys(sc->argb_cursor); 963 } 964 } else { 965 mem->am_physical = 0; 966 } 967 968 mem->am_offset = 0; 969 mem->am_is_bound = 0; 970 TAILQ_INSERT_TAIL(&sc->agp.as_memory, mem, am_link); 971 sc->agp.as_allocated += size; 972 973 return mem; 974 } 975 976 static int 977 agp_i810_free_memory(device_t dev, struct agp_memory *mem) 978 { 979 struct agp_i810_softc *sc = device_get_softc(dev); 980 981 if (mem->am_is_bound) 982 return EBUSY; 983 984 if (mem->am_type == 2) { 985 if (mem->am_size == AGP_PAGE_SIZE) { 986 /* 987 * Unwire the page which we wired in alloc_memory. 988 */ 989 vm_page_t m; 990 991 VM_OBJECT_LOCK(mem->am_obj); 992 m = vm_page_lookup(mem->am_obj, 0); 993 VM_OBJECT_UNLOCK(mem->am_obj); 994 vm_page_lock_queues(); 995 vm_page_unwire(m, 0); 996 vm_page_unlock_queues(); 997 } else { 998 contigfree(sc->argb_cursor, mem->am_size, M_AGP); 999 sc->argb_cursor = NULL; 1000 } 1001 } 1002 1003 sc->agp.as_allocated -= mem->am_size; 1004 TAILQ_REMOVE(&sc->agp.as_memory, mem, am_link); 1005 if (mem->am_obj) 1006 vm_object_deallocate(mem->am_obj); 1007 free(mem, M_AGP); 1008 return 0; 1009 } 1010 1011 static int 1012 agp_i810_bind_memory(device_t dev, struct agp_memory *mem, 1013 vm_offset_t offset) 1014 { 1015 struct agp_i810_softc *sc = device_get_softc(dev); 1016 vm_offset_t i; 1017 1018 /* Do some sanity checks first. */ 1019 if ((offset & (AGP_PAGE_SIZE - 1)) != 0 || 1020 offset + mem->am_size > AGP_GET_APERTURE(dev)) { 1021 device_printf(dev, "binding memory at bad offset %#x\n", 1022 (int)offset); 1023 return EINVAL; 1024 } 1025 1026 if (mem->am_type == 2 && mem->am_size != AGP_PAGE_SIZE) { 1027 mtx_lock(&sc->agp.as_lock); 1028 if (mem->am_is_bound) { 1029 mtx_unlock(&sc->agp.as_lock); 1030 return EINVAL; 1031 } 1032 /* The memory's already wired down, just stick it in the GTT. */ 1033 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) { 1034 agp_i810_write_gtt_entry(dev, offset + i, 1035 mem->am_physical + i, 1); 1036 } 1037 agp_flush_cache(); 1038 mem->am_offset = offset; 1039 mem->am_is_bound = 1; 1040 mtx_unlock(&sc->agp.as_lock); 1041 return 0; 1042 } 1043 1044 if (mem->am_type != 1) 1045 return agp_generic_bind_memory(dev, mem, offset); 1046 1047 if ( sc->chiptype != CHIP_I810 ) 1048 return EINVAL; 1049 1050 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) { 1051 bus_write_4(sc->sc_res[0], 1052 AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, i | 3); 1053 } 1054 1055 return 0; 1056 } 1057 1058 static int 1059 agp_i810_unbind_memory(device_t dev, struct agp_memory *mem) 1060 { 1061 struct agp_i810_softc *sc = device_get_softc(dev); 1062 vm_offset_t i; 1063 1064 if (mem->am_type == 2 && mem->am_size != AGP_PAGE_SIZE) { 1065 mtx_lock(&sc->agp.as_lock); 1066 if (!mem->am_is_bound) { 1067 mtx_unlock(&sc->agp.as_lock); 1068 return EINVAL; 1069 } 1070 1071 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) { 1072 agp_i810_write_gtt_entry(dev, mem->am_offset + i, 1073 0, 0); 1074 } 1075 agp_flush_cache(); 1076 mem->am_is_bound = 0; 1077 mtx_unlock(&sc->agp.as_lock); 1078 return 0; 1079 } 1080 1081 if (mem->am_type != 1) 1082 return agp_generic_unbind_memory(dev, mem); 1083 1084 if ( sc->chiptype != CHIP_I810 ) 1085 return EINVAL; 1086 1087 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) { 1088 bus_write_4(sc->sc_res[0], 1089 AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, 0); 1090 } 1091 1092 return 0; 1093 } 1094 1095 static device_method_t agp_i810_methods[] = { 1096 /* Device interface */ 1097 DEVMETHOD(device_identify, agp_i810_identify), 1098 DEVMETHOD(device_probe, agp_i810_probe), 1099 DEVMETHOD(device_attach, agp_i810_attach), 1100 DEVMETHOD(device_detach, agp_i810_detach), 1101 DEVMETHOD(device_suspend, bus_generic_suspend), 1102 DEVMETHOD(device_resume, agp_i810_resume), 1103 1104 /* AGP interface */ 1105 DEVMETHOD(agp_get_aperture, agp_generic_get_aperture), 1106 DEVMETHOD(agp_set_aperture, agp_i810_set_aperture), 1107 DEVMETHOD(agp_bind_page, agp_i810_bind_page), 1108 DEVMETHOD(agp_unbind_page, agp_i810_unbind_page), 1109 DEVMETHOD(agp_flush_tlb, agp_i810_flush_tlb), 1110 DEVMETHOD(agp_enable, agp_i810_enable), 1111 DEVMETHOD(agp_alloc_memory, agp_i810_alloc_memory), 1112 DEVMETHOD(agp_free_memory, agp_i810_free_memory), 1113 DEVMETHOD(agp_bind_memory, agp_i810_bind_memory), 1114 DEVMETHOD(agp_unbind_memory, agp_i810_unbind_memory), 1115 1116 { 0, 0 } 1117 }; 1118 1119 static driver_t agp_i810_driver = { 1120 "agp", 1121 agp_i810_methods, 1122 sizeof(struct agp_i810_softc), 1123 }; 1124 1125 static devclass_t agp_devclass; 1126 1127 DRIVER_MODULE(agp_i810, vgapci, agp_i810_driver, agp_devclass, 0, 0); 1128 MODULE_DEPEND(agp_i810, agp, 1, 1, 1); 1129 MODULE_DEPEND(agp_i810, pci, 1, 1, 1); 1130