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/console.h>
31 #include <linux/slab.h>
33 #include <drm/drm_atomic_helper.h>
34 #include <drm/drm_probe_helper.h>
35 #include <drm/amdgpu_drm.h>
36 #include <linux/vgaarb.h>
37 #include <linux/vga_switcheroo.h>
38 #include <linux/efi.h>
40 #include "amdgpu_trace.h"
41 #include "amdgpu_i2c.h"
43 #include "amdgpu_atombios.h"
44 #include "amdgpu_atomfirmware.h"
46 #ifdef CONFIG_DRM_AMDGPU_SI
49 #ifdef CONFIG_DRM_AMDGPU_CIK
54 #include "bif/bif_4_1_d.h"
55 #include <linux/pci.h>
56 #include <linux/firmware.h>
57 #include "amdgpu_vf_error.h"
59 #include "amdgpu_amdkfd.h"
60 #include "amdgpu_pm.h"
62 #include "amdgpu_xgmi.h"
63 #include "amdgpu_ras.h"
64 #include "amdgpu_pmu.h"
66 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
67 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
68 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
69 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
70 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
71 MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin");
73 #define AMDGPU_RESUME_MS 2000
75 static const char *amdgpu_asic_name[] = {
104 * DOC: pcie_replay_count
106 * The amdgpu driver provides a sysfs API for reporting the total number
107 * of PCIe replays (NAKs)
108 * The file pcie_replay_count is used for this and returns the total
109 * number of replays as a sum of the NAKs generated and NAKs received
112 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev,
113 struct device_attribute *attr, char *buf)
115 struct drm_device *ddev = dev_get_drvdata(dev);
116 struct amdgpu_device *adev = ddev->dev_private;
117 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
119 return snprintf(buf, PAGE_SIZE, "%llu\n", cnt);
122 static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
123 amdgpu_device_get_pcie_replay_count, NULL);
125 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
128 * amdgpu_device_is_px - Is the device is a dGPU with HG/PX power control
130 * @dev: drm_device pointer
132 * Returns true if the device is a dGPU with HG/PX power control,
133 * otherwise return false.
135 bool amdgpu_device_is_px(struct drm_device *dev)
137 struct amdgpu_device *adev = dev->dev_private;
139 if (adev->flags & AMD_IS_PX)
145 * MMIO register access helper functions.
148 * amdgpu_mm_rreg - read a memory mapped IO register
150 * @adev: amdgpu_device pointer
151 * @reg: dword aligned register offset
152 * @acc_flags: access flags which require special behavior
154 * Returns the 32 bit value from the offset specified.
156 uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
161 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
162 return amdgpu_virt_kiq_rreg(adev, reg);
164 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
165 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
169 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
170 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
171 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
172 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
174 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
179 * MMIO register read with bytes helper functions
180 * @offset:bytes offset from MMIO start
185 * amdgpu_mm_rreg8 - read a memory mapped IO register
187 * @adev: amdgpu_device pointer
188 * @offset: byte aligned register offset
190 * Returns the 8 bit value from the offset specified.
192 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset) {
193 if (offset < adev->rmmio_size)
194 return (readb(adev->rmmio + offset));
199 * MMIO register write with bytes helper functions
200 * @offset:bytes offset from MMIO start
201 * @value: the value want to be written to the register
205 * amdgpu_mm_wreg8 - read a memory mapped IO register
207 * @adev: amdgpu_device pointer
208 * @offset: byte aligned register offset
209 * @value: 8 bit value to write
211 * Writes the value specified to the offset specified.
213 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value) {
214 if (offset < adev->rmmio_size)
215 writeb(value, adev->rmmio + offset);
221 * amdgpu_mm_wreg - write to a memory mapped IO register
223 * @adev: amdgpu_device pointer
224 * @reg: dword aligned register offset
225 * @v: 32 bit value to write to the register
226 * @acc_flags: access flags which require special behavior
228 * Writes the value specified to the offset specified.
230 void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
233 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
235 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
236 adev->last_mm_index = v;
239 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
240 return amdgpu_virt_kiq_wreg(adev, reg, v);
242 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
243 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
247 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
248 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
249 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
250 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
253 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
259 * amdgpu_io_rreg - read an IO register
261 * @adev: amdgpu_device pointer
262 * @reg: dword aligned register offset
264 * Returns the 32 bit value from the offset specified.
266 u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
268 if ((reg * 4) < adev->rio_mem_size)
269 return ioread32(adev->rio_mem + (reg * 4));
271 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
272 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
277 * amdgpu_io_wreg - write to an IO register
279 * @adev: amdgpu_device pointer
280 * @reg: dword aligned register offset
281 * @v: 32 bit value to write to the register
283 * Writes the value specified to the offset specified.
285 void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
287 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
288 adev->last_mm_index = v;
291 if ((reg * 4) < adev->rio_mem_size)
292 iowrite32(v, adev->rio_mem + (reg * 4));
294 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
295 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
298 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
304 * amdgpu_mm_rdoorbell - read a doorbell dword
306 * @adev: amdgpu_device pointer
307 * @index: doorbell index
309 * Returns the value in the doorbell aperture at the
310 * requested doorbell index (CIK).
312 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
314 if (index < adev->doorbell.num_doorbells) {
315 return readl(adev->doorbell.ptr + index);
317 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
323 * amdgpu_mm_wdoorbell - write a doorbell dword
325 * @adev: amdgpu_device pointer
326 * @index: doorbell index
329 * Writes @v to the doorbell aperture at the
330 * requested doorbell index (CIK).
332 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
334 if (index < adev->doorbell.num_doorbells) {
335 writel(v, adev->doorbell.ptr + index);
337 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
342 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
344 * @adev: amdgpu_device pointer
345 * @index: doorbell index
347 * Returns the value in the doorbell aperture at the
348 * requested doorbell index (VEGA10+).
350 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
352 if (index < adev->doorbell.num_doorbells) {
353 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
355 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
361 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
363 * @adev: amdgpu_device pointer
364 * @index: doorbell index
367 * Writes @v to the doorbell aperture at the
368 * requested doorbell index (VEGA10+).
370 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
372 if (index < adev->doorbell.num_doorbells) {
373 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
375 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
380 * amdgpu_invalid_rreg - dummy reg read function
382 * @adev: amdgpu device pointer
383 * @reg: offset of register
385 * Dummy register read function. Used for register blocks
386 * that certain asics don't have (all asics).
387 * Returns the value in the register.
389 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
391 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
397 * amdgpu_invalid_wreg - dummy reg write function
399 * @adev: amdgpu device pointer
400 * @reg: offset of register
401 * @v: value to write to the register
403 * Dummy register read function. Used for register blocks
404 * that certain asics don't have (all asics).
406 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
408 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
414 * amdgpu_block_invalid_rreg - dummy reg read function
416 * @adev: amdgpu device pointer
417 * @block: offset of instance
418 * @reg: offset of register
420 * Dummy register read function. Used for register blocks
421 * that certain asics don't have (all asics).
422 * Returns the value in the register.
424 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
425 uint32_t block, uint32_t reg)
427 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
434 * amdgpu_block_invalid_wreg - dummy reg write function
436 * @adev: amdgpu device pointer
437 * @block: offset of instance
438 * @reg: offset of register
439 * @v: value to write to the register
441 * Dummy register read function. Used for register blocks
442 * that certain asics don't have (all asics).
444 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
446 uint32_t reg, uint32_t v)
448 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
454 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
456 * @adev: amdgpu device pointer
458 * Allocates a scratch page of VRAM for use by various things in the
461 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
463 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
464 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
465 &adev->vram_scratch.robj,
466 &adev->vram_scratch.gpu_addr,
467 (void **)&adev->vram_scratch.ptr);
471 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
473 * @adev: amdgpu device pointer
475 * Frees the VRAM scratch page.
477 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
479 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
483 * amdgpu_device_program_register_sequence - program an array of registers.
485 * @adev: amdgpu_device pointer
486 * @registers: pointer to the register array
487 * @array_size: size of the register array
489 * Programs an array or registers with and and or masks.
490 * This is a helper for setting golden registers.
492 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
493 const u32 *registers,
494 const u32 array_size)
496 u32 tmp, reg, and_mask, or_mask;
502 for (i = 0; i < array_size; i +=3) {
503 reg = registers[i + 0];
504 and_mask = registers[i + 1];
505 or_mask = registers[i + 2];
507 if (and_mask == 0xffffffff) {
519 * amdgpu_device_pci_config_reset - reset the GPU
521 * @adev: amdgpu_device pointer
523 * Resets the GPU using the pci config reset sequence.
524 * Only applicable to asics prior to vega10.
526 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
528 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
532 * GPU doorbell aperture helpers function.
535 * amdgpu_device_doorbell_init - Init doorbell driver information.
537 * @adev: amdgpu_device pointer
539 * Init doorbell driver information (CIK)
540 * Returns 0 on success, error on failure.
542 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
545 /* No doorbell on SI hardware generation */
546 if (adev->asic_type < CHIP_BONAIRE) {
547 adev->doorbell.base = 0;
548 adev->doorbell.size = 0;
549 adev->doorbell.num_doorbells = 0;
550 adev->doorbell.ptr = NULL;
554 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
557 amdgpu_asic_init_doorbell_index(adev);
559 /* doorbell bar mapping */
560 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
561 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
563 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
564 adev->doorbell_index.max_assignment+1);
565 if (adev->doorbell.num_doorbells == 0)
568 /* For Vega, reserve and map two pages on doorbell BAR since SDMA
569 * paging queue doorbell use the second page. The
570 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the
571 * doorbells are in the first page. So with paging queue enabled,
572 * the max num_doorbells should + 1 page (0x400 in dword)
574 if (adev->asic_type >= CHIP_VEGA10)
575 adev->doorbell.num_doorbells += 0x400;
577 adev->doorbell.ptr = ioremap(adev->doorbell.base,
578 adev->doorbell.num_doorbells *
580 if (adev->doorbell.ptr == NULL)
587 * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
589 * @adev: amdgpu_device pointer
591 * Tear down doorbell driver information (CIK)
593 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
595 iounmap(adev->doorbell.ptr);
596 adev->doorbell.ptr = NULL;
602 * amdgpu_device_wb_*()
603 * Writeback is the method by which the GPU updates special pages in memory
604 * with the status of certain GPU events (fences, ring pointers,etc.).
608 * amdgpu_device_wb_fini - Disable Writeback and free memory
610 * @adev: amdgpu_device pointer
612 * Disables Writeback and frees the Writeback memory (all asics).
613 * Used at driver shutdown.
615 static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
617 if (adev->wb.wb_obj) {
618 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
620 (void **)&adev->wb.wb);
621 adev->wb.wb_obj = NULL;
626 * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
628 * @adev: amdgpu_device pointer
630 * Initializes writeback and allocates writeback memory (all asics).
631 * Used at driver startup.
632 * Returns 0 on success or an -error on failure.
634 static int amdgpu_device_wb_init(struct amdgpu_device *adev)
638 if (adev->wb.wb_obj == NULL) {
639 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
640 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
641 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
642 &adev->wb.wb_obj, &adev->wb.gpu_addr,
643 (void **)&adev->wb.wb);
645 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
649 adev->wb.num_wb = AMDGPU_MAX_WB;
650 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
652 /* clear wb memory */
653 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
660 * amdgpu_device_wb_get - Allocate a wb entry
662 * @adev: amdgpu_device pointer
665 * Allocate a wb slot for use by the driver (all asics).
666 * Returns 0 on success or -EINVAL on failure.
668 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
670 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
672 if (offset < adev->wb.num_wb) {
673 __set_bit(offset, adev->wb.used);
674 *wb = offset << 3; /* convert to dw offset */
682 * amdgpu_device_wb_free - Free a wb entry
684 * @adev: amdgpu_device pointer
687 * Free a wb slot allocated for use by the driver (all asics)
689 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
692 if (wb < adev->wb.num_wb)
693 __clear_bit(wb, adev->wb.used);
697 * amdgpu_device_resize_fb_bar - try to resize FB BAR
699 * @adev: amdgpu_device pointer
701 * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not
702 * to fail, but if any of the BARs is not accessible after the size we abort
703 * driver loading by returning -ENODEV.
705 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
707 u64 space_needed = roundup_pow_of_two(adev->gmc.real_vram_size);
708 u32 rbar_size = order_base_2(((space_needed >> 20) | 1)) - 1;
709 struct pci_bus *root;
710 struct resource *res;
716 if (amdgpu_sriov_vf(adev))
719 /* Check if the root BUS has 64bit memory resources */
720 root = adev->pdev->bus;
724 pci_bus_for_each_resource(root, res, i) {
725 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
726 res->start > 0x100000000ull)
730 /* Trying to resize is pointless without a root hub window above 4GB */
734 /* Disable memory decoding while we change the BAR addresses and size */
735 pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd);
736 pci_write_config_word(adev->pdev, PCI_COMMAND,
737 cmd & ~PCI_COMMAND_MEMORY);
739 /* Free the VRAM and doorbell BAR, we most likely need to move both. */
740 amdgpu_device_doorbell_fini(adev);
741 if (adev->asic_type >= CHIP_BONAIRE)
742 pci_release_resource(adev->pdev, 2);
744 pci_release_resource(adev->pdev, 0);
746 r = pci_resize_resource(adev->pdev, 0, rbar_size);
748 DRM_INFO("Not enough PCI address space for a large BAR.");
749 else if (r && r != -ENOTSUPP)
750 DRM_ERROR("Problem resizing BAR0 (%d).", r);
752 pci_assign_unassigned_bus_resources(adev->pdev->bus);
754 /* When the doorbell or fb BAR isn't available we have no chance of
757 r = amdgpu_device_doorbell_init(adev);
758 if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET))
761 pci_write_config_word(adev->pdev, PCI_COMMAND, cmd);
767 * GPU helpers function.
770 * amdgpu_device_need_post - check if the hw need post or not
772 * @adev: amdgpu_device pointer
774 * Check if the asic has been initialized (all asics) at driver startup
775 * or post is needed if hw reset is performed.
776 * Returns true if need or false if not.
778 bool amdgpu_device_need_post(struct amdgpu_device *adev)
782 if (amdgpu_sriov_vf(adev))
785 if (amdgpu_passthrough(adev)) {
786 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
787 * some old smc fw still need driver do vPost otherwise gpu hang, while
788 * those smc fw version above 22.15 doesn't have this flaw, so we force
789 * vpost executed for smc version below 22.15
791 if (adev->asic_type == CHIP_FIJI) {
794 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
795 /* force vPost if error occured */
799 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
800 if (fw_ver < 0x00160e00)
805 if (adev->has_hw_reset) {
806 adev->has_hw_reset = false;
810 /* bios scratch used on CIK+ */
811 if (adev->asic_type >= CHIP_BONAIRE)
812 return amdgpu_atombios_scratch_need_asic_init(adev);
814 /* check MEM_SIZE for older asics */
815 reg = amdgpu_asic_get_config_memsize(adev);
817 if ((reg != 0) && (reg != 0xffffffff))
823 /* if we get transitioned to only one device, take VGA back */
825 * amdgpu_device_vga_set_decode - enable/disable vga decode
827 * @cookie: amdgpu_device pointer
828 * @state: enable/disable vga decode
830 * Enable/disable vga decode (all asics).
831 * Returns VGA resource flags.
833 static unsigned int amdgpu_device_vga_set_decode(void *cookie, bool state)
835 struct amdgpu_device *adev = cookie;
836 amdgpu_asic_set_vga_state(adev, state);
838 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
839 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
841 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
845 * amdgpu_device_check_block_size - validate the vm block size
847 * @adev: amdgpu_device pointer
849 * Validates the vm block size specified via module parameter.
850 * The vm block size defines number of bits in page table versus page directory,
851 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
852 * page table and the remaining bits are in the page directory.
854 static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
856 /* defines number of bits in page table versus page directory,
857 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
858 * page table and the remaining bits are in the page directory */
859 if (amdgpu_vm_block_size == -1)
862 if (amdgpu_vm_block_size < 9) {
863 dev_warn(adev->dev, "VM page table size (%d) too small\n",
864 amdgpu_vm_block_size);
865 amdgpu_vm_block_size = -1;
870 * amdgpu_device_check_vm_size - validate the vm size
872 * @adev: amdgpu_device pointer
874 * Validates the vm size in GB specified via module parameter.
875 * The VM size is the size of the GPU virtual memory space in GB.
877 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
879 /* no need to check the default value */
880 if (amdgpu_vm_size == -1)
883 if (amdgpu_vm_size < 1) {
884 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
890 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
893 bool is_os_64 = (sizeof(void *) == 8) ? true : false;
894 uint64_t total_memory;
895 uint64_t dram_size_seven_GB = 0x1B8000000;
896 uint64_t dram_size_three_GB = 0xB8000000;
898 if (amdgpu_smu_memory_pool_size == 0)
902 DRM_WARN("Not 64-bit OS, feature not supported\n");
906 total_memory = (uint64_t)si.totalram * si.mem_unit;
908 if ((amdgpu_smu_memory_pool_size == 1) ||
909 (amdgpu_smu_memory_pool_size == 2)) {
910 if (total_memory < dram_size_three_GB)
912 } else if ((amdgpu_smu_memory_pool_size == 4) ||
913 (amdgpu_smu_memory_pool_size == 8)) {
914 if (total_memory < dram_size_seven_GB)
917 DRM_WARN("Smu memory pool size not supported\n");
920 adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28;
925 DRM_WARN("No enough system memory\n");
927 adev->pm.smu_prv_buffer_size = 0;
931 * amdgpu_device_check_arguments - validate module params
933 * @adev: amdgpu_device pointer
935 * Validates certain module parameters and updates
936 * the associated values used by the driver (all asics).
938 static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
942 if (amdgpu_sched_jobs < 4) {
943 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
945 amdgpu_sched_jobs = 4;
946 } else if (!is_power_of_2(amdgpu_sched_jobs)){
947 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
949 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
952 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
953 /* gart size must be greater or equal to 32M */
954 dev_warn(adev->dev, "gart size (%d) too small\n",
956 amdgpu_gart_size = -1;
959 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
960 /* gtt size must be greater or equal to 32M */
961 dev_warn(adev->dev, "gtt size (%d) too small\n",
963 amdgpu_gtt_size = -1;
966 /* valid range is between 4 and 9 inclusive */
967 if (amdgpu_vm_fragment_size != -1 &&
968 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
969 dev_warn(adev->dev, "valid range is between 4 and 9\n");
970 amdgpu_vm_fragment_size = -1;
973 amdgpu_device_check_smu_prv_buffer_size(adev);
975 amdgpu_device_check_vm_size(adev);
977 amdgpu_device_check_block_size(adev);
979 ret = amdgpu_device_get_job_timeout_settings(adev);
981 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
985 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
991 * amdgpu_switcheroo_set_state - set switcheroo state
993 * @pdev: pci dev pointer
994 * @state: vga_switcheroo state
996 * Callback for the switcheroo driver. Suspends or resumes the
997 * the asics before or after it is powered up using ACPI methods.
999 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1001 struct drm_device *dev = pci_get_drvdata(pdev);
1003 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1006 if (state == VGA_SWITCHEROO_ON) {
1007 pr_info("amdgpu: switched on\n");
1008 /* don't suspend or resume card normally */
1009 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1011 amdgpu_device_resume(dev, true, true);
1013 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1014 drm_kms_helper_poll_enable(dev);
1016 pr_info("amdgpu: switched off\n");
1017 drm_kms_helper_poll_disable(dev);
1018 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1019 amdgpu_device_suspend(dev, true, true);
1020 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1025 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1027 * @pdev: pci dev pointer
1029 * Callback for the switcheroo driver. Check of the switcheroo
1030 * state can be changed.
1031 * Returns true if the state can be changed, false if not.
1033 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1035 struct drm_device *dev = pci_get_drvdata(pdev);
1038 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1039 * locking inversion with the driver load path. And the access here is
1040 * completely racy anyway. So don't bother with locking for now.
1042 return dev->open_count == 0;
1045 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1046 .set_gpu_state = amdgpu_switcheroo_set_state,
1048 .can_switch = amdgpu_switcheroo_can_switch,
1052 * amdgpu_device_ip_set_clockgating_state - set the CG state
1054 * @dev: amdgpu_device pointer
1055 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1056 * @state: clockgating state (gate or ungate)
1058 * Sets the requested clockgating state for all instances of
1059 * the hardware IP specified.
1060 * Returns the error code from the last instance.
1062 int amdgpu_device_ip_set_clockgating_state(void *dev,
1063 enum amd_ip_block_type block_type,
1064 enum amd_clockgating_state state)
1066 struct amdgpu_device *adev = dev;
1069 for (i = 0; i < adev->num_ip_blocks; i++) {
1070 if (!adev->ip_blocks[i].status.valid)
1072 if (adev->ip_blocks[i].version->type != block_type)
1074 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1076 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1077 (void *)adev, state);
1079 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1080 adev->ip_blocks[i].version->funcs->name, r);
1086 * amdgpu_device_ip_set_powergating_state - set the PG state
1088 * @dev: amdgpu_device pointer
1089 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1090 * @state: powergating state (gate or ungate)
1092 * Sets the requested powergating state for all instances of
1093 * the hardware IP specified.
1094 * Returns the error code from the last instance.
1096 int amdgpu_device_ip_set_powergating_state(void *dev,
1097 enum amd_ip_block_type block_type,
1098 enum amd_powergating_state state)
1100 struct amdgpu_device *adev = dev;
1103 for (i = 0; i < adev->num_ip_blocks; i++) {
1104 if (!adev->ip_blocks[i].status.valid)
1106 if (adev->ip_blocks[i].version->type != block_type)
1108 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1110 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1111 (void *)adev, state);
1113 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1114 adev->ip_blocks[i].version->funcs->name, r);
1120 * amdgpu_device_ip_get_clockgating_state - get the CG state
1122 * @adev: amdgpu_device pointer
1123 * @flags: clockgating feature flags
1125 * Walks the list of IPs on the device and updates the clockgating
1126 * flags for each IP.
1127 * Updates @flags with the feature flags for each hardware IP where
1128 * clockgating is enabled.
1130 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1135 for (i = 0; i < adev->num_ip_blocks; i++) {
1136 if (!adev->ip_blocks[i].status.valid)
1138 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1139 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1144 * amdgpu_device_ip_wait_for_idle - wait for idle
1146 * @adev: amdgpu_device pointer
1147 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1149 * Waits for the request hardware IP to be idle.
1150 * Returns 0 for success or a negative error code on failure.
1152 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1153 enum amd_ip_block_type block_type)
1157 for (i = 0; i < adev->num_ip_blocks; i++) {
1158 if (!adev->ip_blocks[i].status.valid)
1160 if (adev->ip_blocks[i].version->type == block_type) {
1161 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
1172 * amdgpu_device_ip_is_idle - is the hardware IP idle
1174 * @adev: amdgpu_device pointer
1175 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1177 * Check if the hardware IP is idle or not.
1178 * Returns true if it the IP is idle, false if not.
1180 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1181 enum amd_ip_block_type block_type)
1185 for (i = 0; i < adev->num_ip_blocks; i++) {
1186 if (!adev->ip_blocks[i].status.valid)
1188 if (adev->ip_blocks[i].version->type == block_type)
1189 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
1196 * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1198 * @adev: amdgpu_device pointer
1199 * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
1201 * Returns a pointer to the hardware IP block structure
1202 * if it exists for the asic, otherwise NULL.
1204 struct amdgpu_ip_block *
1205 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1206 enum amd_ip_block_type type)
1210 for (i = 0; i < adev->num_ip_blocks; i++)
1211 if (adev->ip_blocks[i].version->type == type)
1212 return &adev->ip_blocks[i];
1218 * amdgpu_device_ip_block_version_cmp
1220 * @adev: amdgpu_device pointer
1221 * @type: enum amd_ip_block_type
1222 * @major: major version
1223 * @minor: minor version
1225 * return 0 if equal or greater
1226 * return 1 if smaller or the ip_block doesn't exist
1228 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1229 enum amd_ip_block_type type,
1230 u32 major, u32 minor)
1232 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
1234 if (ip_block && ((ip_block->version->major > major) ||
1235 ((ip_block->version->major == major) &&
1236 (ip_block->version->minor >= minor))))
1243 * amdgpu_device_ip_block_add
1245 * @adev: amdgpu_device pointer
1246 * @ip_block_version: pointer to the IP to add
1248 * Adds the IP block driver information to the collection of IPs
1251 int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1252 const struct amdgpu_ip_block_version *ip_block_version)
1254 if (!ip_block_version)
1257 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
1258 ip_block_version->funcs->name);
1260 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1266 * amdgpu_device_enable_virtual_display - enable virtual display feature
1268 * @adev: amdgpu_device pointer
1270 * Enabled the virtual display feature if the user has enabled it via
1271 * the module parameter virtual_display. This feature provides a virtual
1272 * display hardware on headless boards or in virtualized environments.
1273 * This function parses and validates the configuration string specified by
1274 * the user and configues the virtual display configuration (number of
1275 * virtual connectors, crtcs, etc.) specified.
1277 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
1279 adev->enable_virtual_display = false;
1281 if (amdgpu_virtual_display) {
1282 struct drm_device *ddev = adev->ddev;
1283 const char *pci_address_name = pci_name(ddev->pdev);
1284 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
1286 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1287 pciaddstr_tmp = pciaddstr;
1288 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1289 pciaddname = strsep(&pciaddname_tmp, ",");
1290 if (!strcmp("all", pciaddname)
1291 || !strcmp(pci_address_name, pciaddname)) {
1295 adev->enable_virtual_display = true;
1298 res = kstrtol(pciaddname_tmp, 10,
1306 adev->mode_info.num_crtc = num_crtc;
1308 adev->mode_info.num_crtc = 1;
1314 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1315 amdgpu_virtual_display, pci_address_name,
1316 adev->enable_virtual_display, adev->mode_info.num_crtc);
1323 * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware
1325 * @adev: amdgpu_device pointer
1327 * Parses the asic configuration parameters specified in the gpu info
1328 * firmware and makes them availale to the driver for use in configuring
1330 * Returns 0 on success, -EINVAL on failure.
1332 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1334 const char *chip_name;
1337 const struct gpu_info_firmware_header_v1_0 *hdr;
1339 adev->firmware.gpu_info_fw = NULL;
1341 switch (adev->asic_type) {
1345 case CHIP_POLARIS10:
1346 case CHIP_POLARIS11:
1347 case CHIP_POLARIS12:
1351 #ifdef CONFIG_DRM_AMDGPU_SI
1358 #ifdef CONFIG_DRM_AMDGPU_CIK
1369 chip_name = "vega10";
1372 chip_name = "vega12";
1375 if (adev->rev_id >= 8)
1376 chip_name = "raven2";
1377 else if (adev->pdev->device == 0x15d8)
1378 chip_name = "picasso";
1380 chip_name = "raven";
1383 chip_name = "navi10";
1387 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
1388 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
1391 "Failed to load gpu_info firmware \"%s\"\n",
1395 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
1398 "Failed to validate gpu_info firmware \"%s\"\n",
1403 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
1404 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1406 switch (hdr->version_major) {
1409 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
1410 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
1411 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1413 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1414 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1415 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1416 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
1417 adev->gfx.config.max_texture_channel_caches =
1418 le32_to_cpu(gpu_info_fw->gc_num_tccs);
1419 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1420 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1421 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1422 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
1423 adev->gfx.config.double_offchip_lds_buf =
1424 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1425 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
1426 adev->gfx.cu_info.max_waves_per_simd =
1427 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1428 adev->gfx.cu_info.max_scratch_slots_per_cu =
1429 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1430 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
1435 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1444 * amdgpu_device_ip_early_init - run early init for hardware IPs
1446 * @adev: amdgpu_device pointer
1448 * Early initialization pass for hardware IPs. The hardware IPs that make
1449 * up each asic are discovered each IP's early_init callback is run. This
1450 * is the first stage in initializing the asic.
1451 * Returns 0 on success, negative error code on failure.
1453 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
1457 amdgpu_device_enable_virtual_display(adev);
1459 switch (adev->asic_type) {
1463 case CHIP_POLARIS10:
1464 case CHIP_POLARIS11:
1465 case CHIP_POLARIS12:
1469 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
1470 adev->family = AMDGPU_FAMILY_CZ;
1472 adev->family = AMDGPU_FAMILY_VI;
1474 r = vi_set_ip_blocks(adev);
1478 #ifdef CONFIG_DRM_AMDGPU_SI
1484 adev->family = AMDGPU_FAMILY_SI;
1485 r = si_set_ip_blocks(adev);
1490 #ifdef CONFIG_DRM_AMDGPU_CIK
1496 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1497 adev->family = AMDGPU_FAMILY_CI;
1499 adev->family = AMDGPU_FAMILY_KV;
1501 r = cik_set_ip_blocks(adev);
1510 if (adev->asic_type == CHIP_RAVEN)
1511 adev->family = AMDGPU_FAMILY_RV;
1513 adev->family = AMDGPU_FAMILY_AI;
1515 r = soc15_set_ip_blocks(adev);
1520 /* FIXME: not supported yet */
1524 r = amdgpu_device_parse_gpu_info_fw(adev);
1528 amdgpu_amdkfd_device_probe(adev);
1530 if (amdgpu_sriov_vf(adev)) {
1531 r = amdgpu_virt_request_full_gpu(adev, true);
1535 /* query the reg access mode at the very beginning */
1536 amdgpu_virt_init_reg_access_mode(adev);
1539 adev->pm.pp_feature = amdgpu_pp_feature_mask;
1540 if (amdgpu_sriov_vf(adev))
1541 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
1543 for (i = 0; i < adev->num_ip_blocks; i++) {
1544 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1545 DRM_ERROR("disabled ip block: %d <%s>\n",
1546 i, adev->ip_blocks[i].version->funcs->name);
1547 adev->ip_blocks[i].status.valid = false;
1549 if (adev->ip_blocks[i].version->funcs->early_init) {
1550 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
1552 adev->ip_blocks[i].status.valid = false;
1554 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1555 adev->ip_blocks[i].version->funcs->name, r);
1558 adev->ip_blocks[i].status.valid = true;
1561 adev->ip_blocks[i].status.valid = true;
1564 /* get the vbios after the asic_funcs are set up */
1565 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) {
1567 if (!amdgpu_get_bios(adev))
1570 r = amdgpu_atombios_init(adev);
1572 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
1573 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
1579 adev->cg_flags &= amdgpu_cg_mask;
1580 adev->pg_flags &= amdgpu_pg_mask;
1585 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev)
1589 for (i = 0; i < adev->num_ip_blocks; i++) {
1590 if (!adev->ip_blocks[i].status.sw)
1592 if (adev->ip_blocks[i].status.hw)
1594 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1595 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
1596 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
1597 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1599 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1600 adev->ip_blocks[i].version->funcs->name, r);
1603 adev->ip_blocks[i].status.hw = true;
1610 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev)
1614 for (i = 0; i < adev->num_ip_blocks; i++) {
1615 if (!adev->ip_blocks[i].status.sw)
1617 if (adev->ip_blocks[i].status.hw)
1619 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1621 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1622 adev->ip_blocks[i].version->funcs->name, r);
1625 adev->ip_blocks[i].status.hw = true;
1631 static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
1635 uint32_t smu_version;
1637 if (adev->asic_type >= CHIP_VEGA10) {
1638 for (i = 0; i < adev->num_ip_blocks; i++) {
1639 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
1640 if (adev->in_gpu_reset || adev->in_suspend) {
1641 if (amdgpu_sriov_vf(adev) && adev->in_gpu_reset)
1642 break; /* sriov gpu reset, psp need to do hw_init before IH because of hw limit */
1643 r = adev->ip_blocks[i].version->funcs->resume(adev);
1645 DRM_ERROR("resume of IP block <%s> failed %d\n",
1646 adev->ip_blocks[i].version->funcs->name, r);
1650 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1652 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1653 adev->ip_blocks[i].version->funcs->name, r);
1657 adev->ip_blocks[i].status.hw = true;
1661 r = amdgpu_pm_load_smu_firmware(adev, &smu_version);
1667 * amdgpu_device_ip_init - run init for hardware IPs
1669 * @adev: amdgpu_device pointer
1671 * Main initialization pass for hardware IPs. The list of all the hardware
1672 * IPs that make up the asic is walked and the sw_init and hw_init callbacks
1673 * are run. sw_init initializes the software state associated with each IP
1674 * and hw_init initializes the hardware associated with each IP.
1675 * Returns 0 on success, negative error code on failure.
1677 static int amdgpu_device_ip_init(struct amdgpu_device *adev)
1681 r = amdgpu_ras_init(adev);
1685 for (i = 0; i < adev->num_ip_blocks; i++) {
1686 if (!adev->ip_blocks[i].status.valid)
1688 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
1690 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1691 adev->ip_blocks[i].version->funcs->name, r);
1694 adev->ip_blocks[i].status.sw = true;
1696 /* need to do gmc hw init early so we can allocate gpu mem */
1697 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
1698 r = amdgpu_device_vram_scratch_init(adev);
1700 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
1703 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
1705 DRM_ERROR("hw_init %d failed %d\n", i, r);
1708 r = amdgpu_device_wb_init(adev);
1710 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
1713 adev->ip_blocks[i].status.hw = true;
1715 /* right after GMC hw init, we create CSA */
1716 if (amdgpu_sriov_vf(adev)) {
1717 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
1718 AMDGPU_GEM_DOMAIN_VRAM,
1721 DRM_ERROR("allocate CSA failed %d\n", r);
1728 r = amdgpu_ib_pool_init(adev);
1730 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
1731 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
1735 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
1739 r = amdgpu_device_ip_hw_init_phase1(adev);
1743 r = amdgpu_device_fw_loading(adev);
1747 r = amdgpu_device_ip_hw_init_phase2(adev);
1751 if (adev->gmc.xgmi.num_physical_nodes > 1)
1752 amdgpu_xgmi_add_device(adev);
1753 amdgpu_amdkfd_device_init(adev);
1756 if (amdgpu_sriov_vf(adev)) {
1758 amdgpu_virt_init_data_exchange(adev);
1759 amdgpu_virt_release_full_gpu(adev, true);
1766 * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer
1768 * @adev: amdgpu_device pointer
1770 * Writes a reset magic value to the gart pointer in VRAM. The driver calls
1771 * this function before a GPU reset. If the value is retained after a
1772 * GPU reset, VRAM has not been lost. Some GPU resets may destry VRAM contents.
1774 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
1776 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
1780 * amdgpu_device_check_vram_lost - check if vram is valid
1782 * @adev: amdgpu_device pointer
1784 * Checks the reset magic value written to the gart pointer in VRAM.
1785 * The driver calls this after a GPU reset to see if the contents of
1786 * VRAM is lost or now.
1787 * returns true if vram is lost, false if not.
1789 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
1791 return !!memcmp(adev->gart.ptr, adev->reset_magic,
1792 AMDGPU_RESET_MAGIC_NUM);
1796 * amdgpu_device_set_cg_state - set clockgating for amdgpu device
1798 * @adev: amdgpu_device pointer
1800 * The list of all the hardware IPs that make up the asic is walked and the
1801 * set_clockgating_state callbacks are run.
1802 * Late initialization pass enabling clockgating for hardware IPs.
1803 * Fini or suspend, pass disabling clockgating for hardware IPs.
1804 * Returns 0 on success, negative error code on failure.
1807 static int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
1808 enum amd_clockgating_state state)
1812 if (amdgpu_emu_mode == 1)
1815 for (j = 0; j < adev->num_ip_blocks; j++) {
1816 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
1817 if (!adev->ip_blocks[i].status.late_initialized)
1819 /* skip CG for VCE/UVD, it's handled specially */
1820 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1821 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
1822 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
1823 adev->ip_blocks[i].version->funcs->set_clockgating_state) {
1824 /* enable clockgating to save power */
1825 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1828 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
1829 adev->ip_blocks[i].version->funcs->name, r);
1838 static int amdgpu_device_set_pg_state(struct amdgpu_device *adev, enum amd_powergating_state state)
1842 if (amdgpu_emu_mode == 1)
1845 for (j = 0; j < adev->num_ip_blocks; j++) {
1846 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
1847 if (!adev->ip_blocks[i].status.late_initialized)
1849 /* skip CG for VCE/UVD, it's handled specially */
1850 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1851 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
1852 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
1853 adev->ip_blocks[i].version->funcs->set_powergating_state) {
1854 /* enable powergating to save power */
1855 r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev,
1858 DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n",
1859 adev->ip_blocks[i].version->funcs->name, r);
1867 static int amdgpu_device_enable_mgpu_fan_boost(void)
1869 struct amdgpu_gpu_instance *gpu_ins;
1870 struct amdgpu_device *adev;
1873 mutex_lock(&mgpu_info.mutex);
1876 * MGPU fan boost feature should be enabled
1877 * only when there are two or more dGPUs in
1880 if (mgpu_info.num_dgpu < 2)
1883 for (i = 0; i < mgpu_info.num_dgpu; i++) {
1884 gpu_ins = &(mgpu_info.gpu_ins[i]);
1885 adev = gpu_ins->adev;
1886 if (!(adev->flags & AMD_IS_APU) &&
1887 !gpu_ins->mgpu_fan_enabled &&
1888 adev->powerplay.pp_funcs &&
1889 adev->powerplay.pp_funcs->enable_mgpu_fan_boost) {
1890 ret = amdgpu_dpm_enable_mgpu_fan_boost(adev);
1894 gpu_ins->mgpu_fan_enabled = 1;
1899 mutex_unlock(&mgpu_info.mutex);
1905 * amdgpu_device_ip_late_init - run late init for hardware IPs
1907 * @adev: amdgpu_device pointer
1909 * Late initialization pass for hardware IPs. The list of all the hardware
1910 * IPs that make up the asic is walked and the late_init callbacks are run.
1911 * late_init covers any special initialization that an IP requires
1912 * after all of the have been initialized or something that needs to happen
1913 * late in the init process.
1914 * Returns 0 on success, negative error code on failure.
1916 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
1920 for (i = 0; i < adev->num_ip_blocks; i++) {
1921 if (!adev->ip_blocks[i].status.hw)
1923 if (adev->ip_blocks[i].version->funcs->late_init) {
1924 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
1926 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1927 adev->ip_blocks[i].version->funcs->name, r);
1931 adev->ip_blocks[i].status.late_initialized = true;
1934 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
1935 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
1937 amdgpu_device_fill_reset_magic(adev);
1939 r = amdgpu_device_enable_mgpu_fan_boost();
1941 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
1943 /* set to low pstate by default */
1944 amdgpu_xgmi_set_pstate(adev, 0);
1950 * amdgpu_device_ip_fini - run fini for hardware IPs
1952 * @adev: amdgpu_device pointer
1954 * Main teardown pass for hardware IPs. The list of all the hardware
1955 * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks
1956 * are run. hw_fini tears down the hardware associated with each IP
1957 * and sw_fini tears down any software state associated with each IP.
1958 * Returns 0 on success, negative error code on failure.
1960 static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
1964 amdgpu_ras_pre_fini(adev);
1966 if (adev->gmc.xgmi.num_physical_nodes > 1)
1967 amdgpu_xgmi_remove_device(adev);
1969 amdgpu_amdkfd_device_fini(adev);
1971 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
1972 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
1974 /* need to disable SMC first */
1975 for (i = 0; i < adev->num_ip_blocks; i++) {
1976 if (!adev->ip_blocks[i].status.hw)
1978 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
1979 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
1980 /* XXX handle errors */
1982 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1983 adev->ip_blocks[i].version->funcs->name, r);
1985 adev->ip_blocks[i].status.hw = false;
1990 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1991 if (!adev->ip_blocks[i].status.hw)
1994 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
1995 /* XXX handle errors */
1997 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1998 adev->ip_blocks[i].version->funcs->name, r);
2001 adev->ip_blocks[i].status.hw = false;
2005 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2006 if (!adev->ip_blocks[i].status.sw)
2009 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2010 amdgpu_ucode_free_bo(adev);
2011 amdgpu_free_static_csa(&adev->virt.csa_obj);
2012 amdgpu_device_wb_fini(adev);
2013 amdgpu_device_vram_scratch_fini(adev);
2014 amdgpu_ib_pool_fini(adev);
2017 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
2018 /* XXX handle errors */
2020 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
2021 adev->ip_blocks[i].version->funcs->name, r);
2023 adev->ip_blocks[i].status.sw = false;
2024 adev->ip_blocks[i].status.valid = false;
2027 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2028 if (!adev->ip_blocks[i].status.late_initialized)
2030 if (adev->ip_blocks[i].version->funcs->late_fini)
2031 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
2032 adev->ip_blocks[i].status.late_initialized = false;
2035 amdgpu_ras_fini(adev);
2037 if (amdgpu_sriov_vf(adev))
2038 if (amdgpu_virt_release_full_gpu(adev, false))
2039 DRM_ERROR("failed to release exclusive mode on fini\n");
2045 * amdgpu_device_delayed_init_work_handler - work handler for IB tests
2047 * @work: work_struct.
2049 static void amdgpu_device_delayed_init_work_handler(struct work_struct *work)
2051 struct amdgpu_device *adev =
2052 container_of(work, struct amdgpu_device, delayed_init_work.work);
2055 r = amdgpu_ib_ring_tests(adev);
2057 DRM_ERROR("ib ring test failed (%d).\n", r);
2060 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)
2062 struct amdgpu_device *adev =
2063 container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);
2065 mutex_lock(&adev->gfx.gfx_off_mutex);
2066 if (!adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {
2067 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))
2068 adev->gfx.gfx_off_state = true;
2070 mutex_unlock(&adev->gfx.gfx_off_mutex);
2074 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
2076 * @adev: amdgpu_device pointer
2078 * Main suspend function for hardware IPs. The list of all the hardware
2079 * IPs that make up the asic is walked, clockgating is disabled and the
2080 * suspend callbacks are run. suspend puts the hardware and software state
2081 * in each IP into a state suitable for suspend.
2082 * Returns 0 on success, negative error code on failure.
2084 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2088 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2089 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2091 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2092 if (!adev->ip_blocks[i].status.valid)
2094 /* displays are handled separately */
2095 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) {
2096 /* XXX handle errors */
2097 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2098 /* XXX handle errors */
2100 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2101 adev->ip_blocks[i].version->funcs->name, r);
2110 * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2)
2112 * @adev: amdgpu_device pointer
2114 * Main suspend function for hardware IPs. The list of all the hardware
2115 * IPs that make up the asic is walked, clockgating is disabled and the
2116 * suspend callbacks are run. suspend puts the hardware and software state
2117 * in each IP into a state suitable for suspend.
2118 * Returns 0 on success, negative error code on failure.
2120 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
2124 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2125 if (!adev->ip_blocks[i].status.valid)
2127 /* displays are handled in phase1 */
2128 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2130 /* XXX handle errors */
2131 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2132 /* XXX handle errors */
2134 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2135 adev->ip_blocks[i].version->funcs->name, r);
2143 * amdgpu_device_ip_suspend - run suspend for hardware IPs
2145 * @adev: amdgpu_device pointer
2147 * Main suspend function for hardware IPs. The list of all the hardware
2148 * IPs that make up the asic is walked, clockgating is disabled and the
2149 * suspend callbacks are run. suspend puts the hardware and software state
2150 * in each IP into a state suitable for suspend.
2151 * Returns 0 on success, negative error code on failure.
2153 int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2157 if (amdgpu_sriov_vf(adev))
2158 amdgpu_virt_request_full_gpu(adev, false);
2160 r = amdgpu_device_ip_suspend_phase1(adev);
2163 r = amdgpu_device_ip_suspend_phase2(adev);
2165 if (amdgpu_sriov_vf(adev))
2166 amdgpu_virt_release_full_gpu(adev, false);
2171 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
2175 static enum amd_ip_block_type ip_order[] = {
2176 AMD_IP_BLOCK_TYPE_GMC,
2177 AMD_IP_BLOCK_TYPE_COMMON,
2178 AMD_IP_BLOCK_TYPE_PSP,
2179 AMD_IP_BLOCK_TYPE_IH,
2182 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2184 struct amdgpu_ip_block *block;
2186 for (j = 0; j < adev->num_ip_blocks; j++) {
2187 block = &adev->ip_blocks[j];
2189 if (block->version->type != ip_order[i] ||
2190 !block->status.valid)
2193 r = block->version->funcs->hw_init(adev);
2194 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2203 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
2207 static enum amd_ip_block_type ip_order[] = {
2208 AMD_IP_BLOCK_TYPE_SMC,
2209 AMD_IP_BLOCK_TYPE_DCE,
2210 AMD_IP_BLOCK_TYPE_GFX,
2211 AMD_IP_BLOCK_TYPE_SDMA,
2212 AMD_IP_BLOCK_TYPE_UVD,
2213 AMD_IP_BLOCK_TYPE_VCE
2216 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2218 struct amdgpu_ip_block *block;
2220 for (j = 0; j < adev->num_ip_blocks; j++) {
2221 block = &adev->ip_blocks[j];
2223 if (block->version->type != ip_order[i] ||
2224 !block->status.valid)
2227 r = block->version->funcs->hw_init(adev);
2228 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2238 * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs
2240 * @adev: amdgpu_device pointer
2242 * First resume function for hardware IPs. The list of all the hardware
2243 * IPs that make up the asic is walked and the resume callbacks are run for
2244 * COMMON, GMC, and IH. resume puts the hardware into a functional state
2245 * after a suspend and updates the software state as necessary. This
2246 * function is also used for restoring the GPU after a GPU reset.
2247 * Returns 0 on success, negative error code on failure.
2249 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
2253 for (i = 0; i < adev->num_ip_blocks; i++) {
2254 if (!adev->ip_blocks[i].status.valid)
2256 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2257 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2258 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2259 r = adev->ip_blocks[i].version->funcs->resume(adev);
2261 DRM_ERROR("resume of IP block <%s> failed %d\n",
2262 adev->ip_blocks[i].version->funcs->name, r);
2272 * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs
2274 * @adev: amdgpu_device pointer
2276 * First resume function for hardware IPs. The list of all the hardware
2277 * IPs that make up the asic is walked and the resume callbacks are run for
2278 * all blocks except COMMON, GMC, and IH. resume puts the hardware into a
2279 * functional state after a suspend and updates the software state as
2280 * necessary. This function is also used for restoring the GPU after a GPU
2282 * Returns 0 on success, negative error code on failure.
2284 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
2288 for (i = 0; i < adev->num_ip_blocks; i++) {
2289 if (!adev->ip_blocks[i].status.valid)
2291 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2292 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2293 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
2294 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
2296 r = adev->ip_blocks[i].version->funcs->resume(adev);
2298 DRM_ERROR("resume of IP block <%s> failed %d\n",
2299 adev->ip_blocks[i].version->funcs->name, r);
2308 * amdgpu_device_ip_resume - run resume for hardware IPs
2310 * @adev: amdgpu_device pointer
2312 * Main resume function for hardware IPs. The hardware IPs
2313 * are split into two resume functions because they are
2314 * are also used in in recovering from a GPU reset and some additional
2315 * steps need to be take between them. In this case (S3/S4) they are
2317 * Returns 0 on success, negative error code on failure.
2319 static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
2323 r = amdgpu_device_ip_resume_phase1(adev);
2327 r = amdgpu_device_fw_loading(adev);
2331 r = amdgpu_device_ip_resume_phase2(adev);
2337 * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV
2339 * @adev: amdgpu_device pointer
2341 * Query the VBIOS data tables to determine if the board supports SR-IOV.
2343 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
2345 if (amdgpu_sriov_vf(adev)) {
2346 if (adev->is_atom_fw) {
2347 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2348 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2350 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2351 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2354 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
2355 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
2360 * amdgpu_device_asic_has_dc_support - determine if DC supports the asic
2362 * @asic_type: AMD asic type
2364 * Check if there is DC (new modesetting infrastructre) support for an asic.
2365 * returns true if DC has support, false if not.
2367 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2369 switch (asic_type) {
2370 #if defined(CONFIG_DRM_AMD_DC)
2376 * We have systems in the wild with these ASICs that require
2377 * LVDS and VGA support which is not supported with DC.
2379 * Fallback to the non-DC driver here by default so as not to
2380 * cause regressions.
2382 return amdgpu_dc > 0;
2386 case CHIP_POLARIS10:
2387 case CHIP_POLARIS11:
2388 case CHIP_POLARIS12:
2395 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
2398 return amdgpu_dc != 0;
2406 * amdgpu_device_has_dc_support - check if dc is supported
2408 * @adev: amdgpu_device_pointer
2410 * Returns true for supported, false for not supported
2412 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
2414 if (amdgpu_sriov_vf(adev))
2417 return amdgpu_device_asic_has_dc_support(adev->asic_type);
2421 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
2423 struct amdgpu_device *adev =
2424 container_of(__work, struct amdgpu_device, xgmi_reset_work);
2426 adev->asic_reset_res = amdgpu_asic_reset(adev);
2427 if (adev->asic_reset_res)
2428 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
2429 adev->asic_reset_res, adev->ddev->unique);
2434 * amdgpu_device_init - initialize the driver
2436 * @adev: amdgpu_device pointer
2437 * @ddev: drm dev pointer
2438 * @pdev: pci dev pointer
2439 * @flags: driver flags
2441 * Initializes the driver info and hw (all asics).
2442 * Returns 0 for success or an error on failure.
2443 * Called at driver startup.
2445 int amdgpu_device_init(struct amdgpu_device *adev,
2446 struct drm_device *ddev,
2447 struct pci_dev *pdev,
2451 bool runtime = false;
2454 adev->shutdown = false;
2455 adev->dev = &pdev->dev;
2458 adev->flags = flags;
2459 adev->asic_type = flags & AMD_ASIC_MASK;
2460 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
2461 if (amdgpu_emu_mode == 1)
2462 adev->usec_timeout *= 2;
2463 adev->gmc.gart_size = 512 * 1024 * 1024;
2464 adev->accel_working = false;
2465 adev->num_rings = 0;
2466 adev->mman.buffer_funcs = NULL;
2467 adev->mman.buffer_funcs_ring = NULL;
2468 adev->vm_manager.vm_pte_funcs = NULL;
2469 adev->vm_manager.vm_pte_num_rqs = 0;
2470 adev->gmc.gmc_funcs = NULL;
2471 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2472 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
2474 adev->smc_rreg = &amdgpu_invalid_rreg;
2475 adev->smc_wreg = &amdgpu_invalid_wreg;
2476 adev->pcie_rreg = &amdgpu_invalid_rreg;
2477 adev->pcie_wreg = &amdgpu_invalid_wreg;
2478 adev->pciep_rreg = &amdgpu_invalid_rreg;
2479 adev->pciep_wreg = &amdgpu_invalid_wreg;
2480 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
2481 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
2482 adev->didt_rreg = &amdgpu_invalid_rreg;
2483 adev->didt_wreg = &amdgpu_invalid_wreg;
2484 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
2485 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
2486 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
2487 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
2489 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
2490 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
2491 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
2493 /* mutex initialization are all done here so we
2494 * can recall function without having locking issues */
2495 atomic_set(&adev->irq.ih.lock, 0);
2496 mutex_init(&adev->firmware.mutex);
2497 mutex_init(&adev->pm.mutex);
2498 mutex_init(&adev->gfx.gpu_clock_mutex);
2499 mutex_init(&adev->srbm_mutex);
2500 mutex_init(&adev->gfx.pipe_reserve_mutex);
2501 mutex_init(&adev->gfx.gfx_off_mutex);
2502 mutex_init(&adev->grbm_idx_mutex);
2503 mutex_init(&adev->mn_lock);
2504 mutex_init(&adev->virt.vf_errors.lock);
2505 hash_init(adev->mn_hash);
2506 mutex_init(&adev->lock_reset);
2507 mutex_init(&adev->virt.dpm_mutex);
2509 r = amdgpu_device_check_arguments(adev);
2513 spin_lock_init(&adev->mmio_idx_lock);
2514 spin_lock_init(&adev->smc_idx_lock);
2515 spin_lock_init(&adev->pcie_idx_lock);
2516 spin_lock_init(&adev->uvd_ctx_idx_lock);
2517 spin_lock_init(&adev->didt_idx_lock);
2518 spin_lock_init(&adev->gc_cac_idx_lock);
2519 spin_lock_init(&adev->se_cac_idx_lock);
2520 spin_lock_init(&adev->audio_endpt_idx_lock);
2521 spin_lock_init(&adev->mm_stats.lock);
2523 INIT_LIST_HEAD(&adev->shadow_list);
2524 mutex_init(&adev->shadow_list_lock);
2526 INIT_LIST_HEAD(&adev->ring_lru_list);
2527 spin_lock_init(&adev->ring_lru_list_lock);
2529 INIT_DELAYED_WORK(&adev->delayed_init_work,
2530 amdgpu_device_delayed_init_work_handler);
2531 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
2532 amdgpu_device_delay_enable_gfx_off);
2534 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
2536 adev->gfx.gfx_off_req_count = 1;
2537 adev->pm.ac_power = power_supply_is_system_supplied() > 0 ? true : false;
2539 /* Registers mapping */
2540 /* TODO: block userspace mapping of io register */
2541 if (adev->asic_type >= CHIP_BONAIRE) {
2542 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2543 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2545 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2546 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2549 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2550 if (adev->rmmio == NULL) {
2553 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2554 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2556 /* io port mapping */
2557 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2558 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2559 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2560 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2564 if (adev->rio_mem == NULL)
2565 DRM_INFO("PCI I/O BAR is not found.\n");
2567 amdgpu_device_get_pcie_info(adev);
2569 /* early init functions */
2570 r = amdgpu_device_ip_early_init(adev);
2574 /* doorbell bar mapping and doorbell index init*/
2575 amdgpu_device_doorbell_init(adev);
2577 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
2578 /* this will fail for cards that aren't VGA class devices, just
2580 vga_client_register(adev->pdev, adev, NULL, amdgpu_device_vga_set_decode);
2582 if (amdgpu_device_is_px(ddev))
2584 if (!pci_is_thunderbolt_attached(adev->pdev))
2585 vga_switcheroo_register_client(adev->pdev,
2586 &amdgpu_switcheroo_ops, runtime);
2588 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
2590 if (amdgpu_emu_mode == 1) {
2591 /* post the asic on emulation mode */
2592 emu_soc_asic_init(adev);
2593 goto fence_driver_init;
2596 /* detect if we are with an SRIOV vbios */
2597 amdgpu_device_detect_sriov_bios(adev);
2599 /* check if we need to reset the asic
2600 * E.g., driver was not cleanly unloaded previously, etc.
2602 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
2603 r = amdgpu_asic_reset(adev);
2605 dev_err(adev->dev, "asic reset on init failed\n");
2610 /* Post card if necessary */
2611 if (amdgpu_device_need_post(adev)) {
2613 dev_err(adev->dev, "no vBIOS found\n");
2617 DRM_INFO("GPU posting now...\n");
2618 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2620 dev_err(adev->dev, "gpu post error!\n");
2625 if (adev->is_atom_fw) {
2626 /* Initialize clocks */
2627 r = amdgpu_atomfirmware_get_clock_info(adev);
2629 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
2630 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2634 /* Initialize clocks */
2635 r = amdgpu_atombios_get_clock_info(adev);
2637 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
2638 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2641 /* init i2c buses */
2642 if (!amdgpu_device_has_dc_support(adev))
2643 amdgpu_atombios_i2c_init(adev);
2648 r = amdgpu_fence_driver_init(adev);
2650 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
2651 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
2655 /* init the mode config */
2656 drm_mode_config_init(adev->ddev);
2658 r = amdgpu_device_ip_init(adev);
2660 /* failed in exclusive mode due to timeout */
2661 if (amdgpu_sriov_vf(adev) &&
2662 !amdgpu_sriov_runtime(adev) &&
2663 amdgpu_virt_mmio_blocked(adev) &&
2664 !amdgpu_virt_wait_reset(adev)) {
2665 dev_err(adev->dev, "VF exclusive mode timeout\n");
2666 /* Don't send request since VF is inactive. */
2667 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
2668 adev->virt.ops = NULL;
2672 dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
2673 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
2674 if (amdgpu_virt_request_full_gpu(adev, false))
2675 amdgpu_virt_release_full_gpu(adev, false);
2679 adev->accel_working = true;
2681 amdgpu_vm_check_compute_bug(adev);
2683 /* Initialize the buffer migration limit. */
2684 if (amdgpu_moverate >= 0)
2685 max_MBps = amdgpu_moverate;
2687 max_MBps = 8; /* Allow 8 MB/s. */
2688 /* Get a log2 for easy divisions. */
2689 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
2691 amdgpu_fbdev_init(adev);
2693 if (amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev))
2694 amdgpu_pm_virt_sysfs_init(adev);
2696 r = amdgpu_pm_sysfs_init(adev);
2698 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
2700 r = amdgpu_ucode_sysfs_init(adev);
2702 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
2704 r = amdgpu_debugfs_gem_init(adev);
2706 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
2708 r = amdgpu_debugfs_regs_init(adev);
2710 DRM_ERROR("registering register debugfs failed (%d).\n", r);
2712 r = amdgpu_debugfs_firmware_init(adev);
2714 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
2716 r = amdgpu_debugfs_init(adev);
2718 DRM_ERROR("Creating debugfs files failed (%d).\n", r);
2720 if ((amdgpu_testing & 1)) {
2721 if (adev->accel_working)
2722 amdgpu_test_moves(adev);
2724 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2726 if (amdgpu_benchmarking) {
2727 if (adev->accel_working)
2728 amdgpu_benchmark(adev, amdgpu_benchmarking);
2730 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2733 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2734 * explicit gating rather than handling it automatically.
2736 r = amdgpu_device_ip_late_init(adev);
2738 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
2739 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
2744 amdgpu_ras_resume(adev);
2746 queue_delayed_work(system_wq, &adev->delayed_init_work,
2747 msecs_to_jiffies(AMDGPU_RESUME_MS));
2749 r = device_create_file(adev->dev, &dev_attr_pcie_replay_count);
2751 dev_err(adev->dev, "Could not create pcie_replay_count");
2755 r = amdgpu_pmu_init(adev);
2757 dev_err(adev->dev, "amdgpu_pmu_init failed\n");
2762 amdgpu_vf_error_trans_all(adev);
2764 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2770 * amdgpu_device_fini - tear down the driver
2772 * @adev: amdgpu_device pointer
2774 * Tear down the driver info (all asics).
2775 * Called at driver shutdown.
2777 void amdgpu_device_fini(struct amdgpu_device *adev)
2781 DRM_INFO("amdgpu: finishing device.\n");
2782 adev->shutdown = true;
2783 /* disable all interrupts */
2784 amdgpu_irq_disable_all(adev);
2785 if (adev->mode_info.mode_config_initialized){
2786 if (!amdgpu_device_has_dc_support(adev))
2787 drm_helper_force_disable_all(adev->ddev);
2789 drm_atomic_helper_shutdown(adev->ddev);
2791 amdgpu_fence_driver_fini(adev);
2792 amdgpu_pm_sysfs_fini(adev);
2793 amdgpu_fbdev_fini(adev);
2794 r = amdgpu_device_ip_fini(adev);
2795 if (adev->firmware.gpu_info_fw) {
2796 release_firmware(adev->firmware.gpu_info_fw);
2797 adev->firmware.gpu_info_fw = NULL;
2799 adev->accel_working = false;
2800 cancel_delayed_work_sync(&adev->delayed_init_work);
2801 /* free i2c buses */
2802 if (!amdgpu_device_has_dc_support(adev))
2803 amdgpu_i2c_fini(adev);
2805 if (amdgpu_emu_mode != 1)
2806 amdgpu_atombios_fini(adev);
2810 if (!pci_is_thunderbolt_attached(adev->pdev))
2811 vga_switcheroo_unregister_client(adev->pdev);
2812 if (adev->flags & AMD_IS_PX)
2813 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2814 vga_client_register(adev->pdev, NULL, NULL, NULL);
2816 pci_iounmap(adev->pdev, adev->rio_mem);
2817 adev->rio_mem = NULL;
2818 iounmap(adev->rmmio);
2820 amdgpu_device_doorbell_fini(adev);
2821 if (amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev))
2822 amdgpu_pm_virt_sysfs_fini(adev);
2824 amdgpu_debugfs_regs_cleanup(adev);
2825 device_remove_file(adev->dev, &dev_attr_pcie_replay_count);
2826 amdgpu_ucode_sysfs_fini(adev);
2827 amdgpu_pmu_fini(adev);
2835 * amdgpu_device_suspend - initiate device suspend
2837 * @dev: drm dev pointer
2838 * @suspend: suspend state
2839 * @fbcon : notify the fbdev of suspend
2841 * Puts the hw in the suspend state (all asics).
2842 * Returns 0 for success or an error on failure.
2843 * Called at driver suspend.
2845 int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
2847 struct amdgpu_device *adev;
2848 struct drm_crtc *crtc;
2849 struct drm_connector *connector;
2852 if (dev == NULL || dev->dev_private == NULL) {
2856 adev = dev->dev_private;
2858 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2861 adev->in_suspend = true;
2862 drm_kms_helper_poll_disable(dev);
2865 amdgpu_fbdev_set_suspend(adev, 1);
2867 cancel_delayed_work_sync(&adev->delayed_init_work);
2869 if (!amdgpu_device_has_dc_support(adev)) {
2870 /* turn off display hw */
2871 drm_modeset_lock_all(dev);
2872 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2873 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2875 drm_modeset_unlock_all(dev);
2876 /* unpin the front buffers and cursors */
2877 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2878 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2879 struct drm_framebuffer *fb = crtc->primary->fb;
2880 struct amdgpu_bo *robj;
2882 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
2883 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2884 r = amdgpu_bo_reserve(aobj, true);
2886 amdgpu_bo_unpin(aobj);
2887 amdgpu_bo_unreserve(aobj);
2891 if (fb == NULL || fb->obj[0] == NULL) {
2894 robj = gem_to_amdgpu_bo(fb->obj[0]);
2895 /* don't unpin kernel fb objects */
2896 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
2897 r = amdgpu_bo_reserve(robj, true);
2899 amdgpu_bo_unpin(robj);
2900 amdgpu_bo_unreserve(robj);
2906 amdgpu_amdkfd_suspend(adev);
2908 amdgpu_ras_suspend(adev);
2910 r = amdgpu_device_ip_suspend_phase1(adev);
2912 /* evict vram memory */
2913 amdgpu_bo_evict_vram(adev);
2915 amdgpu_fence_driver_suspend(adev);
2917 r = amdgpu_device_ip_suspend_phase2(adev);
2919 /* evict remaining vram memory
2920 * This second call to evict vram is to evict the gart page table
2923 amdgpu_bo_evict_vram(adev);
2925 pci_save_state(dev->pdev);
2927 /* Shut down the device */
2928 pci_disable_device(dev->pdev);
2929 pci_set_power_state(dev->pdev, PCI_D3hot);
2931 r = amdgpu_asic_reset(adev);
2933 DRM_ERROR("amdgpu asic reset failed\n");
2940 * amdgpu_device_resume - initiate device resume
2942 * @dev: drm dev pointer
2943 * @resume: resume state
2944 * @fbcon : notify the fbdev of resume
2946 * Bring the hw back to operating state (all asics).
2947 * Returns 0 for success or an error on failure.
2948 * Called at driver resume.
2950 int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
2952 struct drm_connector *connector;
2953 struct amdgpu_device *adev = dev->dev_private;
2954 struct drm_crtc *crtc;
2957 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2961 pci_set_power_state(dev->pdev, PCI_D0);
2962 pci_restore_state(dev->pdev);
2963 r = pci_enable_device(dev->pdev);
2969 if (amdgpu_device_need_post(adev)) {
2970 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2972 DRM_ERROR("amdgpu asic init failed\n");
2975 r = amdgpu_device_ip_resume(adev);
2977 DRM_ERROR("amdgpu_device_ip_resume failed (%d).\n", r);
2980 amdgpu_fence_driver_resume(adev);
2983 r = amdgpu_device_ip_late_init(adev);
2987 queue_delayed_work(system_wq, &adev->delayed_init_work,
2988 msecs_to_jiffies(AMDGPU_RESUME_MS));
2990 if (!amdgpu_device_has_dc_support(adev)) {
2992 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2993 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2995 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
2996 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2997 r = amdgpu_bo_reserve(aobj, true);
2999 r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
3001 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
3002 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
3003 amdgpu_bo_unreserve(aobj);
3008 r = amdgpu_amdkfd_resume(adev);
3012 /* Make sure IB tests flushed */
3013 flush_delayed_work(&adev->delayed_init_work);
3015 /* blat the mode back in */
3017 if (!amdgpu_device_has_dc_support(adev)) {
3019 drm_helper_resume_force_mode(dev);
3021 /* turn on display hw */
3022 drm_modeset_lock_all(dev);
3023 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3024 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
3026 drm_modeset_unlock_all(dev);
3028 amdgpu_fbdev_set_suspend(adev, 0);
3031 drm_kms_helper_poll_enable(dev);
3033 amdgpu_ras_resume(adev);
3036 * Most of the connector probing functions try to acquire runtime pm
3037 * refs to ensure that the GPU is powered on when connector polling is
3038 * performed. Since we're calling this from a runtime PM callback,
3039 * trying to acquire rpm refs will cause us to deadlock.
3041 * Since we're guaranteed to be holding the rpm lock, it's safe to
3042 * temporarily disable the rpm helpers so this doesn't deadlock us.
3045 dev->dev->power.disable_depth++;
3047 if (!amdgpu_device_has_dc_support(adev))
3048 drm_helper_hpd_irq_event(dev);
3050 drm_kms_helper_hotplug_event(dev);
3052 dev->dev->power.disable_depth--;
3054 adev->in_suspend = false;
3060 * amdgpu_device_ip_check_soft_reset - did soft reset succeed
3062 * @adev: amdgpu_device pointer
3064 * The list of all the hardware IPs that make up the asic is walked and
3065 * the check_soft_reset callbacks are run. check_soft_reset determines
3066 * if the asic is still hung or not.
3067 * Returns true if any of the IPs are still in a hung state, false if not.
3069 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
3072 bool asic_hang = false;
3074 if (amdgpu_sriov_vf(adev))
3077 if (amdgpu_asic_need_full_reset(adev))
3080 for (i = 0; i < adev->num_ip_blocks; i++) {
3081 if (!adev->ip_blocks[i].status.valid)
3083 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
3084 adev->ip_blocks[i].status.hang =
3085 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
3086 if (adev->ip_blocks[i].status.hang) {
3087 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
3095 * amdgpu_device_ip_pre_soft_reset - prepare for soft reset
3097 * @adev: amdgpu_device pointer
3099 * The list of all the hardware IPs that make up the asic is walked and the
3100 * pre_soft_reset callbacks are run if the block is hung. pre_soft_reset
3101 * handles any IP specific hardware or software state changes that are
3102 * necessary for a soft reset to succeed.
3103 * Returns 0 on success, negative error code on failure.
3105 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
3109 for (i = 0; i < adev->num_ip_blocks; i++) {
3110 if (!adev->ip_blocks[i].status.valid)
3112 if (adev->ip_blocks[i].status.hang &&
3113 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
3114 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
3124 * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed
3126 * @adev: amdgpu_device pointer
3128 * Some hardware IPs cannot be soft reset. If they are hung, a full gpu
3129 * reset is necessary to recover.
3130 * Returns true if a full asic reset is required, false if not.
3132 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
3136 if (amdgpu_asic_need_full_reset(adev))
3139 for (i = 0; i < adev->num_ip_blocks; i++) {
3140 if (!adev->ip_blocks[i].status.valid)
3142 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
3143 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
3144 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
3145 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
3146 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
3147 if (adev->ip_blocks[i].status.hang) {
3148 DRM_INFO("Some block need full reset!\n");
3157 * amdgpu_device_ip_soft_reset - do a soft reset
3159 * @adev: amdgpu_device pointer
3161 * The list of all the hardware IPs that make up the asic is walked and the
3162 * soft_reset callbacks are run if the block is hung. soft_reset handles any
3163 * IP specific hardware or software state changes that are necessary to soft
3165 * Returns 0 on success, negative error code on failure.
3167 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
3171 for (i = 0; i < adev->num_ip_blocks; i++) {
3172 if (!adev->ip_blocks[i].status.valid)
3174 if (adev->ip_blocks[i].status.hang &&
3175 adev->ip_blocks[i].version->funcs->soft_reset) {
3176 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
3186 * amdgpu_device_ip_post_soft_reset - clean up from soft reset
3188 * @adev: amdgpu_device pointer
3190 * The list of all the hardware IPs that make up the asic is walked and the
3191 * post_soft_reset callbacks are run if the asic was hung. post_soft_reset
3192 * handles any IP specific hardware or software state changes that are
3193 * necessary after the IP has been soft reset.
3194 * Returns 0 on success, negative error code on failure.
3196 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
3200 for (i = 0; i < adev->num_ip_blocks; i++) {
3201 if (!adev->ip_blocks[i].status.valid)
3203 if (adev->ip_blocks[i].status.hang &&
3204 adev->ip_blocks[i].version->funcs->post_soft_reset)
3205 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
3214 * amdgpu_device_recover_vram - Recover some VRAM contents
3216 * @adev: amdgpu_device pointer
3218 * Restores the contents of VRAM buffers from the shadows in GTT. Used to
3219 * restore things like GPUVM page tables after a GPU reset where
3220 * the contents of VRAM might be lost.
3223 * 0 on success, negative error code on failure.
3225 static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
3227 struct dma_fence *fence = NULL, *next = NULL;
3228 struct amdgpu_bo *shadow;
3231 if (amdgpu_sriov_runtime(adev))
3232 tmo = msecs_to_jiffies(8000);
3234 tmo = msecs_to_jiffies(100);
3236 DRM_INFO("recover vram bo from shadow start\n");
3237 mutex_lock(&adev->shadow_list_lock);
3238 list_for_each_entry(shadow, &adev->shadow_list, shadow_list) {
3240 /* No need to recover an evicted BO */
3241 if (shadow->tbo.mem.mem_type != TTM_PL_TT ||
3242 shadow->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET ||
3243 shadow->parent->tbo.mem.mem_type != TTM_PL_VRAM)
3246 r = amdgpu_bo_restore_shadow(shadow, &next);
3251 tmo = dma_fence_wait_timeout(fence, false, tmo);
3252 dma_fence_put(fence);
3257 } else if (tmo < 0) {
3265 mutex_unlock(&adev->shadow_list_lock);
3268 tmo = dma_fence_wait_timeout(fence, false, tmo);
3269 dma_fence_put(fence);
3271 if (r < 0 || tmo <= 0) {
3272 DRM_ERROR("recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
3276 DRM_INFO("recover vram bo from shadow done\n");
3282 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
3284 * @adev: amdgpu device pointer
3285 * @from_hypervisor: request from hypervisor
3287 * do VF FLR and reinitialize Asic
3288 * return 0 means succeeded otherwise failed
3290 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
3291 bool from_hypervisor)
3295 if (from_hypervisor)
3296 r = amdgpu_virt_request_full_gpu(adev, true);
3298 r = amdgpu_virt_reset_gpu(adev);
3302 amdgpu_amdkfd_pre_reset(adev);
3304 /* Resume IP prior to SMC */
3305 r = amdgpu_device_ip_reinit_early_sriov(adev);
3309 /* we need recover gart prior to run SMC/CP/SDMA resume */
3310 amdgpu_gtt_mgr_recover(&adev->mman.bdev.man[TTM_PL_TT]);
3312 r = amdgpu_device_fw_loading(adev);
3316 /* now we are okay to resume SMC/CP/SDMA */
3317 r = amdgpu_device_ip_reinit_late_sriov(adev);
3321 amdgpu_irq_gpu_reset_resume_helper(adev);
3322 r = amdgpu_ib_ring_tests(adev);
3323 amdgpu_amdkfd_post_reset(adev);
3326 amdgpu_virt_init_data_exchange(adev);
3327 amdgpu_virt_release_full_gpu(adev, true);
3328 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
3329 atomic_inc(&adev->vram_lost_counter);
3330 r = amdgpu_device_recover_vram(adev);
3337 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
3339 * @adev: amdgpu device pointer
3341 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
3344 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
3346 if (!amdgpu_device_ip_check_soft_reset(adev)) {
3347 DRM_INFO("Timeout, but no hardware hang detected.\n");
3351 if (amdgpu_gpu_recovery == 0)
3354 if (amdgpu_sriov_vf(adev))
3357 if (amdgpu_gpu_recovery == -1) {
3358 switch (adev->asic_type) {
3364 case CHIP_POLARIS10:
3365 case CHIP_POLARIS11:
3366 case CHIP_POLARIS12:
3380 DRM_INFO("GPU recovery disabled.\n");
3385 static int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev,
3386 struct amdgpu_job *job,
3387 bool *need_full_reset_arg)
3390 bool need_full_reset = *need_full_reset_arg;
3392 /* block all schedulers and reset given job's ring */
3393 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3394 struct amdgpu_ring *ring = adev->rings[i];
3396 if (!ring || !ring->sched.thread)
3399 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
3400 amdgpu_fence_driver_force_completion(ring);
3404 drm_sched_increase_karma(&job->base);
3406 /* Don't suspend on bare metal if we are not going to HW reset the ASIC */
3407 if (!amdgpu_sriov_vf(adev)) {
3409 if (!need_full_reset)
3410 need_full_reset = amdgpu_device_ip_need_full_reset(adev);
3412 if (!need_full_reset) {
3413 amdgpu_device_ip_pre_soft_reset(adev);
3414 r = amdgpu_device_ip_soft_reset(adev);
3415 amdgpu_device_ip_post_soft_reset(adev);
3416 if (r || amdgpu_device_ip_check_soft_reset(adev)) {
3417 DRM_INFO("soft reset failed, will fallback to full reset!\n");
3418 need_full_reset = true;
3422 if (need_full_reset)
3423 r = amdgpu_device_ip_suspend(adev);
3425 *need_full_reset_arg = need_full_reset;
3431 static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
3432 struct list_head *device_list_handle,
3433 bool *need_full_reset_arg)
3435 struct amdgpu_device *tmp_adev = NULL;
3436 bool need_full_reset = *need_full_reset_arg, vram_lost = false;
3440 * ASIC reset has to be done on all HGMI hive nodes ASAP
3441 * to allow proper links negotiation in FW (within 1 sec)
3443 if (need_full_reset) {
3444 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3445 /* For XGMI run all resets in parallel to speed up the process */
3446 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3447 if (!queue_work(system_highpri_wq, &tmp_adev->xgmi_reset_work))
3450 r = amdgpu_asic_reset(tmp_adev);
3453 DRM_ERROR("ASIC reset failed with error, %d for drm dev, %s",
3454 r, tmp_adev->ddev->unique);
3459 /* For XGMI wait for all PSP resets to complete before proceed */
3461 list_for_each_entry(tmp_adev, device_list_handle,
3463 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3464 flush_work(&tmp_adev->xgmi_reset_work);
3465 r = tmp_adev->asic_reset_res;
3471 list_for_each_entry(tmp_adev, device_list_handle,
3473 amdgpu_ras_reserve_bad_pages(tmp_adev);
3479 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3480 if (need_full_reset) {
3482 if (amdgpu_atom_asic_init(tmp_adev->mode_info.atom_context))
3483 DRM_WARN("asic atom init failed!");
3486 dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n");
3487 r = amdgpu_device_ip_resume_phase1(tmp_adev);
3491 vram_lost = amdgpu_device_check_vram_lost(tmp_adev);
3493 DRM_INFO("VRAM is lost due to GPU reset!\n");
3494 atomic_inc(&tmp_adev->vram_lost_counter);
3497 r = amdgpu_gtt_mgr_recover(
3498 &tmp_adev->mman.bdev.man[TTM_PL_TT]);
3502 r = amdgpu_device_fw_loading(tmp_adev);
3506 r = amdgpu_device_ip_resume_phase2(tmp_adev);
3511 amdgpu_device_fill_reset_magic(tmp_adev);
3513 r = amdgpu_device_ip_late_init(tmp_adev);
3518 amdgpu_ras_resume(tmp_adev);
3520 /* Update PSP FW topology after reset */
3521 if (hive && tmp_adev->gmc.xgmi.num_physical_nodes > 1)
3522 r = amdgpu_xgmi_update_topology(hive, tmp_adev);
3529 amdgpu_irq_gpu_reset_resume_helper(tmp_adev);
3530 r = amdgpu_ib_ring_tests(tmp_adev);
3532 dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r);
3533 r = amdgpu_device_ip_suspend(tmp_adev);
3534 need_full_reset = true;
3541 r = amdgpu_device_recover_vram(tmp_adev);
3543 tmp_adev->asic_reset_res = r;
3547 *need_full_reset_arg = need_full_reset;
3551 static bool amdgpu_device_lock_adev(struct amdgpu_device *adev, bool trylock)
3554 if (!mutex_trylock(&adev->lock_reset))
3557 mutex_lock(&adev->lock_reset);
3559 atomic_inc(&adev->gpu_reset_counter);
3560 adev->in_gpu_reset = 1;
3561 /* Block kfd: SRIOV would do it separately */
3562 if (!amdgpu_sriov_vf(adev))
3563 amdgpu_amdkfd_pre_reset(adev);
3568 static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
3570 /*unlock kfd: SRIOV would do it separately */
3571 if (!amdgpu_sriov_vf(adev))
3572 amdgpu_amdkfd_post_reset(adev);
3573 amdgpu_vf_error_trans_all(adev);
3574 adev->in_gpu_reset = 0;
3575 mutex_unlock(&adev->lock_reset);
3580 * amdgpu_device_gpu_recover - reset the asic and recover scheduler
3582 * @adev: amdgpu device pointer
3583 * @job: which job trigger hang
3585 * Attempt to reset the GPU if it has hung (all asics).
3586 * Attempt to do soft-reset or full-reset and reinitialize Asic
3587 * Returns 0 for success or an error on failure.
3590 int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
3591 struct amdgpu_job *job)
3593 struct list_head device_list, *device_list_handle = NULL;
3594 bool need_full_reset, job_signaled;
3595 struct amdgpu_hive_info *hive = NULL;
3596 struct amdgpu_device *tmp_adev = NULL;
3599 need_full_reset = job_signaled = false;
3600 INIT_LIST_HEAD(&device_list);
3602 dev_info(adev->dev, "GPU reset begin!\n");
3604 cancel_delayed_work_sync(&adev->delayed_init_work);
3606 hive = amdgpu_get_xgmi_hive(adev, false);
3609 * Here we trylock to avoid chain of resets executing from
3610 * either trigger by jobs on different adevs in XGMI hive or jobs on
3611 * different schedulers for same device while this TO handler is running.
3612 * We always reset all schedulers for device and all devices for XGMI
3613 * hive so that should take care of them too.
3616 if (hive && !mutex_trylock(&hive->reset_lock)) {
3617 DRM_INFO("Bailing on TDR for s_job:%llx, hive: %llx as another already in progress",
3618 job->base.id, hive->hive_id);
3622 /* Start with adev pre asic reset first for soft reset check.*/
3623 if (!amdgpu_device_lock_adev(adev, !hive)) {
3624 DRM_INFO("Bailing on TDR for s_job:%llx, as another already in progress",
3629 /* Build list of devices to reset */
3630 if (adev->gmc.xgmi.num_physical_nodes > 1) {
3632 amdgpu_device_unlock_adev(adev);
3637 * In case we are in XGMI hive mode device reset is done for all the
3638 * nodes in the hive to retrain all XGMI links and hence the reset
3639 * sequence is executed in loop on all nodes.
3641 device_list_handle = &hive->device_list;
3643 list_add_tail(&adev->gmc.xgmi.head, &device_list);
3644 device_list_handle = &device_list;
3647 /* block all schedulers and reset given job's ring */
3648 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3649 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3650 struct amdgpu_ring *ring = tmp_adev->rings[i];
3652 if (!ring || !ring->sched.thread)
3655 drm_sched_stop(&ring->sched, &job->base);
3661 * Must check guilty signal here since after this point all old
3662 * HW fences are force signaled.
3664 * job->base holds a reference to parent fence
3666 if (job && job->base.s_fence->parent &&
3667 dma_fence_is_signaled(job->base.s_fence->parent))
3668 job_signaled = true;
3670 if (!amdgpu_device_ip_need_full_reset(adev))
3671 device_list_handle = &device_list;
3674 dev_info(adev->dev, "Guilty job already signaled, skipping HW reset");
3679 /* Guilty job will be freed after this*/
3680 r = amdgpu_device_pre_asic_reset(adev,
3684 /*TODO Should we stop ?*/
3685 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
3686 r, adev->ddev->unique);
3687 adev->asic_reset_res = r;
3690 retry: /* Rest of adevs pre asic reset from XGMI hive. */
3691 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3693 if (tmp_adev == adev)
3696 amdgpu_device_lock_adev(tmp_adev, false);
3697 r = amdgpu_device_pre_asic_reset(tmp_adev,
3700 /*TODO Should we stop ?*/
3702 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
3703 r, tmp_adev->ddev->unique);
3704 tmp_adev->asic_reset_res = r;
3708 /* Actual ASIC resets if needed.*/
3709 /* TODO Implement XGMI hive reset logic for SRIOV */
3710 if (amdgpu_sriov_vf(adev)) {
3711 r = amdgpu_device_reset_sriov(adev, job ? false : true);
3713 adev->asic_reset_res = r;
3715 r = amdgpu_do_asic_reset(hive, device_list_handle, &need_full_reset);
3716 if (r && r == -EAGAIN)
3722 /* Post ASIC reset for all devs .*/
3723 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3724 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3725 struct amdgpu_ring *ring = tmp_adev->rings[i];
3727 if (!ring || !ring->sched.thread)
3730 /* No point to resubmit jobs if we didn't HW reset*/
3731 if (!tmp_adev->asic_reset_res && !job_signaled)
3732 drm_sched_resubmit_jobs(&ring->sched);
3734 drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res);
3737 if (!amdgpu_device_has_dc_support(tmp_adev) && !job_signaled) {
3738 drm_helper_resume_force_mode(tmp_adev->ddev);
3741 tmp_adev->asic_reset_res = 0;
3744 /* bad news, how to tell it to userspace ? */
3745 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&adev->gpu_reset_counter));
3746 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
3748 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&adev->gpu_reset_counter));
3751 amdgpu_device_unlock_adev(tmp_adev);
3755 mutex_unlock(&hive->reset_lock);
3758 dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
3763 * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot
3765 * @adev: amdgpu_device pointer
3767 * Fetchs and stores in the driver the PCIE capabilities (gen speed
3768 * and lanes) of the slot the device is in. Handles APUs and
3769 * virtualized environments where PCIE config space may not be available.
3771 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
3773 struct pci_dev *pdev;
3774 enum pci_bus_speed speed_cap, platform_speed_cap;
3775 enum pcie_link_width platform_link_width;
3777 if (amdgpu_pcie_gen_cap)
3778 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
3780 if (amdgpu_pcie_lane_cap)
3781 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
3783 /* covers APUs as well */
3784 if (pci_is_root_bus(adev->pdev->bus)) {
3785 if (adev->pm.pcie_gen_mask == 0)
3786 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3787 if (adev->pm.pcie_mlw_mask == 0)
3788 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
3792 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
3795 pcie_bandwidth_available(adev->pdev, NULL,
3796 &platform_speed_cap, &platform_link_width);
3798 if (adev->pm.pcie_gen_mask == 0) {
3801 speed_cap = pcie_get_speed_cap(pdev);
3802 if (speed_cap == PCI_SPEED_UNKNOWN) {
3803 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3804 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3805 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3807 if (speed_cap == PCIE_SPEED_16_0GT)
3808 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3809 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3810 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
3811 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4);
3812 else if (speed_cap == PCIE_SPEED_8_0GT)
3813 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3814 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3815 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3816 else if (speed_cap == PCIE_SPEED_5_0GT)
3817 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3818 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2);
3820 adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1;
3823 if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
3824 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3825 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
3827 if (platform_speed_cap == PCIE_SPEED_16_0GT)
3828 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3829 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3830 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
3831 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4);
3832 else if (platform_speed_cap == PCIE_SPEED_8_0GT)
3833 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3834 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3835 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3);
3836 else if (platform_speed_cap == PCIE_SPEED_5_0GT)
3837 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3838 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
3840 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
3844 if (adev->pm.pcie_mlw_mask == 0) {
3845 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
3846 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
3848 switch (platform_link_width) {
3850 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
3851 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3852 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3853 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3854 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3855 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3856 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3859 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3860 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3861 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3862 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3863 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3864 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3867 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3868 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3869 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3870 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3871 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3874 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3875 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3876 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3877 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3880 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3881 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3882 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3885 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3886 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3889 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;