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"
65 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
66 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
67 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
68 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
69 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
71 #define AMDGPU_RESUME_MS 2000
73 static const char *amdgpu_asic_name[] = {
101 * DOC: pcie_replay_count
103 * The amdgpu driver provides a sysfs API for reporting the total number
104 * of PCIe replays (NAKs)
105 * The file pcie_replay_count is used for this and returns the total
106 * number of replays as a sum of the NAKs generated and NAKs received
109 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev,
110 struct device_attribute *attr, char *buf)
112 struct drm_device *ddev = dev_get_drvdata(dev);
113 struct amdgpu_device *adev = ddev->dev_private;
114 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
116 return snprintf(buf, PAGE_SIZE, "%llu\n", cnt);
119 static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
120 amdgpu_device_get_pcie_replay_count, NULL);
122 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
125 * amdgpu_device_is_px - Is the device is a dGPU with HG/PX power control
127 * @dev: drm_device pointer
129 * Returns true if the device is a dGPU with HG/PX power control,
130 * otherwise return false.
132 bool amdgpu_device_is_px(struct drm_device *dev)
134 struct amdgpu_device *adev = dev->dev_private;
136 if (adev->flags & AMD_IS_PX)
142 * MMIO register access helper functions.
145 * amdgpu_mm_rreg - read a memory mapped IO register
147 * @adev: amdgpu_device pointer
148 * @reg: dword aligned register offset
149 * @acc_flags: access flags which require special behavior
151 * Returns the 32 bit value from the offset specified.
153 uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
158 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
159 return amdgpu_virt_kiq_rreg(adev, reg);
161 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
162 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
166 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
167 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
168 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
169 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
171 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
176 * MMIO register read with bytes helper functions
177 * @offset:bytes offset from MMIO start
182 * amdgpu_mm_rreg8 - read a memory mapped IO register
184 * @adev: amdgpu_device pointer
185 * @offset: byte aligned register offset
187 * Returns the 8 bit value from the offset specified.
189 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset) {
190 if (offset < adev->rmmio_size)
191 return (readb(adev->rmmio + offset));
196 * MMIO register write with bytes helper functions
197 * @offset:bytes offset from MMIO start
198 * @value: the value want to be written to the register
202 * amdgpu_mm_wreg8 - read a memory mapped IO register
204 * @adev: amdgpu_device pointer
205 * @offset: byte aligned register offset
206 * @value: 8 bit value to write
208 * Writes the value specified to the offset specified.
210 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value) {
211 if (offset < adev->rmmio_size)
212 writeb(value, adev->rmmio + offset);
218 * amdgpu_mm_wreg - write to a memory mapped IO register
220 * @adev: amdgpu_device pointer
221 * @reg: dword aligned register offset
222 * @v: 32 bit value to write to the register
223 * @acc_flags: access flags which require special behavior
225 * Writes the value specified to the offset specified.
227 void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
230 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
232 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
233 adev->last_mm_index = v;
236 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
237 return amdgpu_virt_kiq_wreg(adev, reg, v);
239 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
240 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
244 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
245 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
246 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
247 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
250 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
256 * amdgpu_io_rreg - read an IO register
258 * @adev: amdgpu_device pointer
259 * @reg: dword aligned register offset
261 * Returns the 32 bit value from the offset specified.
263 u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
265 if ((reg * 4) < adev->rio_mem_size)
266 return ioread32(adev->rio_mem + (reg * 4));
268 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
269 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
274 * amdgpu_io_wreg - write to an IO register
276 * @adev: amdgpu_device pointer
277 * @reg: dword aligned register offset
278 * @v: 32 bit value to write to the register
280 * Writes the value specified to the offset specified.
282 void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
284 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
285 adev->last_mm_index = v;
288 if ((reg * 4) < adev->rio_mem_size)
289 iowrite32(v, adev->rio_mem + (reg * 4));
291 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
292 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
295 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
301 * amdgpu_mm_rdoorbell - read a doorbell dword
303 * @adev: amdgpu_device pointer
304 * @index: doorbell index
306 * Returns the value in the doorbell aperture at the
307 * requested doorbell index (CIK).
309 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
311 if (index < adev->doorbell.num_doorbells) {
312 return readl(adev->doorbell.ptr + index);
314 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
320 * amdgpu_mm_wdoorbell - write a doorbell dword
322 * @adev: amdgpu_device pointer
323 * @index: doorbell index
326 * Writes @v to the doorbell aperture at the
327 * requested doorbell index (CIK).
329 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
331 if (index < adev->doorbell.num_doorbells) {
332 writel(v, adev->doorbell.ptr + index);
334 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
339 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
341 * @adev: amdgpu_device pointer
342 * @index: doorbell index
344 * Returns the value in the doorbell aperture at the
345 * requested doorbell index (VEGA10+).
347 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
349 if (index < adev->doorbell.num_doorbells) {
350 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
352 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
358 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
360 * @adev: amdgpu_device pointer
361 * @index: doorbell index
364 * Writes @v to the doorbell aperture at the
365 * requested doorbell index (VEGA10+).
367 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
369 if (index < adev->doorbell.num_doorbells) {
370 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
372 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
377 * amdgpu_invalid_rreg - dummy reg read function
379 * @adev: amdgpu device pointer
380 * @reg: offset of register
382 * Dummy register read function. Used for register blocks
383 * that certain asics don't have (all asics).
384 * Returns the value in the register.
386 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
388 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
394 * amdgpu_invalid_wreg - dummy reg write function
396 * @adev: amdgpu device pointer
397 * @reg: offset of register
398 * @v: value to write to the register
400 * Dummy register read function. Used for register blocks
401 * that certain asics don't have (all asics).
403 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
405 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
411 * amdgpu_block_invalid_rreg - dummy reg read function
413 * @adev: amdgpu device pointer
414 * @block: offset of instance
415 * @reg: offset of register
417 * Dummy register read function. Used for register blocks
418 * that certain asics don't have (all asics).
419 * Returns the value in the register.
421 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
422 uint32_t block, uint32_t reg)
424 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
431 * amdgpu_block_invalid_wreg - dummy reg write function
433 * @adev: amdgpu device pointer
434 * @block: offset of instance
435 * @reg: offset of register
436 * @v: value to write to the register
438 * Dummy register read function. Used for register blocks
439 * that certain asics don't have (all asics).
441 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
443 uint32_t reg, uint32_t v)
445 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
451 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
453 * @adev: amdgpu device pointer
455 * Allocates a scratch page of VRAM for use by various things in the
458 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
460 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
461 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
462 &adev->vram_scratch.robj,
463 &adev->vram_scratch.gpu_addr,
464 (void **)&adev->vram_scratch.ptr);
468 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
470 * @adev: amdgpu device pointer
472 * Frees the VRAM scratch page.
474 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
476 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
480 * amdgpu_device_program_register_sequence - program an array of registers.
482 * @adev: amdgpu_device pointer
483 * @registers: pointer to the register array
484 * @array_size: size of the register array
486 * Programs an array or registers with and and or masks.
487 * This is a helper for setting golden registers.
489 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
490 const u32 *registers,
491 const u32 array_size)
493 u32 tmp, reg, and_mask, or_mask;
499 for (i = 0; i < array_size; i +=3) {
500 reg = registers[i + 0];
501 and_mask = registers[i + 1];
502 or_mask = registers[i + 2];
504 if (and_mask == 0xffffffff) {
516 * amdgpu_device_pci_config_reset - reset the GPU
518 * @adev: amdgpu_device pointer
520 * Resets the GPU using the pci config reset sequence.
521 * Only applicable to asics prior to vega10.
523 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
525 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
529 * GPU doorbell aperture helpers function.
532 * amdgpu_device_doorbell_init - Init doorbell driver information.
534 * @adev: amdgpu_device pointer
536 * Init doorbell driver information (CIK)
537 * Returns 0 on success, error on failure.
539 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
542 /* No doorbell on SI hardware generation */
543 if (adev->asic_type < CHIP_BONAIRE) {
544 adev->doorbell.base = 0;
545 adev->doorbell.size = 0;
546 adev->doorbell.num_doorbells = 0;
547 adev->doorbell.ptr = NULL;
551 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
554 amdgpu_asic_init_doorbell_index(adev);
556 /* doorbell bar mapping */
557 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
558 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
560 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
561 adev->doorbell_index.max_assignment+1);
562 if (adev->doorbell.num_doorbells == 0)
565 /* For Vega, reserve and map two pages on doorbell BAR since SDMA
566 * paging queue doorbell use the second page. The
567 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the
568 * doorbells are in the first page. So with paging queue enabled,
569 * the max num_doorbells should + 1 page (0x400 in dword)
571 if (adev->asic_type >= CHIP_VEGA10)
572 adev->doorbell.num_doorbells += 0x400;
574 adev->doorbell.ptr = ioremap(adev->doorbell.base,
575 adev->doorbell.num_doorbells *
577 if (adev->doorbell.ptr == NULL)
584 * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
586 * @adev: amdgpu_device pointer
588 * Tear down doorbell driver information (CIK)
590 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
592 iounmap(adev->doorbell.ptr);
593 adev->doorbell.ptr = NULL;
599 * amdgpu_device_wb_*()
600 * Writeback is the method by which the GPU updates special pages in memory
601 * with the status of certain GPU events (fences, ring pointers,etc.).
605 * amdgpu_device_wb_fini - Disable Writeback and free memory
607 * @adev: amdgpu_device pointer
609 * Disables Writeback and frees the Writeback memory (all asics).
610 * Used at driver shutdown.
612 static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
614 if (adev->wb.wb_obj) {
615 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
617 (void **)&adev->wb.wb);
618 adev->wb.wb_obj = NULL;
623 * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
625 * @adev: amdgpu_device pointer
627 * Initializes writeback and allocates writeback memory (all asics).
628 * Used at driver startup.
629 * Returns 0 on success or an -error on failure.
631 static int amdgpu_device_wb_init(struct amdgpu_device *adev)
635 if (adev->wb.wb_obj == NULL) {
636 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
637 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
638 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
639 &adev->wb.wb_obj, &adev->wb.gpu_addr,
640 (void **)&adev->wb.wb);
642 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
646 adev->wb.num_wb = AMDGPU_MAX_WB;
647 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
649 /* clear wb memory */
650 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
657 * amdgpu_device_wb_get - Allocate a wb entry
659 * @adev: amdgpu_device pointer
662 * Allocate a wb slot for use by the driver (all asics).
663 * Returns 0 on success or -EINVAL on failure.
665 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
667 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
669 if (offset < adev->wb.num_wb) {
670 __set_bit(offset, adev->wb.used);
671 *wb = offset << 3; /* convert to dw offset */
679 * amdgpu_device_wb_free - Free a wb entry
681 * @adev: amdgpu_device pointer
684 * Free a wb slot allocated for use by the driver (all asics)
686 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
689 if (wb < adev->wb.num_wb)
690 __clear_bit(wb, adev->wb.used);
694 * amdgpu_device_resize_fb_bar - try to resize FB BAR
696 * @adev: amdgpu_device pointer
698 * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not
699 * to fail, but if any of the BARs is not accessible after the size we abort
700 * driver loading by returning -ENODEV.
702 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
704 u64 space_needed = roundup_pow_of_two(adev->gmc.real_vram_size);
705 u32 rbar_size = order_base_2(((space_needed >> 20) | 1)) - 1;
706 struct pci_bus *root;
707 struct resource *res;
713 if (amdgpu_sriov_vf(adev))
716 /* Check if the root BUS has 64bit memory resources */
717 root = adev->pdev->bus;
721 pci_bus_for_each_resource(root, res, i) {
722 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
723 res->start > 0x100000000ull)
727 /* Trying to resize is pointless without a root hub window above 4GB */
731 /* Disable memory decoding while we change the BAR addresses and size */
732 pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd);
733 pci_write_config_word(adev->pdev, PCI_COMMAND,
734 cmd & ~PCI_COMMAND_MEMORY);
736 /* Free the VRAM and doorbell BAR, we most likely need to move both. */
737 amdgpu_device_doorbell_fini(adev);
738 if (adev->asic_type >= CHIP_BONAIRE)
739 pci_release_resource(adev->pdev, 2);
741 pci_release_resource(adev->pdev, 0);
743 r = pci_resize_resource(adev->pdev, 0, rbar_size);
745 DRM_INFO("Not enough PCI address space for a large BAR.");
746 else if (r && r != -ENOTSUPP)
747 DRM_ERROR("Problem resizing BAR0 (%d).", r);
749 pci_assign_unassigned_bus_resources(adev->pdev->bus);
751 /* When the doorbell or fb BAR isn't available we have no chance of
754 r = amdgpu_device_doorbell_init(adev);
755 if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET))
758 pci_write_config_word(adev->pdev, PCI_COMMAND, cmd);
764 * GPU helpers function.
767 * amdgpu_device_need_post - check if the hw need post or not
769 * @adev: amdgpu_device pointer
771 * Check if the asic has been initialized (all asics) at driver startup
772 * or post is needed if hw reset is performed.
773 * Returns true if need or false if not.
775 bool amdgpu_device_need_post(struct amdgpu_device *adev)
779 if (amdgpu_sriov_vf(adev))
782 if (amdgpu_passthrough(adev)) {
783 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
784 * some old smc fw still need driver do vPost otherwise gpu hang, while
785 * those smc fw version above 22.15 doesn't have this flaw, so we force
786 * vpost executed for smc version below 22.15
788 if (adev->asic_type == CHIP_FIJI) {
791 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
792 /* force vPost if error occured */
796 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
797 if (fw_ver < 0x00160e00)
802 if (adev->has_hw_reset) {
803 adev->has_hw_reset = false;
807 /* bios scratch used on CIK+ */
808 if (adev->asic_type >= CHIP_BONAIRE)
809 return amdgpu_atombios_scratch_need_asic_init(adev);
811 /* check MEM_SIZE for older asics */
812 reg = amdgpu_asic_get_config_memsize(adev);
814 if ((reg != 0) && (reg != 0xffffffff))
820 /* if we get transitioned to only one device, take VGA back */
822 * amdgpu_device_vga_set_decode - enable/disable vga decode
824 * @cookie: amdgpu_device pointer
825 * @state: enable/disable vga decode
827 * Enable/disable vga decode (all asics).
828 * Returns VGA resource flags.
830 static unsigned int amdgpu_device_vga_set_decode(void *cookie, bool state)
832 struct amdgpu_device *adev = cookie;
833 amdgpu_asic_set_vga_state(adev, state);
835 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
836 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
838 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
842 * amdgpu_device_check_block_size - validate the vm block size
844 * @adev: amdgpu_device pointer
846 * Validates the vm block size specified via module parameter.
847 * The vm block size defines number of bits in page table versus page directory,
848 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
849 * page table and the remaining bits are in the page directory.
851 static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
853 /* defines number of bits in page table versus page directory,
854 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
855 * page table and the remaining bits are in the page directory */
856 if (amdgpu_vm_block_size == -1)
859 if (amdgpu_vm_block_size < 9) {
860 dev_warn(adev->dev, "VM page table size (%d) too small\n",
861 amdgpu_vm_block_size);
862 amdgpu_vm_block_size = -1;
867 * amdgpu_device_check_vm_size - validate the vm size
869 * @adev: amdgpu_device pointer
871 * Validates the vm size in GB specified via module parameter.
872 * The VM size is the size of the GPU virtual memory space in GB.
874 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
876 /* no need to check the default value */
877 if (amdgpu_vm_size == -1)
880 if (amdgpu_vm_size < 1) {
881 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
887 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
890 bool is_os_64 = (sizeof(void *) == 8) ? true : false;
891 uint64_t total_memory;
892 uint64_t dram_size_seven_GB = 0x1B8000000;
893 uint64_t dram_size_three_GB = 0xB8000000;
895 if (amdgpu_smu_memory_pool_size == 0)
899 DRM_WARN("Not 64-bit OS, feature not supported\n");
903 total_memory = (uint64_t)si.totalram * si.mem_unit;
905 if ((amdgpu_smu_memory_pool_size == 1) ||
906 (amdgpu_smu_memory_pool_size == 2)) {
907 if (total_memory < dram_size_three_GB)
909 } else if ((amdgpu_smu_memory_pool_size == 4) ||
910 (amdgpu_smu_memory_pool_size == 8)) {
911 if (total_memory < dram_size_seven_GB)
914 DRM_WARN("Smu memory pool size not supported\n");
917 adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28;
922 DRM_WARN("No enough system memory\n");
924 adev->pm.smu_prv_buffer_size = 0;
928 * amdgpu_device_check_arguments - validate module params
930 * @adev: amdgpu_device pointer
932 * Validates certain module parameters and updates
933 * the associated values used by the driver (all asics).
935 static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
939 if (amdgpu_sched_jobs < 4) {
940 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
942 amdgpu_sched_jobs = 4;
943 } else if (!is_power_of_2(amdgpu_sched_jobs)){
944 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
946 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
949 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
950 /* gart size must be greater or equal to 32M */
951 dev_warn(adev->dev, "gart size (%d) too small\n",
953 amdgpu_gart_size = -1;
956 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
957 /* gtt size must be greater or equal to 32M */
958 dev_warn(adev->dev, "gtt size (%d) too small\n",
960 amdgpu_gtt_size = -1;
963 /* valid range is between 4 and 9 inclusive */
964 if (amdgpu_vm_fragment_size != -1 &&
965 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
966 dev_warn(adev->dev, "valid range is between 4 and 9\n");
967 amdgpu_vm_fragment_size = -1;
970 amdgpu_device_check_smu_prv_buffer_size(adev);
972 amdgpu_device_check_vm_size(adev);
974 amdgpu_device_check_block_size(adev);
976 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
977 !is_power_of_2(amdgpu_vram_page_split))) {
978 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
979 amdgpu_vram_page_split);
980 amdgpu_vram_page_split = 1024;
983 ret = amdgpu_device_get_job_timeout_settings(adev);
985 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
989 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
995 * amdgpu_switcheroo_set_state - set switcheroo state
997 * @pdev: pci dev pointer
998 * @state: vga_switcheroo state
1000 * Callback for the switcheroo driver. Suspends or resumes the
1001 * the asics before or after it is powered up using ACPI methods.
1003 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1005 struct drm_device *dev = pci_get_drvdata(pdev);
1007 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1010 if (state == VGA_SWITCHEROO_ON) {
1011 pr_info("amdgpu: switched on\n");
1012 /* don't suspend or resume card normally */
1013 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1015 amdgpu_device_resume(dev, true, true);
1017 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1018 drm_kms_helper_poll_enable(dev);
1020 pr_info("amdgpu: switched off\n");
1021 drm_kms_helper_poll_disable(dev);
1022 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1023 amdgpu_device_suspend(dev, true, true);
1024 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1029 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1031 * @pdev: pci dev pointer
1033 * Callback for the switcheroo driver. Check of the switcheroo
1034 * state can be changed.
1035 * Returns true if the state can be changed, false if not.
1037 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1039 struct drm_device *dev = pci_get_drvdata(pdev);
1042 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1043 * locking inversion with the driver load path. And the access here is
1044 * completely racy anyway. So don't bother with locking for now.
1046 return dev->open_count == 0;
1049 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1050 .set_gpu_state = amdgpu_switcheroo_set_state,
1052 .can_switch = amdgpu_switcheroo_can_switch,
1056 * amdgpu_device_ip_set_clockgating_state - set the CG state
1058 * @dev: amdgpu_device pointer
1059 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1060 * @state: clockgating state (gate or ungate)
1062 * Sets the requested clockgating state for all instances of
1063 * the hardware IP specified.
1064 * Returns the error code from the last instance.
1066 int amdgpu_device_ip_set_clockgating_state(void *dev,
1067 enum amd_ip_block_type block_type,
1068 enum amd_clockgating_state state)
1070 struct amdgpu_device *adev = dev;
1073 for (i = 0; i < adev->num_ip_blocks; i++) {
1074 if (!adev->ip_blocks[i].status.valid)
1076 if (adev->ip_blocks[i].version->type != block_type)
1078 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1080 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1081 (void *)adev, state);
1083 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1084 adev->ip_blocks[i].version->funcs->name, r);
1090 * amdgpu_device_ip_set_powergating_state - set the PG state
1092 * @dev: amdgpu_device pointer
1093 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1094 * @state: powergating state (gate or ungate)
1096 * Sets the requested powergating state for all instances of
1097 * the hardware IP specified.
1098 * Returns the error code from the last instance.
1100 int amdgpu_device_ip_set_powergating_state(void *dev,
1101 enum amd_ip_block_type block_type,
1102 enum amd_powergating_state state)
1104 struct amdgpu_device *adev = dev;
1107 for (i = 0; i < adev->num_ip_blocks; i++) {
1108 if (!adev->ip_blocks[i].status.valid)
1110 if (adev->ip_blocks[i].version->type != block_type)
1112 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1114 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1115 (void *)adev, state);
1117 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1118 adev->ip_blocks[i].version->funcs->name, r);
1124 * amdgpu_device_ip_get_clockgating_state - get the CG state
1126 * @adev: amdgpu_device pointer
1127 * @flags: clockgating feature flags
1129 * Walks the list of IPs on the device and updates the clockgating
1130 * flags for each IP.
1131 * Updates @flags with the feature flags for each hardware IP where
1132 * clockgating is enabled.
1134 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1139 for (i = 0; i < adev->num_ip_blocks; i++) {
1140 if (!adev->ip_blocks[i].status.valid)
1142 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1143 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1148 * amdgpu_device_ip_wait_for_idle - wait for idle
1150 * @adev: amdgpu_device pointer
1151 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1153 * Waits for the request hardware IP to be idle.
1154 * Returns 0 for success or a negative error code on failure.
1156 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1157 enum amd_ip_block_type block_type)
1161 for (i = 0; i < adev->num_ip_blocks; i++) {
1162 if (!adev->ip_blocks[i].status.valid)
1164 if (adev->ip_blocks[i].version->type == block_type) {
1165 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
1176 * amdgpu_device_ip_is_idle - is the hardware IP idle
1178 * @adev: amdgpu_device pointer
1179 * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1181 * Check if the hardware IP is idle or not.
1182 * Returns true if it the IP is idle, false if not.
1184 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1185 enum amd_ip_block_type block_type)
1189 for (i = 0; i < adev->num_ip_blocks; i++) {
1190 if (!adev->ip_blocks[i].status.valid)
1192 if (adev->ip_blocks[i].version->type == block_type)
1193 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
1200 * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1202 * @adev: amdgpu_device pointer
1203 * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
1205 * Returns a pointer to the hardware IP block structure
1206 * if it exists for the asic, otherwise NULL.
1208 struct amdgpu_ip_block *
1209 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1210 enum amd_ip_block_type type)
1214 for (i = 0; i < adev->num_ip_blocks; i++)
1215 if (adev->ip_blocks[i].version->type == type)
1216 return &adev->ip_blocks[i];
1222 * amdgpu_device_ip_block_version_cmp
1224 * @adev: amdgpu_device pointer
1225 * @type: enum amd_ip_block_type
1226 * @major: major version
1227 * @minor: minor version
1229 * return 0 if equal or greater
1230 * return 1 if smaller or the ip_block doesn't exist
1232 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1233 enum amd_ip_block_type type,
1234 u32 major, u32 minor)
1236 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
1238 if (ip_block && ((ip_block->version->major > major) ||
1239 ((ip_block->version->major == major) &&
1240 (ip_block->version->minor >= minor))))
1247 * amdgpu_device_ip_block_add
1249 * @adev: amdgpu_device pointer
1250 * @ip_block_version: pointer to the IP to add
1252 * Adds the IP block driver information to the collection of IPs
1255 int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1256 const struct amdgpu_ip_block_version *ip_block_version)
1258 if (!ip_block_version)
1261 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
1262 ip_block_version->funcs->name);
1264 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1270 * amdgpu_device_enable_virtual_display - enable virtual display feature
1272 * @adev: amdgpu_device pointer
1274 * Enabled the virtual display feature if the user has enabled it via
1275 * the module parameter virtual_display. This feature provides a virtual
1276 * display hardware on headless boards or in virtualized environments.
1277 * This function parses and validates the configuration string specified by
1278 * the user and configues the virtual display configuration (number of
1279 * virtual connectors, crtcs, etc.) specified.
1281 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
1283 adev->enable_virtual_display = false;
1285 if (amdgpu_virtual_display) {
1286 struct drm_device *ddev = adev->ddev;
1287 const char *pci_address_name = pci_name(ddev->pdev);
1288 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
1290 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1291 pciaddstr_tmp = pciaddstr;
1292 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1293 pciaddname = strsep(&pciaddname_tmp, ",");
1294 if (!strcmp("all", pciaddname)
1295 || !strcmp(pci_address_name, pciaddname)) {
1299 adev->enable_virtual_display = true;
1302 res = kstrtol(pciaddname_tmp, 10,
1310 adev->mode_info.num_crtc = num_crtc;
1312 adev->mode_info.num_crtc = 1;
1318 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1319 amdgpu_virtual_display, pci_address_name,
1320 adev->enable_virtual_display, adev->mode_info.num_crtc);
1327 * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware
1329 * @adev: amdgpu_device pointer
1331 * Parses the asic configuration parameters specified in the gpu info
1332 * firmware and makes them availale to the driver for use in configuring
1334 * Returns 0 on success, -EINVAL on failure.
1336 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1338 const char *chip_name;
1341 const struct gpu_info_firmware_header_v1_0 *hdr;
1343 adev->firmware.gpu_info_fw = NULL;
1345 switch (adev->asic_type) {
1349 case CHIP_POLARIS10:
1350 case CHIP_POLARIS11:
1351 case CHIP_POLARIS12:
1355 #ifdef CONFIG_DRM_AMDGPU_SI
1362 #ifdef CONFIG_DRM_AMDGPU_CIK
1373 chip_name = "vega10";
1376 chip_name = "vega12";
1379 if (adev->rev_id >= 8)
1380 chip_name = "raven2";
1381 else if (adev->pdev->device == 0x15d8)
1382 chip_name = "picasso";
1384 chip_name = "raven";
1388 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
1389 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
1392 "Failed to load gpu_info firmware \"%s\"\n",
1396 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
1399 "Failed to validate gpu_info firmware \"%s\"\n",
1404 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
1405 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1407 switch (hdr->version_major) {
1410 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
1411 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
1412 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1414 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1415 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1416 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1417 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
1418 adev->gfx.config.max_texture_channel_caches =
1419 le32_to_cpu(gpu_info_fw->gc_num_tccs);
1420 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1421 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1422 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1423 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
1424 adev->gfx.config.double_offchip_lds_buf =
1425 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1426 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
1427 adev->gfx.cu_info.max_waves_per_simd =
1428 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1429 adev->gfx.cu_info.max_scratch_slots_per_cu =
1430 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1431 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
1436 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1445 * amdgpu_device_ip_early_init - run early init for hardware IPs
1447 * @adev: amdgpu_device pointer
1449 * Early initialization pass for hardware IPs. The hardware IPs that make
1450 * up each asic are discovered each IP's early_init callback is run. This
1451 * is the first stage in initializing the asic.
1452 * Returns 0 on success, negative error code on failure.
1454 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
1458 amdgpu_device_enable_virtual_display(adev);
1460 switch (adev->asic_type) {
1464 case CHIP_POLARIS10:
1465 case CHIP_POLARIS11:
1466 case CHIP_POLARIS12:
1470 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
1471 adev->family = AMDGPU_FAMILY_CZ;
1473 adev->family = AMDGPU_FAMILY_VI;
1475 r = vi_set_ip_blocks(adev);
1479 #ifdef CONFIG_DRM_AMDGPU_SI
1485 adev->family = AMDGPU_FAMILY_SI;
1486 r = si_set_ip_blocks(adev);
1491 #ifdef CONFIG_DRM_AMDGPU_CIK
1497 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1498 adev->family = AMDGPU_FAMILY_CI;
1500 adev->family = AMDGPU_FAMILY_KV;
1502 r = cik_set_ip_blocks(adev);
1511 if (adev->asic_type == CHIP_RAVEN)
1512 adev->family = AMDGPU_FAMILY_RV;
1514 adev->family = AMDGPU_FAMILY_AI;
1516 r = soc15_set_ip_blocks(adev);
1521 /* FIXME: not supported yet */
1525 r = amdgpu_device_parse_gpu_info_fw(adev);
1529 amdgpu_amdkfd_device_probe(adev);
1531 if (amdgpu_sriov_vf(adev)) {
1532 r = amdgpu_virt_request_full_gpu(adev, true);
1536 /* query the reg access mode at the very beginning */
1537 amdgpu_virt_init_reg_access_mode(adev);
1540 adev->pm.pp_feature = amdgpu_pp_feature_mask;
1541 if (amdgpu_sriov_vf(adev))
1542 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
1544 for (i = 0; i < adev->num_ip_blocks; i++) {
1545 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1546 DRM_ERROR("disabled ip block: %d <%s>\n",
1547 i, adev->ip_blocks[i].version->funcs->name);
1548 adev->ip_blocks[i].status.valid = false;
1550 if (adev->ip_blocks[i].version->funcs->early_init) {
1551 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
1553 adev->ip_blocks[i].status.valid = false;
1555 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1556 adev->ip_blocks[i].version->funcs->name, r);
1559 adev->ip_blocks[i].status.valid = true;
1562 adev->ip_blocks[i].status.valid = true;
1567 adev->cg_flags &= amdgpu_cg_mask;
1568 adev->pg_flags &= amdgpu_pg_mask;
1573 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev)
1577 for (i = 0; i < adev->num_ip_blocks; i++) {
1578 if (!adev->ip_blocks[i].status.sw)
1580 if (adev->ip_blocks[i].status.hw)
1582 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1583 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
1584 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
1585 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1587 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1588 adev->ip_blocks[i].version->funcs->name, r);
1591 adev->ip_blocks[i].status.hw = true;
1598 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev)
1602 for (i = 0; i < adev->num_ip_blocks; i++) {
1603 if (!adev->ip_blocks[i].status.sw)
1605 if (adev->ip_blocks[i].status.hw)
1607 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1609 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1610 adev->ip_blocks[i].version->funcs->name, r);
1613 adev->ip_blocks[i].status.hw = true;
1619 static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
1624 if (adev->asic_type >= CHIP_VEGA10) {
1625 for (i = 0; i < adev->num_ip_blocks; i++) {
1626 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
1627 if (adev->in_gpu_reset || adev->in_suspend) {
1628 if (amdgpu_sriov_vf(adev) && adev->in_gpu_reset)
1629 break; /* sriov gpu reset, psp need to do hw_init before IH because of hw limit */
1630 r = adev->ip_blocks[i].version->funcs->resume(adev);
1632 DRM_ERROR("resume of IP block <%s> failed %d\n",
1633 adev->ip_blocks[i].version->funcs->name, r);
1637 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
1639 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1640 adev->ip_blocks[i].version->funcs->name, r);
1644 adev->ip_blocks[i].status.hw = true;
1649 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->load_firmware) {
1650 r = adev->powerplay.pp_funcs->load_firmware(adev->powerplay.pp_handle);
1652 pr_err("firmware loading failed\n");
1661 * amdgpu_device_ip_init - run init for hardware IPs
1663 * @adev: amdgpu_device pointer
1665 * Main initialization pass for hardware IPs. The list of all the hardware
1666 * IPs that make up the asic is walked and the sw_init and hw_init callbacks
1667 * are run. sw_init initializes the software state associated with each IP
1668 * and hw_init initializes the hardware associated with each IP.
1669 * Returns 0 on success, negative error code on failure.
1671 static int amdgpu_device_ip_init(struct amdgpu_device *adev)
1675 r = amdgpu_ras_init(adev);
1679 for (i = 0; i < adev->num_ip_blocks; i++) {
1680 if (!adev->ip_blocks[i].status.valid)
1682 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
1684 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1685 adev->ip_blocks[i].version->funcs->name, r);
1688 adev->ip_blocks[i].status.sw = true;
1690 /* need to do gmc hw init early so we can allocate gpu mem */
1691 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
1692 r = amdgpu_device_vram_scratch_init(adev);
1694 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
1697 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
1699 DRM_ERROR("hw_init %d failed %d\n", i, r);
1702 r = amdgpu_device_wb_init(adev);
1704 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
1707 adev->ip_blocks[i].status.hw = true;
1709 /* right after GMC hw init, we create CSA */
1710 if (amdgpu_sriov_vf(adev)) {
1711 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
1712 AMDGPU_GEM_DOMAIN_VRAM,
1715 DRM_ERROR("allocate CSA failed %d\n", r);
1722 r = amdgpu_ib_pool_init(adev);
1724 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
1725 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
1729 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
1733 r = amdgpu_device_ip_hw_init_phase1(adev);
1737 r = amdgpu_device_fw_loading(adev);
1741 r = amdgpu_device_ip_hw_init_phase2(adev);
1745 if (adev->gmc.xgmi.num_physical_nodes > 1)
1746 amdgpu_xgmi_add_device(adev);
1747 amdgpu_amdkfd_device_init(adev);
1750 if (amdgpu_sriov_vf(adev)) {
1752 amdgpu_virt_init_data_exchange(adev);
1753 amdgpu_virt_release_full_gpu(adev, true);
1760 * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer
1762 * @adev: amdgpu_device pointer
1764 * Writes a reset magic value to the gart pointer in VRAM. The driver calls
1765 * this function before a GPU reset. If the value is retained after a
1766 * GPU reset, VRAM has not been lost. Some GPU resets may destry VRAM contents.
1768 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
1770 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
1774 * amdgpu_device_check_vram_lost - check if vram is valid
1776 * @adev: amdgpu_device pointer
1778 * Checks the reset magic value written to the gart pointer in VRAM.
1779 * The driver calls this after a GPU reset to see if the contents of
1780 * VRAM is lost or now.
1781 * returns true if vram is lost, false if not.
1783 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
1785 return !!memcmp(adev->gart.ptr, adev->reset_magic,
1786 AMDGPU_RESET_MAGIC_NUM);
1790 * amdgpu_device_set_cg_state - set clockgating for amdgpu device
1792 * @adev: amdgpu_device pointer
1794 * The list of all the hardware IPs that make up the asic is walked and the
1795 * set_clockgating_state callbacks are run.
1796 * Late initialization pass enabling clockgating for hardware IPs.
1797 * Fini or suspend, pass disabling clockgating for hardware IPs.
1798 * Returns 0 on success, negative error code on failure.
1801 static int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
1802 enum amd_clockgating_state state)
1806 if (amdgpu_emu_mode == 1)
1809 for (j = 0; j < adev->num_ip_blocks; j++) {
1810 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
1811 if (!adev->ip_blocks[i].status.late_initialized)
1813 /* skip CG for VCE/UVD, it's handled specially */
1814 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1815 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
1816 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
1817 adev->ip_blocks[i].version->funcs->set_clockgating_state) {
1818 /* enable clockgating to save power */
1819 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1822 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
1823 adev->ip_blocks[i].version->funcs->name, r);
1832 static int amdgpu_device_set_pg_state(struct amdgpu_device *adev, enum amd_powergating_state state)
1836 if (amdgpu_emu_mode == 1)
1839 for (j = 0; j < adev->num_ip_blocks; j++) {
1840 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
1841 if (!adev->ip_blocks[i].status.late_initialized)
1843 /* skip CG for VCE/UVD, it's handled specially */
1844 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1845 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
1846 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
1847 adev->ip_blocks[i].version->funcs->set_powergating_state) {
1848 /* enable powergating to save power */
1849 r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev,
1852 DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n",
1853 adev->ip_blocks[i].version->funcs->name, r);
1862 * amdgpu_device_ip_late_init - run late init for hardware IPs
1864 * @adev: amdgpu_device pointer
1866 * Late initialization pass for hardware IPs. The list of all the hardware
1867 * IPs that make up the asic is walked and the late_init callbacks are run.
1868 * late_init covers any special initialization that an IP requires
1869 * after all of the have been initialized or something that needs to happen
1870 * late in the init process.
1871 * Returns 0 on success, negative error code on failure.
1873 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
1877 for (i = 0; i < adev->num_ip_blocks; i++) {
1878 if (!adev->ip_blocks[i].status.hw)
1880 if (adev->ip_blocks[i].version->funcs->late_init) {
1881 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
1883 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1884 adev->ip_blocks[i].version->funcs->name, r);
1888 adev->ip_blocks[i].status.late_initialized = true;
1891 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
1892 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
1894 queue_delayed_work(system_wq, &adev->late_init_work,
1895 msecs_to_jiffies(AMDGPU_RESUME_MS));
1897 amdgpu_device_fill_reset_magic(adev);
1903 * amdgpu_device_ip_fini - run fini for hardware IPs
1905 * @adev: amdgpu_device pointer
1907 * Main teardown pass for hardware IPs. The list of all the hardware
1908 * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks
1909 * are run. hw_fini tears down the hardware associated with each IP
1910 * and sw_fini tears down any software state associated with each IP.
1911 * Returns 0 on success, negative error code on failure.
1913 static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
1917 amdgpu_ras_pre_fini(adev);
1919 if (adev->gmc.xgmi.num_physical_nodes > 1)
1920 amdgpu_xgmi_remove_device(adev);
1922 amdgpu_amdkfd_device_fini(adev);
1924 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
1925 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
1927 /* need to disable SMC first */
1928 for (i = 0; i < adev->num_ip_blocks; i++) {
1929 if (!adev->ip_blocks[i].status.hw)
1931 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
1932 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
1933 /* XXX handle errors */
1935 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1936 adev->ip_blocks[i].version->funcs->name, r);
1938 adev->ip_blocks[i].status.hw = false;
1943 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1944 if (!adev->ip_blocks[i].status.hw)
1947 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
1948 /* XXX handle errors */
1950 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1951 adev->ip_blocks[i].version->funcs->name, r);
1954 adev->ip_blocks[i].status.hw = false;
1958 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1959 if (!adev->ip_blocks[i].status.sw)
1962 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
1963 amdgpu_ucode_free_bo(adev);
1964 amdgpu_free_static_csa(&adev->virt.csa_obj);
1965 amdgpu_device_wb_fini(adev);
1966 amdgpu_device_vram_scratch_fini(adev);
1967 amdgpu_ib_pool_fini(adev);
1970 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
1971 /* XXX handle errors */
1973 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
1974 adev->ip_blocks[i].version->funcs->name, r);
1976 adev->ip_blocks[i].status.sw = false;
1977 adev->ip_blocks[i].status.valid = false;
1980 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1981 if (!adev->ip_blocks[i].status.late_initialized)
1983 if (adev->ip_blocks[i].version->funcs->late_fini)
1984 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
1985 adev->ip_blocks[i].status.late_initialized = false;
1988 amdgpu_ras_fini(adev);
1990 if (amdgpu_sriov_vf(adev))
1991 if (amdgpu_virt_release_full_gpu(adev, false))
1992 DRM_ERROR("failed to release exclusive mode on fini\n");
1997 static int amdgpu_device_enable_mgpu_fan_boost(void)
1999 struct amdgpu_gpu_instance *gpu_ins;
2000 struct amdgpu_device *adev;
2003 mutex_lock(&mgpu_info.mutex);
2006 * MGPU fan boost feature should be enabled
2007 * only when there are two or more dGPUs in
2010 if (mgpu_info.num_dgpu < 2)
2013 for (i = 0; i < mgpu_info.num_dgpu; i++) {
2014 gpu_ins = &(mgpu_info.gpu_ins[i]);
2015 adev = gpu_ins->adev;
2016 if (!(adev->flags & AMD_IS_APU) &&
2017 !gpu_ins->mgpu_fan_enabled &&
2018 adev->powerplay.pp_funcs &&
2019 adev->powerplay.pp_funcs->enable_mgpu_fan_boost) {
2020 ret = amdgpu_dpm_enable_mgpu_fan_boost(adev);
2024 gpu_ins->mgpu_fan_enabled = 1;
2029 mutex_unlock(&mgpu_info.mutex);
2035 * amdgpu_device_ip_late_init_func_handler - work handler for ib test
2037 * @work: work_struct.
2039 static void amdgpu_device_ip_late_init_func_handler(struct work_struct *work)
2041 struct amdgpu_device *adev =
2042 container_of(work, struct amdgpu_device, late_init_work.work);
2045 r = amdgpu_ib_ring_tests(adev);
2047 DRM_ERROR("ib ring test failed (%d).\n", r);
2049 r = amdgpu_device_enable_mgpu_fan_boost();
2051 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
2053 /*set to low pstate by default */
2054 amdgpu_xgmi_set_pstate(adev, 0);
2058 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)
2060 struct amdgpu_device *adev =
2061 container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);
2063 mutex_lock(&adev->gfx.gfx_off_mutex);
2064 if (!adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {
2065 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))
2066 adev->gfx.gfx_off_state = true;
2068 mutex_unlock(&adev->gfx.gfx_off_mutex);
2072 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
2074 * @adev: amdgpu_device pointer
2076 * Main suspend function for hardware IPs. The list of all the hardware
2077 * IPs that make up the asic is walked, clockgating is disabled and the
2078 * suspend callbacks are run. suspend puts the hardware and software state
2079 * in each IP into a state suitable for suspend.
2080 * Returns 0 on success, negative error code on failure.
2082 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2086 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2087 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2089 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2090 if (!adev->ip_blocks[i].status.valid)
2092 /* displays are handled separately */
2093 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) {
2094 /* XXX handle errors */
2095 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2096 /* XXX handle errors */
2098 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2099 adev->ip_blocks[i].version->funcs->name, r);
2108 * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2)
2110 * @adev: amdgpu_device pointer
2112 * Main suspend function for hardware IPs. The list of all the hardware
2113 * IPs that make up the asic is walked, clockgating is disabled and the
2114 * suspend callbacks are run. suspend puts the hardware and software state
2115 * in each IP into a state suitable for suspend.
2116 * Returns 0 on success, negative error code on failure.
2118 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
2122 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2123 if (!adev->ip_blocks[i].status.valid)
2125 /* displays are handled in phase1 */
2126 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2128 /* XXX handle errors */
2129 r = adev->ip_blocks[i].version->funcs->suspend(adev);
2130 /* XXX handle errors */
2132 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2133 adev->ip_blocks[i].version->funcs->name, r);
2141 * amdgpu_device_ip_suspend - run suspend for hardware IPs
2143 * @adev: amdgpu_device pointer
2145 * Main suspend function for hardware IPs. The list of all the hardware
2146 * IPs that make up the asic is walked, clockgating is disabled and the
2147 * suspend callbacks are run. suspend puts the hardware and software state
2148 * in each IP into a state suitable for suspend.
2149 * Returns 0 on success, negative error code on failure.
2151 int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2155 if (amdgpu_sriov_vf(adev))
2156 amdgpu_virt_request_full_gpu(adev, false);
2158 r = amdgpu_device_ip_suspend_phase1(adev);
2161 r = amdgpu_device_ip_suspend_phase2(adev);
2163 if (amdgpu_sriov_vf(adev))
2164 amdgpu_virt_release_full_gpu(adev, false);
2169 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
2173 static enum amd_ip_block_type ip_order[] = {
2174 AMD_IP_BLOCK_TYPE_GMC,
2175 AMD_IP_BLOCK_TYPE_COMMON,
2176 AMD_IP_BLOCK_TYPE_PSP,
2177 AMD_IP_BLOCK_TYPE_IH,
2180 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2182 struct amdgpu_ip_block *block;
2184 for (j = 0; j < adev->num_ip_blocks; j++) {
2185 block = &adev->ip_blocks[j];
2187 if (block->version->type != ip_order[i] ||
2188 !block->status.valid)
2191 r = block->version->funcs->hw_init(adev);
2192 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2201 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
2205 static enum amd_ip_block_type ip_order[] = {
2206 AMD_IP_BLOCK_TYPE_SMC,
2207 AMD_IP_BLOCK_TYPE_DCE,
2208 AMD_IP_BLOCK_TYPE_GFX,
2209 AMD_IP_BLOCK_TYPE_SDMA,
2210 AMD_IP_BLOCK_TYPE_UVD,
2211 AMD_IP_BLOCK_TYPE_VCE
2214 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2216 struct amdgpu_ip_block *block;
2218 for (j = 0; j < adev->num_ip_blocks; j++) {
2219 block = &adev->ip_blocks[j];
2221 if (block->version->type != ip_order[i] ||
2222 !block->status.valid)
2225 r = block->version->funcs->hw_init(adev);
2226 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2236 * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs
2238 * @adev: amdgpu_device pointer
2240 * First resume function for hardware IPs. The list of all the hardware
2241 * IPs that make up the asic is walked and the resume callbacks are run for
2242 * COMMON, GMC, and IH. resume puts the hardware into a functional state
2243 * after a suspend and updates the software state as necessary. This
2244 * function is also used for restoring the GPU after a GPU reset.
2245 * Returns 0 on success, negative error code on failure.
2247 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
2251 for (i = 0; i < adev->num_ip_blocks; i++) {
2252 if (!adev->ip_blocks[i].status.valid)
2254 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2255 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2256 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2257 r = adev->ip_blocks[i].version->funcs->resume(adev);
2259 DRM_ERROR("resume of IP block <%s> failed %d\n",
2260 adev->ip_blocks[i].version->funcs->name, r);
2270 * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs
2272 * @adev: amdgpu_device pointer
2274 * First resume function for hardware IPs. The list of all the hardware
2275 * IPs that make up the asic is walked and the resume callbacks are run for
2276 * all blocks except COMMON, GMC, and IH. resume puts the hardware into a
2277 * functional state after a suspend and updates the software state as
2278 * necessary. This function is also used for restoring the GPU after a GPU
2280 * Returns 0 on success, negative error code on failure.
2282 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
2286 for (i = 0; i < adev->num_ip_blocks; i++) {
2287 if (!adev->ip_blocks[i].status.valid)
2289 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2290 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2291 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
2292 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
2294 r = adev->ip_blocks[i].version->funcs->resume(adev);
2296 DRM_ERROR("resume of IP block <%s> failed %d\n",
2297 adev->ip_blocks[i].version->funcs->name, r);
2306 * amdgpu_device_ip_resume - run resume for hardware IPs
2308 * @adev: amdgpu_device pointer
2310 * Main resume function for hardware IPs. The hardware IPs
2311 * are split into two resume functions because they are
2312 * are also used in in recovering from a GPU reset and some additional
2313 * steps need to be take between them. In this case (S3/S4) they are
2315 * Returns 0 on success, negative error code on failure.
2317 static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
2321 r = amdgpu_device_ip_resume_phase1(adev);
2325 r = amdgpu_device_fw_loading(adev);
2329 r = amdgpu_device_ip_resume_phase2(adev);
2335 * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV
2337 * @adev: amdgpu_device pointer
2339 * Query the VBIOS data tables to determine if the board supports SR-IOV.
2341 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
2343 if (amdgpu_sriov_vf(adev)) {
2344 if (adev->is_atom_fw) {
2345 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2346 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2348 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2349 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2352 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
2353 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
2358 * amdgpu_device_asic_has_dc_support - determine if DC supports the asic
2360 * @asic_type: AMD asic type
2362 * Check if there is DC (new modesetting infrastructre) support for an asic.
2363 * returns true if DC has support, false if not.
2365 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2367 switch (asic_type) {
2368 #if defined(CONFIG_DRM_AMD_DC)
2374 * We have systems in the wild with these ASICs that require
2375 * LVDS and VGA support which is not supported with DC.
2377 * Fallback to the non-DC driver here by default so as not to
2378 * cause regressions.
2380 return amdgpu_dc > 0;
2384 case CHIP_POLARIS10:
2385 case CHIP_POLARIS11:
2386 case CHIP_POLARIS12:
2393 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
2396 return amdgpu_dc != 0;
2404 * amdgpu_device_has_dc_support - check if dc is supported
2406 * @adev: amdgpu_device_pointer
2408 * Returns true for supported, false for not supported
2410 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
2412 if (amdgpu_sriov_vf(adev))
2415 return amdgpu_device_asic_has_dc_support(adev->asic_type);
2419 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
2421 struct amdgpu_device *adev =
2422 container_of(__work, struct amdgpu_device, xgmi_reset_work);
2424 adev->asic_reset_res = amdgpu_asic_reset(adev);
2425 if (adev->asic_reset_res)
2426 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
2427 adev->asic_reset_res, adev->ddev->unique);
2432 * amdgpu_device_init - initialize the driver
2434 * @adev: amdgpu_device pointer
2435 * @ddev: drm dev pointer
2436 * @pdev: pci dev pointer
2437 * @flags: driver flags
2439 * Initializes the driver info and hw (all asics).
2440 * Returns 0 for success or an error on failure.
2441 * Called at driver startup.
2443 int amdgpu_device_init(struct amdgpu_device *adev,
2444 struct drm_device *ddev,
2445 struct pci_dev *pdev,
2449 bool runtime = false;
2452 adev->shutdown = false;
2453 adev->dev = &pdev->dev;
2456 adev->flags = flags;
2457 adev->asic_type = flags & AMD_ASIC_MASK;
2458 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
2459 if (amdgpu_emu_mode == 1)
2460 adev->usec_timeout *= 2;
2461 adev->gmc.gart_size = 512 * 1024 * 1024;
2462 adev->accel_working = false;
2463 adev->num_rings = 0;
2464 adev->mman.buffer_funcs = NULL;
2465 adev->mman.buffer_funcs_ring = NULL;
2466 adev->vm_manager.vm_pte_funcs = NULL;
2467 adev->vm_manager.vm_pte_num_rqs = 0;
2468 adev->gmc.gmc_funcs = NULL;
2469 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2470 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
2472 adev->smc_rreg = &amdgpu_invalid_rreg;
2473 adev->smc_wreg = &amdgpu_invalid_wreg;
2474 adev->pcie_rreg = &amdgpu_invalid_rreg;
2475 adev->pcie_wreg = &amdgpu_invalid_wreg;
2476 adev->pciep_rreg = &amdgpu_invalid_rreg;
2477 adev->pciep_wreg = &amdgpu_invalid_wreg;
2478 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
2479 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
2480 adev->didt_rreg = &amdgpu_invalid_rreg;
2481 adev->didt_wreg = &amdgpu_invalid_wreg;
2482 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
2483 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
2484 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
2485 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
2487 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
2488 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
2489 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
2491 /* mutex initialization are all done here so we
2492 * can recall function without having locking issues */
2493 atomic_set(&adev->irq.ih.lock, 0);
2494 mutex_init(&adev->firmware.mutex);
2495 mutex_init(&adev->pm.mutex);
2496 mutex_init(&adev->gfx.gpu_clock_mutex);
2497 mutex_init(&adev->srbm_mutex);
2498 mutex_init(&adev->gfx.pipe_reserve_mutex);
2499 mutex_init(&adev->gfx.gfx_off_mutex);
2500 mutex_init(&adev->grbm_idx_mutex);
2501 mutex_init(&adev->mn_lock);
2502 mutex_init(&adev->virt.vf_errors.lock);
2503 hash_init(adev->mn_hash);
2504 mutex_init(&adev->lock_reset);
2505 mutex_init(&adev->virt.dpm_mutex);
2507 r = amdgpu_device_check_arguments(adev);
2511 spin_lock_init(&adev->mmio_idx_lock);
2512 spin_lock_init(&adev->smc_idx_lock);
2513 spin_lock_init(&adev->pcie_idx_lock);
2514 spin_lock_init(&adev->uvd_ctx_idx_lock);
2515 spin_lock_init(&adev->didt_idx_lock);
2516 spin_lock_init(&adev->gc_cac_idx_lock);
2517 spin_lock_init(&adev->se_cac_idx_lock);
2518 spin_lock_init(&adev->audio_endpt_idx_lock);
2519 spin_lock_init(&adev->mm_stats.lock);
2521 INIT_LIST_HEAD(&adev->shadow_list);
2522 mutex_init(&adev->shadow_list_lock);
2524 INIT_LIST_HEAD(&adev->ring_lru_list);
2525 spin_lock_init(&adev->ring_lru_list_lock);
2527 INIT_DELAYED_WORK(&adev->late_init_work,
2528 amdgpu_device_ip_late_init_func_handler);
2529 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
2530 amdgpu_device_delay_enable_gfx_off);
2532 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
2534 adev->gfx.gfx_off_req_count = 1;
2535 adev->pm.ac_power = power_supply_is_system_supplied() > 0 ? true : false;
2537 /* Registers mapping */
2538 /* TODO: block userspace mapping of io register */
2539 if (adev->asic_type >= CHIP_BONAIRE) {
2540 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2541 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2543 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2544 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2547 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2548 if (adev->rmmio == NULL) {
2551 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2552 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2554 /* io port mapping */
2555 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2556 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2557 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2558 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2562 if (adev->rio_mem == NULL)
2563 DRM_INFO("PCI I/O BAR is not found.\n");
2565 amdgpu_device_get_pcie_info(adev);
2567 /* early init functions */
2568 r = amdgpu_device_ip_early_init(adev);
2572 /* doorbell bar mapping and doorbell index init*/
2573 amdgpu_device_doorbell_init(adev);
2575 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
2576 /* this will fail for cards that aren't VGA class devices, just
2578 vga_client_register(adev->pdev, adev, NULL, amdgpu_device_vga_set_decode);
2580 if (amdgpu_device_is_px(ddev))
2582 if (!pci_is_thunderbolt_attached(adev->pdev))
2583 vga_switcheroo_register_client(adev->pdev,
2584 &amdgpu_switcheroo_ops, runtime);
2586 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
2588 if (amdgpu_emu_mode == 1) {
2589 /* post the asic on emulation mode */
2590 emu_soc_asic_init(adev);
2591 goto fence_driver_init;
2595 if (!amdgpu_get_bios(adev)) {
2600 r = amdgpu_atombios_init(adev);
2602 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
2603 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
2607 /* detect if we are with an SRIOV vbios */
2608 amdgpu_device_detect_sriov_bios(adev);
2610 /* check if we need to reset the asic
2611 * E.g., driver was not cleanly unloaded previously, etc.
2613 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
2614 r = amdgpu_asic_reset(adev);
2616 dev_err(adev->dev, "asic reset on init failed\n");
2621 /* Post card if necessary */
2622 if (amdgpu_device_need_post(adev)) {
2624 dev_err(adev->dev, "no vBIOS found\n");
2628 DRM_INFO("GPU posting now...\n");
2629 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2631 dev_err(adev->dev, "gpu post error!\n");
2636 if (adev->is_atom_fw) {
2637 /* Initialize clocks */
2638 r = amdgpu_atomfirmware_get_clock_info(adev);
2640 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
2641 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2645 /* Initialize clocks */
2646 r = amdgpu_atombios_get_clock_info(adev);
2648 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
2649 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2652 /* init i2c buses */
2653 if (!amdgpu_device_has_dc_support(adev))
2654 amdgpu_atombios_i2c_init(adev);
2659 r = amdgpu_fence_driver_init(adev);
2661 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
2662 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
2666 /* init the mode config */
2667 drm_mode_config_init(adev->ddev);
2669 r = amdgpu_device_ip_init(adev);
2671 /* failed in exclusive mode due to timeout */
2672 if (amdgpu_sriov_vf(adev) &&
2673 !amdgpu_sriov_runtime(adev) &&
2674 amdgpu_virt_mmio_blocked(adev) &&
2675 !amdgpu_virt_wait_reset(adev)) {
2676 dev_err(adev->dev, "VF exclusive mode timeout\n");
2677 /* Don't send request since VF is inactive. */
2678 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
2679 adev->virt.ops = NULL;
2683 dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
2684 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
2685 if (amdgpu_virt_request_full_gpu(adev, false))
2686 amdgpu_virt_release_full_gpu(adev, false);
2690 adev->accel_working = true;
2692 amdgpu_vm_check_compute_bug(adev);
2694 /* Initialize the buffer migration limit. */
2695 if (amdgpu_moverate >= 0)
2696 max_MBps = amdgpu_moverate;
2698 max_MBps = 8; /* Allow 8 MB/s. */
2699 /* Get a log2 for easy divisions. */
2700 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
2702 amdgpu_fbdev_init(adev);
2704 r = amdgpu_pm_sysfs_init(adev);
2706 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
2708 r = amdgpu_ucode_sysfs_init(adev);
2710 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
2712 r = amdgpu_debugfs_gem_init(adev);
2714 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
2716 r = amdgpu_debugfs_regs_init(adev);
2718 DRM_ERROR("registering register debugfs failed (%d).\n", r);
2720 r = amdgpu_debugfs_firmware_init(adev);
2722 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
2724 r = amdgpu_debugfs_init(adev);
2726 DRM_ERROR("Creating debugfs files failed (%d).\n", r);
2728 if ((amdgpu_testing & 1)) {
2729 if (adev->accel_working)
2730 amdgpu_test_moves(adev);
2732 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2734 if (amdgpu_benchmarking) {
2735 if (adev->accel_working)
2736 amdgpu_benchmark(adev, amdgpu_benchmarking);
2738 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2741 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2742 * explicit gating rather than handling it automatically.
2744 r = amdgpu_device_ip_late_init(adev);
2746 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
2747 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
2752 amdgpu_ras_resume(adev);
2754 r = device_create_file(adev->dev, &dev_attr_pcie_replay_count);
2756 dev_err(adev->dev, "Could not create pcie_replay_count");
2763 amdgpu_vf_error_trans_all(adev);
2765 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2771 * amdgpu_device_fini - tear down the driver
2773 * @adev: amdgpu_device pointer
2775 * Tear down the driver info (all asics).
2776 * Called at driver shutdown.
2778 void amdgpu_device_fini(struct amdgpu_device *adev)
2782 DRM_INFO("amdgpu: finishing device.\n");
2783 adev->shutdown = true;
2784 /* disable all interrupts */
2785 amdgpu_irq_disable_all(adev);
2786 if (adev->mode_info.mode_config_initialized){
2787 if (!amdgpu_device_has_dc_support(adev))
2788 drm_helper_force_disable_all(adev->ddev);
2790 drm_atomic_helper_shutdown(adev->ddev);
2792 amdgpu_fence_driver_fini(adev);
2793 amdgpu_pm_sysfs_fini(adev);
2794 amdgpu_fbdev_fini(adev);
2795 r = amdgpu_device_ip_fini(adev);
2796 if (adev->firmware.gpu_info_fw) {
2797 release_firmware(adev->firmware.gpu_info_fw);
2798 adev->firmware.gpu_info_fw = NULL;
2800 adev->accel_working = false;
2801 cancel_delayed_work_sync(&adev->late_init_work);
2802 /* free i2c buses */
2803 if (!amdgpu_device_has_dc_support(adev))
2804 amdgpu_i2c_fini(adev);
2806 if (amdgpu_emu_mode != 1)
2807 amdgpu_atombios_fini(adev);
2811 if (!pci_is_thunderbolt_attached(adev->pdev))
2812 vga_switcheroo_unregister_client(adev->pdev);
2813 if (adev->flags & AMD_IS_PX)
2814 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2815 vga_client_register(adev->pdev, NULL, NULL, NULL);
2817 pci_iounmap(adev->pdev, adev->rio_mem);
2818 adev->rio_mem = NULL;
2819 iounmap(adev->rmmio);
2821 amdgpu_device_doorbell_fini(adev);
2822 amdgpu_debugfs_regs_cleanup(adev);
2823 device_remove_file(adev->dev, &dev_attr_pcie_replay_count);
2824 amdgpu_ucode_sysfs_fini(adev);
2832 * amdgpu_device_suspend - initiate device suspend
2834 * @dev: drm dev pointer
2835 * @suspend: suspend state
2836 * @fbcon : notify the fbdev of suspend
2838 * Puts the hw in the suspend state (all asics).
2839 * Returns 0 for success or an error on failure.
2840 * Called at driver suspend.
2842 int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
2844 struct amdgpu_device *adev;
2845 struct drm_crtc *crtc;
2846 struct drm_connector *connector;
2849 if (dev == NULL || dev->dev_private == NULL) {
2853 adev = dev->dev_private;
2855 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2858 adev->in_suspend = true;
2859 drm_kms_helper_poll_disable(dev);
2862 amdgpu_fbdev_set_suspend(adev, 1);
2864 cancel_delayed_work_sync(&adev->late_init_work);
2866 if (!amdgpu_device_has_dc_support(adev)) {
2867 /* turn off display hw */
2868 drm_modeset_lock_all(dev);
2869 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2870 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2872 drm_modeset_unlock_all(dev);
2873 /* unpin the front buffers and cursors */
2874 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2875 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2876 struct drm_framebuffer *fb = crtc->primary->fb;
2877 struct amdgpu_bo *robj;
2879 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
2880 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2881 r = amdgpu_bo_reserve(aobj, true);
2883 amdgpu_bo_unpin(aobj);
2884 amdgpu_bo_unreserve(aobj);
2888 if (fb == NULL || fb->obj[0] == NULL) {
2891 robj = gem_to_amdgpu_bo(fb->obj[0]);
2892 /* don't unpin kernel fb objects */
2893 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
2894 r = amdgpu_bo_reserve(robj, true);
2896 amdgpu_bo_unpin(robj);
2897 amdgpu_bo_unreserve(robj);
2903 amdgpu_amdkfd_suspend(adev);
2905 amdgpu_ras_suspend(adev);
2907 r = amdgpu_device_ip_suspend_phase1(adev);
2909 /* evict vram memory */
2910 amdgpu_bo_evict_vram(adev);
2912 amdgpu_fence_driver_suspend(adev);
2914 r = amdgpu_device_ip_suspend_phase2(adev);
2916 /* evict remaining vram memory
2917 * This second call to evict vram is to evict the gart page table
2920 amdgpu_bo_evict_vram(adev);
2922 pci_save_state(dev->pdev);
2924 /* Shut down the device */
2925 pci_disable_device(dev->pdev);
2926 pci_set_power_state(dev->pdev, PCI_D3hot);
2928 r = amdgpu_asic_reset(adev);
2930 DRM_ERROR("amdgpu asic reset failed\n");
2937 * amdgpu_device_resume - initiate device resume
2939 * @dev: drm dev pointer
2940 * @resume: resume state
2941 * @fbcon : notify the fbdev of resume
2943 * Bring the hw back to operating state (all asics).
2944 * Returns 0 for success or an error on failure.
2945 * Called at driver resume.
2947 int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
2949 struct drm_connector *connector;
2950 struct amdgpu_device *adev = dev->dev_private;
2951 struct drm_crtc *crtc;
2954 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2958 pci_set_power_state(dev->pdev, PCI_D0);
2959 pci_restore_state(dev->pdev);
2960 r = pci_enable_device(dev->pdev);
2966 if (amdgpu_device_need_post(adev)) {
2967 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2969 DRM_ERROR("amdgpu asic init failed\n");
2972 r = amdgpu_device_ip_resume(adev);
2974 DRM_ERROR("amdgpu_device_ip_resume failed (%d).\n", r);
2977 amdgpu_fence_driver_resume(adev);
2980 r = amdgpu_device_ip_late_init(adev);
2984 if (!amdgpu_device_has_dc_support(adev)) {
2986 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2987 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2989 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
2990 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2991 r = amdgpu_bo_reserve(aobj, true);
2993 r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
2995 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2996 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
2997 amdgpu_bo_unreserve(aobj);
3002 r = amdgpu_amdkfd_resume(adev);
3006 /* Make sure IB tests flushed */
3007 flush_delayed_work(&adev->late_init_work);
3009 /* blat the mode back in */
3011 if (!amdgpu_device_has_dc_support(adev)) {
3013 drm_helper_resume_force_mode(dev);
3015 /* turn on display hw */
3016 drm_modeset_lock_all(dev);
3017 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3018 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
3020 drm_modeset_unlock_all(dev);
3022 amdgpu_fbdev_set_suspend(adev, 0);
3025 drm_kms_helper_poll_enable(dev);
3027 amdgpu_ras_resume(adev);
3030 * Most of the connector probing functions try to acquire runtime pm
3031 * refs to ensure that the GPU is powered on when connector polling is
3032 * performed. Since we're calling this from a runtime PM callback,
3033 * trying to acquire rpm refs will cause us to deadlock.
3035 * Since we're guaranteed to be holding the rpm lock, it's safe to
3036 * temporarily disable the rpm helpers so this doesn't deadlock us.
3039 dev->dev->power.disable_depth++;
3041 if (!amdgpu_device_has_dc_support(adev))
3042 drm_helper_hpd_irq_event(dev);
3044 drm_kms_helper_hotplug_event(dev);
3046 dev->dev->power.disable_depth--;
3048 adev->in_suspend = false;
3054 * amdgpu_device_ip_check_soft_reset - did soft reset succeed
3056 * @adev: amdgpu_device pointer
3058 * The list of all the hardware IPs that make up the asic is walked and
3059 * the check_soft_reset callbacks are run. check_soft_reset determines
3060 * if the asic is still hung or not.
3061 * Returns true if any of the IPs are still in a hung state, false if not.
3063 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
3066 bool asic_hang = false;
3068 if (amdgpu_sriov_vf(adev))
3071 if (amdgpu_asic_need_full_reset(adev))
3074 for (i = 0; i < adev->num_ip_blocks; i++) {
3075 if (!adev->ip_blocks[i].status.valid)
3077 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
3078 adev->ip_blocks[i].status.hang =
3079 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
3080 if (adev->ip_blocks[i].status.hang) {
3081 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
3089 * amdgpu_device_ip_pre_soft_reset - prepare for soft reset
3091 * @adev: amdgpu_device pointer
3093 * The list of all the hardware IPs that make up the asic is walked and the
3094 * pre_soft_reset callbacks are run if the block is hung. pre_soft_reset
3095 * handles any IP specific hardware or software state changes that are
3096 * necessary for a soft reset to succeed.
3097 * Returns 0 on success, negative error code on failure.
3099 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
3103 for (i = 0; i < adev->num_ip_blocks; i++) {
3104 if (!adev->ip_blocks[i].status.valid)
3106 if (adev->ip_blocks[i].status.hang &&
3107 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
3108 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
3118 * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed
3120 * @adev: amdgpu_device pointer
3122 * Some hardware IPs cannot be soft reset. If they are hung, a full gpu
3123 * reset is necessary to recover.
3124 * Returns true if a full asic reset is required, false if not.
3126 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
3130 if (amdgpu_asic_need_full_reset(adev))
3133 for (i = 0; i < adev->num_ip_blocks; i++) {
3134 if (!adev->ip_blocks[i].status.valid)
3136 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
3137 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
3138 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
3139 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
3140 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
3141 if (adev->ip_blocks[i].status.hang) {
3142 DRM_INFO("Some block need full reset!\n");
3151 * amdgpu_device_ip_soft_reset - do a soft reset
3153 * @adev: amdgpu_device pointer
3155 * The list of all the hardware IPs that make up the asic is walked and the
3156 * soft_reset callbacks are run if the block is hung. soft_reset handles any
3157 * IP specific hardware or software state changes that are necessary to soft
3159 * Returns 0 on success, negative error code on failure.
3161 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
3165 for (i = 0; i < adev->num_ip_blocks; i++) {
3166 if (!adev->ip_blocks[i].status.valid)
3168 if (adev->ip_blocks[i].status.hang &&
3169 adev->ip_blocks[i].version->funcs->soft_reset) {
3170 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
3180 * amdgpu_device_ip_post_soft_reset - clean up from soft reset
3182 * @adev: amdgpu_device pointer
3184 * The list of all the hardware IPs that make up the asic is walked and the
3185 * post_soft_reset callbacks are run if the asic was hung. post_soft_reset
3186 * handles any IP specific hardware or software state changes that are
3187 * necessary after the IP has been soft reset.
3188 * Returns 0 on success, negative error code on failure.
3190 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
3194 for (i = 0; i < adev->num_ip_blocks; i++) {
3195 if (!adev->ip_blocks[i].status.valid)
3197 if (adev->ip_blocks[i].status.hang &&
3198 adev->ip_blocks[i].version->funcs->post_soft_reset)
3199 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
3208 * amdgpu_device_recover_vram - Recover some VRAM contents
3210 * @adev: amdgpu_device pointer
3212 * Restores the contents of VRAM buffers from the shadows in GTT. Used to
3213 * restore things like GPUVM page tables after a GPU reset where
3214 * the contents of VRAM might be lost.
3217 * 0 on success, negative error code on failure.
3219 static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
3221 struct dma_fence *fence = NULL, *next = NULL;
3222 struct amdgpu_bo *shadow;
3225 if (amdgpu_sriov_runtime(adev))
3226 tmo = msecs_to_jiffies(8000);
3228 tmo = msecs_to_jiffies(100);
3230 DRM_INFO("recover vram bo from shadow start\n");
3231 mutex_lock(&adev->shadow_list_lock);
3232 list_for_each_entry(shadow, &adev->shadow_list, shadow_list) {
3234 /* No need to recover an evicted BO */
3235 if (shadow->tbo.mem.mem_type != TTM_PL_TT ||
3236 shadow->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET ||
3237 shadow->parent->tbo.mem.mem_type != TTM_PL_VRAM)
3240 r = amdgpu_bo_restore_shadow(shadow, &next);
3245 tmo = dma_fence_wait_timeout(fence, false, tmo);
3246 dma_fence_put(fence);
3251 } else if (tmo < 0) {
3259 mutex_unlock(&adev->shadow_list_lock);
3262 tmo = dma_fence_wait_timeout(fence, false, tmo);
3263 dma_fence_put(fence);
3265 if (r < 0 || tmo <= 0) {
3266 DRM_ERROR("recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
3270 DRM_INFO("recover vram bo from shadow done\n");
3276 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
3278 * @adev: amdgpu device pointer
3279 * @from_hypervisor: request from hypervisor
3281 * do VF FLR and reinitialize Asic
3282 * return 0 means succeeded otherwise failed
3284 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
3285 bool from_hypervisor)
3289 if (from_hypervisor)
3290 r = amdgpu_virt_request_full_gpu(adev, true);
3292 r = amdgpu_virt_reset_gpu(adev);
3296 amdgpu_amdkfd_pre_reset(adev);
3298 /* Resume IP prior to SMC */
3299 r = amdgpu_device_ip_reinit_early_sriov(adev);
3303 /* we need recover gart prior to run SMC/CP/SDMA resume */
3304 amdgpu_gtt_mgr_recover(&adev->mman.bdev.man[TTM_PL_TT]);
3306 r = amdgpu_device_fw_loading(adev);
3310 /* now we are okay to resume SMC/CP/SDMA */
3311 r = amdgpu_device_ip_reinit_late_sriov(adev);
3315 amdgpu_irq_gpu_reset_resume_helper(adev);
3316 r = amdgpu_ib_ring_tests(adev);
3317 amdgpu_amdkfd_post_reset(adev);
3320 amdgpu_virt_init_data_exchange(adev);
3321 amdgpu_virt_release_full_gpu(adev, true);
3322 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
3323 atomic_inc(&adev->vram_lost_counter);
3324 r = amdgpu_device_recover_vram(adev);
3331 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
3333 * @adev: amdgpu device pointer
3335 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
3338 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
3340 if (!amdgpu_device_ip_check_soft_reset(adev)) {
3341 DRM_INFO("Timeout, but no hardware hang detected.\n");
3345 if (amdgpu_gpu_recovery == 0)
3348 if (amdgpu_sriov_vf(adev))
3351 if (amdgpu_gpu_recovery == -1) {
3352 switch (adev->asic_type) {
3358 case CHIP_POLARIS10:
3359 case CHIP_POLARIS11:
3360 case CHIP_POLARIS12:
3374 DRM_INFO("GPU recovery disabled.\n");
3379 static int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev,
3380 struct amdgpu_job *job,
3381 bool *need_full_reset_arg)
3384 bool need_full_reset = *need_full_reset_arg;
3386 /* block all schedulers and reset given job's ring */
3387 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3388 struct amdgpu_ring *ring = adev->rings[i];
3390 if (!ring || !ring->sched.thread)
3393 drm_sched_stop(&ring->sched);
3395 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
3396 amdgpu_fence_driver_force_completion(ring);
3400 drm_sched_increase_karma(&job->base);
3404 if (!amdgpu_sriov_vf(adev)) {
3406 if (!need_full_reset)
3407 need_full_reset = amdgpu_device_ip_need_full_reset(adev);
3409 if (!need_full_reset) {
3410 amdgpu_device_ip_pre_soft_reset(adev);
3411 r = amdgpu_device_ip_soft_reset(adev);
3412 amdgpu_device_ip_post_soft_reset(adev);
3413 if (r || amdgpu_device_ip_check_soft_reset(adev)) {
3414 DRM_INFO("soft reset failed, will fallback to full reset!\n");
3415 need_full_reset = true;
3419 if (need_full_reset)
3420 r = amdgpu_device_ip_suspend(adev);
3422 *need_full_reset_arg = need_full_reset;
3428 static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
3429 struct list_head *device_list_handle,
3430 bool *need_full_reset_arg)
3432 struct amdgpu_device *tmp_adev = NULL;
3433 bool need_full_reset = *need_full_reset_arg, vram_lost = false;
3437 * ASIC reset has to be done on all HGMI hive nodes ASAP
3438 * to allow proper links negotiation in FW (within 1 sec)
3440 if (need_full_reset) {
3441 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3442 /* For XGMI run all resets in parallel to speed up the process */
3443 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3444 if (!queue_work(system_highpri_wq, &tmp_adev->xgmi_reset_work))
3447 r = amdgpu_asic_reset(tmp_adev);
3450 DRM_ERROR("ASIC reset failed with error, %d for drm dev, %s",
3451 r, tmp_adev->ddev->unique);
3456 /* For XGMI wait for all PSP resets to complete before proceed */
3458 list_for_each_entry(tmp_adev, device_list_handle,
3460 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
3461 flush_work(&tmp_adev->xgmi_reset_work);
3462 r = tmp_adev->asic_reset_res;
3468 list_for_each_entry(tmp_adev, device_list_handle,
3470 amdgpu_ras_reserve_bad_pages(tmp_adev);
3476 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3477 if (need_full_reset) {
3479 if (amdgpu_atom_asic_init(tmp_adev->mode_info.atom_context))
3480 DRM_WARN("asic atom init failed!");
3483 dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n");
3484 r = amdgpu_device_ip_resume_phase1(tmp_adev);
3488 vram_lost = amdgpu_device_check_vram_lost(tmp_adev);
3490 DRM_INFO("VRAM is lost due to GPU reset!\n");
3491 atomic_inc(&tmp_adev->vram_lost_counter);
3494 r = amdgpu_gtt_mgr_recover(
3495 &tmp_adev->mman.bdev.man[TTM_PL_TT]);
3499 r = amdgpu_device_fw_loading(tmp_adev);
3503 r = amdgpu_device_ip_resume_phase2(tmp_adev);
3508 amdgpu_device_fill_reset_magic(tmp_adev);
3510 r = amdgpu_device_ip_late_init(tmp_adev);
3515 amdgpu_ras_resume(tmp_adev);
3517 /* Update PSP FW topology after reset */
3518 if (hive && tmp_adev->gmc.xgmi.num_physical_nodes > 1)
3519 r = amdgpu_xgmi_update_topology(hive, tmp_adev);
3526 amdgpu_irq_gpu_reset_resume_helper(tmp_adev);
3527 r = amdgpu_ib_ring_tests(tmp_adev);
3529 dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r);
3530 r = amdgpu_device_ip_suspend(tmp_adev);
3531 need_full_reset = true;
3538 r = amdgpu_device_recover_vram(tmp_adev);
3540 tmp_adev->asic_reset_res = r;
3544 *need_full_reset_arg = need_full_reset;
3548 static void amdgpu_device_post_asic_reset(struct amdgpu_device *adev,
3549 struct amdgpu_job *job)
3553 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3554 struct amdgpu_ring *ring = adev->rings[i];
3556 if (!ring || !ring->sched.thread)
3559 if (!adev->asic_reset_res)
3560 drm_sched_resubmit_jobs(&ring->sched);
3562 drm_sched_start(&ring->sched, !adev->asic_reset_res);
3565 if (!amdgpu_device_has_dc_support(adev)) {
3566 drm_helper_resume_force_mode(adev->ddev);
3569 adev->asic_reset_res = 0;
3572 static void amdgpu_device_lock_adev(struct amdgpu_device *adev)
3574 mutex_lock(&adev->lock_reset);
3575 atomic_inc(&adev->gpu_reset_counter);
3576 adev->in_gpu_reset = 1;
3577 /* Block kfd: SRIOV would do it separately */
3578 if (!amdgpu_sriov_vf(adev))
3579 amdgpu_amdkfd_pre_reset(adev);
3582 static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
3584 /*unlock kfd: SRIOV would do it separately */
3585 if (!amdgpu_sriov_vf(adev))
3586 amdgpu_amdkfd_post_reset(adev);
3587 amdgpu_vf_error_trans_all(adev);
3588 adev->in_gpu_reset = 0;
3589 mutex_unlock(&adev->lock_reset);
3594 * amdgpu_device_gpu_recover - reset the asic and recover scheduler
3596 * @adev: amdgpu device pointer
3597 * @job: which job trigger hang
3599 * Attempt to reset the GPU if it has hung (all asics).
3600 * Attempt to do soft-reset or full-reset and reinitialize Asic
3601 * Returns 0 for success or an error on failure.
3604 int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
3605 struct amdgpu_job *job)
3608 struct amdgpu_hive_info *hive = NULL;
3609 bool need_full_reset = false;
3610 struct amdgpu_device *tmp_adev = NULL;
3611 struct list_head device_list, *device_list_handle = NULL;
3613 INIT_LIST_HEAD(&device_list);
3615 dev_info(adev->dev, "GPU reset begin!\n");
3618 * In case of XGMI hive disallow concurrent resets to be triggered
3619 * by different nodes. No point also since the one node already executing
3620 * reset will also reset all the other nodes in the hive.
3622 hive = amdgpu_get_xgmi_hive(adev, 0);
3623 if (hive && adev->gmc.xgmi.num_physical_nodes > 1 &&
3624 !mutex_trylock(&hive->reset_lock))
3627 /* Start with adev pre asic reset first for soft reset check.*/
3628 amdgpu_device_lock_adev(adev);
3629 r = amdgpu_device_pre_asic_reset(adev,
3633 /*TODO Should we stop ?*/
3634 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
3635 r, adev->ddev->unique);
3636 adev->asic_reset_res = r;
3639 /* Build list of devices to reset */
3640 if (need_full_reset && adev->gmc.xgmi.num_physical_nodes > 1) {
3642 amdgpu_device_unlock_adev(adev);
3647 * In case we are in XGMI hive mode device reset is done for all the
3648 * nodes in the hive to retrain all XGMI links and hence the reset
3649 * sequence is executed in loop on all nodes.
3651 device_list_handle = &hive->device_list;
3653 list_add_tail(&adev->gmc.xgmi.head, &device_list);
3654 device_list_handle = &device_list;
3657 retry: /* Rest of adevs pre asic reset from XGMI hive. */
3658 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3660 if (tmp_adev == adev)
3663 amdgpu_device_lock_adev(tmp_adev);
3664 r = amdgpu_device_pre_asic_reset(tmp_adev,
3667 /*TODO Should we stop ?*/
3669 DRM_ERROR("GPU pre asic reset failed with err, %d for drm dev, %s ",
3670 r, tmp_adev->ddev->unique);
3671 tmp_adev->asic_reset_res = r;
3675 /* Actual ASIC resets if needed.*/
3676 /* TODO Implement XGMI hive reset logic for SRIOV */
3677 if (amdgpu_sriov_vf(adev)) {
3678 r = amdgpu_device_reset_sriov(adev, job ? false : true);
3680 adev->asic_reset_res = r;
3682 r = amdgpu_do_asic_reset(hive, device_list_handle, &need_full_reset);
3683 if (r && r == -EAGAIN)
3687 /* Post ASIC reset for all devs .*/
3688 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3689 amdgpu_device_post_asic_reset(tmp_adev, tmp_adev == adev ? job : NULL);
3692 /* bad news, how to tell it to userspace ? */
3693 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&adev->gpu_reset_counter));
3694 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
3696 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&adev->gpu_reset_counter));
3699 amdgpu_device_unlock_adev(tmp_adev);
3702 if (hive && adev->gmc.xgmi.num_physical_nodes > 1)
3703 mutex_unlock(&hive->reset_lock);
3706 dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
3710 static void amdgpu_device_get_min_pci_speed_width(struct amdgpu_device *adev,
3711 enum pci_bus_speed *speed,
3712 enum pcie_link_width *width)
3714 struct pci_dev *pdev = adev->pdev;
3715 enum pci_bus_speed cur_speed;
3716 enum pcie_link_width cur_width;
3719 *speed = PCI_SPEED_UNKNOWN;
3720 *width = PCIE_LNK_WIDTH_UNKNOWN;
3723 cur_speed = pcie_get_speed_cap(pdev);
3724 cur_width = pcie_get_width_cap(pdev);
3725 ret = pcie_bandwidth_available(adev->pdev, NULL,
3728 cur_width = PCIE_LNK_WIDTH_RESRV;
3730 if (cur_speed != PCI_SPEED_UNKNOWN) {
3731 if (*speed == PCI_SPEED_UNKNOWN)
3733 else if (cur_speed < *speed)
3737 if (cur_width != PCIE_LNK_WIDTH_UNKNOWN) {
3738 if (*width == PCIE_LNK_WIDTH_UNKNOWN)
3740 else if (cur_width < *width)
3743 pdev = pci_upstream_bridge(pdev);
3748 * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot
3750 * @adev: amdgpu_device pointer
3752 * Fetchs and stores in the driver the PCIE capabilities (gen speed
3753 * and lanes) of the slot the device is in. Handles APUs and
3754 * virtualized environments where PCIE config space may not be available.
3756 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
3758 struct pci_dev *pdev;
3759 enum pci_bus_speed speed_cap, platform_speed_cap;
3760 enum pcie_link_width platform_link_width;
3762 if (amdgpu_pcie_gen_cap)
3763 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
3765 if (amdgpu_pcie_lane_cap)
3766 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
3768 /* covers APUs as well */
3769 if (pci_is_root_bus(adev->pdev->bus)) {
3770 if (adev->pm.pcie_gen_mask == 0)
3771 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3772 if (adev->pm.pcie_mlw_mask == 0)
3773 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
3777 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
3780 amdgpu_device_get_min_pci_speed_width(adev, &platform_speed_cap,
3781 &platform_link_width);
3783 if (adev->pm.pcie_gen_mask == 0) {
3786 speed_cap = pcie_get_speed_cap(pdev);
3787 if (speed_cap == PCI_SPEED_UNKNOWN) {
3788 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3789 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3790 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3792 if (speed_cap == PCIE_SPEED_16_0GT)
3793 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3794 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3795 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
3796 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4);
3797 else if (speed_cap == PCIE_SPEED_8_0GT)
3798 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3799 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3800 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3801 else if (speed_cap == PCIE_SPEED_5_0GT)
3802 adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3803 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2);
3805 adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1;
3808 if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
3809 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3810 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
3812 if (platform_speed_cap == PCIE_SPEED_16_0GT)
3813 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3814 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3815 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
3816 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4);
3817 else if (platform_speed_cap == PCIE_SPEED_8_0GT)
3818 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3819 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3820 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3);
3821 else if (platform_speed_cap == PCIE_SPEED_5_0GT)
3822 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3823 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
3825 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
3829 if (adev->pm.pcie_mlw_mask == 0) {
3830 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
3831 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
3833 switch (platform_link_width) {
3835 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
3836 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3837 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3838 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3839 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3840 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3841 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3844 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3845 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3846 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3847 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3848 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3849 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3852 adev->pm.pcie_mlw_mask = (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_X8 |
3860 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3861 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3862 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3865 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3866 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3867 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3870 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3871 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3874 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;