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