drm/amdgpu/vi: minor clean up of reset code
[linux-2.6-block.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_device.c
CommitLineData
d38ceaf9
AD
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 */
b1ddf548 28#include <linux/power_supply.h>
0875dc9e 29#include <linux/kthread.h>
fdf2f6c5 30#include <linux/module.h>
d38ceaf9
AD
31#include <linux/console.h>
32#include <linux/slab.h>
fdf2f6c5 33
4562236b 34#include <drm/drm_atomic_helper.h>
fcd70cd3 35#include <drm/drm_probe_helper.h>
d38ceaf9
AD
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"
f4b373f4 41#include "amdgpu_trace.h"
d38ceaf9
AD
42#include "amdgpu_i2c.h"
43#include "atom.h"
44#include "amdgpu_atombios.h"
a5bde2f9 45#include "amdgpu_atomfirmware.h"
d0dd7f0c 46#include "amd_pcie.h"
33f34802
KW
47#ifdef CONFIG_DRM_AMDGPU_SI
48#include "si.h"
49#endif
a2e73f56
AD
50#ifdef CONFIG_DRM_AMDGPU_CIK
51#include "cik.h"
52#endif
aaa36a97 53#include "vi.h"
460826e6 54#include "soc15.h"
0a5b8c7b 55#include "nv.h"
d38ceaf9 56#include "bif/bif_4_1_d.h"
9accf2fd 57#include <linux/pci.h>
bec86378 58#include <linux/firmware.h>
89041940 59#include "amdgpu_vf_error.h"
d38ceaf9 60
ba997709 61#include "amdgpu_amdkfd.h"
d2f52ac8 62#include "amdgpu_pm.h"
d38ceaf9 63
5183411b 64#include "amdgpu_xgmi.h"
c030f2e4 65#include "amdgpu_ras.h"
9c7c85f7 66#include "amdgpu_pmu.h"
bd607166 67#include "amdgpu_fru_eeprom.h"
5183411b 68
d5ea093e 69#include <linux/suspend.h>
c6a6e2db 70#include <drm/task_barrier.h>
3f12acc8 71#include <linux/pm_runtime.h>
d5ea093e 72
e2a75f88 73MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
3f76dced 74MODULE_FIRMWARE("amdgpu/vega12_gpu_info.bin");
2d2e5e7e 75MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
ad5a67a7 76MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
54c4d17e 77MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
65e60f6e 78MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin");
b51a26a0 79MODULE_FIRMWARE("amdgpu/renoir_gpu_info.bin");
23c6268e 80MODULE_FIRMWARE("amdgpu/navi10_gpu_info.bin");
ed42cfe1 81MODULE_FIRMWARE("amdgpu/navi14_gpu_info.bin");
42b325e5 82MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin");
4e52a9f8 83MODULE_FIRMWARE("amdgpu/vangogh_gpu_info.bin");
e2a75f88 84
2dc80b00
S
85#define AMDGPU_RESUME_MS 2000
86
050091ab 87const char *amdgpu_asic_name[] = {
da69c161
KW
88 "TAHITI",
89 "PITCAIRN",
90 "VERDE",
91 "OLAND",
92 "HAINAN",
d38ceaf9
AD
93 "BONAIRE",
94 "KAVERI",
95 "KABINI",
96 "HAWAII",
97 "MULLINS",
98 "TOPAZ",
99 "TONGA",
48299f95 100 "FIJI",
d38ceaf9 101 "CARRIZO",
139f4917 102 "STONEY",
2cc0c0b5
FC
103 "POLARIS10",
104 "POLARIS11",
c4642a47 105 "POLARIS12",
48ff108d 106 "VEGAM",
d4196f01 107 "VEGA10",
8fab806a 108 "VEGA12",
956fcddc 109 "VEGA20",
2ca8a5d2 110 "RAVEN",
d6c3b24e 111 "ARCTURUS",
1eee4228 112 "RENOIR",
852a6626 113 "NAVI10",
87dbad02 114 "NAVI14",
9802f5d7 115 "NAVI12",
ccaf72d3 116 "SIENNA_CICHLID",
ddd8fbe7 117 "NAVY_FLOUNDER",
4f1e9a76 118 "VANGOGH",
a2468e04 119 "DIMGREY_CAVEFISH",
d38ceaf9
AD
120 "LAST",
121};
122
dcea6e65
KR
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
132static 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);
1348969a 136 struct amdgpu_device *adev = drm_to_adev(ddev);
dcea6e65
KR
137 uint64_t cnt = amdgpu_asic_get_pcie_replay_count(adev);
138
139 return snprintf(buf, PAGE_SIZE, "%llu\n", cnt);
140}
141
142static DEVICE_ATTR(pcie_replay_count, S_IRUGO,
143 amdgpu_device_get_pcie_replay_count, NULL);
144
5494d864
AD
145static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev);
146
bd607166
KR
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
157static 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);
1348969a 161 struct amdgpu_device *adev = drm_to_adev(ddev);
bd607166
KR
162
163 return snprintf(buf, PAGE_SIZE, "%s\n", adev->product_name);
164}
165
166static 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
179static 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);
1348969a 183 struct amdgpu_device *adev = drm_to_adev(ddev);
bd607166
KR
184
185 return snprintf(buf, PAGE_SIZE, "%s\n", adev->product_number);
186}
187
188static 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
201static 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);
1348969a 205 struct amdgpu_device *adev = drm_to_adev(ddev);
bd607166
KR
206
207 return snprintf(buf, PAGE_SIZE, "%s\n", adev->serial);
208}
209
210static DEVICE_ATTR(serial_number, S_IRUGO,
211 amdgpu_device_get_serial_number, NULL);
212
fd496ca8
AD
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 */
221bool 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
e3ecdffa 230/**
0330b848 231 * amdgpu_device_supports_boco - Is the device a dGPU with ACPI power resources
e3ecdffa
AD
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 */
31af062a 238bool amdgpu_device_supports_boco(struct drm_device *dev)
d38ceaf9 239{
1348969a 240 struct amdgpu_device *adev = drm_to_adev(dev);
d38ceaf9 241
0330b848 242 if (adev->has_pr3)
d38ceaf9
AD
243 return true;
244 return false;
245}
246
a69cba42
AD
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 */
255bool amdgpu_device_supports_baco(struct drm_device *dev)
256{
1348969a 257 struct amdgpu_device *adev = drm_to_adev(dev);
a69cba42
AD
258
259 return amdgpu_asic_supports_baco(adev);
260}
261
6e3cd2a9
MCC
262/*
263 * VRAM access helper functions
264 */
265
e35e2b11 266/**
e35e2b11
TY
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 */
275void amdgpu_device_vram_access(struct amdgpu_device *adev, loff_t pos,
276 uint32_t *buf, size_t size, bool write)
277{
e35e2b11 278 unsigned long flags;
ce05ac56
CK
279 uint32_t hi = ~0;
280 uint64_t last;
281
9d11eb0d
CK
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
ce05ac56
CK
308 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
309 for (last = pos + size; pos < last; pos += 4) {
310 uint32_t tmp = pos >> 31;
e35e2b11 311
e35e2b11 312 WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)pos) | 0x80000000);
ce05ac56
CK
313 if (tmp != hi) {
314 WREG32_NO_KIQ(mmMM_INDEX_HI, tmp);
315 hi = tmp;
316 }
e35e2b11
TY
317 if (write)
318 WREG32_NO_KIQ(mmMM_DATA, *buf++);
319 else
320 *buf++ = RREG32_NO_KIQ(mmMM_DATA);
e35e2b11 321 }
ce05ac56 322 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
e35e2b11
TY
323}
324
d38ceaf9 325/*
f7ee1874 326 * register access helper functions.
d38ceaf9 327 */
e3ecdffa 328/**
f7ee1874 329 * amdgpu_device_rreg - read a memory mapped IO or indirect register
e3ecdffa
AD
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 */
f7ee1874
HZ
337uint32_t amdgpu_device_rreg(struct amdgpu_device *adev,
338 uint32_t reg, uint32_t acc_flags)
d38ceaf9 339{
f4b373f4
TSD
340 uint32_t ret;
341
bf36b52e
AG
342 if (adev->in_pci_err_recovery)
343 return 0;
344
f7ee1874
HZ
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);
81202807 356 }
bc992ba5 357
f7ee1874 358 trace_amdgpu_device_rreg(adev->pdev->device, reg, ret);
e78b579d 359
f4b373f4 360 return ret;
d38ceaf9
AD
361}
362
421a2a30
ML
363/*
364 * MMIO register read with bytes helper functions
365 * @offset:bytes offset from MMIO start
366 *
367*/
368
e3ecdffa
AD
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 */
7cbbc745
AG
377uint8_t amdgpu_mm_rreg8(struct amdgpu_device *adev, uint32_t offset)
378{
bf36b52e
AG
379 if (adev->in_pci_err_recovery)
380 return 0;
381
421a2a30
ML
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*/
e3ecdffa
AD
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 */
7cbbc745
AG
402void amdgpu_mm_wreg8(struct amdgpu_device *adev, uint32_t offset, uint8_t value)
403{
bf36b52e
AG
404 if (adev->in_pci_err_recovery)
405 return;
406
421a2a30
ML
407 if (offset < adev->rmmio_size)
408 writeb(value, adev->rmmio + offset);
409 else
410 BUG();
411}
412
e3ecdffa 413/**
f7ee1874 414 * amdgpu_device_wreg - write to a memory mapped IO or indirect register
e3ecdffa
AD
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 */
f7ee1874
HZ
423void amdgpu_device_wreg(struct amdgpu_device *adev,
424 uint32_t reg, uint32_t v,
425 uint32_t acc_flags)
d38ceaf9 426{
bf36b52e
AG
427 if (adev->in_pci_err_recovery)
428 return;
429
f7ee1874
HZ
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);
81202807 441 }
bc992ba5 442
f7ee1874 443 trace_amdgpu_device_wreg(adev->pdev->device, reg, v);
2e0cc4d4 444}
d38ceaf9 445
2e0cc4d4
ML
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 * */
f7ee1874
HZ
451void amdgpu_mm_wreg_mmio_rlc(struct amdgpu_device *adev,
452 uint32_t reg, uint32_t v)
2e0cc4d4 453{
bf36b52e
AG
454 if (adev->in_pci_err_recovery)
455 return;
456
2e0cc4d4 457 if (amdgpu_sriov_fullaccess(adev) &&
f7ee1874
HZ
458 adev->gfx.rlc.funcs &&
459 adev->gfx.rlc.funcs->is_rlcg_access_range) {
2e0cc4d4
ML
460 if (adev->gfx.rlc.funcs->is_rlcg_access_range(adev, reg))
461 return adev->gfx.rlc.funcs->rlcg_wreg(adev, reg, v);
f7ee1874
HZ
462 } else {
463 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
47ed4e1c 464 }
d38ceaf9
AD
465}
466
e3ecdffa
AD
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 */
d38ceaf9
AD
475u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
476{
bf36b52e
AG
477 if (adev->in_pci_err_recovery)
478 return 0;
479
d38ceaf9
AD
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
e3ecdffa
AD
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 */
d38ceaf9
AD
497void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
498{
bf36b52e
AG
499 if (adev->in_pci_err_recovery)
500 return;
501
d38ceaf9
AD
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 */
519u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
520{
bf36b52e
AG
521 if (adev->in_pci_err_recovery)
522 return 0;
523
d38ceaf9
AD
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 */
542void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
543{
bf36b52e
AG
544 if (adev->in_pci_err_recovery)
545 return;
546
d38ceaf9
AD
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
832be404
KW
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 */
563u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
564{
bf36b52e
AG
565 if (adev->in_pci_err_recovery)
566 return 0;
567
832be404
KW
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 */
586void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
587{
bf36b52e
AG
588 if (adev->in_pci_err_recovery)
589 return;
590
832be404
KW
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
1bba3683
HZ
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
22f453fb 604 * @reg_addr: indirect register address to read from
1bba3683
HZ
605 *
606 * Returns the value of indirect register @reg_addr
607 */
608u32 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
22f453fb 635 * @reg_addr: indirect register address to read from
1bba3683
HZ
636 *
637 * Returns the value of indirect register @reg_addr
638 */
639u64 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 */
675void 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 */
704void 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
d38ceaf9
AD
729/**
730 * amdgpu_invalid_rreg - dummy reg read function
731 *
982a820b 732 * @adev: amdgpu_device pointer
d38ceaf9
AD
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 */
739static 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 *
982a820b 749 * @adev: amdgpu_device pointer
d38ceaf9
AD
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 */
756static 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
4fa1c6a6
TZ
763/**
764 * amdgpu_invalid_rreg64 - dummy 64 bit reg read function
765 *
982a820b 766 * @adev: amdgpu_device pointer
4fa1c6a6
TZ
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 */
773static 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 *
982a820b 783 * @adev: amdgpu_device pointer
4fa1c6a6
TZ
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 */
790static 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
d38ceaf9
AD
797/**
798 * amdgpu_block_invalid_rreg - dummy reg read function
799 *
982a820b 800 * @adev: amdgpu_device pointer
d38ceaf9
AD
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 */
808static 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 *
982a820b 820 * @adev: amdgpu_device pointer
d38ceaf9
AD
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 */
828static 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
4d2997ab
AD
837/**
838 * amdgpu_device_asic_init - Wrapper for atom asic_init
839 *
982a820b 840 * @adev: amdgpu_device pointer
4d2997ab
AD
841 *
842 * Does any asic specific work and then calls atom asic init.
843 */
844static 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
e3ecdffa
AD
851/**
852 * amdgpu_device_vram_scratch_init - allocate the VRAM scratch page
853 *
982a820b 854 * @adev: amdgpu_device pointer
e3ecdffa
AD
855 *
856 * Allocates a scratch page of VRAM for use by various things in the
857 * driver.
858 */
06ec9070 859static int amdgpu_device_vram_scratch_init(struct amdgpu_device *adev)
d38ceaf9 860{
a4a02777
CK
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);
d38ceaf9
AD
866}
867
e3ecdffa
AD
868/**
869 * amdgpu_device_vram_scratch_fini - Free the VRAM scratch page
870 *
982a820b 871 * @adev: amdgpu_device pointer
e3ecdffa
AD
872 *
873 * Frees the VRAM scratch page.
874 */
06ec9070 875static void amdgpu_device_vram_scratch_fini(struct amdgpu_device *adev)
d38ceaf9 876{
078af1a3 877 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
d38ceaf9
AD
878}
879
880/**
9c3f2b54 881 * amdgpu_device_program_register_sequence - program an array of registers.
d38ceaf9
AD
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 */
9c3f2b54
AD
890void amdgpu_device_program_register_sequence(struct amdgpu_device *adev,
891 const u32 *registers,
892 const u32 array_size)
d38ceaf9
AD
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;
e0d07657
HZ
910 if (adev->family >= AMDGPU_FAMILY_AI)
911 tmp |= (or_mask & and_mask);
912 else
913 tmp |= or_mask;
d38ceaf9
AD
914 }
915 WREG32(reg, tmp);
916 }
917}
918
e3ecdffa
AD
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 */
8111c387 927void amdgpu_device_pci_config_reset(struct amdgpu_device *adev)
d38ceaf9
AD
928{
929 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
930}
931
932/*
933 * GPU doorbell aperture helpers function.
934 */
935/**
06ec9070 936 * amdgpu_device_doorbell_init - Init doorbell driver information.
d38ceaf9
AD
937 *
938 * @adev: amdgpu_device pointer
939 *
940 * Init doorbell driver information (CIK)
941 * Returns 0 on success, error on failure.
942 */
06ec9070 943static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
d38ceaf9 944{
6585661d 945
705e519e
CK
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
d6895ad3
CK
955 if (pci_resource_flags(adev->pdev, 2) & IORESOURCE_UNSET)
956 return -EINVAL;
957
22357775
AD
958 amdgpu_asic_init_doorbell_index(adev);
959
d38ceaf9
AD
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
edf600da 964 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
9564f192 965 adev->doorbell_index.max_assignment+1);
d38ceaf9
AD
966 if (adev->doorbell.num_doorbells == 0)
967 return -EINVAL;
968
ec3db8a6 969 /* For Vega, reserve and map two pages on doorbell BAR since SDMA
88dc26e4
OZ
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)
ec3db8a6
PY
974 */
975 if (adev->asic_type >= CHIP_VEGA10)
88dc26e4 976 adev->doorbell.num_doorbells += 0x400;
ec3db8a6 977
8972e5d2
CK
978 adev->doorbell.ptr = ioremap(adev->doorbell.base,
979 adev->doorbell.num_doorbells *
980 sizeof(u32));
981 if (adev->doorbell.ptr == NULL)
d38ceaf9 982 return -ENOMEM;
d38ceaf9
AD
983
984 return 0;
985}
986
987/**
06ec9070 988 * amdgpu_device_doorbell_fini - Tear down doorbell driver information.
d38ceaf9
AD
989 *
990 * @adev: amdgpu_device pointer
991 *
992 * Tear down doorbell driver information (CIK)
993 */
06ec9070 994static void amdgpu_device_doorbell_fini(struct amdgpu_device *adev)
d38ceaf9
AD
995{
996 iounmap(adev->doorbell.ptr);
997 adev->doorbell.ptr = NULL;
998}
999
22cb0164 1000
d38ceaf9
AD
1001
1002/*
06ec9070 1003 * amdgpu_device_wb_*()
455a7bc2 1004 * Writeback is the method by which the GPU updates special pages in memory
ea81a173 1005 * with the status of certain GPU events (fences, ring pointers,etc.).
d38ceaf9
AD
1006 */
1007
1008/**
06ec9070 1009 * amdgpu_device_wb_fini - Disable Writeback and free memory
d38ceaf9
AD
1010 *
1011 * @adev: amdgpu_device pointer
1012 *
1013 * Disables Writeback and frees the Writeback memory (all asics).
1014 * Used at driver shutdown.
1015 */
06ec9070 1016static void amdgpu_device_wb_fini(struct amdgpu_device *adev)
d38ceaf9
AD
1017{
1018 if (adev->wb.wb_obj) {
a76ed485
AD
1019 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
1020 &adev->wb.gpu_addr,
1021 (void **)&adev->wb.wb);
d38ceaf9
AD
1022 adev->wb.wb_obj = NULL;
1023 }
1024}
1025
1026/**
06ec9070 1027 * amdgpu_device_wb_init- Init Writeback driver info and allocate memory
d38ceaf9
AD
1028 *
1029 * @adev: amdgpu_device pointer
1030 *
455a7bc2 1031 * Initializes writeback and allocates writeback memory (all asics).
d38ceaf9
AD
1032 * Used at driver startup.
1033 * Returns 0 on success or an -error on failure.
1034 */
06ec9070 1035static int amdgpu_device_wb_init(struct amdgpu_device *adev)
d38ceaf9
AD
1036{
1037 int r;
1038
1039 if (adev->wb.wb_obj == NULL) {
97407b63
AD
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,
a76ed485
AD
1042 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
1043 &adev->wb.wb_obj, &adev->wb.gpu_addr,
1044 (void **)&adev->wb.wb);
d38ceaf9
AD
1045 if (r) {
1046 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
1047 return r;
1048 }
d38ceaf9
AD
1049
1050 adev->wb.num_wb = AMDGPU_MAX_WB;
1051 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
1052
1053 /* clear wb memory */
73469585 1054 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t) * 8);
d38ceaf9
AD
1055 }
1056
1057 return 0;
1058}
1059
1060/**
131b4b36 1061 * amdgpu_device_wb_get - Allocate a wb entry
d38ceaf9
AD
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 */
131b4b36 1069int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb)
d38ceaf9
AD
1070{
1071 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
d38ceaf9 1072
97407b63 1073 if (offset < adev->wb.num_wb) {
7014285a 1074 __set_bit(offset, adev->wb.used);
63ae07ca 1075 *wb = offset << 3; /* convert to dw offset */
0915fdbc
ML
1076 return 0;
1077 } else {
1078 return -EINVAL;
1079 }
1080}
1081
d38ceaf9 1082/**
131b4b36 1083 * amdgpu_device_wb_free - Free a wb entry
d38ceaf9
AD
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 */
131b4b36 1090void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb)
d38ceaf9 1091{
73469585 1092 wb >>= 3;
d38ceaf9 1093 if (wb < adev->wb.num_wb)
73469585 1094 __clear_bit(wb, adev->wb.used);
d38ceaf9
AD
1095}
1096
d6895ad3
CK
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 */
1106int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
1107{
453f617a 1108 int rbar_size = pci_rebar_bytes_to_size(adev->gmc.real_vram_size);
31b8adab
CK
1109 struct pci_bus *root;
1110 struct resource *res;
1111 unsigned i;
d6895ad3
CK
1112 u16 cmd;
1113 int r;
1114
0c03b912 1115 /* Bypass for VF */
1116 if (amdgpu_sriov_vf(adev))
1117 return 0;
1118
b7221f2b
AD
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
31b8adab
CK
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) {
0ebb7c54 1130 if (res && res->flags & (IORESOURCE_MEM | IORESOURCE_MEM_64) &&
31b8adab
CK
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
453f617a
ND
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
d6895ad3
CK
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. */
06ec9070 1149 amdgpu_device_doorbell_fini(adev);
d6895ad3
CK
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 */
06ec9070 1166 r = amdgpu_device_doorbell_init(adev);
d6895ad3
CK
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}
a05502e5 1174
d38ceaf9
AD
1175/*
1176 * GPU helpers function.
1177 */
1178/**
39c640c0 1179 * amdgpu_device_need_post - check if the hw need post or not
d38ceaf9
AD
1180 *
1181 * @adev: amdgpu_device pointer
1182 *
c836fec5
JQ
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.
d38ceaf9 1186 */
39c640c0 1187bool amdgpu_device_need_post(struct amdgpu_device *adev)
d38ceaf9
AD
1188{
1189 uint32_t reg;
1190
bec86378
ML
1191 if (amdgpu_sriov_vf(adev))
1192 return false;
1193
1194 if (amdgpu_passthrough(adev)) {
1da2c326
ML
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
bec86378
ML
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);
1da2c326
ML
1209 if (fw_ver < 0x00160e00)
1210 return true;
bec86378 1211 }
bec86378 1212 }
91fe77eb 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;
bec86378
ML
1230}
1231
d38ceaf9
AD
1232/* if we get transitioned to only one device, take VGA back */
1233/**
06ec9070 1234 * amdgpu_device_vga_set_decode - enable/disable vga decode
d38ceaf9
AD
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 */
06ec9070 1242static unsigned int amdgpu_device_vga_set_decode(void *cookie, bool state)
d38ceaf9
AD
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
e3ecdffa
AD
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 */
06ec9070 1263static void amdgpu_device_check_block_size(struct amdgpu_device *adev)
a1adf8be
CZ
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 */
bab4fee7
JZ
1268 if (amdgpu_vm_block_size == -1)
1269 return;
a1adf8be 1270
bab4fee7 1271 if (amdgpu_vm_block_size < 9) {
a1adf8be
CZ
1272 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1273 amdgpu_vm_block_size);
97489129 1274 amdgpu_vm_block_size = -1;
a1adf8be 1275 }
a1adf8be
CZ
1276}
1277
e3ecdffa
AD
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 */
06ec9070 1286static void amdgpu_device_check_vm_size(struct amdgpu_device *adev)
83ca145d 1287{
64dab074
AD
1288 /* no need to check the default value */
1289 if (amdgpu_vm_size == -1)
1290 return;
1291
83ca145d
ZJ
1292 if (amdgpu_vm_size < 1) {
1293 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1294 amdgpu_vm_size);
f3368128 1295 amdgpu_vm_size = -1;
83ca145d 1296 }
83ca145d
ZJ
1297}
1298
7951e376
RZ
1299static void amdgpu_device_check_smu_prv_buffer_size(struct amdgpu_device *adev)
1300{
1301 struct sysinfo si;
a9d4fe2f 1302 bool is_os_64 = (sizeof(void *) == 8);
7951e376
RZ
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
1333def_value1:
1334 DRM_WARN("No enough system memory\n");
1335def_value:
1336 adev->pm.smu_prv_buffer_size = 0;
1337}
1338
d38ceaf9 1339/**
06ec9070 1340 * amdgpu_device_check_arguments - validate module params
d38ceaf9
AD
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 */
912dfc84 1347static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
d38ceaf9 1348{
5b011235
CZ
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;
76117507 1353 } else if (!is_power_of_2(amdgpu_sched_jobs)){
5b011235
CZ
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 }
d38ceaf9 1358
83e74db6 1359 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
f9321cc4
CK
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);
83e74db6 1363 amdgpu_gart_size = -1;
d38ceaf9
AD
1364 }
1365
36d38372 1366 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
c4e1a13a 1367 /* gtt size must be greater or equal to 32M */
36d38372
CK
1368 dev_warn(adev->dev, "gtt size (%d) too small\n",
1369 amdgpu_gtt_size);
1370 amdgpu_gtt_size = -1;
d38ceaf9
AD
1371 }
1372
d07f14be
RH
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
5d5bd5e3
KW
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
7951e376
RZ
1390 amdgpu_device_check_smu_prv_buffer_size(adev);
1391
06ec9070 1392 amdgpu_device_check_vm_size(adev);
d38ceaf9 1393
06ec9070 1394 amdgpu_device_check_block_size(adev);
6a7f76e7 1395
19aede77 1396 adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type);
912dfc84 1397
c6252390 1398 amdgpu_gmc_tmz_set(adev);
01a8dcec 1399
9b498efa
AD
1400 amdgpu_gmc_noretry_set(adev);
1401
e3c00faa 1402 return 0;
d38ceaf9
AD
1403}
1404
1405/**
1406 * amdgpu_switcheroo_set_state - set switcheroo state
1407 *
1408 * @pdev: pci dev pointer
1694467b 1409 * @state: vga_switcheroo state
d38ceaf9
AD
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 */
8aba21b7
LT
1414static void amdgpu_switcheroo_set_state(struct pci_dev *pdev,
1415 enum vga_switcheroo_state state)
d38ceaf9
AD
1416{
1417 struct drm_device *dev = pci_get_drvdata(pdev);
de185019 1418 int r;
d38ceaf9 1419
fd496ca8 1420 if (amdgpu_device_supports_atpx(dev) && state == VGA_SWITCHEROO_OFF)
d38ceaf9
AD
1421 return;
1422
1423 if (state == VGA_SWITCHEROO_ON) {
dd4fa6c1 1424 pr_info("switched on\n");
d38ceaf9
AD
1425 /* don't suspend or resume card normally */
1426 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1427
8f66090b
TZ
1428 pci_set_power_state(pdev, PCI_D0);
1429 amdgpu_device_load_pci_state(pdev);
1430 r = pci_enable_device(pdev);
de185019
AD
1431 if (r)
1432 DRM_WARN("pci_enable_device failed (%d)\n", r);
1433 amdgpu_device_resume(dev, true);
d38ceaf9 1434
d38ceaf9
AD
1435 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1436 drm_kms_helper_poll_enable(dev);
1437 } else {
dd4fa6c1 1438 pr_info("switched off\n");
d38ceaf9
AD
1439 drm_kms_helper_poll_disable(dev);
1440 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
de185019 1441 amdgpu_device_suspend(dev, true);
8f66090b 1442 amdgpu_device_cache_pci_state(pdev);
de185019 1443 /* Shut down the device */
8f66090b
TZ
1444 pci_disable_device(pdev);
1445 pci_set_power_state(pdev, PCI_D3cold);
d38ceaf9
AD
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 */
1459static 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 */
7e13ad89 1468 return atomic_read(&dev->open_count) == 0;
d38ceaf9
AD
1469}
1470
1471static 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
e3ecdffa
AD
1477/**
1478 * amdgpu_device_ip_set_clockgating_state - set the CG state
1479 *
87e3f136 1480 * @dev: amdgpu_device pointer
e3ecdffa
AD
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 */
43fa561f 1488int amdgpu_device_ip_set_clockgating_state(void *dev,
2990a1fc
AD
1489 enum amd_ip_block_type block_type,
1490 enum amd_clockgating_state state)
d38ceaf9 1491{
43fa561f 1492 struct amdgpu_device *adev = dev;
d38ceaf9
AD
1493 int i, r = 0;
1494
1495 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 1496 if (!adev->ip_blocks[i].status.valid)
9ecbe7f5 1497 continue;
c722865a
RZ
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);
d38ceaf9
AD
1507 }
1508 return r;
1509}
1510
e3ecdffa
AD
1511/**
1512 * amdgpu_device_ip_set_powergating_state - set the PG state
1513 *
87e3f136 1514 * @dev: amdgpu_device pointer
e3ecdffa
AD
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 */
43fa561f 1522int amdgpu_device_ip_set_powergating_state(void *dev,
2990a1fc
AD
1523 enum amd_ip_block_type block_type,
1524 enum amd_powergating_state state)
d38ceaf9 1525{
43fa561f 1526 struct amdgpu_device *adev = dev;
d38ceaf9
AD
1527 int i, r = 0;
1528
1529 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 1530 if (!adev->ip_blocks[i].status.valid)
9ecbe7f5 1531 continue;
c722865a
RZ
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);
d38ceaf9
AD
1541 }
1542 return r;
1543}
1544
e3ecdffa
AD
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 */
2990a1fc
AD
1556void amdgpu_device_ip_get_clockgating_state(struct amdgpu_device *adev,
1557 u32 *flags)
6cb2d4e4
HR
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
e3ecdffa
AD
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 */
2990a1fc
AD
1578int amdgpu_device_ip_wait_for_idle(struct amdgpu_device *adev,
1579 enum amd_ip_block_type block_type)
5dbbb60b
AD
1580{
1581 int i, r;
1582
1583 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 1584 if (!adev->ip_blocks[i].status.valid)
9ecbe7f5 1585 continue;
a1255107
AD
1586 if (adev->ip_blocks[i].version->type == block_type) {
1587 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
5dbbb60b
AD
1588 if (r)
1589 return r;
1590 break;
1591 }
1592 }
1593 return 0;
1594
1595}
1596
e3ecdffa
AD
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 */
2990a1fc
AD
1606bool amdgpu_device_ip_is_idle(struct amdgpu_device *adev,
1607 enum amd_ip_block_type block_type)
5dbbb60b
AD
1608{
1609 int i;
1610
1611 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 1612 if (!adev->ip_blocks[i].status.valid)
9ecbe7f5 1613 continue;
a1255107
AD
1614 if (adev->ip_blocks[i].version->type == block_type)
1615 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
5dbbb60b
AD
1616 }
1617 return true;
1618
1619}
1620
e3ecdffa
AD
1621/**
1622 * amdgpu_device_ip_get_ip_block - get a hw IP pointer
1623 *
1624 * @adev: amdgpu_device pointer
87e3f136 1625 * @type: Type of hardware IP (SMU, GFX, UVD, etc.)
e3ecdffa
AD
1626 *
1627 * Returns a pointer to the hardware IP block structure
1628 * if it exists for the asic, otherwise NULL.
1629 */
2990a1fc
AD
1630struct amdgpu_ip_block *
1631amdgpu_device_ip_get_ip_block(struct amdgpu_device *adev,
1632 enum amd_ip_block_type type)
d38ceaf9
AD
1633{
1634 int i;
1635
1636 for (i = 0; i < adev->num_ip_blocks; i++)
a1255107 1637 if (adev->ip_blocks[i].version->type == type)
d38ceaf9
AD
1638 return &adev->ip_blocks[i];
1639
1640 return NULL;
1641}
1642
1643/**
2990a1fc 1644 * amdgpu_device_ip_block_version_cmp
d38ceaf9
AD
1645 *
1646 * @adev: amdgpu_device pointer
5fc3aeeb 1647 * @type: enum amd_ip_block_type
d38ceaf9
AD
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 */
2990a1fc
AD
1654int amdgpu_device_ip_block_version_cmp(struct amdgpu_device *adev,
1655 enum amd_ip_block_type type,
1656 u32 major, u32 minor)
d38ceaf9 1657{
2990a1fc 1658 struct amdgpu_ip_block *ip_block = amdgpu_device_ip_get_ip_block(adev, type);
d38ceaf9 1659
a1255107
AD
1660 if (ip_block && ((ip_block->version->major > major) ||
1661 ((ip_block->version->major == major) &&
1662 (ip_block->version->minor >= minor))))
d38ceaf9
AD
1663 return 0;
1664
1665 return 1;
1666}
1667
a1255107 1668/**
2990a1fc 1669 * amdgpu_device_ip_block_add
a1255107
AD
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 */
2990a1fc
AD
1677int amdgpu_device_ip_block_add(struct amdgpu_device *adev,
1678 const struct amdgpu_ip_block_version *ip_block_version)
a1255107
AD
1679{
1680 if (!ip_block_version)
1681 return -EINVAL;
1682
e966a725 1683 DRM_INFO("add ip block number %d <%s>\n", adev->num_ip_blocks,
a0bae357
HR
1684 ip_block_version->funcs->name);
1685
a1255107
AD
1686 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1687
1688 return 0;
1689}
1690
e3ecdffa
AD
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 */
483ef985 1703static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
9accf2fd
ED
1704{
1705 adev->enable_virtual_display = false;
1706
1707 if (amdgpu_virtual_display) {
8f66090b 1708 const char *pci_address_name = pci_name(adev->pdev);
0f66356d 1709 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
9accf2fd
ED
1710
1711 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1712 pciaddstr_tmp = pciaddstr;
0f66356d
ED
1713 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1714 pciaddname = strsep(&pciaddname_tmp, ",");
967de2a9
YT
1715 if (!strcmp("all", pciaddname)
1716 || !strcmp(pci_address_name, pciaddname)) {
0f66356d
ED
1717 long num_crtc;
1718 int res = -1;
1719
9accf2fd 1720 adev->enable_virtual_display = true;
0f66356d
ED
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 }
9accf2fd
ED
1735 break;
1736 }
1737 }
1738
0f66356d
ED
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);
9accf2fd
ED
1742
1743 kfree(pciaddstr);
1744 }
1745}
1746
e3ecdffa
AD
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 */
e2a75f88
AD
1757static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1758{
e2a75f88 1759 const char *chip_name;
c0a43457 1760 char fw_name[40];
e2a75f88
AD
1761 int err;
1762 const struct gpu_info_firmware_header_v1_0 *hdr;
1763
ab4fe3e1
HR
1764 adev->firmware.gpu_info_fw = NULL;
1765
72de33f8 1766 if (adev->mman.discovery_bin) {
258620d0 1767 amdgpu_discovery_get_gfx_info(adev);
cc375d8c
TY
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;
258620d0
AD
1776 }
1777
e2a75f88 1778 switch (adev->asic_type) {
e2a75f88
AD
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
da87c30b
AD
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:
27c0bc71 1802 case CHIP_VEGA20:
84d244a3
JC
1803 case CHIP_SIENNA_CICHLID:
1804 case CHIP_NAVY_FLOUNDER:
eac88a5f 1805 case CHIP_DIMGREY_CAVEFISH:
e2a75f88
AD
1806 default:
1807 return 0;
1808 case CHIP_VEGA10:
1809 chip_name = "vega10";
1810 break;
3f76dced
AD
1811 case CHIP_VEGA12:
1812 chip_name = "vega12";
1813 break;
2d2e5e7e 1814 case CHIP_RAVEN:
54f78a76 1815 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
54c4d17e 1816 chip_name = "raven2";
54f78a76 1817 else if (adev->apu_flags & AMD_APU_IS_PICASSO)
741deade 1818 chip_name = "picasso";
54c4d17e
FX
1819 else
1820 chip_name = "raven";
2d2e5e7e 1821 break;
65e60f6e
LM
1822 case CHIP_ARCTURUS:
1823 chip_name = "arcturus";
1824 break;
b51a26a0 1825 case CHIP_RENOIR:
2e62f0b5
PL
1826 if (adev->apu_flags & AMD_APU_IS_RENOIR)
1827 chip_name = "renoir";
1828 else
1829 chip_name = "green_sardine";
b51a26a0 1830 break;
23c6268e
HR
1831 case CHIP_NAVI10:
1832 chip_name = "navi10";
1833 break;
ed42cfe1
XY
1834 case CHIP_NAVI14:
1835 chip_name = "navi14";
1836 break;
42b325e5
XY
1837 case CHIP_NAVI12:
1838 chip_name = "navi12";
1839 break;
4e52a9f8
HR
1840 case CHIP_VANGOGH:
1841 chip_name = "vangogh";
1842 break;
e2a75f88
AD
1843 }
1844
1845 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
ab4fe3e1 1846 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
e2a75f88
AD
1847 if (err) {
1848 dev_err(adev->dev,
1849 "Failed to load gpu_info firmware \"%s\"\n",
1850 fw_name);
1851 goto out;
1852 }
ab4fe3e1 1853 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
e2a75f88
AD
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
ab4fe3e1 1861 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
e2a75f88
AD
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 =
ab4fe3e1 1868 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
e2a75f88
AD
1869 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1870
cc375d8c
TY
1871 /*
1872 * Should be droped when DAL no longer needs it.
1873 */
1874 if (adev->asic_type == CHIP_NAVI12)
ec51d3fa
XY
1875 goto parse_soc_bounding_box;
1876
b5ab16bf
AD
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);
e2a75f88 1881 adev->gfx.config.max_texture_channel_caches =
b5ab16bf
AD
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);
e2a75f88 1887 adev->gfx.config.double_offchip_lds_buf =
b5ab16bf
AD
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);
51fd0370
HZ
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);
48321c3d 1895 if (hdr->version_minor >= 1) {
35c2e910
HZ
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 }
ec51d3fa
XY
1904
1905parse_soc_bounding_box:
ec51d3fa
XY
1906 /*
1907 * soc bounding box info is not integrated in disocovery table,
258620d0 1908 * we always need to parse it from gpu info firmware if needed.
ec51d3fa 1909 */
48321c3d
HW
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 }
e2a75f88
AD
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 }
1924out:
e2a75f88
AD
1925 return err;
1926}
1927
e3ecdffa
AD
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 */
06ec9070 1938static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
d38ceaf9 1939{
aaa36a97 1940 int i, r;
d38ceaf9 1941
483ef985 1942 amdgpu_device_enable_virtual_display(adev);
a6be7570 1943
00a979f3 1944 if (amdgpu_sriov_vf(adev)) {
00a979f3 1945 r = amdgpu_virt_request_full_gpu(adev, true);
aaa36a97
AD
1946 if (r)
1947 return r;
00a979f3
WS
1948 }
1949
d38ceaf9 1950 switch (adev->asic_type) {
33f34802
KW
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:
295d0daf 1957 adev->family = AMDGPU_FAMILY_SI;
33f34802
KW
1958 r = si_set_ip_blocks(adev);
1959 if (r)
1960 return r;
1961 break;
1962#endif
a2e73f56
AD
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:
e1ad2d53 1969 if (adev->flags & AMD_IS_APU)
a2e73f56 1970 adev->family = AMDGPU_FAMILY_KV;
e1ad2d53
AD
1971 else
1972 adev->family = AMDGPU_FAMILY_CI;
a2e73f56
AD
1973
1974 r = cik_set_ip_blocks(adev);
1975 if (r)
1976 return r;
1977 break;
1978#endif
da87c30b
AD
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;
e48a3cd9
AD
1997 case CHIP_VEGA10:
1998 case CHIP_VEGA12:
e4bd8170 1999 case CHIP_VEGA20:
e48a3cd9 2000 case CHIP_RAVEN:
61cf44c1 2001 case CHIP_ARCTURUS:
b51a26a0 2002 case CHIP_RENOIR:
70534d1e 2003 if (adev->flags & AMD_IS_APU)
2ca8a5d2
CZ
2004 adev->family = AMDGPU_FAMILY_RV;
2005 else
2006 adev->family = AMDGPU_FAMILY_AI;
460826e6
KW
2007
2008 r = soc15_set_ip_blocks(adev);
2009 if (r)
2010 return r;
2011 break;
0a5b8c7b 2012 case CHIP_NAVI10:
7ecb5cd4 2013 case CHIP_NAVI14:
4808cf9c 2014 case CHIP_NAVI12:
11e8aef5 2015 case CHIP_SIENNA_CICHLID:
41f446bf 2016 case CHIP_NAVY_FLOUNDER:
144722fa 2017 case CHIP_DIMGREY_CAVEFISH:
4e52a9f8
HR
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;
0a5b8c7b
HR
2023
2024 r = nv_set_ip_blocks(adev);
2025 if (r)
2026 return r;
2027 break;
d38ceaf9
AD
2028 default:
2029 /* FIXME: not supported yet */
2030 return -EINVAL;
2031 }
2032
1884734a 2033 amdgpu_amdkfd_device_probe(adev);
2034
3b94fb10 2035 adev->pm.pp_feature = amdgpu_pp_feature_mask;
a35ad98b 2036 if (amdgpu_sriov_vf(adev) || sched_policy == KFD_SCHED_POLICY_NO_HWS)
00544006 2037 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
00f54b97 2038
d38ceaf9
AD
2039 for (i = 0; i < adev->num_ip_blocks; i++) {
2040 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
ed8cf00c
HR
2041 DRM_ERROR("disabled ip block: %d <%s>\n",
2042 i, adev->ip_blocks[i].version->funcs->name);
a1255107 2043 adev->ip_blocks[i].status.valid = false;
d38ceaf9 2044 } else {
a1255107
AD
2045 if (adev->ip_blocks[i].version->funcs->early_init) {
2046 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
2c1a2784 2047 if (r == -ENOENT) {
a1255107 2048 adev->ip_blocks[i].status.valid = false;
2c1a2784 2049 } else if (r) {
a1255107
AD
2050 DRM_ERROR("early_init of IP block <%s> failed %d\n",
2051 adev->ip_blocks[i].version->funcs->name, r);
d38ceaf9 2052 return r;
2c1a2784 2053 } else {
a1255107 2054 adev->ip_blocks[i].status.valid = true;
2c1a2784 2055 }
974e6b64 2056 } else {
a1255107 2057 adev->ip_blocks[i].status.valid = true;
d38ceaf9 2058 }
d38ceaf9 2059 }
21a249ca
AD
2060 /* get the vbios after the asic_funcs are set up */
2061 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON) {
6e29c227
AD
2062 r = amdgpu_device_parse_gpu_info_fw(adev);
2063 if (r)
2064 return r;
2065
21a249ca
AD
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 }
d38ceaf9
AD
2077 }
2078
395d1fb9
NH
2079 adev->cg_flags &= amdgpu_cg_mask;
2080 adev->pg_flags &= amdgpu_pg_mask;
2081
d38ceaf9
AD
2082 return 0;
2083}
2084
0a4f2520
RZ
2085static 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 ||
2d11fd3f 2095 (amdgpu_sriov_vf(adev) && (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)) ||
0a4f2520
RZ
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
2110static 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
7a3e0bb2
RZ
2131static int amdgpu_device_fw_loading(struct amdgpu_device *adev)
2132{
2133 int r = 0;
2134 int i;
80f41f84 2135 uint32_t smu_version;
7a3e0bb2
RZ
2136
2137 if (adev->asic_type >= CHIP_VEGA10) {
2138 for (i = 0; i < adev->num_ip_blocks; i++) {
482f0e53
ML
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
53b3f8f4 2146 if (amdgpu_in_reset(adev) || adev->in_suspend) {
482f0e53
ML
2147 r = adev->ip_blocks[i].version->funcs->resume(adev);
2148 if (r) {
2149 DRM_ERROR("resume of IP block <%s> failed %d\n",
7a3e0bb2 2150 adev->ip_blocks[i].version->funcs->name, r);
482f0e53
ML
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;
7a3e0bb2 2159 }
7a3e0bb2 2160 }
482f0e53
ML
2161
2162 adev->ip_blocks[i].status.hw = true;
2163 break;
7a3e0bb2
RZ
2164 }
2165 }
482f0e53 2166
8973d9ec
ED
2167 if (!amdgpu_sriov_vf(adev) || adev->asic_type == CHIP_TONGA)
2168 r = amdgpu_pm_load_smu_firmware(adev, &smu_version);
7a3e0bb2 2169
80f41f84 2170 return r;
7a3e0bb2
RZ
2171}
2172
e3ecdffa
AD
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 */
06ec9070 2184static int amdgpu_device_ip_init(struct amdgpu_device *adev)
d38ceaf9
AD
2185{
2186 int i, r;
2187
c030f2e4 2188 r = amdgpu_ras_init(adev);
2189 if (r)
2190 return r;
2191
d38ceaf9 2192 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 2193 if (!adev->ip_blocks[i].status.valid)
d38ceaf9 2194 continue;
a1255107 2195 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
2c1a2784 2196 if (r) {
a1255107
AD
2197 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
2198 adev->ip_blocks[i].version->funcs->name, r);
72d3f592 2199 goto init_failed;
2c1a2784 2200 }
a1255107 2201 adev->ip_blocks[i].status.sw = true;
bfca0289 2202
d38ceaf9 2203 /* need to do gmc hw init early so we can allocate gpu mem */
a1255107 2204 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
06ec9070 2205 r = amdgpu_device_vram_scratch_init(adev);
2c1a2784
AD
2206 if (r) {
2207 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
72d3f592 2208 goto init_failed;
2c1a2784 2209 }
a1255107 2210 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
2c1a2784
AD
2211 if (r) {
2212 DRM_ERROR("hw_init %d failed %d\n", i, r);
72d3f592 2213 goto init_failed;
2c1a2784 2214 }
06ec9070 2215 r = amdgpu_device_wb_init(adev);
2c1a2784 2216 if (r) {
06ec9070 2217 DRM_ERROR("amdgpu_device_wb_init failed %d\n", r);
72d3f592 2218 goto init_failed;
2c1a2784 2219 }
a1255107 2220 adev->ip_blocks[i].status.hw = true;
2493664f
ML
2221
2222 /* right after GMC hw init, we create CSA */
f92d5c61 2223 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
1e256e27
RZ
2224 r = amdgpu_allocate_static_csa(adev, &adev->virt.csa_obj,
2225 AMDGPU_GEM_DOMAIN_VRAM,
2226 AMDGPU_CSA_SIZE);
2493664f
ML
2227 if (r) {
2228 DRM_ERROR("allocate CSA failed %d\n", r);
72d3f592 2229 goto init_failed;
2493664f
ML
2230 }
2231 }
d38ceaf9
AD
2232 }
2233 }
2234
c9ffa427
YT
2235 if (amdgpu_sriov_vf(adev))
2236 amdgpu_virt_init_data_exchange(adev);
2237
533aed27
AG
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
c8963ea4
RZ
2245 r = amdgpu_ucode_create_bo(adev); /* create ucode bo when sw_init complete*/
2246 if (r)
72d3f592 2247 goto init_failed;
0a4f2520
RZ
2248
2249 r = amdgpu_device_ip_hw_init_phase1(adev);
2250 if (r)
72d3f592 2251 goto init_failed;
0a4f2520 2252
7a3e0bb2
RZ
2253 r = amdgpu_device_fw_loading(adev);
2254 if (r)
72d3f592 2255 goto init_failed;
7a3e0bb2 2256
0a4f2520
RZ
2257 r = amdgpu_device_ip_hw_init_phase2(adev);
2258 if (r)
72d3f592 2259 goto init_failed;
d38ceaf9 2260
121a2bc6
AG
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.
b82e65a9
GC
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.
121a2bc6
AG
2272 *
2273 * Note: theoretically, this should be called before all vram allocations
2274 * to protect retired page from abusing
2275 */
b82e65a9
GC
2276 r = amdgpu_ras_recovery_init(adev);
2277 if (r)
2278 goto init_failed;
121a2bc6 2279
3e2e2ab5
HZ
2280 if (adev->gmc.xgmi.num_physical_nodes > 1)
2281 amdgpu_xgmi_add_device(adev);
1884734a 2282 amdgpu_amdkfd_device_init(adev);
c6332b97 2283
bd607166
KR
2284 amdgpu_fru_get_product_info(adev);
2285
72d3f592 2286init_failed:
c9ffa427 2287 if (amdgpu_sriov_vf(adev))
c6332b97 2288 amdgpu_virt_release_full_gpu(adev, true);
2289
72d3f592 2290 return r;
d38ceaf9
AD
2291}
2292
e3ecdffa
AD
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 */
06ec9070 2302static void amdgpu_device_fill_reset_magic(struct amdgpu_device *adev)
0c49e0b8
CZ
2303{
2304 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
2305}
2306
e3ecdffa
AD
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 */
06ec9070 2317static bool amdgpu_device_check_vram_lost(struct amdgpu_device *adev)
0c49e0b8 2318{
dadce777
EQ
2319 if (memcmp(adev->gart.ptr, adev->reset_magic,
2320 AMDGPU_RESET_MAGIC_NUM))
2321 return true;
2322
53b3f8f4 2323 if (!amdgpu_in_reset(adev))
dadce777
EQ
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 }
0c49e0b8
CZ
2337}
2338
e3ecdffa 2339/**
1112a46b 2340 * amdgpu_device_set_cg_state - set clockgating for amdgpu device
e3ecdffa
AD
2341 *
2342 * @adev: amdgpu_device pointer
b8b72130 2343 * @state: clockgating state (gate or ungate)
e3ecdffa 2344 *
e3ecdffa 2345 * The list of all the hardware IPs that make up the asic is walked and the
1112a46b
RZ
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.
e3ecdffa
AD
2349 * Returns 0 on success, negative error code on failure.
2350 */
fdd34271 2351
1112a46b
RZ
2352static int amdgpu_device_set_cg_state(struct amdgpu_device *adev,
2353 enum amd_clockgating_state state)
d38ceaf9 2354{
1112a46b 2355 int i, j, r;
d38ceaf9 2356
4a2ba394
SL
2357 if (amdgpu_emu_mode == 1)
2358 return 0;
2359
1112a46b
RZ
2360 for (j = 0; j < adev->num_ip_blocks; j++) {
2361 i = state == AMD_CG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
a2d31dc3 2362 if (!adev->ip_blocks[i].status.late_initialized)
d38ceaf9 2363 continue;
4a446d55 2364 /* skip CG for VCE/UVD, it's handled specially */
a1255107 2365 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
57716327 2366 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE &&
34319b32 2367 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCN &&
52f2e779 2368 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
57716327 2369 adev->ip_blocks[i].version->funcs->set_clockgating_state) {
4a446d55 2370 /* enable clockgating to save power */
a1255107 2371 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1112a46b 2372 state);
4a446d55
AD
2373 if (r) {
2374 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
a1255107 2375 adev->ip_blocks[i].version->funcs->name, r);
4a446d55
AD
2376 return r;
2377 }
b0b00ff1 2378 }
d38ceaf9 2379 }
06b18f61 2380
c9f96fd5
RZ
2381 return 0;
2382}
2383
1112a46b 2384static int amdgpu_device_set_pg_state(struct amdgpu_device *adev, enum amd_powergating_state state)
c9f96fd5 2385{
1112a46b 2386 int i, j, r;
06b18f61 2387
c9f96fd5
RZ
2388 if (amdgpu_emu_mode == 1)
2389 return 0;
2390
1112a46b
RZ
2391 for (j = 0; j < adev->num_ip_blocks; j++) {
2392 i = state == AMD_PG_STATE_GATE ? j : adev->num_ip_blocks - j - 1;
a2d31dc3 2393 if (!adev->ip_blocks[i].status.late_initialized)
c9f96fd5
RZ
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 &&
52f2e779 2399 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_JPEG &&
c9f96fd5
RZ
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,
1112a46b 2403 state);
c9f96fd5
RZ
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 }
2dc80b00
S
2411 return 0;
2412}
2413
beff74bc
AD
2414static 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) &&
f10bb940 2434 !gpu_ins->mgpu_fan_enabled) {
beff74bc
AD
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
2443out:
2444 mutex_unlock(&mgpu_info.mutex);
2445
2446 return ret;
2447}
2448
e3ecdffa
AD
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 */
06ec9070 2461static int amdgpu_device_ip_late_init(struct amdgpu_device *adev)
2dc80b00 2462{
60599a03 2463 struct amdgpu_gpu_instance *gpu_instance;
2dc80b00
S
2464 int i = 0, r;
2465
2466 for (i = 0; i < adev->num_ip_blocks; i++) {
73f847db 2467 if (!adev->ip_blocks[i].status.hw)
2dc80b00
S
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 }
2dc80b00 2476 }
73f847db 2477 adev->ip_blocks[i].status.late_initialized = true;
2dc80b00
S
2478 }
2479
a891d239
DL
2480 amdgpu_ras_set_error_query_ready(adev, true);
2481
1112a46b
RZ
2482 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_GATE);
2483 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_GATE);
916ac57f 2484
06ec9070 2485 amdgpu_device_fill_reset_magic(adev);
d38ceaf9 2486
beff74bc
AD
2487 r = amdgpu_device_enable_mgpu_fan_boost();
2488 if (r)
2489 DRM_ERROR("enable mgpu fan boost failed (%d).\n", r);
2490
60599a03
EQ
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
d84a430d
JK
2514 r = amdgpu_xgmi_set_pstate(gpu_instance->adev,
2515 AMDGPU_XGMI_PSTATE_MIN);
60599a03
EQ
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
d38ceaf9
AD
2526 return 0;
2527}
2528
e3ecdffa
AD
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 */
06ec9070 2540static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
d38ceaf9
AD
2541{
2542 int i, r;
2543
5278a159
SY
2544 if (amdgpu_sriov_vf(adev) && adev->virt.ras_init_done)
2545 amdgpu_virt_release_ras_err_handler_data(adev);
2546
c030f2e4 2547 amdgpu_ras_pre_fini(adev);
2548
a82400b5
AG
2549 if (adev->gmc.xgmi.num_physical_nodes > 1)
2550 amdgpu_xgmi_remove_device(adev);
2551
05df1f01 2552 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
fdd34271
RZ
2553 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2554
26eb6b51
DL
2555 amdgpu_amdkfd_device_fini(adev);
2556
3e96dbfd
AD
2557 /* need to disable SMC first */
2558 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 2559 if (!adev->ip_blocks[i].status.hw)
3e96dbfd 2560 continue;
fdd34271 2561 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
a1255107 2562 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
3e96dbfd
AD
2563 /* XXX handle errors */
2564 if (r) {
2565 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
a1255107 2566 adev->ip_blocks[i].version->funcs->name, r);
3e96dbfd 2567 }
a1255107 2568 adev->ip_blocks[i].status.hw = false;
3e96dbfd
AD
2569 break;
2570 }
2571 }
2572
d38ceaf9 2573 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
a1255107 2574 if (!adev->ip_blocks[i].status.hw)
d38ceaf9 2575 continue;
8201a67a 2576
a1255107 2577 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
d38ceaf9 2578 /* XXX handle errors */
2c1a2784 2579 if (r) {
a1255107
AD
2580 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
2581 adev->ip_blocks[i].version->funcs->name, r);
2c1a2784 2582 }
8201a67a 2583
a1255107 2584 adev->ip_blocks[i].status.hw = false;
d38ceaf9
AD
2585 }
2586
9950cda2 2587
d38ceaf9 2588 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
a1255107 2589 if (!adev->ip_blocks[i].status.sw)
d38ceaf9 2590 continue;
c12aba3a
ML
2591
2592 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
c8963ea4 2593 amdgpu_ucode_free_bo(adev);
1e256e27 2594 amdgpu_free_static_csa(&adev->virt.csa_obj);
c12aba3a
ML
2595 amdgpu_device_wb_fini(adev);
2596 amdgpu_device_vram_scratch_fini(adev);
533aed27 2597 amdgpu_ib_pool_fini(adev);
c12aba3a
ML
2598 }
2599
a1255107 2600 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
d38ceaf9 2601 /* XXX handle errors */
2c1a2784 2602 if (r) {
a1255107
AD
2603 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
2604 adev->ip_blocks[i].version->funcs->name, r);
2c1a2784 2605 }
a1255107
AD
2606 adev->ip_blocks[i].status.sw = false;
2607 adev->ip_blocks[i].status.valid = false;
d38ceaf9
AD
2608 }
2609
a6dcfd9c 2610 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
a1255107 2611 if (!adev->ip_blocks[i].status.late_initialized)
8a2eef1d 2612 continue;
a1255107
AD
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;
a6dcfd9c
ML
2616 }
2617
c030f2e4 2618 amdgpu_ras_fini(adev);
2619
030308fc 2620 if (amdgpu_sriov_vf(adev))
24136135
ML
2621 if (amdgpu_virt_release_full_gpu(adev, false))
2622 DRM_ERROR("failed to release exclusive mode on fini\n");
2493664f 2623
d38ceaf9
AD
2624 return 0;
2625}
2626
e3ecdffa 2627/**
beff74bc 2628 * amdgpu_device_delayed_init_work_handler - work handler for IB tests
e3ecdffa 2629 *
1112a46b 2630 * @work: work_struct.
e3ecdffa 2631 */
beff74bc 2632static void amdgpu_device_delayed_init_work_handler(struct work_struct *work)
2dc80b00
S
2633{
2634 struct amdgpu_device *adev =
beff74bc 2635 container_of(work, struct amdgpu_device, delayed_init_work.work);
916ac57f
RZ
2636 int r;
2637
2638 r = amdgpu_ib_ring_tests(adev);
2639 if (r)
2640 DRM_ERROR("ib ring test failed (%d).\n", r);
2dc80b00
S
2641}
2642
1e317b99
RZ
2643static 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
e3ecdffa 2656/**
e7854a03 2657 * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)
e3ecdffa
AD
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 */
e7854a03
AD
2667static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
2668{
2669 int i, r;
2670
9ca5b8a1 2671 if (!amdgpu_acpi_is_s0ix_supported(adev) || amdgpu_in_reset(adev)) {
628c36d7
PL
2672 amdgpu_device_set_pg_state(adev, AMD_PG_STATE_UNGATE);
2673 amdgpu_device_set_cg_state(adev, AMD_CG_STATE_UNGATE);
2674 }
05df1f01 2675
e7854a03
AD
2676 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
2677 if (!adev->ip_blocks[i].status.valid)
2678 continue;
2b9f7848 2679
e7854a03 2680 /* displays are handled separately */
2b9f7848
ND
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;
e7854a03 2691 }
2b9f7848
ND
2692
2693 adev->ip_blocks[i].status.hw = false;
e7854a03
AD
2694 }
2695
e7854a03
AD
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 */
2710static int amdgpu_device_ip_suspend_phase2(struct amdgpu_device *adev)
d38ceaf9
AD
2711{
2712 int i, r;
2713
2714 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
a1255107 2715 if (!adev->ip_blocks[i].status.valid)
d38ceaf9 2716 continue;
e7854a03
AD
2717 /* displays are handled in phase1 */
2718 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)
2719 continue;
bff77e86
LM
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 }
d38ceaf9 2726 /* XXX handle errors */
a1255107 2727 r = adev->ip_blocks[i].version->funcs->suspend(adev);
d38ceaf9 2728 /* XXX handle errors */
2c1a2784 2729 if (r) {
a1255107
AD
2730 DRM_ERROR("suspend of IP block <%s> failed %d\n",
2731 adev->ip_blocks[i].version->funcs->name, r);
2c1a2784 2732 }
876923fb 2733 adev->ip_blocks[i].status.hw = false;
a3a09142 2734 /* handle putting the SMC in the appropriate state */
86b93fd6
JZ
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 }
a3a09142
AD
2743 }
2744 }
b5507c7e 2745 adev->ip_blocks[i].status.hw = false;
d38ceaf9
AD
2746 }
2747
2748 return 0;
2749}
2750
e7854a03
AD
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 */
2762int amdgpu_device_ip_suspend(struct amdgpu_device *adev)
2763{
2764 int r;
2765
e7819644
YT
2766 if (amdgpu_sriov_vf(adev))
2767 amdgpu_virt_request_full_gpu(adev, false);
2768
e7854a03
AD
2769 r = amdgpu_device_ip_suspend_phase1(adev);
2770 if (r)
2771 return r;
2772 r = amdgpu_device_ip_suspend_phase2(adev);
2773
e7819644
YT
2774 if (amdgpu_sriov_vf(adev))
2775 amdgpu_virt_release_full_gpu(adev, false);
2776
e7854a03
AD
2777 return r;
2778}
2779
06ec9070 2780static int amdgpu_device_ip_reinit_early_sriov(struct amdgpu_device *adev)
a90ad3c2
ML
2781{
2782 int i, r;
2783
2cb681b6
ML
2784 static enum amd_ip_block_type ip_order[] = {
2785 AMD_IP_BLOCK_TYPE_GMC,
2786 AMD_IP_BLOCK_TYPE_COMMON,
39186aef 2787 AMD_IP_BLOCK_TYPE_PSP,
2cb681b6
ML
2788 AMD_IP_BLOCK_TYPE_IH,
2789 };
a90ad3c2 2790
2cb681b6
ML
2791 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2792 int j;
2793 struct amdgpu_ip_block *block;
a90ad3c2 2794
4cd2a96d
J
2795 block = &adev->ip_blocks[i];
2796 block->status.hw = false;
2cb681b6 2797
4cd2a96d 2798 for (j = 0; j < ARRAY_SIZE(ip_order); j++) {
2cb681b6 2799
4cd2a96d 2800 if (block->version->type != ip_order[j] ||
2cb681b6
ML
2801 !block->status.valid)
2802 continue;
2803
2804 r = block->version->funcs->hw_init(adev);
0aaeefcc 2805 DRM_INFO("RE-INIT-early: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
c41d1cf6
ML
2806 if (r)
2807 return r;
482f0e53 2808 block->status.hw = true;
a90ad3c2
ML
2809 }
2810 }
2811
2812 return 0;
2813}
2814
06ec9070 2815static int amdgpu_device_ip_reinit_late_sriov(struct amdgpu_device *adev)
a90ad3c2
ML
2816{
2817 int i, r;
2818
2cb681b6
ML
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,
257deb8c 2824 AMD_IP_BLOCK_TYPE_UVD,
d83c7a07
JJ
2825 AMD_IP_BLOCK_TYPE_VCE,
2826 AMD_IP_BLOCK_TYPE_VCN
2cb681b6 2827 };
a90ad3c2 2828
2cb681b6
ML
2829 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
2830 int j;
2831 struct amdgpu_ip_block *block;
a90ad3c2 2832
2cb681b6
ML
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] ||
482f0e53
ML
2837 !block->status.valid ||
2838 block->status.hw)
2cb681b6
ML
2839 continue;
2840
895bd048
JZ
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
0aaeefcc 2846 DRM_INFO("RE-INIT-late: %s %s\n", block->version->funcs->name, r?"failed":"succeeded");
c41d1cf6
ML
2847 if (r)
2848 return r;
482f0e53 2849 block->status.hw = true;
a90ad3c2
ML
2850 }
2851 }
2852
2853 return 0;
2854}
2855
e3ecdffa
AD
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 */
06ec9070 2868static int amdgpu_device_ip_resume_phase1(struct amdgpu_device *adev)
d38ceaf9
AD
2869{
2870 int i, r;
2871
a90ad3c2 2872 for (i = 0; i < adev->num_ip_blocks; i++) {
482f0e53 2873 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
a90ad3c2 2874 continue;
a90ad3c2 2875 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
e3ecdffa
AD
2876 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2877 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH) {
482f0e53 2878
fcf0649f
CZ
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 }
482f0e53 2885 adev->ip_blocks[i].status.hw = true;
a90ad3c2
ML
2886 }
2887 }
2888
2889 return 0;
2890}
2891
e3ecdffa
AD
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 */
06ec9070 2905static int amdgpu_device_ip_resume_phase2(struct amdgpu_device *adev)
d38ceaf9
AD
2906{
2907 int i, r;
2908
2909 for (i = 0; i < adev->num_ip_blocks; i++) {
482f0e53 2910 if (!adev->ip_blocks[i].status.valid || adev->ip_blocks[i].status.hw)
d38ceaf9 2911 continue;
fcf0649f 2912 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
e3ecdffa 2913 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
7a3e0bb2
RZ
2914 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ||
2915 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP)
fcf0649f 2916 continue;
a1255107 2917 r = adev->ip_blocks[i].version->funcs->resume(adev);
2c1a2784 2918 if (r) {
a1255107
AD
2919 DRM_ERROR("resume of IP block <%s> failed %d\n",
2920 adev->ip_blocks[i].version->funcs->name, r);
d38ceaf9 2921 return r;
2c1a2784 2922 }
482f0e53 2923 adev->ip_blocks[i].status.hw = true;
d38ceaf9
AD
2924 }
2925
2926 return 0;
2927}
2928
e3ecdffa
AD
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 */
06ec9070 2941static int amdgpu_device_ip_resume(struct amdgpu_device *adev)
fcf0649f
CZ
2942{
2943 int r;
2944
06ec9070 2945 r = amdgpu_device_ip_resume_phase1(adev);
fcf0649f
CZ
2946 if (r)
2947 return r;
7a3e0bb2
RZ
2948
2949 r = amdgpu_device_fw_loading(adev);
2950 if (r)
2951 return r;
2952
06ec9070 2953 r = amdgpu_device_ip_resume_phase2(adev);
fcf0649f
CZ
2954
2955 return r;
2956}
2957
e3ecdffa
AD
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 */
4e99a44e 2965static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
048765ad 2966{
6867e1b5
ML
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);
a5bde2f9 2978 }
048765ad
AR
2979}
2980
e3ecdffa
AD
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 */
4562236b
HW
2989bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2990{
2991 switch (asic_type) {
2992#if defined(CONFIG_DRM_AMD_DC)
64200c46
MR
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
4562236b 2999 case CHIP_BONAIRE:
0d6fbccb 3000 case CHIP_KAVERI:
367e6687
AD
3001 case CHIP_KABINI:
3002 case CHIP_MULLINS:
d9fda248
HW
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:
4562236b
HW
3012 case CHIP_CARRIZO:
3013 case CHIP_STONEY:
4562236b 3014 case CHIP_POLARIS10:
675fd32b 3015 case CHIP_POLARIS11:
2c8ad2d5 3016 case CHIP_POLARIS12:
675fd32b 3017 case CHIP_VEGAM:
4562236b
HW
3018 case CHIP_TONGA:
3019 case CHIP_FIJI:
42f8ffa1 3020 case CHIP_VEGA10:
dca7b401 3021 case CHIP_VEGA12:
c6034aa2 3022 case CHIP_VEGA20:
b86a1aa3 3023#if defined(CONFIG_DRM_AMD_DC_DCN)
fd187853 3024 case CHIP_RAVEN:
b4f199c7 3025 case CHIP_NAVI10:
8fceceb6 3026 case CHIP_NAVI14:
078655d9 3027 case CHIP_NAVI12:
e1c14c43 3028 case CHIP_RENOIR:
81d9bfb8 3029 case CHIP_SIENNA_CICHLID:
a6c5308f 3030 case CHIP_NAVY_FLOUNDER:
7cc656e2 3031 case CHIP_DIMGREY_CAVEFISH:
84b934bc 3032 case CHIP_VANGOGH:
42f8ffa1 3033#endif
fd187853 3034 return amdgpu_dc != 0;
4562236b
HW
3035#endif
3036 default:
93b09a9a 3037 if (amdgpu_dc > 0)
044a48f4 3038 DRM_INFO_ONCE("Display Core has been requested via kernel parameter "
93b09a9a 3039 "but isn't supported by ASIC, ignoring\n");
4562236b
HW
3040 return false;
3041 }
3042}
3043
3044/**
3045 * amdgpu_device_has_dc_support - check if dc is supported
3046 *
982a820b 3047 * @adev: amdgpu_device pointer
4562236b
HW
3048 *
3049 * Returns true for supported, false for not supported
3050 */
3051bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
3052{
c997e8e2 3053 if (amdgpu_sriov_vf(adev) || adev->enable_virtual_display)
2555039d
XY
3054 return false;
3055
4562236b
HW
3056 return amdgpu_device_asic_has_dc_support(adev->asic_type);
3057}
3058
d4535e2c
AG
3059
3060static 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);
d95e8e97 3064 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
d4535e2c 3065
c6a6e2db
AG
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);
4a580877 3079 adev->asic_reset_res = amdgpu_device_baco_enter(adev_to_drm(adev));
c6a6e2db
AG
3080
3081 if (adev->asic_reset_res)
3082 goto fail;
3083
3084 task_barrier_exit(&hive->tb);
4a580877 3085 adev->asic_reset_res = amdgpu_device_baco_exit(adev_to_drm(adev));
c6a6e2db
AG
3086
3087 if (adev->asic_reset_res)
3088 goto fail;
43c4d576
JC
3089
3090 if (adev->mmhub.funcs && adev->mmhub.funcs->reset_ras_error_count)
3091 adev->mmhub.funcs->reset_ras_error_count(adev);
c6a6e2db
AG
3092 } else {
3093
3094 task_barrier_full(&hive->tb);
3095 adev->asic_reset_res = amdgpu_asic_reset(adev);
3096 }
ce316fa5 3097
c6a6e2db 3098fail:
d4535e2c 3099 if (adev->asic_reset_res)
fed184e9 3100 DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
4a580877 3101 adev->asic_reset_res, adev_to_drm(adev)->unique);
d95e8e97 3102 amdgpu_put_xgmi_hive(hive);
d4535e2c
AG
3103}
3104
71f98027
AD
3105static 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
b7b2a316 3117 * jobs are 60000 by default.
71f98027
AD
3118 */
3119 adev->gfx_timeout = msecs_to_jiffies(10000);
3120 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
9882e278
ED
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))
b7b2a316 3125 adev->compute_timeout = msecs_to_jiffies(60000);
71f98027
AD
3126 else
3127 adev->compute_timeout = MAX_SCHEDULE_TIMEOUT;
3128
f440ff44 3129 if (strnlen(input, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
71f98027 3130 while ((timeout_setting = strsep(&input, ",")) &&
f440ff44 3131 strnlen(timeout_setting, AMDGPU_MAX_TIMEOUT_PARAM_LENGTH)) {
71f98027
AD
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 */
bcccee89 3166 if (index == 1) {
71f98027 3167 adev->sdma_timeout = adev->video_timeout = adev->gfx_timeout;
bcccee89
ED
3168 if (amdgpu_sriov_vf(adev) || amdgpu_passthrough(adev))
3169 adev->compute_timeout = adev->gfx_timeout;
3170 }
71f98027
AD
3171 }
3172
3173 return ret;
3174}
d4535e2c 3175
77f3a5cd
ND
3176static 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
c9a6b82f 3184
d38ceaf9
AD
3185/**
3186 * amdgpu_device_init - initialize the driver
3187 *
3188 * @adev: amdgpu_device pointer
d38ceaf9
AD
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 */
3195int amdgpu_device_init(struct amdgpu_device *adev,
d38ceaf9
AD
3196 uint32_t flags)
3197{
8aba21b7
LT
3198 struct drm_device *ddev = adev_to_drm(adev);
3199 struct pci_dev *pdev = adev->pdev;
d38ceaf9 3200 int r, i;
fd496ca8 3201 bool atpx = false;
95844d20 3202 u32 max_MBps;
d38ceaf9
AD
3203
3204 adev->shutdown = false;
d38ceaf9 3205 adev->flags = flags;
4e66d7d2
YZ
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
d38ceaf9 3212 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
593aa2d2 3213 if (amdgpu_emu_mode == 1)
8bdab6bb 3214 adev->usec_timeout *= 10;
770d13b1 3215 adev->gmc.gart_size = 512 * 1024 * 1024;
d38ceaf9
AD
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;
0c88b430 3221 adev->vm_manager.vm_pte_num_scheds = 0;
132f34e4 3222 adev->gmc.gmc_funcs = NULL;
f54d1867 3223 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
b8866c26 3224 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
d38ceaf9
AD
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;
36b9a952
HR
3230 adev->pciep_rreg = &amdgpu_invalid_rreg;
3231 adev->pciep_wreg = &amdgpu_invalid_wreg;
4fa1c6a6
TZ
3232 adev->pcie_rreg64 = &amdgpu_invalid_rreg64;
3233 adev->pcie_wreg64 = &amdgpu_invalid_wreg64;
d38ceaf9
AD
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;
ccdbb20a
RZ
3238 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
3239 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
d38ceaf9
AD
3240 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
3241 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
3242
3e39ab90
AD
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);
d38ceaf9
AD
3246
3247 /* mutex initialization are all done here so we
3248 * can recall function without having locking issues */
d38ceaf9 3249 atomic_set(&adev->irq.ih.lock, 0);
0e5ca0d1 3250 mutex_init(&adev->firmware.mutex);
d38ceaf9
AD
3251 mutex_init(&adev->pm.mutex);
3252 mutex_init(&adev->gfx.gpu_clock_mutex);
3253 mutex_init(&adev->srbm_mutex);
b8866c26 3254 mutex_init(&adev->gfx.pipe_reserve_mutex);
d23ee13f 3255 mutex_init(&adev->gfx.gfx_off_mutex);
d38ceaf9 3256 mutex_init(&adev->grbm_idx_mutex);
d38ceaf9 3257 mutex_init(&adev->mn_lock);
e23b74aa 3258 mutex_init(&adev->virt.vf_errors.lock);
d38ceaf9 3259 hash_init(adev->mn_hash);
53b3f8f4 3260 atomic_set(&adev->in_gpu_reset, 0);
6049db43 3261 init_rwsem(&adev->reset_sem);
32eaeae0 3262 mutex_init(&adev->psp.mutex);
bd052211 3263 mutex_init(&adev->notifier_lock);
d38ceaf9 3264
912dfc84
EQ
3265 r = amdgpu_device_check_arguments(adev);
3266 if (r)
3267 return r;
d38ceaf9 3268
d38ceaf9
AD
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);
ccdbb20a 3274 spin_lock_init(&adev->gc_cac_idx_lock);
16abb5d2 3275 spin_lock_init(&adev->se_cac_idx_lock);
d38ceaf9 3276 spin_lock_init(&adev->audio_endpt_idx_lock);
95844d20 3277 spin_lock_init(&adev->mm_stats.lock);
d38ceaf9 3278
0c4e7fa5
CZ
3279 INIT_LIST_HEAD(&adev->shadow_list);
3280 mutex_init(&adev->shadow_list_lock);
3281
beff74bc
AD
3282 INIT_DELAYED_WORK(&adev->delayed_init_work,
3283 amdgpu_device_delayed_init_work_handler);
1e317b99
RZ
3284 INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,
3285 amdgpu_device_delay_enable_gfx_off);
2dc80b00 3286
d4535e2c
AG
3287 INIT_WORK(&adev->xgmi_reset_work, amdgpu_device_xgmi_reset_func);
3288
d23ee13f 3289 adev->gfx.gfx_off_req_count = 1;
b6e79d9a 3290 adev->pm.ac_power = power_supply_is_system_supplied() > 0;
b1ddf548 3291
b265bdbd
EQ
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
0fa49558
AX
3303 /* Registers mapping */
3304 /* TODO: block userspace mapping of io register */
da69c161
KW
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 }
d38ceaf9 3312
d38ceaf9
AD
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
d38ceaf9
AD
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)
b64a18c5 3329 DRM_INFO("PCI I/O BAR is not found.\n");
d38ceaf9 3330
b2109d8e
JX
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
5494d864
AD
3342 amdgpu_device_get_pcie_info(adev);
3343
b239c017
JX
3344 if (amdgpu_mcbp)
3345 DRM_INFO("MCBP is enabled\n");
3346
5f84cc63
JX
3347 if (amdgpu_mes && adev->asic_type >= CHIP_NAVI10)
3348 adev->enable_mes = true;
3349
3aa0115d
ML
3350 /* detect hw virtualization here */
3351 amdgpu_detect_virtualization(adev);
3352
dffa11b4
ML
3353 r = amdgpu_device_get_job_timeout_settings(adev);
3354 if (r) {
3355 dev_err(adev->dev, "invalid lockup_timeout parameter syntax\n");
4192f7b5 3356 goto failed_unmap;
a190d1c7
XY
3357 }
3358
d38ceaf9 3359 /* early init functions */
06ec9070 3360 r = amdgpu_device_ip_early_init(adev);
d38ceaf9 3361 if (r)
4192f7b5 3362 goto failed_unmap;
d38ceaf9 3363
6585661d
OZ
3364 /* doorbell bar mapping and doorbell index init*/
3365 amdgpu_device_doorbell_init(adev);
3366
d38ceaf9
AD
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 */
38d6be81
AD
3370 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3371 vga_client_register(adev->pdev, adev, NULL, amdgpu_device_vga_set_decode);
d38ceaf9 3372
fd496ca8
AD
3373 if (amdgpu_device_supports_atpx(ddev))
3374 atpx = true;
3840c5bc
AD
3375 if (amdgpu_has_atpx() &&
3376 (amdgpu_is_atpx_hybrid() ||
3377 amdgpu_has_atpx_dgpu_power_cntl()) &&
3378 !pci_is_thunderbolt_attached(adev->pdev))
84c8b22e 3379 vga_switcheroo_register_client(adev->pdev,
fd496ca8
AD
3380 &amdgpu_switcheroo_ops, atpx);
3381 if (atpx)
d38ceaf9
AD
3382 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
3383
9475a943
SL
3384 if (amdgpu_emu_mode == 1) {
3385 /* post the asic on emulation mode */
3386 emu_soc_asic_init(adev);
bfca0289 3387 goto fence_driver_init;
9475a943 3388 }
bfca0289 3389
4e99a44e
ML
3390 /* detect if we are with an SRIOV vbios */
3391 amdgpu_device_detect_sriov_bios(adev);
048765ad 3392
95e8e59e
AD
3393 /* check if we need to reset the asic
3394 * E.g., driver was not cleanly unloaded previously, etc.
3395 */
f14899fd 3396 if (!amdgpu_sriov_vf(adev) && amdgpu_asic_need_reset_on_init(adev)) {
95e8e59e
AD
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
8f66090b 3404 pci_enable_pcie_error_reporting(adev->pdev);
c9a6b82f 3405
d38ceaf9 3406 /* Post card if necessary */
39c640c0 3407 if (amdgpu_device_need_post(adev)) {
d38ceaf9 3408 if (!adev->bios) {
bec86378 3409 dev_err(adev->dev, "no vBIOS found\n");
83ba126a
AD
3410 r = -EINVAL;
3411 goto failed;
d38ceaf9 3412 }
bec86378 3413 DRM_INFO("GPU posting now...\n");
4d2997ab 3414 r = amdgpu_device_asic_init(adev);
4e99a44e
ML
3415 if (r) {
3416 dev_err(adev->dev, "gpu post error!\n");
3417 goto failed;
3418 }
d38ceaf9
AD
3419 }
3420
88b64e95
AD
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");
e23b74aa 3426 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
88b64e95
AD
3427 goto failed;
3428 }
3429 } else {
a5bde2f9
AD
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");
e23b74aa 3434 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
89041940 3435 goto failed;
a5bde2f9
AD
3436 }
3437 /* init i2c buses */
4562236b
HW
3438 if (!amdgpu_device_has_dc_support(adev))
3439 amdgpu_atombios_i2c_init(adev);
2c1a2784 3440 }
d38ceaf9 3441
bfca0289 3442fence_driver_init:
d38ceaf9
AD
3443 /* Fence driver */
3444 r = amdgpu_fence_driver_init(adev);
2c1a2784
AD
3445 if (r) {
3446 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
e23b74aa 3447 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
83ba126a 3448 goto failed;
2c1a2784 3449 }
d38ceaf9
AD
3450
3451 /* init the mode config */
4a580877 3452 drm_mode_config_init(adev_to_drm(adev));
d38ceaf9 3453
06ec9070 3454 r = amdgpu_device_ip_init(adev);
d38ceaf9 3455 if (r) {
8840a387 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");
1daee8b4
PD
3462 /* Don't send request since VF is inactive. */
3463 adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
3464 adev->virt.ops = NULL;
8840a387 3465 r = -EAGAIN;
3466 goto failed;
3467 }
06ec9070 3468 dev_err(adev->dev, "amdgpu_device_ip_init failed\n");
e23b74aa 3469 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
83ba126a 3470 goto failed;
d38ceaf9
AD
3471 }
3472
d69b8971
YZ
3473 dev_info(adev->dev,
3474 "SE %d, SH per SE %d, CU per SH %d, active_cu_number %d\n",
d7f72fe4
YZ
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
d38ceaf9
AD
3480 adev->accel_working = true;
3481
e59c0205
AX
3482 amdgpu_vm_check_compute_bug(adev);
3483
95844d20
MO
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
9bc92b9c
ML
3492 amdgpu_fbdev_init(adev);
3493
d2f52ac8 3494 r = amdgpu_pm_sysfs_init(adev);
7c868b59
YT
3495 if (r) {
3496 adev->pm_sysfs_en = false;
d2f52ac8 3497 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
7c868b59
YT
3498 } else
3499 adev->pm_sysfs_en = true;
d2f52ac8 3500
5bb23532 3501 r = amdgpu_ucode_sysfs_init(adev);
7c868b59
YT
3502 if (r) {
3503 adev->ucode_sysfs_en = false;
5bb23532 3504 DRM_ERROR("Creating firmware sysfs failed (%d).\n", r);
7c868b59
YT
3505 } else
3506 adev->ucode_sysfs_en = true;
5bb23532 3507
d38ceaf9
AD
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 }
d38ceaf9
AD
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
b0adca4d
EQ
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
d38ceaf9
AD
3528 /* enable clockgating, etc. after ib tests, etc. since some blocks require
3529 * explicit gating rather than handling it automatically.
3530 */
06ec9070 3531 r = amdgpu_device_ip_late_init(adev);
2c1a2784 3532 if (r) {
06ec9070 3533 dev_err(adev->dev, "amdgpu_device_ip_late_init failed\n");
e23b74aa 3534 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
83ba126a 3535 goto failed;
2c1a2784 3536 }
d38ceaf9 3537
108c6a63 3538 /* must succeed. */
511fdbc3 3539 amdgpu_ras_resume(adev);
108c6a63 3540
beff74bc
AD
3541 queue_delayed_work(system_wq, &adev->delayed_init_work,
3542 msecs_to_jiffies(AMDGPU_RESUME_MS));
3543
2c738637
ML
3544 if (amdgpu_sriov_vf(adev))
3545 flush_delayed_work(&adev->delayed_init_work);
3546
77f3a5cd 3547 r = sysfs_create_files(&adev->dev->kobj, amdgpu_dev_attributes);
5aea5327 3548 if (r)
77f3a5cd 3549 dev_err(adev->dev, "Could not create amdgpu device attr\n");
bd607166 3550
d155bef0
AB
3551 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3552 r = amdgpu_pmu_init(adev);
9c7c85f7
JK
3553 if (r)
3554 dev_err(adev->dev, "amdgpu_pmu_init failed\n");
3555
c1dd4aa6
AG
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
d38ceaf9 3560 return 0;
83ba126a
AD
3561
3562failed:
89041940 3563 amdgpu_vf_error_trans_all(adev);
fd496ca8 3564 if (atpx)
83ba126a 3565 vga_switcheroo_fini_domain_pm_ops(adev->dev);
8840a387 3566
4192f7b5
AD
3567failed_unmap:
3568 iounmap(adev->rmmio);
3569 adev->rmmio = NULL;
3570
83ba126a 3571 return r;
d38ceaf9
AD
3572}
3573
d38ceaf9
AD
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 */
3582void amdgpu_device_fini(struct amdgpu_device *adev)
3583{
aac89168 3584 dev_info(adev->dev, "amdgpu: finishing device.\n");
9f875167 3585 flush_delayed_work(&adev->delayed_init_work);
d0d13fe8 3586 adev->shutdown = true;
9f875167 3587
c1dd4aa6
AG
3588 kfree(adev->pci_state);
3589
752c683d
ML
3590 /* make sure IB test finished before entering exclusive mode
3591 * to avoid preemption on IB test
3592 * */
519b8b76 3593 if (amdgpu_sriov_vf(adev)) {
752c683d 3594 amdgpu_virt_request_full_gpu(adev, false);
519b8b76
BZ
3595 amdgpu_virt_fini_data_exchange(adev);
3596 }
752c683d 3597
e5b03032
ML
3598 /* disable all interrupts */
3599 amdgpu_irq_disable_all(adev);
ff97cba8
ML
3600 if (adev->mode_info.mode_config_initialized){
3601 if (!amdgpu_device_has_dc_support(adev))
4a580877 3602 drm_helper_force_disable_all(adev_to_drm(adev));
ff97cba8 3603 else
4a580877 3604 drm_atomic_helper_shutdown(adev_to_drm(adev));
ff97cba8 3605 }
d38ceaf9 3606 amdgpu_fence_driver_fini(adev);
7c868b59
YT
3607 if (adev->pm_sysfs_en)
3608 amdgpu_pm_sysfs_fini(adev);
d38ceaf9 3609 amdgpu_fbdev_fini(adev);
e230ac11 3610 amdgpu_device_ip_fini(adev);
75e1658e
ND
3611 release_firmware(adev->firmware.gpu_info_fw);
3612 adev->firmware.gpu_info_fw = NULL;
d38ceaf9
AD
3613 adev->accel_working = false;
3614 /* free i2c buses */
4562236b
HW
3615 if (!amdgpu_device_has_dc_support(adev))
3616 amdgpu_i2c_fini(adev);
bfca0289
SL
3617
3618 if (amdgpu_emu_mode != 1)
3619 amdgpu_atombios_fini(adev);
3620
d38ceaf9
AD
3621 kfree(adev->bios);
3622 adev->bios = NULL;
3840c5bc
AD
3623 if (amdgpu_has_atpx() &&
3624 (amdgpu_is_atpx_hybrid() ||
3625 amdgpu_has_atpx_dgpu_power_cntl()) &&
3626 !pci_is_thunderbolt_attached(adev->pdev))
84c8b22e 3627 vga_switcheroo_unregister_client(adev->pdev);
fd496ca8 3628 if (amdgpu_device_supports_atpx(adev_to_drm(adev)))
83ba126a 3629 vga_switcheroo_fini_domain_pm_ops(adev->dev);
38d6be81
AD
3630 if ((adev->pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
3631 vga_client_register(adev->pdev, NULL, NULL, NULL);
d38ceaf9
AD
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;
06ec9070 3637 amdgpu_device_doorbell_fini(adev);
e9bc1bf7 3638
7c868b59
YT
3639 if (adev->ucode_sysfs_en)
3640 amdgpu_ucode_sysfs_fini(adev);
77f3a5cd
ND
3641
3642 sysfs_remove_files(&adev->dev->kobj, amdgpu_dev_attributes);
d155bef0
AB
3643 if (IS_ENABLED(CONFIG_PERF_EVENTS))
3644 amdgpu_pmu_fini(adev);
72de33f8 3645 if (adev->mman.discovery_bin)
a190d1c7 3646 amdgpu_discovery_fini(adev);
d38ceaf9
AD
3647}
3648
3649
3650/*
3651 * Suspend & resume.
3652 */
3653/**
810ddc3a 3654 * amdgpu_device_suspend - initiate device suspend
d38ceaf9 3655 *
87e3f136 3656 * @dev: drm dev pointer
87e3f136 3657 * @fbcon : notify the fbdev of suspend
d38ceaf9
AD
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 */
de185019 3663int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
d38ceaf9
AD
3664{
3665 struct amdgpu_device *adev;
3666 struct drm_crtc *crtc;
3667 struct drm_connector *connector;
f8d2d39e 3668 struct drm_connector_list_iter iter;
5ceb54c6 3669 int r;
d38ceaf9 3670
1348969a 3671 adev = drm_to_adev(dev);
d38ceaf9
AD
3672
3673 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3674 return 0;
3675
44779b43 3676 adev->in_suspend = true;
d38ceaf9
AD
3677 drm_kms_helper_poll_disable(dev);
3678
5f818173
S
3679 if (fbcon)
3680 amdgpu_fbdev_set_suspend(adev, 1);
3681
beff74bc 3682 cancel_delayed_work_sync(&adev->delayed_init_work);
a5459475 3683
4562236b
HW
3684 if (!amdgpu_device_has_dc_support(adev)) {
3685 /* turn off display hw */
3686 drm_modeset_lock_all(dev);
f8d2d39e
LP
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);
4562236b 3692 drm_modeset_unlock_all(dev);
fe1053b7
AD
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
91334223 3699 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
fe1053b7
AD
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 }
756e6880 3706 }
756e6880 3707
fe1053b7
AD
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 }
d38ceaf9
AD
3719 }
3720 }
3721 }
fe1053b7 3722
5e6932fe 3723 amdgpu_ras_suspend(adev);
3724
fe1053b7
AD
3725 r = amdgpu_device_ip_suspend_phase1(adev);
3726
94fa5660
EQ
3727 amdgpu_amdkfd_suspend(adev, !fbcon);
3728
d38ceaf9
AD
3729 /* evict vram memory */
3730 amdgpu_bo_evict_vram(adev);
3731
5ceb54c6 3732 amdgpu_fence_driver_suspend(adev);
d38ceaf9 3733
9ca5b8a1 3734 if (!amdgpu_acpi_is_s0ix_supported(adev) || amdgpu_in_reset(adev))
628c36d7
PL
3735 r = amdgpu_device_ip_suspend_phase2(adev);
3736 else
3737 amdgpu_gfx_state_change_set(adev, sGpuChangeState_D3Entry);
a0a71e49
AD
3738 /* evict remaining vram memory
3739 * This second call to evict vram is to evict the gart page table
3740 * using the CPU.
3741 */
d38ceaf9
AD
3742 amdgpu_bo_evict_vram(adev);
3743
d38ceaf9
AD
3744 return 0;
3745}
3746
3747/**
810ddc3a 3748 * amdgpu_device_resume - initiate device resume
d38ceaf9 3749 *
87e3f136 3750 * @dev: drm dev pointer
87e3f136 3751 * @fbcon : notify the fbdev of resume
d38ceaf9
AD
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 */
de185019 3757int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
d38ceaf9
AD
3758{
3759 struct drm_connector *connector;
f8d2d39e 3760 struct drm_connector_list_iter iter;
1348969a 3761 struct amdgpu_device *adev = drm_to_adev(dev);
756e6880 3762 struct drm_crtc *crtc;
03161a6e 3763 int r = 0;
d38ceaf9
AD
3764
3765 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
3766 return 0;
3767
9ca5b8a1 3768 if (amdgpu_acpi_is_s0ix_supported(adev))
628c36d7
PL
3769 amdgpu_gfx_state_change_set(adev, sGpuChangeState_D0Entry);
3770
d38ceaf9 3771 /* post card */
39c640c0 3772 if (amdgpu_device_need_post(adev)) {
4d2997ab 3773 r = amdgpu_device_asic_init(adev);
74b0b157 3774 if (r)
aac89168 3775 dev_err(adev->dev, "amdgpu asic init failed\n");
74b0b157 3776 }
d38ceaf9 3777
06ec9070 3778 r = amdgpu_device_ip_resume(adev);
e6707218 3779 if (r) {
aac89168 3780 dev_err(adev->dev, "amdgpu_device_ip_resume failed (%d).\n", r);
4d3b9ae5 3781 return r;
e6707218 3782 }
5ceb54c6
AD
3783 amdgpu_fence_driver_resume(adev);
3784
d38ceaf9 3785
06ec9070 3786 r = amdgpu_device_ip_late_init(adev);
03161a6e 3787 if (r)
4d3b9ae5 3788 return r;
d38ceaf9 3789
beff74bc
AD
3790 queue_delayed_work(system_wq, &adev->delayed_init_work,
3791 msecs_to_jiffies(AMDGPU_RESUME_MS));
3792
fe1053b7
AD
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
91334223 3798 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
fe1053b7
AD
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)
aac89168 3804 dev_err(adev->dev, "Failed to pin cursor BO (%d)\n", r);
fe1053b7
AD
3805 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
3806 amdgpu_bo_unreserve(aobj);
3807 }
756e6880
AD
3808 }
3809 }
3810 }
9593f4d6 3811 r = amdgpu_amdkfd_resume(adev, !fbcon);
ba997709
YZ
3812 if (r)
3813 return r;
756e6880 3814
96a5d8d4 3815 /* Make sure IB tests flushed */
beff74bc 3816 flush_delayed_work(&adev->delayed_init_work);
96a5d8d4 3817
d38ceaf9
AD
3818 /* blat the mode back in */
3819 if (fbcon) {
4562236b
HW
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);
f8d2d39e
LP
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
4562236b 3833 drm_modeset_unlock_all(dev);
d38ceaf9 3834 }
4d3b9ae5 3835 amdgpu_fbdev_set_suspend(adev, 0);
d38ceaf9
AD
3836 }
3837
3838 drm_kms_helper_poll_enable(dev);
23a1a9e5 3839
5e6932fe 3840 amdgpu_ras_resume(adev);
3841
23a1a9e5
L
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
4562236b
HW
3854 if (!amdgpu_device_has_dc_support(adev))
3855 drm_helper_hpd_irq_event(dev);
3856 else
3857 drm_kms_helper_hotplug_event(dev);
23a1a9e5
L
3858#ifdef CONFIG_PM
3859 dev->dev->power.disable_depth--;
3860#endif
44779b43
RZ
3861 adev->in_suspend = false;
3862
4d3b9ae5 3863 return 0;
d38ceaf9
AD
3864}
3865
e3ecdffa
AD
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 */
06ec9070 3876static bool amdgpu_device_ip_check_soft_reset(struct amdgpu_device *adev)
63fbf42f
CZ
3877{
3878 int i;
3879 bool asic_hang = false;
3880
f993d628
ML
3881 if (amdgpu_sriov_vf(adev))
3882 return true;
3883
8bc04c29
AD
3884 if (amdgpu_asic_need_full_reset(adev))
3885 return true;
3886
63fbf42f 3887 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 3888 if (!adev->ip_blocks[i].status.valid)
63fbf42f 3889 continue;
a1255107
AD
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) {
aac89168 3894 dev_info(adev->dev, "IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
63fbf42f
CZ
3895 asic_hang = true;
3896 }
3897 }
3898 return asic_hang;
3899}
3900
e3ecdffa
AD
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 */
06ec9070 3912static int amdgpu_device_ip_pre_soft_reset(struct amdgpu_device *adev)
d31a501e
CZ
3913{
3914 int i, r = 0;
3915
3916 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 3917 if (!adev->ip_blocks[i].status.valid)
d31a501e 3918 continue;
a1255107
AD
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);
d31a501e
CZ
3922 if (r)
3923 return r;
3924 }
3925 }
3926
3927 return 0;
3928}
3929
e3ecdffa
AD
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 */
06ec9070 3939static bool amdgpu_device_ip_need_full_reset(struct amdgpu_device *adev)
35d782fe 3940{
da146d3b
AD
3941 int i;
3942
8bc04c29
AD
3943 if (amdgpu_asic_need_full_reset(adev))
3944 return true;
3945
da146d3b 3946 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 3947 if (!adev->ip_blocks[i].status.valid)
da146d3b 3948 continue;
a1255107
AD
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) ||
98512bb8
KW
3952 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
3953 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
a1255107 3954 if (adev->ip_blocks[i].status.hang) {
aac89168 3955 dev_info(adev->dev, "Some block need full reset!\n");
da146d3b
AD
3956 return true;
3957 }
3958 }
35d782fe
CZ
3959 }
3960 return false;
3961}
3962
e3ecdffa
AD
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 */
06ec9070 3974static int amdgpu_device_ip_soft_reset(struct amdgpu_device *adev)
35d782fe
CZ
3975{
3976 int i, r = 0;
3977
3978 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 3979 if (!adev->ip_blocks[i].status.valid)
35d782fe 3980 continue;
a1255107
AD
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);
35d782fe
CZ
3984 if (r)
3985 return r;
3986 }
3987 }
3988
3989 return 0;
3990}
3991
e3ecdffa
AD
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 */
06ec9070 4003static int amdgpu_device_ip_post_soft_reset(struct amdgpu_device *adev)
35d782fe
CZ
4004{
4005 int i, r = 0;
4006
4007 for (i = 0; i < adev->num_ip_blocks; i++) {
a1255107 4008 if (!adev->ip_blocks[i].status.valid)
35d782fe 4009 continue;
a1255107
AD
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);
35d782fe
CZ
4013 if (r)
4014 return r;
4015 }
4016
4017 return 0;
4018}
4019
e3ecdffa 4020/**
c33adbc7 4021 * amdgpu_device_recover_vram - Recover some VRAM contents
e3ecdffa
AD
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.
403009bf
CK
4028 *
4029 * Returns:
4030 * 0 on success, negative error code on failure.
e3ecdffa 4031 */
c33adbc7 4032static int amdgpu_device_recover_vram(struct amdgpu_device *adev)
c41d1cf6 4033{
c41d1cf6 4034 struct dma_fence *fence = NULL, *next = NULL;
403009bf
CK
4035 struct amdgpu_bo *shadow;
4036 long r = 1, tmo;
c41d1cf6
ML
4037
4038 if (amdgpu_sriov_runtime(adev))
b045d3af 4039 tmo = msecs_to_jiffies(8000);
c41d1cf6
ML
4040 else
4041 tmo = msecs_to_jiffies(100);
4042
aac89168 4043 dev_info(adev->dev, "recover vram bo from shadow start\n");
c41d1cf6 4044 mutex_lock(&adev->shadow_list_lock);
403009bf
CK
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 ||
b575f10d 4049 shadow->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET ||
403009bf
CK
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
c41d1cf6 4057 if (fence) {
1712fb1a 4058 tmo = dma_fence_wait_timeout(fence, false, tmo);
403009bf
CK
4059 dma_fence_put(fence);
4060 fence = next;
1712fb1a 4061 if (tmo == 0) {
4062 r = -ETIMEDOUT;
c41d1cf6 4063 break;
1712fb1a 4064 } else if (tmo < 0) {
4065 r = tmo;
4066 break;
4067 }
403009bf
CK
4068 } else {
4069 fence = next;
c41d1cf6 4070 }
c41d1cf6
ML
4071 }
4072 mutex_unlock(&adev->shadow_list_lock);
4073
403009bf
CK
4074 if (fence)
4075 tmo = dma_fence_wait_timeout(fence, false, tmo);
c41d1cf6
ML
4076 dma_fence_put(fence);
4077
1712fb1a 4078 if (r < 0 || tmo <= 0) {
aac89168 4079 dev_err(adev->dev, "recover vram bo from shadow failed, r is %ld, tmo is %ld\n", r, tmo);
403009bf
CK
4080 return -EIO;
4081 }
c41d1cf6 4082
aac89168 4083 dev_info(adev->dev, "recover vram bo from shadow done\n");
403009bf 4084 return 0;
c41d1cf6
ML
4085}
4086
a90ad3c2 4087
e3ecdffa 4088/**
06ec9070 4089 * amdgpu_device_reset_sriov - reset ASIC for SR-IOV vf
5740682e 4090 *
982a820b 4091 * @adev: amdgpu_device pointer
87e3f136 4092 * @from_hypervisor: request from hypervisor
5740682e
ML
4093 *
4094 * do VF FLR and reinitialize Asic
3f48c681 4095 * return 0 means succeeded otherwise failed
e3ecdffa
AD
4096 */
4097static int amdgpu_device_reset_sriov(struct amdgpu_device *adev,
4098 bool from_hypervisor)
5740682e
ML
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;
a90ad3c2 4108
b639c22c
JZ
4109 amdgpu_amdkfd_pre_reset(adev);
4110
a90ad3c2 4111 /* Resume IP prior to SMC */
06ec9070 4112 r = amdgpu_device_ip_reinit_early_sriov(adev);
5740682e
ML
4113 if (r)
4114 goto error;
a90ad3c2 4115
c9ffa427 4116 amdgpu_virt_init_data_exchange(adev);
a90ad3c2 4117 /* we need recover gart prior to run SMC/CP/SDMA resume */
6c28aed6 4118 amdgpu_gtt_mgr_recover(ttm_manager_type(&adev->mman.bdev, TTM_PL_TT));
a90ad3c2 4119
7a3e0bb2
RZ
4120 r = amdgpu_device_fw_loading(adev);
4121 if (r)
4122 return r;
4123
a90ad3c2 4124 /* now we are okay to resume SMC/CP/SDMA */
06ec9070 4125 r = amdgpu_device_ip_reinit_late_sriov(adev);
5740682e
ML
4126 if (r)
4127 goto error;
a90ad3c2
ML
4128
4129 amdgpu_irq_gpu_reset_resume_helper(adev);
5740682e 4130 r = amdgpu_ib_ring_tests(adev);
f81e8d53 4131 amdgpu_amdkfd_post_reset(adev);
a90ad3c2 4132
abc34253
ED
4133error:
4134 amdgpu_virt_release_full_gpu(adev, true);
c41d1cf6 4135 if (!r && adev->virt.gim_feature & AMDGIM_FEATURE_GIM_FLR_VRAMLOST) {
e3526257 4136 amdgpu_inc_vram_lost(adev);
c33adbc7 4137 r = amdgpu_device_recover_vram(adev);
a90ad3c2
ML
4138 }
4139
4140 return r;
4141}
4142
9a1cddd6 4143/**
4144 * amdgpu_device_has_job_running - check if there is any job in mirror list
4145 *
982a820b 4146 * @adev: amdgpu_device pointer
9a1cddd6 4147 *
4148 * check if there is any job in mirror list
4149 */
4150bool 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);
6efa4b46
LT
4162 job = list_first_entry_or_null(&ring->sched.pending_list,
4163 struct drm_sched_job, list);
9a1cddd6 4164 spin_unlock(&ring->sched.job_list_lock);
4165 if (job)
4166 return true;
4167 }
4168 return false;
4169}
4170
12938fad
CK
4171/**
4172 * amdgpu_device_should_recover_gpu - check if we should try GPU recovery
4173 *
982a820b 4174 * @adev: amdgpu_device pointer
12938fad
CK
4175 *
4176 * Check amdgpu_gpu_recovery and SRIOV status to see if we should try to recover
4177 * a hung GPU.
4178 */
4179bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev)
4180{
4181 if (!amdgpu_device_ip_check_soft_reset(adev)) {
aac89168 4182 dev_info(adev->dev, "Timeout, but no hardware hang detected.\n");
12938fad
CK
4183 return false;
4184 }
4185
3ba7b418
AG
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) {
fc42d47c
AG
4194 case CHIP_BONAIRE:
4195 case CHIP_HAWAII:
3ba7b418
AG
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:
c43b849f 4206 case CHIP_RAVEN:
e9d4cf91 4207 case CHIP_ARCTURUS:
2cb44fb0 4208 case CHIP_RENOIR:
658c6639
AD
4209 case CHIP_NAVI10:
4210 case CHIP_NAVI14:
4211 case CHIP_NAVI12:
131a3c74 4212 case CHIP_SIENNA_CICHLID:
665fe4dc 4213 case CHIP_NAVY_FLOUNDER:
3ba7b418
AG
4214 break;
4215 default:
4216 goto disabled;
4217 }
12938fad
CK
4218 }
4219
4220 return true;
3ba7b418
AG
4221
4222disabled:
aac89168 4223 dev_info(adev->dev, "GPU recovery disabled.\n");
3ba7b418 4224 return false;
12938fad
CK
4225}
4226
5c6dd71e 4227
26bc5340
AG
4228static 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;
71182665 4234
728e7e0c
JZ
4235 amdgpu_debugfs_wait_dump(adev);
4236
b602ca5f
TZ
4237 if (amdgpu_sriov_vf(adev)) {
4238 /* stop the data exchange thread */
4239 amdgpu_virt_fini_data_exchange(adev);
4240 }
4241
71182665 4242 /* block all schedulers and reset given job's ring */
0875dc9e
CZ
4243 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
4244 struct amdgpu_ring *ring = adev->rings[i];
4245
51687759 4246 if (!ring || !ring->sched.thread)
0875dc9e 4247 continue;
5740682e 4248
2f9d4084
ML
4249 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
4250 amdgpu_fence_driver_force_completion(ring);
0875dc9e 4251 }
d38ceaf9 4252
222b5f04
AG
4253 if(job)
4254 drm_sched_increase_karma(&job->base);
4255
1d721ed6 4256 /* Don't suspend on bare metal if we are not going to HW reset the ASIC */
26bc5340
AG
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)) {
aac89168 4267 dev_info(adev->dev, "soft reset failed, will fallback to full reset!\n");
26bc5340
AG
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
041a62bc 4281static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
26bc5340 4282 struct list_head *device_list_handle,
7ac71382
AG
4283 bool *need_full_reset_arg,
4284 bool skip_hw_reset)
26bc5340
AG
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 */
7ac71382 4294 if (!skip_hw_reset && need_full_reset) {
26bc5340 4295 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
041a62bc 4296 /* For XGMI run all resets in parallel to speed up the process */
d4535e2c 4297 if (tmp_adev->gmc.xgmi.num_physical_nodes > 1) {
c96cf282 4298 if (!queue_work(system_unbound_wq, &tmp_adev->xgmi_reset_work))
d4535e2c
AG
4299 r = -EALREADY;
4300 } else
4301 r = amdgpu_asic_reset(tmp_adev);
d4535e2c 4302
041a62bc 4303 if (r) {
aac89168 4304 dev_err(tmp_adev->dev, "ASIC reset failed with error, %d for drm dev, %s",
4a580877 4305 r, adev_to_drm(tmp_adev)->unique);
041a62bc 4306 break;
ce316fa5
LM
4307 }
4308 }
4309
041a62bc
AG
4310 /* For XGMI wait for all resets to complete before proceed */
4311 if (!r) {
ce316fa5
LM
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;
ce316fa5
LM
4319 }
4320 }
4321 }
ce316fa5 4322 }
26bc5340 4323
43c4d576
JC
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
00eaa571 4331 amdgpu_ras_intr_cleared();
43c4d576 4332 }
00eaa571 4333
26bc5340
AG
4334 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4335 if (need_full_reset) {
4336 /* post card */
4d2997ab 4337 if (amdgpu_device_asic_init(tmp_adev))
aac89168 4338 dev_warn(tmp_adev->dev, "asic atom init failed!");
26bc5340
AG
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) {
77e7f829 4348 DRM_INFO("VRAM is lost due to GPU reset!\n");
e3526257 4349 amdgpu_inc_vram_lost(tmp_adev);
26bc5340
AG
4350 }
4351
6c28aed6 4352 r = amdgpu_gtt_mgr_recover(ttm_manager_type(&tmp_adev->mman.bdev, TTM_PL_TT));
26bc5340
AG
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
fdafb359
EQ
4367 /*
4368 * Add this ASIC as tracked as reset was already
4369 * complete successfully.
4370 */
4371 amdgpu_register_gpu_instance(tmp_adev);
4372
7c04ca50 4373 r = amdgpu_device_ip_late_init(tmp_adev);
4374 if (r)
4375 goto out;
4376
565d1941
EQ
4377 amdgpu_fbdev_set_suspend(tmp_adev, 0);
4378
e8fbaf03
GC
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 }
e79a04d5 4396
26bc5340
AG
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
26bc5340
AG
4403out:
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
4422end:
4423 *need_full_reset_arg = need_full_reset;
4424 return r;
4425}
4426
08ebb485
DL
4427static bool amdgpu_device_lock_adev(struct amdgpu_device *adev,
4428 struct amdgpu_hive_info *hive)
26bc5340 4429{
53b3f8f4
DL
4430 if (atomic_cmpxchg(&adev->in_gpu_reset, 0, 1) != 0)
4431 return false;
4432
08ebb485
DL
4433 if (hive) {
4434 down_write_nest_lock(&adev->reset_sem, &hive->hive_lock);
4435 } else {
4436 down_write(&adev->reset_sem);
4437 }
5740682e 4438
26bc5340 4439 atomic_inc(&adev->gpu_reset_counter);
a3a09142
AD
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 }
1d721ed6
AG
4451
4452 return true;
26bc5340 4453}
d38ceaf9 4454
26bc5340
AG
4455static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
4456{
89041940 4457 amdgpu_vf_error_trans_all(adev);
a3a09142 4458 adev->mp1_state = PP_MP1_STATE_NONE;
53b3f8f4 4459 atomic_set(&adev->in_gpu_reset, 0);
6049db43 4460 up_write(&adev->reset_sem);
26bc5340
AG
4461}
4462
91fb309d
HC
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 */
4469static 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;
4486roll_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
3f12acc8
EQ
4503static 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
4515static 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 */
54b7feb9 4543 expires = ktime_get_mono_fast_ns() + NSEC_PER_SEC * 4ULL;
3f12acc8
EQ
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
26bc5340
AG
4561/**
4562 * amdgpu_device_gpu_recover - reset the asic and recover scheduler
4563 *
982a820b 4564 * @adev: amdgpu_device pointer
26bc5340
AG
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
4572int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
4573 struct amdgpu_job *job)
4574{
1d721ed6 4575 struct list_head device_list, *device_list_handle = NULL;
7dd8c205
EQ
4576 bool need_full_reset = false;
4577 bool job_signaled = false;
26bc5340 4578 struct amdgpu_hive_info *hive = NULL;
26bc5340 4579 struct amdgpu_device *tmp_adev = NULL;
1d721ed6 4580 int i, r = 0;
bb5c7235 4581 bool need_emergency_restart = false;
3f12acc8 4582 bool audio_suspended = false;
26bc5340 4583
6e3cd2a9 4584 /*
bb5c7235
WS
4585 * Special case: RAS triggered and full reset isn't supported
4586 */
4587 need_emergency_restart = amdgpu_ras_need_emergency_restart(adev);
4588
d5ea093e
AG
4589 /*
4590 * Flush RAM to disk so that after reboot
4591 * the user can read log and see why the system rebooted.
4592 */
bb5c7235 4593 if (need_emergency_restart && amdgpu_ras_get_context(adev)->reboot) {
d5ea093e
AG
4594 DRM_WARN("Emergency reboot.");
4595
4596 ksys_sync_helper();
4597 emergency_restart();
4598 }
4599
b823821f 4600 dev_info(adev->dev, "GPU %s begin!\n",
bb5c7235 4601 need_emergency_restart ? "jobs stop":"reset");
26bc5340
AG
4602
4603 /*
1d721ed6
AG
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.
26bc5340 4609 */
d95e8e97 4610 hive = amdgpu_get_xgmi_hive(adev);
53b3f8f4
DL
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);
d95e8e97 4615 amdgpu_put_xgmi_hive(hive);
91fb309d
HC
4616 if (job)
4617 drm_sched_increase_karma(&job->base);
53b3f8f4
DL
4618 return 0;
4619 }
4620 mutex_lock(&hive->hive_lock);
1d721ed6 4621 }
26bc5340 4622
91fb309d
HC
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
9e94d22c
EQ
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) {
9e94d22c
EQ
4646 if (!list_is_first(&adev->gmc.xgmi.head, &hive->device_list))
4647 list_rotate_to_front(&adev->gmc.xgmi.head, &hive->device_list);
26bc5340
AG
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
1d721ed6
AG
4654 /* block all schedulers and reset given job's ring */
4655 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
3f12acc8
EQ
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
9e94d22c
EQ
4669 amdgpu_ras_set_error_query_ready(tmp_adev, false);
4670
52fb44cf
EQ
4671 cancel_delayed_work_sync(&tmp_adev->delayed_init_work);
4672
9e94d22c
EQ
4673 if (!amdgpu_sriov_vf(tmp_adev))
4674 amdgpu_amdkfd_pre_reset(tmp_adev);
4675
12ffa55d
AG
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
a2f63ee8 4682 amdgpu_fbdev_set_suspend(tmp_adev, 1);
565d1941 4683
f1c1314b 4684 /* disable ras on ALL IPs */
bb5c7235 4685 if (!need_emergency_restart &&
b823821f 4686 amdgpu_device_ip_need_full_reset(tmp_adev))
f1c1314b 4687 amdgpu_ras_suspend(tmp_adev);
4688
1d721ed6
AG
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
0b2d2c2e 4695 drm_sched_stop(&ring->sched, job ? &job->base : NULL);
7c6e68c7 4696
bb5c7235 4697 if (need_emergency_restart)
7c6e68c7 4698 amdgpu_job_stop_all_jobs_on_sched(&ring->sched);
1d721ed6
AG
4699 }
4700 }
4701
bb5c7235 4702 if (need_emergency_restart)
7c6e68c7
AG
4703 goto skip_sched_resume;
4704
1d721ed6
AG
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 &&
7dd8c205 4712 dma_fence_is_signaled(job->base.s_fence->parent)) {
1d721ed6 4713 job_signaled = true;
1d721ed6
AG
4714 dev_info(adev->dev, "Guilty job already signaled, skipping HW reset");
4715 goto skip_hw_reset;
4716 }
4717
26bc5340
AG
4718retry: /* Rest of adevs pre asic reset from XGMI hive. */
4719 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
26bc5340 4720 r = amdgpu_device_pre_asic_reset(tmp_adev,
ded08454 4721 (tmp_adev == adev) ? job : NULL,
26bc5340
AG
4722 &need_full_reset);
4723 /*TODO Should we stop ?*/
4724 if (r) {
aac89168 4725 dev_err(tmp_adev->dev, "GPU pre asic reset failed with err, %d for drm dev, %s ",
4a580877 4726 r, adev_to_drm(tmp_adev)->unique);
26bc5340
AG
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 {
7ac71382 4738 r = amdgpu_do_asic_reset(hive, device_list_handle, &need_full_reset, false);
26bc5340
AG
4739 if (r && r == -EAGAIN)
4740 goto retry;
4741 }
4742
1d721ed6
AG
4743skip_hw_reset:
4744
26bc5340
AG
4745 /* Post ASIC reset for all devs .*/
4746 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
7c6e68c7 4747
1d721ed6
AG
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) {
4a580877 4762 drm_helper_resume_force_mode(adev_to_drm(tmp_adev));
1d721ed6
AG
4763 }
4764
4765 tmp_adev->asic_reset_res = 0;
26bc5340
AG
4766
4767 if (r) {
4768 /* bad news, how to tell it to userspace ? */
12ffa55d 4769 dev_info(tmp_adev->dev, "GPU reset(%d) failed\n", atomic_read(&tmp_adev->gpu_reset_counter));
26bc5340
AG
4770 amdgpu_vf_error_put(tmp_adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
4771 } else {
12ffa55d 4772 dev_info(tmp_adev->dev, "GPU reset(%d) succeeded!\n", atomic_read(&tmp_adev->gpu_reset_counter));
26bc5340 4773 }
7c6e68c7 4774 }
26bc5340 4775
7c6e68c7
AG
4776skip_sched_resume:
4777 list_for_each_entry(tmp_adev, device_list_handle, gmc.xgmi.head) {
4778 /*unlock kfd: SRIOV would do it separately */
bb5c7235 4779 if (!need_emergency_restart && !amdgpu_sriov_vf(tmp_adev))
7c6e68c7 4780 amdgpu_amdkfd_post_reset(tmp_adev);
3f12acc8
EQ
4781 if (audio_suspended)
4782 amdgpu_device_resume_display_audio(tmp_adev);
26bc5340
AG
4783 amdgpu_device_unlock_adev(tmp_adev);
4784 }
4785
cbfd17f7 4786skip_recovery:
9e94d22c 4787 if (hive) {
53b3f8f4 4788 atomic_set(&hive->in_reset, 0);
9e94d22c 4789 mutex_unlock(&hive->hive_lock);
d95e8e97 4790 amdgpu_put_xgmi_hive(hive);
9e94d22c 4791 }
26bc5340 4792
91fb309d 4793 if (r && r != -EAGAIN)
26bc5340 4794 dev_info(adev->dev, "GPU reset end with ret = %d\n", r);
d38ceaf9
AD
4795 return r;
4796}
4797
e3ecdffa
AD
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 */
5494d864 4807static void amdgpu_device_get_pcie_info(struct amdgpu_device *adev)
d0dd7f0c 4808{
5d9a6330 4809 struct pci_dev *pdev;
c5313457
HK
4810 enum pci_bus_speed speed_cap, platform_speed_cap;
4811 enum pcie_link_width platform_link_width;
d0dd7f0c 4812
cd474ba0
AD
4813 if (amdgpu_pcie_gen_cap)
4814 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
d0dd7f0c 4815
cd474ba0
AD
4816 if (amdgpu_pcie_lane_cap)
4817 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
d0dd7f0c 4818
cd474ba0
AD
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;
d0dd7f0c 4825 return;
cd474ba0 4826 }
d0dd7f0c 4827
c5313457
HK
4828 if (adev->pm.pcie_gen_mask && adev->pm.pcie_mlw_mask)
4829 return;
4830
dbaa922b
AD
4831 pcie_bandwidth_available(adev->pdev, NULL,
4832 &platform_speed_cap, &platform_link_width);
c5313457 4833
cd474ba0 4834 if (adev->pm.pcie_gen_mask == 0) {
5d9a6330
AD
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 |
cd474ba0
AD
4840 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
4841 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
cd474ba0 4842 } else {
2b3a1f51
FX
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)
5d9a6330
AD
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 */
c5313457 4865 if (platform_speed_cap == PCI_SPEED_UNKNOWN) {
5d9a6330
AD
4866 adev->pm.pcie_gen_mask |= (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1 |
4867 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2);
4868 } else {
2b3a1f51
FX
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)
5d9a6330
AD
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);
c5313457 4880 else if (platform_speed_cap == PCIE_SPEED_8_0GT)
5d9a6330
AD
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);
c5313457 4884 else if (platform_speed_cap == PCIE_SPEED_5_0GT)
5d9a6330
AD
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
cd474ba0
AD
4890 }
4891 }
4892 if (adev->pm.pcie_mlw_mask == 0) {
c5313457 4893 if (platform_link_width == PCIE_LNK_WIDTH_UNKNOWN) {
5d9a6330
AD
4894 adev->pm.pcie_mlw_mask |= AMDGPU_DEFAULT_PCIE_MLW_MASK;
4895 } else {
c5313457 4896 switch (platform_link_width) {
5d9a6330 4897 case PCIE_LNK_X32:
cd474ba0
AD
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;
5d9a6330 4906 case PCIE_LNK_X16:
cd474ba0
AD
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;
5d9a6330 4914 case PCIE_LNK_X12:
cd474ba0
AD
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;
5d9a6330 4921 case PCIE_LNK_X8:
cd474ba0
AD
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;
5d9a6330 4927 case PCIE_LNK_X4:
cd474ba0
AD
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;
5d9a6330 4932 case PCIE_LNK_X2:
cd474ba0
AD
4933 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
4934 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
4935 break;
5d9a6330 4936 case PCIE_LNK_X1:
cd474ba0
AD
4937 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
4938 break;
4939 default:
4940 break;
4941 }
d0dd7f0c
AD
4942 }
4943 }
4944}
d38ceaf9 4945
361dbd01
AD
4946int amdgpu_device_baco_enter(struct drm_device *dev)
4947{
1348969a 4948 struct amdgpu_device *adev = drm_to_adev(dev);
7a22677b 4949 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
361dbd01 4950
4a580877 4951 if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
361dbd01
AD
4952 return -ENOTSUPP;
4953
6fb33209 4954 if (ras && ras->supported && adev->nbio.funcs->enable_doorbell_interrupt)
7a22677b
LM
4955 adev->nbio.funcs->enable_doorbell_interrupt(adev, false);
4956
9530273e 4957 return amdgpu_dpm_baco_enter(adev);
361dbd01
AD
4958}
4959
4960int amdgpu_device_baco_exit(struct drm_device *dev)
4961{
1348969a 4962 struct amdgpu_device *adev = drm_to_adev(dev);
7a22677b 4963 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
9530273e 4964 int ret = 0;
361dbd01 4965
4a580877 4966 if (!amdgpu_device_supports_baco(adev_to_drm(adev)))
361dbd01
AD
4967 return -ENOTSUPP;
4968
9530273e
EQ
4969 ret = amdgpu_dpm_baco_exit(adev);
4970 if (ret)
4971 return ret;
7a22677b 4972
6fb33209 4973 if (ras && ras->supported && adev->nbio.funcs->enable_doorbell_interrupt)
7a22677b
LM
4974 adev->nbio.funcs->enable_doorbell_interrupt(adev, true);
4975
4976 return 0;
361dbd01 4977}
c9a6b82f 4978
acd89fca
AG
4979static 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
c9a6b82f
AG
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 */
5002pci_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);
acd89fca 5006 int i;
c9a6b82f
AG
5007
5008 DRM_INFO("PCI error: detected callback, state(%d)!!\n", state);
5009
6894305c
AG
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
c9a6b82f
AG
5015 switch (state) {
5016 case pci_channel_io_normal:
5017 return PCI_ERS_RESULT_CAN_RECOVER;
acd89fca 5018 /* Fatal error, prepare for slot reset */
8a11d283
TZ
5019 case pci_channel_io_frozen:
5020 /*
acd89fca
AG
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 }
c9a6b82f
AG
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 */
5055pci_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 */
5078pci_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);
362c7b91 5082 int r, i;
7ac71382 5083 bool need_full_reset = true;
362c7b91 5084 u32 memsize;
7ac71382 5085 struct list_head device_list;
c9a6b82f
AG
5086
5087 DRM_INFO("PCI error: slot reset callback!!\n");
5088
7ac71382
AG
5089 INIT_LIST_HEAD(&device_list);
5090 list_add_tail(&adev->gmc.xgmi.head, &device_list);
5091
362c7b91
AG
5092 /* wait for asic to come out of reset */
5093 msleep(500);
5094
7ac71382 5095 /* Restore PCI confspace */
c1dd4aa6 5096 amdgpu_device_load_pci_state(pdev);
c9a6b82f 5097
362c7b91
AG
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
8a11d283 5111 adev->in_pci_err_recovery = true;
7ac71382 5112 r = amdgpu_device_pre_asic_reset(adev, NULL, &need_full_reset);
bf36b52e 5113 adev->in_pci_err_recovery = false;
c9a6b82f
AG
5114 if (r)
5115 goto out;
5116
7ac71382 5117 r = amdgpu_do_asic_reset(NULL, &device_list, &need_full_reset, true);
c9a6b82f
AG
5118
5119out:
c9a6b82f 5120 if (!r) {
c1dd4aa6
AG
5121 if (amdgpu_device_cache_pci_state(adev->pdev))
5122 pci_restore_state(adev->pdev);
5123
c9a6b82f
AG
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
505199a3 5138 * OK to resume normal operation.
c9a6b82f
AG
5139 */
5140void 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);
acd89fca 5144 int i;
c9a6b82f 5145
c9a6b82f
AG
5146
5147 DRM_INFO("PCI error: resume callback!!\n");
acd89fca
AG
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);
c9a6b82f 5161}
c1dd4aa6
AG
5162
5163bool 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
5187bool 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