xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c (revision 26fbb4c8c7c3ee9a4c3b4de555a8587b5a19154e)
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 
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_probe_helper.h>
36 #include <drm/amdgpu_drm.h>
37 #include <linux/vgaarb.h>
38 #include <linux/vga_switcheroo.h>
39 #include <linux/efi.h>
40 #include "amdgpu.h"
41 #include "amdgpu_trace.h"
42 #include "amdgpu_i2c.h"
43 #include "atom.h"
44 #include "amdgpu_atombios.h"
45 #include "amdgpu_atomfirmware.h"
46 #include "amd_pcie.h"
47 #ifdef CONFIG_DRM_AMDGPU_SI
48 #include "si.h"
49 #endif
50 #ifdef CONFIG_DRM_AMDGPU_CIK
51 #include "cik.h"
52 #endif
53 #include "vi.h"
54 #include "soc15.h"
55 #include "nv.h"
56 #include "bif/bif_4_1_d.h"
57 #include <linux/pci.h>
58 #include <linux/firmware.h>
59 #include "amdgpu_vf_error.h"
60 
61 #include "amdgpu_amdkfd.h"
62 #include "amdgpu_pm.h"
63 
64 #include "amdgpu_xgmi.h"
65 #include "amdgpu_ras.h"
66 #include "amdgpu_pmu.h"
67 #include "amdgpu_fru_eeprom.h"
68 
69 #include <linux/suspend.h>
70 #include <drm/task_barrier.h>
71 #include <linux/pm_runtime.h>
72 
73 MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
74 MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
75 MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
76 MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
77 MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
78 MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin");
79 MODULE_FIRMWARE("amdgpu/renoir_gpu_info.bin");
80 MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin");
81 MODULE_FIRMWARE("amdgpu/navi14_gpu_info.bin");
82 MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin");
83 MODULE_FIRMWARE("amdgpu/vangogh_gpu_info.bin");
84 
85 #define AMDGPU_RESUME_MS		2000
86 
87 const char *amdgpu_asic_name[] = {
88 	"TAHITI",
89 	"PITCAIRN",
90 	"VERDE",
91 	"OLAND",
92 	"HAINAN",
93 	"BONAIRE",
94 	"KAVERI",
95 	"KABINI",
96 	"HAWAII",
97 	"MULLINS",
98 	"TOPAZ",
99 	"TONGA",
100 	"FIJI",
101 	"CARRIZO",
102 	"STONEY",
103 	"POLARIS10",
104 	"POLARIS11",
105 	"POLARIS12",
106 	"VEGAM",
107 	"VEGA10",
108 	"VEGA12",
109 	"VEGA20",
110 	"RAVEN",
111 	"ARCTURUS",
112 	"RENOIR",
113 	"NAVI10",
114 	"NAVI14",
115 	"NAVI12",
116 	"SIENNA_CICHLID",
117 	"NAVY_FLOUNDER",
118 	"VANGOGH",
119 	"DIMGREY_CAVEFISH",
120 	"LAST",
121 };
122 
123 /**
124  * DOC: pcie_replay_count
125  *
126  * The amdgpu driver provides a sysfs API for reporting the total number
127  * of PCIe replays (NAKs)
128  * The file pcie_replay_count is used for this and returns the total
129  * number of replays as a sum of the NAKs generated and NAKs received
130  */
131 
132 static ssize_t amdgpu_device_get_pcie_replay_count(struct device *dev,
133 		struct device_attribute *attr, char *buf)
134 {
135 	struct drm_device *ddev = dev_get_drvdata(dev);
136 	struct amdgpu_device *adev = drm_to_adev(ddev);
137 	uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
138 
139 	return snprintf(buf, PAGE_SIZE, "%llu\n", cnt);
140 }
141 
142 static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
143 		amdgpu_device_get_pcie_replay_count, NULL);
144 
145 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
146 
147 /**
148  * DOC: product_name
149  *
150  * The amdgpu driver provides a sysfs API for reporting the product name
151  * for the device
152  * The file serial_number is used for this and returns the product name
153  * as returned from the FRU.
154  * NOTE: This is only available for certain server cards
155  */
156 
157 static ssize_t amdgpu_device_get_product_name(struct device *dev,
158 		struct device_attribute *attr, char *buf)
159 {
160 	struct drm_device *ddev = dev_get_drvdata(dev);
161 	struct amdgpu_device *adev = drm_to_adev(ddev);
162 
163 	return snprintf(buf, PAGE_SIZE, "%s\n", adev->product_name);
164 }
165 
166 static DEVICE_ATTR(product_name, S_IRUGO,
167 		amdgpu_device_get_product_name, NULL);
168 
169 /**
170  * DOC: product_number
171  *
172  * The amdgpu driver provides a sysfs API for reporting the part number
173  * for the device
174  * The file serial_number is used for this and returns the part number
175  * as returned from the FRU.
176  * NOTE: This is only available for certain server cards
177  */
178 
179 static ssize_t amdgpu_device_get_product_number(struct device *dev,
180 		struct device_attribute *attr, char *buf)
181 {
182 	struct drm_device *ddev = dev_get_drvdata(dev);
183 	struct amdgpu_device *adev = drm_to_adev(ddev);
184 
185 	return snprintf(buf, PAGE_SIZE, "%s\n", adev->product_number);
186 }
187 
188 static DEVICE_ATTR(product_number, S_IRUGO,
189 		amdgpu_device_get_product_number, NULL);
190 
191 /**
192  * DOC: serial_number
193  *
194  * The amdgpu driver provides a sysfs API for reporting the serial number
195  * for the device
196  * The file serial_number is used for this and returns the serial number
197  * as returned from the FRU.
198  * NOTE: This is only available for certain server cards
199  */
200 
201 static ssize_t amdgpu_device_get_serial_number(struct device *dev,
202 		struct device_attribute *attr, char *buf)
203 {
204 	struct drm_device *ddev = dev_get_drvdata(dev);
205 	struct amdgpu_device *adev = drm_to_adev(ddev);
206 
207 	return snprintf(buf, PAGE_SIZE, "%s\n", adev->serial);
208 }
209 
210 static DEVICE_ATTR(serial_number, S_IRUGO,
211 		amdgpu_device_get_serial_number, NULL);
212 
213 /**
214  * amdgpu_device_supports_atpx - Is the device a dGPU with HG/PX power control
215  *
216  * @dev: drm_device pointer
217  *
218  * Returns true if the device is a dGPU with HG/PX power control,
219  * otherwise return false.
220  */
221 bool amdgpu_device_supports_atpx(struct drm_device *dev)
222 {
223 	struct amdgpu_device *adev = drm_to_adev(dev);
224 
225 	if (adev->flags & AMD_IS_PX)
226 		return true;
227 	return false;
228 }
229 
230 /**
231  * amdgpu_device_supports_boco - Is the device a dGPU with ACPI power resources
232  *
233  * @dev: drm_device pointer
234  *
235  * Returns true if the device is a dGPU with HG/PX power control,
236  * otherwise return false.
237  */
238 bool amdgpu_device_supports_boco(struct drm_device *dev)
239 {
240 	struct amdgpu_device *adev = drm_to_adev(dev);
241 
242 	if (adev->has_pr3)
243 		return true;
244 	return false;
245 }
246 
247 /**
248  * amdgpu_device_supports_baco - Does the device support BACO
249  *
250  * @dev: drm_device pointer
251  *
252  * Returns true if the device supporte BACO,
253  * otherwise return false.
254  */
255 bool amdgpu_device_supports_baco(struct drm_device *dev)
256 {
257 	struct amdgpu_device *adev = drm_to_adev(dev);
258 
259 	return amdgpu_asic_supports_baco(adev);
260 }
261 
262 /*
263  * VRAM access helper functions
264  */
265 
266 /**
267  * amdgpu_device_vram_access - read/write a buffer in vram
268  *
269  * @adev: amdgpu_device pointer
270  * @pos: offset of the buffer in vram
271  * @buf: virtual address of the buffer in system memory
272  * @size: read/write size, sizeof(@buf) must > @size
273  * @write: true - write to vram, otherwise - read from vram
274  */
275 void amdgpu_device_vram_access(struct amdgpu_device *adev, loff_t pos,
276 			       uint32_t *buf, size_t size, bool write)
277 {
278 	unsigned long flags;
279 	uint32_t hi = ~0;
280 	uint64_t last;
281 
282 
283 #ifdef CONFIG_64BIT
284 	last = min(pos + size, adev->gmc.visible_vram_size);
285 	if (last > pos) {
286 		void __iomem *addr = adev->mman.aper_base_kaddr + pos;
287 		size_t count = last - pos;
288 
289 		if (write) {
290 			memcpy_toio(addr, buf, count);
291 			mb();
292 			amdgpu_asic_flush_hdp(adev, NULL);
293 		} else {
294 			amdgpu_asic_invalidate_hdp(adev, NULL);
295 			mb();
296 			memcpy_fromio(buf, addr, count);
297 		}
298 
299 		if (count == size)
300 			return;
301 
302 		pos += count;
303 		buf += count / 4;
304 		size -= count;
305 	}
306 #endif
307 
308 	spin_lock_irqsave(&adev->mmio_idx_lock, flags);
309 	for (last = pos + size; pos < last; pos += 4) {
310 		uint32_t tmp = pos >> 31;
311 
312 		WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)pos) | 0x80000000);
313 		if (tmp != hi) {
314 			WREG32_NO_KIQ(mmMM_INDEX_HI, tmp);
315 			hi = tmp;
316 		}
317 		if (write)
318 			WREG32_NO_KIQ(mmMM_DATA, *buf++);
319 		else
320 			*buf++ = RREG32_NO_KIQ(mmMM_DATA);
321 	}
322 	spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
323 }
324 
325 /*
326  * register access helper functions.
327  */
328 /**
329  * amdgpu_device_rreg - read a memory mapped IO or indirect register
330  *
331  * @adev: amdgpu_device pointer
332  * @reg: dword aligned register offset
333  * @acc_flags: access flags which require special behavior
334  *
335  * Returns the 32 bit value from the offset specified.
336  */
337 uint32_t amdgpu_device_rreg(struct amdgpu_device *adev,
338 			    uint32_t reg, uint32_t acc_flags)
339 {
340 	uint32_t ret;
341 
342 	if (adev->in_pci_err_recovery)
343 		return 0;
344 
345 	if ((reg * 4) < adev->rmmio_size) {
346 		if (!(acc_flags & AMDGPU_REGS_NO_KIQ) &&
347 		    amdgpu_sriov_runtime(adev) &&
348 		    down_read_trylock(&adev->reset_sem)) {
349 			ret = amdgpu_kiq_rreg(adev, reg);
350 			up_read(&adev->reset_sem);
351 		} else {
352 			ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
353 		}
354 	} else {
355 		ret = adev->pcie_rreg(adev, reg * 4);
356 	}
357 
358 	trace_amdgpu_device_rreg(adev->pdev->device, reg, ret);
359 
360 	return ret;
361 }
362 
363 /*
364  * MMIO register read with bytes helper functions
365  * @offset:bytes offset from MMIO start
366  *
367 */
368 
369 /**
370  * amdgpu_mm_rreg8 - read a memory mapped IO register
371  *
372  * @adev: amdgpu_device pointer
373  * @offset: byte aligned register offset
374  *
375  * Returns the 8 bit value from the offset specified.
376  */
377 uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset)
378 {
379 	if (adev->in_pci_err_recovery)
380 		return 0;
381 
382 	if (offset < adev->rmmio_size)
383 		return (readb(adev->rmmio + offset));
384 	BUG();
385 }
386 
387 /*
388  * MMIO register write with bytes helper functions
389  * @offset:bytes offset from MMIO start
390  * @value: the value want to be written to the register
391  *
392 */
393 /**
394  * amdgpu_mm_wreg8 - read a memory mapped IO register
395  *
396  * @adev: amdgpu_device pointer
397  * @offset: byte aligned register offset
398  * @value: 8 bit value to write
399  *
400  * Writes the value specified to the offset specified.
401  */
402 void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value)
403 {
404 	if (adev->in_pci_err_recovery)
405 		return;
406 
407 	if (offset < adev->rmmio_size)
408 		writeb(value, adev->rmmio + offset);
409 	else
410 		BUG();
411 }
412 
413 /**
414  * amdgpu_device_wreg - write to a memory mapped IO or indirect register
415  *
416  * @adev: amdgpu_device pointer
417  * @reg: dword aligned register offset
418  * @v: 32 bit value to write to the register
419  * @acc_flags: access flags which require special behavior
420  *
421  * Writes the value specified to the offset specified.
422  */
423 void amdgpu_device_wreg(struct amdgpu_device *adev,
424 			uint32_t reg, uint32_t v,
425 			uint32_t acc_flags)
426 {
427 	if (adev->in_pci_err_recovery)
428 		return;
429 
430 	if ((reg * 4) < adev->rmmio_size) {
431 		if (!(acc_flags & AMDGPU_REGS_NO_KIQ) &&
432 		    amdgpu_sriov_runtime(adev) &&
433 		    down_read_trylock(&adev->reset_sem)) {
434 			amdgpu_kiq_wreg(adev, reg, v);
435 			up_read(&adev->reset_sem);
436 		} else {
437 			writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
438 		}
439 	} else {
440 		adev->pcie_wreg(adev, reg * 4, v);
441 	}
442 
443 	trace_amdgpu_device_wreg(adev->pdev->device, reg, v);
444 }
445 
446 /*
447  * amdgpu_mm_wreg_mmio_rlc -  write register either with mmio or with RLC path if in range
448  *
449  * this function is invoked only the debugfs register access
450  * */
451 void amdgpu_mm_wreg_mmio_rlc(struct amdgpu_device *adev,
452 			     uint32_t reg, uint32_t v)
453 {
454 	if (adev->in_pci_err_recovery)
455 		return;
456 
457 	if (amdgpu_sriov_fullaccess(adev) &&
458 	    adev->gfx.rlc.funcs &&
459 	    adev->gfx.rlc.funcs->is_rlcg_access_range) {
460 		if (adev->gfx.rlc.funcs->is_rlcg_access_range(adev, reg))
461 			return adev->gfx.rlc.funcs->rlcg_wreg(adev, reg, v);
462 	} else {
463 		writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
464 	}
465 }
466 
467 /**
468  * amdgpu_io_rreg - read an IO register
469  *
470  * @adev: amdgpu_device pointer
471  * @reg: dword aligned register offset
472  *
473  * Returns the 32 bit value from the offset specified.
474  */
475 u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
476 {
477 	if (adev->in_pci_err_recovery)
478 		return 0;
479 
480 	if ((reg * 4) < adev->rio_mem_size)
481 		return ioread32(adev->rio_mem + (reg * 4));
482 	else {
483 		iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
484 		return ioread32(adev->rio_mem + (mmMM_DATA * 4));
485 	}
486 }
487 
488 /**
489  * amdgpu_io_wreg - write to an IO register
490  *
491  * @adev: amdgpu_device pointer
492  * @reg: dword aligned register offset
493  * @v: 32 bit value to write to the register
494  *
495  * Writes the value specified to the offset specified.
496  */
497 void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
498 {
499 	if (adev->in_pci_err_recovery)
500 		return;
501 
502 	if ((reg * 4) < adev->rio_mem_size)
503 		iowrite32(v, adev->rio_mem + (reg * 4));
504 	else {
505 		iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
506 		iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
507 	}
508 }
509 
510 /**
511  * amdgpu_mm_rdoorbell - read a doorbell dword
512  *
513  * @adev: amdgpu_device pointer
514  * @index: doorbell index
515  *
516  * Returns the value in the doorbell aperture at the
517  * requested doorbell index (CIK).
518  */
519 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
520 {
521 	if (adev->in_pci_err_recovery)
522 		return 0;
523 
524 	if (index < adev->doorbell.num_doorbells) {
525 		return readl(adev->doorbell.ptr + index);
526 	} else {
527 		DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
528 		return 0;
529 	}
530 }
531 
532 /**
533  * amdgpu_mm_wdoorbell - write a doorbell dword
534  *
535  * @adev: amdgpu_device pointer
536  * @index: doorbell index
537  * @v: value to write
538  *
539  * Writes @v to the doorbell aperture at the
540  * requested doorbell index (CIK).
541  */
542 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
543 {
544 	if (adev->in_pci_err_recovery)
545 		return;
546 
547 	if (index < adev->doorbell.num_doorbells) {
548 		writel(v, adev->doorbell.ptr + index);
549 	} else {
550 		DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
551 	}
552 }
553 
554 /**
555  * amdgpu_mm_rdoorbell64 - read a doorbell Qword
556  *
557  * @adev: amdgpu_device pointer
558  * @index: doorbell index
559  *
560  * Returns the value in the doorbell aperture at the
561  * requested doorbell index (VEGA10+).
562  */
563 u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
564 {
565 	if (adev->in_pci_err_recovery)
566 		return 0;
567 
568 	if (index < adev->doorbell.num_doorbells) {
569 		return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
570 	} else {
571 		DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
572 		return 0;
573 	}
574 }
575 
576 /**
577  * amdgpu_mm_wdoorbell64 - write a doorbell Qword
578  *
579  * @adev: amdgpu_device pointer
580  * @index: doorbell index
581  * @v: value to write
582  *
583  * Writes @v to the doorbell aperture at the
584  * requested doorbell index (VEGA10+).
585  */
586 void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
587 {
588 	if (adev->in_pci_err_recovery)
589 		return;
590 
591 	if (index < adev->doorbell.num_doorbells) {
592 		atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
593 	} else {
594 		DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
595 	}
596 }
597 
598 /**
599  * amdgpu_device_indirect_rreg - read an indirect register
600  *
601  * @adev: amdgpu_device pointer
602  * @pcie_index: mmio register offset
603  * @pcie_data: mmio register offset
604  * @reg_addr: indirect register address to read from
605  *
606  * Returns the value of indirect register @reg_addr
607  */
608 u32 amdgpu_device_indirect_rreg(struct amdgpu_device *adev,
609 				u32 pcie_index, u32 pcie_data,
610 				u32 reg_addr)
611 {
612 	unsigned long flags;
613 	u32 r;
614 	void __iomem *pcie_index_offset;
615 	void __iomem *pcie_data_offset;
616 
617 	spin_lock_irqsave(&adev->pcie_idx_lock, flags);
618 	pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
619 	pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
620 
621 	writel(reg_addr, pcie_index_offset);
622 	readl(pcie_index_offset);
623 	r = readl(pcie_data_offset);
624 	spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
625 
626 	return r;
627 }
628 
629 /**
630  * amdgpu_device_indirect_rreg64 - read a 64bits indirect register
631  *
632  * @adev: amdgpu_device pointer
633  * @pcie_index: mmio register offset
634  * @pcie_data: mmio register offset
635  * @reg_addr: indirect register address to read from
636  *
637  * Returns the value of indirect register @reg_addr
638  */
639 u64 amdgpu_device_indirect_rreg64(struct amdgpu_device *adev,
640 				  u32 pcie_index, u32 pcie_data,
641 				  u32 reg_addr)
642 {
643 	unsigned long flags;
644 	u64 r;
645 	void __iomem *pcie_index_offset;
646 	void __iomem *pcie_data_offset;
647 
648 	spin_lock_irqsave(&adev->pcie_idx_lock, flags);
649 	pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
650 	pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
651 
652 	/* read low 32 bits */
653 	writel(reg_addr, pcie_index_offset);
654 	readl(pcie_index_offset);
655 	r = readl(pcie_data_offset);
656 	/* read high 32 bits */
657 	writel(reg_addr + 4, pcie_index_offset);
658 	readl(pcie_index_offset);
659 	r |= ((u64)readl(pcie_data_offset) << 32);
660 	spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
661 
662 	return r;
663 }
664 
665 /**
666  * amdgpu_device_indirect_wreg - write an indirect register address
667  *
668  * @adev: amdgpu_device pointer
669  * @pcie_index: mmio register offset
670  * @pcie_data: mmio register offset
671  * @reg_addr: indirect register offset
672  * @reg_data: indirect register data
673  *
674  */
675 void amdgpu_device_indirect_wreg(struct amdgpu_device *adev,
676 				 u32 pcie_index, u32 pcie_data,
677 				 u32 reg_addr, u32 reg_data)
678 {
679 	unsigned long flags;
680 	void __iomem *pcie_index_offset;
681 	void __iomem *pcie_data_offset;
682 
683 	spin_lock_irqsave(&adev->pcie_idx_lock, flags);
684 	pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
685 	pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
686 
687 	writel(reg_addr, pcie_index_offset);
688 	readl(pcie_index_offset);
689 	writel(reg_data, pcie_data_offset);
690 	readl(pcie_data_offset);
691 	spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
692 }
693 
694 /**
695  * amdgpu_device_indirect_wreg64 - write a 64bits indirect register address
696  *
697  * @adev: amdgpu_device pointer
698  * @pcie_index: mmio register offset
699  * @pcie_data: mmio register offset
700  * @reg_addr: indirect register offset
701  * @reg_data: indirect register data
702  *
703  */
704 void amdgpu_device_indirect_wreg64(struct amdgpu_device *adev,
705 				   u32 pcie_index, u32 pcie_data,
706 				   u32 reg_addr, u64 reg_data)
707 {
708 	unsigned long flags;
709 	void __iomem *pcie_index_offset;
710 	void __iomem *pcie_data_offset;
711 
712 	spin_lock_irqsave(&adev->pcie_idx_lock, flags);
713 	pcie_index_offset = (void __iomem *)adev->rmmio + pcie_index * 4;
714 	pcie_data_offset = (void __iomem *)adev->rmmio + pcie_data * 4;
715 
716 	/* write low 32 bits */
717 	writel(reg_addr, pcie_index_offset);
718 	readl(pcie_index_offset);
719 	writel((u32)(reg_data & 0xffffffffULL), pcie_data_offset);
720 	readl(pcie_data_offset);
721 	/* write high 32 bits */
722 	writel(reg_addr + 4, pcie_index_offset);
723 	readl(pcie_index_offset);
724 	writel((u32)(reg_data >> 32), pcie_data_offset);
725 	readl(pcie_data_offset);
726 	spin_unlock_irqrestore(&adev->pcie_idx_lock, flags);
727 }
728 
729 /**
730  * amdgpu_invalid_rreg - dummy reg read function
731  *
732  * @adev: amdgpu_device pointer
733  * @reg: offset of register
734  *
735  * Dummy register read function.  Used for register blocks
736  * that certain asics don't have (all asics).
737  * Returns the value in the register.
738  */
739 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
740 {
741 	DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
742 	BUG();
743 	return 0;
744 }
745 
746 /**
747  * amdgpu_invalid_wreg - dummy reg write function
748  *
749  * @adev: amdgpu_device pointer
750  * @reg: offset of register
751  * @v: value to write to the register
752  *
753  * Dummy register read function.  Used for register blocks
754  * that certain asics don't have (all asics).
755  */
756 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
757 {
758 	DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
759 		  reg, v);
760 	BUG();
761 }
762 
763 /**
764  * amdgpu_invalid_rreg64 - dummy 64 bit reg read function
765  *
766  * @adev: amdgpu_device pointer
767  * @reg: offset of register
768  *
769  * Dummy register read function.  Used for register blocks
770  * that certain asics don't have (all asics).
771  * Returns the value in the register.
772  */
773 static uint64_t amdgpu_invalid_rreg64(struct amdgpu_device *adev, uint32_t reg)
774 {
775 	DRM_ERROR("Invalid callback to read 64 bit register 0x%04X\n", reg);
776 	BUG();
777 	return 0;
778 }
779 
780 /**
781  * amdgpu_invalid_wreg64 - dummy reg write function
782  *
783  * @adev: amdgpu_device pointer
784  * @reg: offset of register
785  * @v: value to write to the register
786  *
787  * Dummy register read function.  Used for register blocks
788  * that certain asics don't have (all asics).
789  */
790 static void amdgpu_invalid_wreg64(struct amdgpu_device *adev, uint32_t reg, uint64_t v)
791 {
792 	DRM_ERROR("Invalid callback to write 64 bit register 0x%04X with 0x%08llX\n",
793 		  reg, v);
794 	BUG();
795 }
796 
797 /**
798  * amdgpu_block_invalid_rreg - dummy reg read function
799  *
800  * @adev: amdgpu_device pointer
801  * @block: offset of instance
802  * @reg: offset of register
803  *
804  * Dummy register read function.  Used for register blocks
805  * that certain asics don't have (all asics).
806  * Returns the value in the register.
807  */
808 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
809 					  uint32_t block, uint32_t reg)
810 {
811 	DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
812 		  reg, block);
813 	BUG();
814 	return 0;
815 }
816 
817 /**
818  * amdgpu_block_invalid_wreg - dummy reg write function
819  *
820  * @adev: amdgpu_device pointer
821  * @block: offset of instance
822  * @reg: offset of register
823  * @v: value to write to the register
824  *
825  * Dummy register read function.  Used for register blocks
826  * that certain asics don't have (all asics).
827  */
828 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
829 				      uint32_t block,
830 				      uint32_t reg, uint32_t v)
831 {
832 	DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
833 		  reg, block, v);
834 	BUG();
835 }
836 
837 /**
838  * amdgpu_device_asic_init - Wrapper for atom asic_init
839  *
840  * @adev: amdgpu_device pointer
841  *
842  * Does any asic specific work and then calls atom asic init.
843  */
844 static int amdgpu_device_asic_init(struct amdgpu_device *adev)
845 {
846 	amdgpu_asic_pre_asic_init(adev);
847 
848 	return amdgpu_atom_asic_init(adev->mode_info.atom_context);
849 }
850 
851 /**
852  * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
853  *
854  * @adev: amdgpu_device pointer
855  *
856  * Allocates a scratch page of VRAM for use by various things in the
857  * driver.
858  */
859 static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
860 {
861 	return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
862 				       PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
863 				       &adev->vram_scratch.robj,
864 				       &adev->vram_scratch.gpu_addr,
865 				       (void **)&adev->vram_scratch.ptr);
866 }
867 
868 /**
869  * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
870  *
871  * @adev: amdgpu_device pointer
872  *
873  * Frees the VRAM scratch page.
874  */
875 static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
876 {
877 	amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
878 }
879 
880 /**
881  * amdgpu_device_program_register_sequence - program an array of registers.
882  *
883  * @adev: amdgpu_device pointer
884  * @registers: pointer to the register array
885  * @array_size: size of the register array
886  *
887  * Programs an array or registers with and and or masks.
888  * This is a helper for setting golden registers.
889  */
890 void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
891 					     const u32 *registers,
892 					     const u32 array_size)
893 {
894 	u32 tmp, reg, and_mask, or_mask;
895 	int i;
896 
897 	if (array_size % 3)
898 		return;
899 
900 	for (i = 0; i < array_size; i +=3) {
901 		reg = registers[i + 0];
902 		and_mask = registers[i + 1];
903 		or_mask = registers[i + 2];
904 
905 		if (and_mask == 0xffffffff) {
906 			tmp = or_mask;
907 		} else {
908 			tmp = RREG32(reg);
909 			tmp &= ~and_mask;
910 			if (adev->family >= AMDGPU_FAMILY_AI)
911 				tmp |= (or_mask & and_mask);
912 			else
913 				tmp |= or_mask;
914 		}
915 		WREG32(reg, tmp);
916 	}
917 }
918 
919 /**
920  * amdgpu_device_pci_config_reset - reset the GPU
921  *
922  * @adev: amdgpu_device pointer
923  *
924  * Resets the GPU using the pci config reset sequence.
925  * Only applicable to asics prior to vega10.
926  */
927 void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
928 {
929 	pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
930 }
931 
932 /*
933  * GPU doorbell aperture helpers function.
934  */
935 /**
936  * amdgpu_device_doorbell_init - Init doorbell driver information.
937  *
938  * @adev: amdgpu_device pointer
939  *
940  * Init doorbell driver information (CIK)
941  * Returns 0 on success, error on failure.
942  */
943 static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
944 {
945 
946 	/* No doorbell on SI hardware generation */
947 	if (adev->asic_type < CHIP_BONAIRE) {
948 		adev->doorbell.base = 0;
949 		adev->doorbell.size = 0;
950 		adev->doorbell.num_doorbells = 0;
951 		adev->doorbell.ptr = NULL;
952 		return 0;
953 	}
954 
955 	if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
956 		return -EINVAL;
957 
958 	amdgpu_asic_init_doorbell_index(adev);
959 
960 	/* doorbell bar mapping */
961 	adev->doorbell.base = pci_resource_start(adev->pdev, 2);
962 	adev->doorbell.size = pci_resource_len(adev->pdev, 2);
963 
964 	adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
965 					     adev->doorbell_index.max_assignment+1);
966 	if (adev->doorbell.num_doorbells == 0)
967 		return -EINVAL;
968 
969 	/* For Vega, reserve and map two pages on doorbell BAR since SDMA
970 	 * paging queue doorbell use the second page. The
971 	 * AMDGPU_DOORBELL64_MAX_ASSIGNMENT definition assumes all the
972 	 * doorbells are in the first page. So with paging queue enabled,
973 	 * the max num_doorbells should + 1 page (0x400 in dword)
974 	 */
975 	if (adev->asic_type >= CHIP_VEGA10)
976 		adev->doorbell.num_doorbells += 0x400;
977 
978 	adev->doorbell.ptr = ioremap(adev->doorbell.base,
979 				     adev->doorbell.num_doorbells *
980 				     sizeof(u32));
981 	if (adev->doorbell.ptr == NULL)
982 		return -ENOMEM;
983 
984 	return 0;
985 }
986 
987 /**
988  * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
989  *
990  * @adev: amdgpu_device pointer
991  *
992  * Tear down doorbell driver information (CIK)
993  */
994 static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
995 {
996 	iounmap(adev->doorbell.ptr);
997 	adev->doorbell.ptr = NULL;
998 }
999 
1000 
1001 
1002 /*
1003  * amdgpu_device_wb_*()
1004  * Writeback is the method by which the GPU updates special pages in memory
1005  * with the status of certain GPU events (fences, ring pointers,etc.).
1006  */
1007 
1008 /**
1009  * amdgpu_device_wb_fini - Disable Writeback and free memory
1010  *
1011  * @adev: amdgpu_device pointer
1012  *
1013  * Disables Writeback and frees the Writeback memory (all asics).
1014  * Used at driver shutdown.
1015  */
1016 static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
1017 {
1018 	if (adev->wb.wb_obj) {
1019 		amdgpu_bo_free_kernel(&adev->wb.wb_obj,
1020 				      &adev->wb.gpu_addr,
1021 				      (void **)&adev->wb.wb);
1022 		adev->wb.wb_obj = NULL;
1023 	}
1024 }
1025 
1026 /**
1027  * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
1028  *
1029  * @adev: amdgpu_device pointer
1030  *
1031  * Initializes writeback and allocates writeback memory (all asics).
1032  * Used at driver startup.
1033  * Returns 0 on success or an -error on failure.
1034  */
1035 static int amdgpu_device_wb_init(struct amdgpu_device *adev)
1036 {
1037 	int r;
1038 
1039 	if (adev->wb.wb_obj == NULL) {
1040 		/* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
1041 		r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
1042 					    PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
1043 					    &adev->wb.wb_obj, &adev->wb.gpu_addr,
1044 					    (void **)&adev->wb.wb);
1045 		if (r) {
1046 			dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
1047 			return r;
1048 		}
1049 
1050 		adev->wb.num_wb = AMDGPU_MAX_WB;
1051 		memset(&adev->wb.used, 0, sizeof(adev->wb.used));
1052 
1053 		/* clear wb memory */
1054 		memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
1055 	}
1056 
1057 	return 0;
1058 }
1059 
1060 /**
1061  * amdgpu_device_wb_get - Allocate a wb entry
1062  *
1063  * @adev: amdgpu_device pointer
1064  * @wb: wb index
1065  *
1066  * Allocate a wb slot for use by the driver (all asics).
1067  * Returns 0 on success or -EINVAL on failure.
1068  */
1069 int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
1070 {
1071 	unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
1072 
1073 	if (offset < adev->wb.num_wb) {
1074 		__set_bit(offset, adev->wb.used);
1075 		*wb = offset << 3; /* convert to dw offset */
1076 		return 0;
1077 	} else {
1078 		return -EINVAL;
1079 	}
1080 }
1081 
1082 /**
1083  * amdgpu_device_wb_free - Free a wb entry
1084  *
1085  * @adev: amdgpu_device pointer
1086  * @wb: wb index
1087  *
1088  * Free a wb slot allocated for use by the driver (all asics)
1089  */
1090 void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
1091 {
1092 	wb >>= 3;
1093 	if (wb < adev->wb.num_wb)
1094 		__clear_bit(wb, adev->wb.used);
1095 }
1096 
1097 /**
1098  * amdgpu_device_resize_fb_bar - try to resize FB BAR
1099  *
1100  * @adev: amdgpu_device pointer
1101  *
1102  * Try to resize FB BAR to make all VRAM CPU accessible. We try very hard not
1103  * to fail, but if any of the BARs is not accessible after the size we abort
1104  * driver loading by returning -ENODEV.
1105  */
1106 int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
1107 {
1108 	int rbar_size = pci_rebar_bytes_to_size(adev->gmc.real_vram_size);
1109 	struct pci_bus *root;
1110 	struct resource *res;
1111 	unsigned i;
1112 	u16 cmd;
1113 	int r;
1114 
1115 	/* Bypass for VF */
1116 	if (amdgpu_sriov_vf(adev))
1117 		return 0;
1118 
1119 	/* skip if the bios has already enabled large BAR */
1120 	if (adev->gmc.real_vram_size &&
1121 	    (pci_resource_len(adev->pdev, 0) >= adev->gmc.real_vram_size))
1122 		return 0;
1123 
1124 	/* Check if the root BUS has 64bit memory resources */
1125 	root = adev->pdev->bus;
1126 	while (root->parent)
1127 		root = root->parent;
1128 
1129 	pci_bus_for_each_resource(root, res, i) {
1130 		if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
1131 		    res->start > 0x100000000ull)
1132 			break;
1133 	}
1134 
1135 	/* Trying to resize is pointless without a root hub window above 4GB */
1136 	if (!res)
1137 		return 0;
1138 
1139 	/* Limit the BAR size to what is available */
1140 	rbar_size = min(fls(pci_rebar_get_possible_sizes(adev->pdev, 0)) - 1,
1141 			rbar_size);
1142 
1143 	/* Disable memory decoding while we change the BAR addresses and size */
1144 	pci_read_config_word(adev->pdev, PCI_COMMAND, &cmd);
1145 	pci_write_config_word(adev->pdev, PCI_COMMAND,
1146 			      cmd & ~PCI_COMMAND_MEMORY);
1147 
1148 	/* Free the VRAM and doorbell BAR, we most likely need to move both. */
1149 	amdgpu_device_doorbell_fini(adev);
1150 	if (adev->asic_type >= CHIP_BONAIRE)
1151 		pci_release_resource(adev->pdev, 2);
1152 
1153 	pci_release_resource(adev->pdev, 0);
1154 
1155 	r = pci_resize_resource(adev->pdev, 0, rbar_size);
1156 	if (r == -ENOSPC)
1157 		DRM_INFO("Not enough PCI address space for a large BAR.");
1158 	else if (r && r != -ENOTSUPP)
1159 		DRM_ERROR("Problem resizing BAR0 (%d).", r);
1160 
1161 	pci_assign_unassigned_bus_resources(adev->pdev->bus);
1162 
1163 	/* When the doorbell or fb BAR isn't available we have no chance of
1164 	 * using the device.
1165 	 */
1166 	r = amdgpu_device_doorbell_init(adev);
1167 	if (r || (pci_resource_flags(adev->pdev, 0) & IORESOURCE_UNSET))
1168 		return -ENODEV;
1169 
1170 	pci_write_config_word(adev->pdev, PCI_COMMAND, cmd);
1171 
1172 	return 0;
1173 }
1174 
1175 /*
1176  * GPU helpers function.
1177  */
1178 /**
1179  * amdgpu_device_need_post - check if the hw need post or not
1180  *
1181  * @adev: amdgpu_device pointer
1182  *
1183  * Check if the asic has been initialized (all asics) at driver startup
1184  * or post is needed if  hw reset is performed.
1185  * Returns true if need or false if not.
1186  */
1187 bool amdgpu_device_need_post(struct amdgpu_device *adev)
1188 {
1189 	uint32_t reg;
1190 
1191 	if (amdgpu_sriov_vf(adev))
1192 		return false;
1193 
1194 	if (amdgpu_passthrough(adev)) {
1195 		/* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
1196 		 * some old smc fw still need driver do vPost otherwise gpu hang, while
1197 		 * those smc fw version above 22.15 doesn't have this flaw, so we force
1198 		 * vpost executed for smc version below 22.15
1199 		 */
1200 		if (adev->asic_type == CHIP_FIJI) {
1201 			int err;
1202 			uint32_t fw_ver;
1203 			err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
1204 			/* force vPost if error occured */
1205 			if (err)
1206 				return true;
1207 
1208 			fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
1209 			if (fw_ver < 0x00160e00)
1210 				return true;
1211 		}
1212 	}
1213 
1214 	if (adev->has_hw_reset) {
1215 		adev->has_hw_reset = false;
1216 		return true;
1217 	}
1218 
1219 	/* bios scratch used on CIK+ */
1220 	if (adev->asic_type >= CHIP_BONAIRE)
1221 		return amdgpu_atombios_scratch_need_asic_init(adev);
1222 
1223 	/* check MEM_SIZE for older asics */
1224 	reg = amdgpu_asic_get_config_memsize(adev);
1225 
1226 	if ((reg != 0) && (reg != 0xffffffff))
1227 		return false;
1228 
1229 	return true;
1230 }
1231 
1232 /* if we get transitioned to only one device, take VGA back */
1233 /**
1234  * amdgpu_device_vga_set_decode - enable/disable vga decode
1235  *
1236  * @cookie: amdgpu_device pointer
1237  * @state: enable/disable vga decode
1238  *
1239  * Enable/disable vga decode (all asics).
1240  * Returns VGA resource flags.
1241  */
1242 static unsigned int amdgpu_device_vga_set_decode(void *cookie, bool state)
1243 {
1244 	struct amdgpu_device *adev = cookie;
1245 	amdgpu_asic_set_vga_state(adev, state);
1246 	if (state)
1247 		return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1248 		       VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1249 	else
1250 		return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1251 }
1252 
1253 /**
1254  * amdgpu_device_check_block_size - validate the vm block size
1255  *
1256  * @adev: amdgpu_device pointer
1257  *
1258  * Validates the vm block size specified via module parameter.
1259  * The vm block size defines number of bits in page table versus page directory,
1260  * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1261  * page table and the remaining bits are in the page directory.
1262  */
1263 static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
1264 {
1265 	/* defines number of bits in page table versus page directory,
1266 	 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1267 	 * page table and the remaining bits are in the page directory */
1268 	if (amdgpu_vm_block_size == -1)
1269 		return;
1270 
1271 	if (amdgpu_vm_block_size < 9) {
1272 		dev_warn(adev->dev, "VM page table size (%d) too small\n",
1273 			 amdgpu_vm_block_size);
1274 		amdgpu_vm_block_size = -1;
1275 	}
1276 }
1277 
1278 /**
1279  * amdgpu_device_check_vm_size - validate the vm size
1280  *
1281  * @adev: amdgpu_device pointer
1282  *
1283  * Validates the vm size in GB specified via module parameter.
1284  * The VM size is the size of the GPU virtual memory space in GB.
1285  */
1286 static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
1287 {
1288 	/* no need to check the default value */
1289 	if (amdgpu_vm_size == -1)
1290 		return;
1291 
1292 	if (amdgpu_vm_size < 1) {
1293 		dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1294 			 amdgpu_vm_size);
1295 		amdgpu_vm_size = -1;
1296 	}
1297 }
1298 
1299 static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
1300 {
1301 	struct sysinfo si;
1302 	bool is_os_64 = (sizeof(void *) == 8);
1303 	uint64_t total_memory;
1304 	uint64_t dram_size_seven_GB = 0x1B8000000;
1305 	uint64_t dram_size_three_GB = 0xB8000000;
1306 
1307 	if (amdgpu_smu_memory_pool_size == 0)
1308 		return;
1309 
1310 	if (!is_os_64) {
1311 		DRM_WARN("Not 64-bit OS, feature not supported\n");
1312 		goto def_value;
1313 	}
1314 	si_meminfo(&si);
1315 	total_memory = (uint64_t)si.totalram * si.mem_unit;
1316 
1317 	if ((amdgpu_smu_memory_pool_size == 1) ||
1318 		(amdgpu_smu_memory_pool_size == 2)) {
1319 		if (total_memory < dram_size_three_GB)
1320 			goto def_value1;
1321 	} else if ((amdgpu_smu_memory_pool_size == 4) ||
1322 		(amdgpu_smu_memory_pool_size == 8)) {
1323 		if (total_memory < dram_size_seven_GB)
1324 			goto def_value1;
1325 	} else {
1326 		DRM_WARN("Smu memory pool size not supported\n");
1327 		goto def_value;
1328 	}
1329 	adev->pm.smu_prv_buffer_size = amdgpu_smu_memory_pool_size << 28;
1330 
1331 	return;
1332 
1333 def_value1:
1334 	DRM_WARN("No enough system memory\n");
1335 def_value:
1336 	adev->pm.smu_prv_buffer_size = 0;
1337 }
1338 
1339 /**
1340  * amdgpu_device_check_arguments - validate module params
1341  *
1342  * @adev: amdgpu_device pointer
1343  *
1344  * Validates certain module parameters and updates
1345  * the associated values used by the driver (all asics).
1346  */
1347 static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
1348 {
1349 	if (amdgpu_sched_jobs < 4) {
1350 		dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1351 			 amdgpu_sched_jobs);
1352 		amdgpu_sched_jobs = 4;
1353 	} else if (!is_power_of_2(amdgpu_sched_jobs)){
1354 		dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1355 			 amdgpu_sched_jobs);
1356 		amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1357 	}
1358 
1359 	if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
1360 		/* gart size must be greater or equal to 32M */
1361 		dev_warn(adev->dev, "gart size (%d) too small\n",
1362 			 amdgpu_gart_size);
1363 		amdgpu_gart_size = -1;
1364 	}
1365 
1366 	if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
1367 		/* gtt size must be greater or equal to 32M */
1368 		dev_warn(adev->dev, "gtt size (%d) too small\n",
1369 				 amdgpu_gtt_size);
1370 		amdgpu_gtt_size = -1;
1371 	}
1372 
1373 	/* valid range is between 4 and 9 inclusive */
1374 	if (amdgpu_vm_fragment_size != -1 &&
1375 	    (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
1376 		dev_warn(adev->dev, "valid range is between 4 and 9\n");
1377 		amdgpu_vm_fragment_size = -1;
1378 	}
1379 
1380 	if (amdgpu_sched_hw_submission < 2) {
1381 		dev_warn(adev->dev, "sched hw submission jobs (%d) must be at least 2\n",
1382 			 amdgpu_sched_hw_submission);
1383 		amdgpu_sched_hw_submission = 2;
1384 	} else if (!is_power_of_2(amdgpu_sched_hw_submission)) {
1385 		dev_warn(adev->dev, "sched hw submission jobs (%d) must be a power of 2\n",
1386 			 amdgpu_sched_hw_submission);
1387 		amdgpu_sched_hw_submission = roundup_pow_of_two(amdgpu_sched_hw_submission);
1388 	}
1389 
1390 	amdgpu_device_check_smu_prv_buffer_size(adev);
1391 
1392 	amdgpu_device_check_vm_size(adev);
1393 
1394 	amdgpu_device_check_block_size(adev);
1395 
1396 	adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
1397 
1398 	amdgpu_gmc_tmz_set(adev);
1399 
1400 	amdgpu_gmc_noretry_set(adev);
1401 
1402 	return 0;
1403 }
1404 
1405 /**
1406  * amdgpu_switcheroo_set_state - set switcheroo state
1407  *
1408  * @pdev: pci dev pointer
1409  * @state: vga_switcheroo state
1410  *
1411  * Callback for the switcheroo driver.  Suspends or resumes the
1412  * the asics before or after it is powered up using ACPI methods.
1413  */
1414 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev,
1415 					enum vga_switcheroo_state state)
1416 {
1417 	struct drm_device *dev = pci_get_drvdata(pdev);
1418 	int r;
1419 
1420 	if (amdgpu_device_supports_atpx(dev) && state == VGA_SWITCHEROO_OFF)
1421 		return;
1422 
1423 	if (state == VGA_SWITCHEROO_ON) {
1424 		pr_info("switched on\n");
1425 		/* don't suspend or resume card normally */
1426 		dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1427 
1428 		pci_set_power_state(pdev, PCI_D0);
1429 		amdgpu_device_load_pci_state(pdev);
1430 		r = pci_enable_device(pdev);
1431 		if (r)
1432 			DRM_WARN("pci_enable_device failed (%d)\n", r);
1433 		amdgpu_device_resume(dev, true);
1434 
1435 		dev->switch_power_state = DRM_SWITCH_POWER_ON;
1436 		drm_kms_helper_poll_enable(dev);
1437 	} else {
1438 		pr_info("switched off\n");
1439 		drm_kms_helper_poll_disable(dev);
1440 		dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1441 		amdgpu_device_suspend(dev, true);
1442 		amdgpu_device_cache_pci_state(pdev);
1443 		/* Shut down the device */
1444 		pci_disable_device(pdev);
1445 		pci_set_power_state(pdev, PCI_D3cold);
1446 		dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1447 	}
1448 }
1449 
1450 /**
1451  * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1452  *
1453  * @pdev: pci dev pointer
1454  *
1455  * Callback for the switcheroo driver.  Check of the switcheroo
1456  * state can be changed.
1457  * Returns true if the state can be changed, false if not.
1458  */
1459 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1460 {
1461 	struct drm_device *dev = pci_get_drvdata(pdev);
1462 
1463 	/*
1464 	* FIXME: open_count is protected by drm_global_mutex but that would lead to
1465 	* locking inversion with the driver load path. And the access here is
1466 	* completely racy anyway. So don't bother with locking for now.
1467 	*/
1468 	return atomic_read(&dev->open_count) == 0;
1469 }
1470 
1471 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1472 	.set_gpu_state = amdgpu_switcheroo_set_state,
1473 	.reprobe = NULL,
1474 	.can_switch = amdgpu_switcheroo_can_switch,
1475 };
1476 
1477 /**
1478  * amdgpu_device_ip_set_clockgating_state - set the CG state
1479  *
1480  * @dev: amdgpu_device pointer
1481  * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1482  * @state: clockgating state (gate or ungate)
1483  *
1484  * Sets the requested clockgating state for all instances of
1485  * the hardware IP specified.
1486  * Returns the error code from the last instance.
1487  */
1488 int amdgpu_device_ip_set_clockgating_state(void *dev,
1489 					   enum amd_ip_block_type block_type,
1490 					   enum amd_clockgating_state state)
1491 {
1492 	struct amdgpu_device *adev = dev;
1493 	int i, r = 0;
1494 
1495 	for (i = 0; i < adev->num_ip_blocks; i++) {
1496 		if (!adev->ip_blocks[i].status.valid)
1497 			continue;
1498 		if (adev->ip_blocks[i].version->type != block_type)
1499 			continue;
1500 		if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1501 			continue;
1502 		r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1503 			(void *)adev, state);
1504 		if (r)
1505 			DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1506 				  adev->ip_blocks[i].version->funcs->name, r);
1507 	}
1508 	return r;
1509 }
1510 
1511 /**
1512  * amdgpu_device_ip_set_powergating_state - set the PG state
1513  *
1514  * @dev: amdgpu_device pointer
1515  * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1516  * @state: powergating state (gate or ungate)
1517  *
1518  * Sets the requested powergating state for all instances of
1519  * the hardware IP specified.
1520  * Returns the error code from the last instance.
1521  */
1522 int amdgpu_device_ip_set_powergating_state(void *dev,
1523 					   enum amd_ip_block_type block_type,
1524 					   enum amd_powergating_state state)
1525 {
1526 	struct amdgpu_device *adev = dev;
1527 	int i, r = 0;
1528 
1529 	for (i = 0; i < adev->num_ip_blocks; i++) {
1530 		if (!adev->ip_blocks[i].status.valid)
1531 			continue;
1532 		if (adev->ip_blocks[i].version->type != block_type)
1533 			continue;
1534 		if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1535 			continue;
1536 		r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1537 			(void *)adev, state);
1538 		if (r)
1539 			DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1540 				  adev->ip_blocks[i].version->funcs->name, r);
1541 	}
1542 	return r;
1543 }
1544 
1545 /**
1546  * amdgpu_device_ip_get_clockgating_state - get the CG state
1547  *
1548  * @adev: amdgpu_device pointer
1549  * @flags: clockgating feature flags
1550  *
1551  * Walks the list of IPs on the device and updates the clockgating
1552  * flags for each IP.
1553  * Updates @flags with the feature flags for each hardware IP where
1554  * clockgating is enabled.
1555  */
1556 void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1557 					    u32 *flags)
1558 {
1559 	int i;
1560 
1561 	for (i = 0; i < adev->num_ip_blocks; i++) {
1562 		if (!adev->ip_blocks[i].status.valid)
1563 			continue;
1564 		if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1565 			adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1566 	}
1567 }
1568 
1569 /**
1570  * amdgpu_device_ip_wait_for_idle - wait for idle
1571  *
1572  * @adev: amdgpu_device pointer
1573  * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1574  *
1575  * Waits for the request hardware IP to be idle.
1576  * Returns 0 for success or a negative error code on failure.
1577  */
1578 int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1579 				   enum amd_ip_block_type block_type)
1580 {
1581 	int i, r;
1582 
1583 	for (i = 0; i < adev->num_ip_blocks; i++) {
1584 		if (!adev->ip_blocks[i].status.valid)
1585 			continue;
1586 		if (adev->ip_blocks[i].version->type == block_type) {
1587 			r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
1588 			if (r)
1589 				return r;
1590 			break;
1591 		}
1592 	}
1593 	return 0;
1594 
1595 }
1596 
1597 /**
1598  * amdgpu_device_ip_is_idle - is the hardware IP idle
1599  *
1600  * @adev: amdgpu_device pointer
1601  * @block_type: Type of hardware IP (SMU, GFX, UVD, etc.)
1602  *
1603  * Check if the hardware IP is idle or not.
1604  * Returns true if it the IP is idle, false if not.
1605  */
1606 bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1607 			      enum amd_ip_block_type block_type)
1608 {
1609 	int i;
1610 
1611 	for (i = 0; i < adev->num_ip_blocks; i++) {
1612 		if (!adev->ip_blocks[i].status.valid)
1613 			continue;
1614 		if (adev->ip_blocks[i].version->type == block_type)
1615 			return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
1616 	}
1617 	return true;
1618 
1619 }
1620 
1621 /**
1622  * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1623  *
1624  * @adev: amdgpu_device pointer
1625  * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
1626  *
1627  * Returns a pointer to the hardware IP block structure
1628  * if it exists for the asic, otherwise NULL.
1629  */
1630 struct amdgpu_ip_block *
1631 amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1632 			      enum amd_ip_block_type type)
1633 {
1634 	int i;
1635 
1636 	for (i = 0; i < adev->num_ip_blocks; i++)
1637 		if (adev->ip_blocks[i].version->type == type)
1638 			return &adev->ip_blocks[i];
1639 
1640 	return NULL;
1641 }
1642 
1643 /**
1644  * amdgpu_device_ip_block_version_cmp
1645  *
1646  * @adev: amdgpu_device pointer
1647  * @type: enum amd_ip_block_type
1648  * @major: major version
1649  * @minor: minor version
1650  *
1651  * return 0 if equal or greater
1652  * return 1 if smaller or the ip_block doesn't exist
1653  */
1654 int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1655 				       enum amd_ip_block_type type,
1656 				       u32 major, u32 minor)
1657 {
1658 	struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
1659 
1660 	if (ip_block && ((ip_block->version->major > major) ||
1661 			((ip_block->version->major == major) &&
1662 			(ip_block->version->minor >= minor))))
1663 		return 0;
1664 
1665 	return 1;
1666 }
1667 
1668 /**
1669  * amdgpu_device_ip_block_add
1670  *
1671  * @adev: amdgpu_device pointer
1672  * @ip_block_version: pointer to the IP to add
1673  *
1674  * Adds the IP block driver information to the collection of IPs
1675  * on the asic.
1676  */
1677 int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1678 			       const struct amdgpu_ip_block_version *ip_block_version)
1679 {
1680 	if (!ip_block_version)
1681 		return -EINVAL;
1682 
1683 	DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
1684 		  ip_block_version->funcs->name);
1685 
1686 	adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1687 
1688 	return 0;
1689 }
1690 
1691 /**
1692  * amdgpu_device_enable_virtual_display - enable virtual display feature
1693  *
1694  * @adev: amdgpu_device pointer
1695  *
1696  * Enabled the virtual display feature if the user has enabled it via
1697  * the module parameter virtual_display.  This feature provides a virtual
1698  * display hardware on headless boards or in virtualized environments.
1699  * This function parses and validates the configuration string specified by
1700  * the user and configues the virtual display configuration (number of
1701  * virtual connectors, crtcs, etc.) specified.
1702  */
1703 static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
1704 {
1705 	adev->enable_virtual_display = false;
1706 
1707 	if (amdgpu_virtual_display) {
1708 		const char *pci_address_name = pci_name(adev->pdev);
1709 		char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
1710 
1711 		pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1712 		pciaddstr_tmp = pciaddstr;
1713 		while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1714 			pciaddname = strsep(&pciaddname_tmp, ",");
1715 			if (!strcmp("all", pciaddname)
1716 			    || !strcmp(pci_address_name, pciaddname)) {
1717 				long num_crtc;
1718 				int res = -1;
1719 
1720 				adev->enable_virtual_display = true;
1721 
1722 				if (pciaddname_tmp)
1723 					res = kstrtol(pciaddname_tmp, 10,
1724 						      &num_crtc);
1725 
1726 				if (!res) {
1727 					if (num_crtc < 1)
1728 						num_crtc = 1;
1729 					if (num_crtc > 6)
1730 						num_crtc = 6;
1731 					adev->mode_info.num_crtc = num_crtc;
1732 				} else {
1733 					adev->mode_info.num_crtc = 1;
1734 				}
1735 				break;
1736 			}
1737 		}
1738 
1739 		DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1740 			 amdgpu_virtual_display, pci_address_name,
1741 			 adev->enable_virtual_display, adev->mode_info.num_crtc);
1742 
1743 		kfree(pciaddstr);
1744 	}
1745 }
1746 
1747 /**
1748  * amdgpu_device_parse_gpu_info_fw - parse gpu info firmware
1749  *
1750  * @adev: amdgpu_device pointer
1751  *
1752  * Parses the asic configuration parameters specified in the gpu info
1753  * firmware and makes them availale to the driver for use in configuring
1754  * the asic.
1755  * Returns 0 on success, -EINVAL on failure.
1756  */
1757 static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1758 {
1759 	const char *chip_name;
1760 	char fw_name[40];
1761 	int err;
1762 	const struct gpu_info_firmware_header_v1_0 *hdr;
1763 
1764 	adev->firmware.gpu_info_fw = NULL;
1765 
1766 	if (adev->mman.discovery_bin) {
1767 		amdgpu_discovery_get_gfx_info(adev);
1768 
1769 		/*
1770 		 * FIXME: The bounding box is still needed by Navi12, so
1771 		 * temporarily read it from gpu_info firmware. Should be droped
1772 		 * when DAL no longer needs it.
1773 		 */
1774 		if (adev->asic_type != CHIP_NAVI12)
1775 			return 0;
1776 	}
1777 
1778 	switch (adev->asic_type) {
1779 #ifdef CONFIG_DRM_AMDGPU_SI
1780 	case CHIP_VERDE:
1781 	case CHIP_TAHITI:
1782 	case CHIP_PITCAIRN:
1783 	case CHIP_OLAND:
1784 	case CHIP_HAINAN:
1785 #endif
1786 #ifdef CONFIG_DRM_AMDGPU_CIK
1787 	case CHIP_BONAIRE:
1788 	case CHIP_HAWAII:
1789 	case CHIP_KAVERI:
1790 	case CHIP_KABINI:
1791 	case CHIP_MULLINS:
1792 #endif
1793 	case CHIP_TOPAZ:
1794 	case CHIP_TONGA:
1795 	case CHIP_FIJI:
1796 	case CHIP_POLARIS10:
1797 	case CHIP_POLARIS11:
1798 	case CHIP_POLARIS12:
1799 	case CHIP_VEGAM:
1800 	case CHIP_CARRIZO:
1801 	case CHIP_STONEY:
1802 	case CHIP_VEGA20:
1803 	case CHIP_SIENNA_CICHLID:
1804 	case CHIP_NAVY_FLOUNDER:
1805 	case CHIP_DIMGREY_CAVEFISH:
1806 	default:
1807 		return 0;
1808 	case CHIP_VEGA10:
1809 		chip_name = "vega10";
1810 		break;
1811 	case CHIP_VEGA12:
1812 		chip_name = "vega12";
1813 		break;
1814 	case CHIP_RAVEN:
1815 		if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1816 			chip_name = "raven2";
1817 		else if (adev->apu_flags & AMD_APU_IS_PICASSO)
1818 			chip_name = "picasso";
1819 		else
1820 			chip_name = "raven";
1821 		break;
1822 	case CHIP_ARCTURUS:
1823 		chip_name = "arcturus";
1824 		break;
1825 	case CHIP_RENOIR:
1826 		if (adev->apu_flags & AMD_APU_IS_RENOIR)
1827 			chip_name = "renoir";
1828 		else
1829 			chip_name = "green_sardine";
1830 		break;
1831 	case CHIP_NAVI10:
1832 		chip_name = "navi10";
1833 		break;
1834 	case CHIP_NAVI14:
1835 		chip_name = "navi14";
1836 		break;
1837 	case CHIP_NAVI12:
1838 		chip_name = "navi12";
1839 		break;
1840 	case CHIP_VANGOGH:
1841 		chip_name = "vangogh";
1842 		break;
1843 	}
1844 
1845 	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
1846 	err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
1847 	if (err) {
1848 		dev_err(adev->dev,
1849 			"Failed to load gpu_info firmware \"%s\"\n",
1850 			fw_name);
1851 		goto out;
1852 	}
1853 	err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
1854 	if (err) {
1855 		dev_err(adev->dev,
1856 			"Failed to validate gpu_info firmware \"%s\"\n",
1857 			fw_name);
1858 		goto out;
1859 	}
1860 
1861 	hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
1862 	amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1863 
1864 	switch (hdr->version_major) {
1865 	case 1:
1866 	{
1867 		const struct gpu_info_firmware_v1_0 *gpu_info_fw =
1868 			(const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
1869 								le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1870 
1871 		/*
1872 		 * Should be droped when DAL no longer needs it.
1873 		 */
1874 		if (adev->asic_type == CHIP_NAVI12)
1875 			goto parse_soc_bounding_box;
1876 
1877 		adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1878 		adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1879 		adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1880 		adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
1881 		adev->gfx.config.max_texture_channel_caches =
1882 			le32_to_cpu(gpu_info_fw->gc_num_tccs);
1883 		adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1884 		adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1885 		adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1886 		adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
1887 		adev->gfx.config.double_offchip_lds_buf =
1888 			le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1889 		adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
1890 		adev->gfx.cu_info.max_waves_per_simd =
1891 			le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1892 		adev->gfx.cu_info.max_scratch_slots_per_cu =
1893 			le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1894 		adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
1895 		if (hdr->version_minor >= 1) {
1896 			const struct gpu_info_firmware_v1_1 *gpu_info_fw =
1897 				(const struct gpu_info_firmware_v1_1 *)(adev->firmware.gpu_info_fw->data +
1898 									le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1899 			adev->gfx.config.num_sc_per_sh =
1900 				le32_to_cpu(gpu_info_fw->num_sc_per_sh);
1901 			adev->gfx.config.num_packer_per_sc =
1902 				le32_to_cpu(gpu_info_fw->num_packer_per_sc);
1903 		}
1904 
1905 parse_soc_bounding_box:
1906 		/*
1907 		 * soc bounding box info is not integrated in disocovery table,
1908 		 * we always need to parse it from gpu info firmware if needed.
1909 		 */
1910 		if (hdr->version_minor == 2) {
1911 			const struct gpu_info_firmware_v1_2 *gpu_info_fw =
1912 				(const struct gpu_info_firmware_v1_2 *)(adev->firmware.gpu_info_fw->data +
1913 									le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1914 			adev->dm.soc_bounding_box = &gpu_info_fw->soc_bounding_box;
1915 		}
1916 		break;
1917 	}
1918 	default:
1919 		dev_err(adev->dev,
1920 			"Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1921 		err = -EINVAL;
1922 		goto out;
1923 	}
1924 out:
1925 	return err;
1926 }
1927 
1928 /**
1929  * amdgpu_device_ip_early_init - run early init for hardware IPs
1930  *
1931  * @adev: amdgpu_device pointer
1932  *
1933  * Early initialization pass for hardware IPs.  The hardware IPs that make
1934  * up each asic are discovered each IP's early_init callback is run.  This
1935  * is the first stage in initializing the asic.
1936  * Returns 0 on success, negative error code on failure.
1937  */
1938 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
1939 {
1940 	int i, r;
1941 
1942 	amdgpu_device_enable_virtual_display(adev);
1943 
1944 	if (amdgpu_sriov_vf(adev)) {
1945 		r = amdgpu_virt_request_full_gpu(adev, true);
1946 		if (r)
1947 			return r;
1948 	}
1949 
1950 	switch (adev->asic_type) {
1951 #ifdef CONFIG_DRM_AMDGPU_SI
1952 	case CHIP_VERDE:
1953 	case CHIP_TAHITI:
1954 	case CHIP_PITCAIRN:
1955 	case CHIP_OLAND:
1956 	case CHIP_HAINAN:
1957 		adev->family = AMDGPU_FAMILY_SI;
1958 		r = si_set_ip_blocks(adev);
1959 		if (r)
1960 			return r;
1961 		break;
1962 #endif
1963 #ifdef CONFIG_DRM_AMDGPU_CIK
1964 	case CHIP_BONAIRE:
1965 	case CHIP_HAWAII:
1966 	case CHIP_KAVERI:
1967 	case CHIP_KABINI:
1968 	case CHIP_MULLINS:
1969 		if (adev->flags & AMD_IS_APU)
1970 			adev->family = AMDGPU_FAMILY_KV;
1971 		else
1972 			adev->family = AMDGPU_FAMILY_CI;
1973 
1974 		r = cik_set_ip_blocks(adev);
1975 		if (r)
1976 			return r;
1977 		break;
1978 #endif
1979 	case CHIP_TOPAZ:
1980 	case CHIP_TONGA:
1981 	case CHIP_FIJI:
1982 	case CHIP_POLARIS10:
1983 	case CHIP_POLARIS11:
1984 	case CHIP_POLARIS12:
1985 	case CHIP_VEGAM:
1986 	case CHIP_CARRIZO:
1987 	case CHIP_STONEY:
1988 		if (adev->flags & AMD_IS_APU)
1989 			adev->family = AMDGPU_FAMILY_CZ;
1990 		else
1991 			adev->family = AMDGPU_FAMILY_VI;
1992 
1993 		r = vi_set_ip_blocks(adev);
1994 		if (r)
1995 			return r;
1996 		break;
1997 	case CHIP_VEGA10:
1998 	case CHIP_VEGA12:
1999 	case CHIP_VEGA20:
2000 	case CHIP_RAVEN:
2001 	case CHIP_ARCTURUS:
2002 	case CHIP_RENOIR:
2003 		if (adev->flags & AMD_IS_APU)
2004 			adev->family = AMDGPU_FAMILY_RV;
2005 		else
2006 			adev->family = AMDGPU_FAMILY_AI;
2007 
2008 		r = soc15_set_ip_blocks(adev);
2009 		if (r)
2010 			return r;
2011 		break;
2012 	case  CHIP_NAVI10:
2013 	case  CHIP_NAVI14:
2014 	case  CHIP_NAVI12:
2015 	case  CHIP_SIENNA_CICHLID:
2016 	case  CHIP_NAVY_FLOUNDER:
2017 	case  CHIP_DIMGREY_CAVEFISH:
2018 	case CHIP_VANGOGH:
2019 		if (adev->asic_type == CHIP_VANGOGH)
2020 			adev->family = AMDGPU_FAMILY_VGH;
2021 		else
2022 			adev->family = AMDGPU_FAMILY_NV;
2023 
2024 		r = nv_set_ip_blocks(adev);
2025 		if (r)
2026 			return r;
2027 		break;
2028 	default:
2029 		/* FIXME: not supported yet */
2030 		return -EINVAL;
2031 	}
2032 
2033 	amdgpu_amdkfd_device_probe(adev);
2034 
2035 	adev->pm.pp_feature = amdgpu_pp_feature_mask;
2036 	if (amdgpu_sriov_vf(adev) || sched_policy == KFD_SCHED_POLICY_NO_HWS)
2037 		adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
2038 
2039 	for (i = 0; i < adev->num_ip_blocks; i++) {
2040 		if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
2041 			DRM_ERROR("disabled ip block: %d <%s>\n",
2042 				  i, adev->ip_blocks[i].version->funcs->name);
2043 			adev->ip_blocks[i].status.valid = false;
2044 		} else {
2045 			if (adev->ip_blocks[i].version->funcs->early_init) {
2046 				r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
2047 				if (r == -ENOENT) {
2048 					adev->ip_blocks[i].status.valid = false;
2049 				} else if (r) {
2050 					DRM_ERROR("early_init of IP block <%s> failed %d\n",
2051 						  adev->ip_blocks[i].version->funcs->name, r);
2052 					return r;
2053 				} else {
2054 					adev->ip_blocks[i].status.valid = true;
2055 				}
2056 			} else {
2057 				adev->ip_blocks[i].status.valid = true;
2058 			}
2059 		}
2060 		/* get the vbios after the asic_funcs are set up */
2061 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) {
2062 			r = amdgpu_device_parse_gpu_info_fw(adev);
2063 			if (r)
2064 				return r;
2065 
2066 			/* Read BIOS */
2067 			if (!amdgpu_get_bios(adev))
2068 				return -EINVAL;
2069 
2070 			r = amdgpu_atombios_init(adev);
2071 			if (r) {
2072 				dev_err(adev->dev, "amdgpu_atombios_init failed\n");
2073 				amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
2074 				return r;
2075 			}
2076 		}
2077 	}
2078 
2079 	adev->cg_flags &= amdgpu_cg_mask;
2080 	adev->pg_flags &= amdgpu_pg_mask;
2081 
2082 	return 0;
2083 }
2084 
2085 static int amdgpu_device_ip_hw_init_phase1(struct amdgpu_device *adev)
2086 {
2087 	int i, r;
2088 
2089 	for (i = 0; i < adev->num_ip_blocks; i++) {
2090 		if (!adev->ip_blocks[i].status.sw)
2091 			continue;
2092 		if (adev->ip_blocks[i].status.hw)
2093 			continue;
2094 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2095 		    (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
2096 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2097 			r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2098 			if (r) {
2099 				DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2100 					  adev->ip_blocks[i].version->funcs->name, r);
2101 				return r;
2102 			}
2103 			adev->ip_blocks[i].status.hw = true;
2104 		}
2105 	}
2106 
2107 	return 0;
2108 }
2109 
2110 static int amdgpu_device_ip_hw_init_phase2(struct amdgpu_device *adev)
2111 {
2112 	int i, r;
2113 
2114 	for (i = 0; i < adev->num_ip_blocks; i++) {
2115 		if (!adev->ip_blocks[i].status.sw)
2116 			continue;
2117 		if (adev->ip_blocks[i].status.hw)
2118 			continue;
2119 		r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2120 		if (r) {
2121 			DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2122 				  adev->ip_blocks[i].version->funcs->name, r);
2123 			return r;
2124 		}
2125 		adev->ip_blocks[i].status.hw = true;
2126 	}
2127 
2128 	return 0;
2129 }
2130 
2131 static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
2132 {
2133 	int r = 0;
2134 	int i;
2135 	uint32_t smu_version;
2136 
2137 	if (adev->asic_type >= CHIP_VEGA10) {
2138 		for (i = 0; i < adev->num_ip_blocks; i++) {
2139 			if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_PSP)
2140 				continue;
2141 
2142 			/* no need to do the fw loading again if already done*/
2143 			if (adev->ip_blocks[i].status.hw == true)
2144 				break;
2145 
2146 			if (amdgpu_in_reset(adev) || adev->in_suspend) {
2147 				r = adev->ip_blocks[i].version->funcs->resume(adev);
2148 				if (r) {
2149 					DRM_ERROR("resume of IP block <%s> failed %d\n",
2150 							  adev->ip_blocks[i].version->funcs->name, r);
2151 					return r;
2152 				}
2153 			} else {
2154 				r = adev->ip_blocks[i].version->funcs->hw_init(adev);
2155 				if (r) {
2156 					DRM_ERROR("hw_init of IP block <%s> failed %d\n",
2157 							  adev->ip_blocks[i].version->funcs->name, r);
2158 					return r;
2159 				}
2160 			}
2161 
2162 			adev->ip_blocks[i].status.hw = true;
2163 			break;
2164 		}
2165 	}
2166 
2167 	if (!amdgpu_sriov_vf(adev) || adev->asic_type == CHIP_TONGA)
2168 		r = amdgpu_pm_load_smu_firmware(adev, &smu_version);
2169 
2170 	return r;
2171 }
2172 
2173 /**
2174  * amdgpu_device_ip_init - run init for hardware IPs
2175  *
2176  * @adev: amdgpu_device pointer
2177  *
2178  * Main initialization pass for hardware IPs.  The list of all the hardware
2179  * IPs that make up the asic is walked and the sw_init and hw_init callbacks
2180  * are run.  sw_init initializes the software state associated with each IP
2181  * and hw_init initializes the hardware associated with each IP.
2182  * Returns 0 on success, negative error code on failure.
2183  */
2184 static int amdgpu_device_ip_init(struct amdgpu_device *adev)
2185 {
2186 	int i, r;
2187 
2188 	r = amdgpu_ras_init(adev);
2189 	if (r)
2190 		return r;
2191 
2192 	for (i = 0; i < adev->num_ip_blocks; i++) {
2193 		if (!adev->ip_blocks[i].status.valid)
2194 			continue;
2195 		r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
2196 		if (r) {
2197 			DRM_ERROR("sw_init of IP block <%s> failed %d\n",
2198 				  adev->ip_blocks[i].version->funcs->name, r);
2199 			goto init_failed;
2200 		}
2201 		adev->ip_blocks[i].status.sw = true;
2202 
2203 		/* need to do gmc hw init early so we can allocate gpu mem */
2204 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2205 			r = amdgpu_device_vram_scratch_init(adev);
2206 			if (r) {
2207 				DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
2208 				goto init_failed;
2209 			}
2210 			r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
2211 			if (r) {
2212 				DRM_ERROR("hw_init %d failed %d\n", i, r);
2213 				goto init_failed;
2214 			}
2215 			r = amdgpu_device_wb_init(adev);
2216 			if (r) {
2217 				DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
2218 				goto init_failed;
2219 			}
2220 			adev->ip_blocks[i].status.hw = true;
2221 
2222 			/* right after GMC hw init, we create CSA */
2223 			if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
2224 				r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
2225 								AMDGPU_GEM_DOMAIN_VRAM,
2226 								AMDGPU_CSA_SIZE);
2227 				if (r) {
2228 					DRM_ERROR("allocate CSA failed %d\n", r);
2229 					goto init_failed;
2230 				}
2231 			}
2232 		}
2233 	}
2234 
2235 	if (amdgpu_sriov_vf(adev))
2236 		amdgpu_virt_init_data_exchange(adev);
2237 
2238 	r = amdgpu_ib_pool_init(adev);
2239 	if (r) {
2240 		dev_err(adev->dev, "IB initialization failed (%d).\n", r);
2241 		amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
2242 		goto init_failed;
2243 	}
2244 
2245 	r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
2246 	if (r)
2247 		goto init_failed;
2248 
2249 	r = amdgpu_device_ip_hw_init_phase1(adev);
2250 	if (r)
2251 		goto init_failed;
2252 
2253 	r = amdgpu_device_fw_loading(adev);
2254 	if (r)
2255 		goto init_failed;
2256 
2257 	r = amdgpu_device_ip_hw_init_phase2(adev);
2258 	if (r)
2259 		goto init_failed;
2260 
2261 	/*
2262 	 * retired pages will be loaded from eeprom and reserved here,
2263 	 * it should be called after amdgpu_device_ip_hw_init_phase2  since
2264 	 * for some ASICs the RAS EEPROM code relies on SMU fully functioning
2265 	 * for I2C communication which only true at this point.
2266 	 *
2267 	 * amdgpu_ras_recovery_init may fail, but the upper only cares the
2268 	 * failure from bad gpu situation and stop amdgpu init process
2269 	 * accordingly. For other failed cases, it will still release all
2270 	 * the resource and print error message, rather than returning one
2271 	 * negative value to upper level.
2272 	 *
2273 	 * Note: theoretically, this should be called before all vram allocations
2274 	 * to protect retired page from abusing
2275 	 */
2276 	r = amdgpu_ras_recovery_init(adev);
2277 	if (r)
2278 		goto init_failed;
2279 
2280 	if (adev->gmc.xgmi.num_physical_nodes > 1)
2281 		amdgpu_xgmi_add_device(adev);
2282 	amdgpu_amdkfd_device_init(adev);
2283 
2284 	amdgpu_fru_get_product_info(adev);
2285 
2286 init_failed:
2287 	if (amdgpu_sriov_vf(adev))
2288 		amdgpu_virt_release_full_gpu(adev, true);
2289 
2290 	return r;
2291 }
2292 
2293 /**
2294  * amdgpu_device_fill_reset_magic - writes reset magic to gart pointer
2295  *
2296  * @adev: amdgpu_device pointer
2297  *
2298  * Writes a reset magic value to the gart pointer in VRAM.  The driver calls
2299  * this function before a GPU reset.  If the value is retained after a
2300  * GPU reset, VRAM has not been lost.  Some GPU resets may destry VRAM contents.
2301  */
2302 static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
2303 {
2304 	memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
2305 }
2306 
2307 /**
2308  * amdgpu_device_check_vram_lost - check if vram is valid
2309  *
2310  * @adev: amdgpu_device pointer
2311  *
2312  * Checks the reset magic value written to the gart pointer in VRAM.
2313  * The driver calls this after a GPU reset to see if the contents of
2314  * VRAM is lost or now.
2315  * returns true if vram is lost, false if not.
2316  */
2317 static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
2318 {
2319 	if (memcmp(adev->gart.ptr, adev->reset_magic,
2320 			AMDGPU_RESET_MAGIC_NUM))
2321 		return true;
2322 
2323 	if (!amdgpu_in_reset(adev))
2324 		return false;
2325 
2326 	/*
2327 	 * For all ASICs with baco/mode1 reset, the VRAM is
2328 	 * always assumed to be lost.
2329 	 */
2330 	switch (amdgpu_asic_reset_method(adev)) {
2331 	case AMD_RESET_METHOD_BACO:
2332 	case AMD_RESET_METHOD_MODE1:
2333 		return true;
2334 	default:
2335 		return false;
2336 	}
2337 }
2338 
2339 /**
2340  * amdgpu_device_set_cg_state - set clockgating for amdgpu device
2341  *
2342  * @adev: amdgpu_device pointer
2343  * @state: clockgating state (gate or ungate)
2344  *
2345  * The list of all the hardware IPs that make up the asic is walked and the
2346  * set_clockgating_state callbacks are run.
2347  * Late initialization pass enabling clockgating for hardware IPs.
2348  * Fini or suspend, pass disabling clockgating for hardware IPs.
2349  * Returns 0 on success, negative error code on failure.
2350  */
2351 
2352 static int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
2353 						enum amd_clockgating_state state)
2354 {
2355 	int i, j, r;
2356 
2357 	if (amdgpu_emu_mode == 1)
2358 		return 0;
2359 
2360 	for (j = 0; j < adev->num_ip_blocks; j++) {
2361 		i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2362 		if (!adev->ip_blocks[i].status.late_initialized)
2363 			continue;
2364 		/* skip CG for VCE/UVD, it's handled specially */
2365 		if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2366 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2367 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2368 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2369 		    adev->ip_blocks[i].version->funcs->set_clockgating_state) {
2370 			/* enable clockgating to save power */
2371 			r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
2372 										     state);
2373 			if (r) {
2374 				DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
2375 					  adev->ip_blocks[i].version->funcs->name, r);
2376 				return r;
2377 			}
2378 		}
2379 	}
2380 
2381 	return 0;
2382 }
2383 
2384 static int amdgpu_device_set_pg_state(struct amdgpu_device *adev, enum amd_powergating_state state)
2385 {
2386 	int i, j, r;
2387 
2388 	if (amdgpu_emu_mode == 1)
2389 		return 0;
2390 
2391 	for (j = 0; j < adev->num_ip_blocks; j++) {
2392 		i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
2393 		if (!adev->ip_blocks[i].status.late_initialized)
2394 			continue;
2395 		/* skip CG for VCE/UVD, it's handled specially */
2396 		if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
2397 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
2398 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
2399 		    adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
2400 		    adev->ip_blocks[i].version->funcs->set_powergating_state) {
2401 			/* enable powergating to save power */
2402 			r = adev->ip_blocks[i].version->funcs->set_powergating_state((void *)adev,
2403 											state);
2404 			if (r) {
2405 				DRM_ERROR("set_powergating_state(gate) of IP block <%s> failed %d\n",
2406 					  adev->ip_blocks[i].version->funcs->name, r);
2407 				return r;
2408 			}
2409 		}
2410 	}
2411 	return 0;
2412 }
2413 
2414 static int amdgpu_device_enable_mgpu_fan_boost(void)
2415 {
2416 	struct amdgpu_gpu_instance *gpu_ins;
2417 	struct amdgpu_device *adev;
2418 	int i, ret = 0;
2419 
2420 	mutex_lock(&mgpu_info.mutex);
2421 
2422 	/*
2423 	 * MGPU fan boost feature should be enabled
2424 	 * only when there are two or more dGPUs in
2425 	 * the system
2426 	 */
2427 	if (mgpu_info.num_dgpu < 2)
2428 		goto out;
2429 
2430 	for (i = 0; i < mgpu_info.num_dgpu; i++) {
2431 		gpu_ins = &(mgpu_info.gpu_ins[i]);
2432 		adev = gpu_ins->adev;
2433 		if (!(adev->flags & AMD_IS_APU) &&
2434 		    !gpu_ins->mgpu_fan_enabled) {
2435 			ret = amdgpu_dpm_enable_mgpu_fan_boost(adev);
2436 			if (ret)
2437 				break;
2438 
2439 			gpu_ins->mgpu_fan_enabled = 1;
2440 		}
2441 	}
2442 
2443 out:
2444 	mutex_unlock(&mgpu_info.mutex);
2445 
2446 	return ret;
2447 }
2448 
2449 /**
2450  * amdgpu_device_ip_late_init - run late init for hardware IPs
2451  *
2452  * @adev: amdgpu_device pointer
2453  *
2454  * Late initialization pass for hardware IPs.  The list of all the hardware
2455  * IPs that make up the asic is walked and the late_init callbacks are run.
2456  * late_init covers any special initialization that an IP requires
2457  * after all of the have been initialized or something that needs to happen
2458  * late in the init process.
2459  * Returns 0 on success, negative error code on failure.
2460  */
2461 static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
2462 {
2463 	struct amdgpu_gpu_instance *gpu_instance;
2464 	int i = 0, r;
2465 
2466 	for (i = 0; i < adev->num_ip_blocks; i++) {
2467 		if (!adev->ip_blocks[i].status.hw)
2468 			continue;
2469 		if (adev->ip_blocks[i].version->funcs->late_init) {
2470 			r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
2471 			if (r) {
2472 				DRM_ERROR("late_init of IP block <%s> failed %d\n",
2473 					  adev->ip_blocks[i].version->funcs->name, r);
2474 				return r;
2475 			}
2476 		}
2477 		adev->ip_blocks[i].status.late_initialized = true;
2478 	}
2479 
2480 	amdgpu_ras_set_error_query_ready(adev, true);
2481 
2482 	amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
2483 	amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
2484 
2485 	amdgpu_device_fill_reset_magic(adev);
2486 
2487 	r = amdgpu_device_enable_mgpu_fan_boost();
2488 	if (r)
2489 		DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
2490 
2491 
2492 	if (adev->gmc.xgmi.num_physical_nodes > 1) {
2493 		mutex_lock(&mgpu_info.mutex);
2494 
2495 		/*
2496 		 * Reset device p-state to low as this was booted with high.
2497 		 *
2498 		 * This should be performed only after all devices from the same
2499 		 * hive get initialized.
2500 		 *
2501 		 * However, it's unknown how many device in the hive in advance.
2502 		 * As this is counted one by one during devices initializations.
2503 		 *
2504 		 * So, we wait for all XGMI interlinked devices initialized.
2505 		 * This may bring some delays as those devices may come from
2506 		 * different hives. But that should be OK.
2507 		 */
2508 		if (mgpu_info.num_dgpu == adev->gmc.xgmi.num_physical_nodes) {
2509 			for (i = 0; i < mgpu_info.num_gpu; i++) {
2510 				gpu_instance = &(mgpu_info.gpu_ins[i]);
2511 				if (gpu_instance->adev->flags & AMD_IS_APU)
2512 					continue;
2513 
2514 				r = amdgpu_xgmi_set_pstate(gpu_instance->adev,
2515 						AMDGPU_XGMI_PSTATE_MIN);
2516 				if (r) {
2517 					DRM_ERROR("pstate setting failed (%d).\n", r);
2518 					break;
2519 				}
2520 			}
2521 		}
2522 
2523 		mutex_unlock(&mgpu_info.mutex);
2524 	}
2525 
2526 	return 0;
2527 }
2528 
2529 /**
2530  * amdgpu_device_ip_fini - run fini for hardware IPs
2531  *
2532  * @adev: amdgpu_device pointer
2533  *
2534  * Main teardown pass for hardware IPs.  The list of all the hardware
2535  * IPs that make up the asic is walked and the hw_fini and sw_fini callbacks
2536  * are run.  hw_fini tears down the hardware associated with each IP
2537  * and sw_fini tears down any software state associated with each IP.
2538  * Returns 0 on success, negative error code on failure.
2539  */
2540 static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
2541 {
2542 	int i, r;
2543 
2544 	if (amdgpu_sriov_vf(adev) && adev->virt.ras_init_done)
2545 		amdgpu_virt_release_ras_err_handler_data(adev);
2546 
2547 	amdgpu_ras_pre_fini(adev);
2548 
2549 	if (adev->gmc.xgmi.num_physical_nodes > 1)
2550 		amdgpu_xgmi_remove_device(adev);
2551 
2552 	amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2553 	amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2554 
2555 	amdgpu_amdkfd_device_fini(adev);
2556 
2557 	/* need to disable SMC first */
2558 	for (i = 0; i < adev->num_ip_blocks; i++) {
2559 		if (!adev->ip_blocks[i].status.hw)
2560 			continue;
2561 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2562 			r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2563 			/* XXX handle errors */
2564 			if (r) {
2565 				DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2566 					  adev->ip_blocks[i].version->funcs->name, r);
2567 			}
2568 			adev->ip_blocks[i].status.hw = false;
2569 			break;
2570 		}
2571 	}
2572 
2573 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2574 		if (!adev->ip_blocks[i].status.hw)
2575 			continue;
2576 
2577 		r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
2578 		/* XXX handle errors */
2579 		if (r) {
2580 			DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2581 				  adev->ip_blocks[i].version->funcs->name, r);
2582 		}
2583 
2584 		adev->ip_blocks[i].status.hw = false;
2585 	}
2586 
2587 
2588 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2589 		if (!adev->ip_blocks[i].status.sw)
2590 			continue;
2591 
2592 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
2593 			amdgpu_ucode_free_bo(adev);
2594 			amdgpu_free_static_csa(&adev->virt.csa_obj);
2595 			amdgpu_device_wb_fini(adev);
2596 			amdgpu_device_vram_scratch_fini(adev);
2597 			amdgpu_ib_pool_fini(adev);
2598 		}
2599 
2600 		r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
2601 		/* XXX handle errors */
2602 		if (r) {
2603 			DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
2604 				  adev->ip_blocks[i].version->funcs->name, r);
2605 		}
2606 		adev->ip_blocks[i].status.sw = false;
2607 		adev->ip_blocks[i].status.valid = false;
2608 	}
2609 
2610 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2611 		if (!adev->ip_blocks[i].status.late_initialized)
2612 			continue;
2613 		if (adev->ip_blocks[i].version->funcs->late_fini)
2614 			adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
2615 		adev->ip_blocks[i].status.late_initialized = false;
2616 	}
2617 
2618 	amdgpu_ras_fini(adev);
2619 
2620 	if (amdgpu_sriov_vf(adev))
2621 		if (amdgpu_virt_release_full_gpu(adev, false))
2622 			DRM_ERROR("failed to release exclusive mode on fini\n");
2623 
2624 	return 0;
2625 }
2626 
2627 /**
2628  * amdgpu_device_delayed_init_work_handler - work handler for IB tests
2629  *
2630  * @work: work_struct.
2631  */
2632 static void amdgpu_device_delayed_init_work_handler(struct work_struct *work)
2633 {
2634 	struct amdgpu_device *adev =
2635 		container_of(work, struct amdgpu_device, delayed_init_work.work);
2636 	int r;
2637 
2638 	r = amdgpu_ib_ring_tests(adev);
2639 	if (r)
2640 		DRM_ERROR("ib ring test failed (%d).\n", r);
2641 }
2642 
2643 static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)
2644 {
2645 	struct amdgpu_device *adev =
2646 		container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);
2647 
2648 	mutex_lock(&adev->gfx.gfx_off_mutex);
2649 	if (!adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {
2650 		if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))
2651 			adev->gfx.gfx_off_state = true;
2652 	}
2653 	mutex_unlock(&adev->gfx.gfx_off_mutex);
2654 }
2655 
2656 /**
2657  * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
2658  *
2659  * @adev: amdgpu_device pointer
2660  *
2661  * Main suspend function for hardware IPs.  The list of all the hardware
2662  * IPs that make up the asic is walked, clockgating is disabled and the
2663  * suspend callbacks are run.  suspend puts the hardware and software state
2664  * in each IP into a state suitable for suspend.
2665  * Returns 0 on success, negative error code on failure.
2666  */
2667 static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2668 {
2669 	int i, r;
2670 
2671 	if (!amdgpu_acpi_is_s0ix_supported(adev) || amdgpu_in_reset(adev)) {
2672 		amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2673 		amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2674 	}
2675 
2676 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2677 		if (!adev->ip_blocks[i].status.valid)
2678 			continue;
2679 
2680 		/* displays are handled separately */
2681 		if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_DCE)
2682 			continue;
2683 
2684 		/* XXX handle errors */
2685 		r = adev->ip_blocks[i].version->funcs->suspend(adev);
2686 		/* XXX handle errors */
2687 		if (r) {
2688 			DRM_ERROR("suspend of IP block <%s> failed %d\n",
2689 				  adev->ip_blocks[i].version->funcs->name, r);
2690 			return r;
2691 		}
2692 
2693 		adev->ip_blocks[i].status.hw = false;
2694 	}
2695 
2696 	return 0;
2697 }
2698 
2699 /**
2700  * amdgpu_device_ip_suspend_phase2 - run suspend for hardware IPs (phase 2)
2701  *
2702  * @adev: amdgpu_device pointer
2703  *
2704  * Main suspend function for hardware IPs.  The list of all the hardware
2705  * IPs that make up the asic is walked, clockgating is disabled and the
2706  * suspend callbacks are run.  suspend puts the hardware and software state
2707  * in each IP into a state suitable for suspend.
2708  * Returns 0 on success, negative error code on failure.
2709  */
2710 static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
2711 {
2712 	int i, r;
2713 
2714 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2715 		if (!adev->ip_blocks[i].status.valid)
2716 			continue;
2717 		/* displays are handled in phase1 */
2718 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2719 			continue;
2720 		/* PSP lost connection when err_event_athub occurs */
2721 		if (amdgpu_ras_intr_triggered() &&
2722 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
2723 			adev->ip_blocks[i].status.hw = false;
2724 			continue;
2725 		}
2726 		/* XXX handle errors */
2727 		r = adev->ip_blocks[i].version->funcs->suspend(adev);
2728 		/* XXX handle errors */
2729 		if (r) {
2730 			DRM_ERROR("suspend of IP block <%s> failed %d\n",
2731 				  adev->ip_blocks[i].version->funcs->name, r);
2732 		}
2733 		adev->ip_blocks[i].status.hw = false;
2734 		/* handle putting the SMC in the appropriate state */
2735 		if(!amdgpu_sriov_vf(adev)){
2736 			if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
2737 				r = amdgpu_dpm_set_mp1_state(adev, adev->mp1_state);
2738 				if (r) {
2739 					DRM_ERROR("SMC failed to set mp1 state %d, %d\n",
2740 							adev->mp1_state, r);
2741 					return r;
2742 				}
2743 			}
2744 		}
2745 		adev->ip_blocks[i].status.hw = false;
2746 	}
2747 
2748 	return 0;
2749 }
2750 
2751 /**
2752  * amdgpu_device_ip_suspend - run suspend for hardware IPs
2753  *
2754  * @adev: amdgpu_device pointer
2755  *
2756  * Main suspend function for hardware IPs.  The list of all the hardware
2757  * IPs that make up the asic is walked, clockgating is disabled and the
2758  * suspend callbacks are run.  suspend puts the hardware and software state
2759  * in each IP into a state suitable for suspend.
2760  * Returns 0 on success, negative error code on failure.
2761  */
2762 int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2763 {
2764 	int r;
2765 
2766 	if (amdgpu_sriov_vf(adev))
2767 		amdgpu_virt_request_full_gpu(adev, false);
2768 
2769 	r = amdgpu_device_ip_suspend_phase1(adev);
2770 	if (r)
2771 		return r;
2772 	r = amdgpu_device_ip_suspend_phase2(adev);
2773 
2774 	if (amdgpu_sriov_vf(adev))
2775 		amdgpu_virt_release_full_gpu(adev, false);
2776 
2777 	return r;
2778 }
2779 
2780 static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
2781 {
2782 	int i, r;
2783 
2784 	static enum amd_ip_block_type ip_order[] = {
2785 		AMD_IP_BLOCK_TYPE_GMC,
2786 		AMD_IP_BLOCK_TYPE_COMMON,
2787 		AMD_IP_BLOCK_TYPE_PSP,
2788 		AMD_IP_BLOCK_TYPE_IH,
2789 	};
2790 
2791 	for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2792 		int j;
2793 		struct amdgpu_ip_block *block;
2794 
2795 		block = &adev->ip_blocks[i];
2796 		block->status.hw = false;
2797 
2798 		for (j = 0; j < ARRAY_SIZE(ip_order); j++) {
2799 
2800 			if (block->version->type != ip_order[j] ||
2801 				!block->status.valid)
2802 				continue;
2803 
2804 			r = block->version->funcs->hw_init(adev);
2805 			DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2806 			if (r)
2807 				return r;
2808 			block->status.hw = true;
2809 		}
2810 	}
2811 
2812 	return 0;
2813 }
2814 
2815 static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
2816 {
2817 	int i, r;
2818 
2819 	static enum amd_ip_block_type ip_order[] = {
2820 		AMD_IP_BLOCK_TYPE_SMC,
2821 		AMD_IP_BLOCK_TYPE_DCE,
2822 		AMD_IP_BLOCK_TYPE_GFX,
2823 		AMD_IP_BLOCK_TYPE_SDMA,
2824 		AMD_IP_BLOCK_TYPE_UVD,
2825 		AMD_IP_BLOCK_TYPE_VCE,
2826 		AMD_IP_BLOCK_TYPE_VCN
2827 	};
2828 
2829 	for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2830 		int j;
2831 		struct amdgpu_ip_block *block;
2832 
2833 		for (j = 0; j < adev->num_ip_blocks; j++) {
2834 			block = &adev->ip_blocks[j];
2835 
2836 			if (block->version->type != ip_order[i] ||
2837 				!block->status.valid ||
2838 				block->status.hw)
2839 				continue;
2840 
2841 			if (block->version->type == AMD_IP_BLOCK_TYPE_SMC)
2842 				r = block->version->funcs->resume(adev);
2843 			else
2844 				r = block->version->funcs->hw_init(adev);
2845 
2846 			DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
2847 			if (r)
2848 				return r;
2849 			block->status.hw = true;
2850 		}
2851 	}
2852 
2853 	return 0;
2854 }
2855 
2856 /**
2857  * amdgpu_device_ip_resume_phase1 - run resume for hardware IPs
2858  *
2859  * @adev: amdgpu_device pointer
2860  *
2861  * First resume function for hardware IPs.  The list of all the hardware
2862  * IPs that make up the asic is walked and the resume callbacks are run for
2863  * COMMON, GMC, and IH.  resume puts the hardware into a functional state
2864  * after a suspend and updates the software state as necessary.  This
2865  * function is also used for restoring the GPU after a GPU reset.
2866  * Returns 0 on success, negative error code on failure.
2867  */
2868 static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
2869 {
2870 	int i, r;
2871 
2872 	for (i = 0; i < adev->num_ip_blocks; i++) {
2873 		if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
2874 			continue;
2875 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2876 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2877 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
2878 
2879 			r = adev->ip_blocks[i].version->funcs->resume(adev);
2880 			if (r) {
2881 				DRM_ERROR("resume of IP block <%s> failed %d\n",
2882 					  adev->ip_blocks[i].version->funcs->name, r);
2883 				return r;
2884 			}
2885 			adev->ip_blocks[i].status.hw = true;
2886 		}
2887 	}
2888 
2889 	return 0;
2890 }
2891 
2892 /**
2893  * amdgpu_device_ip_resume_phase2 - run resume for hardware IPs
2894  *
2895  * @adev: amdgpu_device pointer
2896  *
2897  * First resume function for hardware IPs.  The list of all the hardware
2898  * IPs that make up the asic is walked and the resume callbacks are run for
2899  * all blocks except COMMON, GMC, and IH.  resume puts the hardware into a
2900  * functional state after a suspend and updates the software state as
2901  * necessary.  This function is also used for restoring the GPU after a GPU
2902  * reset.
2903  * Returns 0 on success, negative error code on failure.
2904  */
2905 static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
2906 {
2907 	int i, r;
2908 
2909 	for (i = 0; i < adev->num_ip_blocks; i++) {
2910 		if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
2911 			continue;
2912 		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2913 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2914 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
2915 		    adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
2916 			continue;
2917 		r = adev->ip_blocks[i].version->funcs->resume(adev);
2918 		if (r) {
2919 			DRM_ERROR("resume of IP block <%s> failed %d\n",
2920 				  adev->ip_blocks[i].version->funcs->name, r);
2921 			return r;
2922 		}
2923 		adev->ip_blocks[i].status.hw = true;
2924 	}
2925 
2926 	return 0;
2927 }
2928 
2929 /**
2930  * amdgpu_device_ip_resume - run resume for hardware IPs
2931  *
2932  * @adev: amdgpu_device pointer
2933  *
2934  * Main resume function for hardware IPs.  The hardware IPs
2935  * are split into two resume functions because they are
2936  * are also used in in recovering from a GPU reset and some additional
2937  * steps need to be take between them.  In this case (S3/S4) they are
2938  * run sequentially.
2939  * Returns 0 on success, negative error code on failure.
2940  */
2941 static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
2942 {
2943 	int r;
2944 
2945 	r = amdgpu_device_ip_resume_phase1(adev);
2946 	if (r)
2947 		return r;
2948 
2949 	r = amdgpu_device_fw_loading(adev);
2950 	if (r)
2951 		return r;
2952 
2953 	r = amdgpu_device_ip_resume_phase2(adev);
2954 
2955 	return r;
2956 }
2957 
2958 /**
2959  * amdgpu_device_detect_sriov_bios - determine if the board supports SR-IOV
2960  *
2961  * @adev: amdgpu_device pointer
2962  *
2963  * Query the VBIOS data tables to determine if the board supports SR-IOV.
2964  */
2965 static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
2966 {
2967 	if (amdgpu_sriov_vf(adev)) {
2968 		if (adev->is_atom_fw) {
2969 			if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2970 				adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2971 		} else {
2972 			if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2973 				adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2974 		}
2975 
2976 		if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
2977 			amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
2978 	}
2979 }
2980 
2981 /**
2982  * amdgpu_device_asic_has_dc_support - determine if DC supports the asic
2983  *
2984  * @asic_type: AMD asic type
2985  *
2986  * Check if there is DC (new modesetting infrastructre) support for an asic.
2987  * returns true if DC has support, false if not.
2988  */
2989 bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2990 {
2991 	switch (asic_type) {
2992 #if defined(CONFIG_DRM_AMD_DC)
2993 #if defined(CONFIG_DRM_AMD_DC_SI)
2994 	case CHIP_TAHITI:
2995 	case CHIP_PITCAIRN:
2996 	case CHIP_VERDE:
2997 	case CHIP_OLAND:
2998 #endif
2999 	case CHIP_BONAIRE:
3000 	case CHIP_KAVERI:
3001 	case CHIP_KABINI:
3002 	case CHIP_MULLINS:
3003 		/*
3004 		 * We have systems in the wild with these ASICs that require
3005 		 * LVDS and VGA support which is not supported with DC.
3006 		 *
3007 		 * Fallback to the non-DC driver here by default so as not to
3008 		 * cause regressions.
3009 		 */
3010 		return amdgpu_dc > 0;
3011 	case CHIP_HAWAII:
3012 	case CHIP_CARRIZO:
3013 	case CHIP_STONEY:
3014 	case CHIP_POLARIS10:
3015 	case CHIP_POLARIS11:
3016 	case CHIP_POLARIS12:
3017 	case CHIP_VEGAM:
3018 	case CHIP_TONGA:
3019 	case CHIP_FIJI:
3020 	case CHIP_VEGA10:
3021 	case CHIP_VEGA12:
3022 	case CHIP_VEGA20:
3023 #if defined(CONFIG_DRM_AMD_DC_DCN)
3024 	case CHIP_RAVEN:
3025 	case CHIP_NAVI10:
3026 	case CHIP_NAVI14:
3027 	case CHIP_NAVI12:
3028 	case CHIP_RENOIR:
3029 	case CHIP_SIENNA_CICHLID:
3030 	case CHIP_NAVY_FLOUNDER:
3031 	case CHIP_DIMGREY_CAVEFISH:
3032 	case CHIP_VANGOGH:
3033 #endif
3034 		return amdgpu_dc != 0;
3035 #endif
3036 	default:
3037 		if (amdgpu_dc > 0)
3038 			DRM_INFO_ONCE("Display Core has been requested via kernel parameter "
3039 					 "but isn't supported by ASIC, ignoring\n");
3040 		return false;
3041 	}
3042 }
3043 
3044 /**
3045  * amdgpu_device_has_dc_support - check if dc is supported
3046  *
3047  * @adev: amdgpu_device pointer
3048  *
3049  * Returns true for supported, false for not supported
3050  */
3051 bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
3052 {
3053 	if (amdgpu_sriov_vf(adev) || adev->enable_virtual_display)
3054 		return false;
3055 
3056 	return amdgpu_device_asic_has_dc_support(adev->asic_type);
3057 }
3058 
3059 
3060 static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
3061 {
3062 	struct amdgpu_device *adev =
3063 		container_of(__work, struct amdgpu_device, xgmi_reset_work);
3064 	struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
3065 
3066 	/* It's a bug to not have a hive within this function */
3067 	if (WARN_ON(!hive))
3068 		return;
3069 
3070 	/*
3071 	 * Use task barrier to synchronize all xgmi reset works across the
3072 	 * hive. task_barrier_enter and task_barrier_exit will block
3073 	 * until all the threads running the xgmi reset works reach
3074 	 * those points. task_barrier_full will do both blocks.
3075 	 */
3076 	if (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) {
3077 
3078 		task_barrier_enter(&hive->tb);
3079 		adev->asic_reset_res = amdgpu_device_baco_enter(adev_to_drm(adev));
3080 
3081 		if (adev->asic_reset_res)
3082 			goto fail;
3083 
3084 		task_barrier_exit(&hive->tb);
3085 		adev->asic_reset_res = amdgpu_device_baco_exit(adev_to_drm(adev));
3086 
3087 		if (adev->asic_reset_res)
3088 			goto fail;
3089 
3090 		if (adev->mmhub.funcs && adev->mmhub.funcs->reset_ras_error_count)
3091 			adev->mmhub.funcs->reset_ras_error_count(adev);
3092 	} else {
3093 
3094 		task_barrier_full(&hive->tb);
3095 		adev->asic_reset_res =  amdgpu_asic_reset(adev);
3096 	}
3097 
3098 fail:
3099 	if (adev->asic_reset_res)
3100 		DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
3101 			 adev->asic_reset_res, adev_to_drm(adev)->unique);
3102 	amdgpu_put_xgmi_hive(hive);
3103 }
3104 
3105 static int amdgpu_device_get_job_timeout_settings(struct amdgpu_device *adev)
3106 {
3107 	char *input = amdgpu_lockup_timeout;
3108 	char *timeout_setting = NULL;
3109 	int index = 0;
3110 	long timeout;
3111 	int ret = 0;
3112 
3113 	/*
3114 	 * By default timeout for non compute jobs is 10000.
3115 	 * And there is no timeout enforced on compute jobs.
3116 	 * In SR-IOV or passthrough mode, timeout for compute
3117 	 * jobs are 60000 by default.
3118 	 */
3119 	adev->gfx_timeout = msecs_to_jiffies(10000);
3120 	adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
3121 	if (amdgpu_sriov_vf(adev))
3122 		adev->compute_timeout = amdgpu_sriov_is_pp_one_vf(adev) ?
3123 					msecs_to_jiffies(60000) : msecs_to_jiffies(10000);
3124 	else if (amdgpu_passthrough(adev))
3125 		adev->compute_timeout =  msecs_to_jiffies(60000);
3126 	else
3127 		adev->compute_timeout = MAX_SCHEDULE_TIMEOUT;
3128 
3129 	if (strnlen(input, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
3130 		while ((timeout_setting = strsep(&input, ",")) &&
3131 				strnlen(timeout_setting, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
3132 			ret = kstrtol(timeout_setting, 0, &timeout);
3133 			if (ret)
3134 				return ret;
3135 
3136 			if (timeout == 0) {
3137 				index++;
3138 				continue;
3139 			} else if (timeout < 0) {
3140 				timeout = MAX_SCHEDULE_TIMEOUT;
3141 			} else {
3142 				timeout = msecs_to_jiffies(timeout);
3143 			}
3144 
3145 			switch (index++) {
3146 			case 0:
3147 				adev->gfx_timeout = timeout;
3148 				break;
3149 			case 1:
3150 				adev->compute_timeout = timeout;
3151 				break;
3152 			case 2:
3153 				adev->sdma_timeout = timeout;
3154 				break;
3155 			case 3:
3156 				adev->video_timeout = timeout;
3157 				break;
3158 			default:
3159 				break;
3160 			}
3161 		}
3162 		/*
3163 		 * There is only one value specified and
3164 		 * it should apply to all non-compute jobs.
3165 		 */
3166 		if (index == 1) {
3167 			adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
3168 			if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev))
3169 				adev->compute_timeout = adev->gfx_timeout;
3170 		}
3171 	}
3172 
3173 	return ret;
3174 }
3175 
3176 static const struct attribute *amdgpu_dev_attributes[] = {
3177 	&dev_attr_product_name.attr,
3178 	&dev_attr_product_number.attr,
3179 	&dev_attr_serial_number.attr,
3180 	&dev_attr_pcie_replay_count.attr,
3181 	NULL
3182 };
3183 
3184 
3185 /**
3186  * amdgpu_device_init - initialize the driver
3187  *
3188  * @adev: amdgpu_device pointer
3189  * @flags: driver flags
3190  *
3191  * Initializes the driver info and hw (all asics).
3192  * Returns 0 for success or an error on failure.
3193  * Called at driver startup.
3194  */
3195 int amdgpu_device_init(struct amdgpu_device *adev,
3196 		       uint32_t flags)
3197 {
3198 	struct drm_device *ddev = adev_to_drm(adev);
3199 	struct pci_dev *pdev = adev->pdev;
3200 	int r, i;
3201 	bool atpx = false;
3202 	u32 max_MBps;
3203 
3204 	adev->shutdown = false;
3205 	adev->flags = flags;
3206 
3207 	if (amdgpu_force_asic_type >= 0 && amdgpu_force_asic_type < CHIP_LAST)
3208 		adev->asic_type = amdgpu_force_asic_type;
3209 	else
3210 		adev->asic_type = flags & AMD_ASIC_MASK;
3211 
3212 	adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
3213 	if (amdgpu_emu_mode == 1)
3214 		adev->usec_timeout *= 10;
3215 	adev->gmc.gart_size = 512 * 1024 * 1024;
3216 	adev->accel_working = false;
3217 	adev->num_rings = 0;
3218 	adev->mman.buffer_funcs = NULL;
3219 	adev->mman.buffer_funcs_ring = NULL;
3220 	adev->vm_manager.vm_pte_funcs = NULL;
3221 	adev->vm_manager.vm_pte_num_scheds = 0;
3222 	adev->gmc.gmc_funcs = NULL;
3223 	adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
3224 	bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
3225 
3226 	adev->smc_rreg = &amdgpu_invalid_rreg;
3227 	adev->smc_wreg = &amdgpu_invalid_wreg;
3228 	adev->pcie_rreg = &amdgpu_invalid_rreg;
3229 	adev->pcie_wreg = &amdgpu_invalid_wreg;
3230 	adev->pciep_rreg = &amdgpu_invalid_rreg;
3231 	adev->pciep_wreg = &amdgpu_invalid_wreg;
3232 	adev->pcie_rreg64 = &amdgpu_invalid_rreg64;
3233 	adev->pcie_wreg64 = &amdgpu_invalid_wreg64;
3234 	adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
3235 	adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
3236 	adev->didt_rreg = &amdgpu_invalid_rreg;
3237 	adev->didt_wreg = &amdgpu_invalid_wreg;
3238 	adev->gc_cac_rreg = &amdgpu_invalid_rreg;
3239 	adev->gc_cac_wreg = &amdgpu_invalid_wreg;
3240 	adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
3241 	adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
3242 
3243 	DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
3244 		 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
3245 		 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
3246 
3247 	/* mutex initialization are all done here so we
3248 	 * can recall function without having locking issues */
3249 	atomic_set(&adev->irq.ih.lock, 0);
3250 	mutex_init(&adev->firmware.mutex);
3251 	mutex_init(&adev->pm.mutex);
3252 	mutex_init(&adev->gfx.gpu_clock_mutex);
3253 	mutex_init(&adev->srbm_mutex);
3254 	mutex_init(&adev->gfx.pipe_reserve_mutex);
3255 	mutex_init(&adev->gfx.gfx_off_mutex);
3256 	mutex_init(&adev->grbm_idx_mutex);
3257 	mutex_init(&adev->mn_lock);
3258 	mutex_init(&adev->virt.vf_errors.lock);
3259 	hash_init(adev->mn_hash);
3260 	atomic_set(&adev->in_gpu_reset, 0);
3261 	init_rwsem(&adev->reset_sem);
3262 	mutex_init(&adev->psp.mutex);
3263 	mutex_init(&adev->notifier_lock);
3264 
3265 	r = amdgpu_device_check_arguments(adev);
3266 	if (r)
3267 		return r;
3268 
3269 	spin_lock_init(&adev->mmio_idx_lock);
3270 	spin_lock_init(&adev->smc_idx_lock);
3271 	spin_lock_init(&adev->pcie_idx_lock);
3272 	spin_lock_init(&adev->uvd_ctx_idx_lock);
3273 	spin_lock_init(&adev->didt_idx_lock);
3274 	spin_lock_init(&adev->gc_cac_idx_lock);
3275 	spin_lock_init(&adev->se_cac_idx_lock);
3276 	spin_lock_init(&adev->audio_endpt_idx_lock);
3277 	spin_lock_init(&adev->mm_stats.lock);
3278 
3279 	INIT_LIST_HEAD(&adev->shadow_list);
3280 	mutex_init(&adev->shadow_list_lock);
3281 
3282 	INIT_DELAYED_WORK(&adev->delayed_init_work,
3283 			  amdgpu_device_delayed_init_work_handler);
3284 	INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
3285 			  amdgpu_device_delay_enable_gfx_off);
3286 
3287 	INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
3288 
3289 	adev->gfx.gfx_off_req_count = 1;
3290 	adev->pm.ac_power = power_supply_is_system_supplied() > 0;
3291 
3292 	atomic_set(&adev->throttling_logging_enabled, 1);
3293 	/*
3294 	 * If throttling continues, logging will be performed every minute
3295 	 * to avoid log flooding. "-1" is subtracted since the thermal
3296 	 * throttling interrupt comes every second. Thus, the total logging
3297 	 * interval is 59 seconds(retelimited printk interval) + 1(waiting
3298 	 * for throttling interrupt) = 60 seconds.
3299 	 */
3300 	ratelimit_state_init(&adev->throttling_logging_rs, (60 - 1) * HZ, 1);
3301 	ratelimit_set_flags(&adev->throttling_logging_rs, RATELIMIT_MSG_ON_RELEASE);
3302 
3303 	/* Registers mapping */
3304 	/* TODO: block userspace mapping of io register */
3305 	if (adev->asic_type >= CHIP_BONAIRE) {
3306 		adev->rmmio_base = pci_resource_start(adev->pdev, 5);
3307 		adev->rmmio_size = pci_resource_len(adev->pdev, 5);
3308 	} else {
3309 		adev->rmmio_base = pci_resource_start(adev->pdev, 2);
3310 		adev->rmmio_size = pci_resource_len(adev->pdev, 2);
3311 	}
3312 
3313 	adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
3314 	if (adev->rmmio == NULL) {
3315 		return -ENOMEM;
3316 	}
3317 	DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
3318 	DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
3319 
3320 	/* io port mapping */
3321 	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
3322 		if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
3323 			adev->rio_mem_size = pci_resource_len(adev->pdev, i);
3324 			adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
3325 			break;
3326 		}
3327 	}
3328 	if (adev->rio_mem == NULL)
3329 		DRM_INFO("PCI I/O BAR is not found.\n");
3330 
3331 	/* enable PCIE atomic ops */
3332 	r = pci_enable_atomic_ops_to_root(adev->pdev,
3333 					  PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
3334 					  PCI_EXP_DEVCAP2_ATOMIC_COMP64);
3335 	if (r) {
3336 		adev->have_atomics_support = false;
3337 		DRM_INFO("PCIE atomic ops is not supported\n");
3338 	} else {
3339 		adev->have_atomics_support = true;
3340 	}
3341 
3342 	amdgpu_device_get_pcie_info(adev);
3343 
3344 	if (amdgpu_mcbp)
3345 		DRM_INFO("MCBP is enabled\n");
3346 
3347 	if (amdgpu_mes && adev->asic_type >= CHIP_NAVI10)
3348 		adev->enable_mes = true;
3349 
3350 	/* detect hw virtualization here */
3351 	amdgpu_detect_virtualization(adev);
3352 
3353 	r = amdgpu_device_get_job_timeout_settings(adev);
3354 	if (r) {
3355 		dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
3356 		goto failed_unmap;
3357 	}
3358 
3359 	/* early init functions */
3360 	r = amdgpu_device_ip_early_init(adev);
3361 	if (r)
3362 		goto failed_unmap;
3363 
3364 	/* doorbell bar mapping and doorbell index init*/
3365 	amdgpu_device_doorbell_init(adev);
3366 
3367 	/* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
3368 	/* this will fail for cards that aren't VGA class devices, just
3369 	 * ignore it */
3370 	if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3371 		vga_client_register(adev->pdev, adev, NULL, amdgpu_device_vga_set_decode);
3372 
3373 	if (amdgpu_device_supports_atpx(ddev))
3374 		atpx = true;
3375 	if (amdgpu_has_atpx() &&
3376 	    (amdgpu_is_atpx_hybrid() ||
3377 	     amdgpu_has_atpx_dgpu_power_cntl()) &&
3378 	    !pci_is_thunderbolt_attached(adev->pdev))
3379 		vga_switcheroo_register_client(adev->pdev,
3380 					       &amdgpu_switcheroo_ops, atpx);
3381 	if (atpx)
3382 		vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
3383 
3384 	if (amdgpu_emu_mode == 1) {
3385 		/* post the asic on emulation mode */
3386 		emu_soc_asic_init(adev);
3387 		goto fence_driver_init;
3388 	}
3389 
3390 	/* detect if we are with an SRIOV vbios */
3391 	amdgpu_device_detect_sriov_bios(adev);
3392 
3393 	/* check if we need to reset the asic
3394 	 *  E.g., driver was not cleanly unloaded previously, etc.
3395 	 */
3396 	if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
3397 		r = amdgpu_asic_reset(adev);
3398 		if (r) {
3399 			dev_err(adev->dev, "asic reset on init failed\n");
3400 			goto failed;
3401 		}
3402 	}
3403 
3404 	pci_enable_pcie_error_reporting(adev->pdev);
3405 
3406 	/* Post card if necessary */
3407 	if (amdgpu_device_need_post(adev)) {
3408 		if (!adev->bios) {
3409 			dev_err(adev->dev, "no vBIOS found\n");
3410 			r = -EINVAL;
3411 			goto failed;
3412 		}
3413 		DRM_INFO("GPU posting now...\n");
3414 		r = amdgpu_device_asic_init(adev);
3415 		if (r) {
3416 			dev_err(adev->dev, "gpu post error!\n");
3417 			goto failed;
3418 		}
3419 	}
3420 
3421 	if (adev->is_atom_fw) {
3422 		/* Initialize clocks */
3423 		r = amdgpu_atomfirmware_get_clock_info(adev);
3424 		if (r) {
3425 			dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
3426 			amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3427 			goto failed;
3428 		}
3429 	} else {
3430 		/* Initialize clocks */
3431 		r = amdgpu_atombios_get_clock_info(adev);
3432 		if (r) {
3433 			dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
3434 			amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
3435 			goto failed;
3436 		}
3437 		/* init i2c buses */
3438 		if (!amdgpu_device_has_dc_support(adev))
3439 			amdgpu_atombios_i2c_init(adev);
3440 	}
3441 
3442 fence_driver_init:
3443 	/* Fence driver */
3444 	r = amdgpu_fence_driver_init(adev);
3445 	if (r) {
3446 		dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
3447 		amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
3448 		goto failed;
3449 	}
3450 
3451 	/* init the mode config */
3452 	drm_mode_config_init(adev_to_drm(adev));
3453 
3454 	r = amdgpu_device_ip_init(adev);
3455 	if (r) {
3456 		/* failed in exclusive mode due to timeout */
3457 		if (amdgpu_sriov_vf(adev) &&
3458 		    !amdgpu_sriov_runtime(adev) &&
3459 		    amdgpu_virt_mmio_blocked(adev) &&
3460 		    !amdgpu_virt_wait_reset(adev)) {
3461 			dev_err(adev->dev, "VF exclusive mode timeout\n");
3462 			/* Don't send request since VF is inactive. */
3463 			adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
3464 			adev->virt.ops = NULL;
3465 			r = -EAGAIN;
3466 			goto failed;
3467 		}
3468 		dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
3469 		amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
3470 		goto failed;
3471 	}
3472 
3473 	dev_info(adev->dev,
3474 		"SE %d, SH per SE %d, CU per SH %d, active_cu_number %d\n",
3475 			adev->gfx.config.max_shader_engines,
3476 			adev->gfx.config.max_sh_per_se,
3477 			adev->gfx.config.max_cu_per_sh,
3478 			adev->gfx.cu_info.number);
3479 
3480 	adev->accel_working = true;
3481 
3482 	amdgpu_vm_check_compute_bug(adev);
3483 
3484 	/* Initialize the buffer migration limit. */
3485 	if (amdgpu_moverate >= 0)
3486 		max_MBps = amdgpu_moverate;
3487 	else
3488 		max_MBps = 8; /* Allow 8 MB/s. */
3489 	/* Get a log2 for easy divisions. */
3490 	adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
3491 
3492 	amdgpu_fbdev_init(adev);
3493 
3494 	r = amdgpu_pm_sysfs_init(adev);
3495 	if (r) {
3496 		adev->pm_sysfs_en = false;
3497 		DRM_ERROR("registering pm debugfs failed (%d).\n", r);
3498 	} else
3499 		adev->pm_sysfs_en = true;
3500 
3501 	r = amdgpu_ucode_sysfs_init(adev);
3502 	if (r) {
3503 		adev->ucode_sysfs_en = false;
3504 		DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
3505 	} else
3506 		adev->ucode_sysfs_en = true;
3507 
3508 	if ((amdgpu_testing & 1)) {
3509 		if (adev->accel_working)
3510 			amdgpu_test_moves(adev);
3511 		else
3512 			DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
3513 	}
3514 	if (amdgpu_benchmarking) {
3515 		if (adev->accel_working)
3516 			amdgpu_benchmark(adev, amdgpu_benchmarking);
3517 		else
3518 			DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
3519 	}
3520 
3521 	/*
3522 	 * Register gpu instance before amdgpu_device_enable_mgpu_fan_boost.
3523 	 * Otherwise the mgpu fan boost feature will be skipped due to the
3524 	 * gpu instance is counted less.
3525 	 */
3526 	amdgpu_register_gpu_instance(adev);
3527 
3528 	/* enable clockgating, etc. after ib tests, etc. since some blocks require
3529 	 * explicit gating rather than handling it automatically.
3530 	 */
3531 	r = amdgpu_device_ip_late_init(adev);
3532 	if (r) {
3533 		dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
3534 		amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
3535 		goto failed;
3536 	}
3537 
3538 	/* must succeed. */
3539 	amdgpu_ras_resume(adev);
3540 
3541 	queue_delayed_work(system_wq, &adev->delayed_init_work,
3542 			   msecs_to_jiffies(AMDGPU_RESUME_MS));
3543 
3544 	if (amdgpu_sriov_vf(adev))
3545 		flush_delayed_work(&adev->delayed_init_work);
3546 
3547 	r = sysfs_create_files(&adev->dev->kobj, amdgpu_dev_attributes);
3548 	if (r)
3549 		dev_err(adev->dev, "Could not create amdgpu device attr\n");
3550 
3551 	if (IS_ENABLED(CONFIG_PERF_EVENTS))
3552 		r = amdgpu_pmu_init(adev);
3553 	if (r)
3554 		dev_err(adev->dev, "amdgpu_pmu_init failed\n");
3555 
3556 	/* Have stored pci confspace at hand for restore in sudden PCI error */
3557 	if (amdgpu_device_cache_pci_state(adev->pdev))
3558 		pci_restore_state(pdev);
3559 
3560 	return 0;
3561 
3562 failed:
3563 	amdgpu_vf_error_trans_all(adev);
3564 	if (atpx)
3565 		vga_switcheroo_fini_domain_pm_ops(adev->dev);
3566 
3567 failed_unmap:
3568 	iounmap(adev->rmmio);
3569 	adev->rmmio = NULL;
3570 
3571 	return r;
3572 }
3573 
3574 /**
3575  * amdgpu_device_fini - tear down the driver
3576  *
3577  * @adev: amdgpu_device pointer
3578  *
3579  * Tear down the driver info (all asics).
3580  * Called at driver shutdown.
3581  */
3582 void amdgpu_device_fini(struct amdgpu_device *adev)
3583 {
3584 	dev_info(adev->dev, "amdgpu: finishing device.\n");
3585 	flush_delayed_work(&adev->delayed_init_work);
3586 	adev->shutdown = true;
3587 
3588 	kfree(adev->pci_state);
3589 
3590 	/* make sure IB test finished before entering exclusive mode
3591 	 * to avoid preemption on IB test
3592 	 * */
3593 	if (amdgpu_sriov_vf(adev)) {
3594 		amdgpu_virt_request_full_gpu(adev, false);
3595 		amdgpu_virt_fini_data_exchange(adev);
3596 	}
3597 
3598 	/* disable all interrupts */
3599 	amdgpu_irq_disable_all(adev);
3600 	if (adev->mode_info.mode_config_initialized){
3601 		if (!amdgpu_device_has_dc_support(adev))
3602 			drm_helper_force_disable_all(adev_to_drm(adev));
3603 		else
3604 			drm_atomic_helper_shutdown(adev_to_drm(adev));
3605 	}
3606 	amdgpu_fence_driver_fini(adev);
3607 	if (adev->pm_sysfs_en)
3608 		amdgpu_pm_sysfs_fini(adev);
3609 	amdgpu_fbdev_fini(adev);
3610 	amdgpu_device_ip_fini(adev);
3611 	release_firmware(adev->firmware.gpu_info_fw);
3612 	adev->firmware.gpu_info_fw = NULL;
3613 	adev->accel_working = false;
3614 	/* free i2c buses */
3615 	if (!amdgpu_device_has_dc_support(adev))
3616 		amdgpu_i2c_fini(adev);
3617 
3618 	if (amdgpu_emu_mode != 1)
3619 		amdgpu_atombios_fini(adev);
3620 
3621 	kfree(adev->bios);
3622 	adev->bios = NULL;
3623 	if (amdgpu_has_atpx() &&
3624 	    (amdgpu_is_atpx_hybrid() ||
3625 	     amdgpu_has_atpx_dgpu_power_cntl()) &&
3626 	    !pci_is_thunderbolt_attached(adev->pdev))
3627 		vga_switcheroo_unregister_client(adev->pdev);
3628 	if (amdgpu_device_supports_atpx(adev_to_drm(adev)))
3629 		vga_switcheroo_fini_domain_pm_ops(adev->dev);
3630 	if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3631 		vga_client_register(adev->pdev, NULL, NULL, NULL);
3632 	if (adev->rio_mem)
3633 		pci_iounmap(adev->pdev, adev->rio_mem);
3634 	adev->rio_mem = NULL;
3635 	iounmap(adev->rmmio);
3636 	adev->rmmio = NULL;
3637 	amdgpu_device_doorbell_fini(adev);
3638 
3639 	if (adev->ucode_sysfs_en)
3640 		amdgpu_ucode_sysfs_fini(adev);
3641 
3642 	sysfs_remove_files(&adev->dev->kobj, amdgpu_dev_attributes);
3643 	if (IS_ENABLED(CONFIG_PERF_EVENTS))
3644 		amdgpu_pmu_fini(adev);
3645 	if (adev->mman.discovery_bin)
3646 		amdgpu_discovery_fini(adev);
3647 }
3648 
3649 
3650 /*
3651  * Suspend & resume.
3652  */
3653 /**
3654  * amdgpu_device_suspend - initiate device suspend
3655  *
3656  * @dev: drm dev pointer
3657  * @fbcon : notify the fbdev of suspend
3658  *
3659  * Puts the hw in the suspend state (all asics).
3660  * Returns 0 for success or an error on failure.
3661  * Called at driver suspend.
3662  */
3663 int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
3664 {
3665 	struct amdgpu_device *adev;
3666 	struct drm_crtc *crtc;
3667 	struct drm_connector *connector;
3668 	struct drm_connector_list_iter iter;
3669 	int r;
3670 
3671 	adev = drm_to_adev(dev);
3672 
3673 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3674 		return 0;
3675 
3676 	adev->in_suspend = true;
3677 	drm_kms_helper_poll_disable(dev);
3678 
3679 	if (fbcon)
3680 		amdgpu_fbdev_set_suspend(adev, 1);
3681 
3682 	cancel_delayed_work_sync(&adev->delayed_init_work);
3683 
3684 	if (!amdgpu_device_has_dc_support(adev)) {
3685 		/* turn off display hw */
3686 		drm_modeset_lock_all(dev);
3687 		drm_connector_list_iter_begin(dev, &iter);
3688 		drm_for_each_connector_iter(connector, &iter)
3689 			drm_helper_connector_dpms(connector,
3690 						  DRM_MODE_DPMS_OFF);
3691 		drm_connector_list_iter_end(&iter);
3692 		drm_modeset_unlock_all(dev);
3693 			/* unpin the front buffers and cursors */
3694 		list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3695 			struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
3696 			struct drm_framebuffer *fb = crtc->primary->fb;
3697 			struct amdgpu_bo *robj;
3698 
3699 			if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
3700 				struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
3701 				r = amdgpu_bo_reserve(aobj, true);
3702 				if (r == 0) {
3703 					amdgpu_bo_unpin(aobj);
3704 					amdgpu_bo_unreserve(aobj);
3705 				}
3706 			}
3707 
3708 			if (fb == NULL || fb->obj[0] == NULL) {
3709 				continue;
3710 			}
3711 			robj = gem_to_amdgpu_bo(fb->obj[0]);
3712 			/* don't unpin kernel fb objects */
3713 			if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
3714 				r = amdgpu_bo_reserve(robj, true);
3715 				if (r == 0) {
3716 					amdgpu_bo_unpin(robj);
3717 					amdgpu_bo_unreserve(robj);
3718 				}
3719 			}
3720 		}
3721 	}
3722 
3723 	amdgpu_ras_suspend(adev);
3724 
3725 	r = amdgpu_device_ip_suspend_phase1(adev);
3726 
3727 	amdgpu_amdkfd_suspend(adev, !fbcon);
3728 
3729 	/* evict vram memory */
3730 	amdgpu_bo_evict_vram(adev);
3731 
3732 	amdgpu_fence_driver_suspend(adev);
3733 
3734 	if (!amdgpu_acpi_is_s0ix_supported(adev) || amdgpu_in_reset(adev))
3735 		r = amdgpu_device_ip_suspend_phase2(adev);
3736 	else
3737 		amdgpu_gfx_state_change_set(adev, sGpuChangeState_D3Entry);
3738 	/* evict remaining vram memory
3739 	 * This second call to evict vram is to evict the gart page table
3740 	 * using the CPU.
3741 	 */
3742 	amdgpu_bo_evict_vram(adev);
3743 
3744 	return 0;
3745 }
3746 
3747 /**
3748  * amdgpu_device_resume - initiate device resume
3749  *
3750  * @dev: drm dev pointer
3751  * @fbcon : notify the fbdev of resume
3752  *
3753  * Bring the hw back to operating state (all asics).
3754  * Returns 0 for success or an error on failure.
3755  * Called at driver resume.
3756  */
3757 int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
3758 {
3759 	struct drm_connector *connector;
3760 	struct drm_connector_list_iter iter;
3761 	struct amdgpu_device *adev = drm_to_adev(dev);
3762 	struct drm_crtc *crtc;
3763 	int r = 0;
3764 
3765 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3766 		return 0;
3767 
3768 	if (amdgpu_acpi_is_s0ix_supported(adev))
3769 		amdgpu_gfx_state_change_set(adev, sGpuChangeState_D0Entry);
3770 
3771 	/* post card */
3772 	if (amdgpu_device_need_post(adev)) {
3773 		r = amdgpu_device_asic_init(adev);
3774 		if (r)
3775 			dev_err(adev->dev, "amdgpu asic init failed\n");
3776 	}
3777 
3778 	r = amdgpu_device_ip_resume(adev);
3779 	if (r) {
3780 		dev_err(adev->dev, "amdgpu_device_ip_resume failed (%d).\n", r);
3781 		return r;
3782 	}
3783 	amdgpu_fence_driver_resume(adev);
3784 
3785 
3786 	r = amdgpu_device_ip_late_init(adev);
3787 	if (r)
3788 		return r;
3789 
3790 	queue_delayed_work(system_wq, &adev->delayed_init_work,
3791 			   msecs_to_jiffies(AMDGPU_RESUME_MS));
3792 
3793 	if (!amdgpu_device_has_dc_support(adev)) {
3794 		/* pin cursors */
3795 		list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3796 			struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
3797 
3798 			if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
3799 				struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
3800 				r = amdgpu_bo_reserve(aobj, true);
3801 				if (r == 0) {
3802 					r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
3803 					if (r != 0)
3804 						dev_err(adev->dev, "Failed to pin cursor BO (%d)\n", r);
3805 					amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
3806 					amdgpu_bo_unreserve(aobj);
3807 				}
3808 			}
3809 		}
3810 	}
3811 	r = amdgpu_amdkfd_resume(adev, !fbcon);
3812 	if (r)
3813 		return r;
3814 
3815 	/* Make sure IB tests flushed */
3816 	flush_delayed_work(&adev->delayed_init_work);
3817 
3818 	/* blat the mode back in */
3819 	if (fbcon) {
3820 		if (!amdgpu_device_has_dc_support(adev)) {
3821 			/* pre DCE11 */
3822 			drm_helper_resume_force_mode(dev);
3823 
3824 			/* turn on display hw */
3825 			drm_modeset_lock_all(dev);
3826 
3827 			drm_connector_list_iter_begin(dev, &iter);
3828 			drm_for_each_connector_iter(connector, &iter)
3829 				drm_helper_connector_dpms(connector,
3830 							  DRM_MODE_DPMS_ON);
3831 			drm_connector_list_iter_end(&iter);
3832 
3833 			drm_modeset_unlock_all(dev);
3834 		}
3835 		amdgpu_fbdev_set_suspend(adev, 0);
3836 	}
3837 
3838 	drm_kms_helper_poll_enable(dev);
3839 
3840 	amdgpu_ras_resume(adev);
3841 
3842 	/*
3843 	 * Most of the connector probing functions try to acquire runtime pm
3844 	 * refs to ensure that the GPU is powered on when connector polling is
3845 	 * performed. Since we're calling this from a runtime PM callback,
3846 	 * trying to acquire rpm refs will cause us to deadlock.
3847 	 *
3848 	 * Since we're guaranteed to be holding the rpm lock, it's safe to
3849 	 * temporarily disable the rpm helpers so this doesn't deadlock us.
3850 	 */
3851 #ifdef CONFIG_PM
3852 	dev->dev->power.disable_depth++;
3853 #endif
3854 	if (!amdgpu_device_has_dc_support(adev))
3855 		drm_helper_hpd_irq_event(dev);
3856 	else
3857 		drm_kms_helper_hotplug_event(dev);
3858 #ifdef CONFIG_PM
3859 	dev->dev->power.disable_depth--;
3860 #endif
3861 	adev->in_suspend = false;
3862 
3863 	return 0;
3864 }
3865 
3866 /**
3867  * amdgpu_device_ip_check_soft_reset - did soft reset succeed
3868  *
3869  * @adev: amdgpu_device pointer
3870  *
3871  * The list of all the hardware IPs that make up the asic is walked and
3872  * the check_soft_reset callbacks are run.  check_soft_reset determines
3873  * if the asic is still hung or not.
3874  * Returns true if any of the IPs are still in a hung state, false if not.
3875  */
3876 static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
3877 {
3878 	int i;
3879 	bool asic_hang = false;
3880 
3881 	if (amdgpu_sriov_vf(adev))
3882 		return true;
3883 
3884 	if (amdgpu_asic_need_full_reset(adev))
3885 		return true;
3886 
3887 	for (i = 0; i < adev->num_ip_blocks; i++) {
3888 		if (!adev->ip_blocks[i].status.valid)
3889 			continue;
3890 		if (adev->ip_blocks[i].version->funcs->check_soft_reset)
3891 			adev->ip_blocks[i].status.hang =
3892 				adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
3893 		if (adev->ip_blocks[i].status.hang) {
3894 			dev_info(adev->dev, "IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
3895 			asic_hang = true;
3896 		}
3897 	}
3898 	return asic_hang;
3899 }
3900 
3901 /**
3902  * amdgpu_device_ip_pre_soft_reset - prepare for soft reset
3903  *
3904  * @adev: amdgpu_device pointer
3905  *
3906  * The list of all the hardware IPs that make up the asic is walked and the
3907  * pre_soft_reset callbacks are run if the block is hung.  pre_soft_reset
3908  * handles any IP specific hardware or software state changes that are
3909  * necessary for a soft reset to succeed.
3910  * Returns 0 on success, negative error code on failure.
3911  */
3912 static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
3913 {
3914 	int i, r = 0;
3915 
3916 	for (i = 0; i < adev->num_ip_blocks; i++) {
3917 		if (!adev->ip_blocks[i].status.valid)
3918 			continue;
3919 		if (adev->ip_blocks[i].status.hang &&
3920 		    adev->ip_blocks[i].version->funcs->pre_soft_reset) {
3921 			r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
3922 			if (r)
3923 				return r;
3924 		}
3925 	}
3926 
3927 	return 0;
3928 }
3929 
3930 /**
3931  * amdgpu_device_ip_need_full_reset - check if a full asic reset is needed
3932  *
3933  * @adev: amdgpu_device pointer
3934  *
3935  * Some hardware IPs cannot be soft reset.  If they are hung, a full gpu
3936  * reset is necessary to recover.
3937  * Returns true if a full asic reset is required, false if not.
3938  */
3939 static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
3940 {
3941 	int i;
3942 
3943 	if (amdgpu_asic_need_full_reset(adev))
3944 		return true;
3945 
3946 	for (i = 0; i < adev->num_ip_blocks; i++) {
3947 		if (!adev->ip_blocks[i].status.valid)
3948 			continue;
3949 		if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
3950 		    (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
3951 		    (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
3952 		    (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
3953 		     adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
3954 			if (adev->ip_blocks[i].status.hang) {
3955 				dev_info(adev->dev, "Some block need full reset!\n");
3956 				return true;
3957 			}
3958 		}
3959 	}
3960 	return false;
3961 }
3962 
3963 /**
3964  * amdgpu_device_ip_soft_reset - do a soft reset
3965  *
3966  * @adev: amdgpu_device pointer
3967  *
3968  * The list of all the hardware IPs that make up the asic is walked and the
3969  * soft_reset callbacks are run if the block is hung.  soft_reset handles any
3970  * IP specific hardware or software state changes that are necessary to soft
3971  * reset the IP.
3972  * Returns 0 on success, negative error code on failure.
3973  */
3974 static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
3975 {
3976 	int i, r = 0;
3977 
3978 	for (i = 0; i < adev->num_ip_blocks; i++) {
3979 		if (!adev->ip_blocks[i].status.valid)
3980 			continue;
3981 		if (adev->ip_blocks[i].status.hang &&
3982 		    adev->ip_blocks[i].version->funcs->soft_reset) {
3983 			r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
3984 			if (r)
3985 				return r;
3986 		}
3987 	}
3988 
3989 	return 0;
3990 }
3991 
3992 /**
3993  * amdgpu_device_ip_post_soft_reset - clean up from soft reset
3994  *
3995  * @adev: amdgpu_device pointer
3996  *
3997  * The list of all the hardware IPs that make up the asic is walked and the
3998  * post_soft_reset callbacks are run if the asic was hung.  post_soft_reset
3999  * handles any IP specific hardware or software state changes that are
4000  * necessary after the IP has been soft reset.
4001  * Returns 0 on success, negative error code on failure.
4002  */
4003 static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
4004 {
4005 	int i, r = 0;
4006 
4007 	for (i = 0; i < adev->num_ip_blocks; i++) {
4008 		if (!adev->ip_blocks[i].status.valid)
4009 			continue;
4010 		if (adev->ip_blocks[i].status.hang &&
4011 		    adev->ip_blocks[i].version->funcs->post_soft_reset)
4012 			r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
4013 		if (r)
4014 			return r;
4015 	}
4016 
4017 	return 0;
4018 }
4019 
4020 /**
4021  * amdgpu_device_recover_vram - Recover some VRAM contents
4022  *
4023  * @adev: amdgpu_device pointer
4024  *
4025  * Restores the contents of VRAM buffers from the shadows in GTT.  Used to
4026  * restore things like GPUVM page tables after a GPU reset where
4027  * the contents of VRAM might be lost.
4028  *
4029  * Returns:
4030  * 0 on success, negative error code on failure.
4031  */
4032 static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
4033 {
4034 	struct dma_fence *fence = NULL, *next = NULL;
4035 	struct amdgpu_bo *shadow;
4036 	long r = 1, tmo;
4037 
4038 	if (amdgpu_sriov_runtime(adev))
4039 		tmo = msecs_to_jiffies(8000);
4040 	else
4041 		tmo = msecs_to_jiffies(100);
4042 
4043 	dev_info(adev->dev, "recover vram bo from shadow start\n");
4044 	mutex_lock(&adev->shadow_list_lock);
4045 	list_for_each_entry(shadow, &adev->shadow_list, shadow_list) {
4046 
4047 		/* No need to recover an evicted BO */
4048 		if (shadow->tbo.mem.mem_type != TTM_PL_TT ||
4049 		    shadow->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET ||
4050 		    shadow->parent->tbo.mem.mem_type != TTM_PL_VRAM)
4051 			continue;
4052 
4053 		r = amdgpu_bo_restore_shadow(shadow, &next);
4054 		if (r)
4055 			break;
4056 
4057 		if (fence) {
4058 			tmo = dma_fence_wait_timeout(fence, false, tmo);
4059 			dma_fence_put(fence);
4060 			fence = next;
4061 			if (tmo == 0) {
4062 				r = -ETIMEDOUT;
4063 				break;
4064 			} else if (tmo < 0) {
4065 				r = tmo;
4066 				break;
4067 			}
4068 		} else {
4069 			fence = next;
4070 		}
4071 	}
4072 	mutex_unlock(&adev->shadow_list_lock);
4073 
4074 	if (fence)
4075 		tmo = dma_fence_wait_timeout(fence, false, tmo);
4076 	dma_fence_put(fence);
4077 
4078 	if (r < 0 || tmo <= 0) {
4079 		dev_err(adev->dev, "recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
4080 		return -EIO;
4081 	}
4082 
4083 	dev_info(adev->dev, "recover vram bo from shadow done\n");
4084 	return 0;
4085 }
4086 
4087 
4088 /**
4089  * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
4090  *
4091  * @adev: amdgpu_device pointer
4092  * @from_hypervisor: request from hypervisor
4093  *
4094  * do VF FLR and reinitialize Asic
4095  * return 0 means succeeded otherwise failed
4096  */
4097 static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
4098 				     bool from_hypervisor)
4099 {
4100 	int r;
4101 
4102 	if (from_hypervisor)
4103 		r = amdgpu_virt_request_full_gpu(adev, true);
4104 	else
4105 		r = amdgpu_virt_reset_gpu(adev);
4106 	if (r)
4107 		return r;
4108 
4109 	amdgpu_amdkfd_pre_reset(adev);
4110 
4111 	/* Resume IP prior to SMC */
4112 	r = amdgpu_device_ip_reinit_early_sriov(adev);
4113 	if (r)
4114 		goto error;
4115 
4116 	amdgpu_virt_init_data_exchange(adev);
4117 	/* we need recover gart prior to run SMC/CP/SDMA resume */
4118 	amdgpu_gtt_mgr_recover(ttm_manager_type(&adev->mman.bdev, TTM_PL_TT));
4119 
4120 	r = amdgpu_device_fw_loading(adev);
4121 	if (r)
4122 		return r;
4123 
4124 	/* now we are okay to resume SMC/CP/SDMA */
4125 	r = amdgpu_device_ip_reinit_late_sriov(adev);
4126 	if (r)
4127 		goto error;
4128 
4129 	amdgpu_irq_gpu_reset_resume_helper(adev);
4130 	r = amdgpu_ib_ring_tests(adev);
4131 	amdgpu_amdkfd_post_reset(adev);
4132 
4133 error:
4134 	amdgpu_virt_release_full_gpu(adev, true);
4135 	if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
4136 		amdgpu_inc_vram_lost(adev);
4137 		r = amdgpu_device_recover_vram(adev);
4138 	}
4139 
4140 	return r;
4141 }
4142 
4143 /**
4144  * amdgpu_device_has_job_running - check if there is any job in mirror list
4145  *
4146  * @adev: amdgpu_device pointer
4147  *
4148  * check if there is any job in mirror list
4149  */
4150 bool amdgpu_device_has_job_running(struct amdgpu_device *adev)
4151 {
4152 	int i;
4153 	struct drm_sched_job *job;
4154 
4155 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4156 		struct amdgpu_ring *ring = adev->rings[i];
4157 
4158 		if (!ring || !ring->sched.thread)
4159 			continue;
4160 
4161 		spin_lock(&ring->sched.job_list_lock);
4162 		job = list_first_entry_or_null(&ring->sched.pending_list,
4163 					       struct drm_sched_job, list);
4164 		spin_unlock(&ring->sched.job_list_lock);
4165 		if (job)
4166 			return true;
4167 	}
4168 	return false;
4169 }
4170 
4171 /**
4172  * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
4173  *
4174  * @adev: amdgpu_device pointer
4175  *
4176  * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
4177  * a hung GPU.
4178  */
4179 bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
4180 {
4181 	if (!amdgpu_device_ip_check_soft_reset(adev)) {
4182 		dev_info(adev->dev, "Timeout, but no hardware hang detected.\n");
4183 		return false;
4184 	}
4185 
4186 	if (amdgpu_gpu_recovery == 0)
4187 		goto disabled;
4188 
4189 	if (amdgpu_sriov_vf(adev))
4190 		return true;
4191 
4192 	if (amdgpu_gpu_recovery == -1) {
4193 		switch (adev->asic_type) {
4194 		case CHIP_BONAIRE:
4195 		case CHIP_HAWAII:
4196 		case CHIP_TOPAZ:
4197 		case CHIP_TONGA:
4198 		case CHIP_FIJI:
4199 		case CHIP_POLARIS10:
4200 		case CHIP_POLARIS11:
4201 		case CHIP_POLARIS12:
4202 		case CHIP_VEGAM:
4203 		case CHIP_VEGA20:
4204 		case CHIP_VEGA10:
4205 		case CHIP_VEGA12:
4206 		case CHIP_RAVEN:
4207 		case CHIP_ARCTURUS:
4208 		case CHIP_RENOIR:
4209 		case CHIP_NAVI10:
4210 		case CHIP_NAVI14:
4211 		case CHIP_NAVI12:
4212 		case CHIP_SIENNA_CICHLID:
4213 		case CHIP_NAVY_FLOUNDER:
4214 			break;
4215 		default:
4216 			goto disabled;
4217 		}
4218 	}
4219 
4220 	return true;
4221 
4222 disabled:
4223 		dev_info(adev->dev, "GPU recovery disabled.\n");
4224 		return false;
4225 }
4226 
4227 
4228 static int amdgpu_device_pre_asic_reset(struct amdgpu_device *adev,
4229 					struct amdgpu_job *job,
4230 					bool *need_full_reset_arg)
4231 {
4232 	int i, r = 0;
4233 	bool need_full_reset  = *need_full_reset_arg;
4234 
4235 	amdgpu_debugfs_wait_dump(adev);
4236 
4237 	if (amdgpu_sriov_vf(adev)) {
4238 		/* stop the data exchange thread */
4239 		amdgpu_virt_fini_data_exchange(adev);
4240 	}
4241 
4242 	/* block all schedulers and reset given job's ring */
4243 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4244 		struct amdgpu_ring *ring = adev->rings[i];
4245 
4246 		if (!ring || !ring->sched.thread)
4247 			continue;
4248 
4249 		/* after all hw jobs are reset, hw fence is meaningless, so force_completion */
4250 		amdgpu_fence_driver_force_completion(ring);
4251 	}
4252 
4253 	if(job)
4254 		drm_sched_increase_karma(&job->base);
4255 
4256 	/* Don't suspend on bare metal if we are not going to HW reset the ASIC */
4257 	if (!amdgpu_sriov_vf(adev)) {
4258 
4259 		if (!need_full_reset)
4260 			need_full_reset = amdgpu_device_ip_need_full_reset(adev);
4261 
4262 		if (!need_full_reset) {
4263 			amdgpu_device_ip_pre_soft_reset(adev);
4264 			r = amdgpu_device_ip_soft_reset(adev);
4265 			amdgpu_device_ip_post_soft_reset(adev);
4266 			if (r || amdgpu_device_ip_check_soft_reset(adev)) {
4267 				dev_info(adev->dev, "soft reset failed, will fallback to full reset!\n");
4268 				need_full_reset = true;
4269 			}
4270 		}
4271 
4272 		if (need_full_reset)
4273 			r = amdgpu_device_ip_suspend(adev);
4274 
4275 		*need_full_reset_arg = need_full_reset;
4276 	}
4277 
4278 	return r;
4279 }
4280 
4281 static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
4282 			       struct list_head *device_list_handle,
4283 			       bool *need_full_reset_arg,
4284 			       bool skip_hw_reset)
4285 {
4286 	struct amdgpu_device *tmp_adev = NULL;
4287 	bool need_full_reset = *need_full_reset_arg, vram_lost = false;
4288 	int r = 0;
4289 
4290 	/*
4291 	 * ASIC reset has to be done on all HGMI hive nodes ASAP
4292 	 * to allow proper links negotiation in FW (within 1 sec)
4293 	 */
4294 	if (!skip_hw_reset && need_full_reset) {
4295 		list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4296 			/* For XGMI run all resets in parallel to speed up the process */
4297 			if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
4298 				if (!queue_work(system_unbound_wq, &tmp_adev->xgmi_reset_work))
4299 					r = -EALREADY;
4300 			} else
4301 				r = amdgpu_asic_reset(tmp_adev);
4302 
4303 			if (r) {
4304 				dev_err(tmp_adev->dev, "ASIC reset failed with error, %d for drm dev, %s",
4305 					 r, adev_to_drm(tmp_adev)->unique);
4306 				break;
4307 			}
4308 		}
4309 
4310 		/* For XGMI wait for all resets to complete before proceed */
4311 		if (!r) {
4312 			list_for_each_entry(tmp_adev, device_list_handle,
4313 					    gmc.xgmi.head) {
4314 				if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
4315 					flush_work(&tmp_adev->xgmi_reset_work);
4316 					r = tmp_adev->asic_reset_res;
4317 					if (r)
4318 						break;
4319 				}
4320 			}
4321 		}
4322 	}
4323 
4324 	if (!r && amdgpu_ras_intr_triggered()) {
4325 		list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4326 			if (tmp_adev->mmhub.funcs &&
4327 			    tmp_adev->mmhub.funcs->reset_ras_error_count)
4328 				tmp_adev->mmhub.funcs->reset_ras_error_count(tmp_adev);
4329 		}
4330 
4331 		amdgpu_ras_intr_cleared();
4332 	}
4333 
4334 	list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4335 		if (need_full_reset) {
4336 			/* post card */
4337 			if (amdgpu_device_asic_init(tmp_adev))
4338 				dev_warn(tmp_adev->dev, "asic atom init failed!");
4339 
4340 			if (!r) {
4341 				dev_info(tmp_adev->dev, "GPU reset succeeded, trying to resume\n");
4342 				r = amdgpu_device_ip_resume_phase1(tmp_adev);
4343 				if (r)
4344 					goto out;
4345 
4346 				vram_lost = amdgpu_device_check_vram_lost(tmp_adev);
4347 				if (vram_lost) {
4348 					DRM_INFO("VRAM is lost due to GPU reset!\n");
4349 					amdgpu_inc_vram_lost(tmp_adev);
4350 				}
4351 
4352 				r = amdgpu_gtt_mgr_recover(ttm_manager_type(&tmp_adev->mman.bdev, TTM_PL_TT));
4353 				if (r)
4354 					goto out;
4355 
4356 				r = amdgpu_device_fw_loading(tmp_adev);
4357 				if (r)
4358 					return r;
4359 
4360 				r = amdgpu_device_ip_resume_phase2(tmp_adev);
4361 				if (r)
4362 					goto out;
4363 
4364 				if (vram_lost)
4365 					amdgpu_device_fill_reset_magic(tmp_adev);
4366 
4367 				/*
4368 				 * Add this ASIC as tracked as reset was already
4369 				 * complete successfully.
4370 				 */
4371 				amdgpu_register_gpu_instance(tmp_adev);
4372 
4373 				r = amdgpu_device_ip_late_init(tmp_adev);
4374 				if (r)
4375 					goto out;
4376 
4377 				amdgpu_fbdev_set_suspend(tmp_adev, 0);
4378 
4379 				/*
4380 				 * The GPU enters bad state once faulty pages
4381 				 * by ECC has reached the threshold, and ras
4382 				 * recovery is scheduled next. So add one check
4383 				 * here to break recovery if it indeed exceeds
4384 				 * bad page threshold, and remind user to
4385 				 * retire this GPU or setting one bigger
4386 				 * bad_page_threshold value to fix this once
4387 				 * probing driver again.
4388 				 */
4389 				if (!amdgpu_ras_check_err_threshold(tmp_adev)) {
4390 					/* must succeed. */
4391 					amdgpu_ras_resume(tmp_adev);
4392 				} else {
4393 					r = -EINVAL;
4394 					goto out;
4395 				}
4396 
4397 				/* Update PSP FW topology after reset */
4398 				if (hive && tmp_adev->gmc.xgmi.num_physical_nodes > 1)
4399 					r = amdgpu_xgmi_update_topology(hive, tmp_adev);
4400 			}
4401 		}
4402 
4403 out:
4404 		if (!r) {
4405 			amdgpu_irq_gpu_reset_resume_helper(tmp_adev);
4406 			r = amdgpu_ib_ring_tests(tmp_adev);
4407 			if (r) {
4408 				dev_err(tmp_adev->dev, "ib ring test failed (%d).\n", r);
4409 				r = amdgpu_device_ip_suspend(tmp_adev);
4410 				need_full_reset = true;
4411 				r = -EAGAIN;
4412 				goto end;
4413 			}
4414 		}
4415 
4416 		if (!r)
4417 			r = amdgpu_device_recover_vram(tmp_adev);
4418 		else
4419 			tmp_adev->asic_reset_res = r;
4420 	}
4421 
4422 end:
4423 	*need_full_reset_arg = need_full_reset;
4424 	return r;
4425 }
4426 
4427 static bool amdgpu_device_lock_adev(struct amdgpu_device *adev,
4428 				struct amdgpu_hive_info *hive)
4429 {
4430 	if (atomic_cmpxchg(&adev->in_gpu_reset, 0, 1) != 0)
4431 		return false;
4432 
4433 	if (hive) {
4434 		down_write_nest_lock(&adev->reset_sem, &hive->hive_lock);
4435 	} else {
4436 		down_write(&adev->reset_sem);
4437 	}
4438 
4439 	atomic_inc(&adev->gpu_reset_counter);
4440 	switch (amdgpu_asic_reset_method(adev)) {
4441 	case AMD_RESET_METHOD_MODE1:
4442 		adev->mp1_state = PP_MP1_STATE_SHUTDOWN;
4443 		break;
4444 	case AMD_RESET_METHOD_MODE2:
4445 		adev->mp1_state = PP_MP1_STATE_RESET;
4446 		break;
4447 	default:
4448 		adev->mp1_state = PP_MP1_STATE_NONE;
4449 		break;
4450 	}
4451 
4452 	return true;
4453 }
4454 
4455 static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
4456 {
4457 	amdgpu_vf_error_trans_all(adev);
4458 	adev->mp1_state = PP_MP1_STATE_NONE;
4459 	atomic_set(&adev->in_gpu_reset, 0);
4460 	up_write(&adev->reset_sem);
4461 }
4462 
4463 /*
4464  * to lockup a list of amdgpu devices in a hive safely, if not a hive
4465  * with multiple nodes, it will be similar as amdgpu_device_lock_adev.
4466  *
4467  * unlock won't require roll back.
4468  */
4469 static int amdgpu_device_lock_hive_adev(struct amdgpu_device *adev, struct amdgpu_hive_info *hive)
4470 {
4471 	struct amdgpu_device *tmp_adev = NULL;
4472 
4473 	if (adev->gmc.xgmi.num_physical_nodes > 1) {
4474 		if (!hive) {
4475 			dev_err(adev->dev, "Hive is NULL while device has multiple xgmi nodes");
4476 			return -ENODEV;
4477 		}
4478 		list_for_each_entry(tmp_adev, &hive->device_list, gmc.xgmi.head) {
4479 			if (!amdgpu_device_lock_adev(tmp_adev, hive))
4480 				goto roll_back;
4481 		}
4482 	} else if (!amdgpu_device_lock_adev(adev, hive))
4483 		return -EAGAIN;
4484 
4485 	return 0;
4486 roll_back:
4487 	if (!list_is_first(&tmp_adev->gmc.xgmi.head, &hive->device_list)) {
4488 		/*
4489 		 * if the lockup iteration break in the middle of a hive,
4490 		 * it may means there may has a race issue,
4491 		 * or a hive device locked up independently.
4492 		 * we may be in trouble and may not, so will try to roll back
4493 		 * the lock and give out a warnning.
4494 		 */
4495 		dev_warn(tmp_adev->dev, "Hive lock iteration broke in the middle. Rolling back to unlock");
4496 		list_for_each_entry_continue_reverse(tmp_adev, &hive->device_list, gmc.xgmi.head) {
4497 			amdgpu_device_unlock_adev(tmp_adev);
4498 		}
4499 	}
4500 	return -EAGAIN;
4501 }
4502 
4503 static void amdgpu_device_resume_display_audio(struct amdgpu_device *adev)
4504 {
4505 	struct pci_dev *p = NULL;
4506 
4507 	p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus),
4508 			adev->pdev->bus->number, 1);
4509 	if (p) {
4510 		pm_runtime_enable(&(p->dev));
4511 		pm_runtime_resume(&(p->dev));
4512 	}
4513 }
4514 
4515 static int amdgpu_device_suspend_display_audio(struct amdgpu_device *adev)
4516 {
4517 	enum amd_reset_method reset_method;
4518 	struct pci_dev *p = NULL;
4519 	u64 expires;
4520 
4521 	/*
4522 	 * For now, only BACO and mode1 reset are confirmed
4523 	 * to suffer the audio issue without proper suspended.
4524 	 */
4525 	reset_method = amdgpu_asic_reset_method(adev);
4526 	if ((reset_method != AMD_RESET_METHOD_BACO) &&
4527 	     (reset_method != AMD_RESET_METHOD_MODE1))
4528 		return -EINVAL;
4529 
4530 	p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus),
4531 			adev->pdev->bus->number, 1);
4532 	if (!p)
4533 		return -ENODEV;
4534 
4535 	expires = pm_runtime_autosuspend_expiration(&(p->dev));
4536 	if (!expires)
4537 		/*
4538 		 * If we cannot get the audio device autosuspend delay,
4539 		 * a fixed 4S interval will be used. Considering 3S is
4540 		 * the audio controller default autosuspend delay setting.
4541 		 * 4S used here is guaranteed to cover that.
4542 		 */
4543 		expires = ktime_get_mono_fast_ns() + NSEC_PER_SEC * 4ULL;
4544 
4545 	while (!pm_runtime_status_suspended(&(p->dev))) {
4546 		if (!pm_runtime_suspend(&(p->dev)))
4547 			break;
4548 
4549 		if (expires < ktime_get_mono_fast_ns()) {
4550 			dev_warn(adev->dev, "failed to suspend display audio\n");
4551 			/* TODO: abort the succeeding gpu reset? */
4552 			return -ETIMEDOUT;
4553 		}
4554 	}
4555 
4556 	pm_runtime_disable(&(p->dev));
4557 
4558 	return 0;
4559 }
4560 
4561 /**
4562  * amdgpu_device_gpu_recover - reset the asic and recover scheduler
4563  *
4564  * @adev: amdgpu_device pointer
4565  * @job: which job trigger hang
4566  *
4567  * Attempt to reset the GPU if it has hung (all asics).
4568  * Attempt to do soft-reset or full-reset and reinitialize Asic
4569  * Returns 0 for success or an error on failure.
4570  */
4571 
4572 int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
4573 			      struct amdgpu_job *job)
4574 {
4575 	struct list_head device_list, *device_list_handle =  NULL;
4576 	bool need_full_reset = false;
4577 	bool job_signaled = false;
4578 	struct amdgpu_hive_info *hive = NULL;
4579 	struct amdgpu_device *tmp_adev = NULL;
4580 	int i, r = 0;
4581 	bool need_emergency_restart = false;
4582 	bool audio_suspended = false;
4583 
4584 	/*
4585 	 * Special case: RAS triggered and full reset isn't supported
4586 	 */
4587 	need_emergency_restart = amdgpu_ras_need_emergency_restart(adev);
4588 
4589 	/*
4590 	 * Flush RAM to disk so that after reboot
4591 	 * the user can read log and see why the system rebooted.
4592 	 */
4593 	if (need_emergency_restart && amdgpu_ras_get_context(adev)->reboot) {
4594 		DRM_WARN("Emergency reboot.");
4595 
4596 		ksys_sync_helper();
4597 		emergency_restart();
4598 	}
4599 
4600 	dev_info(adev->dev, "GPU %s begin!\n",
4601 		need_emergency_restart ? "jobs stop":"reset");
4602 
4603 	/*
4604 	 * Here we trylock to avoid chain of resets executing from
4605 	 * either trigger by jobs on different adevs in XGMI hive or jobs on
4606 	 * different schedulers for same device while this TO handler is running.
4607 	 * We always reset all schedulers for device and all devices for XGMI
4608 	 * hive so that should take care of them too.
4609 	 */
4610 	hive = amdgpu_get_xgmi_hive(adev);
4611 	if (hive) {
4612 		if (atomic_cmpxchg(&hive->in_reset, 0, 1) != 0) {
4613 			DRM_INFO("Bailing on TDR for s_job:%llx, hive: %llx as another already in progress",
4614 				job ? job->base.id : -1, hive->hive_id);
4615 			amdgpu_put_xgmi_hive(hive);
4616 			if (job)
4617 				drm_sched_increase_karma(&job->base);
4618 			return 0;
4619 		}
4620 		mutex_lock(&hive->hive_lock);
4621 	}
4622 
4623 	/*
4624 	 * lock the device before we try to operate the linked list
4625 	 * if didn't get the device lock, don't touch the linked list since
4626 	 * others may iterating it.
4627 	 */
4628 	r = amdgpu_device_lock_hive_adev(adev, hive);
4629 	if (r) {
4630 		dev_info(adev->dev, "Bailing on TDR for s_job:%llx, as another already in progress",
4631 					job ? job->base.id : -1);
4632 
4633 		/* even we skipped this reset, still need to set the job to guilty */
4634 		if (job)
4635 			drm_sched_increase_karma(&job->base);
4636 		goto skip_recovery;
4637 	}
4638 
4639 	/*
4640 	 * Build list of devices to reset.
4641 	 * In case we are in XGMI hive mode, resort the device list
4642 	 * to put adev in the 1st position.
4643 	 */
4644 	INIT_LIST_HEAD(&device_list);
4645 	if (adev->gmc.xgmi.num_physical_nodes > 1) {
4646 		if (!list_is_first(&adev->gmc.xgmi.head, &hive->device_list))
4647 			list_rotate_to_front(&adev->gmc.xgmi.head, &hive->device_list);
4648 		device_list_handle = &hive->device_list;
4649 	} else {
4650 		list_add_tail(&adev->gmc.xgmi.head, &device_list);
4651 		device_list_handle = &device_list;
4652 	}
4653 
4654 	/* block all schedulers and reset given job's ring */
4655 	list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4656 		/*
4657 		 * Try to put the audio codec into suspend state
4658 		 * before gpu reset started.
4659 		 *
4660 		 * Due to the power domain of the graphics device
4661 		 * is shared with AZ power domain. Without this,
4662 		 * we may change the audio hardware from behind
4663 		 * the audio driver's back. That will trigger
4664 		 * some audio codec errors.
4665 		 */
4666 		if (!amdgpu_device_suspend_display_audio(tmp_adev))
4667 			audio_suspended = true;
4668 
4669 		amdgpu_ras_set_error_query_ready(tmp_adev, false);
4670 
4671 		cancel_delayed_work_sync(&tmp_adev->delayed_init_work);
4672 
4673 		if (!amdgpu_sriov_vf(tmp_adev))
4674 			amdgpu_amdkfd_pre_reset(tmp_adev);
4675 
4676 		/*
4677 		 * Mark these ASICs to be reseted as untracked first
4678 		 * And add them back after reset completed
4679 		 */
4680 		amdgpu_unregister_gpu_instance(tmp_adev);
4681 
4682 		amdgpu_fbdev_set_suspend(tmp_adev, 1);
4683 
4684 		/* disable ras on ALL IPs */
4685 		if (!need_emergency_restart &&
4686 		      amdgpu_device_ip_need_full_reset(tmp_adev))
4687 			amdgpu_ras_suspend(tmp_adev);
4688 
4689 		for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4690 			struct amdgpu_ring *ring = tmp_adev->rings[i];
4691 
4692 			if (!ring || !ring->sched.thread)
4693 				continue;
4694 
4695 			drm_sched_stop(&ring->sched, job ? &job->base : NULL);
4696 
4697 			if (need_emergency_restart)
4698 				amdgpu_job_stop_all_jobs_on_sched(&ring->sched);
4699 		}
4700 	}
4701 
4702 	if (need_emergency_restart)
4703 		goto skip_sched_resume;
4704 
4705 	/*
4706 	 * Must check guilty signal here since after this point all old
4707 	 * HW fences are force signaled.
4708 	 *
4709 	 * job->base holds a reference to parent fence
4710 	 */
4711 	if (job && job->base.s_fence->parent &&
4712 	    dma_fence_is_signaled(job->base.s_fence->parent)) {
4713 		job_signaled = true;
4714 		dev_info(adev->dev, "Guilty job already signaled, skipping HW reset");
4715 		goto skip_hw_reset;
4716 	}
4717 
4718 retry:	/* Rest of adevs pre asic reset from XGMI hive. */
4719 	list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4720 		r = amdgpu_device_pre_asic_reset(tmp_adev,
4721 						 (tmp_adev == adev) ? job : NULL,
4722 						 &need_full_reset);
4723 		/*TODO Should we stop ?*/
4724 		if (r) {
4725 			dev_err(tmp_adev->dev, "GPU pre asic reset failed with err, %d for drm dev, %s ",
4726 				  r, adev_to_drm(tmp_adev)->unique);
4727 			tmp_adev->asic_reset_res = r;
4728 		}
4729 	}
4730 
4731 	/* Actual ASIC resets if needed.*/
4732 	/* TODO Implement XGMI hive reset logic for SRIOV */
4733 	if (amdgpu_sriov_vf(adev)) {
4734 		r = amdgpu_device_reset_sriov(adev, job ? false : true);
4735 		if (r)
4736 			adev->asic_reset_res = r;
4737 	} else {
4738 		r  = amdgpu_do_asic_reset(hive, device_list_handle, &need_full_reset, false);
4739 		if (r && r == -EAGAIN)
4740 			goto retry;
4741 	}
4742 
4743 skip_hw_reset:
4744 
4745 	/* Post ASIC reset for all devs .*/
4746 	list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4747 
4748 		for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4749 			struct amdgpu_ring *ring = tmp_adev->rings[i];
4750 
4751 			if (!ring || !ring->sched.thread)
4752 				continue;
4753 
4754 			/* No point to resubmit jobs if we didn't HW reset*/
4755 			if (!tmp_adev->asic_reset_res && !job_signaled)
4756 				drm_sched_resubmit_jobs(&ring->sched);
4757 
4758 			drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res);
4759 		}
4760 
4761 		if (!amdgpu_device_has_dc_support(tmp_adev) && !job_signaled) {
4762 			drm_helper_resume_force_mode(adev_to_drm(tmp_adev));
4763 		}
4764 
4765 		tmp_adev->asic_reset_res = 0;
4766 
4767 		if (r) {
4768 			/* bad news, how to tell it to userspace ? */
4769 			dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&tmp_adev->gpu_reset_counter));
4770 			amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
4771 		} else {
4772 			dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&tmp_adev->gpu_reset_counter));
4773 		}
4774 	}
4775 
4776 skip_sched_resume:
4777 	list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4778 		/*unlock kfd: SRIOV would do it separately */
4779 		if (!need_emergency_restart && !amdgpu_sriov_vf(tmp_adev))
4780 	                amdgpu_amdkfd_post_reset(tmp_adev);
4781 		if (audio_suspended)
4782 			amdgpu_device_resume_display_audio(tmp_adev);
4783 		amdgpu_device_unlock_adev(tmp_adev);
4784 	}
4785 
4786 skip_recovery:
4787 	if (hive) {
4788 		atomic_set(&hive->in_reset, 0);
4789 		mutex_unlock(&hive->hive_lock);
4790 		amdgpu_put_xgmi_hive(hive);
4791 	}
4792 
4793 	if (r && r != -EAGAIN)
4794 		dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
4795 	return r;
4796 }
4797 
4798 /**
4799  * amdgpu_device_get_pcie_info - fence pcie info about the PCIE slot
4800  *
4801  * @adev: amdgpu_device pointer
4802  *
4803  * Fetchs and stores in the driver the PCIE capabilities (gen speed
4804  * and lanes) of the slot the device is in. Handles APUs and
4805  * virtualized environments where PCIE config space may not be available.
4806  */
4807 static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
4808 {
4809 	struct pci_dev *pdev;
4810 	enum pci_bus_speed speed_cap, platform_speed_cap;
4811 	enum pcie_link_width platform_link_width;
4812 
4813 	if (amdgpu_pcie_gen_cap)
4814 		adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
4815 
4816 	if (amdgpu_pcie_lane_cap)
4817 		adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
4818 
4819 	/* covers APUs as well */
4820 	if (pci_is_root_bus(adev->pdev->bus)) {
4821 		if (adev->pm.pcie_gen_mask == 0)
4822 			adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
4823 		if (adev->pm.pcie_mlw_mask == 0)
4824 			adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
4825 		return;
4826 	}
4827 
4828 	if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
4829 		return;
4830 
4831 	pcie_bandwidth_available(adev->pdev, NULL,
4832 				 &platform_speed_cap, &platform_link_width);
4833 
4834 	if (adev->pm.pcie_gen_mask == 0) {
4835 		/* asic caps */
4836 		pdev = adev->pdev;
4837 		speed_cap = pcie_get_speed_cap(pdev);
4838 		if (speed_cap == PCI_SPEED_UNKNOWN) {
4839 			adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4840 						  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4841 						  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
4842 		} else {
4843 			if (speed_cap == PCIE_SPEED_32_0GT)
4844 				adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4845 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4846 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4847 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4 |
4848 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN5);
4849 			else if (speed_cap == PCIE_SPEED_16_0GT)
4850 				adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4851 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4852 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4853 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN4);
4854 			else if (speed_cap == PCIE_SPEED_8_0GT)
4855 				adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4856 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4857 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
4858 			else if (speed_cap == PCIE_SPEED_5_0GT)
4859 				adev->pm.pcie_gen_mask |= (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4860 							  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2);
4861 			else
4862 				adev->pm.pcie_gen_mask |= CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1;
4863 		}
4864 		/* platform caps */
4865 		if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
4866 			adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4867 						   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
4868 		} else {
4869 			if (platform_speed_cap == PCIE_SPEED_32_0GT)
4870 				adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4871 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4872 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4873 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4 |
4874 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN5);
4875 			else if (platform_speed_cap == PCIE_SPEED_16_0GT)
4876 				adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4877 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4878 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3 |
4879 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4);
4880 			else if (platform_speed_cap == PCIE_SPEED_8_0GT)
4881 				adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4882 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4883 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3);
4884 			else if (platform_speed_cap == PCIE_SPEED_5_0GT)
4885 				adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4886 							   CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
4887 			else
4888 				adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
4889 
4890 		}
4891 	}
4892 	if (adev->pm.pcie_mlw_mask == 0) {
4893 		if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
4894 			adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
4895 		} else {
4896 			switch (platform_link_width) {
4897 			case PCIE_LNK_X32:
4898 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
4899 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
4900 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4901 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4902 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4903 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4904 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4905 				break;
4906 			case PCIE_LNK_X16:
4907 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
4908 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4909 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4910 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4911 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4912 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4913 				break;
4914 			case PCIE_LNK_X12:
4915 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
4916 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4917 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4918 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4919 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4920 				break;
4921 			case PCIE_LNK_X8:
4922 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
4923 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4924 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4925 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4926 				break;
4927 			case PCIE_LNK_X4:
4928 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
4929 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4930 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4931 				break;
4932 			case PCIE_LNK_X2:
4933 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4934 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4935 				break;
4936 			case PCIE_LNK_X1:
4937 				adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
4938 				break;
4939 			default:
4940 				break;
4941 			}
4942 		}
4943 	}
4944 }
4945 
4946 int amdgpu_device_baco_enter(struct drm_device *dev)
4947 {
4948 	struct amdgpu_device *adev = drm_to_adev(dev);
4949 	struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
4950 
4951 	if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
4952 		return -ENOTSUPP;
4953 
4954 	if (ras && ras->supported && adev->nbio.funcs->enable_doorbell_interrupt)
4955 		adev->nbio.funcs->enable_doorbell_interrupt(adev, false);
4956 
4957 	return amdgpu_dpm_baco_enter(adev);
4958 }
4959 
4960 int amdgpu_device_baco_exit(struct drm_device *dev)
4961 {
4962 	struct amdgpu_device *adev = drm_to_adev(dev);
4963 	struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
4964 	int ret = 0;
4965 
4966 	if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
4967 		return -ENOTSUPP;
4968 
4969 	ret = amdgpu_dpm_baco_exit(adev);
4970 	if (ret)
4971 		return ret;
4972 
4973 	if (ras && ras->supported && adev->nbio.funcs->enable_doorbell_interrupt)
4974 		adev->nbio.funcs->enable_doorbell_interrupt(adev, true);
4975 
4976 	return 0;
4977 }
4978 
4979 static void amdgpu_cancel_all_tdr(struct amdgpu_device *adev)
4980 {
4981 	int i;
4982 
4983 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4984 		struct amdgpu_ring *ring = adev->rings[i];
4985 
4986 		if (!ring || !ring->sched.thread)
4987 			continue;
4988 
4989 		cancel_delayed_work_sync(&ring->sched.work_tdr);
4990 	}
4991 }
4992 
4993 /**
4994  * amdgpu_pci_error_detected - Called when a PCI error is detected.
4995  * @pdev: PCI device struct
4996  * @state: PCI channel state
4997  *
4998  * Description: Called when a PCI error is detected.
4999  *
5000  * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT.
5001  */
5002 pci_ers_result_t amdgpu_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
5003 {
5004 	struct drm_device *dev = pci_get_drvdata(pdev);
5005 	struct amdgpu_device *adev = drm_to_adev(dev);
5006 	int i;
5007 
5008 	DRM_INFO("PCI error: detected callback, state(%d)!!\n", state);
5009 
5010 	if (adev->gmc.xgmi.num_physical_nodes > 1) {
5011 		DRM_WARN("No support for XGMI hive yet...");
5012 		return PCI_ERS_RESULT_DISCONNECT;
5013 	}
5014 
5015 	switch (state) {
5016 	case pci_channel_io_normal:
5017 		return PCI_ERS_RESULT_CAN_RECOVER;
5018 	/* Fatal error, prepare for slot reset */
5019 	case pci_channel_io_frozen:
5020 		/*
5021 		 * Cancel and wait for all TDRs in progress if failing to
5022 		 * set  adev->in_gpu_reset in amdgpu_device_lock_adev
5023 		 *
5024 		 * Locking adev->reset_sem will prevent any external access
5025 		 * to GPU during PCI error recovery
5026 		 */
5027 		while (!amdgpu_device_lock_adev(adev, NULL))
5028 			amdgpu_cancel_all_tdr(adev);
5029 
5030 		/*
5031 		 * Block any work scheduling as we do for regular GPU reset
5032 		 * for the duration of the recovery
5033 		 */
5034 		for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5035 			struct amdgpu_ring *ring = adev->rings[i];
5036 
5037 			if (!ring || !ring->sched.thread)
5038 				continue;
5039 
5040 			drm_sched_stop(&ring->sched, NULL);
5041 		}
5042 		return PCI_ERS_RESULT_NEED_RESET;
5043 	case pci_channel_io_perm_failure:
5044 		/* Permanent error, prepare for device removal */
5045 		return PCI_ERS_RESULT_DISCONNECT;
5046 	}
5047 
5048 	return PCI_ERS_RESULT_NEED_RESET;
5049 }
5050 
5051 /**
5052  * amdgpu_pci_mmio_enabled - Enable MMIO and dump debug registers
5053  * @pdev: pointer to PCI device
5054  */
5055 pci_ers_result_t amdgpu_pci_mmio_enabled(struct pci_dev *pdev)
5056 {
5057 
5058 	DRM_INFO("PCI error: mmio enabled callback!!\n");
5059 
5060 	/* TODO - dump whatever for debugging purposes */
5061 
5062 	/* This called only if amdgpu_pci_error_detected returns
5063 	 * PCI_ERS_RESULT_CAN_RECOVER. Read/write to the device still
5064 	 * works, no need to reset slot.
5065 	 */
5066 
5067 	return PCI_ERS_RESULT_RECOVERED;
5068 }
5069 
5070 /**
5071  * amdgpu_pci_slot_reset - Called when PCI slot has been reset.
5072  * @pdev: PCI device struct
5073  *
5074  * Description: This routine is called by the pci error recovery
5075  * code after the PCI slot has been reset, just before we
5076  * should resume normal operations.
5077  */
5078 pci_ers_result_t amdgpu_pci_slot_reset(struct pci_dev *pdev)
5079 {
5080 	struct drm_device *dev = pci_get_drvdata(pdev);
5081 	struct amdgpu_device *adev = drm_to_adev(dev);
5082 	int r, i;
5083 	bool need_full_reset = true;
5084 	u32 memsize;
5085 	struct list_head device_list;
5086 
5087 	DRM_INFO("PCI error: slot reset callback!!\n");
5088 
5089 	INIT_LIST_HEAD(&device_list);
5090 	list_add_tail(&adev->gmc.xgmi.head, &device_list);
5091 
5092 	/* wait for asic to come out of reset */
5093 	msleep(500);
5094 
5095 	/* Restore PCI confspace */
5096 	amdgpu_device_load_pci_state(pdev);
5097 
5098 	/* confirm  ASIC came out of reset */
5099 	for (i = 0; i < adev->usec_timeout; i++) {
5100 		memsize = amdgpu_asic_get_config_memsize(adev);
5101 
5102 		if (memsize != 0xffffffff)
5103 			break;
5104 		udelay(1);
5105 	}
5106 	if (memsize == 0xffffffff) {
5107 		r = -ETIME;
5108 		goto out;
5109 	}
5110 
5111 	adev->in_pci_err_recovery = true;
5112 	r = amdgpu_device_pre_asic_reset(adev, NULL, &need_full_reset);
5113 	adev->in_pci_err_recovery = false;
5114 	if (r)
5115 		goto out;
5116 
5117 	r = amdgpu_do_asic_reset(NULL, &device_list, &need_full_reset, true);
5118 
5119 out:
5120 	if (!r) {
5121 		if (amdgpu_device_cache_pci_state(adev->pdev))
5122 			pci_restore_state(adev->pdev);
5123 
5124 		DRM_INFO("PCIe error recovery succeeded\n");
5125 	} else {
5126 		DRM_ERROR("PCIe error recovery failed, err:%d", r);
5127 		amdgpu_device_unlock_adev(adev);
5128 	}
5129 
5130 	return r ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED;
5131 }
5132 
5133 /**
5134  * amdgpu_pci_resume() - resume normal ops after PCI reset
5135  * @pdev: pointer to PCI device
5136  *
5137  * Called when the error recovery driver tells us that its
5138  * OK to resume normal operation.
5139  */
5140 void amdgpu_pci_resume(struct pci_dev *pdev)
5141 {
5142 	struct drm_device *dev = pci_get_drvdata(pdev);
5143 	struct amdgpu_device *adev = drm_to_adev(dev);
5144 	int i;
5145 
5146 
5147 	DRM_INFO("PCI error: resume callback!!\n");
5148 
5149 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
5150 		struct amdgpu_ring *ring = adev->rings[i];
5151 
5152 		if (!ring || !ring->sched.thread)
5153 			continue;
5154 
5155 
5156 		drm_sched_resubmit_jobs(&ring->sched);
5157 		drm_sched_start(&ring->sched, true);
5158 	}
5159 
5160 	amdgpu_device_unlock_adev(adev);
5161 }
5162 
5163 bool amdgpu_device_cache_pci_state(struct pci_dev *pdev)
5164 {
5165 	struct drm_device *dev = pci_get_drvdata(pdev);
5166 	struct amdgpu_device *adev = drm_to_adev(dev);
5167 	int r;
5168 
5169 	r = pci_save_state(pdev);
5170 	if (!r) {
5171 		kfree(adev->pci_state);
5172 
5173 		adev->pci_state = pci_store_saved_state(pdev);
5174 
5175 		if (!adev->pci_state) {
5176 			DRM_ERROR("Failed to store PCI saved state");
5177 			return false;
5178 		}
5179 	} else {
5180 		DRM_WARN("Failed to save PCI state, err:%d\n", r);
5181 		return false;
5182 	}
5183 
5184 	return true;
5185 }
5186 
5187 bool amdgpu_device_load_pci_state(struct pci_dev *pdev)
5188 {
5189 	struct drm_device *dev = pci_get_drvdata(pdev);
5190 	struct amdgpu_device *adev = drm_to_adev(dev);
5191 	int r;
5192 
5193 	if (!adev->pci_state)
5194 		return false;
5195 
5196 	r = pci_load_saved_state(pdev, adev->pci_state);
5197 
5198 	if (!r) {
5199 		pci_restore_state(pdev);
5200 	} else {
5201 		DRM_WARN("Failed to load PCI state, err:%d\n", r);
5202 		return false;
5203 	}
5204 
5205 	return true;
5206 }
5207 
5208 
5209