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/power_supply.h> 29 #include <linux/kthread.h> 30 #include <linux/module.h> 31 #include <linux/console.h> 32 #include <linux/slab.h> 33 #include <linux/iommu.h> 34 #include <linux/pci.h> 35 36 #include <drm/drm_atomic_helper.h> 37 #include <drm/drm_probe_helper.h> 38 #include <drm/amdgpu_drm.h> 39 #include <linux/vgaarb.h> 40 #include <linux/vga_switcheroo.h> 41 #include <linux/efi.h> 42 #include "amdgpu.h" 43 #include "amdgpu_trace.h" 44 #include "amdgpu_i2c.h" 45 #include "atom.h" 46 #include "amdgpu_atombios.h" 47 #include "amdgpu_atomfirmware.h" 48 #include "amd_pcie.h" 49 #ifdef CONFIG_DRM_AMDGPU_SI 50 #include "si.h" 51 #endif 52 #ifdef CONFIG_DRM_AMDGPU_CIK 53 #include "cik.h" 54 #endif 55 #include "vi.h" 56 #include "soc15.h" 57 #include "nv.h" 58 #include "bif/bif_4_1_d.h" 59 #include <linux/firmware.h> 60 #include "amdgpu_vf_error.h" 61 62 #include "amdgpu_amdkfd.h" 63 #include "amdgpu_pm.h" 64 65 #include "amdgpu_xgmi.h" 66 #include "amdgpu_ras.h" 67 #include "amdgpu_pmu.h" 68 #include "amdgpu_fru_eeprom.h" 69 #include "amdgpu_reset.h" 70 71 #include <linux/suspend.h> 72 #include <drm/task_barrier.h> 73 #include <linux/pm_runtime.h> 74 75 #include <drm/drm_drv.h> 76 77 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin"); 78 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin"); 79 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin"); 80 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin"); 81 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin"); 82 MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin"); 83 MODULE_FIRMWARE("amdgpu/renoir_gpu_info.bin"); 84 MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin"); 85 MODULE_FIRMWARE("amdgpu/navi14_gpu_info.bin"); 86 MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin"); 87 MODULE_FIRMWARE("amdgpu/vangogh_gpu_info.bin"); 88 MODULE_FIRMWARE("amdgpu/yellow_carp_gpu_info.bin"); 89 90 #define AMDGPU_RESUME_MS 2000 91 #define AMDGPU_MAX_RETRY_LIMIT 2 92 #define AMDGPU_RETRY_SRIOV_RESET(r) ((r) == -EBUSY || (r) == -ETIMEDOUT || (r) == -EINVAL) 93 94 const char *amdgpu_asic_name[] = { 95 "TAHITI", 96 "PITCAIRN", 97 "VERDE", 98 "OLAND", 99 "HAINAN", 100 "BONAIRE", 101 "KAVERI", 102 "KABINI", 103 "HAWAII", 104 "MULLINS", 105 "TOPAZ", 106 "TONGA", 107 "FIJI", 108 "CARRIZO", 109 "STONEY", 110 "POLARIS10", 111 "POLARIS11", 112 "POLARIS12", 113 "VEGAM", 114 "VEGA10", 115 "VEGA12", 116 "VEGA20", 117 "RAVEN", 118 "ARCTURUS", 119 "RENOIR", 120 "ALDEBARAN", 121 "NAVI10", 122 "CYAN_SKILLFISH", 123 "NAVI14", 124 "NAVI12", 125 "SIENNA_CICHLID", 126 "NAVY_FLOUNDER", 127 "VANGOGH", 128 "DIMGREY_CAVEFISH", 129 "BEIGE_GOBY", 130 "YELLOW_CARP", 131 "IP DISCOVERY", 132 "LAST", 133 }; 134 135 /** 136 * DOC: pcie_replay_count 137 * 138 * The amdgpu driver provides a sysfs API for reporting the total number 139 * of PCIe replays (NAKs) 140 * The file pcie_replay_count is used for this and returns the total 141 * number of replays as a sum of the NAKs generated and NAKs received 142 */ 143 144 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev, 145 struct device_attribute *attr, char *buf) 146 { 147 struct drm_device *ddev = dev_get_drvdata(dev); 148 struct amdgpu_device *adev = drm_to_adev(ddev); 149 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev); 150 151 return sysfs_emit(buf, "%llu\n", cnt); 152 } 153 154 static DEVICE_ATTR(pcie_replay_count, S_IRUGO, 155 amdgpu_device_get_pcie_replay_count, NULL); 156 157 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev); 158 159 /** 160 * DOC: product_name 161 * 162 * The amdgpu driver provides a sysfs API for reporting the product name 163 * for the device 164 * The file serial_number is used for this and returns the product name 165 * as returned from the FRU. 166 * NOTE: This is only available for certain server cards 167 */ 168 169 static ssize_t amdgpu_device_get_product_name(struct device *dev, 170 struct device_attribute *attr, char *buf) 171 { 172 struct drm_device *ddev = dev_get_drvdata(dev); 173 struct amdgpu_device *adev = drm_to_adev(ddev); 174 175 return sysfs_emit(buf, "%s\n", adev->product_name); 176 } 177 178 static DEVICE_ATTR(product_name, S_IRUGO, 179 amdgpu_device_get_product_name, NULL); 180 181 /** 182 * DOC: product_number 183 * 184 * The amdgpu driver provides a sysfs API for reporting the part number 185 * for the device 186 * The file serial_number is used for this and returns the part number 187 * as returned from the FRU. 188 * NOTE: This is only available for certain server cards 189 */ 190 191 static ssize_t amdgpu_device_get_product_number(struct device *dev, 192 struct device_attribute *attr, char *buf) 193 { 194 struct drm_device *ddev = dev_get_drvdata(dev); 195 struct amdgpu_device *adev = drm_to_adev(ddev); 196 197 return sysfs_emit(buf, "%s\n", adev->product_number); 198 } 199 200 static DEVICE_ATTR(product_number, S_IRUGO, 201 amdgpu_device_get_product_number, NULL); 202 203 /** 204 * DOC: serial_number 205 * 206 * The amdgpu driver provides a sysfs API for reporting the serial number 207 * for the device 208 * The file serial_number is used for this and returns the serial number 209 * as returned from the FRU. 210 * NOTE: This is only available for certain server cards 211 */ 212 213 static ssize_t amdgpu_device_get_serial_number(struct device *dev, 214 struct device_attribute *attr, char *buf) 215 { 216 struct drm_device *ddev = dev_get_drvdata(dev); 217 struct amdgpu_device *adev = drm_to_adev(ddev); 218 219 return sysfs_emit(buf, "%s\n", adev->serial); 220 } 221 222 static DEVICE_ATTR(serial_number, S_IRUGO, 223 amdgpu_device_get_serial_number, NULL); 224 225 /** 226 * amdgpu_device_supports_px - Is the device a dGPU with ATPX power control 227 * 228 * @dev: drm_device pointer 229 * 230 * Returns true if the device is a dGPU with ATPX power control, 231 * otherwise return false. 232 */ 233 bool amdgpu_device_supports_px(struct drm_device *dev) 234 { 235 struct amdgpu_device *adev = drm_to_adev(dev); 236 237 if ((adev->flags & AMD_IS_PX) && !amdgpu_is_atpx_hybrid()) 238 return true; 239 return false; 240 } 241 242 /** 243 * amdgpu_device_supports_boco - Is the device a dGPU with ACPI power resources 244 * 245 * @dev: drm_device pointer 246 * 247 * Returns true if the device is a dGPU with ACPI power control, 248 * otherwise return false. 249 */ 250 bool amdgpu_device_supports_boco(struct drm_device *dev) 251 { 252 struct amdgpu_device *adev = drm_to_adev(dev); 253 254 if (adev->has_pr3 || 255 ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid())) 256 return true; 257 return false; 258 } 259 260 /** 261 * amdgpu_device_supports_baco - Does the device support BACO 262 * 263 * @dev: drm_device pointer 264 * 265 * Returns true if the device supporte BACO, 266 * otherwise return false. 267 */ 268 bool amdgpu_device_supports_baco(struct drm_device *dev) 269 { 270 struct amdgpu_device *adev = drm_to_adev(dev); 271 272 return amdgpu_asic_supports_baco(adev); 273 } 274 275 /** 276 * amdgpu_device_supports_smart_shift - Is the device dGPU with 277 * smart shift support 278 * 279 * @dev: drm_device pointer 280 * 281 * Returns true if the device is a dGPU with Smart Shift support, 282 * otherwise returns false. 283 */ 284 bool amdgpu_device_supports_smart_shift(struct drm_device *dev) 285 { 286 return (amdgpu_device_supports_boco(dev) && 287 amdgpu_acpi_is_power_shift_control_supported()); 288 } 289 290 /* 291 * VRAM access helper functions 292 */ 293 294 /** 295 * amdgpu_device_mm_access - access vram by MM_INDEX/MM_DATA 296 * 297 * @adev: amdgpu_device pointer 298 * @pos: offset of the buffer in vram 299 * @buf: virtual address of the buffer in system memory 300 * @size: read/write size, sizeof(@buf) must > @size 301 * @write: true - write to vram, otherwise - read from vram 302 */ 303 void amdgpu_device_mm_access(struct amdgpu_device *adev, loff_t pos, 304 void *buf, size_t size, bool write) 305 { 306 unsigned long flags; 307 uint32_t hi = ~0, tmp = 0; 308 uint32_t *data = buf; 309 uint64_t last; 310 int idx; 311 312 if (!drm_dev_enter(adev_to_drm(adev), &idx)) 313 return; 314 315 BUG_ON(!IS_ALIGNED(pos, 4) || !IS_ALIGNED(size, 4)); 316 317 spin_lock_irqsave(&adev->mmio_idx_lock, flags); 318 for (last = pos + size; pos < last; pos += 4) { 319 tmp = pos >> 31; 320 321 WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)pos) | 0x80000000); 322 if (tmp != hi) { 323 WREG32_NO_KIQ(mmMM_INDEX_HI, tmp); 324 hi = tmp; 325 } 326 if (write) 327 WREG32_NO_KIQ(mmMM_DATA, *data++); 328 else 329 *data++ = RREG32_NO_KIQ(mmMM_DATA); 330 } 331 332 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags); 333 drm_dev_exit(idx); 334 } 335 336 /** 337 * amdgpu_device_aper_access - access vram by vram aperature 338 * 339 * @adev: amdgpu_device pointer 340 * @pos: offset of the buffer in vram 341 * @buf: virtual address of the buffer in system memory 342 * @size: read/write size, sizeof(@buf) must > @size 343 * @write: true - write to vram, otherwise - read from vram 344 * 345 * The return value means how many bytes have been transferred. 346 */ 347 size_t amdgpu_device_aper_access(struct amdgpu_device *adev, loff_t pos, 348 void *buf, size_t size, bool write) 349 { 350 #ifdef CONFIG_64BIT 351 void __iomem *addr; 352 size_t count = 0; 353 uint64_t last; 354 355 if (!adev->mman.aper_base_kaddr) 356 return 0; 357 358 last = min(pos + size, adev->gmc.visible_vram_size); 359 if (last > pos) { 360 addr = adev->mman.aper_base_kaddr + pos; 361 count = last - pos; 362 363 if (write) { 364 memcpy_toio(addr, buf, count); 365 mb(); 366 amdgpu_device_flush_hdp(adev, NULL); 367 } else { 368 amdgpu_device_invalidate_hdp(adev, NULL); 369 mb(); 370 memcpy_fromio(buf, addr, count); 371 } 372 373 } 374 375 return count; 376 #else 377 return 0; 378 #endif 379 } 380 381 /** 382 * amdgpu_device_vram_access - read/write a buffer in vram 383 * 384 * @adev: amdgpu_device pointer 385 * @pos: offset of the buffer in vram 386 * @buf: virtual address of the buffer in system memory 387 * @size: read/write size, sizeof(@buf) must > @size 388 * @write: true - write to vram, otherwise - read from vram 389 */ 390 void amdgpu_device_vram_access(struct amdgpu_device *adev, loff_t pos, 391 void *buf, size_t size, bool write) 392 { 393 size_t count; 394 395 /* try to using vram apreature to access vram first */ 396 count = amdgpu_device_aper_access(adev, pos, buf, size, write); 397 size -= count; 398 if (size) { 399 /* using MM to access rest vram */ 400 pos += count; 401 buf += count; 402 amdgpu_device_mm_access(adev, pos, buf, size, write); 403 } 404 } 405 406 /* 407 * register access helper functions. 408 */ 409 410 /* Check if hw access should be skipped because of hotplug or device error */ 411 bool amdgpu_device_skip_hw_access(struct amdgpu_device *adev) 412 { 413 if (adev->no_hw_access) 414 return true; 415 416 #ifdef CONFIG_LOCKDEP 417 /* 418 * This is a bit complicated to understand, so worth a comment. What we assert 419 * here is that the GPU reset is not running on another thread in parallel. 420 * 421 * For this we trylock the read side of the reset semaphore, if that succeeds 422 * we know that the reset is not running in paralell. 423 * 424 * If the trylock fails we assert that we are either already holding the read 425 * side of the lock or are the reset thread itself and hold the write side of 426 * the lock. 427 */ 428 if (in_task()) { 429 if (down_read_trylock(&adev->reset_domain->sem)) 430 up_read(&adev->reset_domain->sem); 431 else 432 lockdep_assert_held(&adev->reset_domain->sem); 433 } 434 #endif 435 return false; 436 } 437 438 /** 439 * amdgpu_device_rreg - read a memory mapped IO or indirect register 440 * 441 * @adev: amdgpu_device pointer 442 * @reg: dword aligned register offset 443 * @acc_flags: access flags which require special behavior 444 * 445 * Returns the 32 bit value from the offset specified. 446 */ 447 uint32_t amdgpu_device_rreg(struct amdgpu_device *adev, 448 uint32_t reg, uint32_t acc_flags) 449 { 450 uint32_t ret; 451 452 if (amdgpu_device_skip_hw_access(adev)) 453 return 0; 454 455 if ((reg * 4) < adev->rmmio_size) { 456 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && 457 amdgpu_sriov_runtime(adev) && 458 down_read_trylock(&adev->reset_domain->sem)) { 459 ret = amdgpu_kiq_rreg(adev, reg); 460 up_read(&adev->reset_domain->sem); 461 } else { 462 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4)); 463 } 464 } else { 465 ret = adev->pcie_rreg(adev, reg * 4); 466 } 467 468 trace_amdgpu_device_rreg(adev->pdev->device, reg, ret); 469 470 return ret; 471 } 472 473 /* 474 * MMIO register read with bytes helper functions 475 * @offset:bytes offset from MMIO start 476 * 477 */ 478 479 /** 480 * amdgpu_mm_rreg8 - read a memory mapped IO register 481 * 482 * @adev: amdgpu_device pointer 483 * @offset: byte aligned register offset 484 * 485 * Returns the 8 bit value from the offset specified. 486 */ 487 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset) 488 { 489 if (amdgpu_device_skip_hw_access(adev)) 490 return 0; 491 492 if (offset < adev->rmmio_size) 493 return (readb(adev->rmmio + offset)); 494 BUG(); 495 } 496 497 /* 498 * MMIO register write with bytes helper functions 499 * @offset:bytes offset from MMIO start 500 * @value: the value want to be written to the register 501 * 502 */ 503 /** 504 * amdgpu_mm_wreg8 - read a memory mapped IO register 505 * 506 * @adev: amdgpu_device pointer 507 * @offset: byte aligned register offset 508 * @value: 8 bit value to write 509 * 510 * Writes the value specified to the offset specified. 511 */ 512 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value) 513 { 514 if (amdgpu_device_skip_hw_access(adev)) 515 return; 516 517 if (offset < adev->rmmio_size) 518 writeb(value, adev->rmmio + offset); 519 else 520 BUG(); 521 } 522 523 /** 524 * amdgpu_device_wreg - write to a memory mapped IO or indirect register 525 * 526 * @adev: amdgpu_device pointer 527 * @reg: dword aligned register offset 528 * @v: 32 bit value to write to the register 529 * @acc_flags: access flags which require special behavior 530 * 531 * Writes the value specified to the offset specified. 532 */ 533 void amdgpu_device_wreg(struct amdgpu_device *adev, 534 uint32_t reg, uint32_t v, 535 uint32_t acc_flags) 536 { 537 if (amdgpu_device_skip_hw_access(adev)) 538 return; 539 540 if ((reg * 4) < adev->rmmio_size) { 541 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && 542 amdgpu_sriov_runtime(adev) && 543 down_read_trylock(&adev->reset_domain->sem)) { 544 amdgpu_kiq_wreg(adev, reg, v); 545 up_read(&adev->reset_domain->sem); 546 } else { 547 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4)); 548 } 549 } else { 550 adev->pcie_wreg(adev, reg * 4, v); 551 } 552 553 trace_amdgpu_device_wreg(adev->pdev->device, reg, v); 554 } 555 556 /** 557 * amdgpu_mm_wreg_mmio_rlc - write register either with direct/indirect mmio or with RLC path if in range 558 * 559 * @adev: amdgpu_device pointer 560 * @reg: mmio/rlc register 561 * @v: value to write 562 * 563 * this function is invoked only for the debugfs register access 564 */ 565 void amdgpu_mm_wreg_mmio_rlc(struct amdgpu_device *adev, 566 uint32_t reg, uint32_t v) 567 { 568 if (amdgpu_device_skip_hw_access(adev)) 569 return; 570 571 if (amdgpu_sriov_fullaccess(adev) && 572 adev->gfx.rlc.funcs && 573 adev->gfx.rlc.funcs->is_rlcg_access_range) { 574 if (adev->gfx.rlc.funcs->is_rlcg_access_range(adev, reg)) 575 return amdgpu_sriov_wreg(adev, reg, v, 0, 0); 576 } else if ((reg * 4) >= adev->rmmio_size) { 577 adev->pcie_wreg(adev, reg * 4, v); 578 } else { 579 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4)); 580 } 581 } 582 583 /** 584 * amdgpu_mm_rdoorbell - read a doorbell dword 585 * 586 * @adev: amdgpu_device pointer 587 * @index: doorbell index 588 * 589 * Returns the value in the doorbell aperture at the 590 * requested doorbell index (CIK). 591 */ 592 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index) 593 { 594 if (amdgpu_device_skip_hw_access(adev)) 595 return 0; 596 597 if (index < adev->doorbell.num_doorbells) { 598 return readl(adev->doorbell.ptr + index); 599 } else { 600 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index); 601 return 0; 602 } 603 } 604 605 /** 606 * amdgpu_mm_wdoorbell - write a doorbell dword 607 * 608 * @adev: amdgpu_device pointer 609 * @index: doorbell index 610 * @v: value to write 611 * 612 * Writes @v to the doorbell aperture at the 613 * requested doorbell index (CIK). 614 */ 615 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v) 616 { 617 if (amdgpu_device_skip_hw_access(adev)) 618 return; 619 620 if (index < adev->doorbell.num_doorbells) { 621 writel(v, adev->doorbell.ptr + index); 622 } else { 623 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index); 624 } 625 } 626 627 /** 628 * amdgpu_mm_rdoorbell64 - read a doorbell Qword 629 * 630 * @adev: amdgpu_device pointer 631 * @index: doorbell index 632 * 633 * Returns the value in the doorbell aperture at the 634 * requested doorbell index (VEGA10+). 635 */ 636 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index) 637 { 638 if (amdgpu_device_skip_hw_access(adev)) 639 return 0; 640 641 if (index < adev->doorbell.num_doorbells) { 642 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index)); 643 } else { 644 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index); 645 return 0; 646 } 647 } 648 649 /** 650 * amdgpu_mm_wdoorbell64 - write a doorbell Qword 651 * 652 * @adev: amdgpu_device pointer 653 * @index: doorbell index 654 * @v: value to write 655 * 656 * Writes @v to the doorbell aperture at the 657 * requested doorbell index (VEGA10+). 658 */ 659 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v) 660 { 661 if (amdgpu_device_skip_hw_access(adev)) 662 return; 663 664 if (index < adev->doorbell.num_doorbells) { 665 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v); 666 } else { 667 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index); 668 } 669 } 670 671 /** 672 * amdgpu_device_indirect_rreg - read an indirect register 673 * 674 * @adev: amdgpu_device pointer 675 * @pcie_index: mmio register offset 676 * @pcie_data: mmio register offset 677 * @reg_addr: indirect register address to read from 678 * 679 * Returns the value of indirect register @reg_addr 680 */ 681 u32 amdgpu_device_indirect_rreg(struct amdgpu_device *adev, 682 u32 pcie_index, u32 pcie_data, 683 u32 reg_addr) 684 { 685 unsigned long flags; 686 u32 r; 687 void __iomem *pcie_index_offset; 688 void __iomem *pcie_data_offset; 689 690 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 691 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4; 692 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4; 693 694 writel(reg_addr, pcie_index_offset); 695 readl(pcie_index_offset); 696 r = readl(pcie_data_offset); 697 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 698 699 return r; 700 } 701 702 /** 703 * amdgpu_device_indirect_rreg64 - read a 64bits indirect register 704 * 705 * @adev: amdgpu_device pointer 706 * @pcie_index: mmio register offset 707 * @pcie_data: mmio register offset 708 * @reg_addr: indirect register address to read from 709 * 710 * Returns the value of indirect register @reg_addr 711 */ 712 u64 amdgpu_device_indirect_rreg64(struct amdgpu_device *adev, 713 u32 pcie_index, u32 pcie_data, 714 u32 reg_addr) 715 { 716 unsigned long flags; 717 u64 r; 718 void __iomem *pcie_index_offset; 719 void __iomem *pcie_data_offset; 720 721 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 722 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4; 723 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4; 724 725 /* read low 32 bits */ 726 writel(reg_addr, pcie_index_offset); 727 readl(pcie_index_offset); 728 r = readl(pcie_data_offset); 729 /* read high 32 bits */ 730 writel(reg_addr + 4, pcie_index_offset); 731 readl(pcie_index_offset); 732 r |= ((u64)readl(pcie_data_offset) << 32); 733 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 734 735 return r; 736 } 737 738 /** 739 * amdgpu_device_indirect_wreg - write an indirect register address 740 * 741 * @adev: amdgpu_device pointer 742 * @pcie_index: mmio register offset 743 * @pcie_data: mmio register offset 744 * @reg_addr: indirect register offset 745 * @reg_data: indirect register data 746 * 747 */ 748 void amdgpu_device_indirect_wreg(struct amdgpu_device *adev, 749 u32 pcie_index, u32 pcie_data, 750 u32 reg_addr, u32 reg_data) 751 { 752 unsigned long flags; 753 void __iomem *pcie_index_offset; 754 void __iomem *pcie_data_offset; 755 756 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 757 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4; 758 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4; 759 760 writel(reg_addr, pcie_index_offset); 761 readl(pcie_index_offset); 762 writel(reg_data, pcie_data_offset); 763 readl(pcie_data_offset); 764 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 765 } 766 767 /** 768 * amdgpu_device_indirect_wreg64 - write a 64bits indirect register address 769 * 770 * @adev: amdgpu_device pointer 771 * @pcie_index: mmio register offset 772 * @pcie_data: mmio register offset 773 * @reg_addr: indirect register offset 774 * @reg_data: indirect register data 775 * 776 */ 777 void amdgpu_device_indirect_wreg64(struct amdgpu_device *adev, 778 u32 pcie_index, u32 pcie_data, 779 u32 reg_addr, u64 reg_data) 780 { 781 unsigned long flags; 782 void __iomem *pcie_index_offset; 783 void __iomem *pcie_data_offset; 784 785 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 786 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4; 787 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4; 788 789 /* write low 32 bits */ 790 writel(reg_addr, pcie_index_offset); 791 readl(pcie_index_offset); 792 writel((u32)(reg_data & 0xffffffffULL), pcie_data_offset); 793 readl(pcie_data_offset); 794 /* write high 32 bits */ 795 writel(reg_addr + 4, pcie_index_offset); 796 readl(pcie_index_offset); 797 writel((u32)(reg_data >> 32), pcie_data_offset); 798 readl(pcie_data_offset); 799 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 800 } 801 802 /** 803 * amdgpu_invalid_rreg - dummy reg read function 804 * 805 * @adev: amdgpu_device pointer 806 * @reg: offset of register 807 * 808 * Dummy register read function. Used for register blocks 809 * that certain asics don't have (all asics). 810 * Returns the value in the register. 811 */ 812 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg) 813 { 814 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg); 815 BUG(); 816 return 0; 817 } 818 819 /** 820 * amdgpu_invalid_wreg - dummy reg write function 821 * 822 * @adev: amdgpu_device pointer 823 * @reg: offset of register 824 * @v: value to write to the register 825 * 826 * Dummy register read function. Used for register blocks 827 * that certain asics don't have (all asics). 828 */ 829 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v) 830 { 831 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n", 832 reg, v); 833 BUG(); 834 } 835 836 /** 837 * amdgpu_invalid_rreg64 - dummy 64 bit reg read function 838 * 839 * @adev: amdgpu_device pointer 840 * @reg: offset of register 841 * 842 * Dummy register read function. Used for register blocks 843 * that certain asics don't have (all asics). 844 * Returns the value in the register. 845 */ 846 static uint64_t amdgpu_invalid_rreg64(struct amdgpu_device *adev, uint32_t reg) 847 { 848 DRM_ERROR("Invalid callback to read 64 bit register 0x%04X\n", reg); 849 BUG(); 850 return 0; 851 } 852 853 /** 854 * amdgpu_invalid_wreg64 - dummy reg write function 855 * 856 * @adev: amdgpu_device pointer 857 * @reg: offset of register 858 * @v: value to write to the register 859 * 860 * Dummy register read function. Used for register blocks 861 * that certain asics don't have (all asics). 862 */ 863 static void amdgpu_invalid_wreg64(struct amdgpu_device *adev, uint32_t reg, uint64_t v) 864 { 865 DRM_ERROR("Invalid callback to write 64 bit register 0x%04X with 0x%08llX\n", 866 reg, v); 867 BUG(); 868 } 869 870 /** 871 * amdgpu_block_invalid_rreg - dummy reg read function 872 * 873 * @adev: amdgpu_device pointer 874 * @block: offset of instance 875 * @reg: offset of register 876 * 877 * Dummy register read function. Used for register blocks 878 * that certain asics don't have (all asics). 879 * Returns the value in the register. 880 */ 881 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev, 882 uint32_t block, uint32_t reg) 883 { 884 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n", 885 reg, block); 886 BUG(); 887 return 0; 888 } 889 890 /** 891 * amdgpu_block_invalid_wreg - dummy reg write function 892 * 893 * @adev: amdgpu_device pointer 894 * @block: offset of instance 895 * @reg: offset of register 896 * @v: value to write to the register 897 * 898 * Dummy register read function. Used for register blocks 899 * that certain asics don't have (all asics). 900 */ 901 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev, 902 uint32_t block, 903 uint32_t reg, uint32_t v) 904 { 905 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n", 906 reg, block, v); 907 BUG(); 908 } 909 910 /** 911 * amdgpu_device_asic_init - Wrapper for atom asic_init 912 * 913 * @adev: amdgpu_device pointer 914 * 915 * Does any asic specific work and then calls atom asic init. 916 */ 917 static int amdgpu_device_asic_init(struct amdgpu_device *adev) 918 { 919 amdgpu_asic_pre_asic_init(adev); 920 921 return amdgpu_atom_asic_init(adev->mode_info.atom_context); 922 } 923 924 /** 925 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page 926 * 927 * @adev: amdgpu_device pointer 928 * 929 * Allocates a scratch page of VRAM for use by various things in the 930 * driver. 931 */ 932 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev) 933 { 934 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE, 935 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM, 936 &adev->vram_scratch.robj, 937 &adev->vram_scratch.gpu_addr, 938 (void **)&adev->vram_scratch.ptr); 939 } 940 941 /** 942 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page 943 * 944 * @adev: amdgpu_device pointer 945 * 946 * Frees the VRAM scratch page. 947 */ 948 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev) 949 { 950 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL); 951 } 952 953 /** 954 * amdgpu_device_program_register_sequence - program an array of registers. 955 * 956 * @adev: amdgpu_device pointer 957 * @registers: pointer to the register array 958 * @array_size: size of the register array 959 * 960 * Programs an array or registers with and and or masks. 961 * This is a helper for setting golden registers. 962 */ 963 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev, 964 const u32 *registers, 965 const u32 array_size) 966 { 967 u32 tmp, reg, and_mask, or_mask; 968 int i; 969 970 if (array_size % 3) 971 return; 972 973 for (i = 0; i < array_size; i +=3) { 974 reg = registers[i + 0]; 975 and_mask = registers[i + 1]; 976 or_mask = registers[i + 2]; 977 978 if (and_mask == 0xffffffff) { 979 tmp = or_mask; 980 } else { 981 tmp = RREG32(reg); 982 tmp &= ~and_mask; 983 if (adev->family >= AMDGPU_FAMILY_AI) 984 tmp |= (or_mask & and_mask); 985 else 986 tmp |= or_mask; 987 } 988 WREG32(reg, tmp); 989 } 990 } 991 992 /** 993 * amdgpu_device_pci_config_reset - reset the GPU 994 * 995 * @adev: amdgpu_device pointer 996 * 997 * Resets the GPU using the pci config reset sequence. 998 * Only applicable to asics prior to vega10. 999 */ 1000 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev) 1001 { 1002 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA); 1003 } 1004 1005 /** 1006 * amdgpu_device_pci_reset - reset the GPU using generic PCI means 1007 * 1008 * @adev: amdgpu_device pointer 1009 * 1010 * Resets the GPU using generic pci reset interfaces (FLR, SBR, etc.). 1011 */ 1012 int amdgpu_device_pci_reset(struct amdgpu_device *adev) 1013 { 1014 return pci_reset_function(adev->pdev); 1015 } 1016 1017 /* 1018 * GPU doorbell aperture helpers function. 1019 */ 1020 /** 1021 * amdgpu_device_doorbell_init - Init doorbell driver information. 1022 * 1023 * @adev: amdgpu_device pointer 1024 * 1025 * Init doorbell driver information (CIK) 1026 * Returns 0 on success, error on failure. 1027 */ 1028 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev) 1029 { 1030 1031 /* No doorbell on SI hardware generation */ 1032 if (adev->asic_type < CHIP_BONAIRE) { 1033 adev->doorbell.base = 0; 1034 adev->doorbell.size = 0; 1035 adev->doorbell.num_doorbells = 0; 1036 adev->doorbell.ptr = NULL; 1037 return 0; 1038 } 1039 1040 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET) 1041 return -EINVAL; 1042 1043 amdgpu_asic_init_doorbell_index(adev); 1044 1045 /* doorbell bar mapping */ 1046 adev->doorbell.base = pci_resource_start(adev->pdev, 2); 1047 adev->doorbell.size = pci_resource_len(adev->pdev, 2); 1048 1049 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32), 1050 adev->doorbell_index.max_assignment+1); 1051 if (adev->doorbell.num_doorbells == 0) 1052 return -EINVAL; 1053 1054 /* For Vega, reserve and map two pages on doorbell BAR since SDMA 1055 * paging queue doorbell use the second page. The 1056 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the 1057 * doorbells are in the first page. So with paging queue enabled, 1058 * the max num_doorbells should + 1 page (0x400 in dword) 1059 */ 1060 if (adev->asic_type >= CHIP_VEGA10) 1061 adev->doorbell.num_doorbells += 0x400; 1062 1063 adev->doorbell.ptr = ioremap(adev->doorbell.base, 1064 adev->doorbell.num_doorbells * 1065 sizeof(u32)); 1066 if (adev->doorbell.ptr == NULL) 1067 return -ENOMEM; 1068 1069 return 0; 1070 } 1071 1072 /** 1073 * amdgpu_device_doorbell_fini - Tear down doorbell driver information. 1074 * 1075 * @adev: amdgpu_device pointer 1076 * 1077 * Tear down doorbell driver information (CIK) 1078 */ 1079 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev) 1080 { 1081 iounmap(adev->doorbell.ptr); 1082 adev->doorbell.ptr = NULL; 1083 } 1084 1085 1086 1087 /* 1088 * amdgpu_device_wb_*() 1089 * Writeback is the method by which the GPU updates special pages in memory 1090 * with the status of certain GPU events (fences, ring pointers,etc.). 1091 */ 1092 1093 /** 1094 * amdgpu_device_wb_fini - Disable Writeback and free memory 1095 * 1096 * @adev: amdgpu_device pointer 1097 * 1098 * Disables Writeback and frees the Writeback memory (all asics). 1099 * Used at driver shutdown. 1100 */ 1101 static void amdgpu_device_wb_fini(struct amdgpu_device *adev) 1102 { 1103 if (adev->wb.wb_obj) { 1104 amdgpu_bo_free_kernel(&adev->wb.wb_obj, 1105 &adev->wb.gpu_addr, 1106 (void **)&adev->wb.wb); 1107 adev->wb.wb_obj = NULL; 1108 } 1109 } 1110 1111 /** 1112 * amdgpu_device_wb_init - Init Writeback driver info and allocate memory 1113 * 1114 * @adev: amdgpu_device pointer 1115 * 1116 * Initializes writeback and allocates writeback memory (all asics). 1117 * Used at driver startup. 1118 * Returns 0 on success or an -error on failure. 1119 */ 1120 static int amdgpu_device_wb_init(struct amdgpu_device *adev) 1121 { 1122 int r; 1123 1124 if (adev->wb.wb_obj == NULL) { 1125 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */ 1126 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8, 1127 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT, 1128 &adev->wb.wb_obj, &adev->wb.gpu_addr, 1129 (void **)&adev->wb.wb); 1130 if (r) { 1131 dev_warn(adev->dev, "(%d) create WB bo failed\n", r); 1132 return r; 1133 } 1134 1135 adev->wb.num_wb = AMDGPU_MAX_WB; 1136 memset(&adev->wb.used, 0, sizeof(adev->wb.used)); 1137 1138 /* clear wb memory */ 1139 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8); 1140 } 1141 1142 return 0; 1143 } 1144 1145 /** 1146 * amdgpu_device_wb_get - Allocate a wb entry 1147 * 1148 * @adev: amdgpu_device pointer 1149 * @wb: wb index 1150 * 1151 * Allocate a wb slot for use by the driver (all asics). 1152 * Returns 0 on success or -EINVAL on failure. 1153 */ 1154 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb) 1155 { 1156 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb); 1157 1158 if (offset < adev->wb.num_wb) { 1159 __set_bit(offset, adev->wb.used); 1160 *wb = offset << 3; /* convert to dw offset */ 1161 return 0; 1162 } else { 1163 return -EINVAL; 1164 } 1165 } 1166 1167 /** 1168 * amdgpu_device_wb_free - Free a wb entry 1169 * 1170 * @adev: amdgpu_device pointer 1171 * @wb: wb index 1172 * 1173 * Free a wb slot allocated for use by the driver (all asics) 1174 */ 1175 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb) 1176 { 1177 wb >>= 3; 1178 if (wb < adev->wb.num_wb) 1179 __clear_bit(wb, adev->wb.used); 1180 } 1181 1182 /** 1183 * amdgpu_device_resize_fb_bar - try to resize FB BAR 1184 * 1185 * @adev: amdgpu_device pointer 1186 * 1187 * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not 1188 * to fail, but if any of the BARs is not accessible after the size we abort 1189 * driver loading by returning -ENODEV. 1190 */ 1191 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev) 1192 { 1193 int rbar_size = pci_rebar_bytes_to_size(adev->gmc.real_vram_size); 1194 struct pci_bus *root; 1195 struct resource *res; 1196 unsigned i; 1197 u16 cmd; 1198 int r; 1199 1200 /* Bypass for VF */ 1201 if (amdgpu_sriov_vf(adev)) 1202 return 0; 1203 1204 /* skip if the bios has already enabled large BAR */ 1205 if (adev->gmc.real_vram_size && 1206 (pci_resource_len(adev->pdev, 0) >= adev->gmc.real_vram_size)) 1207 return 0; 1208 1209 /* Check if the root BUS has 64bit memory resources */ 1210 root = adev->pdev->bus; 1211 while (root->parent) 1212 root = root->parent; 1213 1214 pci_bus_for_each_resource(root, res, i) { 1215 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) && 1216 res->start > 0x100000000ull) 1217 break; 1218 } 1219 1220 /* Trying to resize is pointless without a root hub window above 4GB */ 1221 if (!res) 1222 return 0; 1223 1224 /* Limit the BAR size to what is available */ 1225 rbar_size = min(fls(pci_rebar_get_possible_sizes(adev->pdev, 0)) - 1, 1226 rbar_size); 1227 1228 /* Disable memory decoding while we change the BAR addresses and size */ 1229 pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd); 1230 pci_write_config_word(adev->pdev, PCI_COMMAND, 1231 cmd & ~PCI_COMMAND_MEMORY); 1232 1233 /* Free the VRAM and doorbell BAR, we most likely need to move both. */ 1234 amdgpu_device_doorbell_fini(adev); 1235 if (adev->asic_type >= CHIP_BONAIRE) 1236 pci_release_resource(adev->pdev, 2); 1237 1238 pci_release_resource(adev->pdev, 0); 1239 1240 r = pci_resize_resource(adev->pdev, 0, rbar_size); 1241 if (r == -ENOSPC) 1242 DRM_INFO("Not enough PCI address space for a large BAR."); 1243 else if (r && r != -ENOTSUPP) 1244 DRM_ERROR("Problem resizing BAR0 (%d).", r); 1245 1246 pci_assign_unassigned_bus_resources(adev->pdev->bus); 1247 1248 /* When the doorbell or fb BAR isn't available we have no chance of 1249 * using the device. 1250 */ 1251 r = amdgpu_device_doorbell_init(adev); 1252 if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET)) 1253 return -ENODEV; 1254 1255 pci_write_config_word(adev->pdev, PCI_COMMAND, cmd); 1256 1257 return 0; 1258 } 1259 1260 /* 1261 * GPU helpers function. 1262 */ 1263 /** 1264 * amdgpu_device_need_post - check if the hw need post or not 1265 * 1266 * @adev: amdgpu_device pointer 1267 * 1268 * Check if the asic has been initialized (all asics) at driver startup 1269 * or post is needed if hw reset is performed. 1270 * Returns true if need or false if not. 1271 */ 1272 bool amdgpu_device_need_post(struct amdgpu_device *adev) 1273 { 1274 uint32_t reg; 1275 1276 if (amdgpu_sriov_vf(adev)) 1277 return false; 1278 1279 if (amdgpu_passthrough(adev)) { 1280 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot 1281 * some old smc fw still need driver do vPost otherwise gpu hang, while 1282 * those smc fw version above 22.15 doesn't have this flaw, so we force 1283 * vpost executed for smc version below 22.15 1284 */ 1285 if (adev->asic_type == CHIP_FIJI) { 1286 int err; 1287 uint32_t fw_ver; 1288 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev); 1289 /* force vPost if error occured */ 1290 if (err) 1291 return true; 1292 1293 fw_ver = *((uint32_t *)adev->pm.fw->data + 69); 1294 if (fw_ver < 0x00160e00) 1295 return true; 1296 } 1297 } 1298 1299 /* Don't post if we need to reset whole hive on init */ 1300 if (adev->gmc.xgmi.pending_reset) 1301 return false; 1302 1303 if (adev->has_hw_reset) { 1304 adev->has_hw_reset = false; 1305 return true; 1306 } 1307 1308 /* bios scratch used on CIK+ */ 1309 if (adev->asic_type >= CHIP_BONAIRE) 1310 return amdgpu_atombios_scratch_need_asic_init(adev); 1311 1312 /* check MEM_SIZE for older asics */ 1313 reg = amdgpu_asic_get_config_memsize(adev); 1314 1315 if ((reg != 0) && (reg != 0xffffffff)) 1316 return false; 1317 1318 return true; 1319 } 1320 1321 /** 1322 * amdgpu_device_should_use_aspm - check if the device should program ASPM 1323 * 1324 * @adev: amdgpu_device pointer 1325 * 1326 * Confirm whether the module parameter and pcie bridge agree that ASPM should 1327 * be set for this device. 1328 * 1329 * Returns true if it should be used or false if not. 1330 */ 1331 bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev) 1332 { 1333 switch (amdgpu_aspm) { 1334 case -1: 1335 break; 1336 case 0: 1337 return false; 1338 case 1: 1339 return true; 1340 default: 1341 return false; 1342 } 1343 return pcie_aspm_enabled(adev->pdev); 1344 } 1345 1346 /* if we get transitioned to only one device, take VGA back */ 1347 /** 1348 * amdgpu_device_vga_set_decode - enable/disable vga decode 1349 * 1350 * @pdev: PCI device pointer 1351 * @state: enable/disable vga decode 1352 * 1353 * Enable/disable vga decode (all asics). 1354 * Returns VGA resource flags. 1355 */ 1356 static unsigned int amdgpu_device_vga_set_decode(struct pci_dev *pdev, 1357 bool state) 1358 { 1359 struct amdgpu_device *adev = drm_to_adev(pci_get_drvdata(pdev)); 1360 amdgpu_asic_set_vga_state(adev, state); 1361 if (state) 1362 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | 1363 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; 1364 else 1365 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; 1366 } 1367 1368 /** 1369 * amdgpu_device_check_block_size - validate the vm block size 1370 * 1371 * @adev: amdgpu_device pointer 1372 * 1373 * Validates the vm block size specified via module parameter. 1374 * The vm block size defines number of bits in page table versus page directory, 1375 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the 1376 * page table and the remaining bits are in the page directory. 1377 */ 1378 static void amdgpu_device_check_block_size(struct amdgpu_device *adev) 1379 { 1380 /* defines number of bits in page table versus page directory, 1381 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the 1382 * page table and the remaining bits are in the page directory */ 1383 if (amdgpu_vm_block_size == -1) 1384 return; 1385 1386 if (amdgpu_vm_block_size < 9) { 1387 dev_warn(adev->dev, "VM page table size (%d) too small\n", 1388 amdgpu_vm_block_size); 1389 amdgpu_vm_block_size = -1; 1390 } 1391 } 1392 1393 /** 1394 * amdgpu_device_check_vm_size - validate the vm size 1395 * 1396 * @adev: amdgpu_device pointer 1397 * 1398 * Validates the vm size in GB specified via module parameter. 1399 * The VM size is the size of the GPU virtual memory space in GB. 1400 */ 1401 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev) 1402 { 1403 /* no need to check the default value */ 1404 if (amdgpu_vm_size == -1) 1405 return; 1406 1407 if (amdgpu_vm_size < 1) { 1408 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n", 1409 amdgpu_vm_size); 1410 amdgpu_vm_size = -1; 1411 } 1412 } 1413 1414 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev) 1415 { 1416 struct sysinfo si; 1417 bool is_os_64 = (sizeof(void *) == 8); 1418 uint64_t total_memory; 1419 uint64_t dram_size_seven_GB = 0x1B8000000; 1420 uint64_t dram_size_three_GB = 0xB8000000; 1421 1422 if (amdgpu_smu_memory_pool_size == 0) 1423 return; 1424 1425 if (!is_os_64) { 1426 DRM_WARN("Not 64-bit OS, feature not supported\n"); 1427 goto def_value; 1428 } 1429 si_meminfo(&si); 1430 total_memory = (uint64_t)si.totalram * si.mem_unit; 1431 1432 if ((amdgpu_smu_memory_pool_size == 1) || 1433 (amdgpu_smu_memory_pool_size == 2)) { 1434 if (total_memory < dram_size_three_GB) 1435 goto def_value1; 1436 } else if ((amdgpu_smu_memory_pool_size == 4) || 1437 (amdgpu_smu_memory_pool_size == 8)) { 1438 if (total_memory < dram_size_seven_GB) 1439 goto def_value1; 1440 } else { 1441 DRM_WARN("Smu memory pool size not supported\n"); 1442 goto def_value; 1443 } 1444 adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28; 1445 1446 return; 1447 1448 def_value1: 1449 DRM_WARN("No enough system memory\n"); 1450 def_value: 1451 adev->pm.smu_prv_buffer_size = 0; 1452 } 1453 1454 static int amdgpu_device_init_apu_flags(struct amdgpu_device *adev) 1455 { 1456 if (!(adev->flags & AMD_IS_APU) || 1457 adev->asic_type < CHIP_RAVEN) 1458 return 0; 1459 1460 switch (adev->asic_type) { 1461 case CHIP_RAVEN: 1462 if (adev->pdev->device == 0x15dd) 1463 adev->apu_flags |= AMD_APU_IS_RAVEN; 1464 if (adev->pdev->device == 0x15d8) 1465 adev->apu_flags |= AMD_APU_IS_PICASSO; 1466 break; 1467 case CHIP_RENOIR: 1468 if ((adev->pdev->device == 0x1636) || 1469 (adev->pdev->device == 0x164c)) 1470 adev->apu_flags |= AMD_APU_IS_RENOIR; 1471 else 1472 adev->apu_flags |= AMD_APU_IS_GREEN_SARDINE; 1473 break; 1474 case CHIP_VANGOGH: 1475 adev->apu_flags |= AMD_APU_IS_VANGOGH; 1476 break; 1477 case CHIP_YELLOW_CARP: 1478 break; 1479 case CHIP_CYAN_SKILLFISH: 1480 if ((adev->pdev->device == 0x13FE) || 1481 (adev->pdev->device == 0x143F)) 1482 adev->apu_flags |= AMD_APU_IS_CYAN_SKILLFISH2; 1483 break; 1484 default: 1485 break; 1486 } 1487 1488 return 0; 1489 } 1490 1491 /** 1492 * amdgpu_device_check_arguments - validate module params 1493 * 1494 * @adev: amdgpu_device pointer 1495 * 1496 * Validates certain module parameters and updates 1497 * the associated values used by the driver (all asics). 1498 */ 1499 static int amdgpu_device_check_arguments(struct amdgpu_device *adev) 1500 { 1501 if (amdgpu_sched_jobs < 4) { 1502 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n", 1503 amdgpu_sched_jobs); 1504 amdgpu_sched_jobs = 4; 1505 } else if (!is_power_of_2(amdgpu_sched_jobs)){ 1506 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n", 1507 amdgpu_sched_jobs); 1508 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs); 1509 } 1510 1511 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) { 1512 /* gart size must be greater or equal to 32M */ 1513 dev_warn(adev->dev, "gart size (%d) too small\n", 1514 amdgpu_gart_size); 1515 amdgpu_gart_size = -1; 1516 } 1517 1518 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) { 1519 /* gtt size must be greater or equal to 32M */ 1520 dev_warn(adev->dev, "gtt size (%d) too small\n", 1521 amdgpu_gtt_size); 1522 amdgpu_gtt_size = -1; 1523 } 1524 1525 /* valid range is between 4 and 9 inclusive */ 1526 if (amdgpu_vm_fragment_size != -1 && 1527 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) { 1528 dev_warn(adev->dev, "valid range is between 4 and 9\n"); 1529 amdgpu_vm_fragment_size = -1; 1530 } 1531 1532 if (amdgpu_sched_hw_submission < 2) { 1533 dev_warn(adev->dev, "sched hw submission jobs (%d) must be at least 2\n", 1534 amdgpu_sched_hw_submission); 1535 amdgpu_sched_hw_submission = 2; 1536 } else if (!is_power_of_2(amdgpu_sched_hw_submission)) { 1537 dev_warn(adev->dev, "sched hw submission jobs (%d) must be a power of 2\n", 1538 amdgpu_sched_hw_submission); 1539 amdgpu_sched_hw_submission = roundup_pow_of_two(amdgpu_sched_hw_submission); 1540 } 1541 1542 if (amdgpu_reset_method < -1 || amdgpu_reset_method > 4) { 1543 dev_warn(adev->dev, "invalid option for reset method, reverting to default\n"); 1544 amdgpu_reset_method = -1; 1545 } 1546 1547 amdgpu_device_check_smu_prv_buffer_size(adev); 1548 1549 amdgpu_device_check_vm_size(adev); 1550 1551 amdgpu_device_check_block_size(adev); 1552 1553 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type); 1554 1555 amdgpu_gmc_tmz_set(adev); 1556 1557 amdgpu_gmc_noretry_set(adev); 1558 1559 return 0; 1560 } 1561 1562 /** 1563 * amdgpu_switcheroo_set_state - set switcheroo state 1564 * 1565 * @pdev: pci dev pointer 1566 * @state: vga_switcheroo state 1567 * 1568 * Callback for the switcheroo driver. Suspends or resumes the 1569 * the asics before or after it is powered up using ACPI methods. 1570 */ 1571 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, 1572 enum vga_switcheroo_state state) 1573 { 1574 struct drm_device *dev = pci_get_drvdata(pdev); 1575 int r; 1576 1577 if (amdgpu_device_supports_px(dev) && state == VGA_SWITCHEROO_OFF) 1578 return; 1579 1580 if (state == VGA_SWITCHEROO_ON) { 1581 pr_info("switched on\n"); 1582 /* don't suspend or resume card normally */ 1583 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; 1584 1585 pci_set_power_state(pdev, PCI_D0); 1586 amdgpu_device_load_pci_state(pdev); 1587 r = pci_enable_device(pdev); 1588 if (r) 1589 DRM_WARN("pci_enable_device failed (%d)\n", r); 1590 amdgpu_device_resume(dev, true); 1591 1592 dev->switch_power_state = DRM_SWITCH_POWER_ON; 1593 } else { 1594 pr_info("switched off\n"); 1595 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; 1596 amdgpu_device_suspend(dev, true); 1597 amdgpu_device_cache_pci_state(pdev); 1598 /* Shut down the device */ 1599 pci_disable_device(pdev); 1600 pci_set_power_state(pdev, PCI_D3cold); 1601 dev->switch_power_state = DRM_SWITCH_POWER_OFF; 1602 } 1603 } 1604 1605 /** 1606 * amdgpu_switcheroo_can_switch - see if switcheroo state can change 1607 * 1608 * @pdev: pci dev pointer 1609 * 1610 * Callback for the switcheroo driver. Check of the switcheroo 1611 * state can be changed. 1612 * Returns true if the state can be changed, false if not. 1613 */ 1614 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev) 1615 { 1616 struct drm_device *dev = pci_get_drvdata(pdev); 1617 1618 /* 1619 * FIXME: open_count is protected by drm_global_mutex but that would lead to 1620 * locking inversion with the driver load path. And the access here is 1621 * completely racy anyway. So don't bother with locking for now. 1622 */ 1623 return atomic_read(&dev->open_count) == 0; 1624 } 1625 1626 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = { 1627 .set_gpu_state = amdgpu_switcheroo_set_state, 1628 .reprobe = NULL, 1629 .can_switch = amdgpu_switcheroo_can_switch, 1630 }; 1631 1632 /** 1633 * amdgpu_device_ip_set_clockgating_state - set the CG state 1634 * 1635 * @dev: amdgpu_device pointer 1636 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.) 1637 * @state: clockgating state (gate or ungate) 1638 * 1639 * Sets the requested clockgating state for all instances of 1640 * the hardware IP specified. 1641 * Returns the error code from the last instance. 1642 */ 1643 int amdgpu_device_ip_set_clockgating_state(void *dev, 1644 enum amd_ip_block_type block_type, 1645 enum amd_clockgating_state state) 1646 { 1647 struct amdgpu_device *adev = dev; 1648 int i, r = 0; 1649 1650 for (i = 0; i < adev->num_ip_blocks; i++) { 1651 if (!adev->ip_blocks[i].status.valid) 1652 continue; 1653 if (adev->ip_blocks[i].version->type != block_type) 1654 continue; 1655 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state) 1656 continue; 1657 r = adev->ip_blocks[i].version->funcs->set_clockgating_state( 1658 (void *)adev, state); 1659 if (r) 1660 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n", 1661 adev->ip_blocks[i].version->funcs->name, r); 1662 } 1663 return r; 1664 } 1665 1666 /** 1667 * amdgpu_device_ip_set_powergating_state - set the PG state 1668 * 1669 * @dev: amdgpu_device pointer 1670 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.) 1671 * @state: powergating state (gate or ungate) 1672 * 1673 * Sets the requested powergating state for all instances of 1674 * the hardware IP specified. 1675 * Returns the error code from the last instance. 1676 */ 1677 int amdgpu_device_ip_set_powergating_state(void *dev, 1678 enum amd_ip_block_type block_type, 1679 enum amd_powergating_state state) 1680 { 1681 struct amdgpu_device *adev = dev; 1682 int i, r = 0; 1683 1684 for (i = 0; i < adev->num_ip_blocks; i++) { 1685 if (!adev->ip_blocks[i].status.valid) 1686 continue; 1687 if (adev->ip_blocks[i].version->type != block_type) 1688 continue; 1689 if (!adev->ip_blocks[i].version->funcs->set_powergating_state) 1690 continue; 1691 r = adev->ip_blocks[i].version->funcs->set_powergating_state( 1692 (void *)adev, state); 1693 if (r) 1694 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n", 1695 adev->ip_blocks[i].version->funcs->name, r); 1696 } 1697 return r; 1698 } 1699 1700 /** 1701 * amdgpu_device_ip_get_clockgating_state - get the CG state 1702 * 1703 * @adev: amdgpu_device pointer 1704 * @flags: clockgating feature flags 1705 * 1706 * Walks the list of IPs on the device and updates the clockgating 1707 * flags for each IP. 1708 * Updates @flags with the feature flags for each hardware IP where 1709 * clockgating is enabled. 1710 */ 1711 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev, 1712 u32 *flags) 1713 { 1714 int i; 1715 1716 for (i = 0; i < adev->num_ip_blocks; i++) { 1717 if (!adev->ip_blocks[i].status.valid) 1718 continue; 1719 if (adev->ip_blocks[i].version->funcs->get_clockgating_state) 1720 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags); 1721 } 1722 } 1723 1724 /** 1725 * amdgpu_device_ip_wait_for_idle - wait for idle 1726 * 1727 * @adev: amdgpu_device pointer 1728 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.) 1729 * 1730 * Waits for the request hardware IP to be idle. 1731 * Returns 0 for success or a negative error code on failure. 1732 */ 1733 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev, 1734 enum amd_ip_block_type block_type) 1735 { 1736 int i, r; 1737 1738 for (i = 0; i < adev->num_ip_blocks; i++) { 1739 if (!adev->ip_blocks[i].status.valid) 1740 continue; 1741 if (adev->ip_blocks[i].version->type == block_type) { 1742 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev); 1743 if (r) 1744 return r; 1745 break; 1746 } 1747 } 1748 return 0; 1749 1750 } 1751 1752 /** 1753 * amdgpu_device_ip_is_idle - is the hardware IP idle 1754 * 1755 * @adev: amdgpu_device pointer 1756 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.) 1757 * 1758 * Check if the hardware IP is idle or not. 1759 * Returns true if it the IP is idle, false if not. 1760 */ 1761 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev, 1762 enum amd_ip_block_type block_type) 1763 { 1764 int i; 1765 1766 for (i = 0; i < adev->num_ip_blocks; i++) { 1767 if (!adev->ip_blocks[i].status.valid) 1768 continue; 1769 if (adev->ip_blocks[i].version->type == block_type) 1770 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev); 1771 } 1772 return true; 1773 1774 } 1775 1776 /** 1777 * amdgpu_device_ip_get_ip_block - get a hw IP pointer 1778 * 1779 * @adev: amdgpu_device pointer 1780 * @type: Type of hardware IP (SMU, GFX, UVD, etc.) 1781 * 1782 * Returns a pointer to the hardware IP block structure 1783 * if it exists for the asic, otherwise NULL. 1784 */ 1785 struct amdgpu_ip_block * 1786 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev, 1787 enum amd_ip_block_type type) 1788 { 1789 int i; 1790 1791 for (i = 0; i < adev->num_ip_blocks; i++) 1792 if (adev->ip_blocks[i].version->type == type) 1793 return &adev->ip_blocks[i]; 1794 1795 return NULL; 1796 } 1797 1798 /** 1799 * amdgpu_device_ip_block_version_cmp 1800 * 1801 * @adev: amdgpu_device pointer 1802 * @type: enum amd_ip_block_type 1803 * @major: major version 1804 * @minor: minor version 1805 * 1806 * return 0 if equal or greater 1807 * return 1 if smaller or the ip_block doesn't exist 1808 */ 1809 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev, 1810 enum amd_ip_block_type type, 1811 u32 major, u32 minor) 1812 { 1813 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type); 1814 1815 if (ip_block && ((ip_block->version->major > major) || 1816 ((ip_block->version->major == major) && 1817 (ip_block->version->minor >= minor)))) 1818 return 0; 1819 1820 return 1; 1821 } 1822 1823 /** 1824 * amdgpu_device_ip_block_add 1825 * 1826 * @adev: amdgpu_device pointer 1827 * @ip_block_version: pointer to the IP to add 1828 * 1829 * Adds the IP block driver information to the collection of IPs 1830 * on the asic. 1831 */ 1832 int amdgpu_device_ip_block_add(struct amdgpu_device *adev, 1833 const struct amdgpu_ip_block_version *ip_block_version) 1834 { 1835 if (!ip_block_version) 1836 return -EINVAL; 1837 1838 switch (ip_block_version->type) { 1839 case AMD_IP_BLOCK_TYPE_VCN: 1840 if (adev->harvest_ip_mask & AMD_HARVEST_IP_VCN_MASK) 1841 return 0; 1842 break; 1843 case AMD_IP_BLOCK_TYPE_JPEG: 1844 if (adev->harvest_ip_mask & AMD_HARVEST_IP_JPEG_MASK) 1845 return 0; 1846 break; 1847 default: 1848 break; 1849 } 1850 1851 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks, 1852 ip_block_version->funcs->name); 1853 1854 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version; 1855 1856 return 0; 1857 } 1858 1859 /** 1860 * amdgpu_device_enable_virtual_display - enable virtual display feature 1861 * 1862 * @adev: amdgpu_device pointer 1863 * 1864 * Enabled the virtual display feature if the user has enabled it via 1865 * the module parameter virtual_display. This feature provides a virtual 1866 * display hardware on headless boards or in virtualized environments. 1867 * This function parses and validates the configuration string specified by 1868 * the user and configues the virtual display configuration (number of 1869 * virtual connectors, crtcs, etc.) specified. 1870 */ 1871 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev) 1872 { 1873 adev->enable_virtual_display = false; 1874 1875 if (amdgpu_virtual_display) { 1876 const char *pci_address_name = pci_name(adev->pdev); 1877 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname; 1878 1879 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL); 1880 pciaddstr_tmp = pciaddstr; 1881 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) { 1882 pciaddname = strsep(&pciaddname_tmp, ","); 1883 if (!strcmp("all", pciaddname) 1884 || !strcmp(pci_address_name, pciaddname)) { 1885 long num_crtc; 1886 int res = -1; 1887 1888 adev->enable_virtual_display = true; 1889 1890 if (pciaddname_tmp) 1891 res = kstrtol(pciaddname_tmp, 10, 1892 &num_crtc); 1893 1894 if (!res) { 1895 if (num_crtc < 1) 1896 num_crtc = 1; 1897 if (num_crtc > 6) 1898 num_crtc = 6; 1899 adev->mode_info.num_crtc = num_crtc; 1900 } else { 1901 adev->mode_info.num_crtc = 1; 1902 } 1903 break; 1904 } 1905 } 1906 1907 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n", 1908 amdgpu_virtual_display, pci_address_name, 1909 adev->enable_virtual_display, adev->mode_info.num_crtc); 1910 1911 kfree(pciaddstr); 1912 } 1913 } 1914 1915 /** 1916 * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware 1917 * 1918 * @adev: amdgpu_device pointer 1919 * 1920 * Parses the asic configuration parameters specified in the gpu info 1921 * firmware and makes them availale to the driver for use in configuring 1922 * the asic. 1923 * Returns 0 on success, -EINVAL on failure. 1924 */ 1925 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev) 1926 { 1927 const char *chip_name; 1928 char fw_name[40]; 1929 int err; 1930 const struct gpu_info_firmware_header_v1_0 *hdr; 1931 1932 adev->firmware.gpu_info_fw = NULL; 1933 1934 if (adev->mman.discovery_bin) { 1935 amdgpu_discovery_get_gfx_info(adev); 1936 1937 /* 1938 * FIXME: The bounding box is still needed by Navi12, so 1939 * temporarily read it from gpu_info firmware. Should be droped 1940 * when DAL no longer needs it. 1941 */ 1942 if (adev->asic_type != CHIP_NAVI12) 1943 return 0; 1944 } 1945 1946 switch (adev->asic_type) { 1947 #ifdef CONFIG_DRM_AMDGPU_SI 1948 case CHIP_VERDE: 1949 case CHIP_TAHITI: 1950 case CHIP_PITCAIRN: 1951 case CHIP_OLAND: 1952 case CHIP_HAINAN: 1953 #endif 1954 #ifdef CONFIG_DRM_AMDGPU_CIK 1955 case CHIP_BONAIRE: 1956 case CHIP_HAWAII: 1957 case CHIP_KAVERI: 1958 case CHIP_KABINI: 1959 case CHIP_MULLINS: 1960 #endif 1961 case CHIP_TOPAZ: 1962 case CHIP_TONGA: 1963 case CHIP_FIJI: 1964 case CHIP_POLARIS10: 1965 case CHIP_POLARIS11: 1966 case CHIP_POLARIS12: 1967 case CHIP_VEGAM: 1968 case CHIP_CARRIZO: 1969 case CHIP_STONEY: 1970 case CHIP_VEGA20: 1971 case CHIP_ALDEBARAN: 1972 case CHIP_SIENNA_CICHLID: 1973 case CHIP_NAVY_FLOUNDER: 1974 case CHIP_DIMGREY_CAVEFISH: 1975 case CHIP_BEIGE_GOBY: 1976 default: 1977 return 0; 1978 case CHIP_VEGA10: 1979 chip_name = "vega10"; 1980 break; 1981 case CHIP_VEGA12: 1982 chip_name = "vega12"; 1983 break; 1984 case CHIP_RAVEN: 1985 if (adev->apu_flags & AMD_APU_IS_RAVEN2) 1986 chip_name = "raven2"; 1987 else if (adev->apu_flags & AMD_APU_IS_PICASSO) 1988 chip_name = "picasso"; 1989 else 1990 chip_name = "raven"; 1991 break; 1992 case CHIP_ARCTURUS: 1993 chip_name = "arcturus"; 1994 break; 1995 case CHIP_RENOIR: 1996 if (adev->apu_flags & AMD_APU_IS_RENOIR) 1997 chip_name = "renoir"; 1998 else 1999 chip_name = "green_sardine"; 2000 break; 2001 case CHIP_NAVI10: 2002 chip_name = "navi10"; 2003 break; 2004 case CHIP_NAVI14: 2005 chip_name = "navi14"; 2006 break; 2007 case CHIP_NAVI12: 2008 chip_name = "navi12"; 2009 break; 2010 case CHIP_VANGOGH: 2011 chip_name = "vangogh"; 2012 break; 2013 case CHIP_YELLOW_CARP: 2014 chip_name = "yellow_carp"; 2015 break; 2016 } 2017 2018 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name); 2019 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev); 2020 if (err) { 2021 dev_err(adev->dev, 2022 "Failed to load gpu_info firmware \"%s\"\n", 2023 fw_name); 2024 goto out; 2025 } 2026 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw); 2027 if (err) { 2028 dev_err(adev->dev, 2029 "Failed to validate gpu_info firmware \"%s\"\n", 2030 fw_name); 2031 goto out; 2032 } 2033 2034 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data; 2035 amdgpu_ucode_print_gpu_info_hdr(&hdr->header); 2036 2037 switch (hdr->version_major) { 2038 case 1: 2039 { 2040 const struct gpu_info_firmware_v1_0 *gpu_info_fw = 2041 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data + 2042 le32_to_cpu(hdr->header.ucode_array_offset_bytes)); 2043 2044 /* 2045 * Should be droped when DAL no longer needs it. 2046 */ 2047 if (adev->asic_type == CHIP_NAVI12) 2048 goto parse_soc_bounding_box; 2049 2050 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se); 2051 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh); 2052 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se); 2053 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se); 2054 adev->gfx.config.max_texture_channel_caches = 2055 le32_to_cpu(gpu_info_fw->gc_num_tccs); 2056 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs); 2057 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds); 2058 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth); 2059 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth); 2060 adev->gfx.config.double_offchip_lds_buf = 2061 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer); 2062 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size); 2063 adev->gfx.cu_info.max_waves_per_simd = 2064 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd); 2065 adev->gfx.cu_info.max_scratch_slots_per_cu = 2066 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu); 2067 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size); 2068 if (hdr->version_minor >= 1) { 2069 const struct gpu_info_firmware_v1_1 *gpu_info_fw = 2070 (const struct gpu_info_firmware_v1_1 *)(adev->firmware.gpu_info_fw->data + 2071 le32_to_cpu(hdr->header.ucode_array_offset_bytes)); 2072 adev->gfx.config.num_sc_per_sh = 2073 le32_to_cpu(gpu_info_fw->num_sc_per_sh); 2074 adev->gfx.config.num_packer_per_sc = 2075 le32_to_cpu(gpu_info_fw->num_packer_per_sc); 2076 } 2077 2078 parse_soc_bounding_box: 2079 /* 2080 * soc bounding box info is not integrated in disocovery table, 2081 * we always need to parse it from gpu info firmware if needed. 2082 */ 2083 if (hdr->version_minor == 2) { 2084 const struct gpu_info_firmware_v1_2 *gpu_info_fw = 2085 (const struct gpu_info_firmware_v1_2 *)(adev->firmware.gpu_info_fw->data + 2086 le32_to_cpu(hdr->header.ucode_array_offset_bytes)); 2087 adev->dm.soc_bounding_box = &gpu_info_fw->soc_bounding_box; 2088 } 2089 break; 2090 } 2091 default: 2092 dev_err(adev->dev, 2093 "Unsupported gpu_info table %d\n", hdr->header.ucode_version); 2094 err = -EINVAL; 2095 goto out; 2096 } 2097 out: 2098 return err; 2099 } 2100 2101 /** 2102 * amdgpu_device_ip_early_init - run early init for hardware IPs 2103 * 2104 * @adev: amdgpu_device pointer 2105 * 2106 * Early initialization pass for hardware IPs. The hardware IPs that make 2107 * up each asic are discovered each IP's early_init callback is run. This 2108 * is the first stage in initializing the asic. 2109 * Returns 0 on success, negative error code on failure. 2110 */ 2111 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev) 2112 { 2113 struct drm_device *dev = adev_to_drm(adev); 2114 struct pci_dev *parent; 2115 int i, r; 2116 2117 amdgpu_device_enable_virtual_display(adev); 2118 2119 if (amdgpu_sriov_vf(adev)) { 2120 r = amdgpu_virt_request_full_gpu(adev, true); 2121 if (r) 2122 return r; 2123 } 2124 2125 switch (adev->asic_type) { 2126 #ifdef CONFIG_DRM_AMDGPU_SI 2127 case CHIP_VERDE: 2128 case CHIP_TAHITI: 2129 case CHIP_PITCAIRN: 2130 case CHIP_OLAND: 2131 case CHIP_HAINAN: 2132 adev->family = AMDGPU_FAMILY_SI; 2133 r = si_set_ip_blocks(adev); 2134 if (r) 2135 return r; 2136 break; 2137 #endif 2138 #ifdef CONFIG_DRM_AMDGPU_CIK 2139 case CHIP_BONAIRE: 2140 case CHIP_HAWAII: 2141 case CHIP_KAVERI: 2142 case CHIP_KABINI: 2143 case CHIP_MULLINS: 2144 if (adev->flags & AMD_IS_APU) 2145 adev->family = AMDGPU_FAMILY_KV; 2146 else 2147 adev->family = AMDGPU_FAMILY_CI; 2148 2149 r = cik_set_ip_blocks(adev); 2150 if (r) 2151 return r; 2152 break; 2153 #endif 2154 case CHIP_TOPAZ: 2155 case CHIP_TONGA: 2156 case CHIP_FIJI: 2157 case CHIP_POLARIS10: 2158 case CHIP_POLARIS11: 2159 case CHIP_POLARIS12: 2160 case CHIP_VEGAM: 2161 case CHIP_CARRIZO: 2162 case CHIP_STONEY: 2163 if (adev->flags & AMD_IS_APU) 2164 adev->family = AMDGPU_FAMILY_CZ; 2165 else 2166 adev->family = AMDGPU_FAMILY_VI; 2167 2168 r = vi_set_ip_blocks(adev); 2169 if (r) 2170 return r; 2171 break; 2172 default: 2173 r = amdgpu_discovery_set_ip_blocks(adev); 2174 if (r) 2175 return r; 2176 break; 2177 } 2178 2179 if (amdgpu_has_atpx() && 2180 (amdgpu_is_atpx_hybrid() || 2181 amdgpu_has_atpx_dgpu_power_cntl()) && 2182 ((adev->flags & AMD_IS_APU) == 0) && 2183 !pci_is_thunderbolt_attached(to_pci_dev(dev->dev))) 2184 adev->flags |= AMD_IS_PX; 2185 2186 parent = pci_upstream_bridge(adev->pdev); 2187 adev->has_pr3 = parent ? pci_pr3_present(parent) : false; 2188 2189 amdgpu_amdkfd_device_probe(adev); 2190 2191 adev->pm.pp_feature = amdgpu_pp_feature_mask; 2192 if (amdgpu_sriov_vf(adev) || sched_policy == KFD_SCHED_POLICY_NO_HWS) 2193 adev->pm.pp_feature &= ~PP_GFXOFF_MASK; 2194 if (amdgpu_sriov_vf(adev) && adev->asic_type == CHIP_SIENNA_CICHLID) 2195 adev->pm.pp_feature &= ~PP_OVERDRIVE_MASK; 2196 2197 for (i = 0; i < adev->num_ip_blocks; i++) { 2198 if ((amdgpu_ip_block_mask & (1 << i)) == 0) { 2199 DRM_ERROR("disabled ip block: %d <%s>\n", 2200 i, adev->ip_blocks[i].version->funcs->name); 2201 adev->ip_blocks[i].status.valid = false; 2202 } else { 2203 if (adev->ip_blocks[i].version->funcs->early_init) { 2204 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev); 2205 if (r == -ENOENT) { 2206 adev->ip_blocks[i].status.valid = false; 2207 } else if (r) { 2208 DRM_ERROR("early_init of IP block <%s> failed %d\n", 2209 adev->ip_blocks[i].version->funcs->name, r); 2210 return r; 2211 } else { 2212 adev->ip_blocks[i].status.valid = true; 2213 } 2214 } else { 2215 adev->ip_blocks[i].status.valid = true; 2216 } 2217 } 2218 /* get the vbios after the asic_funcs are set up */ 2219 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) { 2220 r = amdgpu_device_parse_gpu_info_fw(adev); 2221 if (r) 2222 return r; 2223 2224 /* Read BIOS */ 2225 if (!amdgpu_get_bios(adev)) 2226 return -EINVAL; 2227 2228 r = amdgpu_atombios_init(adev); 2229 if (r) { 2230 dev_err(adev->dev, "amdgpu_atombios_init failed\n"); 2231 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0); 2232 return r; 2233 } 2234 2235 /*get pf2vf msg info at it's earliest time*/ 2236 if (amdgpu_sriov_vf(adev)) 2237 amdgpu_virt_init_data_exchange(adev); 2238 2239 } 2240 } 2241 2242 adev->cg_flags &= amdgpu_cg_mask; 2243 adev->pg_flags &= amdgpu_pg_mask; 2244 2245 return 0; 2246 } 2247 2248 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev) 2249 { 2250 int i, r; 2251 2252 for (i = 0; i < adev->num_ip_blocks; i++) { 2253 if (!adev->ip_blocks[i].status.sw) 2254 continue; 2255 if (adev->ip_blocks[i].status.hw) 2256 continue; 2257 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || 2258 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) || 2259 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) { 2260 r = adev->ip_blocks[i].version->funcs->hw_init(adev); 2261 if (r) { 2262 DRM_ERROR("hw_init of IP block <%s> failed %d\n", 2263 adev->ip_blocks[i].version->funcs->name, r); 2264 return r; 2265 } 2266 adev->ip_blocks[i].status.hw = true; 2267 } 2268 } 2269 2270 return 0; 2271 } 2272 2273 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev) 2274 { 2275 int i, r; 2276 2277 for (i = 0; i < adev->num_ip_blocks; i++) { 2278 if (!adev->ip_blocks[i].status.sw) 2279 continue; 2280 if (adev->ip_blocks[i].status.hw) 2281 continue; 2282 r = adev->ip_blocks[i].version->funcs->hw_init(adev); 2283 if (r) { 2284 DRM_ERROR("hw_init of IP block <%s> failed %d\n", 2285 adev->ip_blocks[i].version->funcs->name, r); 2286 return r; 2287 } 2288 adev->ip_blocks[i].status.hw = true; 2289 } 2290 2291 return 0; 2292 } 2293 2294 static int amdgpu_device_fw_loading(struct amdgpu_device *adev) 2295 { 2296 int r = 0; 2297 int i; 2298 uint32_t smu_version; 2299 2300 if (adev->asic_type >= CHIP_VEGA10) { 2301 for (i = 0; i < adev->num_ip_blocks; i++) { 2302 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_PSP) 2303 continue; 2304 2305 if (!adev->ip_blocks[i].status.sw) 2306 continue; 2307 2308 /* no need to do the fw loading again if already done*/ 2309 if (adev->ip_blocks[i].status.hw == true) 2310 break; 2311 2312 if (amdgpu_in_reset(adev) || adev->in_suspend) { 2313 r = adev->ip_blocks[i].version->funcs->resume(adev); 2314 if (r) { 2315 DRM_ERROR("resume of IP block <%s> failed %d\n", 2316 adev->ip_blocks[i].version->funcs->name, r); 2317 return r; 2318 } 2319 } else { 2320 r = adev->ip_blocks[i].version->funcs->hw_init(adev); 2321 if (r) { 2322 DRM_ERROR("hw_init of IP block <%s> failed %d\n", 2323 adev->ip_blocks[i].version->funcs->name, r); 2324 return r; 2325 } 2326 } 2327 2328 adev->ip_blocks[i].status.hw = true; 2329 break; 2330 } 2331 } 2332 2333 if (!amdgpu_sriov_vf(adev) || adev->asic_type == CHIP_TONGA) 2334 r = amdgpu_pm_load_smu_firmware(adev, &smu_version); 2335 2336 return r; 2337 } 2338 2339 static int amdgpu_device_init_schedulers(struct amdgpu_device *adev) 2340 { 2341 long timeout; 2342 int r, i; 2343 2344 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 2345 struct amdgpu_ring *ring = adev->rings[i]; 2346 2347 /* No need to setup the GPU scheduler for rings that don't need it */ 2348 if (!ring || ring->no_scheduler) 2349 continue; 2350 2351 switch (ring->funcs->type) { 2352 case AMDGPU_RING_TYPE_GFX: 2353 timeout = adev->gfx_timeout; 2354 break; 2355 case AMDGPU_RING_TYPE_COMPUTE: 2356 timeout = adev->compute_timeout; 2357 break; 2358 case AMDGPU_RING_TYPE_SDMA: 2359 timeout = adev->sdma_timeout; 2360 break; 2361 default: 2362 timeout = adev->video_timeout; 2363 break; 2364 } 2365 2366 r = drm_sched_init(&ring->sched, &amdgpu_sched_ops, 2367 ring->num_hw_submission, amdgpu_job_hang_limit, 2368 timeout, adev->reset_domain->wq, 2369 ring->sched_score, ring->name, 2370 adev->dev); 2371 if (r) { 2372 DRM_ERROR("Failed to create scheduler on ring %s.\n", 2373 ring->name); 2374 return r; 2375 } 2376 } 2377 2378 return 0; 2379 } 2380 2381 2382 /** 2383 * amdgpu_device_ip_init - run init for hardware IPs 2384 * 2385 * @adev: amdgpu_device pointer 2386 * 2387 * Main initialization pass for hardware IPs. The list of all the hardware 2388 * IPs that make up the asic is walked and the sw_init and hw_init callbacks 2389 * are run. sw_init initializes the software state associated with each IP 2390 * and hw_init initializes the hardware associated with each IP. 2391 * Returns 0 on success, negative error code on failure. 2392 */ 2393 static int amdgpu_device_ip_init(struct amdgpu_device *adev) 2394 { 2395 int i, r; 2396 2397 r = amdgpu_ras_init(adev); 2398 if (r) 2399 return r; 2400 2401 for (i = 0; i < adev->num_ip_blocks; i++) { 2402 if (!adev->ip_blocks[i].status.valid) 2403 continue; 2404 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev); 2405 if (r) { 2406 DRM_ERROR("sw_init of IP block <%s> failed %d\n", 2407 adev->ip_blocks[i].version->funcs->name, r); 2408 goto init_failed; 2409 } 2410 adev->ip_blocks[i].status.sw = true; 2411 2412 /* need to do gmc hw init early so we can allocate gpu mem */ 2413 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) { 2414 /* Try to reserve bad pages early */ 2415 if (amdgpu_sriov_vf(adev)) 2416 amdgpu_virt_exchange_data(adev); 2417 2418 r = amdgpu_device_vram_scratch_init(adev); 2419 if (r) { 2420 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r); 2421 goto init_failed; 2422 } 2423 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev); 2424 if (r) { 2425 DRM_ERROR("hw_init %d failed %d\n", i, r); 2426 goto init_failed; 2427 } 2428 r = amdgpu_device_wb_init(adev); 2429 if (r) { 2430 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r); 2431 goto init_failed; 2432 } 2433 adev->ip_blocks[i].status.hw = true; 2434 2435 /* right after GMC hw init, we create CSA */ 2436 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) { 2437 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj, 2438 AMDGPU_GEM_DOMAIN_VRAM, 2439 AMDGPU_CSA_SIZE); 2440 if (r) { 2441 DRM_ERROR("allocate CSA failed %d\n", r); 2442 goto init_failed; 2443 } 2444 } 2445 } 2446 } 2447 2448 if (amdgpu_sriov_vf(adev)) 2449 amdgpu_virt_init_data_exchange(adev); 2450 2451 r = amdgpu_ib_pool_init(adev); 2452 if (r) { 2453 dev_err(adev->dev, "IB initialization failed (%d).\n", r); 2454 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r); 2455 goto init_failed; 2456 } 2457 2458 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/ 2459 if (r) 2460 goto init_failed; 2461 2462 r = amdgpu_device_ip_hw_init_phase1(adev); 2463 if (r) 2464 goto init_failed; 2465 2466 r = amdgpu_device_fw_loading(adev); 2467 if (r) 2468 goto init_failed; 2469 2470 r = amdgpu_device_ip_hw_init_phase2(adev); 2471 if (r) 2472 goto init_failed; 2473 2474 /* 2475 * retired pages will be loaded from eeprom and reserved here, 2476 * it should be called after amdgpu_device_ip_hw_init_phase2 since 2477 * for some ASICs the RAS EEPROM code relies on SMU fully functioning 2478 * for I2C communication which only true at this point. 2479 * 2480 * amdgpu_ras_recovery_init may fail, but the upper only cares the 2481 * failure from bad gpu situation and stop amdgpu init process 2482 * accordingly. For other failed cases, it will still release all 2483 * the resource and print error message, rather than returning one 2484 * negative value to upper level. 2485 * 2486 * Note: theoretically, this should be called before all vram allocations 2487 * to protect retired page from abusing 2488 */ 2489 r = amdgpu_ras_recovery_init(adev); 2490 if (r) 2491 goto init_failed; 2492 2493 /** 2494 * In case of XGMI grab extra reference for reset domain for this device 2495 */ 2496 if (adev->gmc.xgmi.num_physical_nodes > 1) { 2497 if (amdgpu_xgmi_add_device(adev) == 0) { 2498 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev); 2499 2500 if (!hive->reset_domain || 2501 !amdgpu_reset_get_reset_domain(hive->reset_domain)) { 2502 r = -ENOENT; 2503 goto init_failed; 2504 } 2505 2506 /* Drop the early temporary reset domain we created for device */ 2507 amdgpu_reset_put_reset_domain(adev->reset_domain); 2508 adev->reset_domain = hive->reset_domain; 2509 } 2510 } 2511 2512 r = amdgpu_device_init_schedulers(adev); 2513 if (r) 2514 goto init_failed; 2515 2516 /* Don't init kfd if whole hive need to be reset during init */ 2517 if (!adev->gmc.xgmi.pending_reset) 2518 amdgpu_amdkfd_device_init(adev); 2519 2520 amdgpu_fru_get_product_info(adev); 2521 2522 init_failed: 2523 if (amdgpu_sriov_vf(adev)) 2524 amdgpu_virt_release_full_gpu(adev, true); 2525 2526 return r; 2527 } 2528 2529 /** 2530 * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer 2531 * 2532 * @adev: amdgpu_device pointer 2533 * 2534 * Writes a reset magic value to the gart pointer in VRAM. The driver calls 2535 * this function before a GPU reset. If the value is retained after a 2536 * GPU reset, VRAM has not been lost. Some GPU resets may destry VRAM contents. 2537 */ 2538 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev) 2539 { 2540 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM); 2541 } 2542 2543 /** 2544 * amdgpu_device_check_vram_lost - check if vram is valid 2545 * 2546 * @adev: amdgpu_device pointer 2547 * 2548 * Checks the reset magic value written to the gart pointer in VRAM. 2549 * The driver calls this after a GPU reset to see if the contents of 2550 * VRAM is lost or now. 2551 * returns true if vram is lost, false if not. 2552 */ 2553 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev) 2554 { 2555 if (memcmp(adev->gart.ptr, adev->reset_magic, 2556 AMDGPU_RESET_MAGIC_NUM)) 2557 return true; 2558 2559 if (!amdgpu_in_reset(adev)) 2560 return false; 2561 2562 /* 2563 * For all ASICs with baco/mode1 reset, the VRAM is 2564 * always assumed to be lost. 2565 */ 2566 switch (amdgpu_asic_reset_method(adev)) { 2567 case AMD_RESET_METHOD_BACO: 2568 case AMD_RESET_METHOD_MODE1: 2569 return true; 2570 default: 2571 return false; 2572 } 2573 } 2574 2575 /** 2576 * amdgpu_device_set_cg_state - set clockgating for amdgpu device 2577 * 2578 * @adev: amdgpu_device pointer 2579 * @state: clockgating state (gate or ungate) 2580 * 2581 * The list of all the hardware IPs that make up the asic is walked and the 2582 * set_clockgating_state callbacks are run. 2583 * Late initialization pass enabling clockgating for hardware IPs. 2584 * Fini or suspend, pass disabling clockgating for hardware IPs. 2585 * Returns 0 on success, negative error code on failure. 2586 */ 2587 2588 int amdgpu_device_set_cg_state(struct amdgpu_device *adev, 2589 enum amd_clockgating_state state) 2590 { 2591 int i, j, r; 2592 2593 if (amdgpu_emu_mode == 1) 2594 return 0; 2595 2596 for (j = 0; j < adev->num_ip_blocks; j++) { 2597 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1; 2598 if (!adev->ip_blocks[i].status.late_initialized) 2599 continue; 2600 /* skip CG for GFX on S0ix */ 2601 if (adev->in_s0ix && 2602 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX) 2603 continue; 2604 /* skip CG for VCE/UVD, it's handled specially */ 2605 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD && 2606 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE && 2607 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN && 2608 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG && 2609 adev->ip_blocks[i].version->funcs->set_clockgating_state) { 2610 /* enable clockgating to save power */ 2611 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev, 2612 state); 2613 if (r) { 2614 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n", 2615 adev->ip_blocks[i].version->funcs->name, r); 2616 return r; 2617 } 2618 } 2619 } 2620 2621 return 0; 2622 } 2623 2624 int amdgpu_device_set_pg_state(struct amdgpu_device *adev, 2625 enum amd_powergating_state state) 2626 { 2627 int i, j, r; 2628 2629 if (amdgpu_emu_mode == 1) 2630 return 0; 2631 2632 for (j = 0; j < adev->num_ip_blocks; j++) { 2633 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1; 2634 if (!adev->ip_blocks[i].status.late_initialized) 2635 continue; 2636 /* skip PG for GFX on S0ix */ 2637 if (adev->in_s0ix && 2638 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX) 2639 continue; 2640 /* skip CG for VCE/UVD, it's handled specially */ 2641 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD && 2642 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE && 2643 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN && 2644 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG && 2645 adev->ip_blocks[i].version->funcs->set_powergating_state) { 2646 /* enable powergating to save power */ 2647 r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev, 2648 state); 2649 if (r) { 2650 DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n", 2651 adev->ip_blocks[i].version->funcs->name, r); 2652 return r; 2653 } 2654 } 2655 } 2656 return 0; 2657 } 2658 2659 static int amdgpu_device_enable_mgpu_fan_boost(void) 2660 { 2661 struct amdgpu_gpu_instance *gpu_ins; 2662 struct amdgpu_device *adev; 2663 int i, ret = 0; 2664 2665 mutex_lock(&mgpu_info.mutex); 2666 2667 /* 2668 * MGPU fan boost feature should be enabled 2669 * only when there are two or more dGPUs in 2670 * the system 2671 */ 2672 if (mgpu_info.num_dgpu < 2) 2673 goto out; 2674 2675 for (i = 0; i < mgpu_info.num_dgpu; i++) { 2676 gpu_ins = &(mgpu_info.gpu_ins[i]); 2677 adev = gpu_ins->adev; 2678 if (!(adev->flags & AMD_IS_APU) && 2679 !gpu_ins->mgpu_fan_enabled) { 2680 ret = amdgpu_dpm_enable_mgpu_fan_boost(adev); 2681 if (ret) 2682 break; 2683 2684 gpu_ins->mgpu_fan_enabled = 1; 2685 } 2686 } 2687 2688 out: 2689 mutex_unlock(&mgpu_info.mutex); 2690 2691 return ret; 2692 } 2693 2694 /** 2695 * amdgpu_device_ip_late_init - run late init for hardware IPs 2696 * 2697 * @adev: amdgpu_device pointer 2698 * 2699 * Late initialization pass for hardware IPs. The list of all the hardware 2700 * IPs that make up the asic is walked and the late_init callbacks are run. 2701 * late_init covers any special initialization that an IP requires 2702 * after all of the have been initialized or something that needs to happen 2703 * late in the init process. 2704 * Returns 0 on success, negative error code on failure. 2705 */ 2706 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev) 2707 { 2708 struct amdgpu_gpu_instance *gpu_instance; 2709 int i = 0, r; 2710 2711 for (i = 0; i < adev->num_ip_blocks; i++) { 2712 if (!adev->ip_blocks[i].status.hw) 2713 continue; 2714 if (adev->ip_blocks[i].version->funcs->late_init) { 2715 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev); 2716 if (r) { 2717 DRM_ERROR("late_init of IP block <%s> failed %d\n", 2718 adev->ip_blocks[i].version->funcs->name, r); 2719 return r; 2720 } 2721 } 2722 adev->ip_blocks[i].status.late_initialized = true; 2723 } 2724 2725 r = amdgpu_ras_late_init(adev); 2726 if (r) { 2727 DRM_ERROR("amdgpu_ras_late_init failed %d", r); 2728 return r; 2729 } 2730 2731 amdgpu_ras_set_error_query_ready(adev, true); 2732 2733 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE); 2734 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE); 2735 2736 amdgpu_device_fill_reset_magic(adev); 2737 2738 r = amdgpu_device_enable_mgpu_fan_boost(); 2739 if (r) 2740 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r); 2741 2742 /* For passthrough configuration on arcturus and aldebaran, enable special handling SBR */ 2743 if (amdgpu_passthrough(adev) && ((adev->asic_type == CHIP_ARCTURUS && adev->gmc.xgmi.num_physical_nodes > 1)|| 2744 adev->asic_type == CHIP_ALDEBARAN )) 2745 amdgpu_dpm_handle_passthrough_sbr(adev, true); 2746 2747 if (adev->gmc.xgmi.num_physical_nodes > 1) { 2748 mutex_lock(&mgpu_info.mutex); 2749 2750 /* 2751 * Reset device p-state to low as this was booted with high. 2752 * 2753 * This should be performed only after all devices from the same 2754 * hive get initialized. 2755 * 2756 * However, it's unknown how many device in the hive in advance. 2757 * As this is counted one by one during devices initializations. 2758 * 2759 * So, we wait for all XGMI interlinked devices initialized. 2760 * This may bring some delays as those devices may come from 2761 * different hives. But that should be OK. 2762 */ 2763 if (mgpu_info.num_dgpu == adev->gmc.xgmi.num_physical_nodes) { 2764 for (i = 0; i < mgpu_info.num_gpu; i++) { 2765 gpu_instance = &(mgpu_info.gpu_ins[i]); 2766 if (gpu_instance->adev->flags & AMD_IS_APU) 2767 continue; 2768 2769 r = amdgpu_xgmi_set_pstate(gpu_instance->adev, 2770 AMDGPU_XGMI_PSTATE_MIN); 2771 if (r) { 2772 DRM_ERROR("pstate setting failed (%d).\n", r); 2773 break; 2774 } 2775 } 2776 } 2777 2778 mutex_unlock(&mgpu_info.mutex); 2779 } 2780 2781 return 0; 2782 } 2783 2784 /** 2785 * amdgpu_device_smu_fini_early - smu hw_fini wrapper 2786 * 2787 * @adev: amdgpu_device pointer 2788 * 2789 * For ASICs need to disable SMC first 2790 */ 2791 static void amdgpu_device_smu_fini_early(struct amdgpu_device *adev) 2792 { 2793 int i, r; 2794 2795 if (adev->ip_versions[GC_HWIP][0] > IP_VERSION(9, 0, 0)) 2796 return; 2797 2798 for (i = 0; i < adev->num_ip_blocks; i++) { 2799 if (!adev->ip_blocks[i].status.hw) 2800 continue; 2801 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) { 2802 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev); 2803 /* XXX handle errors */ 2804 if (r) { 2805 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n", 2806 adev->ip_blocks[i].version->funcs->name, r); 2807 } 2808 adev->ip_blocks[i].status.hw = false; 2809 break; 2810 } 2811 } 2812 } 2813 2814 static int amdgpu_device_ip_fini_early(struct amdgpu_device *adev) 2815 { 2816 int i, r; 2817 2818 for (i = 0; i < adev->num_ip_blocks; i++) { 2819 if (!adev->ip_blocks[i].version->funcs->early_fini) 2820 continue; 2821 2822 r = adev->ip_blocks[i].version->funcs->early_fini((void *)adev); 2823 if (r) { 2824 DRM_DEBUG("early_fini of IP block <%s> failed %d\n", 2825 adev->ip_blocks[i].version->funcs->name, r); 2826 } 2827 } 2828 2829 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE); 2830 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE); 2831 2832 amdgpu_amdkfd_suspend(adev, false); 2833 2834 /* Workaroud for ASICs need to disable SMC first */ 2835 amdgpu_device_smu_fini_early(adev); 2836 2837 for (i = adev->num_ip_blocks - 1; i >= 0; i--) { 2838 if (!adev->ip_blocks[i].status.hw) 2839 continue; 2840 2841 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev); 2842 /* XXX handle errors */ 2843 if (r) { 2844 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n", 2845 adev->ip_blocks[i].version->funcs->name, r); 2846 } 2847 2848 adev->ip_blocks[i].status.hw = false; 2849 } 2850 2851 if (amdgpu_sriov_vf(adev)) { 2852 if (amdgpu_virt_release_full_gpu(adev, false)) 2853 DRM_ERROR("failed to release exclusive mode on fini\n"); 2854 } 2855 2856 return 0; 2857 } 2858 2859 /** 2860 * amdgpu_device_ip_fini - run fini for hardware IPs 2861 * 2862 * @adev: amdgpu_device pointer 2863 * 2864 * Main teardown pass for hardware IPs. The list of all the hardware 2865 * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks 2866 * are run. hw_fini tears down the hardware associated with each IP 2867 * and sw_fini tears down any software state associated with each IP. 2868 * Returns 0 on success, negative error code on failure. 2869 */ 2870 static int amdgpu_device_ip_fini(struct amdgpu_device *adev) 2871 { 2872 int i, r; 2873 2874 if (amdgpu_sriov_vf(adev) && adev->virt.ras_init_done) 2875 amdgpu_virt_release_ras_err_handler_data(adev); 2876 2877 if (adev->gmc.xgmi.num_physical_nodes > 1) 2878 amdgpu_xgmi_remove_device(adev); 2879 2880 amdgpu_amdkfd_device_fini_sw(adev); 2881 2882 for (i = adev->num_ip_blocks - 1; i >= 0; i--) { 2883 if (!adev->ip_blocks[i].status.sw) 2884 continue; 2885 2886 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) { 2887 amdgpu_ucode_free_bo(adev); 2888 amdgpu_free_static_csa(&adev->virt.csa_obj); 2889 amdgpu_device_wb_fini(adev); 2890 amdgpu_device_vram_scratch_fini(adev); 2891 amdgpu_ib_pool_fini(adev); 2892 } 2893 2894 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev); 2895 /* XXX handle errors */ 2896 if (r) { 2897 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n", 2898 adev->ip_blocks[i].version->funcs->name, r); 2899 } 2900 adev->ip_blocks[i].status.sw = false; 2901 adev->ip_blocks[i].status.valid = false; 2902 } 2903 2904 for (i = adev->num_ip_blocks - 1; i >= 0; i--) { 2905 if (!adev->ip_blocks[i].status.late_initialized) 2906 continue; 2907 if (adev->ip_blocks[i].version->funcs->late_fini) 2908 adev->ip_blocks[i].version->funcs->late_fini((void *)adev); 2909 adev->ip_blocks[i].status.late_initialized = false; 2910 } 2911 2912 amdgpu_ras_fini(adev); 2913 2914 return 0; 2915 } 2916 2917 /** 2918 * amdgpu_device_delayed_init_work_handler - work handler for IB tests 2919 * 2920 * @work: work_struct. 2921 */ 2922 static void amdgpu_device_delayed_init_work_handler(struct work_struct *work) 2923 { 2924 struct amdgpu_device *adev = 2925 container_of(work, struct amdgpu_device, delayed_init_work.work); 2926 int r; 2927 2928 r = amdgpu_ib_ring_tests(adev); 2929 if (r) 2930 DRM_ERROR("ib ring test failed (%d).\n", r); 2931 } 2932 2933 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work) 2934 { 2935 struct amdgpu_device *adev = 2936 container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work); 2937 2938 WARN_ON_ONCE(adev->gfx.gfx_off_state); 2939 WARN_ON_ONCE(adev->gfx.gfx_off_req_count); 2940 2941 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true)) 2942 adev->gfx.gfx_off_state = true; 2943 } 2944 2945 /** 2946 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1) 2947 * 2948 * @adev: amdgpu_device pointer 2949 * 2950 * Main suspend function for hardware IPs. The list of all the hardware 2951 * IPs that make up the asic is walked, clockgating is disabled and the 2952 * suspend callbacks are run. suspend puts the hardware and software state 2953 * in each IP into a state suitable for suspend. 2954 * Returns 0 on success, negative error code on failure. 2955 */ 2956 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev) 2957 { 2958 int i, r; 2959 2960 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE); 2961 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE); 2962 2963 for (i = adev->num_ip_blocks - 1; i >= 0; i--) { 2964 if (!adev->ip_blocks[i].status.valid) 2965 continue; 2966 2967 /* displays are handled separately */ 2968 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_DCE) 2969 continue; 2970 2971 /* XXX handle errors */ 2972 r = adev->ip_blocks[i].version->funcs->suspend(adev); 2973 /* XXX handle errors */ 2974 if (r) { 2975 DRM_ERROR("suspend of IP block <%s> failed %d\n", 2976 adev->ip_blocks[i].version->funcs->name, r); 2977 return r; 2978 } 2979 2980 adev->ip_blocks[i].status.hw = false; 2981 } 2982 2983 return 0; 2984 } 2985 2986 /** 2987 * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2) 2988 * 2989 * @adev: amdgpu_device pointer 2990 * 2991 * Main suspend function for hardware IPs. The list of all the hardware 2992 * IPs that make up the asic is walked, clockgating is disabled and the 2993 * suspend callbacks are run. suspend puts the hardware and software state 2994 * in each IP into a state suitable for suspend. 2995 * Returns 0 on success, negative error code on failure. 2996 */ 2997 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev) 2998 { 2999 int i, r; 3000 3001 if (adev->in_s0ix) 3002 amdgpu_dpm_gfx_state_change(adev, sGpuChangeState_D3Entry); 3003 3004 for (i = adev->num_ip_blocks - 1; i >= 0; i--) { 3005 if (!adev->ip_blocks[i].status.valid) 3006 continue; 3007 /* displays are handled in phase1 */ 3008 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) 3009 continue; 3010 /* PSP lost connection when err_event_athub occurs */ 3011 if (amdgpu_ras_intr_triggered() && 3012 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) { 3013 adev->ip_blocks[i].status.hw = false; 3014 continue; 3015 } 3016 3017 /* skip unnecessary suspend if we do not initialize them yet */ 3018 if (adev->gmc.xgmi.pending_reset && 3019 !(adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || 3020 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC || 3021 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || 3022 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH)) { 3023 adev->ip_blocks[i].status.hw = false; 3024 continue; 3025 } 3026 3027 /* skip suspend of gfx and psp for S0ix 3028 * gfx is in gfxoff state, so on resume it will exit gfxoff just 3029 * like at runtime. PSP is also part of the always on hardware 3030 * so no need to suspend it. 3031 */ 3032 if (adev->in_s0ix && 3033 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP || 3034 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX)) 3035 continue; 3036 3037 /* XXX handle errors */ 3038 r = adev->ip_blocks[i].version->funcs->suspend(adev); 3039 /* XXX handle errors */ 3040 if (r) { 3041 DRM_ERROR("suspend of IP block <%s> failed %d\n", 3042 adev->ip_blocks[i].version->funcs->name, r); 3043 } 3044 adev->ip_blocks[i].status.hw = false; 3045 /* handle putting the SMC in the appropriate state */ 3046 if(!amdgpu_sriov_vf(adev)){ 3047 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) { 3048 r = amdgpu_dpm_set_mp1_state(adev, adev->mp1_state); 3049 if (r) { 3050 DRM_ERROR("SMC failed to set mp1 state %d, %d\n", 3051 adev->mp1_state, r); 3052 return r; 3053 } 3054 } 3055 } 3056 } 3057 3058 return 0; 3059 } 3060 3061 /** 3062 * amdgpu_device_ip_suspend - run suspend for hardware IPs 3063 * 3064 * @adev: amdgpu_device pointer 3065 * 3066 * Main suspend function for hardware IPs. The list of all the hardware 3067 * IPs that make up the asic is walked, clockgating is disabled and the 3068 * suspend callbacks are run. suspend puts the hardware and software state 3069 * in each IP into a state suitable for suspend. 3070 * Returns 0 on success, negative error code on failure. 3071 */ 3072 int amdgpu_device_ip_suspend(struct amdgpu_device *adev) 3073 { 3074 int r; 3075 3076 if (amdgpu_sriov_vf(adev)) { 3077 amdgpu_virt_fini_data_exchange(adev); 3078 amdgpu_virt_request_full_gpu(adev, false); 3079 } 3080 3081 r = amdgpu_device_ip_suspend_phase1(adev); 3082 if (r) 3083 return r; 3084 r = amdgpu_device_ip_suspend_phase2(adev); 3085 3086 if (amdgpu_sriov_vf(adev)) 3087 amdgpu_virt_release_full_gpu(adev, false); 3088 3089 return r; 3090 } 3091 3092 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev) 3093 { 3094 int i, r; 3095 3096 static enum amd_ip_block_type ip_order[] = { 3097 AMD_IP_BLOCK_TYPE_GMC, 3098 AMD_IP_BLOCK_TYPE_COMMON, 3099 AMD_IP_BLOCK_TYPE_PSP, 3100 AMD_IP_BLOCK_TYPE_IH, 3101 }; 3102 3103 for (i = 0; i < adev->num_ip_blocks; i++) { 3104 int j; 3105 struct amdgpu_ip_block *block; 3106 3107 block = &adev->ip_blocks[i]; 3108 block->status.hw = false; 3109 3110 for (j = 0; j < ARRAY_SIZE(ip_order); j++) { 3111 3112 if (block->version->type != ip_order[j] || 3113 !block->status.valid) 3114 continue; 3115 3116 r = block->version->funcs->hw_init(adev); 3117 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded"); 3118 if (r) 3119 return r; 3120 block->status.hw = true; 3121 } 3122 } 3123 3124 return 0; 3125 } 3126 3127 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev) 3128 { 3129 int i, r; 3130 3131 static enum amd_ip_block_type ip_order[] = { 3132 AMD_IP_BLOCK_TYPE_SMC, 3133 AMD_IP_BLOCK_TYPE_DCE, 3134 AMD_IP_BLOCK_TYPE_GFX, 3135 AMD_IP_BLOCK_TYPE_SDMA, 3136 AMD_IP_BLOCK_TYPE_UVD, 3137 AMD_IP_BLOCK_TYPE_VCE, 3138 AMD_IP_BLOCK_TYPE_VCN 3139 }; 3140 3141 for (i = 0; i < ARRAY_SIZE(ip_order); i++) { 3142 int j; 3143 struct amdgpu_ip_block *block; 3144 3145 for (j = 0; j < adev->num_ip_blocks; j++) { 3146 block = &adev->ip_blocks[j]; 3147 3148 if (block->version->type != ip_order[i] || 3149 !block->status.valid || 3150 block->status.hw) 3151 continue; 3152 3153 if (block->version->type == AMD_IP_BLOCK_TYPE_SMC) 3154 r = block->version->funcs->resume(adev); 3155 else 3156 r = block->version->funcs->hw_init(adev); 3157 3158 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded"); 3159 if (r) 3160 return r; 3161 block->status.hw = true; 3162 } 3163 } 3164 3165 return 0; 3166 } 3167 3168 /** 3169 * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs 3170 * 3171 * @adev: amdgpu_device pointer 3172 * 3173 * First resume function for hardware IPs. The list of all the hardware 3174 * IPs that make up the asic is walked and the resume callbacks are run for 3175 * COMMON, GMC, and IH. resume puts the hardware into a functional state 3176 * after a suspend and updates the software state as necessary. This 3177 * function is also used for restoring the GPU after a GPU reset. 3178 * Returns 0 on success, negative error code on failure. 3179 */ 3180 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev) 3181 { 3182 int i, r; 3183 3184 for (i = 0; i < adev->num_ip_blocks; i++) { 3185 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw) 3186 continue; 3187 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || 3188 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || 3189 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) { 3190 3191 r = adev->ip_blocks[i].version->funcs->resume(adev); 3192 if (r) { 3193 DRM_ERROR("resume of IP block <%s> failed %d\n", 3194 adev->ip_blocks[i].version->funcs->name, r); 3195 return r; 3196 } 3197 adev->ip_blocks[i].status.hw = true; 3198 } 3199 } 3200 3201 return 0; 3202 } 3203 3204 /** 3205 * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs 3206 * 3207 * @adev: amdgpu_device pointer 3208 * 3209 * First resume function for hardware IPs. The list of all the hardware 3210 * IPs that make up the asic is walked and the resume callbacks are run for 3211 * all blocks except COMMON, GMC, and IH. resume puts the hardware into a 3212 * functional state after a suspend and updates the software state as 3213 * necessary. This function is also used for restoring the GPU after a GPU 3214 * reset. 3215 * Returns 0 on success, negative error code on failure. 3216 */ 3217 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev) 3218 { 3219 int i, r; 3220 3221 for (i = 0; i < adev->num_ip_blocks; i++) { 3222 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw) 3223 continue; 3224 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || 3225 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || 3226 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH || 3227 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) 3228 continue; 3229 r = adev->ip_blocks[i].version->funcs->resume(adev); 3230 if (r) { 3231 DRM_ERROR("resume of IP block <%s> failed %d\n", 3232 adev->ip_blocks[i].version->funcs->name, r); 3233 return r; 3234 } 3235 adev->ip_blocks[i].status.hw = true; 3236 } 3237 3238 return 0; 3239 } 3240 3241 /** 3242 * amdgpu_device_ip_resume - run resume for hardware IPs 3243 * 3244 * @adev: amdgpu_device pointer 3245 * 3246 * Main resume function for hardware IPs. The hardware IPs 3247 * are split into two resume functions because they are 3248 * are also used in in recovering from a GPU reset and some additional 3249 * steps need to be take between them. In this case (S3/S4) they are 3250 * run sequentially. 3251 * Returns 0 on success, negative error code on failure. 3252 */ 3253 static int amdgpu_device_ip_resume(struct amdgpu_device *adev) 3254 { 3255 int r; 3256 3257 r = amdgpu_amdkfd_resume_iommu(adev); 3258 if (r) 3259 return r; 3260 3261 r = amdgpu_device_ip_resume_phase1(adev); 3262 if (r) 3263 return r; 3264 3265 r = amdgpu_device_fw_loading(adev); 3266 if (r) 3267 return r; 3268 3269 r = amdgpu_device_ip_resume_phase2(adev); 3270 3271 return r; 3272 } 3273 3274 /** 3275 * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV 3276 * 3277 * @adev: amdgpu_device pointer 3278 * 3279 * Query the VBIOS data tables to determine if the board supports SR-IOV. 3280 */ 3281 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev) 3282 { 3283 if (amdgpu_sriov_vf(adev)) { 3284 if (adev->is_atom_fw) { 3285 if (amdgpu_atomfirmware_gpu_virtualization_supported(adev)) 3286 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS; 3287 } else { 3288 if (amdgpu_atombios_has_gpu_virtualization_table(adev)) 3289 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS; 3290 } 3291 3292 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS)) 3293 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0); 3294 } 3295 } 3296 3297 /** 3298 * amdgpu_device_asic_has_dc_support - determine if DC supports the asic 3299 * 3300 * @asic_type: AMD asic type 3301 * 3302 * Check if there is DC (new modesetting infrastructre) support for an asic. 3303 * returns true if DC has support, false if not. 3304 */ 3305 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type) 3306 { 3307 switch (asic_type) { 3308 #ifdef CONFIG_DRM_AMDGPU_SI 3309 case CHIP_HAINAN: 3310 #endif 3311 case CHIP_TOPAZ: 3312 /* chips with no display hardware */ 3313 return false; 3314 #if defined(CONFIG_DRM_AMD_DC) 3315 case CHIP_TAHITI: 3316 case CHIP_PITCAIRN: 3317 case CHIP_VERDE: 3318 case CHIP_OLAND: 3319 /* 3320 * We have systems in the wild with these ASICs that require 3321 * LVDS and VGA support which is not supported with DC. 3322 * 3323 * Fallback to the non-DC driver here by default so as not to 3324 * cause regressions. 3325 */ 3326 #if defined(CONFIG_DRM_AMD_DC_SI) 3327 return amdgpu_dc > 0; 3328 #else 3329 return false; 3330 #endif 3331 case CHIP_BONAIRE: 3332 case CHIP_KAVERI: 3333 case CHIP_KABINI: 3334 case CHIP_MULLINS: 3335 /* 3336 * We have systems in the wild with these ASICs that require 3337 * LVDS and VGA support which is not supported with DC. 3338 * 3339 * Fallback to the non-DC driver here by default so as not to 3340 * cause regressions. 3341 */ 3342 return amdgpu_dc > 0; 3343 case CHIP_HAWAII: 3344 case CHIP_CARRIZO: 3345 case CHIP_STONEY: 3346 case CHIP_POLARIS10: 3347 case CHIP_POLARIS11: 3348 case CHIP_POLARIS12: 3349 case CHIP_VEGAM: 3350 case CHIP_TONGA: 3351 case CHIP_FIJI: 3352 case CHIP_VEGA10: 3353 case CHIP_VEGA12: 3354 case CHIP_VEGA20: 3355 #if defined(CONFIG_DRM_AMD_DC_DCN) 3356 case CHIP_RAVEN: 3357 case CHIP_NAVI10: 3358 case CHIP_NAVI14: 3359 case CHIP_NAVI12: 3360 case CHIP_RENOIR: 3361 case CHIP_CYAN_SKILLFISH: 3362 case CHIP_SIENNA_CICHLID: 3363 case CHIP_NAVY_FLOUNDER: 3364 case CHIP_DIMGREY_CAVEFISH: 3365 case CHIP_BEIGE_GOBY: 3366 case CHIP_VANGOGH: 3367 case CHIP_YELLOW_CARP: 3368 #endif 3369 default: 3370 return amdgpu_dc != 0; 3371 #else 3372 default: 3373 if (amdgpu_dc > 0) 3374 DRM_INFO_ONCE("Display Core has been requested via kernel parameter " 3375 "but isn't supported by ASIC, ignoring\n"); 3376 return false; 3377 #endif 3378 } 3379 } 3380 3381 /** 3382 * amdgpu_device_has_dc_support - check if dc is supported 3383 * 3384 * @adev: amdgpu_device pointer 3385 * 3386 * Returns true for supported, false for not supported 3387 */ 3388 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev) 3389 { 3390 if (amdgpu_sriov_vf(adev) || 3391 adev->enable_virtual_display || 3392 (adev->harvest_ip_mask & AMD_HARVEST_IP_DMU_MASK)) 3393 return false; 3394 3395 return amdgpu_device_asic_has_dc_support(adev->asic_type); 3396 } 3397 3398 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work) 3399 { 3400 struct amdgpu_device *adev = 3401 container_of(__work, struct amdgpu_device, xgmi_reset_work); 3402 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev); 3403 3404 /* It's a bug to not have a hive within this function */ 3405 if (WARN_ON(!hive)) 3406 return; 3407 3408 /* 3409 * Use task barrier to synchronize all xgmi reset works across the 3410 * hive. task_barrier_enter and task_barrier_exit will block 3411 * until all the threads running the xgmi reset works reach 3412 * those points. task_barrier_full will do both blocks. 3413 */ 3414 if (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) { 3415 3416 task_barrier_enter(&hive->tb); 3417 adev->asic_reset_res = amdgpu_device_baco_enter(adev_to_drm(adev)); 3418 3419 if (adev->asic_reset_res) 3420 goto fail; 3421 3422 task_barrier_exit(&hive->tb); 3423 adev->asic_reset_res = amdgpu_device_baco_exit(adev_to_drm(adev)); 3424 3425 if (adev->asic_reset_res) 3426 goto fail; 3427 3428 if (adev->mmhub.ras && adev->mmhub.ras->ras_block.hw_ops && 3429 adev->mmhub.ras->ras_block.hw_ops->reset_ras_error_count) 3430 adev->mmhub.ras->ras_block.hw_ops->reset_ras_error_count(adev); 3431 } else { 3432 3433 task_barrier_full(&hive->tb); 3434 adev->asic_reset_res = amdgpu_asic_reset(adev); 3435 } 3436 3437 fail: 3438 if (adev->asic_reset_res) 3439 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s", 3440 adev->asic_reset_res, adev_to_drm(adev)->unique); 3441 amdgpu_put_xgmi_hive(hive); 3442 } 3443 3444 static int amdgpu_device_get_job_timeout_settings(struct amdgpu_device *adev) 3445 { 3446 char *input = amdgpu_lockup_timeout; 3447 char *timeout_setting = NULL; 3448 int index = 0; 3449 long timeout; 3450 int ret = 0; 3451 3452 /* 3453 * By default timeout for non compute jobs is 10000 3454 * and 60000 for compute jobs. 3455 * In SR-IOV or passthrough mode, timeout for compute 3456 * jobs are 60000 by default. 3457 */ 3458 adev->gfx_timeout = msecs_to_jiffies(10000); 3459 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout; 3460 if (amdgpu_sriov_vf(adev)) 3461 adev->compute_timeout = amdgpu_sriov_is_pp_one_vf(adev) ? 3462 msecs_to_jiffies(60000) : msecs_to_jiffies(10000); 3463 else 3464 adev->compute_timeout = msecs_to_jiffies(60000); 3465 3466 if (strnlen(input, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) { 3467 while ((timeout_setting = strsep(&input, ",")) && 3468 strnlen(timeout_setting, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) { 3469 ret = kstrtol(timeout_setting, 0, &timeout); 3470 if (ret) 3471 return ret; 3472 3473 if (timeout == 0) { 3474 index++; 3475 continue; 3476 } else if (timeout < 0) { 3477 timeout = MAX_SCHEDULE_TIMEOUT; 3478 dev_warn(adev->dev, "lockup timeout disabled"); 3479 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK); 3480 } else { 3481 timeout = msecs_to_jiffies(timeout); 3482 } 3483 3484 switch (index++) { 3485 case 0: 3486 adev->gfx_timeout = timeout; 3487 break; 3488 case 1: 3489 adev->compute_timeout = timeout; 3490 break; 3491 case 2: 3492 adev->sdma_timeout = timeout; 3493 break; 3494 case 3: 3495 adev->video_timeout = timeout; 3496 break; 3497 default: 3498 break; 3499 } 3500 } 3501 /* 3502 * There is only one value specified and 3503 * it should apply to all non-compute jobs. 3504 */ 3505 if (index == 1) { 3506 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout; 3507 if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev)) 3508 adev->compute_timeout = adev->gfx_timeout; 3509 } 3510 } 3511 3512 return ret; 3513 } 3514 3515 /** 3516 * amdgpu_device_check_iommu_direct_map - check if RAM direct mapped to GPU 3517 * 3518 * @adev: amdgpu_device pointer 3519 * 3520 * RAM direct mapped to GPU if IOMMU is not enabled or is pass through mode 3521 */ 3522 static void amdgpu_device_check_iommu_direct_map(struct amdgpu_device *adev) 3523 { 3524 struct iommu_domain *domain; 3525 3526 domain = iommu_get_domain_for_dev(adev->dev); 3527 if (!domain || domain->type == IOMMU_DOMAIN_IDENTITY) 3528 adev->ram_is_direct_mapped = true; 3529 } 3530 3531 static const struct attribute *amdgpu_dev_attributes[] = { 3532 &dev_attr_product_name.attr, 3533 &dev_attr_product_number.attr, 3534 &dev_attr_serial_number.attr, 3535 &dev_attr_pcie_replay_count.attr, 3536 NULL 3537 }; 3538 3539 /** 3540 * amdgpu_device_init - initialize the driver 3541 * 3542 * @adev: amdgpu_device pointer 3543 * @flags: driver flags 3544 * 3545 * Initializes the driver info and hw (all asics). 3546 * Returns 0 for success or an error on failure. 3547 * Called at driver startup. 3548 */ 3549 int amdgpu_device_init(struct amdgpu_device *adev, 3550 uint32_t flags) 3551 { 3552 struct drm_device *ddev = adev_to_drm(adev); 3553 struct pci_dev *pdev = adev->pdev; 3554 int r, i; 3555 bool px = false; 3556 u32 max_MBps; 3557 3558 adev->shutdown = false; 3559 adev->flags = flags; 3560 3561 if (amdgpu_force_asic_type >= 0 && amdgpu_force_asic_type < CHIP_LAST) 3562 adev->asic_type = amdgpu_force_asic_type; 3563 else 3564 adev->asic_type = flags & AMD_ASIC_MASK; 3565 3566 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT; 3567 if (amdgpu_emu_mode == 1) 3568 adev->usec_timeout *= 10; 3569 adev->gmc.gart_size = 512 * 1024 * 1024; 3570 adev->accel_working = false; 3571 adev->num_rings = 0; 3572 adev->mman.buffer_funcs = NULL; 3573 adev->mman.buffer_funcs_ring = NULL; 3574 adev->vm_manager.vm_pte_funcs = NULL; 3575 adev->vm_manager.vm_pte_num_scheds = 0; 3576 adev->gmc.gmc_funcs = NULL; 3577 adev->harvest_ip_mask = 0x0; 3578 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS); 3579 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES); 3580 3581 adev->smc_rreg = &amdgpu_invalid_rreg; 3582 adev->smc_wreg = &amdgpu_invalid_wreg; 3583 adev->pcie_rreg = &amdgpu_invalid_rreg; 3584 adev->pcie_wreg = &amdgpu_invalid_wreg; 3585 adev->pciep_rreg = &amdgpu_invalid_rreg; 3586 adev->pciep_wreg = &amdgpu_invalid_wreg; 3587 adev->pcie_rreg64 = &amdgpu_invalid_rreg64; 3588 adev->pcie_wreg64 = &amdgpu_invalid_wreg64; 3589 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg; 3590 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg; 3591 adev->didt_rreg = &amdgpu_invalid_rreg; 3592 adev->didt_wreg = &amdgpu_invalid_wreg; 3593 adev->gc_cac_rreg = &amdgpu_invalid_rreg; 3594 adev->gc_cac_wreg = &amdgpu_invalid_wreg; 3595 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg; 3596 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg; 3597 3598 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n", 3599 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device, 3600 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision); 3601 3602 /* mutex initialization are all done here so we 3603 * can recall function without having locking issues */ 3604 mutex_init(&adev->firmware.mutex); 3605 mutex_init(&adev->pm.mutex); 3606 mutex_init(&adev->gfx.gpu_clock_mutex); 3607 mutex_init(&adev->srbm_mutex); 3608 mutex_init(&adev->gfx.pipe_reserve_mutex); 3609 mutex_init(&adev->gfx.gfx_off_mutex); 3610 mutex_init(&adev->grbm_idx_mutex); 3611 mutex_init(&adev->mn_lock); 3612 mutex_init(&adev->virt.vf_errors.lock); 3613 hash_init(adev->mn_hash); 3614 mutex_init(&adev->psp.mutex); 3615 mutex_init(&adev->notifier_lock); 3616 mutex_init(&adev->pm.stable_pstate_ctx_lock); 3617 mutex_init(&adev->benchmark_mutex); 3618 3619 amdgpu_device_init_apu_flags(adev); 3620 3621 r = amdgpu_device_check_arguments(adev); 3622 if (r) 3623 return r; 3624 3625 spin_lock_init(&adev->mmio_idx_lock); 3626 spin_lock_init(&adev->smc_idx_lock); 3627 spin_lock_init(&adev->pcie_idx_lock); 3628 spin_lock_init(&adev->uvd_ctx_idx_lock); 3629 spin_lock_init(&adev->didt_idx_lock); 3630 spin_lock_init(&adev->gc_cac_idx_lock); 3631 spin_lock_init(&adev->se_cac_idx_lock); 3632 spin_lock_init(&adev->audio_endpt_idx_lock); 3633 spin_lock_init(&adev->mm_stats.lock); 3634 3635 INIT_LIST_HEAD(&adev->shadow_list); 3636 mutex_init(&adev->shadow_list_lock); 3637 3638 INIT_LIST_HEAD(&adev->reset_list); 3639 3640 INIT_LIST_HEAD(&adev->ras_list); 3641 3642 INIT_DELAYED_WORK(&adev->delayed_init_work, 3643 amdgpu_device_delayed_init_work_handler); 3644 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work, 3645 amdgpu_device_delay_enable_gfx_off); 3646 3647 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func); 3648 3649 adev->gfx.gfx_off_req_count = 1; 3650 adev->pm.ac_power = power_supply_is_system_supplied() > 0; 3651 3652 atomic_set(&adev->throttling_logging_enabled, 1); 3653 /* 3654 * If throttling continues, logging will be performed every minute 3655 * to avoid log flooding. "-1" is subtracted since the thermal 3656 * throttling interrupt comes every second. Thus, the total logging 3657 * interval is 59 seconds(retelimited printk interval) + 1(waiting 3658 * for throttling interrupt) = 60 seconds. 3659 */ 3660 ratelimit_state_init(&adev->throttling_logging_rs, (60 - 1) * HZ, 1); 3661 ratelimit_set_flags(&adev->throttling_logging_rs, RATELIMIT_MSG_ON_RELEASE); 3662 3663 /* Registers mapping */ 3664 /* TODO: block userspace mapping of io register */ 3665 if (adev->asic_type >= CHIP_BONAIRE) { 3666 adev->rmmio_base = pci_resource_start(adev->pdev, 5); 3667 adev->rmmio_size = pci_resource_len(adev->pdev, 5); 3668 } else { 3669 adev->rmmio_base = pci_resource_start(adev->pdev, 2); 3670 adev->rmmio_size = pci_resource_len(adev->pdev, 2); 3671 } 3672 3673 for (i = 0; i < AMD_IP_BLOCK_TYPE_NUM; i++) 3674 atomic_set(&adev->pm.pwr_state[i], POWER_STATE_UNKNOWN); 3675 3676 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size); 3677 if (adev->rmmio == NULL) { 3678 return -ENOMEM; 3679 } 3680 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base); 3681 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size); 3682 3683 amdgpu_device_get_pcie_info(adev); 3684 3685 if (amdgpu_mcbp) 3686 DRM_INFO("MCBP is enabled\n"); 3687 3688 if (amdgpu_mes && adev->asic_type >= CHIP_NAVI10) 3689 adev->enable_mes = true; 3690 3691 /* detect hw virtualization here */ 3692 amdgpu_detect_virtualization(adev); 3693 3694 r = amdgpu_device_get_job_timeout_settings(adev); 3695 if (r) { 3696 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n"); 3697 return r; 3698 } 3699 3700 /* 3701 * Reset domain needs to be present early, before XGMI hive discovered 3702 * (if any) and intitialized to use reset sem and in_gpu reset flag 3703 * early on during init. 3704 */ 3705 adev->reset_domain = amdgpu_reset_create_reset_domain(SINGLE_DEVICE ,"amdgpu-reset-dev"); 3706 if (!adev->reset_domain) 3707 return -ENOMEM; 3708 3709 /* early init functions */ 3710 r = amdgpu_device_ip_early_init(adev); 3711 if (r) 3712 return r; 3713 3714 /* Need to get xgmi info early to decide the reset behavior*/ 3715 if (adev->gmc.xgmi.supported) { 3716 r = adev->gfxhub.funcs->get_xgmi_info(adev); 3717 if (r) 3718 return r; 3719 } 3720 3721 /* enable PCIE atomic ops */ 3722 if (amdgpu_sriov_vf(adev)) 3723 adev->have_atomics_support = ((struct amd_sriov_msg_pf2vf_info *) 3724 adev->virt.fw_reserve.p_pf2vf)->pcie_atomic_ops_enabled_flags == 3725 (PCI_EXP_DEVCAP2_ATOMIC_COMP32 | PCI_EXP_DEVCAP2_ATOMIC_COMP64); 3726 else 3727 adev->have_atomics_support = 3728 !pci_enable_atomic_ops_to_root(adev->pdev, 3729 PCI_EXP_DEVCAP2_ATOMIC_COMP32 | 3730 PCI_EXP_DEVCAP2_ATOMIC_COMP64); 3731 if (!adev->have_atomics_support) 3732 dev_info(adev->dev, "PCIE atomic ops is not supported\n"); 3733 3734 /* doorbell bar mapping and doorbell index init*/ 3735 amdgpu_device_doorbell_init(adev); 3736 3737 if (amdgpu_emu_mode == 1) { 3738 /* post the asic on emulation mode */ 3739 emu_soc_asic_init(adev); 3740 goto fence_driver_init; 3741 } 3742 3743 amdgpu_reset_init(adev); 3744 3745 /* detect if we are with an SRIOV vbios */ 3746 amdgpu_device_detect_sriov_bios(adev); 3747 3748 /* check if we need to reset the asic 3749 * E.g., driver was not cleanly unloaded previously, etc. 3750 */ 3751 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) { 3752 if (adev->gmc.xgmi.num_physical_nodes) { 3753 dev_info(adev->dev, "Pending hive reset.\n"); 3754 adev->gmc.xgmi.pending_reset = true; 3755 /* Only need to init necessary block for SMU to handle the reset */ 3756 for (i = 0; i < adev->num_ip_blocks; i++) { 3757 if (!adev->ip_blocks[i].status.valid) 3758 continue; 3759 if (!(adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || 3760 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || 3761 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH || 3762 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC)) { 3763 DRM_DEBUG("IP %s disabled for hw_init.\n", 3764 adev->ip_blocks[i].version->funcs->name); 3765 adev->ip_blocks[i].status.hw = true; 3766 } 3767 } 3768 } else { 3769 r = amdgpu_asic_reset(adev); 3770 if (r) { 3771 dev_err(adev->dev, "asic reset on init failed\n"); 3772 goto failed; 3773 } 3774 } 3775 } 3776 3777 pci_enable_pcie_error_reporting(adev->pdev); 3778 3779 /* Post card if necessary */ 3780 if (amdgpu_device_need_post(adev)) { 3781 if (!adev->bios) { 3782 dev_err(adev->dev, "no vBIOS found\n"); 3783 r = -EINVAL; 3784 goto failed; 3785 } 3786 DRM_INFO("GPU posting now...\n"); 3787 r = amdgpu_device_asic_init(adev); 3788 if (r) { 3789 dev_err(adev->dev, "gpu post error!\n"); 3790 goto failed; 3791 } 3792 } 3793 3794 if (adev->is_atom_fw) { 3795 /* Initialize clocks */ 3796 r = amdgpu_atomfirmware_get_clock_info(adev); 3797 if (r) { 3798 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n"); 3799 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0); 3800 goto failed; 3801 } 3802 } else { 3803 /* Initialize clocks */ 3804 r = amdgpu_atombios_get_clock_info(adev); 3805 if (r) { 3806 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n"); 3807 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0); 3808 goto failed; 3809 } 3810 /* init i2c buses */ 3811 if (!amdgpu_device_has_dc_support(adev)) 3812 amdgpu_atombios_i2c_init(adev); 3813 } 3814 3815 fence_driver_init: 3816 /* Fence driver */ 3817 r = amdgpu_fence_driver_sw_init(adev); 3818 if (r) { 3819 dev_err(adev->dev, "amdgpu_fence_driver_sw_init failed\n"); 3820 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0); 3821 goto failed; 3822 } 3823 3824 /* init the mode config */ 3825 drm_mode_config_init(adev_to_drm(adev)); 3826 3827 r = amdgpu_device_ip_init(adev); 3828 if (r) { 3829 /* failed in exclusive mode due to timeout */ 3830 if (amdgpu_sriov_vf(adev) && 3831 !amdgpu_sriov_runtime(adev) && 3832 amdgpu_virt_mmio_blocked(adev) && 3833 !amdgpu_virt_wait_reset(adev)) { 3834 dev_err(adev->dev, "VF exclusive mode timeout\n"); 3835 /* Don't send request since VF is inactive. */ 3836 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME; 3837 adev->virt.ops = NULL; 3838 r = -EAGAIN; 3839 goto release_ras_con; 3840 } 3841 dev_err(adev->dev, "amdgpu_device_ip_init failed\n"); 3842 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0); 3843 goto release_ras_con; 3844 } 3845 3846 amdgpu_fence_driver_hw_init(adev); 3847 3848 dev_info(adev->dev, 3849 "SE %d, SH per SE %d, CU per SH %d, active_cu_number %d\n", 3850 adev->gfx.config.max_shader_engines, 3851 adev->gfx.config.max_sh_per_se, 3852 adev->gfx.config.max_cu_per_sh, 3853 adev->gfx.cu_info.number); 3854 3855 adev->accel_working = true; 3856 3857 amdgpu_vm_check_compute_bug(adev); 3858 3859 /* Initialize the buffer migration limit. */ 3860 if (amdgpu_moverate >= 0) 3861 max_MBps = amdgpu_moverate; 3862 else 3863 max_MBps = 8; /* Allow 8 MB/s. */ 3864 /* Get a log2 for easy divisions. */ 3865 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps)); 3866 3867 r = amdgpu_pm_sysfs_init(adev); 3868 if (r) { 3869 adev->pm_sysfs_en = false; 3870 DRM_ERROR("registering pm debugfs failed (%d).\n", r); 3871 } else 3872 adev->pm_sysfs_en = true; 3873 3874 r = amdgpu_ucode_sysfs_init(adev); 3875 if (r) { 3876 adev->ucode_sysfs_en = false; 3877 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r); 3878 } else 3879 adev->ucode_sysfs_en = true; 3880 3881 /* 3882 * Register gpu instance before amdgpu_device_enable_mgpu_fan_boost. 3883 * Otherwise the mgpu fan boost feature will be skipped due to the 3884 * gpu instance is counted less. 3885 */ 3886 amdgpu_register_gpu_instance(adev); 3887 3888 /* enable clockgating, etc. after ib tests, etc. since some blocks require 3889 * explicit gating rather than handling it automatically. 3890 */ 3891 if (!adev->gmc.xgmi.pending_reset) { 3892 r = amdgpu_device_ip_late_init(adev); 3893 if (r) { 3894 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n"); 3895 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r); 3896 goto release_ras_con; 3897 } 3898 /* must succeed. */ 3899 amdgpu_ras_resume(adev); 3900 queue_delayed_work(system_wq, &adev->delayed_init_work, 3901 msecs_to_jiffies(AMDGPU_RESUME_MS)); 3902 } 3903 3904 if (amdgpu_sriov_vf(adev)) 3905 flush_delayed_work(&adev->delayed_init_work); 3906 3907 r = sysfs_create_files(&adev->dev->kobj, amdgpu_dev_attributes); 3908 if (r) 3909 dev_err(adev->dev, "Could not create amdgpu device attr\n"); 3910 3911 if (IS_ENABLED(CONFIG_PERF_EVENTS)) 3912 r = amdgpu_pmu_init(adev); 3913 if (r) 3914 dev_err(adev->dev, "amdgpu_pmu_init failed\n"); 3915 3916 /* Have stored pci confspace at hand for restore in sudden PCI error */ 3917 if (amdgpu_device_cache_pci_state(adev->pdev)) 3918 pci_restore_state(pdev); 3919 3920 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */ 3921 /* this will fail for cards that aren't VGA class devices, just 3922 * ignore it */ 3923 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) 3924 vga_client_register(adev->pdev, amdgpu_device_vga_set_decode); 3925 3926 if (amdgpu_device_supports_px(ddev)) { 3927 px = true; 3928 vga_switcheroo_register_client(adev->pdev, 3929 &amdgpu_switcheroo_ops, px); 3930 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain); 3931 } 3932 3933 if (adev->gmc.xgmi.pending_reset) 3934 queue_delayed_work(system_wq, &mgpu_info.delayed_reset_work, 3935 msecs_to_jiffies(AMDGPU_RESUME_MS)); 3936 3937 amdgpu_device_check_iommu_direct_map(adev); 3938 3939 return 0; 3940 3941 release_ras_con: 3942 amdgpu_release_ras_context(adev); 3943 3944 failed: 3945 amdgpu_vf_error_trans_all(adev); 3946 3947 return r; 3948 } 3949 3950 static void amdgpu_device_unmap_mmio(struct amdgpu_device *adev) 3951 { 3952 3953 /* Clear all CPU mappings pointing to this device */ 3954 unmap_mapping_range(adev->ddev.anon_inode->i_mapping, 0, 0, 1); 3955 3956 /* Unmap all mapped bars - Doorbell, registers and VRAM */ 3957 amdgpu_device_doorbell_fini(adev); 3958 3959 iounmap(adev->rmmio); 3960 adev->rmmio = NULL; 3961 if (adev->mman.aper_base_kaddr) 3962 iounmap(adev->mman.aper_base_kaddr); 3963 adev->mman.aper_base_kaddr = NULL; 3964 3965 /* Memory manager related */ 3966 if (!adev->gmc.xgmi.connected_to_cpu) { 3967 arch_phys_wc_del(adev->gmc.vram_mtrr); 3968 arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size); 3969 } 3970 } 3971 3972 /** 3973 * amdgpu_device_fini_hw - tear down the driver 3974 * 3975 * @adev: amdgpu_device pointer 3976 * 3977 * Tear down the driver info (all asics). 3978 * Called at driver shutdown. 3979 */ 3980 void amdgpu_device_fini_hw(struct amdgpu_device *adev) 3981 { 3982 dev_info(adev->dev, "amdgpu: finishing device.\n"); 3983 flush_delayed_work(&adev->delayed_init_work); 3984 if (adev->mman.initialized) { 3985 flush_delayed_work(&adev->mman.bdev.wq); 3986 ttm_bo_lock_delayed_workqueue(&adev->mman.bdev); 3987 } 3988 adev->shutdown = true; 3989 3990 /* make sure IB test finished before entering exclusive mode 3991 * to avoid preemption on IB test 3992 * */ 3993 if (amdgpu_sriov_vf(adev)) { 3994 amdgpu_virt_request_full_gpu(adev, false); 3995 amdgpu_virt_fini_data_exchange(adev); 3996 } 3997 3998 /* disable all interrupts */ 3999 amdgpu_irq_disable_all(adev); 4000 if (adev->mode_info.mode_config_initialized){ 4001 if (!drm_drv_uses_atomic_modeset(adev_to_drm(adev))) 4002 drm_helper_force_disable_all(adev_to_drm(adev)); 4003 else 4004 drm_atomic_helper_shutdown(adev_to_drm(adev)); 4005 } 4006 amdgpu_fence_driver_hw_fini(adev); 4007 4008 if (adev->pm_sysfs_en) 4009 amdgpu_pm_sysfs_fini(adev); 4010 if (adev->ucode_sysfs_en) 4011 amdgpu_ucode_sysfs_fini(adev); 4012 sysfs_remove_files(&adev->dev->kobj, amdgpu_dev_attributes); 4013 4014 /* disable ras feature must before hw fini */ 4015 amdgpu_ras_pre_fini(adev); 4016 4017 amdgpu_device_ip_fini_early(adev); 4018 4019 amdgpu_irq_fini_hw(adev); 4020 4021 if (adev->mman.initialized) 4022 ttm_device_clear_dma_mappings(&adev->mman.bdev); 4023 4024 amdgpu_gart_dummy_page_fini(adev); 4025 4026 if (drm_dev_is_unplugged(adev_to_drm(adev))) 4027 amdgpu_device_unmap_mmio(adev); 4028 4029 } 4030 4031 void amdgpu_device_fini_sw(struct amdgpu_device *adev) 4032 { 4033 int idx; 4034 4035 amdgpu_fence_driver_sw_fini(adev); 4036 amdgpu_device_ip_fini(adev); 4037 release_firmware(adev->firmware.gpu_info_fw); 4038 adev->firmware.gpu_info_fw = NULL; 4039 adev->accel_working = false; 4040 4041 amdgpu_reset_fini(adev); 4042 4043 /* free i2c buses */ 4044 if (!amdgpu_device_has_dc_support(adev)) 4045 amdgpu_i2c_fini(adev); 4046 4047 if (amdgpu_emu_mode != 1) 4048 amdgpu_atombios_fini(adev); 4049 4050 kfree(adev->bios); 4051 adev->bios = NULL; 4052 if (amdgpu_device_supports_px(adev_to_drm(adev))) { 4053 vga_switcheroo_unregister_client(adev->pdev); 4054 vga_switcheroo_fini_domain_pm_ops(adev->dev); 4055 } 4056 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) 4057 vga_client_unregister(adev->pdev); 4058 4059 if (drm_dev_enter(adev_to_drm(adev), &idx)) { 4060 4061 iounmap(adev->rmmio); 4062 adev->rmmio = NULL; 4063 amdgpu_device_doorbell_fini(adev); 4064 drm_dev_exit(idx); 4065 } 4066 4067 if (IS_ENABLED(CONFIG_PERF_EVENTS)) 4068 amdgpu_pmu_fini(adev); 4069 if (adev->mman.discovery_bin) 4070 amdgpu_discovery_fini(adev); 4071 4072 amdgpu_reset_put_reset_domain(adev->reset_domain); 4073 adev->reset_domain = NULL; 4074 4075 kfree(adev->pci_state); 4076 4077 } 4078 4079 /** 4080 * amdgpu_device_evict_resources - evict device resources 4081 * @adev: amdgpu device object 4082 * 4083 * Evicts all ttm device resources(vram BOs, gart table) from the lru list 4084 * of the vram memory type. Mainly used for evicting device resources 4085 * at suspend time. 4086 * 4087 */ 4088 static void amdgpu_device_evict_resources(struct amdgpu_device *adev) 4089 { 4090 /* No need to evict vram on APUs for suspend to ram or s2idle */ 4091 if ((adev->in_s3 || adev->in_s0ix) && (adev->flags & AMD_IS_APU)) 4092 return; 4093 4094 if (amdgpu_ttm_evict_resources(adev, TTM_PL_VRAM)) 4095 DRM_WARN("evicting device resources failed\n"); 4096 4097 } 4098 4099 /* 4100 * Suspend & resume. 4101 */ 4102 /** 4103 * amdgpu_device_suspend - initiate device suspend 4104 * 4105 * @dev: drm dev pointer 4106 * @fbcon : notify the fbdev of suspend 4107 * 4108 * Puts the hw in the suspend state (all asics). 4109 * Returns 0 for success or an error on failure. 4110 * Called at driver suspend. 4111 */ 4112 int amdgpu_device_suspend(struct drm_device *dev, bool fbcon) 4113 { 4114 struct amdgpu_device *adev = drm_to_adev(dev); 4115 4116 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) 4117 return 0; 4118 4119 adev->in_suspend = true; 4120 4121 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DEV_D3)) 4122 DRM_WARN("smart shift update failed\n"); 4123 4124 drm_kms_helper_poll_disable(dev); 4125 4126 if (fbcon) 4127 drm_fb_helper_set_suspend_unlocked(adev_to_drm(adev)->fb_helper, true); 4128 4129 cancel_delayed_work_sync(&adev->delayed_init_work); 4130 4131 amdgpu_ras_suspend(adev); 4132 4133 amdgpu_device_ip_suspend_phase1(adev); 4134 4135 if (!adev->in_s0ix) 4136 amdgpu_amdkfd_suspend(adev, adev->in_runpm); 4137 4138 amdgpu_device_evict_resources(adev); 4139 4140 amdgpu_fence_driver_hw_fini(adev); 4141 4142 amdgpu_device_ip_suspend_phase2(adev); 4143 4144 return 0; 4145 } 4146 4147 /** 4148 * amdgpu_device_resume - initiate device resume 4149 * 4150 * @dev: drm dev pointer 4151 * @fbcon : notify the fbdev of resume 4152 * 4153 * Bring the hw back to operating state (all asics). 4154 * Returns 0 for success or an error on failure. 4155 * Called at driver resume. 4156 */ 4157 int amdgpu_device_resume(struct drm_device *dev, bool fbcon) 4158 { 4159 struct amdgpu_device *adev = drm_to_adev(dev); 4160 int r = 0; 4161 4162 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) 4163 return 0; 4164 4165 if (adev->in_s0ix) 4166 amdgpu_dpm_gfx_state_change(adev, sGpuChangeState_D0Entry); 4167 4168 /* post card */ 4169 if (amdgpu_device_need_post(adev)) { 4170 r = amdgpu_device_asic_init(adev); 4171 if (r) 4172 dev_err(adev->dev, "amdgpu asic init failed\n"); 4173 } 4174 4175 r = amdgpu_device_ip_resume(adev); 4176 if (r) { 4177 dev_err(adev->dev, "amdgpu_device_ip_resume failed (%d).\n", r); 4178 return r; 4179 } 4180 amdgpu_fence_driver_hw_init(adev); 4181 4182 r = amdgpu_device_ip_late_init(adev); 4183 if (r) 4184 return r; 4185 4186 queue_delayed_work(system_wq, &adev->delayed_init_work, 4187 msecs_to_jiffies(AMDGPU_RESUME_MS)); 4188 4189 if (!adev->in_s0ix) { 4190 r = amdgpu_amdkfd_resume(adev, adev->in_runpm); 4191 if (r) 4192 return r; 4193 } 4194 4195 /* Make sure IB tests flushed */ 4196 flush_delayed_work(&adev->delayed_init_work); 4197 4198 if (fbcon) 4199 drm_fb_helper_set_suspend_unlocked(adev_to_drm(adev)->fb_helper, false); 4200 4201 drm_kms_helper_poll_enable(dev); 4202 4203 amdgpu_ras_resume(adev); 4204 4205 /* 4206 * Most of the connector probing functions try to acquire runtime pm 4207 * refs to ensure that the GPU is powered on when connector polling is 4208 * performed. Since we're calling this from a runtime PM callback, 4209 * trying to acquire rpm refs will cause us to deadlock. 4210 * 4211 * Since we're guaranteed to be holding the rpm lock, it's safe to 4212 * temporarily disable the rpm helpers so this doesn't deadlock us. 4213 */ 4214 #ifdef CONFIG_PM 4215 dev->dev->power.disable_depth++; 4216 #endif 4217 if (!amdgpu_device_has_dc_support(adev)) 4218 drm_helper_hpd_irq_event(dev); 4219 else 4220 drm_kms_helper_hotplug_event(dev); 4221 #ifdef CONFIG_PM 4222 dev->dev->power.disable_depth--; 4223 #endif 4224 adev->in_suspend = false; 4225 4226 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DEV_D0)) 4227 DRM_WARN("smart shift update failed\n"); 4228 4229 return 0; 4230 } 4231 4232 /** 4233 * amdgpu_device_ip_check_soft_reset - did soft reset succeed 4234 * 4235 * @adev: amdgpu_device pointer 4236 * 4237 * The list of all the hardware IPs that make up the asic is walked and 4238 * the check_soft_reset callbacks are run. check_soft_reset determines 4239 * if the asic is still hung or not. 4240 * Returns true if any of the IPs are still in a hung state, false if not. 4241 */ 4242 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev) 4243 { 4244 int i; 4245 bool asic_hang = false; 4246 4247 if (amdgpu_sriov_vf(adev)) 4248 return true; 4249 4250 if (amdgpu_asic_need_full_reset(adev)) 4251 return true; 4252 4253 for (i = 0; i < adev->num_ip_blocks; i++) { 4254 if (!adev->ip_blocks[i].status.valid) 4255 continue; 4256 if (adev->ip_blocks[i].version->funcs->check_soft_reset) 4257 adev->ip_blocks[i].status.hang = 4258 adev->ip_blocks[i].version->funcs->check_soft_reset(adev); 4259 if (adev->ip_blocks[i].status.hang) { 4260 dev_info(adev->dev, "IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name); 4261 asic_hang = true; 4262 } 4263 } 4264 return asic_hang; 4265 } 4266 4267 /** 4268 * amdgpu_device_ip_pre_soft_reset - prepare for soft reset 4269 * 4270 * @adev: amdgpu_device pointer 4271 * 4272 * The list of all the hardware IPs that make up the asic is walked and the 4273 * pre_soft_reset callbacks are run if the block is hung. pre_soft_reset 4274 * handles any IP specific hardware or software state changes that are 4275 * necessary for a soft reset to succeed. 4276 * Returns 0 on success, negative error code on failure. 4277 */ 4278 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev) 4279 { 4280 int i, r = 0; 4281 4282 for (i = 0; i < adev->num_ip_blocks; i++) { 4283 if (!adev->ip_blocks[i].status.valid) 4284 continue; 4285 if (adev->ip_blocks[i].status.hang && 4286 adev->ip_blocks[i].version->funcs->pre_soft_reset) { 4287 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev); 4288 if (r) 4289 return r; 4290 } 4291 } 4292 4293 return 0; 4294 } 4295 4296 /** 4297 * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed 4298 * 4299 * @adev: amdgpu_device pointer 4300 * 4301 * Some hardware IPs cannot be soft reset. If they are hung, a full gpu 4302 * reset is necessary to recover. 4303 * Returns true if a full asic reset is required, false if not. 4304 */ 4305 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev) 4306 { 4307 int i; 4308 4309 if (amdgpu_asic_need_full_reset(adev)) 4310 return true; 4311 4312 for (i = 0; i < adev->num_ip_blocks; i++) { 4313 if (!adev->ip_blocks[i].status.valid) 4314 continue; 4315 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) || 4316 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) || 4317 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) || 4318 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) || 4319 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) { 4320 if (adev->ip_blocks[i].status.hang) { 4321 dev_info(adev->dev, "Some block need full reset!\n"); 4322 return true; 4323 } 4324 } 4325 } 4326 return false; 4327 } 4328 4329 /** 4330 * amdgpu_device_ip_soft_reset - do a soft reset 4331 * 4332 * @adev: amdgpu_device pointer 4333 * 4334 * The list of all the hardware IPs that make up the asic is walked and the 4335 * soft_reset callbacks are run if the block is hung. soft_reset handles any 4336 * IP specific hardware or software state changes that are necessary to soft 4337 * reset the IP. 4338 * Returns 0 on success, negative error code on failure. 4339 */ 4340 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev) 4341 { 4342 int i, r = 0; 4343 4344 for (i = 0; i < adev->num_ip_blocks; i++) { 4345 if (!adev->ip_blocks[i].status.valid) 4346 continue; 4347 if (adev->ip_blocks[i].status.hang && 4348 adev->ip_blocks[i].version->funcs->soft_reset) { 4349 r = adev->ip_blocks[i].version->funcs->soft_reset(adev); 4350 if (r) 4351 return r; 4352 } 4353 } 4354 4355 return 0; 4356 } 4357 4358 /** 4359 * amdgpu_device_ip_post_soft_reset - clean up from soft reset 4360 * 4361 * @adev: amdgpu_device pointer 4362 * 4363 * The list of all the hardware IPs that make up the asic is walked and the 4364 * post_soft_reset callbacks are run if the asic was hung. post_soft_reset 4365 * handles any IP specific hardware or software state changes that are 4366 * necessary after the IP has been soft reset. 4367 * Returns 0 on success, negative error code on failure. 4368 */ 4369 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev) 4370 { 4371 int i, r = 0; 4372 4373 for (i = 0; i < adev->num_ip_blocks; i++) { 4374 if (!adev->ip_blocks[i].status.valid) 4375 continue; 4376 if (adev->ip_blocks[i].status.hang && 4377 adev->ip_blocks[i].version->funcs->post_soft_reset) 4378 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev); 4379 if (r) 4380 return r; 4381 } 4382 4383 return 0; 4384 } 4385 4386 /** 4387 * amdgpu_device_recover_vram - Recover some VRAM contents 4388 * 4389 * @adev: amdgpu_device pointer 4390 * 4391 * Restores the contents of VRAM buffers from the shadows in GTT. Used to 4392 * restore things like GPUVM page tables after a GPU reset where 4393 * the contents of VRAM might be lost. 4394 * 4395 * Returns: 4396 * 0 on success, negative error code on failure. 4397 */ 4398 static int amdgpu_device_recover_vram(struct amdgpu_device *adev) 4399 { 4400 struct dma_fence *fence = NULL, *next = NULL; 4401 struct amdgpu_bo *shadow; 4402 struct amdgpu_bo_vm *vmbo; 4403 long r = 1, tmo; 4404 4405 if (amdgpu_sriov_runtime(adev)) 4406 tmo = msecs_to_jiffies(8000); 4407 else 4408 tmo = msecs_to_jiffies(100); 4409 4410 dev_info(adev->dev, "recover vram bo from shadow start\n"); 4411 mutex_lock(&adev->shadow_list_lock); 4412 list_for_each_entry(vmbo, &adev->shadow_list, shadow_list) { 4413 shadow = &vmbo->bo; 4414 /* No need to recover an evicted BO */ 4415 if (shadow->tbo.resource->mem_type != TTM_PL_TT || 4416 shadow->tbo.resource->start == AMDGPU_BO_INVALID_OFFSET || 4417 shadow->parent->tbo.resource->mem_type != TTM_PL_VRAM) 4418 continue; 4419 4420 r = amdgpu_bo_restore_shadow(shadow, &next); 4421 if (r) 4422 break; 4423 4424 if (fence) { 4425 tmo = dma_fence_wait_timeout(fence, false, tmo); 4426 dma_fence_put(fence); 4427 fence = next; 4428 if (tmo == 0) { 4429 r = -ETIMEDOUT; 4430 break; 4431 } else if (tmo < 0) { 4432 r = tmo; 4433 break; 4434 } 4435 } else { 4436 fence = next; 4437 } 4438 } 4439 mutex_unlock(&adev->shadow_list_lock); 4440 4441 if (fence) 4442 tmo = dma_fence_wait_timeout(fence, false, tmo); 4443 dma_fence_put(fence); 4444 4445 if (r < 0 || tmo <= 0) { 4446 dev_err(adev->dev, "recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo); 4447 return -EIO; 4448 } 4449 4450 dev_info(adev->dev, "recover vram bo from shadow done\n"); 4451 return 0; 4452 } 4453 4454 4455 /** 4456 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf 4457 * 4458 * @adev: amdgpu_device pointer 4459 * @from_hypervisor: request from hypervisor 4460 * 4461 * do VF FLR and reinitialize Asic 4462 * return 0 means succeeded otherwise failed 4463 */ 4464 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev, 4465 bool from_hypervisor) 4466 { 4467 int r; 4468 struct amdgpu_hive_info *hive = NULL; 4469 int retry_limit = 0; 4470 4471 retry: 4472 amdgpu_amdkfd_pre_reset(adev); 4473 4474 amdgpu_amdkfd_pre_reset(adev); 4475 4476 if (from_hypervisor) 4477 r = amdgpu_virt_request_full_gpu(adev, true); 4478 else 4479 r = amdgpu_virt_reset_gpu(adev); 4480 if (r) 4481 return r; 4482 4483 /* Resume IP prior to SMC */ 4484 r = amdgpu_device_ip_reinit_early_sriov(adev); 4485 if (r) 4486 goto error; 4487 4488 amdgpu_virt_init_data_exchange(adev); 4489 4490 r = amdgpu_device_fw_loading(adev); 4491 if (r) 4492 return r; 4493 4494 /* now we are okay to resume SMC/CP/SDMA */ 4495 r = amdgpu_device_ip_reinit_late_sriov(adev); 4496 if (r) 4497 goto error; 4498 4499 hive = amdgpu_get_xgmi_hive(adev); 4500 /* Update PSP FW topology after reset */ 4501 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) 4502 r = amdgpu_xgmi_update_topology(hive, adev); 4503 4504 if (hive) 4505 amdgpu_put_xgmi_hive(hive); 4506 4507 if (!r) { 4508 amdgpu_irq_gpu_reset_resume_helper(adev); 4509 r = amdgpu_ib_ring_tests(adev); 4510 amdgpu_amdkfd_post_reset(adev); 4511 } 4512 4513 error: 4514 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) { 4515 amdgpu_inc_vram_lost(adev); 4516 r = amdgpu_device_recover_vram(adev); 4517 } 4518 amdgpu_virt_release_full_gpu(adev, true); 4519 4520 if (AMDGPU_RETRY_SRIOV_RESET(r)) { 4521 if (retry_limit < AMDGPU_MAX_RETRY_LIMIT) { 4522 retry_limit++; 4523 goto retry; 4524 } else 4525 DRM_ERROR("GPU reset retry is beyond the retry limit\n"); 4526 } 4527 4528 return r; 4529 } 4530 4531 /** 4532 * amdgpu_device_has_job_running - check if there is any job in mirror list 4533 * 4534 * @adev: amdgpu_device pointer 4535 * 4536 * check if there is any job in mirror list 4537 */ 4538 bool amdgpu_device_has_job_running(struct amdgpu_device *adev) 4539 { 4540 int i; 4541 struct drm_sched_job *job; 4542 4543 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 4544 struct amdgpu_ring *ring = adev->rings[i]; 4545 4546 if (!ring || !ring->sched.thread) 4547 continue; 4548 4549 spin_lock(&ring->sched.job_list_lock); 4550 job = list_first_entry_or_null(&ring->sched.pending_list, 4551 struct drm_sched_job, list); 4552 spin_unlock(&ring->sched.job_list_lock); 4553 if (job) 4554 return true; 4555 } 4556 return false; 4557 } 4558 4559 /** 4560 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery 4561 * 4562 * @adev: amdgpu_device pointer 4563 * 4564 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover 4565 * a hung GPU. 4566 */ 4567 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev) 4568 { 4569 if (!amdgpu_device_ip_check_soft_reset(adev)) { 4570 dev_info(adev->dev, "Timeout, but no hardware hang detected.\n"); 4571 return false; 4572 } 4573 4574 if (amdgpu_gpu_recovery == 0) 4575 goto disabled; 4576 4577 if (amdgpu_sriov_vf(adev)) 4578 return true; 4579 4580 if (amdgpu_gpu_recovery == -1) { 4581 switch (adev->asic_type) { 4582 #ifdef CONFIG_DRM_AMDGPU_SI 4583 case CHIP_VERDE: 4584 case CHIP_TAHITI: 4585 case CHIP_PITCAIRN: 4586 case CHIP_OLAND: 4587 case CHIP_HAINAN: 4588 #endif 4589 #ifdef CONFIG_DRM_AMDGPU_CIK 4590 case CHIP_KAVERI: 4591 case CHIP_KABINI: 4592 case CHIP_MULLINS: 4593 #endif 4594 case CHIP_CARRIZO: 4595 case CHIP_STONEY: 4596 case CHIP_CYAN_SKILLFISH: 4597 goto disabled; 4598 default: 4599 break; 4600 } 4601 } 4602 4603 return true; 4604 4605 disabled: 4606 dev_info(adev->dev, "GPU recovery disabled.\n"); 4607 return false; 4608 } 4609 4610 int amdgpu_device_mode1_reset(struct amdgpu_device *adev) 4611 { 4612 u32 i; 4613 int ret = 0; 4614 4615 amdgpu_atombios_scratch_regs_engine_hung(adev, true); 4616 4617 dev_info(adev->dev, "GPU mode1 reset\n"); 4618 4619 /* disable BM */ 4620 pci_clear_master(adev->pdev); 4621 4622 amdgpu_device_cache_pci_state(adev->pdev); 4623 4624 if (amdgpu_dpm_is_mode1_reset_supported(adev)) { 4625 dev_info(adev->dev, "GPU smu mode1 reset\n"); 4626 ret = amdgpu_dpm_mode1_reset(adev); 4627 } else { 4628 dev_info(adev->dev, "GPU psp mode1 reset\n"); 4629 ret = psp_gpu_reset(adev); 4630 } 4631 4632 if (ret) 4633 dev_err(adev->dev, "GPU mode1 reset failed\n"); 4634 4635 amdgpu_device_load_pci_state(adev->pdev); 4636 4637 /* wait for asic to come out of reset */ 4638 for (i = 0; i < adev->usec_timeout; i++) { 4639 u32 memsize = adev->nbio.funcs->get_memsize(adev); 4640 4641 if (memsize != 0xffffffff) 4642 break; 4643 udelay(1); 4644 } 4645 4646 amdgpu_atombios_scratch_regs_engine_hung(adev, false); 4647 return ret; 4648 } 4649 4650 int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev, 4651 struct amdgpu_reset_context *reset_context) 4652 { 4653 int i, r = 0; 4654 struct amdgpu_job *job = NULL; 4655 bool need_full_reset = 4656 test_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags); 4657 4658 if (reset_context->reset_req_dev == adev) 4659 job = reset_context->job; 4660 4661 if (amdgpu_sriov_vf(adev)) { 4662 /* stop the data exchange thread */ 4663 amdgpu_virt_fini_data_exchange(adev); 4664 } 4665 4666 /* block all schedulers and reset given job's ring */ 4667 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 4668 struct amdgpu_ring *ring = adev->rings[i]; 4669 4670 if (!ring || !ring->sched.thread) 4671 continue; 4672 4673 /*clear job fence from fence drv to avoid force_completion 4674 *leave NULL and vm flush fence in fence drv */ 4675 amdgpu_fence_driver_clear_job_fences(ring); 4676 4677 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */ 4678 amdgpu_fence_driver_force_completion(ring); 4679 } 4680 4681 if (job && job->vm) 4682 drm_sched_increase_karma(&job->base); 4683 4684 r = amdgpu_reset_prepare_hwcontext(adev, reset_context); 4685 /* If reset handler not implemented, continue; otherwise return */ 4686 if (r == -ENOSYS) 4687 r = 0; 4688 else 4689 return r; 4690 4691 /* Don't suspend on bare metal if we are not going to HW reset the ASIC */ 4692 if (!amdgpu_sriov_vf(adev)) { 4693 4694 if (!need_full_reset) 4695 need_full_reset = amdgpu_device_ip_need_full_reset(adev); 4696 4697 if (!need_full_reset) { 4698 amdgpu_device_ip_pre_soft_reset(adev); 4699 r = amdgpu_device_ip_soft_reset(adev); 4700 amdgpu_device_ip_post_soft_reset(adev); 4701 if (r || amdgpu_device_ip_check_soft_reset(adev)) { 4702 dev_info(adev->dev, "soft reset failed, will fallback to full reset!\n"); 4703 need_full_reset = true; 4704 } 4705 } 4706 4707 if (need_full_reset) 4708 r = amdgpu_device_ip_suspend(adev); 4709 if (need_full_reset) 4710 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags); 4711 else 4712 clear_bit(AMDGPU_NEED_FULL_RESET, 4713 &reset_context->flags); 4714 } 4715 4716 return r; 4717 } 4718 4719 static int amdgpu_reset_reg_dumps(struct amdgpu_device *adev) 4720 { 4721 uint32_t reg_value; 4722 int i; 4723 4724 lockdep_assert_held(&adev->reset_domain->sem); 4725 dump_stack(); 4726 4727 for (i = 0; i < adev->num_regs; i++) { 4728 reg_value = RREG32(adev->reset_dump_reg_list[i]); 4729 trace_amdgpu_reset_reg_dumps(adev->reset_dump_reg_list[i], reg_value); 4730 } 4731 4732 return 0; 4733 } 4734 4735 int amdgpu_do_asic_reset(struct list_head *device_list_handle, 4736 struct amdgpu_reset_context *reset_context) 4737 { 4738 struct amdgpu_device *tmp_adev = NULL; 4739 bool need_full_reset, skip_hw_reset, vram_lost = false; 4740 int r = 0; 4741 4742 /* Try reset handler method first */ 4743 tmp_adev = list_first_entry(device_list_handle, struct amdgpu_device, 4744 reset_list); 4745 amdgpu_reset_reg_dumps(tmp_adev); 4746 r = amdgpu_reset_perform_reset(tmp_adev, reset_context); 4747 /* If reset handler not implemented, continue; otherwise return */ 4748 if (r == -ENOSYS) 4749 r = 0; 4750 else 4751 return r; 4752 4753 /* Reset handler not implemented, use the default method */ 4754 need_full_reset = 4755 test_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags); 4756 skip_hw_reset = test_bit(AMDGPU_SKIP_HW_RESET, &reset_context->flags); 4757 4758 /* 4759 * ASIC reset has to be done on all XGMI hive nodes ASAP 4760 * to allow proper links negotiation in FW (within 1 sec) 4761 */ 4762 if (!skip_hw_reset && need_full_reset) { 4763 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 4764 /* For XGMI run all resets in parallel to speed up the process */ 4765 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) { 4766 tmp_adev->gmc.xgmi.pending_reset = false; 4767 if (!queue_work(system_unbound_wq, &tmp_adev->xgmi_reset_work)) 4768 r = -EALREADY; 4769 } else 4770 r = amdgpu_asic_reset(tmp_adev); 4771 4772 if (r) { 4773 dev_err(tmp_adev->dev, "ASIC reset failed with error, %d for drm dev, %s", 4774 r, adev_to_drm(tmp_adev)->unique); 4775 break; 4776 } 4777 } 4778 4779 /* For XGMI wait for all resets to complete before proceed */ 4780 if (!r) { 4781 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 4782 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) { 4783 flush_work(&tmp_adev->xgmi_reset_work); 4784 r = tmp_adev->asic_reset_res; 4785 if (r) 4786 break; 4787 } 4788 } 4789 } 4790 } 4791 4792 if (!r && amdgpu_ras_intr_triggered()) { 4793 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 4794 if (tmp_adev->mmhub.ras && tmp_adev->mmhub.ras->ras_block.hw_ops && 4795 tmp_adev->mmhub.ras->ras_block.hw_ops->reset_ras_error_count) 4796 tmp_adev->mmhub.ras->ras_block.hw_ops->reset_ras_error_count(tmp_adev); 4797 } 4798 4799 amdgpu_ras_intr_cleared(); 4800 } 4801 4802 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 4803 if (need_full_reset) { 4804 /* post card */ 4805 r = amdgpu_device_asic_init(tmp_adev); 4806 if (r) { 4807 dev_warn(tmp_adev->dev, "asic atom init failed!"); 4808 } else { 4809 dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n"); 4810 r = amdgpu_amdkfd_resume_iommu(tmp_adev); 4811 if (r) 4812 goto out; 4813 4814 r = amdgpu_device_ip_resume_phase1(tmp_adev); 4815 if (r) 4816 goto out; 4817 4818 vram_lost = amdgpu_device_check_vram_lost(tmp_adev); 4819 if (vram_lost) { 4820 DRM_INFO("VRAM is lost due to GPU reset!\n"); 4821 amdgpu_inc_vram_lost(tmp_adev); 4822 } 4823 4824 r = amdgpu_device_fw_loading(tmp_adev); 4825 if (r) 4826 return r; 4827 4828 r = amdgpu_device_ip_resume_phase2(tmp_adev); 4829 if (r) 4830 goto out; 4831 4832 if (vram_lost) 4833 amdgpu_device_fill_reset_magic(tmp_adev); 4834 4835 /* 4836 * Add this ASIC as tracked as reset was already 4837 * complete successfully. 4838 */ 4839 amdgpu_register_gpu_instance(tmp_adev); 4840 4841 if (!reset_context->hive && 4842 tmp_adev->gmc.xgmi.num_physical_nodes > 1) 4843 amdgpu_xgmi_add_device(tmp_adev); 4844 4845 r = amdgpu_device_ip_late_init(tmp_adev); 4846 if (r) 4847 goto out; 4848 4849 drm_fb_helper_set_suspend_unlocked(adev_to_drm(tmp_adev)->fb_helper, false); 4850 4851 /* 4852 * The GPU enters bad state once faulty pages 4853 * by ECC has reached the threshold, and ras 4854 * recovery is scheduled next. So add one check 4855 * here to break recovery if it indeed exceeds 4856 * bad page threshold, and remind user to 4857 * retire this GPU or setting one bigger 4858 * bad_page_threshold value to fix this once 4859 * probing driver again. 4860 */ 4861 if (!amdgpu_ras_eeprom_check_err_threshold(tmp_adev)) { 4862 /* must succeed. */ 4863 amdgpu_ras_resume(tmp_adev); 4864 } else { 4865 r = -EINVAL; 4866 goto out; 4867 } 4868 4869 /* Update PSP FW topology after reset */ 4870 if (reset_context->hive && 4871 tmp_adev->gmc.xgmi.num_physical_nodes > 1) 4872 r = amdgpu_xgmi_update_topology( 4873 reset_context->hive, tmp_adev); 4874 } 4875 } 4876 4877 out: 4878 if (!r) { 4879 amdgpu_irq_gpu_reset_resume_helper(tmp_adev); 4880 r = amdgpu_ib_ring_tests(tmp_adev); 4881 if (r) { 4882 dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r); 4883 need_full_reset = true; 4884 r = -EAGAIN; 4885 goto end; 4886 } 4887 } 4888 4889 if (!r) 4890 r = amdgpu_device_recover_vram(tmp_adev); 4891 else 4892 tmp_adev->asic_reset_res = r; 4893 } 4894 4895 end: 4896 if (need_full_reset) 4897 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags); 4898 else 4899 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags); 4900 return r; 4901 } 4902 4903 static void amdgpu_device_set_mp1_state(struct amdgpu_device *adev) 4904 { 4905 4906 switch (amdgpu_asic_reset_method(adev)) { 4907 case AMD_RESET_METHOD_MODE1: 4908 adev->mp1_state = PP_MP1_STATE_SHUTDOWN; 4909 break; 4910 case AMD_RESET_METHOD_MODE2: 4911 adev->mp1_state = PP_MP1_STATE_RESET; 4912 break; 4913 default: 4914 adev->mp1_state = PP_MP1_STATE_NONE; 4915 break; 4916 } 4917 } 4918 4919 static void amdgpu_device_unset_mp1_state(struct amdgpu_device *adev) 4920 { 4921 amdgpu_vf_error_trans_all(adev); 4922 adev->mp1_state = PP_MP1_STATE_NONE; 4923 } 4924 4925 static void amdgpu_device_resume_display_audio(struct amdgpu_device *adev) 4926 { 4927 struct pci_dev *p = NULL; 4928 4929 p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus), 4930 adev->pdev->bus->number, 1); 4931 if (p) { 4932 pm_runtime_enable(&(p->dev)); 4933 pm_runtime_resume(&(p->dev)); 4934 } 4935 } 4936 4937 static int amdgpu_device_suspend_display_audio(struct amdgpu_device *adev) 4938 { 4939 enum amd_reset_method reset_method; 4940 struct pci_dev *p = NULL; 4941 u64 expires; 4942 4943 /* 4944 * For now, only BACO and mode1 reset are confirmed 4945 * to suffer the audio issue without proper suspended. 4946 */ 4947 reset_method = amdgpu_asic_reset_method(adev); 4948 if ((reset_method != AMD_RESET_METHOD_BACO) && 4949 (reset_method != AMD_RESET_METHOD_MODE1)) 4950 return -EINVAL; 4951 4952 p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus), 4953 adev->pdev->bus->number, 1); 4954 if (!p) 4955 return -ENODEV; 4956 4957 expires = pm_runtime_autosuspend_expiration(&(p->dev)); 4958 if (!expires) 4959 /* 4960 * If we cannot get the audio device autosuspend delay, 4961 * a fixed 4S interval will be used. Considering 3S is 4962 * the audio controller default autosuspend delay setting. 4963 * 4S used here is guaranteed to cover that. 4964 */ 4965 expires = ktime_get_mono_fast_ns() + NSEC_PER_SEC * 4ULL; 4966 4967 while (!pm_runtime_status_suspended(&(p->dev))) { 4968 if (!pm_runtime_suspend(&(p->dev))) 4969 break; 4970 4971 if (expires < ktime_get_mono_fast_ns()) { 4972 dev_warn(adev->dev, "failed to suspend display audio\n"); 4973 /* TODO: abort the succeeding gpu reset? */ 4974 return -ETIMEDOUT; 4975 } 4976 } 4977 4978 pm_runtime_disable(&(p->dev)); 4979 4980 return 0; 4981 } 4982 4983 static void amdgpu_device_recheck_guilty_jobs( 4984 struct amdgpu_device *adev, struct list_head *device_list_handle, 4985 struct amdgpu_reset_context *reset_context) 4986 { 4987 int i, r = 0; 4988 4989 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 4990 struct amdgpu_ring *ring = adev->rings[i]; 4991 int ret = 0; 4992 struct drm_sched_job *s_job; 4993 4994 if (!ring || !ring->sched.thread) 4995 continue; 4996 4997 s_job = list_first_entry_or_null(&ring->sched.pending_list, 4998 struct drm_sched_job, list); 4999 if (s_job == NULL) 5000 continue; 5001 5002 /* clear job's guilty and depend the folowing step to decide the real one */ 5003 drm_sched_reset_karma(s_job); 5004 /* for the real bad job, it will be resubmitted twice, adding a dma_fence_get 5005 * to make sure fence is balanced */ 5006 dma_fence_get(s_job->s_fence->parent); 5007 drm_sched_resubmit_jobs_ext(&ring->sched, 1); 5008 5009 ret = dma_fence_wait_timeout(s_job->s_fence->parent, false, ring->sched.timeout); 5010 if (ret == 0) { /* timeout */ 5011 DRM_ERROR("Found the real bad job! ring:%s, job_id:%llx\n", 5012 ring->sched.name, s_job->id); 5013 5014 /* set guilty */ 5015 drm_sched_increase_karma(s_job); 5016 retry: 5017 /* do hw reset */ 5018 if (amdgpu_sriov_vf(adev)) { 5019 amdgpu_virt_fini_data_exchange(adev); 5020 r = amdgpu_device_reset_sriov(adev, false); 5021 if (r) 5022 adev->asic_reset_res = r; 5023 } else { 5024 clear_bit(AMDGPU_SKIP_HW_RESET, 5025 &reset_context->flags); 5026 r = amdgpu_do_asic_reset(device_list_handle, 5027 reset_context); 5028 if (r && r == -EAGAIN) 5029 goto retry; 5030 } 5031 5032 /* 5033 * add reset counter so that the following 5034 * resubmitted job could flush vmid 5035 */ 5036 atomic_inc(&adev->gpu_reset_counter); 5037 continue; 5038 } 5039 5040 /* got the hw fence, signal finished fence */ 5041 atomic_dec(ring->sched.score); 5042 dma_fence_put(s_job->s_fence->parent); 5043 dma_fence_get(&s_job->s_fence->finished); 5044 dma_fence_signal(&s_job->s_fence->finished); 5045 dma_fence_put(&s_job->s_fence->finished); 5046 5047 /* remove node from list and free the job */ 5048 spin_lock(&ring->sched.job_list_lock); 5049 list_del_init(&s_job->list); 5050 spin_unlock(&ring->sched.job_list_lock); 5051 ring->sched.ops->free_job(s_job); 5052 } 5053 } 5054 5055 /** 5056 * amdgpu_device_gpu_recover_imp - reset the asic and recover scheduler 5057 * 5058 * @adev: amdgpu_device pointer 5059 * @job: which job trigger hang 5060 * 5061 * Attempt to reset the GPU if it has hung (all asics). 5062 * Attempt to do soft-reset or full-reset and reinitialize Asic 5063 * Returns 0 for success or an error on failure. 5064 */ 5065 5066 int amdgpu_device_gpu_recover_imp(struct amdgpu_device *adev, 5067 struct amdgpu_job *job) 5068 { 5069 struct list_head device_list, *device_list_handle = NULL; 5070 bool job_signaled = false; 5071 struct amdgpu_hive_info *hive = NULL; 5072 struct amdgpu_device *tmp_adev = NULL; 5073 int i, r = 0; 5074 bool need_emergency_restart = false; 5075 bool audio_suspended = false; 5076 int tmp_vram_lost_counter; 5077 struct amdgpu_reset_context reset_context; 5078 5079 memset(&reset_context, 0, sizeof(reset_context)); 5080 5081 /* 5082 * Special case: RAS triggered and full reset isn't supported 5083 */ 5084 need_emergency_restart = amdgpu_ras_need_emergency_restart(adev); 5085 5086 /* 5087 * Flush RAM to disk so that after reboot 5088 * the user can read log and see why the system rebooted. 5089 */ 5090 if (need_emergency_restart && amdgpu_ras_get_context(adev)->reboot) { 5091 DRM_WARN("Emergency reboot."); 5092 5093 ksys_sync_helper(); 5094 emergency_restart(); 5095 } 5096 5097 dev_info(adev->dev, "GPU %s begin!\n", 5098 need_emergency_restart ? "jobs stop":"reset"); 5099 5100 if (!amdgpu_sriov_vf(adev)) 5101 hive = amdgpu_get_xgmi_hive(adev); 5102 if (hive) 5103 mutex_lock(&hive->hive_lock); 5104 5105 reset_context.method = AMD_RESET_METHOD_NONE; 5106 reset_context.reset_req_dev = adev; 5107 reset_context.job = job; 5108 reset_context.hive = hive; 5109 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags); 5110 5111 /* 5112 * Build list of devices to reset. 5113 * In case we are in XGMI hive mode, resort the device list 5114 * to put adev in the 1st position. 5115 */ 5116 INIT_LIST_HEAD(&device_list); 5117 if (!amdgpu_sriov_vf(adev) && (adev->gmc.xgmi.num_physical_nodes > 1)) { 5118 list_for_each_entry(tmp_adev, &hive->device_list, gmc.xgmi.head) 5119 list_add_tail(&tmp_adev->reset_list, &device_list); 5120 if (!list_is_first(&adev->reset_list, &device_list)) 5121 list_rotate_to_front(&adev->reset_list, &device_list); 5122 device_list_handle = &device_list; 5123 } else { 5124 list_add_tail(&adev->reset_list, &device_list); 5125 device_list_handle = &device_list; 5126 } 5127 5128 /* We need to lock reset domain only once both for XGMI and single device */ 5129 tmp_adev = list_first_entry(device_list_handle, struct amdgpu_device, 5130 reset_list); 5131 amdgpu_device_lock_reset_domain(tmp_adev->reset_domain); 5132 5133 /* block all schedulers and reset given job's ring */ 5134 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 5135 5136 amdgpu_device_set_mp1_state(tmp_adev); 5137 5138 /* 5139 * Try to put the audio codec into suspend state 5140 * before gpu reset started. 5141 * 5142 * Due to the power domain of the graphics device 5143 * is shared with AZ power domain. Without this, 5144 * we may change the audio hardware from behind 5145 * the audio driver's back. That will trigger 5146 * some audio codec errors. 5147 */ 5148 if (!amdgpu_device_suspend_display_audio(tmp_adev)) 5149 audio_suspended = true; 5150 5151 amdgpu_ras_set_error_query_ready(tmp_adev, false); 5152 5153 cancel_delayed_work_sync(&tmp_adev->delayed_init_work); 5154 5155 if (!amdgpu_sriov_vf(tmp_adev)) 5156 amdgpu_amdkfd_pre_reset(tmp_adev); 5157 5158 /* 5159 * Mark these ASICs to be reseted as untracked first 5160 * And add them back after reset completed 5161 */ 5162 amdgpu_unregister_gpu_instance(tmp_adev); 5163 5164 drm_fb_helper_set_suspend_unlocked(adev_to_drm(adev)->fb_helper, true); 5165 5166 /* disable ras on ALL IPs */ 5167 if (!need_emergency_restart && 5168 amdgpu_device_ip_need_full_reset(tmp_adev)) 5169 amdgpu_ras_suspend(tmp_adev); 5170 5171 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 5172 struct amdgpu_ring *ring = tmp_adev->rings[i]; 5173 5174 if (!ring || !ring->sched.thread) 5175 continue; 5176 5177 drm_sched_stop(&ring->sched, job ? &job->base : NULL); 5178 5179 if (need_emergency_restart) 5180 amdgpu_job_stop_all_jobs_on_sched(&ring->sched); 5181 } 5182 atomic_inc(&tmp_adev->gpu_reset_counter); 5183 } 5184 5185 if (need_emergency_restart) 5186 goto skip_sched_resume; 5187 5188 /* 5189 * Must check guilty signal here since after this point all old 5190 * HW fences are force signaled. 5191 * 5192 * job->base holds a reference to parent fence 5193 */ 5194 if (job && job->base.s_fence->parent && 5195 dma_fence_is_signaled(job->base.s_fence->parent)) { 5196 job_signaled = true; 5197 dev_info(adev->dev, "Guilty job already signaled, skipping HW reset"); 5198 goto skip_hw_reset; 5199 } 5200 5201 retry: /* Rest of adevs pre asic reset from XGMI hive. */ 5202 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 5203 r = amdgpu_device_pre_asic_reset(tmp_adev, &reset_context); 5204 /*TODO Should we stop ?*/ 5205 if (r) { 5206 dev_err(tmp_adev->dev, "GPU pre asic reset failed with err, %d for drm dev, %s ", 5207 r, adev_to_drm(tmp_adev)->unique); 5208 tmp_adev->asic_reset_res = r; 5209 } 5210 } 5211 5212 tmp_vram_lost_counter = atomic_read(&((adev)->vram_lost_counter)); 5213 /* Actual ASIC resets if needed.*/ 5214 /* Host driver will handle XGMI hive reset for SRIOV */ 5215 if (amdgpu_sriov_vf(adev)) { 5216 r = amdgpu_device_reset_sriov(adev, job ? false : true); 5217 if (r) 5218 adev->asic_reset_res = r; 5219 } else { 5220 r = amdgpu_do_asic_reset(device_list_handle, &reset_context); 5221 if (r && r == -EAGAIN) 5222 goto retry; 5223 } 5224 5225 skip_hw_reset: 5226 5227 /* Post ASIC reset for all devs .*/ 5228 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 5229 5230 /* 5231 * Sometimes a later bad compute job can block a good gfx job as gfx 5232 * and compute ring share internal GC HW mutually. We add an additional 5233 * guilty jobs recheck step to find the real guilty job, it synchronously 5234 * submits and pends for the first job being signaled. If it gets timeout, 5235 * we identify it as a real guilty job. 5236 */ 5237 if (amdgpu_gpu_recovery == 2 && 5238 !(tmp_vram_lost_counter < atomic_read(&adev->vram_lost_counter))) 5239 amdgpu_device_recheck_guilty_jobs( 5240 tmp_adev, device_list_handle, &reset_context); 5241 5242 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 5243 struct amdgpu_ring *ring = tmp_adev->rings[i]; 5244 5245 if (!ring || !ring->sched.thread) 5246 continue; 5247 5248 /* No point to resubmit jobs if we didn't HW reset*/ 5249 if (!tmp_adev->asic_reset_res && !job_signaled) 5250 drm_sched_resubmit_jobs(&ring->sched); 5251 5252 drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res); 5253 } 5254 5255 if (!drm_drv_uses_atomic_modeset(adev_to_drm(tmp_adev)) && !job_signaled) { 5256 drm_helper_resume_force_mode(adev_to_drm(tmp_adev)); 5257 } 5258 5259 if (tmp_adev->asic_reset_res) 5260 r = tmp_adev->asic_reset_res; 5261 5262 tmp_adev->asic_reset_res = 0; 5263 5264 if (r) { 5265 /* bad news, how to tell it to userspace ? */ 5266 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&tmp_adev->gpu_reset_counter)); 5267 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r); 5268 } else { 5269 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&tmp_adev->gpu_reset_counter)); 5270 if (amdgpu_acpi_smart_shift_update(adev_to_drm(tmp_adev), AMDGPU_SS_DEV_D0)) 5271 DRM_WARN("smart shift update failed\n"); 5272 } 5273 } 5274 5275 skip_sched_resume: 5276 list_for_each_entry(tmp_adev, device_list_handle, reset_list) { 5277 /* unlock kfd: SRIOV would do it separately */ 5278 if (!need_emergency_restart && !amdgpu_sriov_vf(tmp_adev)) 5279 amdgpu_amdkfd_post_reset(tmp_adev); 5280 5281 /* kfd_post_reset will do nothing if kfd device is not initialized, 5282 * need to bring up kfd here if it's not be initialized before 5283 */ 5284 if (!adev->kfd.init_complete) 5285 amdgpu_amdkfd_device_init(adev); 5286 5287 if (audio_suspended) 5288 amdgpu_device_resume_display_audio(tmp_adev); 5289 5290 amdgpu_device_unset_mp1_state(tmp_adev); 5291 } 5292 5293 tmp_adev = list_first_entry(device_list_handle, struct amdgpu_device, 5294 reset_list); 5295 amdgpu_device_unlock_reset_domain(tmp_adev->reset_domain); 5296 5297 if (hive) { 5298 mutex_unlock(&hive->hive_lock); 5299 amdgpu_put_xgmi_hive(hive); 5300 } 5301 5302 if (r) 5303 dev_info(adev->dev, "GPU reset end with ret = %d\n", r); 5304 return r; 5305 } 5306 5307 struct amdgpu_recover_work_struct { 5308 struct work_struct base; 5309 struct amdgpu_device *adev; 5310 struct amdgpu_job *job; 5311 int ret; 5312 }; 5313 5314 static void amdgpu_device_queue_gpu_recover_work(struct work_struct *work) 5315 { 5316 struct amdgpu_recover_work_struct *recover_work = container_of(work, struct amdgpu_recover_work_struct, base); 5317 5318 recover_work->ret = amdgpu_device_gpu_recover_imp(recover_work->adev, recover_work->job); 5319 } 5320 /* 5321 * Serialize gpu recover into reset domain single threaded wq 5322 */ 5323 int amdgpu_device_gpu_recover(struct amdgpu_device *adev, 5324 struct amdgpu_job *job) 5325 { 5326 struct amdgpu_recover_work_struct work = {.adev = adev, .job = job}; 5327 5328 INIT_WORK(&work.base, amdgpu_device_queue_gpu_recover_work); 5329 5330 if (!amdgpu_reset_domain_schedule(adev->reset_domain, &work.base)) 5331 return -EAGAIN; 5332 5333 flush_work(&work.base); 5334 5335 return work.ret; 5336 } 5337 5338 /** 5339 * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot 5340 * 5341 * @adev: amdgpu_device pointer 5342 * 5343 * Fetchs and stores in the driver the PCIE capabilities (gen speed 5344 * and lanes) of the slot the device is in. Handles APUs and 5345 * virtualized environments where PCIE config space may not be available. 5346 */ 5347 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev) 5348 { 5349 struct pci_dev *pdev; 5350 enum pci_bus_speed speed_cap, platform_speed_cap; 5351 enum pcie_link_width platform_link_width; 5352 5353 if (amdgpu_pcie_gen_cap) 5354 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap; 5355 5356 if (amdgpu_pcie_lane_cap) 5357 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap; 5358 5359 /* covers APUs as well */ 5360 if (pci_is_root_bus(adev->pdev->bus)) { 5361 if (adev->pm.pcie_gen_mask == 0) 5362 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK; 5363 if (adev->pm.pcie_mlw_mask == 0) 5364 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK; 5365 return; 5366 } 5367 5368 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask) 5369 return; 5370 5371 pcie_bandwidth_available(adev->pdev, NULL, 5372 &platform_speed_cap, &platform_link_width); 5373 5374 if (adev->pm.pcie_gen_mask == 0) { 5375 /* asic caps */ 5376 pdev = adev->pdev; 5377 speed_cap = pcie_get_speed_cap(pdev); 5378 if (speed_cap == PCI_SPEED_UNKNOWN) { 5379 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5380 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5381 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3); 5382 } else { 5383 if (speed_cap == PCIE_SPEED_32_0GT) 5384 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5385 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5386 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 | 5387 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4 | 5388 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN5); 5389 else if (speed_cap == PCIE_SPEED_16_0GT) 5390 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5391 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5392 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 | 5393 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4); 5394 else if (speed_cap == PCIE_SPEED_8_0GT) 5395 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5396 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5397 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3); 5398 else if (speed_cap == PCIE_SPEED_5_0GT) 5399 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5400 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2); 5401 else 5402 adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1; 5403 } 5404 /* platform caps */ 5405 if (platform_speed_cap == PCI_SPEED_UNKNOWN) { 5406 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5407 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2); 5408 } else { 5409 if (platform_speed_cap == PCIE_SPEED_32_0GT) 5410 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5411 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5412 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 | 5413 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4 | 5414 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN5); 5415 else if (platform_speed_cap == PCIE_SPEED_16_0GT) 5416 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5417 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5418 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 | 5419 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4); 5420 else if (platform_speed_cap == PCIE_SPEED_8_0GT) 5421 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5422 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 | 5423 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3); 5424 else if (platform_speed_cap == PCIE_SPEED_5_0GT) 5425 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 | 5426 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2); 5427 else 5428 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1; 5429 5430 } 5431 } 5432 if (adev->pm.pcie_mlw_mask == 0) { 5433 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) { 5434 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK; 5435 } else { 5436 switch (platform_link_width) { 5437 case PCIE_LNK_X32: 5438 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 | 5439 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 | 5440 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | 5441 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | 5442 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | 5443 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5444 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5445 break; 5446 case PCIE_LNK_X16: 5447 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 | 5448 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | 5449 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | 5450 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | 5451 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5452 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5453 break; 5454 case PCIE_LNK_X12: 5455 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | 5456 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | 5457 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | 5458 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5459 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5460 break; 5461 case PCIE_LNK_X8: 5462 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | 5463 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | 5464 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5465 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5466 break; 5467 case PCIE_LNK_X4: 5468 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | 5469 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5470 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5471 break; 5472 case PCIE_LNK_X2: 5473 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | 5474 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); 5475 break; 5476 case PCIE_LNK_X1: 5477 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1; 5478 break; 5479 default: 5480 break; 5481 } 5482 } 5483 } 5484 } 5485 5486 int amdgpu_device_baco_enter(struct drm_device *dev) 5487 { 5488 struct amdgpu_device *adev = drm_to_adev(dev); 5489 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev); 5490 5491 if (!amdgpu_device_supports_baco(adev_to_drm(adev))) 5492 return -ENOTSUPP; 5493 5494 if (ras && adev->ras_enabled && 5495 adev->nbio.funcs->enable_doorbell_interrupt) 5496 adev->nbio.funcs->enable_doorbell_interrupt(adev, false); 5497 5498 return amdgpu_dpm_baco_enter(adev); 5499 } 5500 5501 int amdgpu_device_baco_exit(struct drm_device *dev) 5502 { 5503 struct amdgpu_device *adev = drm_to_adev(dev); 5504 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev); 5505 int ret = 0; 5506 5507 if (!amdgpu_device_supports_baco(adev_to_drm(adev))) 5508 return -ENOTSUPP; 5509 5510 ret = amdgpu_dpm_baco_exit(adev); 5511 if (ret) 5512 return ret; 5513 5514 if (ras && adev->ras_enabled && 5515 adev->nbio.funcs->enable_doorbell_interrupt) 5516 adev->nbio.funcs->enable_doorbell_interrupt(adev, true); 5517 5518 if (amdgpu_passthrough(adev) && 5519 adev->nbio.funcs->clear_doorbell_interrupt) 5520 adev->nbio.funcs->clear_doorbell_interrupt(adev); 5521 5522 return 0; 5523 } 5524 5525 /** 5526 * amdgpu_pci_error_detected - Called when a PCI error is detected. 5527 * @pdev: PCI device struct 5528 * @state: PCI channel state 5529 * 5530 * Description: Called when a PCI error is detected. 5531 * 5532 * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT. 5533 */ 5534 pci_ers_result_t amdgpu_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) 5535 { 5536 struct drm_device *dev = pci_get_drvdata(pdev); 5537 struct amdgpu_device *adev = drm_to_adev(dev); 5538 int i; 5539 5540 DRM_INFO("PCI error: detected callback, state(%d)!!\n", state); 5541 5542 if (adev->gmc.xgmi.num_physical_nodes > 1) { 5543 DRM_WARN("No support for XGMI hive yet..."); 5544 return PCI_ERS_RESULT_DISCONNECT; 5545 } 5546 5547 adev->pci_channel_state = state; 5548 5549 switch (state) { 5550 case pci_channel_io_normal: 5551 return PCI_ERS_RESULT_CAN_RECOVER; 5552 /* Fatal error, prepare for slot reset */ 5553 case pci_channel_io_frozen: 5554 /* 5555 * Locking adev->reset_domain->sem will prevent any external access 5556 * to GPU during PCI error recovery 5557 */ 5558 amdgpu_device_lock_reset_domain(adev->reset_domain); 5559 amdgpu_device_set_mp1_state(adev); 5560 5561 /* 5562 * Block any work scheduling as we do for regular GPU reset 5563 * for the duration of the recovery 5564 */ 5565 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 5566 struct amdgpu_ring *ring = adev->rings[i]; 5567 5568 if (!ring || !ring->sched.thread) 5569 continue; 5570 5571 drm_sched_stop(&ring->sched, NULL); 5572 } 5573 atomic_inc(&adev->gpu_reset_counter); 5574 return PCI_ERS_RESULT_NEED_RESET; 5575 case pci_channel_io_perm_failure: 5576 /* Permanent error, prepare for device removal */ 5577 return PCI_ERS_RESULT_DISCONNECT; 5578 } 5579 5580 return PCI_ERS_RESULT_NEED_RESET; 5581 } 5582 5583 /** 5584 * amdgpu_pci_mmio_enabled - Enable MMIO and dump debug registers 5585 * @pdev: pointer to PCI device 5586 */ 5587 pci_ers_result_t amdgpu_pci_mmio_enabled(struct pci_dev *pdev) 5588 { 5589 5590 DRM_INFO("PCI error: mmio enabled callback!!\n"); 5591 5592 /* TODO - dump whatever for debugging purposes */ 5593 5594 /* This called only if amdgpu_pci_error_detected returns 5595 * PCI_ERS_RESULT_CAN_RECOVER. Read/write to the device still 5596 * works, no need to reset slot. 5597 */ 5598 5599 return PCI_ERS_RESULT_RECOVERED; 5600 } 5601 5602 /** 5603 * amdgpu_pci_slot_reset - Called when PCI slot has been reset. 5604 * @pdev: PCI device struct 5605 * 5606 * Description: This routine is called by the pci error recovery 5607 * code after the PCI slot has been reset, just before we 5608 * should resume normal operations. 5609 */ 5610 pci_ers_result_t amdgpu_pci_slot_reset(struct pci_dev *pdev) 5611 { 5612 struct drm_device *dev = pci_get_drvdata(pdev); 5613 struct amdgpu_device *adev = drm_to_adev(dev); 5614 int r, i; 5615 struct amdgpu_reset_context reset_context; 5616 u32 memsize; 5617 struct list_head device_list; 5618 5619 DRM_INFO("PCI error: slot reset callback!!\n"); 5620 5621 memset(&reset_context, 0, sizeof(reset_context)); 5622 5623 INIT_LIST_HEAD(&device_list); 5624 list_add_tail(&adev->reset_list, &device_list); 5625 5626 /* wait for asic to come out of reset */ 5627 msleep(500); 5628 5629 /* Restore PCI confspace */ 5630 amdgpu_device_load_pci_state(pdev); 5631 5632 /* confirm ASIC came out of reset */ 5633 for (i = 0; i < adev->usec_timeout; i++) { 5634 memsize = amdgpu_asic_get_config_memsize(adev); 5635 5636 if (memsize != 0xffffffff) 5637 break; 5638 udelay(1); 5639 } 5640 if (memsize == 0xffffffff) { 5641 r = -ETIME; 5642 goto out; 5643 } 5644 5645 reset_context.method = AMD_RESET_METHOD_NONE; 5646 reset_context.reset_req_dev = adev; 5647 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags); 5648 set_bit(AMDGPU_SKIP_HW_RESET, &reset_context.flags); 5649 5650 adev->no_hw_access = true; 5651 r = amdgpu_device_pre_asic_reset(adev, &reset_context); 5652 adev->no_hw_access = false; 5653 if (r) 5654 goto out; 5655 5656 r = amdgpu_do_asic_reset(&device_list, &reset_context); 5657 5658 out: 5659 if (!r) { 5660 if (amdgpu_device_cache_pci_state(adev->pdev)) 5661 pci_restore_state(adev->pdev); 5662 5663 DRM_INFO("PCIe error recovery succeeded\n"); 5664 } else { 5665 DRM_ERROR("PCIe error recovery failed, err:%d", r); 5666 amdgpu_device_unset_mp1_state(adev); 5667 amdgpu_device_unlock_reset_domain(adev->reset_domain); 5668 } 5669 5670 return r ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED; 5671 } 5672 5673 /** 5674 * amdgpu_pci_resume() - resume normal ops after PCI reset 5675 * @pdev: pointer to PCI device 5676 * 5677 * Called when the error recovery driver tells us that its 5678 * OK to resume normal operation. 5679 */ 5680 void amdgpu_pci_resume(struct pci_dev *pdev) 5681 { 5682 struct drm_device *dev = pci_get_drvdata(pdev); 5683 struct amdgpu_device *adev = drm_to_adev(dev); 5684 int i; 5685 5686 5687 DRM_INFO("PCI error: resume callback!!\n"); 5688 5689 /* Only continue execution for the case of pci_channel_io_frozen */ 5690 if (adev->pci_channel_state != pci_channel_io_frozen) 5691 return; 5692 5693 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { 5694 struct amdgpu_ring *ring = adev->rings[i]; 5695 5696 if (!ring || !ring->sched.thread) 5697 continue; 5698 5699 5700 drm_sched_resubmit_jobs(&ring->sched); 5701 drm_sched_start(&ring->sched, true); 5702 } 5703 5704 amdgpu_device_unset_mp1_state(adev); 5705 amdgpu_device_unlock_reset_domain(adev->reset_domain); 5706 } 5707 5708 bool amdgpu_device_cache_pci_state(struct pci_dev *pdev) 5709 { 5710 struct drm_device *dev = pci_get_drvdata(pdev); 5711 struct amdgpu_device *adev = drm_to_adev(dev); 5712 int r; 5713 5714 r = pci_save_state(pdev); 5715 if (!r) { 5716 kfree(adev->pci_state); 5717 5718 adev->pci_state = pci_store_saved_state(pdev); 5719 5720 if (!adev->pci_state) { 5721 DRM_ERROR("Failed to store PCI saved state"); 5722 return false; 5723 } 5724 } else { 5725 DRM_WARN("Failed to save PCI state, err:%d\n", r); 5726 return false; 5727 } 5728 5729 return true; 5730 } 5731 5732 bool amdgpu_device_load_pci_state(struct pci_dev *pdev) 5733 { 5734 struct drm_device *dev = pci_get_drvdata(pdev); 5735 struct amdgpu_device *adev = drm_to_adev(dev); 5736 int r; 5737 5738 if (!adev->pci_state) 5739 return false; 5740 5741 r = pci_load_saved_state(pdev, adev->pci_state); 5742 5743 if (!r) { 5744 pci_restore_state(pdev); 5745 } else { 5746 DRM_WARN("Failed to load PCI state, err:%d\n", r); 5747 return false; 5748 } 5749 5750 return true; 5751 } 5752 5753 void amdgpu_device_flush_hdp(struct amdgpu_device *adev, 5754 struct amdgpu_ring *ring) 5755 { 5756 #ifdef CONFIG_X86_64 5757 if (adev->flags & AMD_IS_APU) 5758 return; 5759 #endif 5760 if (adev->gmc.xgmi.connected_to_cpu) 5761 return; 5762 5763 if (ring && ring->funcs->emit_hdp_flush) 5764 amdgpu_ring_emit_hdp_flush(ring); 5765 else 5766 amdgpu_asic_flush_hdp(adev, ring); 5767 } 5768 5769 void amdgpu_device_invalidate_hdp(struct amdgpu_device *adev, 5770 struct amdgpu_ring *ring) 5771 { 5772 #ifdef CONFIG_X86_64 5773 if (adev->flags & AMD_IS_APU) 5774 return; 5775 #endif 5776 if (adev->gmc.xgmi.connected_to_cpu) 5777 return; 5778 5779 amdgpu_asic_invalidate_hdp(adev, ring); 5780 } 5781 5782 int amdgpu_in_reset(struct amdgpu_device *adev) 5783 { 5784 return atomic_read(&adev->reset_domain->in_gpu_reset); 5785 } 5786 5787 /** 5788 * amdgpu_device_halt() - bring hardware to some kind of halt state 5789 * 5790 * @adev: amdgpu_device pointer 5791 * 5792 * Bring hardware to some kind of halt state so that no one can touch it 5793 * any more. It will help to maintain error context when error occurred. 5794 * Compare to a simple hang, the system will keep stable at least for SSH 5795 * access. Then it should be trivial to inspect the hardware state and 5796 * see what's going on. Implemented as following: 5797 * 5798 * 1. drm_dev_unplug() makes device inaccessible to user space(IOCTLs, etc), 5799 * clears all CPU mappings to device, disallows remappings through page faults 5800 * 2. amdgpu_irq_disable_all() disables all interrupts 5801 * 3. amdgpu_fence_driver_hw_fini() signals all HW fences 5802 * 4. set adev->no_hw_access to avoid potential crashes after setp 5 5803 * 5. amdgpu_device_unmap_mmio() clears all MMIO mappings 5804 * 6. pci_disable_device() and pci_wait_for_pending_transaction() 5805 * flush any in flight DMA operations 5806 */ 5807 void amdgpu_device_halt(struct amdgpu_device *adev) 5808 { 5809 struct pci_dev *pdev = adev->pdev; 5810 struct drm_device *ddev = adev_to_drm(adev); 5811 5812 drm_dev_unplug(ddev); 5813 5814 amdgpu_irq_disable_all(adev); 5815 5816 amdgpu_fence_driver_hw_fini(adev); 5817 5818 adev->no_hw_access = true; 5819 5820 amdgpu_device_unmap_mmio(adev); 5821 5822 pci_disable_device(pdev); 5823 pci_wait_for_pending_transaction(pdev); 5824 } 5825 5826 u32 amdgpu_device_pcie_port_rreg(struct amdgpu_device *adev, 5827 u32 reg) 5828 { 5829 unsigned long flags, address, data; 5830 u32 r; 5831 5832 address = adev->nbio.funcs->get_pcie_port_index_offset(adev); 5833 data = adev->nbio.funcs->get_pcie_port_data_offset(adev); 5834 5835 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 5836 WREG32(address, reg * 4); 5837 (void)RREG32(address); 5838 r = RREG32(data); 5839 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 5840 return r; 5841 } 5842 5843 void amdgpu_device_pcie_port_wreg(struct amdgpu_device *adev, 5844 u32 reg, u32 v) 5845 { 5846 unsigned long flags, address, data; 5847 5848 address = adev->nbio.funcs->get_pcie_port_index_offset(adev); 5849 data = adev->nbio.funcs->get_pcie_port_data_offset(adev); 5850 5851 spin_lock_irqsave(&adev->pcie_idx_lock, flags); 5852 WREG32(address, reg * 4); 5853 (void)RREG32(address); 5854 WREG32(data, v); 5855 (void)RREG32(data); 5856 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags); 5857 } 5858