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