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