1 /* 2 * Copyright 2008 Advanced Micro Devices, Inc. 3 * Copyright 2008 Red Hat Inc. 4 * Copyright 2009 Jerome Glisse. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 23 * 24 * Authors: Dave Airlie 25 * Alex Deucher 26 * Jerome Glisse 27 */ 28 #include <linux/console.h> 29 #include <linux/slab.h> 30 #include <drm/drmP.h> 31 #include <drm/drm_crtc_helper.h> 32 #include <drm/radeon_drm.h> 33 #include <linux/vgaarb.h> 34 #include <linux/vga_switcheroo.h> 35 #include <linux/efi.h> 36 #include "radeon_reg.h" 37 #include "radeon.h" 38 #include "atom.h" 39 40 static const char radeon_family_name[][16] = { 41 "R100", 42 "RV100", 43 "RS100", 44 "RV200", 45 "RS200", 46 "R200", 47 "RV250", 48 "RS300", 49 "RV280", 50 "R300", 51 "R350", 52 "RV350", 53 "RV380", 54 "R420", 55 "R423", 56 "RV410", 57 "RS400", 58 "RS480", 59 "RS600", 60 "RS690", 61 "RS740", 62 "RV515", 63 "R520", 64 "RV530", 65 "RV560", 66 "RV570", 67 "R580", 68 "R600", 69 "RV610", 70 "RV630", 71 "RV670", 72 "RV620", 73 "RV635", 74 "RS780", 75 "RS880", 76 "RV770", 77 "RV730", 78 "RV710", 79 "RV740", 80 "CEDAR", 81 "REDWOOD", 82 "JUNIPER", 83 "CYPRESS", 84 "HEMLOCK", 85 "PALM", 86 "SUMO", 87 "SUMO2", 88 "BARTS", 89 "TURKS", 90 "CAICOS", 91 "CAYMAN", 92 "ARUBA", 93 "TAHITI", 94 "PITCAIRN", 95 "VERDE", 96 "OLAND", 97 "HAINAN", 98 "BONAIRE", 99 "KAVERI", 100 "KABINI", 101 "HAWAII", 102 "MULLINS", 103 "LAST", 104 }; 105 106 #define RADEON_PX_QUIRK_DISABLE_PX (1 << 0) 107 #define RADEON_PX_QUIRK_LONG_WAKEUP (1 << 1) 108 109 struct radeon_px_quirk { 110 u32 chip_vendor; 111 u32 chip_device; 112 u32 subsys_vendor; 113 u32 subsys_device; 114 u32 px_quirk_flags; 115 }; 116 117 static struct radeon_px_quirk radeon_px_quirk_list[] = { 118 /* Acer aspire 5560g (CPU: AMD A4-3305M; GPU: AMD Radeon HD 6480g + 7470m) 119 * https://bugzilla.kernel.org/show_bug.cgi?id=74551 120 */ 121 { PCI_VENDOR_ID_ATI, 0x6760, 0x1025, 0x0672, RADEON_PX_QUIRK_DISABLE_PX }, 122 /* Asus K73TA laptop with AMD A6-3400M APU and Radeon 6550 GPU 123 * https://bugzilla.kernel.org/show_bug.cgi?id=51381 124 */ 125 { PCI_VENDOR_ID_ATI, 0x6741, 0x1043, 0x108c, RADEON_PX_QUIRK_DISABLE_PX }, 126 /* macbook pro 8.2 */ 127 { PCI_VENDOR_ID_ATI, 0x6741, PCI_VENDOR_ID_APPLE, 0x00e2, RADEON_PX_QUIRK_LONG_WAKEUP }, 128 { 0, 0, 0, 0, 0 }, 129 }; 130 131 bool radeon_is_px(struct drm_device *dev) 132 { 133 struct radeon_device *rdev = dev->dev_private; 134 135 if (rdev->flags & RADEON_IS_PX) 136 return true; 137 return false; 138 } 139 140 static void radeon_device_handle_px_quirks(struct radeon_device *rdev) 141 { 142 struct radeon_px_quirk *p = radeon_px_quirk_list; 143 144 /* Apply PX quirks */ 145 while (p && p->chip_device != 0) { 146 if (rdev->pdev->vendor == p->chip_vendor && 147 rdev->pdev->device == p->chip_device && 148 rdev->pdev->subsystem_vendor == p->subsys_vendor && 149 rdev->pdev->subsystem_device == p->subsys_device) { 150 rdev->px_quirk_flags = p->px_quirk_flags; 151 break; 152 } 153 ++p; 154 } 155 156 if (rdev->px_quirk_flags & RADEON_PX_QUIRK_DISABLE_PX) 157 rdev->flags &= ~RADEON_IS_PX; 158 } 159 160 /** 161 * radeon_program_register_sequence - program an array of registers. 162 * 163 * @rdev: radeon_device pointer 164 * @registers: pointer to the register array 165 * @array_size: size of the register array 166 * 167 * Programs an array or registers with and and or masks. 168 * This is a helper for setting golden registers. 169 */ 170 void radeon_program_register_sequence(struct radeon_device *rdev, 171 const u32 *registers, 172 const u32 array_size) 173 { 174 u32 tmp, reg, and_mask, or_mask; 175 int i; 176 177 if (array_size % 3) 178 return; 179 180 for (i = 0; i < array_size; i +=3) { 181 reg = registers[i + 0]; 182 and_mask = registers[i + 1]; 183 or_mask = registers[i + 2]; 184 185 if (and_mask == 0xffffffff) { 186 tmp = or_mask; 187 } else { 188 tmp = RREG32(reg); 189 tmp &= ~and_mask; 190 tmp |= or_mask; 191 } 192 WREG32(reg, tmp); 193 } 194 } 195 196 void radeon_pci_config_reset(struct radeon_device *rdev) 197 { 198 pci_write_config_dword(rdev->pdev, 0x7c, RADEON_ASIC_RESET_DATA); 199 } 200 201 /** 202 * radeon_surface_init - Clear GPU surface registers. 203 * 204 * @rdev: radeon_device pointer 205 * 206 * Clear GPU surface registers (r1xx-r5xx). 207 */ 208 void radeon_surface_init(struct radeon_device *rdev) 209 { 210 /* FIXME: check this out */ 211 if (rdev->family < CHIP_R600) { 212 int i; 213 214 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) { 215 if (rdev->surface_regs[i].bo) 216 radeon_bo_get_surface_reg(rdev->surface_regs[i].bo); 217 else 218 radeon_clear_surface_reg(rdev, i); 219 } 220 /* enable surfaces */ 221 WREG32(RADEON_SURFACE_CNTL, 0); 222 } 223 } 224 225 /* 226 * GPU scratch registers helpers function. 227 */ 228 /** 229 * radeon_scratch_init - Init scratch register driver information. 230 * 231 * @rdev: radeon_device pointer 232 * 233 * Init CP scratch register driver information (r1xx-r5xx) 234 */ 235 void radeon_scratch_init(struct radeon_device *rdev) 236 { 237 int i; 238 239 /* FIXME: check this out */ 240 if (rdev->family < CHIP_R300) { 241 rdev->scratch.num_reg = 5; 242 } else { 243 rdev->scratch.num_reg = 7; 244 } 245 rdev->scratch.reg_base = RADEON_SCRATCH_REG0; 246 for (i = 0; i < rdev->scratch.num_reg; i++) { 247 rdev->scratch.free[i] = true; 248 rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4); 249 } 250 } 251 252 /** 253 * radeon_scratch_get - Allocate a scratch register 254 * 255 * @rdev: radeon_device pointer 256 * @reg: scratch register mmio offset 257 * 258 * Allocate a CP scratch register for use by the driver (all asics). 259 * Returns 0 on success or -EINVAL on failure. 260 */ 261 int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg) 262 { 263 int i; 264 265 for (i = 0; i < rdev->scratch.num_reg; i++) { 266 if (rdev->scratch.free[i]) { 267 rdev->scratch.free[i] = false; 268 *reg = rdev->scratch.reg[i]; 269 return 0; 270 } 271 } 272 return -EINVAL; 273 } 274 275 /** 276 * radeon_scratch_free - Free a scratch register 277 * 278 * @rdev: radeon_device pointer 279 * @reg: scratch register mmio offset 280 * 281 * Free a CP scratch register allocated for use by the driver (all asics) 282 */ 283 void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg) 284 { 285 int i; 286 287 for (i = 0; i < rdev->scratch.num_reg; i++) { 288 if (rdev->scratch.reg[i] == reg) { 289 rdev->scratch.free[i] = true; 290 return; 291 } 292 } 293 } 294 295 /* 296 * GPU doorbell aperture helpers function. 297 */ 298 /** 299 * radeon_doorbell_init - Init doorbell driver information. 300 * 301 * @rdev: radeon_device pointer 302 * 303 * Init doorbell driver information (CIK) 304 * Returns 0 on success, error on failure. 305 */ 306 static int radeon_doorbell_init(struct radeon_device *rdev) 307 { 308 /* doorbell bar mapping */ 309 rdev->doorbell.base = pci_resource_start(rdev->pdev, 2); 310 rdev->doorbell.size = pci_resource_len(rdev->pdev, 2); 311 312 rdev->doorbell.num_doorbells = min_t(u32, rdev->doorbell.size / sizeof(u32), RADEON_MAX_DOORBELLS); 313 if (rdev->doorbell.num_doorbells == 0) 314 return -EINVAL; 315 316 rdev->doorbell.ptr = ioremap(rdev->doorbell.base, rdev->doorbell.num_doorbells * sizeof(u32)); 317 if (rdev->doorbell.ptr == NULL) { 318 return -ENOMEM; 319 } 320 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)rdev->doorbell.base); 321 DRM_INFO("doorbell mmio size: %u\n", (unsigned)rdev->doorbell.size); 322 323 memset(&rdev->doorbell.used, 0, sizeof(rdev->doorbell.used)); 324 325 return 0; 326 } 327 328 /** 329 * radeon_doorbell_fini - Tear down doorbell driver information. 330 * 331 * @rdev: radeon_device pointer 332 * 333 * Tear down doorbell driver information (CIK) 334 */ 335 static void radeon_doorbell_fini(struct radeon_device *rdev) 336 { 337 iounmap(rdev->doorbell.ptr); 338 rdev->doorbell.ptr = NULL; 339 } 340 341 /** 342 * radeon_doorbell_get - Allocate a doorbell entry 343 * 344 * @rdev: radeon_device pointer 345 * @doorbell: doorbell index 346 * 347 * Allocate a doorbell for use by the driver (all asics). 348 * Returns 0 on success or -EINVAL on failure. 349 */ 350 int radeon_doorbell_get(struct radeon_device *rdev, u32 *doorbell) 351 { 352 unsigned long offset = find_first_zero_bit(rdev->doorbell.used, rdev->doorbell.num_doorbells); 353 if (offset < rdev->doorbell.num_doorbells) { 354 __set_bit(offset, rdev->doorbell.used); 355 *doorbell = offset; 356 return 0; 357 } else { 358 return -EINVAL; 359 } 360 } 361 362 /** 363 * radeon_doorbell_free - Free a doorbell entry 364 * 365 * @rdev: radeon_device pointer 366 * @doorbell: doorbell index 367 * 368 * Free a doorbell allocated for use by the driver (all asics) 369 */ 370 void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell) 371 { 372 if (doorbell < rdev->doorbell.num_doorbells) 373 __clear_bit(doorbell, rdev->doorbell.used); 374 } 375 376 /* 377 * radeon_wb_*() 378 * Writeback is the the method by which the the GPU updates special pages 379 * in memory with the status of certain GPU events (fences, ring pointers, 380 * etc.). 381 */ 382 383 /** 384 * radeon_wb_disable - Disable Writeback 385 * 386 * @rdev: radeon_device pointer 387 * 388 * Disables Writeback (all asics). Used for suspend. 389 */ 390 void radeon_wb_disable(struct radeon_device *rdev) 391 { 392 rdev->wb.enabled = false; 393 } 394 395 /** 396 * radeon_wb_fini - Disable Writeback and free memory 397 * 398 * @rdev: radeon_device pointer 399 * 400 * Disables Writeback and frees the Writeback memory (all asics). 401 * Used at driver shutdown. 402 */ 403 void radeon_wb_fini(struct radeon_device *rdev) 404 { 405 radeon_wb_disable(rdev); 406 if (rdev->wb.wb_obj) { 407 if (!radeon_bo_reserve(rdev->wb.wb_obj, false)) { 408 radeon_bo_kunmap(rdev->wb.wb_obj); 409 radeon_bo_unpin(rdev->wb.wb_obj); 410 radeon_bo_unreserve(rdev->wb.wb_obj); 411 } 412 radeon_bo_unref(&rdev->wb.wb_obj); 413 rdev->wb.wb = NULL; 414 rdev->wb.wb_obj = NULL; 415 } 416 } 417 418 /** 419 * radeon_wb_init- Init Writeback driver info and allocate memory 420 * 421 * @rdev: radeon_device pointer 422 * 423 * Disables Writeback and frees the Writeback memory (all asics). 424 * Used at driver startup. 425 * Returns 0 on success or an -error on failure. 426 */ 427 int radeon_wb_init(struct radeon_device *rdev) 428 { 429 int r; 430 431 if (rdev->wb.wb_obj == NULL) { 432 r = radeon_bo_create(rdev, RADEON_GPU_PAGE_SIZE, PAGE_SIZE, true, 433 RADEON_GEM_DOMAIN_GTT, 0, NULL, 434 &rdev->wb.wb_obj); 435 if (r) { 436 dev_warn(rdev->dev, "(%d) create WB bo failed\n", r); 437 return r; 438 } 439 r = radeon_bo_reserve(rdev->wb.wb_obj, false); 440 if (unlikely(r != 0)) { 441 radeon_wb_fini(rdev); 442 return r; 443 } 444 r = radeon_bo_pin(rdev->wb.wb_obj, RADEON_GEM_DOMAIN_GTT, 445 &rdev->wb.gpu_addr); 446 if (r) { 447 radeon_bo_unreserve(rdev->wb.wb_obj); 448 dev_warn(rdev->dev, "(%d) pin WB bo failed\n", r); 449 radeon_wb_fini(rdev); 450 return r; 451 } 452 r = radeon_bo_kmap(rdev->wb.wb_obj, (void **)&rdev->wb.wb); 453 radeon_bo_unreserve(rdev->wb.wb_obj); 454 if (r) { 455 dev_warn(rdev->dev, "(%d) map WB bo failed\n", r); 456 radeon_wb_fini(rdev); 457 return r; 458 } 459 } 460 461 /* clear wb memory */ 462 memset((char *)rdev->wb.wb, 0, RADEON_GPU_PAGE_SIZE); 463 /* disable event_write fences */ 464 rdev->wb.use_event = false; 465 /* disabled via module param */ 466 if (radeon_no_wb == 1) { 467 rdev->wb.enabled = false; 468 } else { 469 if (rdev->flags & RADEON_IS_AGP) { 470 /* often unreliable on AGP */ 471 rdev->wb.enabled = false; 472 } else if (rdev->family < CHIP_R300) { 473 /* often unreliable on pre-r300 */ 474 rdev->wb.enabled = false; 475 } else { 476 rdev->wb.enabled = true; 477 /* event_write fences are only available on r600+ */ 478 if (rdev->family >= CHIP_R600) { 479 rdev->wb.use_event = true; 480 } 481 } 482 } 483 /* always use writeback/events on NI, APUs */ 484 if (rdev->family >= CHIP_PALM) { 485 rdev->wb.enabled = true; 486 rdev->wb.use_event = true; 487 } 488 489 dev_info(rdev->dev, "WB %sabled\n", rdev->wb.enabled ? "en" : "dis"); 490 491 return 0; 492 } 493 494 /** 495 * radeon_vram_location - try to find VRAM location 496 * @rdev: radeon device structure holding all necessary informations 497 * @mc: memory controller structure holding memory informations 498 * @base: base address at which to put VRAM 499 * 500 * Function will place try to place VRAM at base address provided 501 * as parameter (which is so far either PCI aperture address or 502 * for IGP TOM base address). 503 * 504 * If there is not enough space to fit the unvisible VRAM in the 32bits 505 * address space then we limit the VRAM size to the aperture. 506 * 507 * If we are using AGP and if the AGP aperture doesn't allow us to have 508 * room for all the VRAM than we restrict the VRAM to the PCI aperture 509 * size and print a warning. 510 * 511 * This function will never fails, worst case are limiting VRAM. 512 * 513 * Note: GTT start, end, size should be initialized before calling this 514 * function on AGP platform. 515 * 516 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size, 517 * this shouldn't be a problem as we are using the PCI aperture as a reference. 518 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but 519 * not IGP. 520 * 521 * Note: we use mc_vram_size as on some board we need to program the mc to 522 * cover the whole aperture even if VRAM size is inferior to aperture size 523 * Novell bug 204882 + along with lots of ubuntu ones 524 * 525 * Note: when limiting vram it's safe to overwritte real_vram_size because 526 * we are not in case where real_vram_size is inferior to mc_vram_size (ie 527 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu 528 * ones) 529 * 530 * Note: IGP TOM addr should be the same as the aperture addr, we don't 531 * explicitly check for that thought. 532 * 533 * FIXME: when reducing VRAM size align new size on power of 2. 534 */ 535 void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base) 536 { 537 uint64_t limit = (uint64_t)radeon_vram_limit << 20; 538 539 mc->vram_start = base; 540 if (mc->mc_vram_size > (rdev->mc.mc_mask - base + 1)) { 541 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n"); 542 mc->real_vram_size = mc->aper_size; 543 mc->mc_vram_size = mc->aper_size; 544 } 545 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1; 546 if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_start <= mc->gtt_end) { 547 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n"); 548 mc->real_vram_size = mc->aper_size; 549 mc->mc_vram_size = mc->aper_size; 550 } 551 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1; 552 if (limit && limit < mc->real_vram_size) 553 mc->real_vram_size = limit; 554 dev_info(rdev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n", 555 mc->mc_vram_size >> 20, mc->vram_start, 556 mc->vram_end, mc->real_vram_size >> 20); 557 } 558 559 /** 560 * radeon_gtt_location - try to find GTT location 561 * @rdev: radeon device structure holding all necessary informations 562 * @mc: memory controller structure holding memory informations 563 * 564 * Function will place try to place GTT before or after VRAM. 565 * 566 * If GTT size is bigger than space left then we ajust GTT size. 567 * Thus function will never fails. 568 * 569 * FIXME: when reducing GTT size align new size on power of 2. 570 */ 571 void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc) 572 { 573 u64 size_af, size_bf; 574 575 size_af = ((rdev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align; 576 size_bf = mc->vram_start & ~mc->gtt_base_align; 577 if (size_bf > size_af) { 578 if (mc->gtt_size > size_bf) { 579 dev_warn(rdev->dev, "limiting GTT\n"); 580 mc->gtt_size = size_bf; 581 } 582 mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size; 583 } else { 584 if (mc->gtt_size > size_af) { 585 dev_warn(rdev->dev, "limiting GTT\n"); 586 mc->gtt_size = size_af; 587 } 588 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align; 589 } 590 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1; 591 dev_info(rdev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n", 592 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end); 593 } 594 595 /* 596 * GPU helpers function. 597 */ 598 /** 599 * radeon_card_posted - check if the hw has already been initialized 600 * 601 * @rdev: radeon_device pointer 602 * 603 * Check if the asic has been initialized (all asics). 604 * Used at driver startup. 605 * Returns true if initialized or false if not. 606 */ 607 bool radeon_card_posted(struct radeon_device *rdev) 608 { 609 uint32_t reg; 610 611 /* required for EFI mode on macbook2,1 which uses an r5xx asic */ 612 if (efi_enabled(EFI_BOOT) && 613 (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) && 614 (rdev->family < CHIP_R600)) 615 return false; 616 617 if (ASIC_IS_NODCE(rdev)) 618 goto check_memsize; 619 620 /* first check CRTCs */ 621 if (ASIC_IS_DCE4(rdev)) { 622 reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) | 623 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET); 624 if (rdev->num_crtc >= 4) { 625 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) | 626 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET); 627 } 628 if (rdev->num_crtc >= 6) { 629 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) | 630 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET); 631 } 632 if (reg & EVERGREEN_CRTC_MASTER_EN) 633 return true; 634 } else if (ASIC_IS_AVIVO(rdev)) { 635 reg = RREG32(AVIVO_D1CRTC_CONTROL) | 636 RREG32(AVIVO_D2CRTC_CONTROL); 637 if (reg & AVIVO_CRTC_EN) { 638 return true; 639 } 640 } else { 641 reg = RREG32(RADEON_CRTC_GEN_CNTL) | 642 RREG32(RADEON_CRTC2_GEN_CNTL); 643 if (reg & RADEON_CRTC_EN) { 644 return true; 645 } 646 } 647 648 check_memsize: 649 /* then check MEM_SIZE, in case the crtcs are off */ 650 if (rdev->family >= CHIP_R600) 651 reg = RREG32(R600_CONFIG_MEMSIZE); 652 else 653 reg = RREG32(RADEON_CONFIG_MEMSIZE); 654 655 if (reg) 656 return true; 657 658 return false; 659 660 } 661 662 /** 663 * radeon_update_bandwidth_info - update display bandwidth params 664 * 665 * @rdev: radeon_device pointer 666 * 667 * Used when sclk/mclk are switched or display modes are set. 668 * params are used to calculate display watermarks (all asics) 669 */ 670 void radeon_update_bandwidth_info(struct radeon_device *rdev) 671 { 672 fixed20_12 a; 673 u32 sclk = rdev->pm.current_sclk; 674 u32 mclk = rdev->pm.current_mclk; 675 676 /* sclk/mclk in Mhz */ 677 a.full = dfixed_const(100); 678 rdev->pm.sclk.full = dfixed_const(sclk); 679 rdev->pm.sclk.full = dfixed_div(rdev->pm.sclk, a); 680 rdev->pm.mclk.full = dfixed_const(mclk); 681 rdev->pm.mclk.full = dfixed_div(rdev->pm.mclk, a); 682 683 if (rdev->flags & RADEON_IS_IGP) { 684 a.full = dfixed_const(16); 685 /* core_bandwidth = sclk(Mhz) * 16 */ 686 rdev->pm.core_bandwidth.full = dfixed_div(rdev->pm.sclk, a); 687 } 688 } 689 690 /** 691 * radeon_boot_test_post_card - check and possibly initialize the hw 692 * 693 * @rdev: radeon_device pointer 694 * 695 * Check if the asic is initialized and if not, attempt to initialize 696 * it (all asics). 697 * Returns true if initialized or false if not. 698 */ 699 bool radeon_boot_test_post_card(struct radeon_device *rdev) 700 { 701 if (radeon_card_posted(rdev)) 702 return true; 703 704 if (rdev->bios) { 705 DRM_INFO("GPU not posted. posting now...\n"); 706 if (rdev->is_atom_bios) 707 atom_asic_init(rdev->mode_info.atom_context); 708 else 709 radeon_combios_asic_init(rdev->ddev); 710 return true; 711 } else { 712 dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n"); 713 return false; 714 } 715 } 716 717 /** 718 * radeon_dummy_page_init - init dummy page used by the driver 719 * 720 * @rdev: radeon_device pointer 721 * 722 * Allocate the dummy page used by the driver (all asics). 723 * This dummy page is used by the driver as a filler for gart entries 724 * when pages are taken out of the GART 725 * Returns 0 on sucess, -ENOMEM on failure. 726 */ 727 int radeon_dummy_page_init(struct radeon_device *rdev) 728 { 729 if (rdev->dummy_page.page) 730 return 0; 731 rdev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO); 732 if (rdev->dummy_page.page == NULL) 733 return -ENOMEM; 734 rdev->dummy_page.addr = pci_map_page(rdev->pdev, rdev->dummy_page.page, 735 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); 736 if (pci_dma_mapping_error(rdev->pdev, rdev->dummy_page.addr)) { 737 dev_err(&rdev->pdev->dev, "Failed to DMA MAP the dummy page\n"); 738 __free_page(rdev->dummy_page.page); 739 rdev->dummy_page.page = NULL; 740 return -ENOMEM; 741 } 742 return 0; 743 } 744 745 /** 746 * radeon_dummy_page_fini - free dummy page used by the driver 747 * 748 * @rdev: radeon_device pointer 749 * 750 * Frees the dummy page used by the driver (all asics). 751 */ 752 void radeon_dummy_page_fini(struct radeon_device *rdev) 753 { 754 if (rdev->dummy_page.page == NULL) 755 return; 756 pci_unmap_page(rdev->pdev, rdev->dummy_page.addr, 757 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); 758 __free_page(rdev->dummy_page.page); 759 rdev->dummy_page.page = NULL; 760 } 761 762 763 /* ATOM accessor methods */ 764 /* 765 * ATOM is an interpreted byte code stored in tables in the vbios. The 766 * driver registers callbacks to access registers and the interpreter 767 * in the driver parses the tables and executes then to program specific 768 * actions (set display modes, asic init, etc.). See radeon_atombios.c, 769 * atombios.h, and atom.c 770 */ 771 772 /** 773 * cail_pll_read - read PLL register 774 * 775 * @info: atom card_info pointer 776 * @reg: PLL register offset 777 * 778 * Provides a PLL register accessor for the atom interpreter (r4xx+). 779 * Returns the value of the PLL register. 780 */ 781 static uint32_t cail_pll_read(struct card_info *info, uint32_t reg) 782 { 783 struct radeon_device *rdev = info->dev->dev_private; 784 uint32_t r; 785 786 r = rdev->pll_rreg(rdev, reg); 787 return r; 788 } 789 790 /** 791 * cail_pll_write - write PLL register 792 * 793 * @info: atom card_info pointer 794 * @reg: PLL register offset 795 * @val: value to write to the pll register 796 * 797 * Provides a PLL register accessor for the atom interpreter (r4xx+). 798 */ 799 static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val) 800 { 801 struct radeon_device *rdev = info->dev->dev_private; 802 803 rdev->pll_wreg(rdev, reg, val); 804 } 805 806 /** 807 * cail_mc_read - read MC (Memory Controller) register 808 * 809 * @info: atom card_info pointer 810 * @reg: MC register offset 811 * 812 * Provides an MC register accessor for the atom interpreter (r4xx+). 813 * Returns the value of the MC register. 814 */ 815 static uint32_t cail_mc_read(struct card_info *info, uint32_t reg) 816 { 817 struct radeon_device *rdev = info->dev->dev_private; 818 uint32_t r; 819 820 r = rdev->mc_rreg(rdev, reg); 821 return r; 822 } 823 824 /** 825 * cail_mc_write - write MC (Memory Controller) register 826 * 827 * @info: atom card_info pointer 828 * @reg: MC register offset 829 * @val: value to write to the pll register 830 * 831 * Provides a MC register accessor for the atom interpreter (r4xx+). 832 */ 833 static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val) 834 { 835 struct radeon_device *rdev = info->dev->dev_private; 836 837 rdev->mc_wreg(rdev, reg, val); 838 } 839 840 /** 841 * cail_reg_write - write MMIO register 842 * 843 * @info: atom card_info pointer 844 * @reg: MMIO register offset 845 * @val: value to write to the pll register 846 * 847 * Provides a MMIO register accessor for the atom interpreter (r4xx+). 848 */ 849 static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val) 850 { 851 struct radeon_device *rdev = info->dev->dev_private; 852 853 WREG32(reg*4, val); 854 } 855 856 /** 857 * cail_reg_read - read MMIO register 858 * 859 * @info: atom card_info pointer 860 * @reg: MMIO register offset 861 * 862 * Provides an MMIO register accessor for the atom interpreter (r4xx+). 863 * Returns the value of the MMIO register. 864 */ 865 static uint32_t cail_reg_read(struct card_info *info, uint32_t reg) 866 { 867 struct radeon_device *rdev = info->dev->dev_private; 868 uint32_t r; 869 870 r = RREG32(reg*4); 871 return r; 872 } 873 874 /** 875 * cail_ioreg_write - write IO register 876 * 877 * @info: atom card_info pointer 878 * @reg: IO register offset 879 * @val: value to write to the pll register 880 * 881 * Provides a IO register accessor for the atom interpreter (r4xx+). 882 */ 883 static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val) 884 { 885 struct radeon_device *rdev = info->dev->dev_private; 886 887 WREG32_IO(reg*4, val); 888 } 889 890 /** 891 * cail_ioreg_read - read IO register 892 * 893 * @info: atom card_info pointer 894 * @reg: IO register offset 895 * 896 * Provides an IO register accessor for the atom interpreter (r4xx+). 897 * Returns the value of the IO register. 898 */ 899 static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg) 900 { 901 struct radeon_device *rdev = info->dev->dev_private; 902 uint32_t r; 903 904 r = RREG32_IO(reg*4); 905 return r; 906 } 907 908 /** 909 * radeon_atombios_init - init the driver info and callbacks for atombios 910 * 911 * @rdev: radeon_device pointer 912 * 913 * Initializes the driver info and register access callbacks for the 914 * ATOM interpreter (r4xx+). 915 * Returns 0 on sucess, -ENOMEM on failure. 916 * Called at driver startup. 917 */ 918 int radeon_atombios_init(struct radeon_device *rdev) 919 { 920 struct card_info *atom_card_info = 921 kzalloc(sizeof(struct card_info), GFP_KERNEL); 922 923 if (!atom_card_info) 924 return -ENOMEM; 925 926 rdev->mode_info.atom_card_info = atom_card_info; 927 atom_card_info->dev = rdev->ddev; 928 atom_card_info->reg_read = cail_reg_read; 929 atom_card_info->reg_write = cail_reg_write; 930 /* needed for iio ops */ 931 if (rdev->rio_mem) { 932 atom_card_info->ioreg_read = cail_ioreg_read; 933 atom_card_info->ioreg_write = cail_ioreg_write; 934 } else { 935 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n"); 936 atom_card_info->ioreg_read = cail_reg_read; 937 atom_card_info->ioreg_write = cail_reg_write; 938 } 939 atom_card_info->mc_read = cail_mc_read; 940 atom_card_info->mc_write = cail_mc_write; 941 atom_card_info->pll_read = cail_pll_read; 942 atom_card_info->pll_write = cail_pll_write; 943 944 rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios); 945 if (!rdev->mode_info.atom_context) { 946 radeon_atombios_fini(rdev); 947 return -ENOMEM; 948 } 949 950 mutex_init(&rdev->mode_info.atom_context->mutex); 951 radeon_atom_initialize_bios_scratch_regs(rdev->ddev); 952 atom_allocate_fb_scratch(rdev->mode_info.atom_context); 953 return 0; 954 } 955 956 /** 957 * radeon_atombios_fini - free the driver info and callbacks for atombios 958 * 959 * @rdev: radeon_device pointer 960 * 961 * Frees the driver info and register access callbacks for the ATOM 962 * interpreter (r4xx+). 963 * Called at driver shutdown. 964 */ 965 void radeon_atombios_fini(struct radeon_device *rdev) 966 { 967 if (rdev->mode_info.atom_context) { 968 kfree(rdev->mode_info.atom_context->scratch); 969 } 970 kfree(rdev->mode_info.atom_context); 971 rdev->mode_info.atom_context = NULL; 972 kfree(rdev->mode_info.atom_card_info); 973 rdev->mode_info.atom_card_info = NULL; 974 } 975 976 /* COMBIOS */ 977 /* 978 * COMBIOS is the bios format prior to ATOM. It provides 979 * command tables similar to ATOM, but doesn't have a unified 980 * parser. See radeon_combios.c 981 */ 982 983 /** 984 * radeon_combios_init - init the driver info for combios 985 * 986 * @rdev: radeon_device pointer 987 * 988 * Initializes the driver info for combios (r1xx-r3xx). 989 * Returns 0 on sucess. 990 * Called at driver startup. 991 */ 992 int radeon_combios_init(struct radeon_device *rdev) 993 { 994 radeon_combios_initialize_bios_scratch_regs(rdev->ddev); 995 return 0; 996 } 997 998 /** 999 * radeon_combios_fini - free the driver info for combios 1000 * 1001 * @rdev: radeon_device pointer 1002 * 1003 * Frees the driver info for combios (r1xx-r3xx). 1004 * Called at driver shutdown. 1005 */ 1006 void radeon_combios_fini(struct radeon_device *rdev) 1007 { 1008 } 1009 1010 /* if we get transitioned to only one device, take VGA back */ 1011 /** 1012 * radeon_vga_set_decode - enable/disable vga decode 1013 * 1014 * @cookie: radeon_device pointer 1015 * @state: enable/disable vga decode 1016 * 1017 * Enable/disable vga decode (all asics). 1018 * Returns VGA resource flags. 1019 */ 1020 static unsigned int radeon_vga_set_decode(void *cookie, bool state) 1021 { 1022 struct radeon_device *rdev = cookie; 1023 radeon_vga_set_state(rdev, state); 1024 if (state) 1025 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | 1026 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; 1027 else 1028 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; 1029 } 1030 1031 /** 1032 * radeon_check_pot_argument - check that argument is a power of two 1033 * 1034 * @arg: value to check 1035 * 1036 * Validates that a certain argument is a power of two (all asics). 1037 * Returns true if argument is valid. 1038 */ 1039 static bool radeon_check_pot_argument(int arg) 1040 { 1041 return (arg & (arg - 1)) == 0; 1042 } 1043 1044 /** 1045 * radeon_check_arguments - validate module params 1046 * 1047 * @rdev: radeon_device pointer 1048 * 1049 * Validates certain module parameters and updates 1050 * the associated values used by the driver (all asics). 1051 */ 1052 static void radeon_check_arguments(struct radeon_device *rdev) 1053 { 1054 /* vramlimit must be a power of two */ 1055 if (!radeon_check_pot_argument(radeon_vram_limit)) { 1056 dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n", 1057 radeon_vram_limit); 1058 radeon_vram_limit = 0; 1059 } 1060 1061 if (radeon_gart_size == -1) { 1062 /* default to a larger gart size on newer asics */ 1063 if (rdev->family >= CHIP_RV770) 1064 radeon_gart_size = 1024; 1065 else 1066 radeon_gart_size = 512; 1067 } 1068 /* gtt size must be power of two and greater or equal to 32M */ 1069 if (radeon_gart_size < 32) { 1070 dev_warn(rdev->dev, "gart size (%d) too small\n", 1071 radeon_gart_size); 1072 if (rdev->family >= CHIP_RV770) 1073 radeon_gart_size = 1024; 1074 else 1075 radeon_gart_size = 512; 1076 } else if (!radeon_check_pot_argument(radeon_gart_size)) { 1077 dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n", 1078 radeon_gart_size); 1079 if (rdev->family >= CHIP_RV770) 1080 radeon_gart_size = 1024; 1081 else 1082 radeon_gart_size = 512; 1083 } 1084 rdev->mc.gtt_size = (uint64_t)radeon_gart_size << 20; 1085 1086 /* AGP mode can only be -1, 1, 2, 4, 8 */ 1087 switch (radeon_agpmode) { 1088 case -1: 1089 case 0: 1090 case 1: 1091 case 2: 1092 case 4: 1093 case 8: 1094 break; 1095 default: 1096 dev_warn(rdev->dev, "invalid AGP mode %d (valid mode: " 1097 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode); 1098 radeon_agpmode = 0; 1099 break; 1100 } 1101 1102 if (!radeon_check_pot_argument(radeon_vm_size)) { 1103 dev_warn(rdev->dev, "VM size (%d) must be a power of 2\n", 1104 radeon_vm_size); 1105 radeon_vm_size = 4; 1106 } 1107 1108 if (radeon_vm_size < 1) { 1109 dev_warn(rdev->dev, "VM size (%d) to small, min is 1GB\n", 1110 radeon_vm_size); 1111 radeon_vm_size = 4; 1112 } 1113 1114 /* 1115 * Max GPUVM size for Cayman, SI and CI are 40 bits. 1116 */ 1117 if (radeon_vm_size > 1024) { 1118 dev_warn(rdev->dev, "VM size (%d) too large, max is 1TB\n", 1119 radeon_vm_size); 1120 radeon_vm_size = 4; 1121 } 1122 1123 /* defines number of bits in page table versus page directory, 1124 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the 1125 * page table and the remaining bits are in the page directory */ 1126 if (radeon_vm_block_size == -1) { 1127 1128 /* Total bits covered by PD + PTs */ 1129 unsigned bits = ilog2(radeon_vm_size) + 17; 1130 1131 /* Make sure the PD is 4K in size up to 8GB address space. 1132 Above that split equal between PD and PTs */ 1133 if (radeon_vm_size <= 8) 1134 radeon_vm_block_size = bits - 9; 1135 else 1136 radeon_vm_block_size = (bits + 3) / 2; 1137 1138 } else if (radeon_vm_block_size < 9) { 1139 dev_warn(rdev->dev, "VM page table size (%d) too small\n", 1140 radeon_vm_block_size); 1141 radeon_vm_block_size = 9; 1142 } 1143 1144 if (radeon_vm_block_size > 24 || 1145 (radeon_vm_size * 1024) < (1ull << radeon_vm_block_size)) { 1146 dev_warn(rdev->dev, "VM page table size (%d) too large\n", 1147 radeon_vm_block_size); 1148 radeon_vm_block_size = 9; 1149 } 1150 } 1151 1152 /** 1153 * radeon_switcheroo_set_state - set switcheroo state 1154 * 1155 * @pdev: pci dev pointer 1156 * @state: vga switcheroo state 1157 * 1158 * Callback for the switcheroo driver. Suspends or resumes the 1159 * the asics before or after it is powered up using ACPI methods. 1160 */ 1161 static void radeon_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state) 1162 { 1163 struct drm_device *dev = pci_get_drvdata(pdev); 1164 struct radeon_device *rdev = dev->dev_private; 1165 1166 if (radeon_is_px(dev) && state == VGA_SWITCHEROO_OFF) 1167 return; 1168 1169 if (state == VGA_SWITCHEROO_ON) { 1170 unsigned d3_delay = dev->pdev->d3_delay; 1171 1172 printk(KERN_INFO "radeon: switched on\n"); 1173 /* don't suspend or resume card normally */ 1174 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; 1175 1176 if (d3_delay < 20 && (rdev->px_quirk_flags & RADEON_PX_QUIRK_LONG_WAKEUP)) 1177 dev->pdev->d3_delay = 20; 1178 1179 radeon_resume_kms(dev, true, true); 1180 1181 dev->pdev->d3_delay = d3_delay; 1182 1183 dev->switch_power_state = DRM_SWITCH_POWER_ON; 1184 drm_kms_helper_poll_enable(dev); 1185 } else { 1186 printk(KERN_INFO "radeon: switched off\n"); 1187 drm_kms_helper_poll_disable(dev); 1188 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; 1189 radeon_suspend_kms(dev, true, true); 1190 dev->switch_power_state = DRM_SWITCH_POWER_OFF; 1191 } 1192 } 1193 1194 /** 1195 * radeon_switcheroo_can_switch - see if switcheroo state can change 1196 * 1197 * @pdev: pci dev pointer 1198 * 1199 * Callback for the switcheroo driver. Check of the switcheroo 1200 * state can be changed. 1201 * Returns true if the state can be changed, false if not. 1202 */ 1203 static bool radeon_switcheroo_can_switch(struct pci_dev *pdev) 1204 { 1205 struct drm_device *dev = pci_get_drvdata(pdev); 1206 1207 /* 1208 * FIXME: open_count is protected by drm_global_mutex but that would lead to 1209 * locking inversion with the driver load path. And the access here is 1210 * completely racy anyway. So don't bother with locking for now. 1211 */ 1212 return dev->open_count == 0; 1213 } 1214 1215 static const struct vga_switcheroo_client_ops radeon_switcheroo_ops = { 1216 .set_gpu_state = radeon_switcheroo_set_state, 1217 .reprobe = NULL, 1218 .can_switch = radeon_switcheroo_can_switch, 1219 }; 1220 1221 /** 1222 * radeon_device_init - initialize the driver 1223 * 1224 * @rdev: radeon_device pointer 1225 * @pdev: drm dev pointer 1226 * @pdev: pci dev pointer 1227 * @flags: driver flags 1228 * 1229 * Initializes the driver info and hw (all asics). 1230 * Returns 0 for success or an error on failure. 1231 * Called at driver startup. 1232 */ 1233 int radeon_device_init(struct radeon_device *rdev, 1234 struct drm_device *ddev, 1235 struct pci_dev *pdev, 1236 uint32_t flags) 1237 { 1238 int r, i; 1239 int dma_bits; 1240 bool runtime = false; 1241 1242 rdev->shutdown = false; 1243 rdev->dev = &pdev->dev; 1244 rdev->ddev = ddev; 1245 rdev->pdev = pdev; 1246 rdev->flags = flags; 1247 rdev->family = flags & RADEON_FAMILY_MASK; 1248 rdev->is_atom_bios = false; 1249 rdev->usec_timeout = RADEON_MAX_USEC_TIMEOUT; 1250 rdev->mc.gtt_size = 512 * 1024 * 1024; 1251 rdev->accel_working = false; 1252 /* set up ring ids */ 1253 for (i = 0; i < RADEON_NUM_RINGS; i++) { 1254 rdev->ring[i].idx = i; 1255 } 1256 1257 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X).\n", 1258 radeon_family_name[rdev->family], pdev->vendor, pdev->device, 1259 pdev->subsystem_vendor, pdev->subsystem_device); 1260 1261 /* mutex initialization are all done here so we 1262 * can recall function without having locking issues */ 1263 mutex_init(&rdev->ring_lock); 1264 mutex_init(&rdev->dc_hw_i2c_mutex); 1265 atomic_set(&rdev->ih.lock, 0); 1266 mutex_init(&rdev->gem.mutex); 1267 mutex_init(&rdev->pm.mutex); 1268 mutex_init(&rdev->gpu_clock_mutex); 1269 mutex_init(&rdev->srbm_mutex); 1270 init_rwsem(&rdev->pm.mclk_lock); 1271 init_rwsem(&rdev->exclusive_lock); 1272 init_waitqueue_head(&rdev->irq.vblank_queue); 1273 r = radeon_gem_init(rdev); 1274 if (r) 1275 return r; 1276 1277 radeon_check_arguments(rdev); 1278 /* Adjust VM size here. 1279 * Max GPUVM size for cayman+ is 40 bits. 1280 */ 1281 rdev->vm_manager.max_pfn = radeon_vm_size << 18; 1282 1283 /* Set asic functions */ 1284 r = radeon_asic_init(rdev); 1285 if (r) 1286 return r; 1287 1288 /* all of the newer IGP chips have an internal gart 1289 * However some rs4xx report as AGP, so remove that here. 1290 */ 1291 if ((rdev->family >= CHIP_RS400) && 1292 (rdev->flags & RADEON_IS_IGP)) { 1293 rdev->flags &= ~RADEON_IS_AGP; 1294 } 1295 1296 if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) { 1297 radeon_agp_disable(rdev); 1298 } 1299 1300 /* Set the internal MC address mask 1301 * This is the max address of the GPU's 1302 * internal address space. 1303 */ 1304 if (rdev->family >= CHIP_CAYMAN) 1305 rdev->mc.mc_mask = 0xffffffffffULL; /* 40 bit MC */ 1306 else if (rdev->family >= CHIP_CEDAR) 1307 rdev->mc.mc_mask = 0xfffffffffULL; /* 36 bit MC */ 1308 else 1309 rdev->mc.mc_mask = 0xffffffffULL; /* 32 bit MC */ 1310 1311 /* set DMA mask + need_dma32 flags. 1312 * PCIE - can handle 40-bits. 1313 * IGP - can handle 40-bits 1314 * AGP - generally dma32 is safest 1315 * PCI - dma32 for legacy pci gart, 40 bits on newer asics 1316 */ 1317 rdev->need_dma32 = false; 1318 if (rdev->flags & RADEON_IS_AGP) 1319 rdev->need_dma32 = true; 1320 if ((rdev->flags & RADEON_IS_PCI) && 1321 (rdev->family <= CHIP_RS740)) 1322 rdev->need_dma32 = true; 1323 1324 dma_bits = rdev->need_dma32 ? 32 : 40; 1325 r = pci_set_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits)); 1326 if (r) { 1327 rdev->need_dma32 = true; 1328 dma_bits = 32; 1329 printk(KERN_WARNING "radeon: No suitable DMA available.\n"); 1330 } 1331 r = pci_set_consistent_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits)); 1332 if (r) { 1333 pci_set_consistent_dma_mask(rdev->pdev, DMA_BIT_MASK(32)); 1334 printk(KERN_WARNING "radeon: No coherent DMA available.\n"); 1335 } 1336 1337 /* Registers mapping */ 1338 /* TODO: block userspace mapping of io register */ 1339 spin_lock_init(&rdev->mmio_idx_lock); 1340 spin_lock_init(&rdev->smc_idx_lock); 1341 spin_lock_init(&rdev->pll_idx_lock); 1342 spin_lock_init(&rdev->mc_idx_lock); 1343 spin_lock_init(&rdev->pcie_idx_lock); 1344 spin_lock_init(&rdev->pciep_idx_lock); 1345 spin_lock_init(&rdev->pif_idx_lock); 1346 spin_lock_init(&rdev->cg_idx_lock); 1347 spin_lock_init(&rdev->uvd_idx_lock); 1348 spin_lock_init(&rdev->rcu_idx_lock); 1349 spin_lock_init(&rdev->didt_idx_lock); 1350 spin_lock_init(&rdev->end_idx_lock); 1351 if (rdev->family >= CHIP_BONAIRE) { 1352 rdev->rmmio_base = pci_resource_start(rdev->pdev, 5); 1353 rdev->rmmio_size = pci_resource_len(rdev->pdev, 5); 1354 } else { 1355 rdev->rmmio_base = pci_resource_start(rdev->pdev, 2); 1356 rdev->rmmio_size = pci_resource_len(rdev->pdev, 2); 1357 } 1358 rdev->rmmio = ioremap(rdev->rmmio_base, rdev->rmmio_size); 1359 if (rdev->rmmio == NULL) { 1360 return -ENOMEM; 1361 } 1362 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev->rmmio_base); 1363 DRM_INFO("register mmio size: %u\n", (unsigned)rdev->rmmio_size); 1364 1365 /* doorbell bar mapping */ 1366 if (rdev->family >= CHIP_BONAIRE) 1367 radeon_doorbell_init(rdev); 1368 1369 /* io port mapping */ 1370 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { 1371 if (pci_resource_flags(rdev->pdev, i) & IORESOURCE_IO) { 1372 rdev->rio_mem_size = pci_resource_len(rdev->pdev, i); 1373 rdev->rio_mem = pci_iomap(rdev->pdev, i, rdev->rio_mem_size); 1374 break; 1375 } 1376 } 1377 if (rdev->rio_mem == NULL) 1378 DRM_ERROR("Unable to find PCI I/O BAR\n"); 1379 1380 if (rdev->flags & RADEON_IS_PX) 1381 radeon_device_handle_px_quirks(rdev); 1382 1383 /* if we have > 1 VGA cards, then disable the radeon VGA resources */ 1384 /* this will fail for cards that aren't VGA class devices, just 1385 * ignore it */ 1386 vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode); 1387 1388 if (rdev->flags & RADEON_IS_PX) 1389 runtime = true; 1390 vga_switcheroo_register_client(rdev->pdev, &radeon_switcheroo_ops, runtime); 1391 if (runtime) 1392 vga_switcheroo_init_domain_pm_ops(rdev->dev, &rdev->vga_pm_domain); 1393 1394 r = radeon_init(rdev); 1395 if (r) 1396 return r; 1397 1398 r = radeon_ib_ring_tests(rdev); 1399 if (r) 1400 DRM_ERROR("ib ring test failed (%d).\n", r); 1401 1402 r = radeon_gem_debugfs_init(rdev); 1403 if (r) { 1404 DRM_ERROR("registering gem debugfs failed (%d).\n", r); 1405 } 1406 1407 if (rdev->flags & RADEON_IS_AGP && !rdev->accel_working) { 1408 /* Acceleration not working on AGP card try again 1409 * with fallback to PCI or PCIE GART 1410 */ 1411 radeon_asic_reset(rdev); 1412 radeon_fini(rdev); 1413 radeon_agp_disable(rdev); 1414 r = radeon_init(rdev); 1415 if (r) 1416 return r; 1417 } 1418 1419 if ((radeon_testing & 1)) { 1420 if (rdev->accel_working) 1421 radeon_test_moves(rdev); 1422 else 1423 DRM_INFO("radeon: acceleration disabled, skipping move tests\n"); 1424 } 1425 if ((radeon_testing & 2)) { 1426 if (rdev->accel_working) 1427 radeon_test_syncing(rdev); 1428 else 1429 DRM_INFO("radeon: acceleration disabled, skipping sync tests\n"); 1430 } 1431 if (radeon_benchmarking) { 1432 if (rdev->accel_working) 1433 radeon_benchmark(rdev, radeon_benchmarking); 1434 else 1435 DRM_INFO("radeon: acceleration disabled, skipping benchmarks\n"); 1436 } 1437 return 0; 1438 } 1439 1440 static void radeon_debugfs_remove_files(struct radeon_device *rdev); 1441 1442 /** 1443 * radeon_device_fini - tear down the driver 1444 * 1445 * @rdev: radeon_device pointer 1446 * 1447 * Tear down the driver info (all asics). 1448 * Called at driver shutdown. 1449 */ 1450 void radeon_device_fini(struct radeon_device *rdev) 1451 { 1452 DRM_INFO("radeon: finishing device.\n"); 1453 rdev->shutdown = true; 1454 /* evict vram memory */ 1455 radeon_bo_evict_vram(rdev); 1456 radeon_fini(rdev); 1457 vga_switcheroo_unregister_client(rdev->pdev); 1458 vga_client_register(rdev->pdev, NULL, NULL, NULL); 1459 if (rdev->rio_mem) 1460 pci_iounmap(rdev->pdev, rdev->rio_mem); 1461 rdev->rio_mem = NULL; 1462 iounmap(rdev->rmmio); 1463 rdev->rmmio = NULL; 1464 if (rdev->family >= CHIP_BONAIRE) 1465 radeon_doorbell_fini(rdev); 1466 radeon_debugfs_remove_files(rdev); 1467 } 1468 1469 1470 /* 1471 * Suspend & resume. 1472 */ 1473 /** 1474 * radeon_suspend_kms - initiate device suspend 1475 * 1476 * @pdev: drm dev pointer 1477 * @state: suspend state 1478 * 1479 * Puts the hw in the suspend state (all asics). 1480 * Returns 0 for success or an error on failure. 1481 * Called at driver suspend. 1482 */ 1483 int radeon_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon) 1484 { 1485 struct radeon_device *rdev; 1486 struct drm_crtc *crtc; 1487 struct drm_connector *connector; 1488 int i, r; 1489 bool force_completion = false; 1490 1491 if (dev == NULL || dev->dev_private == NULL) { 1492 return -ENODEV; 1493 } 1494 1495 rdev = dev->dev_private; 1496 1497 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) 1498 return 0; 1499 1500 drm_kms_helper_poll_disable(dev); 1501 1502 /* turn off display hw */ 1503 list_for_each_entry(connector, &dev->mode_config.connector_list, head) { 1504 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF); 1505 } 1506 1507 /* unpin the front buffers */ 1508 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 1509 struct radeon_framebuffer *rfb = to_radeon_framebuffer(crtc->primary->fb); 1510 struct radeon_bo *robj; 1511 1512 if (rfb == NULL || rfb->obj == NULL) { 1513 continue; 1514 } 1515 robj = gem_to_radeon_bo(rfb->obj); 1516 /* don't unpin kernel fb objects */ 1517 if (!radeon_fbdev_robj_is_fb(rdev, robj)) { 1518 r = radeon_bo_reserve(robj, false); 1519 if (r == 0) { 1520 radeon_bo_unpin(robj); 1521 radeon_bo_unreserve(robj); 1522 } 1523 } 1524 } 1525 /* evict vram memory */ 1526 radeon_bo_evict_vram(rdev); 1527 1528 /* wait for gpu to finish processing current batch */ 1529 for (i = 0; i < RADEON_NUM_RINGS; i++) { 1530 r = radeon_fence_wait_empty(rdev, i); 1531 if (r) { 1532 /* delay GPU reset to resume */ 1533 force_completion = true; 1534 } 1535 } 1536 if (force_completion) { 1537 radeon_fence_driver_force_completion(rdev); 1538 } 1539 1540 radeon_save_bios_scratch_regs(rdev); 1541 1542 radeon_suspend(rdev); 1543 radeon_hpd_fini(rdev); 1544 /* evict remaining vram memory */ 1545 radeon_bo_evict_vram(rdev); 1546 1547 radeon_agp_suspend(rdev); 1548 1549 pci_save_state(dev->pdev); 1550 if (suspend) { 1551 /* Shut down the device */ 1552 pci_disable_device(dev->pdev); 1553 pci_set_power_state(dev->pdev, PCI_D3hot); 1554 } 1555 1556 if (fbcon) { 1557 console_lock(); 1558 radeon_fbdev_set_suspend(rdev, 1); 1559 console_unlock(); 1560 } 1561 return 0; 1562 } 1563 1564 /** 1565 * radeon_resume_kms - initiate device resume 1566 * 1567 * @pdev: drm dev pointer 1568 * 1569 * Bring the hw back to operating state (all asics). 1570 * Returns 0 for success or an error on failure. 1571 * Called at driver resume. 1572 */ 1573 int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon) 1574 { 1575 struct drm_connector *connector; 1576 struct radeon_device *rdev = dev->dev_private; 1577 int r; 1578 1579 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) 1580 return 0; 1581 1582 if (fbcon) { 1583 console_lock(); 1584 } 1585 if (resume) { 1586 pci_set_power_state(dev->pdev, PCI_D0); 1587 pci_restore_state(dev->pdev); 1588 if (pci_enable_device(dev->pdev)) { 1589 if (fbcon) 1590 console_unlock(); 1591 return -1; 1592 } 1593 } 1594 /* resume AGP if in use */ 1595 radeon_agp_resume(rdev); 1596 radeon_resume(rdev); 1597 1598 r = radeon_ib_ring_tests(rdev); 1599 if (r) 1600 DRM_ERROR("ib ring test failed (%d).\n", r); 1601 1602 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) { 1603 /* do dpm late init */ 1604 r = radeon_pm_late_init(rdev); 1605 if (r) { 1606 rdev->pm.dpm_enabled = false; 1607 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n"); 1608 } 1609 } else { 1610 /* resume old pm late */ 1611 radeon_pm_resume(rdev); 1612 } 1613 1614 radeon_restore_bios_scratch_regs(rdev); 1615 1616 /* init dig PHYs, disp eng pll */ 1617 if (rdev->is_atom_bios) { 1618 radeon_atom_encoder_init(rdev); 1619 radeon_atom_disp_eng_pll_init(rdev); 1620 /* turn on the BL */ 1621 if (rdev->mode_info.bl_encoder) { 1622 u8 bl_level = radeon_get_backlight_level(rdev, 1623 rdev->mode_info.bl_encoder); 1624 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder, 1625 bl_level); 1626 } 1627 } 1628 /* reset hpd state */ 1629 radeon_hpd_init(rdev); 1630 /* blat the mode back in */ 1631 if (fbcon) { 1632 drm_helper_resume_force_mode(dev); 1633 /* turn on display hw */ 1634 list_for_each_entry(connector, &dev->mode_config.connector_list, head) { 1635 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON); 1636 } 1637 } 1638 1639 drm_kms_helper_poll_enable(dev); 1640 1641 /* set the power state here in case we are a PX system or headless */ 1642 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) 1643 radeon_pm_compute_clocks(rdev); 1644 1645 if (fbcon) { 1646 radeon_fbdev_set_suspend(rdev, 0); 1647 console_unlock(); 1648 } 1649 1650 return 0; 1651 } 1652 1653 /** 1654 * radeon_gpu_reset - reset the asic 1655 * 1656 * @rdev: radeon device pointer 1657 * 1658 * Attempt the reset the GPU if it has hung (all asics). 1659 * Returns 0 for success or an error on failure. 1660 */ 1661 int radeon_gpu_reset(struct radeon_device *rdev) 1662 { 1663 unsigned ring_sizes[RADEON_NUM_RINGS]; 1664 uint32_t *ring_data[RADEON_NUM_RINGS]; 1665 1666 bool saved = false; 1667 1668 int i, r; 1669 int resched; 1670 1671 down_write(&rdev->exclusive_lock); 1672 1673 if (!rdev->needs_reset) { 1674 up_write(&rdev->exclusive_lock); 1675 return 0; 1676 } 1677 1678 rdev->needs_reset = false; 1679 1680 radeon_save_bios_scratch_regs(rdev); 1681 /* block TTM */ 1682 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev); 1683 radeon_suspend(rdev); 1684 radeon_hpd_fini(rdev); 1685 1686 for (i = 0; i < RADEON_NUM_RINGS; ++i) { 1687 ring_sizes[i] = radeon_ring_backup(rdev, &rdev->ring[i], 1688 &ring_data[i]); 1689 if (ring_sizes[i]) { 1690 saved = true; 1691 dev_info(rdev->dev, "Saved %d dwords of commands " 1692 "on ring %d.\n", ring_sizes[i], i); 1693 } 1694 } 1695 1696 retry: 1697 r = radeon_asic_reset(rdev); 1698 if (!r) { 1699 dev_info(rdev->dev, "GPU reset succeeded, trying to resume\n"); 1700 radeon_resume(rdev); 1701 } 1702 1703 radeon_restore_bios_scratch_regs(rdev); 1704 1705 if (!r) { 1706 for (i = 0; i < RADEON_NUM_RINGS; ++i) { 1707 radeon_ring_restore(rdev, &rdev->ring[i], 1708 ring_sizes[i], ring_data[i]); 1709 ring_sizes[i] = 0; 1710 ring_data[i] = NULL; 1711 } 1712 1713 r = radeon_ib_ring_tests(rdev); 1714 if (r) { 1715 dev_err(rdev->dev, "ib ring test failed (%d).\n", r); 1716 if (saved) { 1717 saved = false; 1718 radeon_suspend(rdev); 1719 goto retry; 1720 } 1721 } 1722 } else { 1723 radeon_fence_driver_force_completion(rdev); 1724 for (i = 0; i < RADEON_NUM_RINGS; ++i) { 1725 kfree(ring_data[i]); 1726 } 1727 } 1728 1729 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) { 1730 /* do dpm late init */ 1731 r = radeon_pm_late_init(rdev); 1732 if (r) { 1733 rdev->pm.dpm_enabled = false; 1734 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n"); 1735 } 1736 } else { 1737 /* resume old pm late */ 1738 radeon_pm_resume(rdev); 1739 } 1740 1741 /* init dig PHYs, disp eng pll */ 1742 if (rdev->is_atom_bios) { 1743 radeon_atom_encoder_init(rdev); 1744 radeon_atom_disp_eng_pll_init(rdev); 1745 /* turn on the BL */ 1746 if (rdev->mode_info.bl_encoder) { 1747 u8 bl_level = radeon_get_backlight_level(rdev, 1748 rdev->mode_info.bl_encoder); 1749 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder, 1750 bl_level); 1751 } 1752 } 1753 /* reset hpd state */ 1754 radeon_hpd_init(rdev); 1755 1756 drm_helper_resume_force_mode(rdev->ddev); 1757 1758 /* set the power state here in case we are a PX system or headless */ 1759 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) 1760 radeon_pm_compute_clocks(rdev); 1761 1762 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched); 1763 if (r) { 1764 /* bad news, how to tell it to userspace ? */ 1765 dev_info(rdev->dev, "GPU reset failed\n"); 1766 } 1767 1768 up_write(&rdev->exclusive_lock); 1769 return r; 1770 } 1771 1772 1773 /* 1774 * Debugfs 1775 */ 1776 int radeon_debugfs_add_files(struct radeon_device *rdev, 1777 struct drm_info_list *files, 1778 unsigned nfiles) 1779 { 1780 unsigned i; 1781 1782 for (i = 0; i < rdev->debugfs_count; i++) { 1783 if (rdev->debugfs[i].files == files) { 1784 /* Already registered */ 1785 return 0; 1786 } 1787 } 1788 1789 i = rdev->debugfs_count + 1; 1790 if (i > RADEON_DEBUGFS_MAX_COMPONENTS) { 1791 DRM_ERROR("Reached maximum number of debugfs components.\n"); 1792 DRM_ERROR("Report so we increase " 1793 "RADEON_DEBUGFS_MAX_COMPONENTS.\n"); 1794 return -EINVAL; 1795 } 1796 rdev->debugfs[rdev->debugfs_count].files = files; 1797 rdev->debugfs[rdev->debugfs_count].num_files = nfiles; 1798 rdev->debugfs_count = i; 1799 #if defined(CONFIG_DEBUG_FS) 1800 drm_debugfs_create_files(files, nfiles, 1801 rdev->ddev->control->debugfs_root, 1802 rdev->ddev->control); 1803 drm_debugfs_create_files(files, nfiles, 1804 rdev->ddev->primary->debugfs_root, 1805 rdev->ddev->primary); 1806 #endif 1807 return 0; 1808 } 1809 1810 static void radeon_debugfs_remove_files(struct radeon_device *rdev) 1811 { 1812 #if defined(CONFIG_DEBUG_FS) 1813 unsigned i; 1814 1815 for (i = 0; i < rdev->debugfs_count; i++) { 1816 drm_debugfs_remove_files(rdev->debugfs[i].files, 1817 rdev->debugfs[i].num_files, 1818 rdev->ddev->control); 1819 drm_debugfs_remove_files(rdev->debugfs[i].files, 1820 rdev->debugfs[i].num_files, 1821 rdev->ddev->primary); 1822 } 1823 #endif 1824 } 1825 1826 #if defined(CONFIG_DEBUG_FS) 1827 int radeon_debugfs_init(struct drm_minor *minor) 1828 { 1829 return 0; 1830 } 1831 1832 void radeon_debugfs_cleanup(struct drm_minor *minor) 1833 { 1834 } 1835 #endif 1836