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"
68 #include <linux/suspend.h>
69 #include <drm/task_barrier.h>
71 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
72 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
73 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
74 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
75 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
76 MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin");
77 MODULE_FIRMWARE("amdgpu/renoir_gpu_info.bin");
78 MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin");
79 MODULE_FIRMWARE("amdgpu/navi14_gpu_info.bin");
80 MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin");
82 #define AMDGPU_RESUME_MS 2000
84 const char *amdgpu_asic_name[] = {
117 * DOC: pcie_replay_count
119 * The amdgpu driver provides a sysfs API for reporting the total number
120 * of PCIe replays (NAKs)
121 * The file pcie_replay_count is used for this and returns the total
122 * number of replays as a sum of the NAKs generated and NAKs received
125 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev,
126 struct device_attribute *attr, char *buf)
128 struct drm_device *ddev = dev_get_drvdata(dev);
129 struct amdgpu_device *adev = ddev->dev_private;
130 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
132 return snprintf(buf, PAGE_SIZE, "%llu\n", cnt);
135 static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
136 amdgpu_device_get_pcie_replay_count, NULL);
138 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
141 * amdgpu_device_supports_boco - Is the device a dGPU with HG/PX power control
143 * @dev: drm_device pointer
145 * Returns true if the device is a dGPU with HG/PX power control,
146 * otherwise return false.
148 bool amdgpu_device_supports_boco(struct drm_device *dev)
150 struct amdgpu_device *adev = dev->dev_private;
152 if (adev->flags & AMD_IS_PX)
158 * amdgpu_device_supports_baco - Does the device support BACO
160 * @dev: drm_device pointer
162 * Returns true if the device supporte BACO,
163 * otherwise return false.
165 bool amdgpu_device_supports_baco(struct drm_device *dev)
167 struct amdgpu_device *adev = dev->dev_private;
169 return amdgpu_asic_supports_baco(adev);
173 * VRAM access helper functions.
175 * amdgpu_device_vram_access - read/write a buffer in vram
177 * @adev: amdgpu_device pointer
178 * @pos: offset of the buffer in vram
179 * @buf: virtual address of the buffer in system memory
180 * @size: read/write size, sizeof(@buf) must > @size
181 * @write: true - write to vram, otherwise - read from vram
183 void amdgpu_device_vram_access(struct amdgpu_device *adev, loff_t pos,
184 uint32_t *buf, size_t size, bool write)
192 last = min(pos + size, adev->gmc.visible_vram_size);
194 void __iomem *addr = adev->mman.aper_base_kaddr + pos;
195 size_t count = last - pos;
198 memcpy_toio(addr, buf, count);
200 amdgpu_asic_flush_hdp(adev, NULL);
202 amdgpu_asic_invalidate_hdp(adev, NULL);
204 memcpy_fromio(buf, addr, count);
216 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
217 for (last = pos + size; pos < last; pos += 4) {
218 uint32_t tmp = pos >> 31;
220 WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)pos) | 0x80000000);
222 WREG32_NO_KIQ(mmMM_INDEX_HI, tmp);
226 WREG32_NO_KIQ(mmMM_DATA, *buf++);
228 *buf++ = RREG32_NO_KIQ(mmMM_DATA);
230 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
234 * MMIO register access helper functions.
237 * amdgpu_mm_rreg - read a memory mapped IO register
239 * @adev: amdgpu_device pointer
240 * @reg: dword aligned register offset
241 * @acc_flags: access flags which require special behavior
243 * Returns the 32 bit value from the offset specified.
245 uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
250 if ((acc_flags & AMDGPU_REGS_KIQ) || (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)))
251 return amdgpu_kiq_rreg(adev, reg);
253 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
254 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
258 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
259 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
260 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
261 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
263 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
268 * MMIO register read with bytes helper functions
269 * @offset:bytes offset from MMIO start
274 * amdgpu_mm_rreg8 - read a memory mapped IO register
276 * @adev: amdgpu_device pointer
277 * @offset: byte aligned register offset
279 * Returns the 8 bit value from the offset specified.
281 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset) {
282 if (offset < adev->rmmio_size)
283 return (readb(adev->rmmio + offset));
288 * MMIO register write with bytes helper functions
289 * @offset:bytes offset from MMIO start
290 * @value: the value want to be written to the register
294 * amdgpu_mm_wreg8 - read a memory mapped IO register
296 * @adev: amdgpu_device pointer
297 * @offset: byte aligned register offset
298 * @value: 8 bit value to write
300 * Writes the value specified to the offset specified.
302 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value) {
303 if (offset < adev->rmmio_size)
304 writeb(value, adev->rmmio + offset);
309 void static inline amdgpu_mm_wreg_mmio(struct amdgpu_device *adev, uint32_t reg, uint32_t v, uint32_t acc_flags)
311 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
313 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
314 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
318 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
319 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
320 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
321 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
324 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
330 * amdgpu_mm_wreg - write to a memory mapped IO register
332 * @adev: amdgpu_device pointer
333 * @reg: dword aligned register offset
334 * @v: 32 bit value to write to the register
335 * @acc_flags: access flags which require special behavior
337 * Writes the value specified to the offset specified.
339 void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
342 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
343 adev->last_mm_index = v;
346 if ((acc_flags & AMDGPU_REGS_KIQ) || (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)))
347 return amdgpu_kiq_wreg(adev, reg, v);
349 amdgpu_mm_wreg_mmio(adev, reg, v, acc_flags);
353 * amdgpu_mm_wreg_mmio_rlc - write register either with mmio or with RLC path if in range
355 * this function is invoked only the debugfs register access
357 void amdgpu_mm_wreg_mmio_rlc(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
360 if (amdgpu_sriov_fullaccess(adev) &&
361 adev->gfx.rlc.funcs &&
362 adev->gfx.rlc.funcs->is_rlcg_access_range) {
364 if (adev->gfx.rlc.funcs->is_rlcg_access_range(adev, reg))
365 return adev->gfx.rlc.funcs->rlcg_wreg(adev, reg, v);
368 amdgpu_mm_wreg_mmio(adev, reg, v, acc_flags);
372 * amdgpu_io_rreg - read an IO register
374 * @adev: amdgpu_device pointer
375 * @reg: dword aligned register offset
377 * Returns the 32 bit value from the offset specified.
379 u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
381 if ((reg * 4) < adev->rio_mem_size)
382 return ioread32(adev->rio_mem + (reg * 4));
384 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
385 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
390 * amdgpu_io_wreg - write to an IO register
392 * @adev: amdgpu_device pointer
393 * @reg: dword aligned register offset
394 * @v: 32 bit value to write to the register
396 * Writes the value specified to the offset specified.
398 void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
400 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
401 adev->last_mm_index = v;
404 if ((reg * 4) < adev->rio_mem_size)
405 iowrite32(v, adev->rio_mem + (reg * 4));
407 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
408 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
411 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
417 * amdgpu_mm_rdoorbell - read a doorbell dword
419 * @adev: amdgpu_device pointer
420 * @index: doorbell index
422 * Returns the value in the doorbell aperture at the
423 * requested doorbell index (CIK).
425 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
427 if (index < adev->doorbell.num_doorbells) {
428 return readl(adev->doorbell.ptr + index);
430 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
436 * amdgpu_mm_wdoorbell - write a doorbell dword
438 * @adev: amdgpu_device pointer
439 * @index: doorbell index
442 * Writes @v to the doorbell aperture at the
443 * requested doorbell index (CIK).
445 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
447 if (index < adev->doorbell.num_doorbells) {
448 writel(v, adev->doorbell.ptr + index);
450 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
455 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
457 * @adev: amdgpu_device pointer
458 * @index: doorbell index
460 * Returns the value in the doorbell aperture at the
461 * requested doorbell index (VEGA10+).
463 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
465 if (index < adev->doorbell.num_doorbells) {
466 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
468 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
474 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
476 * @adev: amdgpu_device pointer
477 * @index: doorbell index
480 * Writes @v to the doorbell aperture at the
481 * requested doorbell index (VEGA10+).
483 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
485 if (index < adev->doorbell.num_doorbells) {
486 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
488 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
493 * amdgpu_invalid_rreg - dummy reg read function
495 * @adev: amdgpu device pointer
496 * @reg: offset of register
498 * Dummy register read function. Used for register blocks
499 * that certain asics don't have (all asics).
500 * Returns the value in the register.
502 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
504 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
510 * amdgpu_invalid_wreg - dummy reg write function
512 * @adev: amdgpu device pointer
513 * @reg: offset of register
514 * @v: value to write to the register
516 * Dummy register read function. Used for register blocks
517 * that certain asics don't have (all asics).
519 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
521 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
527 * amdgpu_invalid_rreg64 - dummy 64 bit reg read function
529 * @adev: amdgpu device pointer
530 * @reg: offset of register
532 * Dummy register read function. Used for register blocks
533 * that certain asics don't have (all asics).
534 * Returns the value in the register.
536 static uint64_t amdgpu_invalid_rreg64(struct amdgpu_device *adev, uint32_t reg)
538 DRM_ERROR("Invalid callback to read 64 bit register 0x%04X\n", reg);
544 * amdgpu_invalid_wreg64 - dummy reg write function
546 * @adev: amdgpu device pointer
547 * @reg: offset of register
548 * @v: value to write to the register
550 * Dummy register read function. Used for register blocks
551 * that certain asics don't have (all asics).
553 static void amdgpu_invalid_wreg64(struct amdgpu_device *adev, uint32_t reg, uint64_t v)
555 DRM_ERROR("Invalid callback to write 64 bit register 0x%04X with 0x%08llX\n",
561 * amdgpu_block_invalid_rreg - dummy reg read function
563 * @adev: amdgpu device pointer
564 * @block: offset of instance
565 * @reg: offset of register
567 * Dummy register read function. Used for register blocks
568 * that certain asics don't have (all asics).
569 * Returns the value in the register.
571 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
572 uint32_t block, uint32_t reg)
574 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
581 * amdgpu_block_invalid_wreg - dummy reg write function
583 * @adev: amdgpu device pointer
584 * @block: offset of instance
585 * @reg: offset of register
586 * @v: value to write to the register
588 * Dummy register read function. Used for register blocks
589 * that certain asics don't have (all asics).
591 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
593 uint32_t reg, uint32_t v)
595 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
601 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
603 * @adev: amdgpu device pointer
605 * Allocates a scratch page of VRAM for use by various things in the
608 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
610 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
611 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
612 &adev->vram_scratch.robj,
613 &adev->vram_scratch.gpu_addr,
614 (void **)&adev->vram_scratch.ptr);
618 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
620 * @adev: amdgpu device pointer
622 * Frees the VRAM scratch page.
624 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
626 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
630 * amdgpu_device_program_register_sequence - program an array of registers.
632 * @adev: amdgpu_device pointer
633 * @registers: pointer to the register array
634 * @array_size: size of the register array
636 * Programs an array or registers with and and or masks.
637 * This is a helper for setting golden registers.
639 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
640 const u32 *registers,
641 const u32 array_size)
643 u32 tmp, reg, and_mask, or_mask;
649 for (i = 0; i < array_size; i +=3) {
650 reg = registers[i + 0];
651 and_mask = registers[i + 1];
652 or_mask = registers[i + 2];
654 if (and_mask == 0xffffffff) {
659 if (adev->family >= AMDGPU_FAMILY_AI)
660 tmp |= (or_mask & and_mask);
669 * amdgpu_device_pci_config_reset - reset the GPU
671 * @adev: amdgpu_device pointer
673 * Resets the GPU using the pci config reset sequence.
674 * Only applicable to asics prior to vega10.
676 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
678 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
682 * GPU doorbell aperture helpers function.
685 * amdgpu_device_doorbell_init - Init doorbell driver information.
687 * @adev: amdgpu_device pointer
689 * Init doorbell driver information (CIK)
690 * Returns 0 on success, error on failure.
692 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
695 /* No doorbell on SI hardware generation */
696 if (adev->asic_type < CHIP_BONAIRE) {
697 adev->doorbell.base = 0;
698 adev->doorbell.size = 0;
699 adev->doorbell.num_doorbells = 0;
700 adev->doorbell.ptr = NULL;
704 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
707 amdgpu_asic_init_doorbell_index(adev);
709 /* doorbell bar mapping */
710 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
711 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
713 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
714 adev->doorbell_index.max_assignment+1);
715 if (adev->doorbell.num_doorbells == 0)
718 /* For Vega, reserve and map two pages on doorbell BAR since SDMA
719 * paging queue doorbell use the second page. The
720 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the
721 * doorbells are in the first page. So with paging queue enabled,
722 * the max num_doorbells should + 1 page (0x400 in dword)
724 if (adev->asic_type >= CHIP_VEGA10)
725 adev->doorbell.num_doorbells += 0x400;
727 adev->doorbell.ptr = ioremap(adev->doorbell.base,
728 adev->doorbell.num_doorbells *
730 if (adev->doorbell.ptr == NULL)
737 * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
739 * @adev: amdgpu_device pointer
741 * Tear down doorbell driver information (CIK)
743 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
745 iounmap(adev->doorbell.ptr);
746 adev->doorbell.ptr = NULL;
752 * amdgpu_device_wb_*()
753 * Writeback is the method by which the GPU updates special pages in memory
754 * with the status of certain GPU events (fences, ring pointers,etc.).
758 * amdgpu_device_wb_fini - Disable Writeback and free memory
760 * @adev: amdgpu_device pointer
762 * Disables Writeback and frees the Writeback memory (all asics).
763 * Used at driver shutdown.
765 static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
767 if (adev->wb.wb_obj) {
768 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
770 (void **)&adev->wb.wb);
771 adev->wb.wb_obj = NULL;
776 * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
778 * @adev: amdgpu_device pointer
780 * Initializes writeback and allocates writeback memory (all asics).
781 * Used at driver startup.
782 * Returns 0 on success or an -error on failure.
784 static int amdgpu_device_wb_init(struct amdgpu_device *adev)
788 if (adev->wb.wb_obj == NULL) {
789 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
790 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
791 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
792 &adev->wb.wb_obj, &adev->wb.gpu_addr,
793 (void **)&adev->wb.wb);
795 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
799 adev->wb.num_wb = AMDGPU_MAX_WB;
800 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
802 /* clear wb memory */
803 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
810 * amdgpu_device_wb_get - Allocate a wb entry
812 * @adev: amdgpu_device pointer
815 * Allocate a wb slot for use by the driver (all asics).
816 * Returns 0 on success or -EINVAL on failure.
818 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
820 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
822 if (offset < adev->wb.num_wb) {
823 __set_bit(offset, adev->wb.used);
824 *wb = offset << 3; /* convert to dw offset */
832 * amdgpu_device_wb_free - Free a wb entry
834 * @adev: amdgpu_device pointer
837 * Free a wb slot allocated for use by the driver (all asics)
839 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
842 if (wb < adev->wb.num_wb)
843 __clear_bit(wb, adev->wb.used);
847 * amdgpu_device_resize_fb_bar - try to resize FB BAR
849 * @adev: amdgpu_device pointer
851 * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not
852 * to fail, but if any of the BARs is not accessible after the size we abort
853 * driver loading by returning -ENODEV.
855 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
857 u64 space_needed = roundup_pow_of_two(adev->gmc.real_vram_size);
858 u32 rbar_size = order_base_2(((space_needed >> 20) | 1)) - 1;
859 struct pci_bus *root;
860 struct resource *res;
866 if (amdgpu_sriov_vf(adev))
869 /* Check if the root BUS has 64bit memory resources */
870 root = adev->pdev->bus;
874 pci_bus_for_each_resource(root, res, i) {
875 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
876 res->start > 0x100000000ull)
880 /* Trying to resize is pointless without a root hub window above 4GB */
884 /* Disable memory decoding while we change the BAR addresses and size */
885 pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd);
886 pci_write_config_word(adev->pdev, PCI_COMMAND,
887 cmd & ~PCI_COMMAND_MEMORY);
889 /* Free the VRAM and doorbell BAR, we most likely need to move both. */
890 amdgpu_device_doorbell_fini(adev);
891 if (adev->asic_type >= CHIP_BONAIRE)
892 pci_release_resource(adev->pdev, 2);
894 pci_release_resource(adev->pdev, 0);
896 r = pci_resize_resource(adev->pdev, 0, rbar_size);
898 DRM_INFO("Not enough PCI address space for a large BAR.");
899 else if (r && r != -ENOTSUPP)
900 DRM_ERROR("Problem resizing BAR0 (%d).", r);
902 pci_assign_unassigned_bus_resources(adev->pdev->bus);
904 /* When the doorbell or fb BAR isn't available we have no chance of
907 r = amdgpu_device_doorbell_init(adev);
908 if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET))
911 pci_write_config_word(adev->pdev, PCI_COMMAND, cmd);
917 * GPU helpers function.
920 * amdgpu_device_need_post - check if the hw need post or not
922 * @adev: amdgpu_device pointer
924 * Check if the asic has been initialized (all asics) at driver startup
925 * or post is needed if hw reset is performed.
926 * Returns true if need or false if not.
928 bool amdgpu_device_need_post(struct amdgpu_device *adev)
932 if (amdgpu_sriov_vf(adev))
935 if (amdgpu_passthrough(adev)) {
936 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
937 * some old smc fw still need driver do vPost otherwise gpu hang, while
938 * those smc fw version above 22.15 doesn't have this flaw, so we force
939 * vpost executed for smc version below 22.15
941 if (adev->asic_type == CHIP_FIJI) {
944 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
945 /* force vPost if error occured */
949 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
950 if (fw_ver < 0x00160e00)
955 if (adev->has_hw_reset) {
956 adev->has_hw_reset = false;
960 /* bios scratch used on CIK+ */
961 if (adev->asic_type >= CHIP_BONAIRE)
962 return amdgpu_atombios_scratch_need_asic_init(adev);
964 /* check MEM_SIZE for older asics */
965 reg = amdgpu_asic_get_config_memsize(adev);
967 if ((reg != 0) && (reg != 0xffffffff))
973 /* if we get transitioned to only one device, take VGA back */
975 * amdgpu_device_vga_set_decode - enable/disable vga decode
977 * @cookie: amdgpu_device pointer
978 * @state: enable/disable vga decode
980 * Enable/disable vga decode (all asics).
981 * Returns VGA resource flags.
983 static unsigned int amdgpu_device_vga_set_decode(void *cookie, bool state)
985 struct amdgpu_device *adev = cookie;
986 amdgpu_asic_set_vga_state(adev, state);
988 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
989 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
991 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
995 * amdgpu_device_check_block_size - validate the vm block size
997 * @adev: amdgpu_device pointer
999 * Validates the vm block size specified via module parameter.
1000 * The vm block size defines number of bits in page table versus page directory,
1001 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1002 * page table and the remaining bits are in the page directory.
1004 static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
1006 /* defines number of bits in page table versus page directory,
1007 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1008 * page table and the remaining bits are in the page directory */
1009 if (amdgpu_vm_block_size == -1)
1012 if (amdgpu_vm_block_size < 9) {
1013 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1014 amdgpu_vm_block_size);
1015 amdgpu_vm_block_size = -1;
1020 * amdgpu_device_check_vm_size - validate the vm size
1022 * @adev: amdgpu_device pointer
1024 * Validates the vm size in GB specified via module parameter.
1025 * The VM size is the size of the GPU virtual memory space in GB.
1027 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
1029 /* no need to check the default value */
1030 if (amdgpu_vm_size == -1)
1033 if (amdgpu_vm_size < 1) {
1034 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1036 amdgpu_vm_size = -1;
1040 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
1043 bool is_os_64 = (sizeof(void *) == 8);
1044 uint64_t total_memory;
1045 uint64_t dram_size_seven_GB = 0x1B8000000;
1046 uint64_t dram_size_three_GB = 0xB8000000;
1048 if (amdgpu_smu_memory_pool_size == 0)
1052 DRM_WARN("Not 64-bit OS, feature not supported\n");
1056 total_memory = (uint64_t)si.totalram * si.mem_unit;
1058 if ((amdgpu_smu_memory_pool_size == 1) ||
1059 (amdgpu_smu_memory_pool_size == 2)) {
1060 if (total_memory < dram_size_three_GB)
1062 } else if ((amdgpu_smu_memory_pool_size == 4) ||
1063 (amdgpu_smu_memory_pool_size == 8)) {
1064 if (total_memory < dram_size_seven_GB)
1067 DRM_WARN("Smu memory pool size not supported\n");
1070 adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28;
1075 DRM_WARN("No enough system memory\n");
1077 adev->pm.smu_prv_buffer_size = 0;
1081 * amdgpu_device_check_arguments - validate module params
1083 * @adev: amdgpu_device pointer
1085 * Validates certain module parameters and updates
1086 * the associated values used by the driver (all asics).
1088 static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
1090 if (amdgpu_sched_jobs < 4) {
1091 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1093 amdgpu_sched_jobs = 4;
1094 } else if (!is_power_of_2(amdgpu_sched_jobs)){
1095 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1097 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1100 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
1101 /* gart size must be greater or equal to 32M */
1102 dev_warn(adev->dev, "gart size (%d) too small\n",
1104 amdgpu_gart_size = -1;
1107 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
1108 /* gtt size must be greater or equal to 32M */
1109 dev_warn(adev->dev, "gtt size (%d) too small\n",
1111 amdgpu_gtt_size = -1;
1114 /* valid range is between 4 and 9 inclusive */
1115 if (amdgpu_vm_fragment_size != -1 &&
1116 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
1117 dev_warn(adev->dev, "valid range is between 4 and 9\n");
1118 amdgpu_vm_fragment_size = -1;
1121 amdgpu_device_check_smu_prv_buffer_size(adev);
1123 amdgpu_device_check_vm_size(adev);
1125 amdgpu_device_check_block_size(adev);
1127 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
1133 * amdgpu_switcheroo_set_state - set switcheroo state
1135 * @pdev: pci dev pointer
1136 * @state: vga_switcheroo state
1138 * Callback for the switcheroo driver. Suspends or resumes the
1139 * the asics before or after it is powered up using ACPI methods.
1141 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1143 struct drm_device *dev = pci_get_drvdata(pdev);
1146 if (amdgpu_device_supports_boco(dev) && state == VGA_SWITCHEROO_OFF)
1149 if (state == VGA_SWITCHEROO_ON) {
1150 pr_info("amdgpu: switched on\n");
1151 /* don't suspend or resume card normally */
1152 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1154 pci_set_power_state(dev->pdev, PCI_D0);
1155 pci_restore_state(dev->pdev);
1156 r = pci_enable_device(dev->pdev);
1158 DRM_WARN("pci_enable_device failed (%d)\n", r);
1159 amdgpu_device_resume(dev, true);
1161 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1162 drm_kms_helper_poll_enable(dev);
1164 pr_info("amdgpu: switched off\n");
1165 drm_kms_helper_poll_disable(dev);
1166 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1167 amdgpu_device_suspend(dev, true);
1168 pci_save_state(dev->pdev);
1169 /* Shut down the device */
1170 pci_disable_device(dev->pdev);
1171 pci_set_power_state(dev->pdev, PCI_D3cold);
1172 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1177 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1179 * @pdev: pci dev pointer
1181 * Callback for the switcheroo driver. Check of the switcheroo
1182 * state can be changed.
1183 * Returns true if the state can be changed, false if not.
1185 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1187 struct drm_device *dev = pci_get_drvdata(pdev);
1190 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1191 * locking inversion with the driver load path. And the access here is
1192 * completely racy anyway. So don't bother with locking for now.
1194 return atomic_read(&dev->open_count) == 0;
1197 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1198 .set_gpu_state = amdgpu_switcheroo_set_state,
1200 .can_switch = amdgpu_switcheroo_can_switch,
1204 * amdgpu_device_ip_set_clockgating_state - set the CG state
1206 * @dev: amdgpu_device pointer
1207 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1208 * @state: clockgating state (gate or ungate)
1210 * Sets the requested clockgating state for all instances of
1211 * the hardware IP specified.
1212 * Returns the error code from the last instance.
1214 int amdgpu_device_ip_set_clockgating_state(void *dev,
1215 enum amd_ip_block_type block_type,
1216 enum amd_clockgating_state state)
1218 struct amdgpu_device *adev = dev;
1221 for (i = 0; i < adev->num_ip_blocks; i++) {
1222 if (!adev->ip_blocks[i].status.valid)
1224 if (adev->ip_blocks[i].version->type != block_type)
1226 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1228 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1229 (void *)adev, state);
1231 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1232 adev->ip_blocks[i].version->funcs->name, r);
1238 * amdgpu_device_ip_set_powergating_state - set the PG state
1240 * @dev: amdgpu_device pointer
1241 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1242 * @state: powergating state (gate or ungate)
1244 * Sets the requested powergating state for all instances of
1245 * the hardware IP specified.
1246 * Returns the error code from the last instance.
1248 int amdgpu_device_ip_set_powergating_state(void *dev,
1249 enum amd_ip_block_type block_type,
1250 enum amd_powergating_state state)
1252 struct amdgpu_device *adev = dev;
1255 for (i = 0; i < adev->num_ip_blocks; i++) {
1256 if (!adev->ip_blocks[i].status.valid)
1258 if (adev->ip_blocks[i].version->type != block_type)
1260 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1262 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1263 (void *)adev, state);
1265 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1266 adev->ip_blocks[i].version->funcs->name, r);
1272 * amdgpu_device_ip_get_clockgating_state - get the CG state
1274 * @adev: amdgpu_device pointer
1275 * @flags: clockgating feature flags
1277 * Walks the list of IPs on the device and updates the clockgating
1278 * flags for each IP.
1279 * Updates @flags with the feature flags for each hardware IP where
1280 * clockgating is enabled.
1282 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1287 for (i = 0; i < adev->num_ip_blocks; i++) {
1288 if (!adev->ip_blocks[i].status.valid)
1290 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1291 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1296 * amdgpu_device_ip_wait_for_idle - wait for idle
1298 * @adev: amdgpu_device pointer
1299 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1301 * Waits for the request hardware IP to be idle.
1302 * Returns 0 for success or a negative error code on failure.
1304 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1305 enum amd_ip_block_type block_type)
1309 for (i = 0; i < adev->num_ip_blocks; i++) {
1310 if (!adev->ip_blocks[i].status.valid)
1312 if (adev->ip_blocks[i].version->type == block_type) {
1313 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
1324 * amdgpu_device_ip_is_idle - is the hardware IP idle
1326 * @adev: amdgpu_device pointer
1327 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1329 * Check if the hardware IP is idle or not.
1330 * Returns true if it the IP is idle, false if not.
1332 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1333 enum amd_ip_block_type block_type)
1337 for (i = 0; i < adev->num_ip_blocks; i++) {
1338 if (!adev->ip_blocks[i].status.valid)
1340 if (adev->ip_blocks[i].version->type == block_type)
1341 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
1348 * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1350 * @adev: amdgpu_device pointer
1351 * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
1353 * Returns a pointer to the hardware IP block structure
1354 * if it exists for the asic, otherwise NULL.
1356 struct amdgpu_ip_block *
1357 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1358 enum amd_ip_block_type type)
1362 for (i = 0; i < adev->num_ip_blocks; i++)
1363 if (adev->ip_blocks[i].version->type == type)
1364 return &adev->ip_blocks[i];
1370 * amdgpu_device_ip_block_version_cmp
1372 * @adev: amdgpu_device pointer
1373 * @type: enum amd_ip_block_type
1374 * @major: major version
1375 * @minor: minor version
1377 * return 0 if equal or greater
1378 * return 1 if smaller or the ip_block doesn't exist
1380 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1381 enum amd_ip_block_type type,
1382 u32 major, u32 minor)
1384 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
1386 if (ip_block && ((ip_block->version->major > major) ||
1387 ((ip_block->version->major == major) &&
1388 (ip_block->version->minor >= minor))))
1395 * amdgpu_device_ip_block_add
1397 * @adev: amdgpu_device pointer
1398 * @ip_block_version: pointer to the IP to add
1400 * Adds the IP block driver information to the collection of IPs
1403 int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1404 const struct amdgpu_ip_block_version *ip_block_version)
1406 if (!ip_block_version)
1409 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
1410 ip_block_version->funcs->name);
1412 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1418 * amdgpu_device_enable_virtual_display - enable virtual display feature
1420 * @adev: amdgpu_device pointer
1422 * Enabled the virtual display feature if the user has enabled it via
1423 * the module parameter virtual_display. This feature provides a virtual
1424 * display hardware on headless boards or in virtualized environments.
1425 * This function parses and validates the configuration string specified by
1426 * the user and configues the virtual display configuration (number of
1427 * virtual connectors, crtcs, etc.) specified.
1429 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
1431 adev->enable_virtual_display = false;
1433 if (amdgpu_virtual_display) {
1434 struct drm_device *ddev = adev->ddev;
1435 const char *pci_address_name = pci_name(ddev->pdev);
1436 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
1438 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1439 pciaddstr_tmp = pciaddstr;
1440 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1441 pciaddname = strsep(&pciaddname_tmp, ",");
1442 if (!strcmp("all", pciaddname)
1443 || !strcmp(pci_address_name, pciaddname)) {
1447 adev->enable_virtual_display = true;
1450 res = kstrtol(pciaddname_tmp, 10,
1458 adev->mode_info.num_crtc = num_crtc;
1460 adev->mode_info.num_crtc = 1;
1466 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1467 amdgpu_virtual_display, pci_address_name,
1468 adev->enable_virtual_display, adev->mode_info.num_crtc);
1475 * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware
1477 * @adev: amdgpu_device pointer
1479 * Parses the asic configuration parameters specified in the gpu info
1480 * firmware and makes them availale to the driver for use in configuring
1482 * Returns 0 on success, -EINVAL on failure.
1484 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1486 const char *chip_name;
1489 const struct gpu_info_firmware_header_v1_0 *hdr;
1491 adev->firmware.gpu_info_fw = NULL;
1493 switch (adev->asic_type) {
1497 case CHIP_POLARIS10:
1498 case CHIP_POLARIS11:
1499 case CHIP_POLARIS12:
1503 #ifdef CONFIG_DRM_AMDGPU_SI
1510 #ifdef CONFIG_DRM_AMDGPU_CIK
1521 chip_name = "vega10";
1524 chip_name = "vega12";
1527 if (adev->rev_id >= 8)
1528 chip_name = "raven2";
1529 else if (adev->pdev->device == 0x15d8)
1530 chip_name = "picasso";
1532 chip_name = "raven";
1535 chip_name = "arcturus";
1538 chip_name = "renoir";
1541 chip_name = "navi10";
1544 chip_name = "navi14";
1547 chip_name = "navi12";
1551 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
1552 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
1555 "Failed to load gpu_info firmware \"%s\"\n",
1559 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
1562 "Failed to validate gpu_info firmware \"%s\"\n",
1567 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
1568 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1570 switch (hdr->version_major) {
1573 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
1574 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
1575 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1577 if (amdgpu_discovery && adev->asic_type >= CHIP_NAVI10)
1578 goto parse_soc_bounding_box;
1580 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1581 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1582 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1583 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
1584 adev->gfx.config.max_texture_channel_caches =
1585 le32_to_cpu(gpu_info_fw->gc_num_tccs);
1586 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1587 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1588 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1589 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
1590 adev->gfx.config.double_offchip_lds_buf =
1591 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1592 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
1593 adev->gfx.cu_info.max_waves_per_simd =
1594 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1595 adev->gfx.cu_info.max_scratch_slots_per_cu =
1596 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1597 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
1598 if (hdr->version_minor >= 1) {
1599 const struct gpu_info_firmware_v1_1 *gpu_info_fw =
1600 (const struct gpu_info_firmware_v1_1 *)(adev->firmware.gpu_info_fw->data +
1601 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1602 adev->gfx.config.num_sc_per_sh =
1603 le32_to_cpu(gpu_info_fw->num_sc_per_sh);
1604 adev->gfx.config.num_packer_per_sc =
1605 le32_to_cpu(gpu_info_fw->num_packer_per_sc);
1608 parse_soc_bounding_box:
1610 * soc bounding box info is not integrated in disocovery table,
1611 * we always need to parse it from gpu info firmware.
1613 if (hdr->version_minor == 2) {
1614 const struct gpu_info_firmware_v1_2 *gpu_info_fw =
1615 (const struct gpu_info_firmware_v1_2 *)(adev->firmware.gpu_info_fw->data +
1616 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1617 adev->dm.soc_bounding_box = &gpu_info_fw->soc_bounding_box;
1623 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1632 * amdgpu_device_ip_early_init - run early init for hardware IPs
1634 * @adev: amdgpu_device pointer
1636 * Early initialization pass for hardware IPs. The hardware IPs that make
1637 * up each asic are discovered each IP's early_init callback is run. This
1638 * is the first stage in initializing the asic.
1639 * Returns 0 on success, negative error code on failure.
1641 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
1645 amdgpu_device_enable_virtual_display(adev);
1647 switch (adev->asic_type) {
1651 case CHIP_POLARIS10:
1652 case CHIP_POLARIS11:
1653 case CHIP_POLARIS12:
1657 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
1658 adev->family = AMDGPU_FAMILY_CZ;
1660 adev->family = AMDGPU_FAMILY_VI;
1662 r = vi_set_ip_blocks(adev);
1666 #ifdef CONFIG_DRM_AMDGPU_SI
1672 adev->family = AMDGPU_FAMILY_SI;
1673 r = si_set_ip_blocks(adev);
1678 #ifdef CONFIG_DRM_AMDGPU_CIK
1684 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1685 adev->family = AMDGPU_FAMILY_CI;
1687 adev->family = AMDGPU_FAMILY_KV;
1689 r = cik_set_ip_blocks(adev);
1700 if (adev->asic_type == CHIP_RAVEN ||
1701 adev->asic_type == CHIP_RENOIR)
1702 adev->family = AMDGPU_FAMILY_RV;
1704 adev->family = AMDGPU_FAMILY_AI;
1706 r = soc15_set_ip_blocks(adev);
1713 adev->family = AMDGPU_FAMILY_NV;
1715 r = nv_set_ip_blocks(adev);
1720 /* FIXME: not supported yet */
1724 r = amdgpu_device_parse_gpu_info_fw(adev);
1728 if (amdgpu_discovery && adev->asic_type >= CHIP_NAVI10)
1729 amdgpu_discovery_get_gfx_info(adev);
1731 amdgpu_amdkfd_device_probe(adev);
1733 if (amdgpu_sriov_vf(adev)) {
1734 r = amdgpu_virt_request_full_gpu(adev, true);
1739 adev->pm.pp_feature = amdgpu_pp_feature_mask;
1740 if (amdgpu_sriov_vf(adev) || sched_policy == KFD_SCHED_POLICY_NO_HWS)
1741 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
1743 for (i = 0; i < adev->num_ip_blocks; i++) {
1744 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1745 DRM_ERROR("disabled ip block: %d <%s>\n",
1746 i, adev->ip_blocks[i].version->funcs->name);
1747 adev->ip_blocks[i].status.valid = false;
1749 if (adev->ip_blocks[i].version->funcs->early_init) {
1750 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
1752 adev->ip_blocks[i].status.valid = false;
1754 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1755 adev->ip_blocks[i].version->funcs->name, r);
1758 adev->ip_blocks[i].status.valid = true;
1761 adev->ip_blocks[i].status.valid = true;
1764 /* get the vbios after the asic_funcs are set up */
1765 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) {
1767 if (!amdgpu_get_bios(adev))
1770 r = amdgpu_atombios_init(adev);
1772 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
1773 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
1779 adev->cg_flags &= amdgpu_cg_mask;
1780 adev->pg_flags &= amdgpu_pg_mask;
1785 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev)
1789 for (i = 0; i < adev->num_ip_blocks; i++) {
1790 if (!adev->ip_blocks[i].status.sw)
1792 if (adev->ip_blocks[i].status.hw)
1794 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1795 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
1796 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
1797 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1799 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1800 adev->ip_blocks[i].version->funcs->name, r);
1803 adev->ip_blocks[i].status.hw = true;
1810 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev)
1814 for (i = 0; i < adev->num_ip_blocks; i++) {
1815 if (!adev->ip_blocks[i].status.sw)
1817 if (adev->ip_blocks[i].status.hw)
1819 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1821 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1822 adev->ip_blocks[i].version->funcs->name, r);
1825 adev->ip_blocks[i].status.hw = true;
1831 static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
1835 uint32_t smu_version;
1837 if (adev->asic_type >= CHIP_VEGA10) {
1838 for (i = 0; i < adev->num_ip_blocks; i++) {
1839 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_PSP)
1842 /* no need to do the fw loading again if already done*/
1843 if (adev->ip_blocks[i].status.hw == true)
1846 if (adev->in_gpu_reset || adev->in_suspend) {
1847 r = adev->ip_blocks[i].version->funcs->resume(adev);
1849 DRM_ERROR("resume of IP block <%s> failed %d\n",
1850 adev->ip_blocks[i].version->funcs->name, r);
1854 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1856 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1857 adev->ip_blocks[i].version->funcs->name, r);
1862 adev->ip_blocks[i].status.hw = true;
1867 if (!amdgpu_sriov_vf(adev) || adev->asic_type == CHIP_TONGA)
1868 r = amdgpu_pm_load_smu_firmware(adev, &smu_version);
1874 * amdgpu_device_ip_init - run init for hardware IPs
1876 * @adev: amdgpu_device pointer
1878 * Main initialization pass for hardware IPs. The list of all the hardware
1879 * IPs that make up the asic is walked and the sw_init and hw_init callbacks
1880 * are run. sw_init initializes the software state associated with each IP
1881 * and hw_init initializes the hardware associated with each IP.
1882 * Returns 0 on success, negative error code on failure.
1884 static int amdgpu_device_ip_init(struct amdgpu_device *adev)
1888 r = amdgpu_ras_init(adev);
1892 for (i = 0; i < adev->num_ip_blocks; i++) {
1893 if (!adev->ip_blocks[i].status.valid)
1895 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
1897 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1898 adev->ip_blocks[i].version->funcs->name, r);
1901 adev->ip_blocks[i].status.sw = true;
1903 /* need to do gmc hw init early so we can allocate gpu mem */
1904 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
1905 r = amdgpu_device_vram_scratch_init(adev);
1907 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
1910 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
1912 DRM_ERROR("hw_init %d failed %d\n", i, r);
1915 r = amdgpu_device_wb_init(adev);
1917 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
1920 adev->ip_blocks[i].status.hw = true;
1922 /* right after GMC hw init, we create CSA */
1923 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
1924 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
1925 AMDGPU_GEM_DOMAIN_VRAM,
1928 DRM_ERROR("allocate CSA failed %d\n", r);
1935 if (amdgpu_sriov_vf(adev))
1936 amdgpu_virt_init_data_exchange(adev);
1938 r = amdgpu_ib_pool_init(adev);
1940 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
1941 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
1945 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
1949 r = amdgpu_device_ip_hw_init_phase1(adev);
1953 r = amdgpu_device_fw_loading(adev);
1957 r = amdgpu_device_ip_hw_init_phase2(adev);
1962 * retired pages will be loaded from eeprom and reserved here,
1963 * it should be called after amdgpu_device_ip_hw_init_phase2 since
1964 * for some ASICs the RAS EEPROM code relies on SMU fully functioning
1965 * for I2C communication which only true at this point.
1966 * recovery_init may fail, but it can free all resources allocated by
1967 * itself and its failure should not stop amdgpu init process.
1969 * Note: theoretically, this should be called before all vram allocations
1970 * to protect retired page from abusing
1972 amdgpu_ras_recovery_init(adev);
1974 if (adev->gmc.xgmi.num_physical_nodes > 1)
1975 amdgpu_xgmi_add_device(adev);
1976 amdgpu_amdkfd_device_init(adev);
1979 if (amdgpu_sriov_vf(adev))
1980 amdgpu_virt_release_full_gpu(adev, true);
1986 * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer
1988 * @adev: amdgpu_device pointer
1990 * Writes a reset magic value to the gart pointer in VRAM. The driver calls
1991 * this function before a GPU reset. If the value is retained after a
1992 * GPU reset, VRAM has not been lost. Some GPU resets may destry VRAM contents.
1994 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
1996 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
2000 * amdgpu_device_check_vram_lost - check if vram is valid
2002 * @adev: amdgpu_device pointer
2004 * Checks the reset magic value written to the gart pointer in VRAM.
2005 * The driver calls this after a GPU reset to see if the contents of
2006 * VRAM is lost or now.
2007 * returns true if vram is lost, false if not.
2009 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
2011 return !!memcmp(adev->gart.ptr, adev->reset_magic,
2012 AMDGPU_RESET_MAGIC_NUM);
2016 * amdgpu_device_set_cg_state - set clockgating for amdgpu device
2018 * @adev: amdgpu_device pointer
2019 * @state: clockgating state (gate or ungate)
2021 * The list of all the hardware IPs that make up the asic is walked and the
2022 * set_clockgating_state callbacks are run.
2023 * Late initialization pass enabling clockgating for hardware IPs.
2024 * Fini or suspend, pass disabling clockgating for hardware IPs.
2025 * Returns 0 on success, negative error code on failure.
2028 static int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
2029 enum amd_clockgating_state state)
2033 if (amdgpu_emu_mode == 1)
2036 for (j = 0; j < adev->num_ip_blocks; j++) {
2037 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2038 if (!adev->ip_blocks[i].status.late_initialized)
2040 /* skip CG for VCE/UVD, it's handled specially */
2041 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2042 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2043 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2044 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2045 adev->ip_blocks[i].version->funcs->set_clockgating_state) {
2046 /* enable clockgating to save power */
2047 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
2050 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
2051 adev->ip_blocks[i].version->funcs->name, r);
2060 static int amdgpu_device_set_pg_state(struct amdgpu_device *adev, enum amd_powergating_state state)
2064 if (amdgpu_emu_mode == 1)
2067 for (j = 0; j < adev->num_ip_blocks; j++) {
2068 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2069 if (!adev->ip_blocks[i].status.late_initialized)
2071 /* skip CG for VCE/UVD, it's handled specially */
2072 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2073 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2074 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2075 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2076 adev->ip_blocks[i].version->funcs->set_powergating_state) {
2077 /* enable powergating to save power */
2078 r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev,
2081 DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n",
2082 adev->ip_blocks[i].version->funcs->name, r);
2090 static int amdgpu_device_enable_mgpu_fan_boost(void)
2092 struct amdgpu_gpu_instance *gpu_ins;
2093 struct amdgpu_device *adev;
2096 mutex_lock(&mgpu_info.mutex);
2099 * MGPU fan boost feature should be enabled
2100 * only when there are two or more dGPUs in
2103 if (mgpu_info.num_dgpu < 2)
2106 for (i = 0; i < mgpu_info.num_dgpu; i++) {
2107 gpu_ins = &(mgpu_info.gpu_ins[i]);
2108 adev = gpu_ins->adev;
2109 if (!(adev->flags & AMD_IS_APU) &&
2110 !gpu_ins->mgpu_fan_enabled &&
2111 adev->powerplay.pp_funcs &&
2112 adev->powerplay.pp_funcs->enable_mgpu_fan_boost) {
2113 ret = amdgpu_dpm_enable_mgpu_fan_boost(adev);
2117 gpu_ins->mgpu_fan_enabled = 1;
2122 mutex_unlock(&mgpu_info.mutex);
2128 * amdgpu_device_ip_late_init - run late init for hardware IPs
2130 * @adev: amdgpu_device pointer
2132 * Late initialization pass for hardware IPs. The list of all the hardware
2133 * IPs that make up the asic is walked and the late_init callbacks are run.
2134 * late_init covers any special initialization that an IP requires
2135 * after all of the have been initialized or something that needs to happen
2136 * late in the init process.
2137 * Returns 0 on success, negative error code on failure.
2139 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
2141 struct amdgpu_gpu_instance *gpu_instance;
2144 for (i = 0; i < adev->num_ip_blocks; i++) {
2145 if (!adev->ip_blocks[i].status.hw)
2147 if (adev->ip_blocks[i].version->funcs->late_init) {
2148 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
2150 DRM_ERROR("late_init of IP block <%s> failed %d\n",
2151 adev->ip_blocks[i].version->funcs->name, r);
2155 adev->ip_blocks[i].status.late_initialized = true;
2158 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
2159 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
2161 amdgpu_device_fill_reset_magic(adev);
2163 r = amdgpu_device_enable_mgpu_fan_boost();
2165 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
2168 if (adev->gmc.xgmi.num_physical_nodes > 1) {
2169 mutex_lock(&mgpu_info.mutex);
2172 * Reset device p-state to low as this was booted with high.
2174 * This should be performed only after all devices from the same
2175 * hive get initialized.
2177 * However, it's unknown how many device in the hive in advance.
2178 * As this is counted one by one during devices initializations.
2180 * So, we wait for all XGMI interlinked devices initialized.
2181 * This may bring some delays as those devices may come from
2182 * different hives. But that should be OK.
2184 if (mgpu_info.num_dgpu == adev->gmc.xgmi.num_physical_nodes) {
2185 for (i = 0; i < mgpu_info.num_gpu; i++) {
2186 gpu_instance = &(mgpu_info.gpu_ins[i]);
2187 if (gpu_instance->adev->flags & AMD_IS_APU)
2190 r = amdgpu_xgmi_set_pstate(gpu_instance->adev, 0);
2192 DRM_ERROR("pstate setting failed (%d).\n", r);
2198 mutex_unlock(&mgpu_info.mutex);
2205 * amdgpu_device_ip_fini - run fini for hardware IPs
2207 * @adev: amdgpu_device pointer
2209 * Main teardown pass for hardware IPs. The list of all the hardware
2210 * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks
2211 * are run. hw_fini tears down the hardware associated with each IP
2212 * and sw_fini tears down any software state associated with each IP.
2213 * Returns 0 on success, negative error code on failure.
2215 static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
2219 amdgpu_ras_pre_fini(adev);
2221 if (adev->gmc.xgmi.num_physical_nodes > 1)
2222 amdgpu_xgmi_remove_device(adev);
2224 amdgpu_amdkfd_device_fini(adev);
2226 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2227 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2229 /* need to disable SMC first */
2230 for (i = 0; i < adev->num_ip_blocks; i++) {
2231 if (!adev->ip_blocks[i].status.hw)
2233 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2234 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2235 /* XXX handle errors */
2237 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2238 adev->ip_blocks[i].version->funcs->name, r);
2240 adev->ip_blocks[i].status.hw = false;
2245 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2246 if (!adev->ip_blocks[i].status.hw)
2249 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2250 /* XXX handle errors */
2252 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2253 adev->ip_blocks[i].version->funcs->name, r);
2256 adev->ip_blocks[i].status.hw = false;
2260 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2261 if (!adev->ip_blocks[i].status.sw)
2264 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2265 amdgpu_ucode_free_bo(adev);
2266 amdgpu_free_static_csa(&adev->virt.csa_obj);
2267 amdgpu_device_wb_fini(adev);
2268 amdgpu_device_vram_scratch_fini(adev);
2269 amdgpu_ib_pool_fini(adev);
2272 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
2273 /* XXX handle errors */
2275 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
2276 adev->ip_blocks[i].version->funcs->name, r);
2278 adev->ip_blocks[i].status.sw = false;
2279 adev->ip_blocks[i].status.valid = false;
2282 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2283 if (!adev->ip_blocks[i].status.late_initialized)
2285 if (adev->ip_blocks[i].version->funcs->late_fini)
2286 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
2287 adev->ip_blocks[i].status.late_initialized = false;
2290 amdgpu_ras_fini(adev);
2292 if (amdgpu_sriov_vf(adev))
2293 if (amdgpu_virt_release_full_gpu(adev, false))
2294 DRM_ERROR("failed to release exclusive mode on fini\n");
2300 * amdgpu_device_delayed_init_work_handler - work handler for IB tests
2302 * @work: work_struct.
2304 static void amdgpu_device_delayed_init_work_handler(struct work_struct *work)
2306 struct amdgpu_device *adev =
2307 container_of(work, struct amdgpu_device, delayed_init_work.work);
2310 r = amdgpu_ib_ring_tests(adev);
2312 DRM_ERROR("ib ring test failed (%d).\n", r);
2315 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)
2317 struct amdgpu_device *adev =
2318 container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);
2320 mutex_lock(&adev->gfx.gfx_off_mutex);
2321 if (!adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {
2322 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))
2323 adev->gfx.gfx_off_state = true;
2325 mutex_unlock(&adev->gfx.gfx_off_mutex);
2329 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
2331 * @adev: amdgpu_device pointer
2333 * Main suspend function for hardware IPs. The list of all the hardware
2334 * IPs that make up the asic is walked, clockgating is disabled and the
2335 * suspend callbacks are run. suspend puts the hardware and software state
2336 * in each IP into a state suitable for suspend.
2337 * Returns 0 on success, negative error code on failure.
2339 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2343 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2344 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2346 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2347 if (!adev->ip_blocks[i].status.valid)
2349 /* displays are handled separately */
2350 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) {
2351 /* XXX handle errors */
2352 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2353 /* XXX handle errors */
2355 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2356 adev->ip_blocks[i].version->funcs->name, r);
2359 adev->ip_blocks[i].status.hw = false;
2367 * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2)
2369 * @adev: amdgpu_device pointer
2371 * Main suspend function for hardware IPs. The list of all the hardware
2372 * IPs that make up the asic is walked, clockgating is disabled and the
2373 * suspend callbacks are run. suspend puts the hardware and software state
2374 * in each IP into a state suitable for suspend.
2375 * Returns 0 on success, negative error code on failure.
2377 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
2381 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2382 if (!adev->ip_blocks[i].status.valid)
2384 /* displays are handled in phase1 */
2385 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2387 /* PSP lost connection when err_event_athub occurs */
2388 if (amdgpu_ras_intr_triggered() &&
2389 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
2390 adev->ip_blocks[i].status.hw = false;
2393 /* XXX handle errors */
2394 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2395 /* XXX handle errors */
2397 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2398 adev->ip_blocks[i].version->funcs->name, r);
2400 adev->ip_blocks[i].status.hw = false;
2401 /* handle putting the SMC in the appropriate state */
2402 if(!amdgpu_sriov_vf(adev)){
2403 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2404 r = amdgpu_dpm_set_mp1_state(adev, adev->mp1_state);
2406 DRM_ERROR("SMC failed to set mp1 state %d, %d\n",
2407 adev->mp1_state, r);
2412 adev->ip_blocks[i].status.hw = false;
2419 * amdgpu_device_ip_suspend - run suspend for hardware IPs
2421 * @adev: amdgpu_device pointer
2423 * Main suspend function for hardware IPs. The list of all the hardware
2424 * IPs that make up the asic is walked, clockgating is disabled and the
2425 * suspend callbacks are run. suspend puts the hardware and software state
2426 * in each IP into a state suitable for suspend.
2427 * Returns 0 on success, negative error code on failure.
2429 int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2433 if (amdgpu_sriov_vf(adev))
2434 amdgpu_virt_request_full_gpu(adev, false);
2436 r = amdgpu_device_ip_suspend_phase1(adev);
2439 r = amdgpu_device_ip_suspend_phase2(adev);
2441 if (amdgpu_sriov_vf(adev))
2442 amdgpu_virt_release_full_gpu(adev, false);
2447 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
2451 static enum amd_ip_block_type ip_order[] = {
2452 AMD_IP_BLOCK_TYPE_GMC,
2453 AMD_IP_BLOCK_TYPE_COMMON,
2454 AMD_IP_BLOCK_TYPE_PSP,
2455 AMD_IP_BLOCK_TYPE_IH,
2458 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2460 struct amdgpu_ip_block *block;
2462 for (j = 0; j < adev->num_ip_blocks; j++) {
2463 block = &adev->ip_blocks[j];
2465 block->status.hw = false;
2466 if (block->version->type != ip_order[i] ||
2467 !block->status.valid)
2470 r = block->version->funcs->hw_init(adev);
2471 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2474 block->status.hw = true;
2481 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
2485 static enum amd_ip_block_type ip_order[] = {
2486 AMD_IP_BLOCK_TYPE_SMC,
2487 AMD_IP_BLOCK_TYPE_DCE,
2488 AMD_IP_BLOCK_TYPE_GFX,
2489 AMD_IP_BLOCK_TYPE_SDMA,
2490 AMD_IP_BLOCK_TYPE_UVD,
2491 AMD_IP_BLOCK_TYPE_VCE,
2492 AMD_IP_BLOCK_TYPE_VCN
2495 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2497 struct amdgpu_ip_block *block;
2499 for (j = 0; j < adev->num_ip_blocks; j++) {
2500 block = &adev->ip_blocks[j];
2502 if (block->version->type != ip_order[i] ||
2503 !block->status.valid ||
2507 if (block->version->type == AMD_IP_BLOCK_TYPE_SMC)
2508 r = block->version->funcs->resume(adev);
2510 r = block->version->funcs->hw_init(adev);
2512 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2515 block->status.hw = true;
2523 * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs
2525 * @adev: amdgpu_device pointer
2527 * First resume function for hardware IPs. The list of all the hardware
2528 * IPs that make up the asic is walked and the resume callbacks are run for
2529 * COMMON, GMC, and IH. resume puts the hardware into a functional state
2530 * after a suspend and updates the software state as necessary. This
2531 * function is also used for restoring the GPU after a GPU reset.
2532 * Returns 0 on success, negative error code on failure.
2534 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
2538 for (i = 0; i < adev->num_ip_blocks; i++) {
2539 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
2541 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2542 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2543 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2545 r = adev->ip_blocks[i].version->funcs->resume(adev);
2547 DRM_ERROR("resume of IP block <%s> failed %d\n",
2548 adev->ip_blocks[i].version->funcs->name, r);
2551 adev->ip_blocks[i].status.hw = true;
2559 * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs
2561 * @adev: amdgpu_device pointer
2563 * First resume function for hardware IPs. The list of all the hardware
2564 * IPs that make up the asic is walked and the resume callbacks are run for
2565 * all blocks except COMMON, GMC, and IH. resume puts the hardware into a
2566 * functional state after a suspend and updates the software state as
2567 * necessary. This function is also used for restoring the GPU after a GPU
2569 * Returns 0 on success, negative error code on failure.
2571 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
2575 for (i = 0; i < adev->num_ip_blocks; i++) {
2576 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
2578 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2579 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2580 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
2581 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
2583 r = adev->ip_blocks[i].version->funcs->resume(adev);
2585 DRM_ERROR("resume of IP block <%s> failed %d\n",
2586 adev->ip_blocks[i].version->funcs->name, r);
2589 adev->ip_blocks[i].status.hw = true;
2596 * amdgpu_device_ip_resume - run resume for hardware IPs
2598 * @adev: amdgpu_device pointer
2600 * Main resume function for hardware IPs. The hardware IPs
2601 * are split into two resume functions because they are
2602 * are also used in in recovering from a GPU reset and some additional
2603 * steps need to be take between them. In this case (S3/S4) they are
2605 * Returns 0 on success, negative error code on failure.
2607 static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
2611 r = amdgpu_device_ip_resume_phase1(adev);
2615 r = amdgpu_device_fw_loading(adev);
2619 r = amdgpu_device_ip_resume_phase2(adev);
2625 * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV
2627 * @adev: amdgpu_device pointer
2629 * Query the VBIOS data tables to determine if the board supports SR-IOV.
2631 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
2633 if (amdgpu_sriov_vf(adev)) {
2634 if (adev->is_atom_fw) {
2635 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2636 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2638 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2639 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2642 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
2643 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
2648 * amdgpu_device_asic_has_dc_support - determine if DC supports the asic
2650 * @asic_type: AMD asic type
2652 * Check if there is DC (new modesetting infrastructre) support for an asic.
2653 * returns true if DC has support, false if not.
2655 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2657 switch (asic_type) {
2658 #if defined(CONFIG_DRM_AMD_DC)
2664 * We have systems in the wild with these ASICs that require
2665 * LVDS and VGA support which is not supported with DC.
2667 * Fallback to the non-DC driver here by default so as not to
2668 * cause regressions.
2670 return amdgpu_dc > 0;
2674 case CHIP_POLARIS10:
2675 case CHIP_POLARIS11:
2676 case CHIP_POLARIS12:
2683 #if defined(CONFIG_DRM_AMD_DC_DCN)
2690 return amdgpu_dc != 0;
2694 DRM_INFO("Display Core has been requested via kernel parameter "
2695 "but isn't supported by ASIC, ignoring\n");
2701 * amdgpu_device_has_dc_support - check if dc is supported
2703 * @adev: amdgpu_device_pointer
2705 * Returns true for supported, false for not supported
2707 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
2709 if (amdgpu_sriov_vf(adev))
2712 return amdgpu_device_asic_has_dc_support(adev->asic_type);
2716 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
2718 struct amdgpu_device *adev =
2719 container_of(__work, struct amdgpu_device, xgmi_reset_work);
2720 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev, 0);
2722 /* It's a bug to not have a hive within this function */
2727 * Use task barrier to synchronize all xgmi reset works across the
2728 * hive. task_barrier_enter and task_barrier_exit will block
2729 * until all the threads running the xgmi reset works reach
2730 * those points. task_barrier_full will do both blocks.
2732 if (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) {
2734 task_barrier_enter(&hive->tb);
2735 adev->asic_reset_res = amdgpu_device_baco_enter(adev->ddev);
2737 if (adev->asic_reset_res)
2740 task_barrier_exit(&hive->tb);
2741 adev->asic_reset_res = amdgpu_device_baco_exit(adev->ddev);
2743 if (adev->asic_reset_res)
2746 if (adev->mmhub.funcs && adev->mmhub.funcs->reset_ras_error_count)
2747 adev->mmhub.funcs->reset_ras_error_count(adev);
2750 task_barrier_full(&hive->tb);
2751 adev->asic_reset_res = amdgpu_asic_reset(adev);
2755 if (adev->asic_reset_res)
2756 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
2757 adev->asic_reset_res, adev->ddev->unique);
2760 static int amdgpu_device_get_job_timeout_settings(struct amdgpu_device *adev)
2762 char *input = amdgpu_lockup_timeout;
2763 char *timeout_setting = NULL;
2769 * By default timeout for non compute jobs is 10000.
2770 * And there is no timeout enforced on compute jobs.
2771 * In SR-IOV or passthrough mode, timeout for compute
2772 * jobs are 10000 by default.
2774 adev->gfx_timeout = msecs_to_jiffies(10000);
2775 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
2776 if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev))
2777 adev->compute_timeout = adev->gfx_timeout;
2779 adev->compute_timeout = MAX_SCHEDULE_TIMEOUT;
2781 if (strnlen(input, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
2782 while ((timeout_setting = strsep(&input, ",")) &&
2783 strnlen(timeout_setting, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
2784 ret = kstrtol(timeout_setting, 0, &timeout);
2791 } else if (timeout < 0) {
2792 timeout = MAX_SCHEDULE_TIMEOUT;
2794 timeout = msecs_to_jiffies(timeout);
2799 adev->gfx_timeout = timeout;
2802 adev->compute_timeout = timeout;
2805 adev->sdma_timeout = timeout;
2808 adev->video_timeout = timeout;
2815 * There is only one value specified and
2816 * it should apply to all non-compute jobs.
2819 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
2820 if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev))
2821 adev->compute_timeout = adev->gfx_timeout;
2829 * amdgpu_device_init - initialize the driver
2831 * @adev: amdgpu_device pointer
2832 * @ddev: drm dev pointer
2833 * @pdev: pci dev pointer
2834 * @flags: driver flags
2836 * Initializes the driver info and hw (all asics).
2837 * Returns 0 for success or an error on failure.
2838 * Called at driver startup.
2840 int amdgpu_device_init(struct amdgpu_device *adev,
2841 struct drm_device *ddev,
2842 struct pci_dev *pdev,
2849 adev->shutdown = false;
2850 adev->dev = &pdev->dev;
2853 adev->flags = flags;
2855 if (amdgpu_force_asic_type >= 0 && amdgpu_force_asic_type < CHIP_LAST)
2856 adev->asic_type = amdgpu_force_asic_type;
2858 adev->asic_type = flags & AMD_ASIC_MASK;
2860 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
2861 if (amdgpu_emu_mode == 1)
2862 adev->usec_timeout *= 10;
2863 adev->gmc.gart_size = 512 * 1024 * 1024;
2864 adev->accel_working = false;
2865 adev->num_rings = 0;
2866 adev->mman.buffer_funcs = NULL;
2867 adev->mman.buffer_funcs_ring = NULL;
2868 adev->vm_manager.vm_pte_funcs = NULL;
2869 adev->vm_manager.vm_pte_num_scheds = 0;
2870 adev->gmc.gmc_funcs = NULL;
2871 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2872 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
2874 adev->smc_rreg = &amdgpu_invalid_rreg;
2875 adev->smc_wreg = &amdgpu_invalid_wreg;
2876 adev->pcie_rreg = &amdgpu_invalid_rreg;
2877 adev->pcie_wreg = &amdgpu_invalid_wreg;
2878 adev->pciep_rreg = &amdgpu_invalid_rreg;
2879 adev->pciep_wreg = &amdgpu_invalid_wreg;
2880 adev->pcie_rreg64 = &amdgpu_invalid_rreg64;
2881 adev->pcie_wreg64 = &amdgpu_invalid_wreg64;
2882 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
2883 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
2884 adev->didt_rreg = &amdgpu_invalid_rreg;
2885 adev->didt_wreg = &amdgpu_invalid_wreg;
2886 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
2887 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
2888 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
2889 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
2891 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
2892 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
2893 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
2895 /* mutex initialization are all done here so we
2896 * can recall function without having locking issues */
2897 atomic_set(&adev->irq.ih.lock, 0);
2898 mutex_init(&adev->firmware.mutex);
2899 mutex_init(&adev->pm.mutex);
2900 mutex_init(&adev->gfx.gpu_clock_mutex);
2901 mutex_init(&adev->srbm_mutex);
2902 mutex_init(&adev->gfx.pipe_reserve_mutex);
2903 mutex_init(&adev->gfx.gfx_off_mutex);
2904 mutex_init(&adev->grbm_idx_mutex);
2905 mutex_init(&adev->mn_lock);
2906 mutex_init(&adev->virt.vf_errors.lock);
2907 hash_init(adev->mn_hash);
2908 mutex_init(&adev->lock_reset);
2909 mutex_init(&adev->psp.mutex);
2910 mutex_init(&adev->notifier_lock);
2912 r = amdgpu_device_check_arguments(adev);
2916 spin_lock_init(&adev->mmio_idx_lock);
2917 spin_lock_init(&adev->smc_idx_lock);
2918 spin_lock_init(&adev->pcie_idx_lock);
2919 spin_lock_init(&adev->uvd_ctx_idx_lock);
2920 spin_lock_init(&adev->didt_idx_lock);
2921 spin_lock_init(&adev->gc_cac_idx_lock);
2922 spin_lock_init(&adev->se_cac_idx_lock);
2923 spin_lock_init(&adev->audio_endpt_idx_lock);
2924 spin_lock_init(&adev->mm_stats.lock);
2926 INIT_LIST_HEAD(&adev->shadow_list);
2927 mutex_init(&adev->shadow_list_lock);
2929 INIT_LIST_HEAD(&adev->ring_lru_list);
2930 spin_lock_init(&adev->ring_lru_list_lock);
2932 INIT_DELAYED_WORK(&adev->delayed_init_work,
2933 amdgpu_device_delayed_init_work_handler);
2934 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
2935 amdgpu_device_delay_enable_gfx_off);
2937 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
2939 adev->gfx.gfx_off_req_count = 1;
2940 adev->pm.ac_power = power_supply_is_system_supplied() > 0 ? true : false;
2942 /* Registers mapping */
2943 /* TODO: block userspace mapping of io register */
2944 if (adev->asic_type >= CHIP_BONAIRE) {
2945 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2946 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2948 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2949 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2952 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2953 if (adev->rmmio == NULL) {
2956 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2957 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2959 /* io port mapping */
2960 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2961 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2962 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2963 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2967 if (adev->rio_mem == NULL)
2968 DRM_INFO("PCI I/O BAR is not found.\n");
2970 /* enable PCIE atomic ops */
2971 r = pci_enable_atomic_ops_to_root(adev->pdev,
2972 PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
2973 PCI_EXP_DEVCAP2_ATOMIC_COMP64);
2975 adev->have_atomics_support = false;
2976 DRM_INFO("PCIE atomic ops is not supported\n");
2978 adev->have_atomics_support = true;
2981 amdgpu_device_get_pcie_info(adev);
2984 DRM_INFO("MCBP is enabled\n");
2986 if (amdgpu_mes && adev->asic_type >= CHIP_NAVI10)
2987 adev->enable_mes = true;
2989 if (amdgpu_discovery && adev->asic_type >= CHIP_NAVI10) {
2990 r = amdgpu_discovery_init(adev);
2992 dev_err(adev->dev, "amdgpu_discovery_init failed\n");
2997 /* early init functions */
2998 r = amdgpu_device_ip_early_init(adev);
3002 r = amdgpu_device_get_job_timeout_settings(adev);
3004 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
3008 /* doorbell bar mapping and doorbell index init*/
3009 amdgpu_device_doorbell_init(adev);
3011 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
3012 /* this will fail for cards that aren't VGA class devices, just
3014 vga_client_register(adev->pdev, adev, NULL, amdgpu_device_vga_set_decode);
3016 if (amdgpu_device_supports_boco(ddev))
3018 if (amdgpu_has_atpx() &&
3019 (amdgpu_is_atpx_hybrid() ||
3020 amdgpu_has_atpx_dgpu_power_cntl()) &&
3021 !pci_is_thunderbolt_attached(adev->pdev))
3022 vga_switcheroo_register_client(adev->pdev,
3023 &amdgpu_switcheroo_ops, boco);
3025 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
3027 if (amdgpu_emu_mode == 1) {
3028 /* post the asic on emulation mode */
3029 emu_soc_asic_init(adev);
3030 goto fence_driver_init;
3033 /* detect if we are with an SRIOV vbios */
3034 amdgpu_device_detect_sriov_bios(adev);
3036 /* check if we need to reset the asic
3037 * E.g., driver was not cleanly unloaded previously, etc.
3039 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
3040 r = amdgpu_asic_reset(adev);
3042 dev_err(adev->dev, "asic reset on init failed\n");
3047 /* Post card if necessary */
3048 if (amdgpu_device_need_post(adev)) {
3050 dev_err(adev->dev, "no vBIOS found\n");
3054 DRM_INFO("GPU posting now...\n");
3055 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
3057 dev_err(adev->dev, "gpu post error!\n");
3062 if (adev->is_atom_fw) {
3063 /* Initialize clocks */
3064 r = amdgpu_atomfirmware_get_clock_info(adev);
3066 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
3067 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3071 /* Initialize clocks */
3072 r = amdgpu_atombios_get_clock_info(adev);
3074 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
3075 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3078 /* init i2c buses */
3079 if (!amdgpu_device_has_dc_support(adev))
3080 amdgpu_atombios_i2c_init(adev);
3085 r = amdgpu_fence_driver_init(adev);
3087 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
3088 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
3092 /* init the mode config */
3093 drm_mode_config_init(adev->ddev);
3095 r = amdgpu_device_ip_init(adev);
3097 /* failed in exclusive mode due to timeout */
3098 if (amdgpu_sriov_vf(adev) &&
3099 !amdgpu_sriov_runtime(adev) &&
3100 amdgpu_virt_mmio_blocked(adev) &&
3101 !amdgpu_virt_wait_reset(adev)) {
3102 dev_err(adev->dev, "VF exclusive mode timeout\n");
3103 /* Don't send request since VF is inactive. */
3104 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
3105 adev->virt.ops = NULL;
3109 dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
3110 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
3114 DRM_DEBUG("SE %d, SH per SE %d, CU per SH %d, active_cu_number %d\n",
3115 adev->gfx.config.max_shader_engines,
3116 adev->gfx.config.max_sh_per_se,
3117 adev->gfx.config.max_cu_per_sh,
3118 adev->gfx.cu_info.number);
3120 amdgpu_ctx_init_sched(adev);
3122 adev->accel_working = true;
3124 amdgpu_vm_check_compute_bug(adev);
3126 /* Initialize the buffer migration limit. */
3127 if (amdgpu_moverate >= 0)
3128 max_MBps = amdgpu_moverate;
3130 max_MBps = 8; /* Allow 8 MB/s. */
3131 /* Get a log2 for easy divisions. */
3132 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
3134 amdgpu_fbdev_init(adev);
3136 r = amdgpu_pm_sysfs_init(adev);
3138 adev->pm_sysfs_en = false;
3139 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
3141 adev->pm_sysfs_en = true;
3143 r = amdgpu_ucode_sysfs_init(adev);
3145 adev->ucode_sysfs_en = false;
3146 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
3148 adev->ucode_sysfs_en = true;
3150 if ((amdgpu_testing & 1)) {
3151 if (adev->accel_working)
3152 amdgpu_test_moves(adev);
3154 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
3156 if (amdgpu_benchmarking) {
3157 if (adev->accel_working)
3158 amdgpu_benchmark(adev, amdgpu_benchmarking);
3160 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
3164 * Register gpu instance before amdgpu_device_enable_mgpu_fan_boost.
3165 * Otherwise the mgpu fan boost feature will be skipped due to the
3166 * gpu instance is counted less.
3168 amdgpu_register_gpu_instance(adev);
3170 /* enable clockgating, etc. after ib tests, etc. since some blocks require
3171 * explicit gating rather than handling it automatically.
3173 r = amdgpu_device_ip_late_init(adev);
3175 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
3176 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
3181 amdgpu_ras_resume(adev);
3183 queue_delayed_work(system_wq, &adev->delayed_init_work,
3184 msecs_to_jiffies(AMDGPU_RESUME_MS));
3186 r = device_create_file(adev->dev, &dev_attr_pcie_replay_count);
3188 dev_err(adev->dev, "Could not create pcie_replay_count");
3192 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3193 r = amdgpu_pmu_init(adev);
3195 dev_err(adev->dev, "amdgpu_pmu_init failed\n");
3200 amdgpu_vf_error_trans_all(adev);
3202 vga_switcheroo_fini_domain_pm_ops(adev->dev);
3208 * amdgpu_device_fini - tear down the driver
3210 * @adev: amdgpu_device pointer
3212 * Tear down the driver info (all asics).
3213 * Called at driver shutdown.
3215 void amdgpu_device_fini(struct amdgpu_device *adev)
3219 DRM_INFO("amdgpu: finishing device.\n");
3220 flush_delayed_work(&adev->delayed_init_work);
3221 adev->shutdown = true;
3223 /* make sure IB test finished before entering exclusive mode
3224 * to avoid preemption on IB test
3226 if (amdgpu_sriov_vf(adev))
3227 amdgpu_virt_request_full_gpu(adev, false);
3229 /* disable all interrupts */
3230 amdgpu_irq_disable_all(adev);
3231 if (adev->mode_info.mode_config_initialized){
3232 if (!amdgpu_device_has_dc_support(adev))
3233 drm_helper_force_disable_all(adev->ddev);
3235 drm_atomic_helper_shutdown(adev->ddev);
3237 amdgpu_fence_driver_fini(adev);
3238 if (adev->pm_sysfs_en)
3239 amdgpu_pm_sysfs_fini(adev);
3240 amdgpu_fbdev_fini(adev);
3241 r = amdgpu_device_ip_fini(adev);
3242 if (adev->firmware.gpu_info_fw) {
3243 release_firmware(adev->firmware.gpu_info_fw);
3244 adev->firmware.gpu_info_fw = NULL;
3246 adev->accel_working = false;
3247 /* free i2c buses */
3248 if (!amdgpu_device_has_dc_support(adev))
3249 amdgpu_i2c_fini(adev);
3251 if (amdgpu_emu_mode != 1)
3252 amdgpu_atombios_fini(adev);
3256 if (amdgpu_has_atpx() &&
3257 (amdgpu_is_atpx_hybrid() ||
3258 amdgpu_has_atpx_dgpu_power_cntl()) &&
3259 !pci_is_thunderbolt_attached(adev->pdev))
3260 vga_switcheroo_unregister_client(adev->pdev);
3261 if (amdgpu_device_supports_boco(adev->ddev))
3262 vga_switcheroo_fini_domain_pm_ops(adev->dev);
3263 vga_client_register(adev->pdev, NULL, NULL, NULL);
3265 pci_iounmap(adev->pdev, adev->rio_mem);
3266 adev->rio_mem = NULL;
3267 iounmap(adev->rmmio);
3269 amdgpu_device_doorbell_fini(adev);
3271 device_remove_file(adev->dev, &dev_attr_pcie_replay_count);
3272 if (adev->ucode_sysfs_en)
3273 amdgpu_ucode_sysfs_fini(adev);
3274 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3275 amdgpu_pmu_fini(adev);
3276 if (amdgpu_discovery && adev->asic_type >= CHIP_NAVI10)
3277 amdgpu_discovery_fini(adev);
3285 * amdgpu_device_suspend - initiate device suspend
3287 * @dev: drm dev pointer
3288 * @suspend: suspend state
3289 * @fbcon : notify the fbdev of suspend
3291 * Puts the hw in the suspend state (all asics).
3292 * Returns 0 for success or an error on failure.
3293 * Called at driver suspend.
3295 int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
3297 struct amdgpu_device *adev;
3298 struct drm_crtc *crtc;
3299 struct drm_connector *connector;
3300 struct drm_connector_list_iter iter;
3303 if (dev == NULL || dev->dev_private == NULL) {
3307 adev = dev->dev_private;
3309 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3312 adev->in_suspend = true;
3313 drm_kms_helper_poll_disable(dev);
3316 amdgpu_fbdev_set_suspend(adev, 1);
3318 cancel_delayed_work_sync(&adev->delayed_init_work);
3320 if (!amdgpu_device_has_dc_support(adev)) {
3321 /* turn off display hw */
3322 drm_modeset_lock_all(dev);
3323 drm_connector_list_iter_begin(dev, &iter);
3324 drm_for_each_connector_iter(connector, &iter)
3325 drm_helper_connector_dpms(connector,
3327 drm_connector_list_iter_end(&iter);
3328 drm_modeset_unlock_all(dev);
3329 /* unpin the front buffers and cursors */
3330 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3331 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
3332 struct drm_framebuffer *fb = crtc->primary->fb;
3333 struct amdgpu_bo *robj;
3335 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
3336 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
3337 r = amdgpu_bo_reserve(aobj, true);
3339 amdgpu_bo_unpin(aobj);
3340 amdgpu_bo_unreserve(aobj);
3344 if (fb == NULL || fb->obj[0] == NULL) {
3347 robj = gem_to_amdgpu_bo(fb->obj[0]);
3348 /* don't unpin kernel fb objects */
3349 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
3350 r = amdgpu_bo_reserve(robj, true);
3352 amdgpu_bo_unpin(robj);
3353 amdgpu_bo_unreserve(robj);
3359 amdgpu_amdkfd_suspend(adev, !fbcon);
3361 amdgpu_ras_suspend(adev);
3363 r = amdgpu_device_ip_suspend_phase1(adev);
3365 /* evict vram memory */
3366 amdgpu_bo_evict_vram(adev);
3368 amdgpu_fence_driver_suspend(adev);
3370 r = amdgpu_device_ip_suspend_phase2(adev);
3372 /* evict remaining vram memory
3373 * This second call to evict vram is to evict the gart page table
3376 amdgpu_bo_evict_vram(adev);
3382 * amdgpu_device_resume - initiate device resume
3384 * @dev: drm dev pointer
3385 * @resume: resume state
3386 * @fbcon : notify the fbdev of resume
3388 * Bring the hw back to operating state (all asics).
3389 * Returns 0 for success or an error on failure.
3390 * Called at driver resume.
3392 int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
3394 struct drm_connector *connector;
3395 struct drm_connector_list_iter iter;
3396 struct amdgpu_device *adev = dev->dev_private;
3397 struct drm_crtc *crtc;
3400 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3404 if (amdgpu_device_need_post(adev)) {
3405 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
3407 DRM_ERROR("amdgpu asic init failed\n");
3410 r = amdgpu_device_ip_resume(adev);
3412 DRM_ERROR("amdgpu_device_ip_resume failed (%d).\n", r);
3415 amdgpu_fence_driver_resume(adev);
3418 r = amdgpu_device_ip_late_init(adev);
3422 queue_delayed_work(system_wq, &adev->delayed_init_work,
3423 msecs_to_jiffies(AMDGPU_RESUME_MS));
3425 if (!amdgpu_device_has_dc_support(adev)) {
3427 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3428 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
3430 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
3431 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
3432 r = amdgpu_bo_reserve(aobj, true);
3434 r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
3436 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
3437 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
3438 amdgpu_bo_unreserve(aobj);
3443 r = amdgpu_amdkfd_resume(adev, !fbcon);
3447 /* Make sure IB tests flushed */
3448 flush_delayed_work(&adev->delayed_init_work);
3450 /* blat the mode back in */
3452 if (!amdgpu_device_has_dc_support(adev)) {
3454 drm_helper_resume_force_mode(dev);
3456 /* turn on display hw */
3457 drm_modeset_lock_all(dev);
3459 drm_connector_list_iter_begin(dev, &iter);
3460 drm_for_each_connector_iter(connector, &iter)
3461 drm_helper_connector_dpms(connector,
3463 drm_connector_list_iter_end(&iter);
3465 drm_modeset_unlock_all(dev);
3467 amdgpu_fbdev_set_suspend(adev, 0);
3470 drm_kms_helper_poll_enable(dev);
3472 amdgpu_ras_resume(adev);
3475 * Most of the connector probing functions try to acquire runtime pm
3476 * refs to ensure that the GPU is powered on when connector polling is
3477 * performed. Since we're calling this from a runtime PM callback,
3478 * trying to acquire rpm refs will cause us to deadlock.
3480 * Since we're guaranteed to be holding the rpm lock, it's safe to
3481 * temporarily disable the rpm helpers so this doesn't deadlock us.
3484 dev->dev->power.disable_depth++;
3486 if (!amdgpu_device_has_dc_support(adev))
3487 drm_helper_hpd_irq_event(dev);
3489 drm_kms_helper_hotplug_event(dev);
3491 dev->dev->power.disable_depth--;
3493 adev->in_suspend = false;
3499 * amdgpu_device_ip_check_soft_reset - did soft reset succeed
3501 * @adev: amdgpu_device pointer
3503 * The list of all the hardware IPs that make up the asic is walked and
3504 * the check_soft_reset callbacks are run. check_soft_reset determines
3505 * if the asic is still hung or not.
3506 * Returns true if any of the IPs are still in a hung state, false if not.
3508 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
3511 bool asic_hang = false;
3513 if (amdgpu_sriov_vf(adev))
3516 if (amdgpu_asic_need_full_reset(adev))
3519 for (i = 0; i < adev->num_ip_blocks; i++) {
3520 if (!adev->ip_blocks[i].status.valid)
3522 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
3523 adev->ip_blocks[i].status.hang =
3524 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
3525 if (adev->ip_blocks[i].status.hang) {
3526 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
3534 * amdgpu_device_ip_pre_soft_reset - prepare for soft reset
3536 * @adev: amdgpu_device pointer
3538 * The list of all the hardware IPs that make up the asic is walked and the
3539 * pre_soft_reset callbacks are run if the block is hung. pre_soft_reset
3540 * handles any IP specific hardware or software state changes that are
3541 * necessary for a soft reset to succeed.
3542 * Returns 0 on success, negative error code on failure.
3544 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
3548 for (i = 0; i < adev->num_ip_blocks; i++) {
3549 if (!adev->ip_blocks[i].status.valid)
3551 if (adev->ip_blocks[i].status.hang &&
3552 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
3553 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
3563 * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed
3565 * @adev: amdgpu_device pointer
3567 * Some hardware IPs cannot be soft reset. If they are hung, a full gpu
3568 * reset is necessary to recover.
3569 * Returns true if a full asic reset is required, false if not.
3571 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
3575 if (amdgpu_asic_need_full_reset(adev))
3578 for (i = 0; i < adev->num_ip_blocks; i++) {
3579 if (!adev->ip_blocks[i].status.valid)
3581 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
3582 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
3583 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
3584 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
3585 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
3586 if (adev->ip_blocks[i].status.hang) {
3587 DRM_INFO("Some block need full reset!\n");
3596 * amdgpu_device_ip_soft_reset - do a soft reset
3598 * @adev: amdgpu_device pointer
3600 * The list of all the hardware IPs that make up the asic is walked and the
3601 * soft_reset callbacks are run if the block is hung. soft_reset handles any
3602 * IP specific hardware or software state changes that are necessary to soft
3604 * Returns 0 on success, negative error code on failure.
3606 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
3610 for (i = 0; i < adev->num_ip_blocks; i++) {
3611 if (!adev->ip_blocks[i].status.valid)
3613 if (adev->ip_blocks[i].status.hang &&
3614 adev->ip_blocks[i].version->funcs->soft_reset) {
3615 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
3625 * amdgpu_device_ip_post_soft_reset - clean up from soft reset
3627 * @adev: amdgpu_device pointer
3629 * The list of all the hardware IPs that make up the asic is walked and the
3630 * post_soft_reset callbacks are run if the asic was hung. post_soft_reset
3631 * handles any IP specific hardware or software state changes that are
3632 * necessary after the IP has been soft reset.
3633 * Returns 0 on success, negative error code on failure.
3635 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
3639 for (i = 0; i < adev->num_ip_blocks; i++) {
3640 if (!adev->ip_blocks[i].status.valid)
3642 if (adev->ip_blocks[i].status.hang &&
3643 adev->ip_blocks[i].version->funcs->post_soft_reset)
3644 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
3653 * amdgpu_device_recover_vram - Recover some VRAM contents
3655 * @adev: amdgpu_device pointer
3657 * Restores the contents of VRAM buffers from the shadows in GTT. Used to
3658 * restore things like GPUVM page tables after a GPU reset where
3659 * the contents of VRAM might be lost.
3662 * 0 on success, negative error code on failure.
3664 static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
3666 struct dma_fence *fence = NULL, *next = NULL;
3667 struct amdgpu_bo *shadow;
3670 if (amdgpu_sriov_runtime(adev))
3671 tmo = msecs_to_jiffies(8000);
3673 tmo = msecs_to_jiffies(100);
3675 DRM_INFO("recover vram bo from shadow start\n");
3676 mutex_lock(&adev->shadow_list_lock);
3677 list_for_each_entry(shadow, &adev->shadow_list, shadow_list) {
3679 /* No need to recover an evicted BO */
3680 if (shadow->tbo.mem.mem_type != TTM_PL_TT ||
3681 shadow->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET ||
3682 shadow->parent->tbo.mem.mem_type != TTM_PL_VRAM)
3685 r = amdgpu_bo_restore_shadow(shadow, &next);
3690 tmo = dma_fence_wait_timeout(fence, false, tmo);
3691 dma_fence_put(fence);
3696 } else if (tmo < 0) {
3704 mutex_unlock(&adev->shadow_list_lock);
3707 tmo = dma_fence_wait_timeout(fence, false, tmo);
3708 dma_fence_put(fence);
3710 if (r < 0 || tmo <= 0) {
3711 DRM_ERROR("recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
3715 DRM_INFO("recover vram bo from shadow done\n");
3721 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
3723 * @adev: amdgpu device pointer
3724 * @from_hypervisor: request from hypervisor
3726 * do VF FLR and reinitialize Asic
3727 * return 0 means succeeded otherwise failed
3729 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
3730 bool from_hypervisor)
3734 if (from_hypervisor)
3735 r = amdgpu_virt_request_full_gpu(adev, true);
3737 r = amdgpu_virt_reset_gpu(adev);
3741 /* Resume IP prior to SMC */
3742 r = amdgpu_device_ip_reinit_early_sriov(adev);
3746 amdgpu_virt_init_data_exchange(adev);
3747 /* we need recover gart prior to run SMC/CP/SDMA resume */
3748 amdgpu_gtt_mgr_recover(&adev->mman.bdev.man[TTM_PL_TT]);
3750 r = amdgpu_device_fw_loading(adev);
3754 /* now we are okay to resume SMC/CP/SDMA */
3755 r = amdgpu_device_ip_reinit_late_sriov(adev);
3759 amdgpu_irq_gpu_reset_resume_helper(adev);
3760 r = amdgpu_ib_ring_tests(adev);
3761 amdgpu_amdkfd_post_reset(adev);
3764 amdgpu_virt_release_full_gpu(adev, true);
3765 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
3766 amdgpu_inc_vram_lost(adev);
3767 r = amdgpu_device_recover_vram(adev);
3774 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
3776 * @adev: amdgpu device pointer
3778 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
3781 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
3783 if (!amdgpu_device_ip_check_soft_reset(adev)) {
3784 DRM_INFO("Timeout, but no hardware hang detected.\n");
3788 if (amdgpu_gpu_recovery == 0)
3791 if (amdgpu_sriov_vf(adev))
3794 if (amdgpu_gpu_recovery == -1) {
3795 switch (adev->asic_type) {
3801 case CHIP_POLARIS10:
3802 case CHIP_POLARIS11:
3803 case CHIP_POLARIS12:
3823 DRM_INFO("GPU recovery disabled.\n");
3828 static int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev,
3829 struct amdgpu_job *job,
3830 bool *need_full_reset_arg)
3833 bool need_full_reset = *need_full_reset_arg;
3835 /* block all schedulers and reset given job's ring */
3836 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3837 struct amdgpu_ring *ring = adev->rings[i];
3839 if (!ring || !ring->sched.thread)
3842 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
3843 amdgpu_fence_driver_force_completion(ring);
3847 drm_sched_increase_karma(&job->base);
3849 /* Don't suspend on bare metal if we are not going to HW reset the ASIC */
3850 if (!amdgpu_sriov_vf(adev)) {
3852 if (!need_full_reset)
3853 need_full_reset = amdgpu_device_ip_need_full_reset(adev);
3855 if (!need_full_reset) {
3856 amdgpu_device_ip_pre_soft_reset(adev);
3857 r = amdgpu_device_ip_soft_reset(adev);
3858 amdgpu_device_ip_post_soft_reset(adev);
3859 if (r || amdgpu_device_ip_check_soft_reset(adev)) {
3860 DRM_INFO("soft reset failed, will fallback to full reset!\n");
3861 need_full_reset = true;
3865 if (need_full_reset)
3866 r = amdgpu_device_ip_suspend(adev);
3868 *need_full_reset_arg = need_full_reset;
3874 static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
3875 struct list_head *device_list_handle,
3876 bool *need_full_reset_arg)
3878 struct amdgpu_device *tmp_adev = NULL;
3879 bool need_full_reset = *need_full_reset_arg, vram_lost = false;
3883 * ASIC reset has to be done on all HGMI hive nodes ASAP
3884 * to allow proper links negotiation in FW (within 1 sec)
3886 if (need_full_reset) {
3887 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3888 /* For XGMI run all resets in parallel to speed up the process */
3889 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3890 if (!queue_work(system_unbound_wq, &tmp_adev->xgmi_reset_work))
3893 r = amdgpu_asic_reset(tmp_adev);
3896 DRM_ERROR("ASIC reset failed with error, %d for drm dev, %s",
3897 r, tmp_adev->ddev->unique);
3902 /* For XGMI wait for all resets to complete before proceed */
3904 list_for_each_entry(tmp_adev, device_list_handle,
3906 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3907 flush_work(&tmp_adev->xgmi_reset_work);
3908 r = tmp_adev->asic_reset_res;
3916 if (!r && amdgpu_ras_intr_triggered()) {
3917 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3918 if (tmp_adev->mmhub.funcs &&
3919 tmp_adev->mmhub.funcs->reset_ras_error_count)
3920 tmp_adev->mmhub.funcs->reset_ras_error_count(tmp_adev);
3923 amdgpu_ras_intr_cleared();
3926 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3927 if (need_full_reset) {
3929 if (amdgpu_atom_asic_init(tmp_adev->mode_info.atom_context))
3930 DRM_WARN("asic atom init failed!");
3933 dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n");
3934 r = amdgpu_device_ip_resume_phase1(tmp_adev);
3938 vram_lost = amdgpu_device_check_vram_lost(tmp_adev);
3940 DRM_INFO("VRAM is lost due to GPU reset!\n");
3941 amdgpu_inc_vram_lost(tmp_adev);
3944 r = amdgpu_gtt_mgr_recover(
3945 &tmp_adev->mman.bdev.man[TTM_PL_TT]);
3949 r = amdgpu_device_fw_loading(tmp_adev);
3953 r = amdgpu_device_ip_resume_phase2(tmp_adev);
3958 amdgpu_device_fill_reset_magic(tmp_adev);
3961 * Add this ASIC as tracked as reset was already
3962 * complete successfully.
3964 amdgpu_register_gpu_instance(tmp_adev);
3966 r = amdgpu_device_ip_late_init(tmp_adev);
3970 amdgpu_fbdev_set_suspend(tmp_adev, 0);
3973 amdgpu_ras_resume(tmp_adev);
3975 /* Update PSP FW topology after reset */
3976 if (hive && tmp_adev->gmc.xgmi.num_physical_nodes > 1)
3977 r = amdgpu_xgmi_update_topology(hive, tmp_adev);
3984 amdgpu_irq_gpu_reset_resume_helper(tmp_adev);
3985 r = amdgpu_ib_ring_tests(tmp_adev);
3987 dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r);
3988 r = amdgpu_device_ip_suspend(tmp_adev);
3989 need_full_reset = true;
3996 r = amdgpu_device_recover_vram(tmp_adev);
3998 tmp_adev->asic_reset_res = r;
4002 *need_full_reset_arg = need_full_reset;
4006 static bool amdgpu_device_lock_adev(struct amdgpu_device *adev, bool trylock)
4009 if (!mutex_trylock(&adev->lock_reset))
4012 mutex_lock(&adev->lock_reset);
4014 atomic_inc(&adev->gpu_reset_counter);
4015 adev->in_gpu_reset = true;
4016 switch (amdgpu_asic_reset_method(adev)) {
4017 case AMD_RESET_METHOD_MODE1:
4018 adev->mp1_state = PP_MP1_STATE_SHUTDOWN;
4020 case AMD_RESET_METHOD_MODE2:
4021 adev->mp1_state = PP_MP1_STATE_RESET;
4024 adev->mp1_state = PP_MP1_STATE_NONE;
4031 static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
4033 amdgpu_vf_error_trans_all(adev);
4034 adev->mp1_state = PP_MP1_STATE_NONE;
4035 adev->in_gpu_reset = false;
4036 mutex_unlock(&adev->lock_reset);
4040 * amdgpu_device_gpu_recover - reset the asic and recover scheduler
4042 * @adev: amdgpu device pointer
4043 * @job: which job trigger hang
4045 * Attempt to reset the GPU if it has hung (all asics).
4046 * Attempt to do soft-reset or full-reset and reinitialize Asic
4047 * Returns 0 for success or an error on failure.
4050 int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
4051 struct amdgpu_job *job)
4053 struct list_head device_list, *device_list_handle = NULL;
4054 bool need_full_reset, job_signaled;
4055 struct amdgpu_hive_info *hive = NULL;
4056 struct amdgpu_device *tmp_adev = NULL;
4058 bool in_ras_intr = amdgpu_ras_intr_triggered();
4060 (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) ?
4064 * Flush RAM to disk so that after reboot
4065 * the user can read log and see why the system rebooted.
4067 if (in_ras_intr && !use_baco && amdgpu_ras_get_context(adev)->reboot) {
4069 DRM_WARN("Emergency reboot.");
4072 emergency_restart();
4075 need_full_reset = job_signaled = false;
4076 INIT_LIST_HEAD(&device_list);
4078 dev_info(adev->dev, "GPU %s begin!\n",
4079 (in_ras_intr && !use_baco) ? "jobs stop":"reset");
4081 cancel_delayed_work_sync(&adev->delayed_init_work);
4083 hive = amdgpu_get_xgmi_hive(adev, false);
4086 * Here we trylock to avoid chain of resets executing from
4087 * either trigger by jobs on different adevs in XGMI hive or jobs on
4088 * different schedulers for same device while this TO handler is running.
4089 * We always reset all schedulers for device and all devices for XGMI
4090 * hive so that should take care of them too.
4093 if (hive && !mutex_trylock(&hive->reset_lock)) {
4094 DRM_INFO("Bailing on TDR for s_job:%llx, hive: %llx as another already in progress",
4095 job ? job->base.id : -1, hive->hive_id);
4099 /* Start with adev pre asic reset first for soft reset check.*/
4100 if (!amdgpu_device_lock_adev(adev, !hive)) {
4101 DRM_INFO("Bailing on TDR for s_job:%llx, as another already in progress",
4102 job ? job->base.id : -1);
4106 /* Block kfd: SRIOV would do it separately */
4107 if (!amdgpu_sriov_vf(adev))
4108 amdgpu_amdkfd_pre_reset(adev);
4110 /* Build list of devices to reset */
4111 if (adev->gmc.xgmi.num_physical_nodes > 1) {
4113 /*unlock kfd: SRIOV would do it separately */
4114 if (!amdgpu_sriov_vf(adev))
4115 amdgpu_amdkfd_post_reset(adev);
4116 amdgpu_device_unlock_adev(adev);
4121 * In case we are in XGMI hive mode device reset is done for all the
4122 * nodes in the hive to retrain all XGMI links and hence the reset
4123 * sequence is executed in loop on all nodes.
4125 device_list_handle = &hive->device_list;
4127 list_add_tail(&adev->gmc.xgmi.head, &device_list);
4128 device_list_handle = &device_list;
4131 /* block all schedulers and reset given job's ring */
4132 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4133 if (tmp_adev != adev) {
4134 amdgpu_device_lock_adev(tmp_adev, false);
4135 if (!amdgpu_sriov_vf(tmp_adev))
4136 amdgpu_amdkfd_pre_reset(tmp_adev);
4140 * Mark these ASICs to be reseted as untracked first
4141 * And add them back after reset completed
4143 amdgpu_unregister_gpu_instance(tmp_adev);
4145 amdgpu_fbdev_set_suspend(adev, 1);
4147 /* disable ras on ALL IPs */
4148 if (!(in_ras_intr && !use_baco) &&
4149 amdgpu_device_ip_need_full_reset(tmp_adev))
4150 amdgpu_ras_suspend(tmp_adev);
4152 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4153 struct amdgpu_ring *ring = tmp_adev->rings[i];
4155 if (!ring || !ring->sched.thread)
4158 drm_sched_stop(&ring->sched, job ? &job->base : NULL);
4160 if (in_ras_intr && !use_baco)
4161 amdgpu_job_stop_all_jobs_on_sched(&ring->sched);
4166 if (in_ras_intr && !use_baco)
4167 goto skip_sched_resume;
4170 * Must check guilty signal here since after this point all old
4171 * HW fences are force signaled.
4173 * job->base holds a reference to parent fence
4175 if (job && job->base.s_fence->parent &&
4176 dma_fence_is_signaled(job->base.s_fence->parent))
4177 job_signaled = true;
4180 dev_info(adev->dev, "Guilty job already signaled, skipping HW reset");
4185 /* Guilty job will be freed after this*/
4186 r = amdgpu_device_pre_asic_reset(adev, job, &need_full_reset);
4188 /*TODO Should we stop ?*/
4189 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
4190 r, adev->ddev->unique);
4191 adev->asic_reset_res = r;
4194 retry: /* Rest of adevs pre asic reset from XGMI hive. */
4195 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4197 if (tmp_adev == adev)
4200 r = amdgpu_device_pre_asic_reset(tmp_adev,
4203 /*TODO Should we stop ?*/
4205 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
4206 r, tmp_adev->ddev->unique);
4207 tmp_adev->asic_reset_res = r;
4211 /* Actual ASIC resets if needed.*/
4212 /* TODO Implement XGMI hive reset logic for SRIOV */
4213 if (amdgpu_sriov_vf(adev)) {
4214 r = amdgpu_device_reset_sriov(adev, job ? false : true);
4216 adev->asic_reset_res = r;
4218 r = amdgpu_do_asic_reset(hive, device_list_handle, &need_full_reset);
4219 if (r && r == -EAGAIN)
4225 /* Post ASIC reset for all devs .*/
4226 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4228 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4229 struct amdgpu_ring *ring = tmp_adev->rings[i];
4231 if (!ring || !ring->sched.thread)
4234 /* No point to resubmit jobs if we didn't HW reset*/
4235 if (!tmp_adev->asic_reset_res && !job_signaled)
4236 drm_sched_resubmit_jobs(&ring->sched);
4238 drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res);
4241 if (!amdgpu_device_has_dc_support(tmp_adev) && !job_signaled) {
4242 drm_helper_resume_force_mode(tmp_adev->ddev);
4245 tmp_adev->asic_reset_res = 0;
4248 /* bad news, how to tell it to userspace ? */
4249 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&tmp_adev->gpu_reset_counter));
4250 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
4252 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&tmp_adev->gpu_reset_counter));
4257 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4258 /*unlock kfd: SRIOV would do it separately */
4259 if (!(in_ras_intr && !use_baco) && !amdgpu_sriov_vf(tmp_adev))
4260 amdgpu_amdkfd_post_reset(tmp_adev);
4261 amdgpu_device_unlock_adev(tmp_adev);
4265 mutex_unlock(&hive->reset_lock);
4268 dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
4273 * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot
4275 * @adev: amdgpu_device pointer
4277 * Fetchs and stores in the driver the PCIE capabilities (gen speed
4278 * and lanes) of the slot the device is in. Handles APUs and
4279 * virtualized environments where PCIE config space may not be available.
4281 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
4283 struct pci_dev *pdev;
4284 enum pci_bus_speed speed_cap, platform_speed_cap;
4285 enum pcie_link_width platform_link_width;
4287 if (amdgpu_pcie_gen_cap)
4288 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
4290 if (amdgpu_pcie_lane_cap)
4291 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
4293 /* covers APUs as well */
4294 if (pci_is_root_bus(adev->pdev->bus)) {
4295 if (adev->pm.pcie_gen_mask == 0)
4296 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
4297 if (adev->pm.pcie_mlw_mask == 0)
4298 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
4302 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
4305 pcie_bandwidth_available(adev->pdev, NULL,
4306 &platform_speed_cap, &platform_link_width);
4308 if (adev->pm.pcie_gen_mask == 0) {
4311 speed_cap = pcie_get_speed_cap(pdev);
4312 if (speed_cap == PCI_SPEED_UNKNOWN) {
4313 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4314 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4315 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
4317 if (speed_cap == PCIE_SPEED_16_0GT)
4318 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4319 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4320 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4321 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4);
4322 else if (speed_cap == PCIE_SPEED_8_0GT)
4323 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4324 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4325 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
4326 else if (speed_cap == PCIE_SPEED_5_0GT)
4327 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4328 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2);
4330 adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1;
4333 if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
4334 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4335 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
4337 if (platform_speed_cap == PCIE_SPEED_16_0GT)
4338 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4339 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4340 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4341 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4);
4342 else if (platform_speed_cap == PCIE_SPEED_8_0GT)
4343 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4344 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4345 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3);
4346 else if (platform_speed_cap == PCIE_SPEED_5_0GT)
4347 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4348 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
4350 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
4354 if (adev->pm.pcie_mlw_mask == 0) {
4355 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
4356 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
4358 switch (platform_link_width) {
4360 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
4361 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
4362 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4363 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4364 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4365 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4366 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4369 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
4370 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4371 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4372 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4373 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4374 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4377 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4378 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4379 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4380 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4381 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4384 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4385 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4386 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4387 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4390 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4391 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4392 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4395 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4396 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4399 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
4408 int amdgpu_device_baco_enter(struct drm_device *dev)
4410 struct amdgpu_device *adev = dev->dev_private;
4411 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
4413 if (!amdgpu_device_supports_baco(adev->ddev))
4416 if (ras && ras->supported)
4417 adev->nbio.funcs->enable_doorbell_interrupt(adev, false);
4419 return amdgpu_dpm_baco_enter(adev);
4422 int amdgpu_device_baco_exit(struct drm_device *dev)
4424 struct amdgpu_device *adev = dev->dev_private;
4425 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
4428 if (!amdgpu_device_supports_baco(adev->ddev))
4431 ret = amdgpu_dpm_baco_exit(adev);
4435 if (ras && ras->supported)
4436 adev->nbio.funcs->enable_doorbell_interrupt(adev, true);