2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
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>
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_probe_helper.h>
36 #include <drm/amdgpu_drm.h>
37 #include <linux/vgaarb.h>
38 #include <linux/vga_switcheroo.h>
39 #include <linux/efi.h>
41 #include "amdgpu_trace.h"
42 #include "amdgpu_i2c.h"
44 #include "amdgpu_atombios.h"
45 #include "amdgpu_atomfirmware.h"
47 #ifdef CONFIG_DRM_AMDGPU_SI
50 #ifdef CONFIG_DRM_AMDGPU_CIK
56 #include "bif/bif_4_1_d.h"
57 #include <linux/pci.h>
58 #include <linux/firmware.h>
59 #include "amdgpu_vf_error.h"
61 #include "amdgpu_amdkfd.h"
62 #include "amdgpu_pm.h"
64 #include "amdgpu_xgmi.h"
65 #include "amdgpu_ras.h"
66 #include "amdgpu_pmu.h"
67 #include "amdgpu_fru_eeprom.h"
68 #include "amdgpu_reset.h"
70 #include <linux/suspend.h>
71 #include <drm/task_barrier.h>
72 #include <linux/pm_runtime.h>
74 #include <drm/drm_drv.h>
76 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
77 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
78 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
79 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
80 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
81 MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin");
82 MODULE_FIRMWARE("amdgpu/renoir_gpu_info.bin");
83 MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin");
84 MODULE_FIRMWARE("amdgpu/navi14_gpu_info.bin");
85 MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin");
86 MODULE_FIRMWARE("amdgpu/vangogh_gpu_info.bin");
87 MODULE_FIRMWARE("amdgpu/yellow_carp_gpu_info.bin");
89 #define AMDGPU_RESUME_MS 2000
91 const char *amdgpu_asic_name[] = {
133 * DOC: pcie_replay_count
135 * The amdgpu driver provides a sysfs API for reporting the total number
136 * of PCIe replays (NAKs)
137 * The file pcie_replay_count is used for this and returns the total
138 * number of replays as a sum of the NAKs generated and NAKs received
141 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev,
142 struct device_attribute *attr, char *buf)
144 struct drm_device *ddev = dev_get_drvdata(dev);
145 struct amdgpu_device *adev = drm_to_adev(ddev);
146 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
148 return sysfs_emit(buf, "%llu\n", cnt);
151 static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
152 amdgpu_device_get_pcie_replay_count, NULL);
154 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
159 * The amdgpu driver provides a sysfs API for reporting the product name
161 * The file serial_number is used for this and returns the product name
162 * as returned from the FRU.
163 * NOTE: This is only available for certain server cards
166 static ssize_t amdgpu_device_get_product_name(struct device *dev,
167 struct device_attribute *attr, char *buf)
169 struct drm_device *ddev = dev_get_drvdata(dev);
170 struct amdgpu_device *adev = drm_to_adev(ddev);
172 return sysfs_emit(buf, "%s\n", adev->product_name);
175 static DEVICE_ATTR(product_name, S_IRUGO,
176 amdgpu_device_get_product_name, NULL);
179 * DOC: product_number
181 * The amdgpu driver provides a sysfs API for reporting the part number
183 * The file serial_number is used for this and returns the part number
184 * as returned from the FRU.
185 * NOTE: This is only available for certain server cards
188 static ssize_t amdgpu_device_get_product_number(struct device *dev,
189 struct device_attribute *attr, char *buf)
191 struct drm_device *ddev = dev_get_drvdata(dev);
192 struct amdgpu_device *adev = drm_to_adev(ddev);
194 return sysfs_emit(buf, "%s\n", adev->product_number);
197 static DEVICE_ATTR(product_number, S_IRUGO,
198 amdgpu_device_get_product_number, NULL);
203 * The amdgpu driver provides a sysfs API for reporting the serial number
205 * The file serial_number is used for this and returns the serial number
206 * as returned from the FRU.
207 * NOTE: This is only available for certain server cards
210 static ssize_t amdgpu_device_get_serial_number(struct device *dev,
211 struct device_attribute *attr, char *buf)
213 struct drm_device *ddev = dev_get_drvdata(dev);
214 struct amdgpu_device *adev = drm_to_adev(ddev);
216 return sysfs_emit(buf, "%s\n", adev->serial);
219 static DEVICE_ATTR(serial_number, S_IRUGO,
220 amdgpu_device_get_serial_number, NULL);
223 * amdgpu_device_supports_px - Is the device a dGPU with ATPX power control
225 * @dev: drm_device pointer
227 * Returns true if the device is a dGPU with ATPX power control,
228 * otherwise return false.
230 bool amdgpu_device_supports_px(struct drm_device *dev)
232 struct amdgpu_device *adev = drm_to_adev(dev);
234 if ((adev->flags & AMD_IS_PX) && !amdgpu_is_atpx_hybrid())
240 * amdgpu_device_supports_boco - Is the device a dGPU with ACPI power resources
242 * @dev: drm_device pointer
244 * Returns true if the device is a dGPU with ACPI power control,
245 * otherwise return false.
247 bool amdgpu_device_supports_boco(struct drm_device *dev)
249 struct amdgpu_device *adev = drm_to_adev(dev);
252 ((adev->flags & AMD_IS_PX) && amdgpu_is_atpx_hybrid()))
258 * amdgpu_device_supports_baco - Does the device support BACO
260 * @dev: drm_device pointer
262 * Returns true if the device supporte BACO,
263 * otherwise return false.
265 bool amdgpu_device_supports_baco(struct drm_device *dev)
267 struct amdgpu_device *adev = drm_to_adev(dev);
269 return amdgpu_asic_supports_baco(adev);
273 * amdgpu_device_supports_smart_shift - Is the device dGPU with
274 * smart shift support
276 * @dev: drm_device pointer
278 * Returns true if the device is a dGPU with Smart Shift support,
279 * otherwise returns false.
281 bool amdgpu_device_supports_smart_shift(struct drm_device *dev)
283 return (amdgpu_device_supports_boco(dev) &&
284 amdgpu_acpi_is_power_shift_control_supported());
288 * VRAM access helper functions
292 * amdgpu_device_mm_access - access vram by MM_INDEX/MM_DATA
294 * @adev: amdgpu_device pointer
295 * @pos: offset of the buffer in vram
296 * @buf: virtual address of the buffer in system memory
297 * @size: read/write size, sizeof(@buf) must > @size
298 * @write: true - write to vram, otherwise - read from vram
300 void amdgpu_device_mm_access(struct amdgpu_device *adev, loff_t pos,
301 void *buf, size_t size, bool write)
304 uint32_t hi = ~0, tmp = 0;
305 uint32_t *data = buf;
309 if (!drm_dev_enter(adev_to_drm(adev), &idx))
312 BUG_ON(!IS_ALIGNED(pos, 4) || !IS_ALIGNED(size, 4));
314 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
315 for (last = pos + size; pos < last; pos += 4) {
318 WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)pos) | 0x80000000);
320 WREG32_NO_KIQ(mmMM_INDEX_HI, tmp);
324 WREG32_NO_KIQ(mmMM_DATA, *data++);
326 *data++ = RREG32_NO_KIQ(mmMM_DATA);
329 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
334 * amdgpu_device_vram_access - access vram by vram aperature
336 * @adev: amdgpu_device pointer
337 * @pos: offset of the buffer in vram
338 * @buf: virtual address of the buffer in system memory
339 * @size: read/write size, sizeof(@buf) must > @size
340 * @write: true - write to vram, otherwise - read from vram
342 * The return value means how many bytes have been transferred.
344 size_t amdgpu_device_aper_access(struct amdgpu_device *adev, loff_t pos,
345 void *buf, size_t size, bool write)
352 if (!adev->mman.aper_base_kaddr)
355 last = min(pos + size, adev->gmc.visible_vram_size);
357 addr = adev->mman.aper_base_kaddr + pos;
361 memcpy_toio(addr, buf, count);
363 amdgpu_device_flush_hdp(adev, NULL);
365 amdgpu_device_invalidate_hdp(adev, NULL);
367 memcpy_fromio(buf, addr, count);
379 * amdgpu_device_vram_access - read/write a buffer in vram
381 * @adev: amdgpu_device pointer
382 * @pos: offset of the buffer in vram
383 * @buf: virtual address of the buffer in system memory
384 * @size: read/write size, sizeof(@buf) must > @size
385 * @write: true - write to vram, otherwise - read from vram
387 void amdgpu_device_vram_access(struct amdgpu_device *adev, loff_t pos,
388 void *buf, size_t size, bool write)
392 /* try to using vram apreature to access vram first */
393 count = amdgpu_device_aper_access(adev, pos, buf, size, write);
396 /* using MM to access rest vram */
399 amdgpu_device_mm_access(adev, pos, buf, size, write);
404 * register access helper functions.
407 /* Check if hw access should be skipped because of hotplug or device error */
408 bool amdgpu_device_skip_hw_access(struct amdgpu_device *adev)
410 if (adev->no_hw_access)
413 #ifdef CONFIG_LOCKDEP
415 * This is a bit complicated to understand, so worth a comment. What we assert
416 * here is that the GPU reset is not running on another thread in parallel.
418 * For this we trylock the read side of the reset semaphore, if that succeeds
419 * we know that the reset is not running in paralell.
421 * If the trylock fails we assert that we are either already holding the read
422 * side of the lock or are the reset thread itself and hold the write side of
426 if (down_read_trylock(&adev->reset_sem))
427 up_read(&adev->reset_sem);
429 lockdep_assert_held(&adev->reset_sem);
436 * amdgpu_device_rreg - read a memory mapped IO or indirect register
438 * @adev: amdgpu_device pointer
439 * @reg: dword aligned register offset
440 * @acc_flags: access flags which require special behavior
442 * Returns the 32 bit value from the offset specified.
444 uint32_t amdgpu_device_rreg(struct amdgpu_device *adev,
445 uint32_t reg, uint32_t acc_flags)
449 if (amdgpu_device_skip_hw_access(adev))
452 if ((reg * 4) < adev->rmmio_size) {
453 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) &&
454 amdgpu_sriov_runtime(adev) &&
455 down_read_trylock(&adev->reset_sem)) {
456 ret = amdgpu_kiq_rreg(adev, reg);
457 up_read(&adev->reset_sem);
459 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
462 ret = adev->pcie_rreg(adev, reg * 4);
465 trace_amdgpu_device_rreg(adev->pdev->device, reg, ret);
471 * MMIO register read with bytes helper functions
472 * @offset:bytes offset from MMIO start
477 * amdgpu_mm_rreg8 - read a memory mapped IO register
479 * @adev: amdgpu_device pointer
480 * @offset: byte aligned register offset
482 * Returns the 8 bit value from the offset specified.
484 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset)
486 if (amdgpu_device_skip_hw_access(adev))
489 if (offset < adev->rmmio_size)
490 return (readb(adev->rmmio + offset));
495 * MMIO register write with bytes helper functions
496 * @offset:bytes offset from MMIO start
497 * @value: the value want to be written to the register
501 * amdgpu_mm_wreg8 - read a memory mapped IO register
503 * @adev: amdgpu_device pointer
504 * @offset: byte aligned register offset
505 * @value: 8 bit value to write
507 * Writes the value specified to the offset specified.
509 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value)
511 if (amdgpu_device_skip_hw_access(adev))
514 if (offset < adev->rmmio_size)
515 writeb(value, adev->rmmio + offset);
521 * amdgpu_device_wreg - write to a memory mapped IO or indirect register
523 * @adev: amdgpu_device pointer
524 * @reg: dword aligned register offset
525 * @v: 32 bit value to write to the register
526 * @acc_flags: access flags which require special behavior
528 * Writes the value specified to the offset specified.
530 void amdgpu_device_wreg(struct amdgpu_device *adev,
531 uint32_t reg, uint32_t v,
534 if (amdgpu_device_skip_hw_access(adev))
537 if ((reg * 4) < adev->rmmio_size) {
538 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) &&
539 amdgpu_sriov_runtime(adev) &&
540 down_read_trylock(&adev->reset_sem)) {
541 amdgpu_kiq_wreg(adev, reg, v);
542 up_read(&adev->reset_sem);
544 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
547 adev->pcie_wreg(adev, reg * 4, v);
550 trace_amdgpu_device_wreg(adev->pdev->device, reg, v);
554 * amdgpu_mm_wreg_mmio_rlc - write register either with mmio or with RLC path if in range
556 * this function is invoked only the debugfs register access
558 void amdgpu_mm_wreg_mmio_rlc(struct amdgpu_device *adev,
559 uint32_t reg, uint32_t v)
561 if (amdgpu_device_skip_hw_access(adev))
564 if (amdgpu_sriov_fullaccess(adev) &&
565 adev->gfx.rlc.funcs &&
566 adev->gfx.rlc.funcs->is_rlcg_access_range) {
567 if (adev->gfx.rlc.funcs->is_rlcg_access_range(adev, reg))
568 return adev->gfx.rlc.funcs->sriov_wreg(adev, reg, v, 0, 0);
570 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
575 * amdgpu_mm_rdoorbell - read a doorbell dword
577 * @adev: amdgpu_device pointer
578 * @index: doorbell index
580 * Returns the value in the doorbell aperture at the
581 * requested doorbell index (CIK).
583 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
585 if (amdgpu_device_skip_hw_access(adev))
588 if (index < adev->doorbell.num_doorbells) {
589 return readl(adev->doorbell.ptr + index);
591 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
597 * amdgpu_mm_wdoorbell - write a doorbell dword
599 * @adev: amdgpu_device pointer
600 * @index: doorbell index
603 * Writes @v to the doorbell aperture at the
604 * requested doorbell index (CIK).
606 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
608 if (amdgpu_device_skip_hw_access(adev))
611 if (index < adev->doorbell.num_doorbells) {
612 writel(v, adev->doorbell.ptr + index);
614 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
619 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
621 * @adev: amdgpu_device pointer
622 * @index: doorbell index
624 * Returns the value in the doorbell aperture at the
625 * requested doorbell index (VEGA10+).
627 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
629 if (amdgpu_device_skip_hw_access(adev))
632 if (index < adev->doorbell.num_doorbells) {
633 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
635 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
641 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
643 * @adev: amdgpu_device pointer
644 * @index: doorbell index
647 * Writes @v to the doorbell aperture at the
648 * requested doorbell index (VEGA10+).
650 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
652 if (amdgpu_device_skip_hw_access(adev))
655 if (index < adev->doorbell.num_doorbells) {
656 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
658 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
663 * amdgpu_device_indirect_rreg - read an indirect register
665 * @adev: amdgpu_device pointer
666 * @pcie_index: mmio register offset
667 * @pcie_data: mmio register offset
668 * @reg_addr: indirect register address to read from
670 * Returns the value of indirect register @reg_addr
672 u32 amdgpu_device_indirect_rreg(struct amdgpu_device *adev,
673 u32 pcie_index, u32 pcie_data,
678 void __iomem *pcie_index_offset;
679 void __iomem *pcie_data_offset;
681 spin_lock_irqsave(&adev->pcie_idx_lock, flags);
682 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
683 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
685 writel(reg_addr, pcie_index_offset);
686 readl(pcie_index_offset);
687 r = readl(pcie_data_offset);
688 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
694 * amdgpu_device_indirect_rreg64 - read a 64bits indirect register
696 * @adev: amdgpu_device pointer
697 * @pcie_index: mmio register offset
698 * @pcie_data: mmio register offset
699 * @reg_addr: indirect register address to read from
701 * Returns the value of indirect register @reg_addr
703 u64 amdgpu_device_indirect_rreg64(struct amdgpu_device *adev,
704 u32 pcie_index, u32 pcie_data,
709 void __iomem *pcie_index_offset;
710 void __iomem *pcie_data_offset;
712 spin_lock_irqsave(&adev->pcie_idx_lock, flags);
713 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
714 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
716 /* read low 32 bits */
717 writel(reg_addr, pcie_index_offset);
718 readl(pcie_index_offset);
719 r = readl(pcie_data_offset);
720 /* read high 32 bits */
721 writel(reg_addr + 4, pcie_index_offset);
722 readl(pcie_index_offset);
723 r |= ((u64)readl(pcie_data_offset) << 32);
724 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
730 * amdgpu_device_indirect_wreg - write an indirect register address
732 * @adev: amdgpu_device pointer
733 * @pcie_index: mmio register offset
734 * @pcie_data: mmio register offset
735 * @reg_addr: indirect register offset
736 * @reg_data: indirect register data
739 void amdgpu_device_indirect_wreg(struct amdgpu_device *adev,
740 u32 pcie_index, u32 pcie_data,
741 u32 reg_addr, u32 reg_data)
744 void __iomem *pcie_index_offset;
745 void __iomem *pcie_data_offset;
747 spin_lock_irqsave(&adev->pcie_idx_lock, flags);
748 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
749 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
751 writel(reg_addr, pcie_index_offset);
752 readl(pcie_index_offset);
753 writel(reg_data, pcie_data_offset);
754 readl(pcie_data_offset);
755 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
759 * amdgpu_device_indirect_wreg64 - write a 64bits indirect register address
761 * @adev: amdgpu_device pointer
762 * @pcie_index: mmio register offset
763 * @pcie_data: mmio register offset
764 * @reg_addr: indirect register offset
765 * @reg_data: indirect register data
768 void amdgpu_device_indirect_wreg64(struct amdgpu_device *adev,
769 u32 pcie_index, u32 pcie_data,
770 u32 reg_addr, u64 reg_data)
773 void __iomem *pcie_index_offset;
774 void __iomem *pcie_data_offset;
776 spin_lock_irqsave(&adev->pcie_idx_lock, flags);
777 pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
778 pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
780 /* write low 32 bits */
781 writel(reg_addr, pcie_index_offset);
782 readl(pcie_index_offset);
783 writel((u32)(reg_data & 0xffffffffULL), pcie_data_offset);
784 readl(pcie_data_offset);
785 /* write high 32 bits */
786 writel(reg_addr + 4, pcie_index_offset);
787 readl(pcie_index_offset);
788 writel((u32)(reg_data >> 32), pcie_data_offset);
789 readl(pcie_data_offset);
790 spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
794 * amdgpu_invalid_rreg - dummy reg read function
796 * @adev: amdgpu_device pointer
797 * @reg: offset of register
799 * Dummy register read function. Used for register blocks
800 * that certain asics don't have (all asics).
801 * Returns the value in the register.
803 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
805 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
811 * amdgpu_invalid_wreg - dummy reg write function
813 * @adev: amdgpu_device pointer
814 * @reg: offset of register
815 * @v: value to write to the register
817 * Dummy register read function. Used for register blocks
818 * that certain asics don't have (all asics).
820 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
822 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
828 * amdgpu_invalid_rreg64 - dummy 64 bit reg read function
830 * @adev: amdgpu_device pointer
831 * @reg: offset of register
833 * Dummy register read function. Used for register blocks
834 * that certain asics don't have (all asics).
835 * Returns the value in the register.
837 static uint64_t amdgpu_invalid_rreg64(struct amdgpu_device *adev, uint32_t reg)
839 DRM_ERROR("Invalid callback to read 64 bit register 0x%04X\n", reg);
845 * amdgpu_invalid_wreg64 - dummy reg write function
847 * @adev: amdgpu_device pointer
848 * @reg: offset of register
849 * @v: value to write to the register
851 * Dummy register read function. Used for register blocks
852 * that certain asics don't have (all asics).
854 static void amdgpu_invalid_wreg64(struct amdgpu_device *adev, uint32_t reg, uint64_t v)
856 DRM_ERROR("Invalid callback to write 64 bit register 0x%04X with 0x%08llX\n",
862 * amdgpu_block_invalid_rreg - dummy reg read function
864 * @adev: amdgpu_device pointer
865 * @block: offset of instance
866 * @reg: offset of register
868 * Dummy register read function. Used for register blocks
869 * that certain asics don't have (all asics).
870 * Returns the value in the register.
872 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
873 uint32_t block, uint32_t reg)
875 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
882 * amdgpu_block_invalid_wreg - dummy reg write function
884 * @adev: amdgpu_device pointer
885 * @block: offset of instance
886 * @reg: offset of register
887 * @v: value to write to the register
889 * Dummy register read function. Used for register blocks
890 * that certain asics don't have (all asics).
892 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
894 uint32_t reg, uint32_t v)
896 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
902 * amdgpu_device_asic_init - Wrapper for atom asic_init
904 * @adev: amdgpu_device pointer
906 * Does any asic specific work and then calls atom asic init.
908 static int amdgpu_device_asic_init(struct amdgpu_device *adev)
910 amdgpu_asic_pre_asic_init(adev);
912 return amdgpu_atom_asic_init(adev->mode_info.atom_context);
916 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
918 * @adev: amdgpu_device pointer
920 * Allocates a scratch page of VRAM for use by various things in the
923 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
925 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
926 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
927 &adev->vram_scratch.robj,
928 &adev->vram_scratch.gpu_addr,
929 (void **)&adev->vram_scratch.ptr);
933 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
935 * @adev: amdgpu_device pointer
937 * Frees the VRAM scratch page.
939 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
941 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
945 * amdgpu_device_program_register_sequence - program an array of registers.
947 * @adev: amdgpu_device pointer
948 * @registers: pointer to the register array
949 * @array_size: size of the register array
951 * Programs an array or registers with and and or masks.
952 * This is a helper for setting golden registers.
954 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
955 const u32 *registers,
956 const u32 array_size)
958 u32 tmp, reg, and_mask, or_mask;
964 for (i = 0; i < array_size; i +=3) {
965 reg = registers[i + 0];
966 and_mask = registers[i + 1];
967 or_mask = registers[i + 2];
969 if (and_mask == 0xffffffff) {
974 if (adev->family >= AMDGPU_FAMILY_AI)
975 tmp |= (or_mask & and_mask);
984 * amdgpu_device_pci_config_reset - reset the GPU
986 * @adev: amdgpu_device pointer
988 * Resets the GPU using the pci config reset sequence.
989 * Only applicable to asics prior to vega10.
991 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
993 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
997 * amdgpu_device_pci_reset - reset the GPU using generic PCI means
999 * @adev: amdgpu_device pointer
1001 * Resets the GPU using generic pci reset interfaces (FLR, SBR, etc.).
1003 int amdgpu_device_pci_reset(struct amdgpu_device *adev)
1005 return pci_reset_function(adev->pdev);
1009 * GPU doorbell aperture helpers function.
1012 * amdgpu_device_doorbell_init - Init doorbell driver information.
1014 * @adev: amdgpu_device pointer
1016 * Init doorbell driver information (CIK)
1017 * Returns 0 on success, error on failure.
1019 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
1022 /* No doorbell on SI hardware generation */
1023 if (adev->asic_type < CHIP_BONAIRE) {
1024 adev->doorbell.base = 0;
1025 adev->doorbell.size = 0;
1026 adev->doorbell.num_doorbells = 0;
1027 adev->doorbell.ptr = NULL;
1031 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
1034 amdgpu_asic_init_doorbell_index(adev);
1036 /* doorbell bar mapping */
1037 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
1038 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
1040 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
1041 adev->doorbell_index.max_assignment+1);
1042 if (adev->doorbell.num_doorbells == 0)
1045 /* For Vega, reserve and map two pages on doorbell BAR since SDMA
1046 * paging queue doorbell use the second page. The
1047 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the
1048 * doorbells are in the first page. So with paging queue enabled,
1049 * the max num_doorbells should + 1 page (0x400 in dword)
1051 if (adev->asic_type >= CHIP_VEGA10)
1052 adev->doorbell.num_doorbells += 0x400;
1054 adev->doorbell.ptr = ioremap(adev->doorbell.base,
1055 adev->doorbell.num_doorbells *
1057 if (adev->doorbell.ptr == NULL)
1064 * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
1066 * @adev: amdgpu_device pointer
1068 * Tear down doorbell driver information (CIK)
1070 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
1072 iounmap(adev->doorbell.ptr);
1073 adev->doorbell.ptr = NULL;
1079 * amdgpu_device_wb_*()
1080 * Writeback is the method by which the GPU updates special pages in memory
1081 * with the status of certain GPU events (fences, ring pointers,etc.).
1085 * amdgpu_device_wb_fini - Disable Writeback and free memory
1087 * @adev: amdgpu_device pointer
1089 * Disables Writeback and frees the Writeback memory (all asics).
1090 * Used at driver shutdown.
1092 static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
1094 if (adev->wb.wb_obj) {
1095 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
1097 (void **)&adev->wb.wb);
1098 adev->wb.wb_obj = NULL;
1103 * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
1105 * @adev: amdgpu_device pointer
1107 * Initializes writeback and allocates writeback memory (all asics).
1108 * Used at driver startup.
1109 * Returns 0 on success or an -error on failure.
1111 static int amdgpu_device_wb_init(struct amdgpu_device *adev)
1115 if (adev->wb.wb_obj == NULL) {
1116 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
1117 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
1118 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
1119 &adev->wb.wb_obj, &adev->wb.gpu_addr,
1120 (void **)&adev->wb.wb);
1122 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
1126 adev->wb.num_wb = AMDGPU_MAX_WB;
1127 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
1129 /* clear wb memory */
1130 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
1137 * amdgpu_device_wb_get - Allocate a wb entry
1139 * @adev: amdgpu_device pointer
1142 * Allocate a wb slot for use by the driver (all asics).
1143 * Returns 0 on success or -EINVAL on failure.
1145 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
1147 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
1149 if (offset < adev->wb.num_wb) {
1150 __set_bit(offset, adev->wb.used);
1151 *wb = offset << 3; /* convert to dw offset */
1159 * amdgpu_device_wb_free - Free a wb entry
1161 * @adev: amdgpu_device pointer
1164 * Free a wb slot allocated for use by the driver (all asics)
1166 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
1169 if (wb < adev->wb.num_wb)
1170 __clear_bit(wb, adev->wb.used);
1174 * amdgpu_device_resize_fb_bar - try to resize FB BAR
1176 * @adev: amdgpu_device pointer
1178 * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not
1179 * to fail, but if any of the BARs is not accessible after the size we abort
1180 * driver loading by returning -ENODEV.
1182 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
1184 int rbar_size = pci_rebar_bytes_to_size(adev->gmc.real_vram_size);
1185 struct pci_bus *root;
1186 struct resource *res;
1192 if (amdgpu_sriov_vf(adev))
1195 /* skip if the bios has already enabled large BAR */
1196 if (adev->gmc.real_vram_size &&
1197 (pci_resource_len(adev->pdev, 0) >= adev->gmc.real_vram_size))
1200 /* Check if the root BUS has 64bit memory resources */
1201 root = adev->pdev->bus;
1202 while (root->parent)
1203 root = root->parent;
1205 pci_bus_for_each_resource(root, res, i) {
1206 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
1207 res->start > 0x100000000ull)
1211 /* Trying to resize is pointless without a root hub window above 4GB */
1215 /* Limit the BAR size to what is available */
1216 rbar_size = min(fls(pci_rebar_get_possible_sizes(adev->pdev, 0)) - 1,
1219 /* Disable memory decoding while we change the BAR addresses and size */
1220 pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd);
1221 pci_write_config_word(adev->pdev, PCI_COMMAND,
1222 cmd & ~PCI_COMMAND_MEMORY);
1224 /* Free the VRAM and doorbell BAR, we most likely need to move both. */
1225 amdgpu_device_doorbell_fini(adev);
1226 if (adev->asic_type >= CHIP_BONAIRE)
1227 pci_release_resource(adev->pdev, 2);
1229 pci_release_resource(adev->pdev, 0);
1231 r = pci_resize_resource(adev->pdev, 0, rbar_size);
1233 DRM_INFO("Not enough PCI address space for a large BAR.");
1234 else if (r && r != -ENOTSUPP)
1235 DRM_ERROR("Problem resizing BAR0 (%d).", r);
1237 pci_assign_unassigned_bus_resources(adev->pdev->bus);
1239 /* When the doorbell or fb BAR isn't available we have no chance of
1242 r = amdgpu_device_doorbell_init(adev);
1243 if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET))
1246 pci_write_config_word(adev->pdev, PCI_COMMAND, cmd);
1252 * GPU helpers function.
1255 * amdgpu_device_need_post - check if the hw need post or not
1257 * @adev: amdgpu_device pointer
1259 * Check if the asic has been initialized (all asics) at driver startup
1260 * or post is needed if hw reset is performed.
1261 * Returns true if need or false if not.
1263 bool amdgpu_device_need_post(struct amdgpu_device *adev)
1267 if (amdgpu_sriov_vf(adev))
1270 if (amdgpu_passthrough(adev)) {
1271 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
1272 * some old smc fw still need driver do vPost otherwise gpu hang, while
1273 * those smc fw version above 22.15 doesn't have this flaw, so we force
1274 * vpost executed for smc version below 22.15
1276 if (adev->asic_type == CHIP_FIJI) {
1279 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
1280 /* force vPost if error occured */
1284 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
1285 if (fw_ver < 0x00160e00)
1290 /* Don't post if we need to reset whole hive on init */
1291 if (adev->gmc.xgmi.pending_reset)
1294 if (adev->has_hw_reset) {
1295 adev->has_hw_reset = false;
1299 /* bios scratch used on CIK+ */
1300 if (adev->asic_type >= CHIP_BONAIRE)
1301 return amdgpu_atombios_scratch_need_asic_init(adev);
1303 /* check MEM_SIZE for older asics */
1304 reg = amdgpu_asic_get_config_memsize(adev);
1306 if ((reg != 0) && (reg != 0xffffffff))
1312 /* if we get transitioned to only one device, take VGA back */
1314 * amdgpu_device_vga_set_decode - enable/disable vga decode
1316 * @pdev: PCI device pointer
1317 * @state: enable/disable vga decode
1319 * Enable/disable vga decode (all asics).
1320 * Returns VGA resource flags.
1322 static unsigned int amdgpu_device_vga_set_decode(struct pci_dev *pdev,
1325 struct amdgpu_device *adev = drm_to_adev(pci_get_drvdata(pdev));
1326 amdgpu_asic_set_vga_state(adev, state);
1328 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1329 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1331 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1335 * amdgpu_device_check_block_size - validate the vm block size
1337 * @adev: amdgpu_device pointer
1339 * Validates the vm block size specified via module parameter.
1340 * The vm block size defines number of bits in page table versus page directory,
1341 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1342 * page table and the remaining bits are in the page directory.
1344 static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
1346 /* defines number of bits in page table versus page directory,
1347 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1348 * page table and the remaining bits are in the page directory */
1349 if (amdgpu_vm_block_size == -1)
1352 if (amdgpu_vm_block_size < 9) {
1353 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1354 amdgpu_vm_block_size);
1355 amdgpu_vm_block_size = -1;
1360 * amdgpu_device_check_vm_size - validate the vm size
1362 * @adev: amdgpu_device pointer
1364 * Validates the vm size in GB specified via module parameter.
1365 * The VM size is the size of the GPU virtual memory space in GB.
1367 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
1369 /* no need to check the default value */
1370 if (amdgpu_vm_size == -1)
1373 if (amdgpu_vm_size < 1) {
1374 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1376 amdgpu_vm_size = -1;
1380 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
1383 bool is_os_64 = (sizeof(void *) == 8);
1384 uint64_t total_memory;
1385 uint64_t dram_size_seven_GB = 0x1B8000000;
1386 uint64_t dram_size_three_GB = 0xB8000000;
1388 if (amdgpu_smu_memory_pool_size == 0)
1392 DRM_WARN("Not 64-bit OS, feature not supported\n");
1396 total_memory = (uint64_t)si.totalram * si.mem_unit;
1398 if ((amdgpu_smu_memory_pool_size == 1) ||
1399 (amdgpu_smu_memory_pool_size == 2)) {
1400 if (total_memory < dram_size_three_GB)
1402 } else if ((amdgpu_smu_memory_pool_size == 4) ||
1403 (amdgpu_smu_memory_pool_size == 8)) {
1404 if (total_memory < dram_size_seven_GB)
1407 DRM_WARN("Smu memory pool size not supported\n");
1410 adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28;
1415 DRM_WARN("No enough system memory\n");
1417 adev->pm.smu_prv_buffer_size = 0;
1420 static int amdgpu_device_init_apu_flags(struct amdgpu_device *adev)
1422 if (!(adev->flags & AMD_IS_APU) ||
1423 adev->asic_type < CHIP_RAVEN)
1426 switch (adev->asic_type) {
1428 if (adev->pdev->device == 0x15dd)
1429 adev->apu_flags |= AMD_APU_IS_RAVEN;
1430 if (adev->pdev->device == 0x15d8)
1431 adev->apu_flags |= AMD_APU_IS_PICASSO;
1434 if ((adev->pdev->device == 0x1636) ||
1435 (adev->pdev->device == 0x164c))
1436 adev->apu_flags |= AMD_APU_IS_RENOIR;
1438 adev->apu_flags |= AMD_APU_IS_GREEN_SARDINE;
1441 adev->apu_flags |= AMD_APU_IS_VANGOGH;
1443 case CHIP_YELLOW_CARP:
1445 case CHIP_CYAN_SKILLFISH:
1446 if (adev->pdev->device == 0x13FE)
1447 adev->apu_flags |= AMD_APU_IS_CYAN_SKILLFISH2;
1457 * amdgpu_device_check_arguments - validate module params
1459 * @adev: amdgpu_device pointer
1461 * Validates certain module parameters and updates
1462 * the associated values used by the driver (all asics).
1464 static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
1466 if (amdgpu_sched_jobs < 4) {
1467 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1469 amdgpu_sched_jobs = 4;
1470 } else if (!is_power_of_2(amdgpu_sched_jobs)){
1471 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1473 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1476 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
1477 /* gart size must be greater or equal to 32M */
1478 dev_warn(adev->dev, "gart size (%d) too small\n",
1480 amdgpu_gart_size = -1;
1483 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
1484 /* gtt size must be greater or equal to 32M */
1485 dev_warn(adev->dev, "gtt size (%d) too small\n",
1487 amdgpu_gtt_size = -1;
1490 /* valid range is between 4 and 9 inclusive */
1491 if (amdgpu_vm_fragment_size != -1 &&
1492 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
1493 dev_warn(adev->dev, "valid range is between 4 and 9\n");
1494 amdgpu_vm_fragment_size = -1;
1497 if (amdgpu_sched_hw_submission < 2) {
1498 dev_warn(adev->dev, "sched hw submission jobs (%d) must be at least 2\n",
1499 amdgpu_sched_hw_submission);
1500 amdgpu_sched_hw_submission = 2;
1501 } else if (!is_power_of_2(amdgpu_sched_hw_submission)) {
1502 dev_warn(adev->dev, "sched hw submission jobs (%d) must be a power of 2\n",
1503 amdgpu_sched_hw_submission);
1504 amdgpu_sched_hw_submission = roundup_pow_of_two(amdgpu_sched_hw_submission);
1507 amdgpu_device_check_smu_prv_buffer_size(adev);
1509 amdgpu_device_check_vm_size(adev);
1511 amdgpu_device_check_block_size(adev);
1513 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
1515 amdgpu_gmc_tmz_set(adev);
1517 amdgpu_gmc_noretry_set(adev);
1523 * amdgpu_switcheroo_set_state - set switcheroo state
1525 * @pdev: pci dev pointer
1526 * @state: vga_switcheroo state
1528 * Callback for the switcheroo driver. Suspends or resumes the
1529 * the asics before or after it is powered up using ACPI methods.
1531 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev,
1532 enum vga_switcheroo_state state)
1534 struct drm_device *dev = pci_get_drvdata(pdev);
1537 if (amdgpu_device_supports_px(dev) && state == VGA_SWITCHEROO_OFF)
1540 if (state == VGA_SWITCHEROO_ON) {
1541 pr_info("switched on\n");
1542 /* don't suspend or resume card normally */
1543 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1545 pci_set_power_state(pdev, PCI_D0);
1546 amdgpu_device_load_pci_state(pdev);
1547 r = pci_enable_device(pdev);
1549 DRM_WARN("pci_enable_device failed (%d)\n", r);
1550 amdgpu_device_resume(dev, true);
1552 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1554 pr_info("switched off\n");
1555 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1556 amdgpu_device_suspend(dev, true);
1557 amdgpu_device_cache_pci_state(pdev);
1558 /* Shut down the device */
1559 pci_disable_device(pdev);
1560 pci_set_power_state(pdev, PCI_D3cold);
1561 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1566 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1568 * @pdev: pci dev pointer
1570 * Callback for the switcheroo driver. Check of the switcheroo
1571 * state can be changed.
1572 * Returns true if the state can be changed, false if not.
1574 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1576 struct drm_device *dev = pci_get_drvdata(pdev);
1579 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1580 * locking inversion with the driver load path. And the access here is
1581 * completely racy anyway. So don't bother with locking for now.
1583 return atomic_read(&dev->open_count) == 0;
1586 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1587 .set_gpu_state = amdgpu_switcheroo_set_state,
1589 .can_switch = amdgpu_switcheroo_can_switch,
1593 * amdgpu_device_ip_set_clockgating_state - set the CG state
1595 * @dev: amdgpu_device pointer
1596 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1597 * @state: clockgating state (gate or ungate)
1599 * Sets the requested clockgating state for all instances of
1600 * the hardware IP specified.
1601 * Returns the error code from the last instance.
1603 int amdgpu_device_ip_set_clockgating_state(void *dev,
1604 enum amd_ip_block_type block_type,
1605 enum amd_clockgating_state state)
1607 struct amdgpu_device *adev = dev;
1610 for (i = 0; i < adev->num_ip_blocks; i++) {
1611 if (!adev->ip_blocks[i].status.valid)
1613 if (adev->ip_blocks[i].version->type != block_type)
1615 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1617 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1618 (void *)adev, state);
1620 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1621 adev->ip_blocks[i].version->funcs->name, r);
1627 * amdgpu_device_ip_set_powergating_state - set the PG state
1629 * @dev: amdgpu_device pointer
1630 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1631 * @state: powergating state (gate or ungate)
1633 * Sets the requested powergating state for all instances of
1634 * the hardware IP specified.
1635 * Returns the error code from the last instance.
1637 int amdgpu_device_ip_set_powergating_state(void *dev,
1638 enum amd_ip_block_type block_type,
1639 enum amd_powergating_state state)
1641 struct amdgpu_device *adev = dev;
1644 for (i = 0; i < adev->num_ip_blocks; i++) {
1645 if (!adev->ip_blocks[i].status.valid)
1647 if (adev->ip_blocks[i].version->type != block_type)
1649 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1651 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1652 (void *)adev, state);
1654 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1655 adev->ip_blocks[i].version->funcs->name, r);
1661 * amdgpu_device_ip_get_clockgating_state - get the CG state
1663 * @adev: amdgpu_device pointer
1664 * @flags: clockgating feature flags
1666 * Walks the list of IPs on the device and updates the clockgating
1667 * flags for each IP.
1668 * Updates @flags with the feature flags for each hardware IP where
1669 * clockgating is enabled.
1671 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1676 for (i = 0; i < adev->num_ip_blocks; i++) {
1677 if (!adev->ip_blocks[i].status.valid)
1679 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1680 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1685 * amdgpu_device_ip_wait_for_idle - wait for idle
1687 * @adev: amdgpu_device pointer
1688 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1690 * Waits for the request hardware IP to be idle.
1691 * Returns 0 for success or a negative error code on failure.
1693 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1694 enum amd_ip_block_type block_type)
1698 for (i = 0; i < adev->num_ip_blocks; i++) {
1699 if (!adev->ip_blocks[i].status.valid)
1701 if (adev->ip_blocks[i].version->type == block_type) {
1702 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
1713 * amdgpu_device_ip_is_idle - is the hardware IP idle
1715 * @adev: amdgpu_device pointer
1716 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1718 * Check if the hardware IP is idle or not.
1719 * Returns true if it the IP is idle, false if not.
1721 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1722 enum amd_ip_block_type block_type)
1726 for (i = 0; i < adev->num_ip_blocks; i++) {
1727 if (!adev->ip_blocks[i].status.valid)
1729 if (adev->ip_blocks[i].version->type == block_type)
1730 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
1737 * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1739 * @adev: amdgpu_device pointer
1740 * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
1742 * Returns a pointer to the hardware IP block structure
1743 * if it exists for the asic, otherwise NULL.
1745 struct amdgpu_ip_block *
1746 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1747 enum amd_ip_block_type type)
1751 for (i = 0; i < adev->num_ip_blocks; i++)
1752 if (adev->ip_blocks[i].version->type == type)
1753 return &adev->ip_blocks[i];
1759 * amdgpu_device_ip_block_version_cmp
1761 * @adev: amdgpu_device pointer
1762 * @type: enum amd_ip_block_type
1763 * @major: major version
1764 * @minor: minor version
1766 * return 0 if equal or greater
1767 * return 1 if smaller or the ip_block doesn't exist
1769 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1770 enum amd_ip_block_type type,
1771 u32 major, u32 minor)
1773 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
1775 if (ip_block && ((ip_block->version->major > major) ||
1776 ((ip_block->version->major == major) &&
1777 (ip_block->version->minor >= minor))))
1784 * amdgpu_device_ip_block_add
1786 * @adev: amdgpu_device pointer
1787 * @ip_block_version: pointer to the IP to add
1789 * Adds the IP block driver information to the collection of IPs
1792 int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1793 const struct amdgpu_ip_block_version *ip_block_version)
1795 if (!ip_block_version)
1798 switch (ip_block_version->type) {
1799 case AMD_IP_BLOCK_TYPE_VCN:
1800 if (adev->harvest_ip_mask & AMD_HARVEST_IP_VCN_MASK)
1803 case AMD_IP_BLOCK_TYPE_JPEG:
1804 if (adev->harvest_ip_mask & AMD_HARVEST_IP_JPEG_MASK)
1811 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
1812 ip_block_version->funcs->name);
1814 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1820 * amdgpu_device_enable_virtual_display - enable virtual display feature
1822 * @adev: amdgpu_device pointer
1824 * Enabled the virtual display feature if the user has enabled it via
1825 * the module parameter virtual_display. This feature provides a virtual
1826 * display hardware on headless boards or in virtualized environments.
1827 * This function parses and validates the configuration string specified by
1828 * the user and configues the virtual display configuration (number of
1829 * virtual connectors, crtcs, etc.) specified.
1831 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
1833 adev->enable_virtual_display = false;
1835 if (amdgpu_virtual_display) {
1836 const char *pci_address_name = pci_name(adev->pdev);
1837 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
1839 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1840 pciaddstr_tmp = pciaddstr;
1841 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1842 pciaddname = strsep(&pciaddname_tmp, ",");
1843 if (!strcmp("all", pciaddname)
1844 || !strcmp(pci_address_name, pciaddname)) {
1848 adev->enable_virtual_display = true;
1851 res = kstrtol(pciaddname_tmp, 10,
1859 adev->mode_info.num_crtc = num_crtc;
1861 adev->mode_info.num_crtc = 1;
1867 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1868 amdgpu_virtual_display, pci_address_name,
1869 adev->enable_virtual_display, adev->mode_info.num_crtc);
1876 * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware
1878 * @adev: amdgpu_device pointer
1880 * Parses the asic configuration parameters specified in the gpu info
1881 * firmware and makes them availale to the driver for use in configuring
1883 * Returns 0 on success, -EINVAL on failure.
1885 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1887 const char *chip_name;
1890 const struct gpu_info_firmware_header_v1_0 *hdr;
1892 adev->firmware.gpu_info_fw = NULL;
1894 if (adev->mman.discovery_bin) {
1895 amdgpu_discovery_get_gfx_info(adev);
1898 * FIXME: The bounding box is still needed by Navi12, so
1899 * temporarily read it from gpu_info firmware. Should be droped
1900 * when DAL no longer needs it.
1902 if (adev->asic_type != CHIP_NAVI12)
1906 switch (adev->asic_type) {
1907 #ifdef CONFIG_DRM_AMDGPU_SI
1914 #ifdef CONFIG_DRM_AMDGPU_CIK
1924 case CHIP_POLARIS10:
1925 case CHIP_POLARIS11:
1926 case CHIP_POLARIS12:
1931 case CHIP_ALDEBARAN:
1932 case CHIP_SIENNA_CICHLID:
1933 case CHIP_NAVY_FLOUNDER:
1934 case CHIP_DIMGREY_CAVEFISH:
1935 case CHIP_BEIGE_GOBY:
1939 chip_name = "vega10";
1942 chip_name = "vega12";
1945 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1946 chip_name = "raven2";
1947 else if (adev->apu_flags & AMD_APU_IS_PICASSO)
1948 chip_name = "picasso";
1950 chip_name = "raven";
1953 chip_name = "arcturus";
1956 if (adev->apu_flags & AMD_APU_IS_RENOIR)
1957 chip_name = "renoir";
1959 chip_name = "green_sardine";
1962 chip_name = "navi10";
1965 chip_name = "navi14";
1968 chip_name = "navi12";
1971 chip_name = "vangogh";
1973 case CHIP_YELLOW_CARP:
1974 chip_name = "yellow_carp";
1978 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
1979 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
1982 "Failed to load gpu_info firmware \"%s\"\n",
1986 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
1989 "Failed to validate gpu_info firmware \"%s\"\n",
1994 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
1995 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1997 switch (hdr->version_major) {
2000 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
2001 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
2002 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
2005 * Should be droped when DAL no longer needs it.
2007 if (adev->asic_type == CHIP_NAVI12)
2008 goto parse_soc_bounding_box;
2010 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
2011 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
2012 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
2013 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
2014 adev->gfx.config.max_texture_channel_caches =
2015 le32_to_cpu(gpu_info_fw->gc_num_tccs);
2016 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
2017 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
2018 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
2019 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
2020 adev->gfx.config.double_offchip_lds_buf =
2021 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
2022 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
2023 adev->gfx.cu_info.max_waves_per_simd =
2024 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
2025 adev->gfx.cu_info.max_scratch_slots_per_cu =
2026 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
2027 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
2028 if (hdr->version_minor >= 1) {
2029 const struct gpu_info_firmware_v1_1 *gpu_info_fw =
2030 (const struct gpu_info_firmware_v1_1 *)(adev->firmware.gpu_info_fw->data +
2031 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
2032 adev->gfx.config.num_sc_per_sh =
2033 le32_to_cpu(gpu_info_fw->num_sc_per_sh);
2034 adev->gfx.config.num_packer_per_sc =
2035 le32_to_cpu(gpu_info_fw->num_packer_per_sc);
2038 parse_soc_bounding_box:
2040 * soc bounding box info is not integrated in disocovery table,
2041 * we always need to parse it from gpu info firmware if needed.
2043 if (hdr->version_minor == 2) {
2044 const struct gpu_info_firmware_v1_2 *gpu_info_fw =
2045 (const struct gpu_info_firmware_v1_2 *)(adev->firmware.gpu_info_fw->data +
2046 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
2047 adev->dm.soc_bounding_box = &gpu_info_fw->soc_bounding_box;
2053 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
2062 * amdgpu_device_ip_early_init - run early init for hardware IPs
2064 * @adev: amdgpu_device pointer
2066 * Early initialization pass for hardware IPs. The hardware IPs that make
2067 * up each asic are discovered each IP's early_init callback is run. This
2068 * is the first stage in initializing the asic.
2069 * Returns 0 on success, negative error code on failure.
2071 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
2075 amdgpu_device_enable_virtual_display(adev);
2077 if (amdgpu_sriov_vf(adev)) {
2078 r = amdgpu_virt_request_full_gpu(adev, true);
2083 switch (adev->asic_type) {
2084 #ifdef CONFIG_DRM_AMDGPU_SI
2090 adev->family = AMDGPU_FAMILY_SI;
2091 r = si_set_ip_blocks(adev);
2096 #ifdef CONFIG_DRM_AMDGPU_CIK
2102 if (adev->flags & AMD_IS_APU)
2103 adev->family = AMDGPU_FAMILY_KV;
2105 adev->family = AMDGPU_FAMILY_CI;
2107 r = cik_set_ip_blocks(adev);
2115 case CHIP_POLARIS10:
2116 case CHIP_POLARIS11:
2117 case CHIP_POLARIS12:
2121 if (adev->flags & AMD_IS_APU)
2122 adev->family = AMDGPU_FAMILY_CZ;
2124 adev->family = AMDGPU_FAMILY_VI;
2126 r = vi_set_ip_blocks(adev);
2131 r = amdgpu_discovery_set_ip_blocks(adev);
2137 amdgpu_amdkfd_device_probe(adev);
2139 adev->pm.pp_feature = amdgpu_pp_feature_mask;
2140 if (amdgpu_sriov_vf(adev) || sched_policy == KFD_SCHED_POLICY_NO_HWS)
2141 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
2142 if (amdgpu_sriov_vf(adev) && adev->asic_type == CHIP_SIENNA_CICHLID)
2143 adev->pm.pp_feature &= ~PP_OVERDRIVE_MASK;
2145 for (i = 0; i < adev->num_ip_blocks; i++) {
2146 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
2147 DRM_ERROR("disabled ip block: %d <%s>\n",
2148 i, adev->ip_blocks[i].version->funcs->name);
2149 adev->ip_blocks[i].status.valid = false;
2151 if (adev->ip_blocks[i].version->funcs->early_init) {
2152 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
2154 adev->ip_blocks[i].status.valid = false;
2156 DRM_ERROR("early_init of IP block <%s> failed %d\n",
2157 adev->ip_blocks[i].version->funcs->name, r);
2160 adev->ip_blocks[i].status.valid = true;
2163 adev->ip_blocks[i].status.valid = true;
2166 /* get the vbios after the asic_funcs are set up */
2167 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) {
2168 r = amdgpu_device_parse_gpu_info_fw(adev);
2173 if (!amdgpu_get_bios(adev))
2176 r = amdgpu_atombios_init(adev);
2178 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
2179 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
2183 /*get pf2vf msg info at it's earliest time*/
2184 if (amdgpu_sriov_vf(adev))
2185 amdgpu_virt_init_data_exchange(adev);
2190 adev->cg_flags &= amdgpu_cg_mask;
2191 adev->pg_flags &= amdgpu_pg_mask;
2196 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev)
2200 for (i = 0; i < adev->num_ip_blocks; i++) {
2201 if (!adev->ip_blocks[i].status.sw)
2203 if (adev->ip_blocks[i].status.hw)
2205 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2206 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
2207 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2208 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2210 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2211 adev->ip_blocks[i].version->funcs->name, r);
2214 adev->ip_blocks[i].status.hw = true;
2221 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev)
2225 for (i = 0; i < adev->num_ip_blocks; i++) {
2226 if (!adev->ip_blocks[i].status.sw)
2228 if (adev->ip_blocks[i].status.hw)
2230 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2232 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2233 adev->ip_blocks[i].version->funcs->name, r);
2236 adev->ip_blocks[i].status.hw = true;
2242 static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
2246 uint32_t smu_version;
2248 if (adev->asic_type >= CHIP_VEGA10) {
2249 for (i = 0; i < adev->num_ip_blocks; i++) {
2250 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_PSP)
2253 if (!adev->ip_blocks[i].status.sw)
2256 /* no need to do the fw loading again if already done*/
2257 if (adev->ip_blocks[i].status.hw == true)
2260 if (amdgpu_in_reset(adev) || adev->in_suspend) {
2261 r = adev->ip_blocks[i].version->funcs->resume(adev);
2263 DRM_ERROR("resume of IP block <%s> failed %d\n",
2264 adev->ip_blocks[i].version->funcs->name, r);
2268 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2270 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2271 adev->ip_blocks[i].version->funcs->name, r);
2276 adev->ip_blocks[i].status.hw = true;
2281 if (!amdgpu_sriov_vf(adev) || adev->asic_type == CHIP_TONGA)
2282 r = amdgpu_pm_load_smu_firmware(adev, &smu_version);
2288 * amdgpu_device_ip_init - run init for hardware IPs
2290 * @adev: amdgpu_device pointer
2292 * Main initialization pass for hardware IPs. The list of all the hardware
2293 * IPs that make up the asic is walked and the sw_init and hw_init callbacks
2294 * are run. sw_init initializes the software state associated with each IP
2295 * and hw_init initializes the hardware associated with each IP.
2296 * Returns 0 on success, negative error code on failure.
2298 static int amdgpu_device_ip_init(struct amdgpu_device *adev)
2302 r = amdgpu_ras_init(adev);
2306 for (i = 0; i < adev->num_ip_blocks; i++) {
2307 if (!adev->ip_blocks[i].status.valid)
2309 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
2311 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
2312 adev->ip_blocks[i].version->funcs->name, r);
2315 adev->ip_blocks[i].status.sw = true;
2317 /* need to do gmc hw init early so we can allocate gpu mem */
2318 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2319 r = amdgpu_device_vram_scratch_init(adev);
2321 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
2324 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
2326 DRM_ERROR("hw_init %d failed %d\n", i, r);
2329 r = amdgpu_device_wb_init(adev);
2331 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
2334 adev->ip_blocks[i].status.hw = true;
2336 /* right after GMC hw init, we create CSA */
2337 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
2338 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
2339 AMDGPU_GEM_DOMAIN_VRAM,
2342 DRM_ERROR("allocate CSA failed %d\n", r);
2349 if (amdgpu_sriov_vf(adev))
2350 amdgpu_virt_init_data_exchange(adev);
2352 r = amdgpu_ib_pool_init(adev);
2354 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
2355 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
2359 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
2363 r = amdgpu_device_ip_hw_init_phase1(adev);
2367 r = amdgpu_device_fw_loading(adev);
2371 r = amdgpu_device_ip_hw_init_phase2(adev);
2376 * retired pages will be loaded from eeprom and reserved here,
2377 * it should be called after amdgpu_device_ip_hw_init_phase2 since
2378 * for some ASICs the RAS EEPROM code relies on SMU fully functioning
2379 * for I2C communication which only true at this point.
2381 * amdgpu_ras_recovery_init may fail, but the upper only cares the
2382 * failure from bad gpu situation and stop amdgpu init process
2383 * accordingly. For other failed cases, it will still release all
2384 * the resource and print error message, rather than returning one
2385 * negative value to upper level.
2387 * Note: theoretically, this should be called before all vram allocations
2388 * to protect retired page from abusing
2390 r = amdgpu_ras_recovery_init(adev);
2394 if (adev->gmc.xgmi.num_physical_nodes > 1)
2395 amdgpu_xgmi_add_device(adev);
2397 /* Don't init kfd if whole hive need to be reset during init */
2398 if (!adev->gmc.xgmi.pending_reset)
2399 amdgpu_amdkfd_device_init(adev);
2401 r = amdgpu_amdkfd_resume_iommu(adev);
2405 amdgpu_fru_get_product_info(adev);
2408 if (amdgpu_sriov_vf(adev))
2409 amdgpu_virt_release_full_gpu(adev, true);
2415 * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer
2417 * @adev: amdgpu_device pointer
2419 * Writes a reset magic value to the gart pointer in VRAM. The driver calls
2420 * this function before a GPU reset. If the value is retained after a
2421 * GPU reset, VRAM has not been lost. Some GPU resets may destry VRAM contents.
2423 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
2425 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
2429 * amdgpu_device_check_vram_lost - check if vram is valid
2431 * @adev: amdgpu_device pointer
2433 * Checks the reset magic value written to the gart pointer in VRAM.
2434 * The driver calls this after a GPU reset to see if the contents of
2435 * VRAM is lost or now.
2436 * returns true if vram is lost, false if not.
2438 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
2440 if (memcmp(adev->gart.ptr, adev->reset_magic,
2441 AMDGPU_RESET_MAGIC_NUM))
2444 if (!amdgpu_in_reset(adev))
2448 * For all ASICs with baco/mode1 reset, the VRAM is
2449 * always assumed to be lost.
2451 switch (amdgpu_asic_reset_method(adev)) {
2452 case AMD_RESET_METHOD_BACO:
2453 case AMD_RESET_METHOD_MODE1:
2461 * amdgpu_device_set_cg_state - set clockgating for amdgpu device
2463 * @adev: amdgpu_device pointer
2464 * @state: clockgating state (gate or ungate)
2466 * The list of all the hardware IPs that make up the asic is walked and the
2467 * set_clockgating_state callbacks are run.
2468 * Late initialization pass enabling clockgating for hardware IPs.
2469 * Fini or suspend, pass disabling clockgating for hardware IPs.
2470 * Returns 0 on success, negative error code on failure.
2473 int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
2474 enum amd_clockgating_state state)
2478 if (amdgpu_emu_mode == 1)
2481 for (j = 0; j < adev->num_ip_blocks; j++) {
2482 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2483 if (!adev->ip_blocks[i].status.late_initialized)
2485 /* skip CG for GFX on S0ix */
2486 if (adev->in_s0ix &&
2487 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX)
2489 /* skip CG for VCE/UVD, it's handled specially */
2490 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2491 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2492 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2493 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2494 adev->ip_blocks[i].version->funcs->set_clockgating_state) {
2495 /* enable clockgating to save power */
2496 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
2499 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
2500 adev->ip_blocks[i].version->funcs->name, r);
2509 int amdgpu_device_set_pg_state(struct amdgpu_device *adev,
2510 enum amd_powergating_state state)
2514 if (amdgpu_emu_mode == 1)
2517 for (j = 0; j < adev->num_ip_blocks; j++) {
2518 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2519 if (!adev->ip_blocks[i].status.late_initialized)
2521 /* skip PG for GFX on S0ix */
2522 if (adev->in_s0ix &&
2523 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX)
2525 /* skip CG for VCE/UVD, it's handled specially */
2526 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2527 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2528 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2529 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2530 adev->ip_blocks[i].version->funcs->set_powergating_state) {
2531 /* enable powergating to save power */
2532 r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev,
2535 DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n",
2536 adev->ip_blocks[i].version->funcs->name, r);
2544 static int amdgpu_device_enable_mgpu_fan_boost(void)
2546 struct amdgpu_gpu_instance *gpu_ins;
2547 struct amdgpu_device *adev;
2550 mutex_lock(&mgpu_info.mutex);
2553 * MGPU fan boost feature should be enabled
2554 * only when there are two or more dGPUs in
2557 if (mgpu_info.num_dgpu < 2)
2560 for (i = 0; i < mgpu_info.num_dgpu; i++) {
2561 gpu_ins = &(mgpu_info.gpu_ins[i]);
2562 adev = gpu_ins->adev;
2563 if (!(adev->flags & AMD_IS_APU) &&
2564 !gpu_ins->mgpu_fan_enabled) {
2565 ret = amdgpu_dpm_enable_mgpu_fan_boost(adev);
2569 gpu_ins->mgpu_fan_enabled = 1;
2574 mutex_unlock(&mgpu_info.mutex);
2580 * amdgpu_device_ip_late_init - run late init for hardware IPs
2582 * @adev: amdgpu_device pointer
2584 * Late initialization pass for hardware IPs. The list of all the hardware
2585 * IPs that make up the asic is walked and the late_init callbacks are run.
2586 * late_init covers any special initialization that an IP requires
2587 * after all of the have been initialized or something that needs to happen
2588 * late in the init process.
2589 * Returns 0 on success, negative error code on failure.
2591 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
2593 struct amdgpu_gpu_instance *gpu_instance;
2596 for (i = 0; i < adev->num_ip_blocks; i++) {
2597 if (!adev->ip_blocks[i].status.hw)
2599 if (adev->ip_blocks[i].version->funcs->late_init) {
2600 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
2602 DRM_ERROR("late_init of IP block <%s> failed %d\n",
2603 adev->ip_blocks[i].version->funcs->name, r);
2607 adev->ip_blocks[i].status.late_initialized = true;
2610 amdgpu_ras_set_error_query_ready(adev, true);
2612 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
2613 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
2615 amdgpu_device_fill_reset_magic(adev);
2617 r = amdgpu_device_enable_mgpu_fan_boost();
2619 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
2621 /* For XGMI + passthrough configuration on arcturus, enable light SBR */
2622 if (adev->asic_type == CHIP_ARCTURUS &&
2623 amdgpu_passthrough(adev) &&
2624 adev->gmc.xgmi.num_physical_nodes > 1)
2625 smu_set_light_sbr(&adev->smu, true);
2627 if (adev->gmc.xgmi.num_physical_nodes > 1) {
2628 mutex_lock(&mgpu_info.mutex);
2631 * Reset device p-state to low as this was booted with high.
2633 * This should be performed only after all devices from the same
2634 * hive get initialized.
2636 * However, it's unknown how many device in the hive in advance.
2637 * As this is counted one by one during devices initializations.
2639 * So, we wait for all XGMI interlinked devices initialized.
2640 * This may bring some delays as those devices may come from
2641 * different hives. But that should be OK.
2643 if (mgpu_info.num_dgpu == adev->gmc.xgmi.num_physical_nodes) {
2644 for (i = 0; i < mgpu_info.num_gpu; i++) {
2645 gpu_instance = &(mgpu_info.gpu_ins[i]);
2646 if (gpu_instance->adev->flags & AMD_IS_APU)
2649 r = amdgpu_xgmi_set_pstate(gpu_instance->adev,
2650 AMDGPU_XGMI_PSTATE_MIN);
2652 DRM_ERROR("pstate setting failed (%d).\n", r);
2658 mutex_unlock(&mgpu_info.mutex);
2664 static int amdgpu_device_ip_fini_early(struct amdgpu_device *adev)
2668 for (i = 0; i < adev->num_ip_blocks; i++) {
2669 if (!adev->ip_blocks[i].version->funcs->early_fini)
2672 r = adev->ip_blocks[i].version->funcs->early_fini((void *)adev);
2674 DRM_DEBUG("early_fini of IP block <%s> failed %d\n",
2675 adev->ip_blocks[i].version->funcs->name, r);
2679 amdgpu_amdkfd_suspend(adev, false);
2681 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2682 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2684 /* need to disable SMC first */
2685 for (i = 0; i < adev->num_ip_blocks; i++) {
2686 if (!adev->ip_blocks[i].status.hw)
2688 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2689 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2690 /* XXX handle errors */
2692 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2693 adev->ip_blocks[i].version->funcs->name, r);
2695 adev->ip_blocks[i].status.hw = false;
2700 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2701 if (!adev->ip_blocks[i].status.hw)
2704 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2705 /* XXX handle errors */
2707 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2708 adev->ip_blocks[i].version->funcs->name, r);
2711 adev->ip_blocks[i].status.hw = false;
2714 if (amdgpu_sriov_vf(adev)) {
2715 if (amdgpu_virt_release_full_gpu(adev, false))
2716 DRM_ERROR("failed to release exclusive mode on fini\n");
2723 * amdgpu_device_ip_fini - run fini for hardware IPs
2725 * @adev: amdgpu_device pointer
2727 * Main teardown pass for hardware IPs. The list of all the hardware
2728 * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks
2729 * are run. hw_fini tears down the hardware associated with each IP
2730 * and sw_fini tears down any software state associated with each IP.
2731 * Returns 0 on success, negative error code on failure.
2733 static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
2737 if (amdgpu_sriov_vf(adev) && adev->virt.ras_init_done)
2738 amdgpu_virt_release_ras_err_handler_data(adev);
2740 amdgpu_ras_pre_fini(adev);
2742 if (adev->gmc.xgmi.num_physical_nodes > 1)
2743 amdgpu_xgmi_remove_device(adev);
2745 amdgpu_amdkfd_device_fini_sw(adev);
2747 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2748 if (!adev->ip_blocks[i].status.sw)
2751 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2752 amdgpu_ucode_free_bo(adev);
2753 amdgpu_free_static_csa(&adev->virt.csa_obj);
2754 amdgpu_device_wb_fini(adev);
2755 amdgpu_device_vram_scratch_fini(adev);
2756 amdgpu_ib_pool_fini(adev);
2759 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
2760 /* XXX handle errors */
2762 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
2763 adev->ip_blocks[i].version->funcs->name, r);
2765 adev->ip_blocks[i].status.sw = false;
2766 adev->ip_blocks[i].status.valid = false;
2769 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2770 if (!adev->ip_blocks[i].status.late_initialized)
2772 if (adev->ip_blocks[i].version->funcs->late_fini)
2773 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
2774 adev->ip_blocks[i].status.late_initialized = false;
2777 amdgpu_ras_fini(adev);
2783 * amdgpu_device_delayed_init_work_handler - work handler for IB tests
2785 * @work: work_struct.
2787 static void amdgpu_device_delayed_init_work_handler(struct work_struct *work)
2789 struct amdgpu_device *adev =
2790 container_of(work, struct amdgpu_device, delayed_init_work.work);
2793 r = amdgpu_ib_ring_tests(adev);
2795 DRM_ERROR("ib ring test failed (%d).\n", r);
2798 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)
2800 struct amdgpu_device *adev =
2801 container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);
2803 WARN_ON_ONCE(adev->gfx.gfx_off_state);
2804 WARN_ON_ONCE(adev->gfx.gfx_off_req_count);
2806 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))
2807 adev->gfx.gfx_off_state = true;
2811 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
2813 * @adev: amdgpu_device pointer
2815 * Main suspend function for hardware IPs. The list of all the hardware
2816 * IPs that make up the asic is walked, clockgating is disabled and the
2817 * suspend callbacks are run. suspend puts the hardware and software state
2818 * in each IP into a state suitable for suspend.
2819 * Returns 0 on success, negative error code on failure.
2821 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2825 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2826 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2828 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2829 if (!adev->ip_blocks[i].status.valid)
2832 /* displays are handled separately */
2833 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_DCE)
2836 /* XXX handle errors */
2837 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2838 /* XXX handle errors */
2840 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2841 adev->ip_blocks[i].version->funcs->name, r);
2845 adev->ip_blocks[i].status.hw = false;
2852 * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2)
2854 * @adev: amdgpu_device pointer
2856 * Main suspend function for hardware IPs. The list of all the hardware
2857 * IPs that make up the asic is walked, clockgating is disabled and the
2858 * suspend callbacks are run. suspend puts the hardware and software state
2859 * in each IP into a state suitable for suspend.
2860 * Returns 0 on success, negative error code on failure.
2862 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
2867 amdgpu_gfx_state_change_set(adev, sGpuChangeState_D3Entry);
2869 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2870 if (!adev->ip_blocks[i].status.valid)
2872 /* displays are handled in phase1 */
2873 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2875 /* PSP lost connection when err_event_athub occurs */
2876 if (amdgpu_ras_intr_triggered() &&
2877 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
2878 adev->ip_blocks[i].status.hw = false;
2882 /* skip unnecessary suspend if we do not initialize them yet */
2883 if (adev->gmc.xgmi.pending_reset &&
2884 !(adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2885 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC ||
2886 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2887 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH)) {
2888 adev->ip_blocks[i].status.hw = false;
2892 /* skip suspend of gfx and psp for S0ix
2893 * gfx is in gfxoff state, so on resume it will exit gfxoff just
2894 * like at runtime. PSP is also part of the always on hardware
2895 * so no need to suspend it.
2897 if (adev->in_s0ix &&
2898 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP ||
2899 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GFX))
2902 /* XXX handle errors */
2903 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2904 /* XXX handle errors */
2906 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2907 adev->ip_blocks[i].version->funcs->name, r);
2909 adev->ip_blocks[i].status.hw = false;
2910 /* handle putting the SMC in the appropriate state */
2911 if(!amdgpu_sriov_vf(adev)){
2912 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2913 r = amdgpu_dpm_set_mp1_state(adev, adev->mp1_state);
2915 DRM_ERROR("SMC failed to set mp1 state %d, %d\n",
2916 adev->mp1_state, r);
2927 * amdgpu_device_ip_suspend - run suspend for hardware IPs
2929 * @adev: amdgpu_device pointer
2931 * Main suspend function for hardware IPs. The list of all the hardware
2932 * IPs that make up the asic is walked, clockgating is disabled and the
2933 * suspend callbacks are run. suspend puts the hardware and software state
2934 * in each IP into a state suitable for suspend.
2935 * Returns 0 on success, negative error code on failure.
2937 int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2941 if (amdgpu_sriov_vf(adev)) {
2942 amdgpu_virt_fini_data_exchange(adev);
2943 amdgpu_virt_request_full_gpu(adev, false);
2946 r = amdgpu_device_ip_suspend_phase1(adev);
2949 r = amdgpu_device_ip_suspend_phase2(adev);
2951 if (amdgpu_sriov_vf(adev))
2952 amdgpu_virt_release_full_gpu(adev, false);
2957 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
2961 static enum amd_ip_block_type ip_order[] = {
2962 AMD_IP_BLOCK_TYPE_GMC,
2963 AMD_IP_BLOCK_TYPE_COMMON,
2964 AMD_IP_BLOCK_TYPE_PSP,
2965 AMD_IP_BLOCK_TYPE_IH,
2968 for (i = 0; i < adev->num_ip_blocks; i++) {
2970 struct amdgpu_ip_block *block;
2972 block = &adev->ip_blocks[i];
2973 block->status.hw = false;
2975 for (j = 0; j < ARRAY_SIZE(ip_order); j++) {
2977 if (block->version->type != ip_order[j] ||
2978 !block->status.valid)
2981 r = block->version->funcs->hw_init(adev);
2982 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2985 block->status.hw = true;
2992 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
2996 static enum amd_ip_block_type ip_order[] = {
2997 AMD_IP_BLOCK_TYPE_SMC,
2998 AMD_IP_BLOCK_TYPE_DCE,
2999 AMD_IP_BLOCK_TYPE_GFX,
3000 AMD_IP_BLOCK_TYPE_SDMA,
3001 AMD_IP_BLOCK_TYPE_UVD,
3002 AMD_IP_BLOCK_TYPE_VCE,
3003 AMD_IP_BLOCK_TYPE_VCN
3006 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
3008 struct amdgpu_ip_block *block;
3010 for (j = 0; j < adev->num_ip_blocks; j++) {
3011 block = &adev->ip_blocks[j];
3013 if (block->version->type != ip_order[i] ||
3014 !block->status.valid ||
3018 if (block->version->type == AMD_IP_BLOCK_TYPE_SMC)
3019 r = block->version->funcs->resume(adev);
3021 r = block->version->funcs->hw_init(adev);
3023 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
3026 block->status.hw = true;
3034 * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs
3036 * @adev: amdgpu_device pointer
3038 * First resume function for hardware IPs. The list of all the hardware
3039 * IPs that make up the asic is walked and the resume callbacks are run for
3040 * COMMON, GMC, and IH. resume puts the hardware into a functional state
3041 * after a suspend and updates the software state as necessary. This
3042 * function is also used for restoring the GPU after a GPU reset.
3043 * Returns 0 on success, negative error code on failure.
3045 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
3049 for (i = 0; i < adev->num_ip_blocks; i++) {
3050 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
3052 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
3053 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
3054 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
3056 r = adev->ip_blocks[i].version->funcs->resume(adev);
3058 DRM_ERROR("resume of IP block <%s> failed %d\n",
3059 adev->ip_blocks[i].version->funcs->name, r);
3062 adev->ip_blocks[i].status.hw = true;
3070 * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs
3072 * @adev: amdgpu_device pointer
3074 * First resume function for hardware IPs. The list of all the hardware
3075 * IPs that make up the asic is walked and the resume callbacks are run for
3076 * all blocks except COMMON, GMC, and IH. resume puts the hardware into a
3077 * functional state after a suspend and updates the software state as
3078 * necessary. This function is also used for restoring the GPU after a GPU
3080 * Returns 0 on success, negative error code on failure.
3082 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
3086 for (i = 0; i < adev->num_ip_blocks; i++) {
3087 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
3089 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
3090 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
3091 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
3092 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
3094 r = adev->ip_blocks[i].version->funcs->resume(adev);
3096 DRM_ERROR("resume of IP block <%s> failed %d\n",
3097 adev->ip_blocks[i].version->funcs->name, r);
3100 adev->ip_blocks[i].status.hw = true;
3107 * amdgpu_device_ip_resume - run resume for hardware IPs
3109 * @adev: amdgpu_device pointer
3111 * Main resume function for hardware IPs. The hardware IPs
3112 * are split into two resume functions because they are
3113 * are also used in in recovering from a GPU reset and some additional
3114 * steps need to be take between them. In this case (S3/S4) they are
3116 * Returns 0 on success, negative error code on failure.
3118 static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
3122 r = amdgpu_amdkfd_resume_iommu(adev);
3126 r = amdgpu_device_ip_resume_phase1(adev);
3130 r = amdgpu_device_fw_loading(adev);
3134 r = amdgpu_device_ip_resume_phase2(adev);
3140 * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV
3142 * @adev: amdgpu_device pointer
3144 * Query the VBIOS data tables to determine if the board supports SR-IOV.
3146 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
3148 if (amdgpu_sriov_vf(adev)) {
3149 if (adev->is_atom_fw) {
3150 if (amdgpu_atomfirmware_gpu_virtualization_supported(adev))
3151 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
3153 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
3154 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
3157 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
3158 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
3163 * amdgpu_device_asic_has_dc_support - determine if DC supports the asic
3165 * @asic_type: AMD asic type
3167 * Check if there is DC (new modesetting infrastructre) support for an asic.
3168 * returns true if DC has support, false if not.
3170 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
3172 switch (asic_type) {
3173 #if defined(CONFIG_DRM_AMD_DC)
3174 #if defined(CONFIG_DRM_AMD_DC_SI)
3185 * We have systems in the wild with these ASICs that require
3186 * LVDS and VGA support which is not supported with DC.
3188 * Fallback to the non-DC driver here by default so as not to
3189 * cause regressions.
3191 return amdgpu_dc > 0;
3195 case CHIP_POLARIS10:
3196 case CHIP_POLARIS11:
3197 case CHIP_POLARIS12:
3204 #if defined(CONFIG_DRM_AMD_DC_DCN)
3210 case CHIP_CYAN_SKILLFISH:
3211 case CHIP_SIENNA_CICHLID:
3212 case CHIP_NAVY_FLOUNDER:
3213 case CHIP_DIMGREY_CAVEFISH:
3214 case CHIP_BEIGE_GOBY:
3216 case CHIP_YELLOW_CARP:
3219 return amdgpu_dc != 0;
3223 DRM_INFO_ONCE("Display Core has been requested via kernel parameter "
3224 "but isn't supported by ASIC, ignoring\n");
3231 * amdgpu_device_has_dc_support - check if dc is supported
3233 * @adev: amdgpu_device pointer
3235 * Returns true for supported, false for not supported
3237 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
3239 if (amdgpu_sriov_vf(adev) ||
3240 adev->enable_virtual_display ||
3241 (adev->harvest_ip_mask & AMD_HARVEST_IP_DMU_MASK))
3244 return amdgpu_device_asic_has_dc_support(adev->asic_type);
3247 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
3249 struct amdgpu_device *adev =
3250 container_of(__work, struct amdgpu_device, xgmi_reset_work);
3251 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
3253 /* It's a bug to not have a hive within this function */
3258 * Use task barrier to synchronize all xgmi reset works across the
3259 * hive. task_barrier_enter and task_barrier_exit will block
3260 * until all the threads running the xgmi reset works reach
3261 * those points. task_barrier_full will do both blocks.
3263 if (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) {
3265 task_barrier_enter(&hive->tb);
3266 adev->asic_reset_res = amdgpu_device_baco_enter(adev_to_drm(adev));
3268 if (adev->asic_reset_res)
3271 task_barrier_exit(&hive->tb);
3272 adev->asic_reset_res = amdgpu_device_baco_exit(adev_to_drm(adev));
3274 if (adev->asic_reset_res)
3277 if (adev->mmhub.ras_funcs &&
3278 adev->mmhub.ras_funcs->reset_ras_error_count)
3279 adev->mmhub.ras_funcs->reset_ras_error_count(adev);
3282 task_barrier_full(&hive->tb);
3283 adev->asic_reset_res = amdgpu_asic_reset(adev);
3287 if (adev->asic_reset_res)
3288 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
3289 adev->asic_reset_res, adev_to_drm(adev)->unique);
3290 amdgpu_put_xgmi_hive(hive);
3293 static int amdgpu_device_get_job_timeout_settings(struct amdgpu_device *adev)
3295 char *input = amdgpu_lockup_timeout;
3296 char *timeout_setting = NULL;
3302 * By default timeout for non compute jobs is 10000
3303 * and 60000 for compute jobs.
3304 * In SR-IOV or passthrough mode, timeout for compute
3305 * jobs are 60000 by default.
3307 adev->gfx_timeout = msecs_to_jiffies(10000);
3308 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
3309 if (amdgpu_sriov_vf(adev))
3310 adev->compute_timeout = amdgpu_sriov_is_pp_one_vf(adev) ?
3311 msecs_to_jiffies(60000) : msecs_to_jiffies(10000);
3313 adev->compute_timeout = msecs_to_jiffies(60000);
3315 if (strnlen(input, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
3316 while ((timeout_setting = strsep(&input, ",")) &&
3317 strnlen(timeout_setting, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
3318 ret = kstrtol(timeout_setting, 0, &timeout);
3325 } else if (timeout < 0) {
3326 timeout = MAX_SCHEDULE_TIMEOUT;
3327 dev_warn(adev->dev, "lockup timeout disabled");
3328 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
3330 timeout = msecs_to_jiffies(timeout);
3335 adev->gfx_timeout = timeout;
3338 adev->compute_timeout = timeout;
3341 adev->sdma_timeout = timeout;
3344 adev->video_timeout = timeout;
3351 * There is only one value specified and
3352 * it should apply to all non-compute jobs.
3355 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
3356 if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev))
3357 adev->compute_timeout = adev->gfx_timeout;
3364 static const struct attribute *amdgpu_dev_attributes[] = {
3365 &dev_attr_product_name.attr,
3366 &dev_attr_product_number.attr,
3367 &dev_attr_serial_number.attr,
3368 &dev_attr_pcie_replay_count.attr,
3373 * amdgpu_device_init - initialize the driver
3375 * @adev: amdgpu_device pointer
3376 * @flags: driver flags
3378 * Initializes the driver info and hw (all asics).
3379 * Returns 0 for success or an error on failure.
3380 * Called at driver startup.
3382 int amdgpu_device_init(struct amdgpu_device *adev,
3385 struct drm_device *ddev = adev_to_drm(adev);
3386 struct pci_dev *pdev = adev->pdev;
3391 adev->shutdown = false;
3392 adev->flags = flags;
3394 if (amdgpu_force_asic_type >= 0 && amdgpu_force_asic_type < CHIP_LAST)
3395 adev->asic_type = amdgpu_force_asic_type;
3397 adev->asic_type = flags & AMD_ASIC_MASK;
3399 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
3400 if (amdgpu_emu_mode == 1)
3401 adev->usec_timeout *= 10;
3402 adev->gmc.gart_size = 512 * 1024 * 1024;
3403 adev->accel_working = false;
3404 adev->num_rings = 0;
3405 adev->mman.buffer_funcs = NULL;
3406 adev->mman.buffer_funcs_ring = NULL;
3407 adev->vm_manager.vm_pte_funcs = NULL;
3408 adev->vm_manager.vm_pte_num_scheds = 0;
3409 adev->gmc.gmc_funcs = NULL;
3410 adev->harvest_ip_mask = 0x0;
3411 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
3412 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
3414 adev->smc_rreg = &amdgpu_invalid_rreg;
3415 adev->smc_wreg = &amdgpu_invalid_wreg;
3416 adev->pcie_rreg = &amdgpu_invalid_rreg;
3417 adev->pcie_wreg = &amdgpu_invalid_wreg;
3418 adev->pciep_rreg = &amdgpu_invalid_rreg;
3419 adev->pciep_wreg = &amdgpu_invalid_wreg;
3420 adev->pcie_rreg64 = &amdgpu_invalid_rreg64;
3421 adev->pcie_wreg64 = &amdgpu_invalid_wreg64;
3422 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
3423 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
3424 adev->didt_rreg = &amdgpu_invalid_rreg;
3425 adev->didt_wreg = &amdgpu_invalid_wreg;
3426 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
3427 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
3428 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
3429 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
3431 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
3432 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
3433 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
3435 /* mutex initialization are all done here so we
3436 * can recall function without having locking issues */
3437 mutex_init(&adev->firmware.mutex);
3438 mutex_init(&adev->pm.mutex);
3439 mutex_init(&adev->gfx.gpu_clock_mutex);
3440 mutex_init(&adev->srbm_mutex);
3441 mutex_init(&adev->gfx.pipe_reserve_mutex);
3442 mutex_init(&adev->gfx.gfx_off_mutex);
3443 mutex_init(&adev->grbm_idx_mutex);
3444 mutex_init(&adev->mn_lock);
3445 mutex_init(&adev->virt.vf_errors.lock);
3446 hash_init(adev->mn_hash);
3447 atomic_set(&adev->in_gpu_reset, 0);
3448 init_rwsem(&adev->reset_sem);
3449 mutex_init(&adev->psp.mutex);
3450 mutex_init(&adev->notifier_lock);
3452 r = amdgpu_device_init_apu_flags(adev);
3456 r = amdgpu_device_check_arguments(adev);
3460 spin_lock_init(&adev->mmio_idx_lock);
3461 spin_lock_init(&adev->smc_idx_lock);
3462 spin_lock_init(&adev->pcie_idx_lock);
3463 spin_lock_init(&adev->uvd_ctx_idx_lock);
3464 spin_lock_init(&adev->didt_idx_lock);
3465 spin_lock_init(&adev->gc_cac_idx_lock);
3466 spin_lock_init(&adev->se_cac_idx_lock);
3467 spin_lock_init(&adev->audio_endpt_idx_lock);
3468 spin_lock_init(&adev->mm_stats.lock);
3470 INIT_LIST_HEAD(&adev->shadow_list);
3471 mutex_init(&adev->shadow_list_lock);
3473 INIT_LIST_HEAD(&adev->reset_list);
3475 INIT_DELAYED_WORK(&adev->delayed_init_work,
3476 amdgpu_device_delayed_init_work_handler);
3477 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
3478 amdgpu_device_delay_enable_gfx_off);
3480 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
3482 adev->gfx.gfx_off_req_count = 1;
3483 adev->pm.ac_power = power_supply_is_system_supplied() > 0;
3485 atomic_set(&adev->throttling_logging_enabled, 1);
3487 * If throttling continues, logging will be performed every minute
3488 * to avoid log flooding. "-1" is subtracted since the thermal
3489 * throttling interrupt comes every second. Thus, the total logging
3490 * interval is 59 seconds(retelimited printk interval) + 1(waiting
3491 * for throttling interrupt) = 60 seconds.
3493 ratelimit_state_init(&adev->throttling_logging_rs, (60 - 1) * HZ, 1);
3494 ratelimit_set_flags(&adev->throttling_logging_rs, RATELIMIT_MSG_ON_RELEASE);
3496 /* Registers mapping */
3497 /* TODO: block userspace mapping of io register */
3498 if (adev->asic_type >= CHIP_BONAIRE) {
3499 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
3500 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
3502 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
3503 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
3506 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
3507 if (adev->rmmio == NULL) {
3510 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
3511 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
3513 amdgpu_device_get_pcie_info(adev);
3516 DRM_INFO("MCBP is enabled\n");
3518 if (amdgpu_mes && adev->asic_type >= CHIP_NAVI10)
3519 adev->enable_mes = true;
3521 /* detect hw virtualization here */
3522 amdgpu_detect_virtualization(adev);
3524 r = amdgpu_device_get_job_timeout_settings(adev);
3526 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
3530 /* early init functions */
3531 r = amdgpu_device_ip_early_init(adev);
3535 /* enable PCIE atomic ops */
3536 if (amdgpu_sriov_vf(adev))
3537 adev->have_atomics_support = ((struct amd_sriov_msg_pf2vf_info *)
3538 adev->virt.fw_reserve.p_pf2vf)->pcie_atomic_ops_enabled_flags ==
3539 (PCI_EXP_DEVCAP2_ATOMIC_COMP32 | PCI_EXP_DEVCAP2_ATOMIC_COMP64);
3541 adev->have_atomics_support =
3542 !pci_enable_atomic_ops_to_root(adev->pdev,
3543 PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
3544 PCI_EXP_DEVCAP2_ATOMIC_COMP64);
3545 if (!adev->have_atomics_support)
3546 dev_info(adev->dev, "PCIE atomic ops is not supported\n");
3548 /* doorbell bar mapping and doorbell index init*/
3549 amdgpu_device_doorbell_init(adev);
3551 if (amdgpu_emu_mode == 1) {
3552 /* post the asic on emulation mode */
3553 emu_soc_asic_init(adev);
3554 goto fence_driver_init;
3557 amdgpu_reset_init(adev);
3559 /* detect if we are with an SRIOV vbios */
3560 amdgpu_device_detect_sriov_bios(adev);
3562 /* check if we need to reset the asic
3563 * E.g., driver was not cleanly unloaded previously, etc.
3565 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
3566 if (adev->gmc.xgmi.num_physical_nodes) {
3567 dev_info(adev->dev, "Pending hive reset.\n");
3568 adev->gmc.xgmi.pending_reset = true;
3569 /* Only need to init necessary block for SMU to handle the reset */
3570 for (i = 0; i < adev->num_ip_blocks; i++) {
3571 if (!adev->ip_blocks[i].status.valid)
3573 if (!(adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
3574 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
3575 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
3576 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC)) {
3577 DRM_DEBUG("IP %s disabled for hw_init.\n",
3578 adev->ip_blocks[i].version->funcs->name);
3579 adev->ip_blocks[i].status.hw = true;
3583 r = amdgpu_asic_reset(adev);
3585 dev_err(adev->dev, "asic reset on init failed\n");
3591 pci_enable_pcie_error_reporting(adev->pdev);
3593 /* Post card if necessary */
3594 if (amdgpu_device_need_post(adev)) {
3596 dev_err(adev->dev, "no vBIOS found\n");
3600 DRM_INFO("GPU posting now...\n");
3601 r = amdgpu_device_asic_init(adev);
3603 dev_err(adev->dev, "gpu post error!\n");
3608 if (adev->is_atom_fw) {
3609 /* Initialize clocks */
3610 r = amdgpu_atomfirmware_get_clock_info(adev);
3612 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
3613 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3617 /* Initialize clocks */
3618 r = amdgpu_atombios_get_clock_info(adev);
3620 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
3621 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3624 /* init i2c buses */
3625 if (!amdgpu_device_has_dc_support(adev))
3626 amdgpu_atombios_i2c_init(adev);
3631 r = amdgpu_fence_driver_sw_init(adev);
3633 dev_err(adev->dev, "amdgpu_fence_driver_sw_init failed\n");
3634 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
3638 /* init the mode config */
3639 drm_mode_config_init(adev_to_drm(adev));
3641 r = amdgpu_device_ip_init(adev);
3643 /* failed in exclusive mode due to timeout */
3644 if (amdgpu_sriov_vf(adev) &&
3645 !amdgpu_sriov_runtime(adev) &&
3646 amdgpu_virt_mmio_blocked(adev) &&
3647 !amdgpu_virt_wait_reset(adev)) {
3648 dev_err(adev->dev, "VF exclusive mode timeout\n");
3649 /* Don't send request since VF is inactive. */
3650 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
3651 adev->virt.ops = NULL;
3653 goto release_ras_con;
3655 dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
3656 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
3657 goto release_ras_con;
3660 amdgpu_fence_driver_hw_init(adev);
3663 "SE %d, SH per SE %d, CU per SH %d, active_cu_number %d\n",
3664 adev->gfx.config.max_shader_engines,
3665 adev->gfx.config.max_sh_per_se,
3666 adev->gfx.config.max_cu_per_sh,
3667 adev->gfx.cu_info.number);
3669 adev->accel_working = true;
3671 amdgpu_vm_check_compute_bug(adev);
3673 /* Initialize the buffer migration limit. */
3674 if (amdgpu_moverate >= 0)
3675 max_MBps = amdgpu_moverate;
3677 max_MBps = 8; /* Allow 8 MB/s. */
3678 /* Get a log2 for easy divisions. */
3679 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
3681 amdgpu_fbdev_init(adev);
3683 r = amdgpu_pm_sysfs_init(adev);
3685 adev->pm_sysfs_en = false;
3686 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
3688 adev->pm_sysfs_en = true;
3690 r = amdgpu_ucode_sysfs_init(adev);
3692 adev->ucode_sysfs_en = false;
3693 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
3695 adev->ucode_sysfs_en = true;
3697 if ((amdgpu_testing & 1)) {
3698 if (adev->accel_working)
3699 amdgpu_test_moves(adev);
3701 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
3703 if (amdgpu_benchmarking) {
3704 if (adev->accel_working)
3705 amdgpu_benchmark(adev, amdgpu_benchmarking);
3707 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
3711 * Register gpu instance before amdgpu_device_enable_mgpu_fan_boost.
3712 * Otherwise the mgpu fan boost feature will be skipped due to the
3713 * gpu instance is counted less.
3715 amdgpu_register_gpu_instance(adev);
3717 /* enable clockgating, etc. after ib tests, etc. since some blocks require
3718 * explicit gating rather than handling it automatically.
3720 if (!adev->gmc.xgmi.pending_reset) {
3721 r = amdgpu_device_ip_late_init(adev);
3723 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
3724 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
3725 goto release_ras_con;
3728 amdgpu_ras_resume(adev);
3729 queue_delayed_work(system_wq, &adev->delayed_init_work,
3730 msecs_to_jiffies(AMDGPU_RESUME_MS));
3733 if (amdgpu_sriov_vf(adev))
3734 flush_delayed_work(&adev->delayed_init_work);
3736 r = sysfs_create_files(&adev->dev->kobj, amdgpu_dev_attributes);
3738 dev_err(adev->dev, "Could not create amdgpu device attr\n");
3740 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3741 r = amdgpu_pmu_init(adev);
3743 dev_err(adev->dev, "amdgpu_pmu_init failed\n");
3745 /* Have stored pci confspace at hand for restore in sudden PCI error */
3746 if (amdgpu_device_cache_pci_state(adev->pdev))
3747 pci_restore_state(pdev);
3749 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
3750 /* this will fail for cards that aren't VGA class devices, just
3752 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3753 vga_client_register(adev->pdev, amdgpu_device_vga_set_decode);
3755 if (amdgpu_device_supports_px(ddev)) {
3757 vga_switcheroo_register_client(adev->pdev,
3758 &amdgpu_switcheroo_ops, px);
3759 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
3762 if (adev->gmc.xgmi.pending_reset)
3763 queue_delayed_work(system_wq, &mgpu_info.delayed_reset_work,
3764 msecs_to_jiffies(AMDGPU_RESUME_MS));
3769 amdgpu_release_ras_context(adev);
3772 amdgpu_vf_error_trans_all(adev);
3777 static void amdgpu_device_unmap_mmio(struct amdgpu_device *adev)
3779 /* Clear all CPU mappings pointing to this device */
3780 unmap_mapping_range(adev->ddev.anon_inode->i_mapping, 0, 0, 1);
3782 /* Unmap all mapped bars - Doorbell, registers and VRAM */
3783 amdgpu_device_doorbell_fini(adev);
3785 iounmap(adev->rmmio);
3787 if (adev->mman.aper_base_kaddr)
3788 iounmap(adev->mman.aper_base_kaddr);
3789 adev->mman.aper_base_kaddr = NULL;
3791 /* Memory manager related */
3792 if (!adev->gmc.xgmi.connected_to_cpu) {
3793 arch_phys_wc_del(adev->gmc.vram_mtrr);
3794 arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size);
3799 * amdgpu_device_fini - tear down the driver
3801 * @adev: amdgpu_device pointer
3803 * Tear down the driver info (all asics).
3804 * Called at driver shutdown.
3806 void amdgpu_device_fini_hw(struct amdgpu_device *adev)
3808 dev_info(adev->dev, "amdgpu: finishing device.\n");
3809 flush_delayed_work(&adev->delayed_init_work);
3810 if (adev->mman.initialized) {
3811 flush_delayed_work(&adev->mman.bdev.wq);
3812 ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
3814 adev->shutdown = true;
3816 /* make sure IB test finished before entering exclusive mode
3817 * to avoid preemption on IB test
3819 if (amdgpu_sriov_vf(adev)) {
3820 amdgpu_virt_request_full_gpu(adev, false);
3821 amdgpu_virt_fini_data_exchange(adev);
3824 /* disable all interrupts */
3825 amdgpu_irq_disable_all(adev);
3826 if (adev->mode_info.mode_config_initialized){
3827 if (!amdgpu_device_has_dc_support(adev))
3828 drm_helper_force_disable_all(adev_to_drm(adev));
3830 drm_atomic_helper_shutdown(adev_to_drm(adev));
3832 amdgpu_fence_driver_hw_fini(adev);
3834 if (adev->pm_sysfs_en)
3835 amdgpu_pm_sysfs_fini(adev);
3836 if (adev->ucode_sysfs_en)
3837 amdgpu_ucode_sysfs_fini(adev);
3838 sysfs_remove_files(&adev->dev->kobj, amdgpu_dev_attributes);
3840 amdgpu_fbdev_fini(adev);
3842 amdgpu_device_ip_fini_early(adev);
3844 amdgpu_irq_fini_hw(adev);
3846 ttm_device_clear_dma_mappings(&adev->mman.bdev);
3848 amdgpu_gart_dummy_page_fini(adev);
3850 amdgpu_device_unmap_mmio(adev);
3853 void amdgpu_device_fini_sw(struct amdgpu_device *adev)
3855 amdgpu_fence_driver_sw_fini(adev);
3856 amdgpu_device_ip_fini(adev);
3857 release_firmware(adev->firmware.gpu_info_fw);
3858 adev->firmware.gpu_info_fw = NULL;
3859 adev->accel_working = false;
3861 amdgpu_reset_fini(adev);
3863 /* free i2c buses */
3864 if (!amdgpu_device_has_dc_support(adev))
3865 amdgpu_i2c_fini(adev);
3867 if (amdgpu_emu_mode != 1)
3868 amdgpu_atombios_fini(adev);
3872 if (amdgpu_device_supports_px(adev_to_drm(adev))) {
3873 vga_switcheroo_unregister_client(adev->pdev);
3874 vga_switcheroo_fini_domain_pm_ops(adev->dev);
3876 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3877 vga_client_unregister(adev->pdev);
3879 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3880 amdgpu_pmu_fini(adev);
3881 if (adev->mman.discovery_bin)
3882 amdgpu_discovery_fini(adev);
3884 kfree(adev->pci_state);
3889 * amdgpu_device_evict_resources - evict device resources
3890 * @adev: amdgpu device object
3892 * Evicts all ttm device resources(vram BOs, gart table) from the lru list
3893 * of the vram memory type. Mainly used for evicting device resources
3897 static void amdgpu_device_evict_resources(struct amdgpu_device *adev)
3899 /* No need to evict vram on APUs for suspend to ram */
3900 if (adev->in_s3 && (adev->flags & AMD_IS_APU))
3903 if (amdgpu_ttm_evict_resources(adev, TTM_PL_VRAM))
3904 DRM_WARN("evicting device resources failed\n");
3912 * amdgpu_device_suspend - initiate device suspend
3914 * @dev: drm dev pointer
3915 * @fbcon : notify the fbdev of suspend
3917 * Puts the hw in the suspend state (all asics).
3918 * Returns 0 for success or an error on failure.
3919 * Called at driver suspend.
3921 int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
3923 struct amdgpu_device *adev = drm_to_adev(dev);
3925 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3928 adev->in_suspend = true;
3930 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DEV_D3))
3931 DRM_WARN("smart shift update failed\n");
3933 drm_kms_helper_poll_disable(dev);
3936 amdgpu_fbdev_set_suspend(adev, 1);
3938 cancel_delayed_work_sync(&adev->delayed_init_work);
3940 amdgpu_ras_suspend(adev);
3942 amdgpu_device_ip_suspend_phase1(adev);
3945 amdgpu_amdkfd_suspend(adev, adev->in_runpm);
3947 /* First evict vram memory */
3948 amdgpu_device_evict_resources(adev);
3950 amdgpu_fence_driver_hw_fini(adev);
3952 amdgpu_device_ip_suspend_phase2(adev);
3953 /* This second call to evict device resources is to evict
3954 * the gart page table using the CPU.
3956 amdgpu_device_evict_resources(adev);
3962 * amdgpu_device_resume - initiate device resume
3964 * @dev: drm dev pointer
3965 * @fbcon : notify the fbdev of resume
3967 * Bring the hw back to operating state (all asics).
3968 * Returns 0 for success or an error on failure.
3969 * Called at driver resume.
3971 int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
3973 struct amdgpu_device *adev = drm_to_adev(dev);
3976 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3980 amdgpu_gfx_state_change_set(adev, sGpuChangeState_D0Entry);
3983 if (amdgpu_device_need_post(adev)) {
3984 r = amdgpu_device_asic_init(adev);
3986 dev_err(adev->dev, "amdgpu asic init failed\n");
3989 r = amdgpu_device_ip_resume(adev);
3991 dev_err(adev->dev, "amdgpu_device_ip_resume failed (%d).\n", r);
3994 amdgpu_fence_driver_hw_init(adev);
3996 r = amdgpu_device_ip_late_init(adev);
4000 queue_delayed_work(system_wq, &adev->delayed_init_work,
4001 msecs_to_jiffies(AMDGPU_RESUME_MS));
4003 if (!adev->in_s0ix) {
4004 r = amdgpu_amdkfd_resume(adev, adev->in_runpm);
4009 /* Make sure IB tests flushed */
4010 flush_delayed_work(&adev->delayed_init_work);
4013 amdgpu_fbdev_set_suspend(adev, 0);
4015 drm_kms_helper_poll_enable(dev);
4017 amdgpu_ras_resume(adev);
4020 * Most of the connector probing functions try to acquire runtime pm
4021 * refs to ensure that the GPU is powered on when connector polling is
4022 * performed. Since we're calling this from a runtime PM callback,
4023 * trying to acquire rpm refs will cause us to deadlock.
4025 * Since we're guaranteed to be holding the rpm lock, it's safe to
4026 * temporarily disable the rpm helpers so this doesn't deadlock us.
4029 dev->dev->power.disable_depth++;
4031 if (!amdgpu_device_has_dc_support(adev))
4032 drm_helper_hpd_irq_event(dev);
4034 drm_kms_helper_hotplug_event(dev);
4036 dev->dev->power.disable_depth--;
4038 adev->in_suspend = false;
4040 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DEV_D0))
4041 DRM_WARN("smart shift update failed\n");
4047 * amdgpu_device_ip_check_soft_reset - did soft reset succeed
4049 * @adev: amdgpu_device pointer
4051 * The list of all the hardware IPs that make up the asic is walked and
4052 * the check_soft_reset callbacks are run. check_soft_reset determines
4053 * if the asic is still hung or not.
4054 * Returns true if any of the IPs are still in a hung state, false if not.
4056 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
4059 bool asic_hang = false;
4061 if (amdgpu_sriov_vf(adev))
4064 if (amdgpu_asic_need_full_reset(adev))
4067 for (i = 0; i < adev->num_ip_blocks; i++) {
4068 if (!adev->ip_blocks[i].status.valid)
4070 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
4071 adev->ip_blocks[i].status.hang =
4072 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
4073 if (adev->ip_blocks[i].status.hang) {
4074 dev_info(adev->dev, "IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
4082 * amdgpu_device_ip_pre_soft_reset - prepare for soft reset
4084 * @adev: amdgpu_device pointer
4086 * The list of all the hardware IPs that make up the asic is walked and the
4087 * pre_soft_reset callbacks are run if the block is hung. pre_soft_reset
4088 * handles any IP specific hardware or software state changes that are
4089 * necessary for a soft reset to succeed.
4090 * Returns 0 on success, negative error code on failure.
4092 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
4096 for (i = 0; i < adev->num_ip_blocks; i++) {
4097 if (!adev->ip_blocks[i].status.valid)
4099 if (adev->ip_blocks[i].status.hang &&
4100 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
4101 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
4111 * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed
4113 * @adev: amdgpu_device pointer
4115 * Some hardware IPs cannot be soft reset. If they are hung, a full gpu
4116 * reset is necessary to recover.
4117 * Returns true if a full asic reset is required, false if not.
4119 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
4123 if (amdgpu_asic_need_full_reset(adev))
4126 for (i = 0; i < adev->num_ip_blocks; i++) {
4127 if (!adev->ip_blocks[i].status.valid)
4129 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
4130 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
4131 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
4132 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
4133 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
4134 if (adev->ip_blocks[i].status.hang) {
4135 dev_info(adev->dev, "Some block need full reset!\n");
4144 * amdgpu_device_ip_soft_reset - do a soft reset
4146 * @adev: amdgpu_device pointer
4148 * The list of all the hardware IPs that make up the asic is walked and the
4149 * soft_reset callbacks are run if the block is hung. soft_reset handles any
4150 * IP specific hardware or software state changes that are necessary to soft
4152 * Returns 0 on success, negative error code on failure.
4154 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
4158 for (i = 0; i < adev->num_ip_blocks; i++) {
4159 if (!adev->ip_blocks[i].status.valid)
4161 if (adev->ip_blocks[i].status.hang &&
4162 adev->ip_blocks[i].version->funcs->soft_reset) {
4163 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
4173 * amdgpu_device_ip_post_soft_reset - clean up from soft reset
4175 * @adev: amdgpu_device pointer
4177 * The list of all the hardware IPs that make up the asic is walked and the
4178 * post_soft_reset callbacks are run if the asic was hung. post_soft_reset
4179 * handles any IP specific hardware or software state changes that are
4180 * necessary after the IP has been soft reset.
4181 * Returns 0 on success, negative error code on failure.
4183 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
4187 for (i = 0; i < adev->num_ip_blocks; i++) {
4188 if (!adev->ip_blocks[i].status.valid)
4190 if (adev->ip_blocks[i].status.hang &&
4191 adev->ip_blocks[i].version->funcs->post_soft_reset)
4192 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
4201 * amdgpu_device_recover_vram - Recover some VRAM contents
4203 * @adev: amdgpu_device pointer
4205 * Restores the contents of VRAM buffers from the shadows in GTT. Used to
4206 * restore things like GPUVM page tables after a GPU reset where
4207 * the contents of VRAM might be lost.
4210 * 0 on success, negative error code on failure.
4212 static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
4214 struct dma_fence *fence = NULL, *next = NULL;
4215 struct amdgpu_bo *shadow;
4216 struct amdgpu_bo_vm *vmbo;
4219 if (amdgpu_sriov_runtime(adev))
4220 tmo = msecs_to_jiffies(8000);
4222 tmo = msecs_to_jiffies(100);
4224 dev_info(adev->dev, "recover vram bo from shadow start\n");
4225 mutex_lock(&adev->shadow_list_lock);
4226 list_for_each_entry(vmbo, &adev->shadow_list, shadow_list) {
4228 /* No need to recover an evicted BO */
4229 if (shadow->tbo.resource->mem_type != TTM_PL_TT ||
4230 shadow->tbo.resource->start == AMDGPU_BO_INVALID_OFFSET ||
4231 shadow->parent->tbo.resource->mem_type != TTM_PL_VRAM)
4234 r = amdgpu_bo_restore_shadow(shadow, &next);
4239 tmo = dma_fence_wait_timeout(fence, false, tmo);
4240 dma_fence_put(fence);
4245 } else if (tmo < 0) {
4253 mutex_unlock(&adev->shadow_list_lock);
4256 tmo = dma_fence_wait_timeout(fence, false, tmo);
4257 dma_fence_put(fence);
4259 if (r < 0 || tmo <= 0) {
4260 dev_err(adev->dev, "recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
4264 dev_info(adev->dev, "recover vram bo from shadow done\n");
4270 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
4272 * @adev: amdgpu_device pointer
4273 * @from_hypervisor: request from hypervisor
4275 * do VF FLR and reinitialize Asic
4276 * return 0 means succeeded otherwise failed
4278 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
4279 bool from_hypervisor)
4283 if (from_hypervisor)
4284 r = amdgpu_virt_request_full_gpu(adev, true);
4286 r = amdgpu_virt_reset_gpu(adev);
4290 amdgpu_amdkfd_pre_reset(adev);
4292 /* Resume IP prior to SMC */
4293 r = amdgpu_device_ip_reinit_early_sriov(adev);
4297 amdgpu_virt_init_data_exchange(adev);
4298 /* we need recover gart prior to run SMC/CP/SDMA resume */
4299 amdgpu_gtt_mgr_recover(ttm_manager_type(&adev->mman.bdev, TTM_PL_TT));
4301 r = amdgpu_device_fw_loading(adev);
4305 /* now we are okay to resume SMC/CP/SDMA */
4306 r = amdgpu_device_ip_reinit_late_sriov(adev);
4310 amdgpu_irq_gpu_reset_resume_helper(adev);
4311 r = amdgpu_ib_ring_tests(adev);
4312 amdgpu_amdkfd_post_reset(adev);
4315 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
4316 amdgpu_inc_vram_lost(adev);
4317 r = amdgpu_device_recover_vram(adev);
4319 amdgpu_virt_release_full_gpu(adev, true);
4325 * amdgpu_device_has_job_running - check if there is any job in mirror list
4327 * @adev: amdgpu_device pointer
4329 * check if there is any job in mirror list
4331 bool amdgpu_device_has_job_running(struct amdgpu_device *adev)
4334 struct drm_sched_job *job;
4336 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4337 struct amdgpu_ring *ring = adev->rings[i];
4339 if (!ring || !ring->sched.thread)
4342 spin_lock(&ring->sched.job_list_lock);
4343 job = list_first_entry_or_null(&ring->sched.pending_list,
4344 struct drm_sched_job, list);
4345 spin_unlock(&ring->sched.job_list_lock);
4353 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
4355 * @adev: amdgpu_device pointer
4357 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
4360 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
4362 if (!amdgpu_device_ip_check_soft_reset(adev)) {
4363 dev_info(adev->dev, "Timeout, but no hardware hang detected.\n");
4367 if (amdgpu_gpu_recovery == 0)
4370 if (amdgpu_sriov_vf(adev))
4373 if (amdgpu_gpu_recovery == -1) {
4374 switch (adev->asic_type) {
4380 case CHIP_POLARIS10:
4381 case CHIP_POLARIS11:
4382 case CHIP_POLARIS12:
4393 case CHIP_SIENNA_CICHLID:
4394 case CHIP_NAVY_FLOUNDER:
4395 case CHIP_DIMGREY_CAVEFISH:
4396 case CHIP_BEIGE_GOBY:
4398 case CHIP_ALDEBARAN:
4408 dev_info(adev->dev, "GPU recovery disabled.\n");
4412 int amdgpu_device_mode1_reset(struct amdgpu_device *adev)
4417 amdgpu_atombios_scratch_regs_engine_hung(adev, true);
4419 dev_info(adev->dev, "GPU mode1 reset\n");
4422 pci_clear_master(adev->pdev);
4424 amdgpu_device_cache_pci_state(adev->pdev);
4426 if (amdgpu_dpm_is_mode1_reset_supported(adev)) {
4427 dev_info(adev->dev, "GPU smu mode1 reset\n");
4428 ret = amdgpu_dpm_mode1_reset(adev);
4430 dev_info(adev->dev, "GPU psp mode1 reset\n");
4431 ret = psp_gpu_reset(adev);
4435 dev_err(adev->dev, "GPU mode1 reset failed\n");
4437 amdgpu_device_load_pci_state(adev->pdev);
4439 /* wait for asic to come out of reset */
4440 for (i = 0; i < adev->usec_timeout; i++) {
4441 u32 memsize = adev->nbio.funcs->get_memsize(adev);
4443 if (memsize != 0xffffffff)
4448 amdgpu_atombios_scratch_regs_engine_hung(adev, false);
4452 int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev,
4453 struct amdgpu_reset_context *reset_context)
4456 struct amdgpu_job *job = NULL;
4457 bool need_full_reset =
4458 test_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags);
4460 if (reset_context->reset_req_dev == adev)
4461 job = reset_context->job;
4463 if (amdgpu_sriov_vf(adev)) {
4464 /* stop the data exchange thread */
4465 amdgpu_virt_fini_data_exchange(adev);
4468 /* block all schedulers and reset given job's ring */
4469 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4470 struct amdgpu_ring *ring = adev->rings[i];
4472 if (!ring || !ring->sched.thread)
4475 /*clear job fence from fence drv to avoid force_completion
4476 *leave NULL and vm flush fence in fence drv */
4477 for (j = 0; j <= ring->fence_drv.num_fences_mask; j++) {
4478 struct dma_fence *old, **ptr;
4480 ptr = &ring->fence_drv.fences[j];
4481 old = rcu_dereference_protected(*ptr, 1);
4482 if (old && test_bit(AMDGPU_FENCE_FLAG_EMBED_IN_JOB_BIT, &old->flags)) {
4483 RCU_INIT_POINTER(*ptr, NULL);
4486 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
4487 amdgpu_fence_driver_force_completion(ring);
4491 drm_sched_increase_karma(&job->base);
4493 r = amdgpu_reset_prepare_hwcontext(adev, reset_context);
4494 /* If reset handler not implemented, continue; otherwise return */
4500 /* Don't suspend on bare metal if we are not going to HW reset the ASIC */
4501 if (!amdgpu_sriov_vf(adev)) {
4503 if (!need_full_reset)
4504 need_full_reset = amdgpu_device_ip_need_full_reset(adev);
4506 if (!need_full_reset) {
4507 amdgpu_device_ip_pre_soft_reset(adev);
4508 r = amdgpu_device_ip_soft_reset(adev);
4509 amdgpu_device_ip_post_soft_reset(adev);
4510 if (r || amdgpu_device_ip_check_soft_reset(adev)) {
4511 dev_info(adev->dev, "soft reset failed, will fallback to full reset!\n");
4512 need_full_reset = true;
4516 if (need_full_reset)
4517 r = amdgpu_device_ip_suspend(adev);
4518 if (need_full_reset)
4519 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags);
4521 clear_bit(AMDGPU_NEED_FULL_RESET,
4522 &reset_context->flags);
4528 int amdgpu_do_asic_reset(struct list_head *device_list_handle,
4529 struct amdgpu_reset_context *reset_context)
4531 struct amdgpu_device *tmp_adev = NULL;
4532 bool need_full_reset, skip_hw_reset, vram_lost = false;
4535 /* Try reset handler method first */
4536 tmp_adev = list_first_entry(device_list_handle, struct amdgpu_device,
4538 r = amdgpu_reset_perform_reset(tmp_adev, reset_context);
4539 /* If reset handler not implemented, continue; otherwise return */
4545 /* Reset handler not implemented, use the default method */
4547 test_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags);
4548 skip_hw_reset = test_bit(AMDGPU_SKIP_HW_RESET, &reset_context->flags);
4551 * ASIC reset has to be done on all XGMI hive nodes ASAP
4552 * to allow proper links negotiation in FW (within 1 sec)
4554 if (!skip_hw_reset && need_full_reset) {
4555 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
4556 /* For XGMI run all resets in parallel to speed up the process */
4557 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
4558 tmp_adev->gmc.xgmi.pending_reset = false;
4559 if (!queue_work(system_unbound_wq, &tmp_adev->xgmi_reset_work))
4562 r = amdgpu_asic_reset(tmp_adev);
4565 dev_err(tmp_adev->dev, "ASIC reset failed with error, %d for drm dev, %s",
4566 r, adev_to_drm(tmp_adev)->unique);
4571 /* For XGMI wait for all resets to complete before proceed */
4573 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
4574 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
4575 flush_work(&tmp_adev->xgmi_reset_work);
4576 r = tmp_adev->asic_reset_res;
4584 if (!r && amdgpu_ras_intr_triggered()) {
4585 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
4586 if (tmp_adev->mmhub.ras_funcs &&
4587 tmp_adev->mmhub.ras_funcs->reset_ras_error_count)
4588 tmp_adev->mmhub.ras_funcs->reset_ras_error_count(tmp_adev);
4591 amdgpu_ras_intr_cleared();
4594 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
4595 if (need_full_reset) {
4597 r = amdgpu_device_asic_init(tmp_adev);
4599 dev_warn(tmp_adev->dev, "asic atom init failed!");
4601 dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n");
4602 r = amdgpu_amdkfd_resume_iommu(tmp_adev);
4606 r = amdgpu_device_ip_resume_phase1(tmp_adev);
4610 vram_lost = amdgpu_device_check_vram_lost(tmp_adev);
4612 DRM_INFO("VRAM is lost due to GPU reset!\n");
4613 amdgpu_inc_vram_lost(tmp_adev);
4616 r = amdgpu_gtt_mgr_recover(ttm_manager_type(&tmp_adev->mman.bdev, TTM_PL_TT));
4620 r = amdgpu_device_fw_loading(tmp_adev);
4624 r = amdgpu_device_ip_resume_phase2(tmp_adev);
4629 amdgpu_device_fill_reset_magic(tmp_adev);
4632 * Add this ASIC as tracked as reset was already
4633 * complete successfully.
4635 amdgpu_register_gpu_instance(tmp_adev);
4637 if (!reset_context->hive &&
4638 tmp_adev->gmc.xgmi.num_physical_nodes > 1)
4639 amdgpu_xgmi_add_device(tmp_adev);
4641 r = amdgpu_device_ip_late_init(tmp_adev);
4645 amdgpu_fbdev_set_suspend(tmp_adev, 0);
4648 * The GPU enters bad state once faulty pages
4649 * by ECC has reached the threshold, and ras
4650 * recovery is scheduled next. So add one check
4651 * here to break recovery if it indeed exceeds
4652 * bad page threshold, and remind user to
4653 * retire this GPU or setting one bigger
4654 * bad_page_threshold value to fix this once
4655 * probing driver again.
4657 if (!amdgpu_ras_eeprom_check_err_threshold(tmp_adev)) {
4659 amdgpu_ras_resume(tmp_adev);
4665 /* Update PSP FW topology after reset */
4666 if (reset_context->hive &&
4667 tmp_adev->gmc.xgmi.num_physical_nodes > 1)
4668 r = amdgpu_xgmi_update_topology(
4669 reset_context->hive, tmp_adev);
4675 amdgpu_irq_gpu_reset_resume_helper(tmp_adev);
4676 r = amdgpu_ib_ring_tests(tmp_adev);
4678 dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r);
4679 need_full_reset = true;
4686 r = amdgpu_device_recover_vram(tmp_adev);
4688 tmp_adev->asic_reset_res = r;
4692 if (need_full_reset)
4693 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags);
4695 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context->flags);
4699 static bool amdgpu_device_lock_adev(struct amdgpu_device *adev,
4700 struct amdgpu_hive_info *hive)
4702 if (atomic_cmpxchg(&adev->in_gpu_reset, 0, 1) != 0)
4706 down_write_nest_lock(&adev->reset_sem, &hive->hive_lock);
4708 down_write(&adev->reset_sem);
4711 switch (amdgpu_asic_reset_method(adev)) {
4712 case AMD_RESET_METHOD_MODE1:
4713 adev->mp1_state = PP_MP1_STATE_SHUTDOWN;
4715 case AMD_RESET_METHOD_MODE2:
4716 adev->mp1_state = PP_MP1_STATE_RESET;
4719 adev->mp1_state = PP_MP1_STATE_NONE;
4726 static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
4728 amdgpu_vf_error_trans_all(adev);
4729 adev->mp1_state = PP_MP1_STATE_NONE;
4730 atomic_set(&adev->in_gpu_reset, 0);
4731 up_write(&adev->reset_sem);
4735 * to lockup a list of amdgpu devices in a hive safely, if not a hive
4736 * with multiple nodes, it will be similar as amdgpu_device_lock_adev.
4738 * unlock won't require roll back.
4740 static int amdgpu_device_lock_hive_adev(struct amdgpu_device *adev, struct amdgpu_hive_info *hive)
4742 struct amdgpu_device *tmp_adev = NULL;
4744 if (adev->gmc.xgmi.num_physical_nodes > 1) {
4746 dev_err(adev->dev, "Hive is NULL while device has multiple xgmi nodes");
4749 list_for_each_entry(tmp_adev, &hive->device_list, gmc.xgmi.head) {
4750 if (!amdgpu_device_lock_adev(tmp_adev, hive))
4753 } else if (!amdgpu_device_lock_adev(adev, hive))
4758 if (!list_is_first(&tmp_adev->gmc.xgmi.head, &hive->device_list)) {
4760 * if the lockup iteration break in the middle of a hive,
4761 * it may means there may has a race issue,
4762 * or a hive device locked up independently.
4763 * we may be in trouble and may not, so will try to roll back
4764 * the lock and give out a warnning.
4766 dev_warn(tmp_adev->dev, "Hive lock iteration broke in the middle. Rolling back to unlock");
4767 list_for_each_entry_continue_reverse(tmp_adev, &hive->device_list, gmc.xgmi.head) {
4768 amdgpu_device_unlock_adev(tmp_adev);
4774 static void amdgpu_device_resume_display_audio(struct amdgpu_device *adev)
4776 struct pci_dev *p = NULL;
4778 p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus),
4779 adev->pdev->bus->number, 1);
4781 pm_runtime_enable(&(p->dev));
4782 pm_runtime_resume(&(p->dev));
4786 static int amdgpu_device_suspend_display_audio(struct amdgpu_device *adev)
4788 enum amd_reset_method reset_method;
4789 struct pci_dev *p = NULL;
4793 * For now, only BACO and mode1 reset are confirmed
4794 * to suffer the audio issue without proper suspended.
4796 reset_method = amdgpu_asic_reset_method(adev);
4797 if ((reset_method != AMD_RESET_METHOD_BACO) &&
4798 (reset_method != AMD_RESET_METHOD_MODE1))
4801 p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus),
4802 adev->pdev->bus->number, 1);
4806 expires = pm_runtime_autosuspend_expiration(&(p->dev));
4809 * If we cannot get the audio device autosuspend delay,
4810 * a fixed 4S interval will be used. Considering 3S is
4811 * the audio controller default autosuspend delay setting.
4812 * 4S used here is guaranteed to cover that.
4814 expires = ktime_get_mono_fast_ns() + NSEC_PER_SEC * 4ULL;
4816 while (!pm_runtime_status_suspended(&(p->dev))) {
4817 if (!pm_runtime_suspend(&(p->dev)))
4820 if (expires < ktime_get_mono_fast_ns()) {
4821 dev_warn(adev->dev, "failed to suspend display audio\n");
4822 /* TODO: abort the succeeding gpu reset? */
4827 pm_runtime_disable(&(p->dev));
4832 static void amdgpu_device_recheck_guilty_jobs(
4833 struct amdgpu_device *adev, struct list_head *device_list_handle,
4834 struct amdgpu_reset_context *reset_context)
4838 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4839 struct amdgpu_ring *ring = adev->rings[i];
4841 struct drm_sched_job *s_job;
4843 if (!ring || !ring->sched.thread)
4846 s_job = list_first_entry_or_null(&ring->sched.pending_list,
4847 struct drm_sched_job, list);
4851 /* clear job's guilty and depend the folowing step to decide the real one */
4852 drm_sched_reset_karma(s_job);
4853 drm_sched_resubmit_jobs_ext(&ring->sched, 1);
4855 ret = dma_fence_wait_timeout(s_job->s_fence->parent, false, ring->sched.timeout);
4856 if (ret == 0) { /* timeout */
4857 DRM_ERROR("Found the real bad job! ring:%s, job_id:%llx\n",
4858 ring->sched.name, s_job->id);
4861 drm_sched_increase_karma(s_job);
4864 if (amdgpu_sriov_vf(adev)) {
4865 amdgpu_virt_fini_data_exchange(adev);
4866 r = amdgpu_device_reset_sriov(adev, false);
4868 adev->asic_reset_res = r;
4870 clear_bit(AMDGPU_SKIP_HW_RESET,
4871 &reset_context->flags);
4872 r = amdgpu_do_asic_reset(device_list_handle,
4874 if (r && r == -EAGAIN)
4879 * add reset counter so that the following
4880 * resubmitted job could flush vmid
4882 atomic_inc(&adev->gpu_reset_counter);
4886 /* got the hw fence, signal finished fence */
4887 atomic_dec(ring->sched.score);
4888 dma_fence_get(&s_job->s_fence->finished);
4889 dma_fence_signal(&s_job->s_fence->finished);
4890 dma_fence_put(&s_job->s_fence->finished);
4892 /* remove node from list and free the job */
4893 spin_lock(&ring->sched.job_list_lock);
4894 list_del_init(&s_job->list);
4895 spin_unlock(&ring->sched.job_list_lock);
4896 ring->sched.ops->free_job(s_job);
4901 * amdgpu_device_gpu_recover - reset the asic and recover scheduler
4903 * @adev: amdgpu_device pointer
4904 * @job: which job trigger hang
4906 * Attempt to reset the GPU if it has hung (all asics).
4907 * Attempt to do soft-reset or full-reset and reinitialize Asic
4908 * Returns 0 for success or an error on failure.
4911 int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
4912 struct amdgpu_job *job)
4914 struct list_head device_list, *device_list_handle = NULL;
4915 bool job_signaled = false;
4916 struct amdgpu_hive_info *hive = NULL;
4917 struct amdgpu_device *tmp_adev = NULL;
4919 bool need_emergency_restart = false;
4920 bool audio_suspended = false;
4921 int tmp_vram_lost_counter;
4922 struct amdgpu_reset_context reset_context;
4924 memset(&reset_context, 0, sizeof(reset_context));
4927 * Special case: RAS triggered and full reset isn't supported
4929 need_emergency_restart = amdgpu_ras_need_emergency_restart(adev);
4932 * Flush RAM to disk so that after reboot
4933 * the user can read log and see why the system rebooted.
4935 if (need_emergency_restart && amdgpu_ras_get_context(adev)->reboot) {
4936 DRM_WARN("Emergency reboot.");
4939 emergency_restart();
4942 dev_info(adev->dev, "GPU %s begin!\n",
4943 need_emergency_restart ? "jobs stop":"reset");
4946 * Here we trylock to avoid chain of resets executing from
4947 * either trigger by jobs on different adevs in XGMI hive or jobs on
4948 * different schedulers for same device while this TO handler is running.
4949 * We always reset all schedulers for device and all devices for XGMI
4950 * hive so that should take care of them too.
4952 hive = amdgpu_get_xgmi_hive(adev);
4954 if (atomic_cmpxchg(&hive->in_reset, 0, 1) != 0) {
4955 DRM_INFO("Bailing on TDR for s_job:%llx, hive: %llx as another already in progress",
4956 job ? job->base.id : -1, hive->hive_id);
4957 amdgpu_put_xgmi_hive(hive);
4959 drm_sched_increase_karma(&job->base);
4962 mutex_lock(&hive->hive_lock);
4965 reset_context.method = AMD_RESET_METHOD_NONE;
4966 reset_context.reset_req_dev = adev;
4967 reset_context.job = job;
4968 reset_context.hive = hive;
4969 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
4972 * lock the device before we try to operate the linked list
4973 * if didn't get the device lock, don't touch the linked list since
4974 * others may iterating it.
4976 r = amdgpu_device_lock_hive_adev(adev, hive);
4978 dev_info(adev->dev, "Bailing on TDR for s_job:%llx, as another already in progress",
4979 job ? job->base.id : -1);
4981 /* even we skipped this reset, still need to set the job to guilty */
4983 drm_sched_increase_karma(&job->base);
4988 * Build list of devices to reset.
4989 * In case we are in XGMI hive mode, resort the device list
4990 * to put adev in the 1st position.
4992 INIT_LIST_HEAD(&device_list);
4993 if (adev->gmc.xgmi.num_physical_nodes > 1) {
4994 list_for_each_entry(tmp_adev, &hive->device_list, gmc.xgmi.head)
4995 list_add_tail(&tmp_adev->reset_list, &device_list);
4996 if (!list_is_first(&adev->reset_list, &device_list))
4997 list_rotate_to_front(&adev->reset_list, &device_list);
4998 device_list_handle = &device_list;
5000 list_add_tail(&adev->reset_list, &device_list);
5001 device_list_handle = &device_list;
5004 /* block all schedulers and reset given job's ring */
5005 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
5007 * Try to put the audio codec into suspend state
5008 * before gpu reset started.
5010 * Due to the power domain of the graphics device
5011 * is shared with AZ power domain. Without this,
5012 * we may change the audio hardware from behind
5013 * the audio driver's back. That will trigger
5014 * some audio codec errors.
5016 if (!amdgpu_device_suspend_display_audio(tmp_adev))
5017 audio_suspended = true;
5019 amdgpu_ras_set_error_query_ready(tmp_adev, false);
5021 cancel_delayed_work_sync(&tmp_adev->delayed_init_work);
5023 if (!amdgpu_sriov_vf(tmp_adev))
5024 amdgpu_amdkfd_pre_reset(tmp_adev);
5027 * Mark these ASICs to be reseted as untracked first
5028 * And add them back after reset completed
5030 amdgpu_unregister_gpu_instance(tmp_adev);
5032 amdgpu_fbdev_set_suspend(tmp_adev, 1);
5034 /* disable ras on ALL IPs */
5035 if (!need_emergency_restart &&
5036 amdgpu_device_ip_need_full_reset(tmp_adev))
5037 amdgpu_ras_suspend(tmp_adev);
5039 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5040 struct amdgpu_ring *ring = tmp_adev->rings[i];
5042 if (!ring || !ring->sched.thread)
5045 drm_sched_stop(&ring->sched, job ? &job->base : NULL);
5047 if (need_emergency_restart)
5048 amdgpu_job_stop_all_jobs_on_sched(&ring->sched);
5050 atomic_inc(&tmp_adev->gpu_reset_counter);
5053 if (need_emergency_restart)
5054 goto skip_sched_resume;
5057 * Must check guilty signal here since after this point all old
5058 * HW fences are force signaled.
5060 * job->base holds a reference to parent fence
5062 if (job && job->base.s_fence->parent &&
5063 dma_fence_is_signaled(job->base.s_fence->parent)) {
5064 job_signaled = true;
5065 dev_info(adev->dev, "Guilty job already signaled, skipping HW reset");
5069 retry: /* Rest of adevs pre asic reset from XGMI hive. */
5070 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
5071 r = amdgpu_device_pre_asic_reset(tmp_adev, &reset_context);
5072 /*TODO Should we stop ?*/
5074 dev_err(tmp_adev->dev, "GPU pre asic reset failed with err, %d for drm dev, %s ",
5075 r, adev_to_drm(tmp_adev)->unique);
5076 tmp_adev->asic_reset_res = r;
5080 tmp_vram_lost_counter = atomic_read(&((adev)->vram_lost_counter));
5081 /* Actual ASIC resets if needed.*/
5082 /* TODO Implement XGMI hive reset logic for SRIOV */
5083 if (amdgpu_sriov_vf(adev)) {
5084 r = amdgpu_device_reset_sriov(adev, job ? false : true);
5086 adev->asic_reset_res = r;
5088 r = amdgpu_do_asic_reset(device_list_handle, &reset_context);
5089 if (r && r == -EAGAIN)
5095 /* Post ASIC reset for all devs .*/
5096 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
5099 * Sometimes a later bad compute job can block a good gfx job as gfx
5100 * and compute ring share internal GC HW mutually. We add an additional
5101 * guilty jobs recheck step to find the real guilty job, it synchronously
5102 * submits and pends for the first job being signaled. If it gets timeout,
5103 * we identify it as a real guilty job.
5105 if (amdgpu_gpu_recovery == 2 &&
5106 !(tmp_vram_lost_counter < atomic_read(&adev->vram_lost_counter)))
5107 amdgpu_device_recheck_guilty_jobs(
5108 tmp_adev, device_list_handle, &reset_context);
5110 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5111 struct amdgpu_ring *ring = tmp_adev->rings[i];
5113 if (!ring || !ring->sched.thread)
5116 /* No point to resubmit jobs if we didn't HW reset*/
5117 if (!tmp_adev->asic_reset_res && !job_signaled)
5118 drm_sched_resubmit_jobs(&ring->sched);
5120 drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res);
5123 if (!amdgpu_device_has_dc_support(tmp_adev) && !job_signaled) {
5124 drm_helper_resume_force_mode(adev_to_drm(tmp_adev));
5127 tmp_adev->asic_reset_res = 0;
5130 /* bad news, how to tell it to userspace ? */
5131 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&tmp_adev->gpu_reset_counter));
5132 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
5134 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&tmp_adev->gpu_reset_counter));
5135 if (amdgpu_acpi_smart_shift_update(adev_to_drm(tmp_adev), AMDGPU_SS_DEV_D0))
5136 DRM_WARN("smart shift update failed\n");
5141 list_for_each_entry(tmp_adev, device_list_handle, reset_list) {
5142 /* unlock kfd: SRIOV would do it separately */
5143 if (!need_emergency_restart && !amdgpu_sriov_vf(tmp_adev))
5144 amdgpu_amdkfd_post_reset(tmp_adev);
5146 /* kfd_post_reset will do nothing if kfd device is not initialized,
5147 * need to bring up kfd here if it's not be initialized before
5149 if (!adev->kfd.init_complete)
5150 amdgpu_amdkfd_device_init(adev);
5152 if (audio_suspended)
5153 amdgpu_device_resume_display_audio(tmp_adev);
5154 amdgpu_device_unlock_adev(tmp_adev);
5159 atomic_set(&hive->in_reset, 0);
5160 mutex_unlock(&hive->hive_lock);
5161 amdgpu_put_xgmi_hive(hive);
5164 if (r && r != -EAGAIN)
5165 dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
5170 * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot
5172 * @adev: amdgpu_device pointer
5174 * Fetchs and stores in the driver the PCIE capabilities (gen speed
5175 * and lanes) of the slot the device is in. Handles APUs and
5176 * virtualized environments where PCIE config space may not be available.
5178 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
5180 struct pci_dev *pdev;
5181 enum pci_bus_speed speed_cap, platform_speed_cap;
5182 enum pcie_link_width platform_link_width;
5184 if (amdgpu_pcie_gen_cap)
5185 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
5187 if (amdgpu_pcie_lane_cap)
5188 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
5190 /* covers APUs as well */
5191 if (pci_is_root_bus(adev->pdev->bus)) {
5192 if (adev->pm.pcie_gen_mask == 0)
5193 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
5194 if (adev->pm.pcie_mlw_mask == 0)
5195 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
5199 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
5202 pcie_bandwidth_available(adev->pdev, NULL,
5203 &platform_speed_cap, &platform_link_width);
5205 if (adev->pm.pcie_gen_mask == 0) {
5208 speed_cap = pcie_get_speed_cap(pdev);
5209 if (speed_cap == PCI_SPEED_UNKNOWN) {
5210 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5211 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5212 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
5214 if (speed_cap == PCIE_SPEED_32_0GT)
5215 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5216 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5217 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
5218 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4 |
5219 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN5);
5220 else if (speed_cap == PCIE_SPEED_16_0GT)
5221 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5222 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5223 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
5224 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4);
5225 else if (speed_cap == PCIE_SPEED_8_0GT)
5226 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5227 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5228 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
5229 else if (speed_cap == PCIE_SPEED_5_0GT)
5230 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5231 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2);
5233 adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1;
5236 if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
5237 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5238 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
5240 if (platform_speed_cap == PCIE_SPEED_32_0GT)
5241 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5242 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5243 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
5244 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4 |
5245 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN5);
5246 else if (platform_speed_cap == PCIE_SPEED_16_0GT)
5247 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5248 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5249 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
5250 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4);
5251 else if (platform_speed_cap == PCIE_SPEED_8_0GT)
5252 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5253 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
5254 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3);
5255 else if (platform_speed_cap == PCIE_SPEED_5_0GT)
5256 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
5257 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
5259 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
5263 if (adev->pm.pcie_mlw_mask == 0) {
5264 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
5265 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
5267 switch (platform_link_width) {
5269 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
5270 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
5271 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
5272 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
5273 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
5274 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5275 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5278 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
5279 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
5280 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
5281 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
5282 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5283 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5286 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
5287 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
5288 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
5289 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5290 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5293 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
5294 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
5295 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5296 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5299 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
5300 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5301 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5304 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
5305 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
5308 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
5317 int amdgpu_device_baco_enter(struct drm_device *dev)
5319 struct amdgpu_device *adev = drm_to_adev(dev);
5320 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
5322 if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
5325 if (ras && adev->ras_enabled &&
5326 adev->nbio.funcs->enable_doorbell_interrupt)
5327 adev->nbio.funcs->enable_doorbell_interrupt(adev, false);
5329 return amdgpu_dpm_baco_enter(adev);
5332 int amdgpu_device_baco_exit(struct drm_device *dev)
5334 struct amdgpu_device *adev = drm_to_adev(dev);
5335 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
5338 if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
5341 ret = amdgpu_dpm_baco_exit(adev);
5345 if (ras && adev->ras_enabled &&
5346 adev->nbio.funcs->enable_doorbell_interrupt)
5347 adev->nbio.funcs->enable_doorbell_interrupt(adev, true);
5349 if (amdgpu_passthrough(adev) &&
5350 adev->nbio.funcs->clear_doorbell_interrupt)
5351 adev->nbio.funcs->clear_doorbell_interrupt(adev);
5356 static void amdgpu_cancel_all_tdr(struct amdgpu_device *adev)
5360 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5361 struct amdgpu_ring *ring = adev->rings[i];
5363 if (!ring || !ring->sched.thread)
5366 cancel_delayed_work_sync(&ring->sched.work_tdr);
5371 * amdgpu_pci_error_detected - Called when a PCI error is detected.
5372 * @pdev: PCI device struct
5373 * @state: PCI channel state
5375 * Description: Called when a PCI error is detected.
5377 * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT.
5379 pci_ers_result_t amdgpu_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
5381 struct drm_device *dev = pci_get_drvdata(pdev);
5382 struct amdgpu_device *adev = drm_to_adev(dev);
5385 DRM_INFO("PCI error: detected callback, state(%d)!!\n", state);
5387 if (adev->gmc.xgmi.num_physical_nodes > 1) {
5388 DRM_WARN("No support for XGMI hive yet...");
5389 return PCI_ERS_RESULT_DISCONNECT;
5392 adev->pci_channel_state = state;
5395 case pci_channel_io_normal:
5396 return PCI_ERS_RESULT_CAN_RECOVER;
5397 /* Fatal error, prepare for slot reset */
5398 case pci_channel_io_frozen:
5400 * Cancel and wait for all TDRs in progress if failing to
5401 * set adev->in_gpu_reset in amdgpu_device_lock_adev
5403 * Locking adev->reset_sem will prevent any external access
5404 * to GPU during PCI error recovery
5406 while (!amdgpu_device_lock_adev(adev, NULL))
5407 amdgpu_cancel_all_tdr(adev);
5410 * Block any work scheduling as we do for regular GPU reset
5411 * for the duration of the recovery
5413 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5414 struct amdgpu_ring *ring = adev->rings[i];
5416 if (!ring || !ring->sched.thread)
5419 drm_sched_stop(&ring->sched, NULL);
5421 atomic_inc(&adev->gpu_reset_counter);
5422 return PCI_ERS_RESULT_NEED_RESET;
5423 case pci_channel_io_perm_failure:
5424 /* Permanent error, prepare for device removal */
5425 return PCI_ERS_RESULT_DISCONNECT;
5428 return PCI_ERS_RESULT_NEED_RESET;
5432 * amdgpu_pci_mmio_enabled - Enable MMIO and dump debug registers
5433 * @pdev: pointer to PCI device
5435 pci_ers_result_t amdgpu_pci_mmio_enabled(struct pci_dev *pdev)
5438 DRM_INFO("PCI error: mmio enabled callback!!\n");
5440 /* TODO - dump whatever for debugging purposes */
5442 /* This called only if amdgpu_pci_error_detected returns
5443 * PCI_ERS_RESULT_CAN_RECOVER. Read/write to the device still
5444 * works, no need to reset slot.
5447 return PCI_ERS_RESULT_RECOVERED;
5451 * amdgpu_pci_slot_reset - Called when PCI slot has been reset.
5452 * @pdev: PCI device struct
5454 * Description: This routine is called by the pci error recovery
5455 * code after the PCI slot has been reset, just before we
5456 * should resume normal operations.
5458 pci_ers_result_t amdgpu_pci_slot_reset(struct pci_dev *pdev)
5460 struct drm_device *dev = pci_get_drvdata(pdev);
5461 struct amdgpu_device *adev = drm_to_adev(dev);
5463 struct amdgpu_reset_context reset_context;
5465 struct list_head device_list;
5467 DRM_INFO("PCI error: slot reset callback!!\n");
5469 memset(&reset_context, 0, sizeof(reset_context));
5471 INIT_LIST_HEAD(&device_list);
5472 list_add_tail(&adev->reset_list, &device_list);
5474 /* wait for asic to come out of reset */
5477 /* Restore PCI confspace */
5478 amdgpu_device_load_pci_state(pdev);
5480 /* confirm ASIC came out of reset */
5481 for (i = 0; i < adev->usec_timeout; i++) {
5482 memsize = amdgpu_asic_get_config_memsize(adev);
5484 if (memsize != 0xffffffff)
5488 if (memsize == 0xffffffff) {
5493 reset_context.method = AMD_RESET_METHOD_NONE;
5494 reset_context.reset_req_dev = adev;
5495 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
5496 set_bit(AMDGPU_SKIP_HW_RESET, &reset_context.flags);
5498 adev->no_hw_access = true;
5499 r = amdgpu_device_pre_asic_reset(adev, &reset_context);
5500 adev->no_hw_access = false;
5504 r = amdgpu_do_asic_reset(&device_list, &reset_context);
5508 if (amdgpu_device_cache_pci_state(adev->pdev))
5509 pci_restore_state(adev->pdev);
5511 DRM_INFO("PCIe error recovery succeeded\n");
5513 DRM_ERROR("PCIe error recovery failed, err:%d", r);
5514 amdgpu_device_unlock_adev(adev);
5517 return r ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED;
5521 * amdgpu_pci_resume() - resume normal ops after PCI reset
5522 * @pdev: pointer to PCI device
5524 * Called when the error recovery driver tells us that its
5525 * OK to resume normal operation.
5527 void amdgpu_pci_resume(struct pci_dev *pdev)
5529 struct drm_device *dev = pci_get_drvdata(pdev);
5530 struct amdgpu_device *adev = drm_to_adev(dev);
5534 DRM_INFO("PCI error: resume callback!!\n");
5536 /* Only continue execution for the case of pci_channel_io_frozen */
5537 if (adev->pci_channel_state != pci_channel_io_frozen)
5540 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5541 struct amdgpu_ring *ring = adev->rings[i];
5543 if (!ring || !ring->sched.thread)
5547 drm_sched_resubmit_jobs(&ring->sched);
5548 drm_sched_start(&ring->sched, true);
5551 amdgpu_device_unlock_adev(adev);
5554 bool amdgpu_device_cache_pci_state(struct pci_dev *pdev)
5556 struct drm_device *dev = pci_get_drvdata(pdev);
5557 struct amdgpu_device *adev = drm_to_adev(dev);
5560 r = pci_save_state(pdev);
5562 kfree(adev->pci_state);
5564 adev->pci_state = pci_store_saved_state(pdev);
5566 if (!adev->pci_state) {
5567 DRM_ERROR("Failed to store PCI saved state");
5571 DRM_WARN("Failed to save PCI state, err:%d\n", r);
5578 bool amdgpu_device_load_pci_state(struct pci_dev *pdev)
5580 struct drm_device *dev = pci_get_drvdata(pdev);
5581 struct amdgpu_device *adev = drm_to_adev(dev);
5584 if (!adev->pci_state)
5587 r = pci_load_saved_state(pdev, adev->pci_state);
5590 pci_restore_state(pdev);
5592 DRM_WARN("Failed to load PCI state, err:%d\n", r);
5599 void amdgpu_device_flush_hdp(struct amdgpu_device *adev,
5600 struct amdgpu_ring *ring)
5602 #ifdef CONFIG_X86_64
5603 if (adev->flags & AMD_IS_APU)
5606 if (adev->gmc.xgmi.connected_to_cpu)
5609 if (ring && ring->funcs->emit_hdp_flush)
5610 amdgpu_ring_emit_hdp_flush(ring);
5612 amdgpu_asic_flush_hdp(adev, ring);
5615 void amdgpu_device_invalidate_hdp(struct amdgpu_device *adev,
5616 struct amdgpu_ring *ring)
5618 #ifdef CONFIG_X86_64
5619 if (adev->flags & AMD_IS_APU)
5622 if (adev->gmc.xgmi.connected_to_cpu)
5625 amdgpu_asic_invalidate_hdp(adev, ring);