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