2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
26 #include <linux/kthread.h>
27 #include <linux/pci.h>
28 #include <linux/uaccess.h>
29 #include <linux/pm_runtime.h>
32 #include "amdgpu_pm.h"
33 #include "amdgpu_dm_debugfs.h"
34 #include "amdgpu_ras.h"
35 #include "amdgpu_rap.h"
36 #include "amdgpu_securedisplay.h"
37 #include "amdgpu_fw_attestation.h"
38 #include "amdgpu_umr.h"
40 #include "amdgpu_reset.h"
41 #include "amdgpu_psp_ta.h"
43 #if defined(CONFIG_DEBUG_FS)
46 * amdgpu_debugfs_process_reg_op - Handle MMIO register reads/writes
48 * @read: True if reading
49 * @f: open file handle
50 * @buf: User buffer to write/read to
51 * @size: Number of bytes to write/read
52 * @pos: Offset to seek to
54 * This debugfs entry has special meaning on the offset being sought.
55 * Various bits have different meanings:
57 * Bit 62: Indicates a GRBM bank switch is needed
58 * Bit 61: Indicates a SRBM bank switch is needed (implies bit 62 is
60 * Bits 24..33: The SE or ME selector if needed
61 * Bits 34..43: The SH (or SA) or PIPE selector if needed
62 * Bits 44..53: The INSTANCE (or CU/WGP) or QUEUE selector if needed
64 * Bit 23: Indicates that the PM power gating lock should be held
65 * This is necessary to read registers that might be
66 * unreliable during a power gating transistion.
68 * The lower bits are the BYTE offset of the register to read. This
69 * allows reading multiple registers in a single call and having
70 * the returned size reflect that.
72 static int amdgpu_debugfs_process_reg_op(bool read, struct file *f,
73 char __user *buf, size_t size, loff_t *pos)
75 struct amdgpu_device *adev = file_inode(f)->i_private;
78 bool pm_pg_lock, use_bank, use_ring;
79 unsigned int instance_bank, sh_bank, se_bank, me, pipe, queue, vmid;
81 pm_pg_lock = use_bank = use_ring = false;
82 instance_bank = sh_bank = se_bank = me = pipe = queue = vmid = 0;
84 if (size & 0x3 || *pos & 0x3 ||
85 ((*pos & (1ULL << 62)) && (*pos & (1ULL << 61))))
88 /* are we reading registers for which a PG lock is necessary? */
89 pm_pg_lock = (*pos >> 23) & 1;
91 if (*pos & (1ULL << 62)) {
92 se_bank = (*pos & GENMASK_ULL(33, 24)) >> 24;
93 sh_bank = (*pos & GENMASK_ULL(43, 34)) >> 34;
94 instance_bank = (*pos & GENMASK_ULL(53, 44)) >> 44;
100 if (instance_bank == 0x3FF)
101 instance_bank = 0xFFFFFFFF;
103 } else if (*pos & (1ULL << 61)) {
105 me = (*pos & GENMASK_ULL(33, 24)) >> 24;
106 pipe = (*pos & GENMASK_ULL(43, 34)) >> 34;
107 queue = (*pos & GENMASK_ULL(53, 44)) >> 44;
108 vmid = (*pos & GENMASK_ULL(58, 54)) >> 54;
112 use_bank = use_ring = false;
115 *pos &= (1UL << 22) - 1;
117 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
119 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
123 r = amdgpu_virt_enable_access_debugfs(adev);
125 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
130 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
131 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines)) {
132 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
133 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
134 amdgpu_virt_disable_access_debugfs(adev);
137 mutex_lock(&adev->grbm_idx_mutex);
138 amdgpu_gfx_select_se_sh(adev, se_bank,
139 sh_bank, instance_bank, 0);
140 } else if (use_ring) {
141 mutex_lock(&adev->srbm_mutex);
142 amdgpu_gfx_select_me_pipe_q(adev, me, pipe, queue, vmid, 0);
146 mutex_lock(&adev->pm.mutex);
152 value = RREG32(*pos >> 2);
153 r = put_user(value, (uint32_t *)buf);
155 r = get_user(value, (uint32_t *)buf);
157 amdgpu_mm_wreg_mmio_rlc(adev, *pos >> 2, value);
172 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff, 0);
173 mutex_unlock(&adev->grbm_idx_mutex);
174 } else if (use_ring) {
175 amdgpu_gfx_select_me_pipe_q(adev, 0, 0, 0, 0, 0);
176 mutex_unlock(&adev->srbm_mutex);
180 mutex_unlock(&adev->pm.mutex);
182 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
183 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
185 amdgpu_virt_disable_access_debugfs(adev);
190 * amdgpu_debugfs_regs_read - Callback for reading MMIO registers
192 static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
193 size_t size, loff_t *pos)
195 return amdgpu_debugfs_process_reg_op(true, f, buf, size, pos);
199 * amdgpu_debugfs_regs_write - Callback for writing MMIO registers
201 static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
202 size_t size, loff_t *pos)
204 return amdgpu_debugfs_process_reg_op(false, f, (char __user *)buf, size, pos);
207 static int amdgpu_debugfs_regs2_open(struct inode *inode, struct file *file)
209 struct amdgpu_debugfs_regs2_data *rd;
211 rd = kzalloc(sizeof(*rd), GFP_KERNEL);
214 rd->adev = file_inode(file)->i_private;
215 file->private_data = rd;
216 mutex_init(&rd->lock);
221 static int amdgpu_debugfs_regs2_release(struct inode *inode, struct file *file)
223 struct amdgpu_debugfs_regs2_data *rd = file->private_data;
225 mutex_destroy(&rd->lock);
226 kfree(file->private_data);
230 static ssize_t amdgpu_debugfs_regs2_op(struct file *f, char __user *buf, u32 offset, size_t size, int write_en)
232 struct amdgpu_debugfs_regs2_data *rd = f->private_data;
233 struct amdgpu_device *adev = rd->adev;
238 if (size & 0x3 || offset & 0x3)
241 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
243 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
247 r = amdgpu_virt_enable_access_debugfs(adev);
249 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
253 mutex_lock(&rd->lock);
255 if (rd->id.use_grbm) {
256 if ((rd->id.grbm.sh != 0xFFFFFFFF && rd->id.grbm.sh >= adev->gfx.config.max_sh_per_se) ||
257 (rd->id.grbm.se != 0xFFFFFFFF && rd->id.grbm.se >= adev->gfx.config.max_shader_engines)) {
258 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
259 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
260 amdgpu_virt_disable_access_debugfs(adev);
261 mutex_unlock(&rd->lock);
264 mutex_lock(&adev->grbm_idx_mutex);
265 amdgpu_gfx_select_se_sh(adev, rd->id.grbm.se,
267 rd->id.grbm.instance, rd->id.xcc_id);
270 if (rd->id.use_srbm) {
271 mutex_lock(&adev->srbm_mutex);
272 amdgpu_gfx_select_me_pipe_q(adev, rd->id.srbm.me, rd->id.srbm.pipe,
273 rd->id.srbm.queue, rd->id.srbm.vmid, rd->id.xcc_id);
277 mutex_lock(&adev->pm.mutex);
281 value = RREG32(offset >> 2);
282 r = put_user(value, (uint32_t *)buf);
284 r = get_user(value, (uint32_t *)buf);
286 amdgpu_mm_wreg_mmio_rlc(adev, offset >> 2, value);
298 if (rd->id.use_grbm) {
299 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff, rd->id.xcc_id);
300 mutex_unlock(&adev->grbm_idx_mutex);
303 if (rd->id.use_srbm) {
304 amdgpu_gfx_select_me_pipe_q(adev, 0, 0, 0, 0, rd->id.xcc_id);
305 mutex_unlock(&adev->srbm_mutex);
309 mutex_unlock(&adev->pm.mutex);
311 mutex_unlock(&rd->lock);
313 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
314 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
316 amdgpu_virt_disable_access_debugfs(adev);
320 static long amdgpu_debugfs_regs2_ioctl(struct file *f, unsigned int cmd, unsigned long data)
322 struct amdgpu_debugfs_regs2_data *rd = f->private_data;
323 struct amdgpu_debugfs_regs2_iocdata v1_data;
326 mutex_lock(&rd->lock);
329 case AMDGPU_DEBUGFS_REGS2_IOC_SET_STATE_V2:
330 r = copy_from_user(&rd->id, (struct amdgpu_debugfs_regs2_iocdata_v2 *)data,
335 case AMDGPU_DEBUGFS_REGS2_IOC_SET_STATE:
336 r = copy_from_user(&v1_data, (struct amdgpu_debugfs_regs2_iocdata *)data,
349 rd->id.use_srbm = v1_data.use_srbm;
350 rd->id.use_grbm = v1_data.use_grbm;
351 rd->id.pg_lock = v1_data.pg_lock;
352 rd->id.grbm.se = v1_data.grbm.se;
353 rd->id.grbm.sh = v1_data.grbm.sh;
354 rd->id.grbm.instance = v1_data.grbm.instance;
355 rd->id.srbm.me = v1_data.srbm.me;
356 rd->id.srbm.pipe = v1_data.srbm.pipe;
357 rd->id.srbm.queue = v1_data.srbm.queue;
360 mutex_unlock(&rd->lock);
364 static ssize_t amdgpu_debugfs_regs2_read(struct file *f, char __user *buf, size_t size, loff_t *pos)
366 return amdgpu_debugfs_regs2_op(f, buf, *pos, size, 0);
369 static ssize_t amdgpu_debugfs_regs2_write(struct file *f, const char __user *buf, size_t size, loff_t *pos)
371 return amdgpu_debugfs_regs2_op(f, (char __user *)buf, *pos, size, 1);
374 static int amdgpu_debugfs_gprwave_open(struct inode *inode, struct file *file)
376 struct amdgpu_debugfs_gprwave_data *rd;
378 rd = kzalloc(sizeof *rd, GFP_KERNEL);
381 rd->adev = file_inode(file)->i_private;
382 file->private_data = rd;
383 mutex_init(&rd->lock);
388 static int amdgpu_debugfs_gprwave_release(struct inode *inode, struct file *file)
390 struct amdgpu_debugfs_gprwave_data *rd = file->private_data;
391 mutex_destroy(&rd->lock);
392 kfree(file->private_data);
396 static ssize_t amdgpu_debugfs_gprwave_read(struct file *f, char __user *buf, size_t size, loff_t *pos)
398 struct amdgpu_debugfs_gprwave_data *rd = f->private_data;
399 struct amdgpu_device *adev = rd->adev;
404 if (size & 0x3 || *pos & 0x3)
407 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
409 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
413 r = amdgpu_virt_enable_access_debugfs(adev);
415 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
419 data = kcalloc(1024, sizeof(*data), GFP_KERNEL);
421 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
422 amdgpu_virt_disable_access_debugfs(adev);
426 /* switch to the specific se/sh/cu */
427 mutex_lock(&adev->grbm_idx_mutex);
428 amdgpu_gfx_select_se_sh(adev, rd->id.se, rd->id.sh, rd->id.cu, rd->id.xcc_id);
430 if (!rd->id.gpr_or_wave) {
432 if (adev->gfx.funcs->read_wave_data)
433 adev->gfx.funcs->read_wave_data(adev, rd->id.xcc_id, rd->id.simd, rd->id.wave, data, &x);
436 if (rd->id.gpr.vpgr_or_sgpr) {
437 if (adev->gfx.funcs->read_wave_vgprs)
438 adev->gfx.funcs->read_wave_vgprs(adev, rd->id.xcc_id, rd->id.simd, rd->id.wave, rd->id.gpr.thread, *pos, size>>2, data);
440 if (adev->gfx.funcs->read_wave_sgprs)
441 adev->gfx.funcs->read_wave_sgprs(adev, rd->id.xcc_id, rd->id.simd, rd->id.wave, *pos, size>>2, data);
445 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, rd->id.xcc_id);
446 mutex_unlock(&adev->grbm_idx_mutex);
448 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
449 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
456 while (size && (*pos < x * 4)) {
459 value = data[*pos >> 2];
460 r = put_user(value, (uint32_t *)buf);
473 amdgpu_virt_disable_access_debugfs(adev);
478 static long amdgpu_debugfs_gprwave_ioctl(struct file *f, unsigned int cmd, unsigned long data)
480 struct amdgpu_debugfs_gprwave_data *rd = f->private_data;
483 mutex_lock(&rd->lock);
486 case AMDGPU_DEBUGFS_GPRWAVE_IOC_SET_STATE:
487 if (copy_from_user(&rd->id,
488 (struct amdgpu_debugfs_gprwave_iocdata *)data,
498 mutex_unlock(&rd->lock);
506 * amdgpu_debugfs_regs_pcie_read - Read from a PCIE register
508 * @f: open file handle
509 * @buf: User buffer to store read data in
510 * @size: Number of bytes to read
511 * @pos: Offset to seek to
513 * The lower bits are the BYTE offset of the register to read. This
514 * allows reading multiple registers in a single call and having
515 * the returned size reflect that.
517 static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
518 size_t size, loff_t *pos)
520 struct amdgpu_device *adev = file_inode(f)->i_private;
524 if (size & 0x3 || *pos & 0x3)
527 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
529 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
533 r = amdgpu_virt_enable_access_debugfs(adev);
535 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
542 value = RREG32_PCIE(*pos);
543 r = put_user(value, (uint32_t *)buf);
555 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
556 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
557 amdgpu_virt_disable_access_debugfs(adev);
562 * amdgpu_debugfs_regs_pcie_write - Write to a PCIE register
564 * @f: open file handle
565 * @buf: User buffer to write data from
566 * @size: Number of bytes to write
567 * @pos: Offset to seek to
569 * The lower bits are the BYTE offset of the register to write. This
570 * allows writing multiple registers in a single call and having
571 * the returned size reflect that.
573 static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
574 size_t size, loff_t *pos)
576 struct amdgpu_device *adev = file_inode(f)->i_private;
580 if (size & 0x3 || *pos & 0x3)
583 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
585 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
589 r = amdgpu_virt_enable_access_debugfs(adev);
591 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
598 r = get_user(value, (uint32_t *)buf);
602 WREG32_PCIE(*pos, value);
612 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
613 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
614 amdgpu_virt_disable_access_debugfs(adev);
619 * amdgpu_debugfs_regs_didt_read - Read from a DIDT register
621 * @f: open file handle
622 * @buf: User buffer to store read data in
623 * @size: Number of bytes to read
624 * @pos: Offset to seek to
626 * The lower bits are the BYTE offset of the register to read. This
627 * allows reading multiple registers in a single call and having
628 * the returned size reflect that.
630 static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
631 size_t size, loff_t *pos)
633 struct amdgpu_device *adev = file_inode(f)->i_private;
637 if (size & 0x3 || *pos & 0x3)
640 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
642 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
646 r = amdgpu_virt_enable_access_debugfs(adev);
648 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
655 value = RREG32_DIDT(*pos >> 2);
656 r = put_user(value, (uint32_t *)buf);
668 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
669 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
670 amdgpu_virt_disable_access_debugfs(adev);
675 * amdgpu_debugfs_regs_didt_write - Write to a DIDT register
677 * @f: open file handle
678 * @buf: User buffer to write data from
679 * @size: Number of bytes to write
680 * @pos: Offset to seek to
682 * The lower bits are the BYTE offset of the register to write. This
683 * allows writing multiple registers in a single call and having
684 * the returned size reflect that.
686 static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
687 size_t size, loff_t *pos)
689 struct amdgpu_device *adev = file_inode(f)->i_private;
693 if (size & 0x3 || *pos & 0x3)
696 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
698 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
702 r = amdgpu_virt_enable_access_debugfs(adev);
704 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
711 r = get_user(value, (uint32_t *)buf);
715 WREG32_DIDT(*pos >> 2, value);
725 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
726 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
727 amdgpu_virt_disable_access_debugfs(adev);
732 * amdgpu_debugfs_regs_smc_read - Read from a SMC register
734 * @f: open file handle
735 * @buf: User buffer to store read data in
736 * @size: Number of bytes to read
737 * @pos: Offset to seek to
739 * The lower bits are the BYTE offset of the register to read. This
740 * allows reading multiple registers in a single call and having
741 * the returned size reflect that.
743 static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
744 size_t size, loff_t *pos)
746 struct amdgpu_device *adev = file_inode(f)->i_private;
750 if (size & 0x3 || *pos & 0x3)
753 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
755 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
759 r = amdgpu_virt_enable_access_debugfs(adev);
761 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
768 value = RREG32_SMC(*pos);
769 r = put_user(value, (uint32_t *)buf);
781 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
782 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
783 amdgpu_virt_disable_access_debugfs(adev);
788 * amdgpu_debugfs_regs_smc_write - Write to a SMC register
790 * @f: open file handle
791 * @buf: User buffer to write data from
792 * @size: Number of bytes to write
793 * @pos: Offset to seek to
795 * The lower bits are the BYTE offset of the register to write. This
796 * allows writing multiple registers in a single call and having
797 * the returned size reflect that.
799 static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
800 size_t size, loff_t *pos)
802 struct amdgpu_device *adev = file_inode(f)->i_private;
806 if (size & 0x3 || *pos & 0x3)
809 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
811 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
815 r = amdgpu_virt_enable_access_debugfs(adev);
817 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
824 r = get_user(value, (uint32_t *)buf);
828 WREG32_SMC(*pos, value);
838 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
839 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
840 amdgpu_virt_disable_access_debugfs(adev);
845 * amdgpu_debugfs_gca_config_read - Read from gfx config data
847 * @f: open file handle
848 * @buf: User buffer to store read data in
849 * @size: Number of bytes to read
850 * @pos: Offset to seek to
852 * This file is used to access configuration data in a somewhat
853 * stable fashion. The format is a series of DWORDs with the first
854 * indicating which revision it is. New content is appended to the
855 * end so that older software can still read the data.
858 static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
859 size_t size, loff_t *pos)
861 struct amdgpu_device *adev = file_inode(f)->i_private;
864 uint32_t *config, no_regs = 0;
866 if (size & 0x3 || *pos & 0x3)
869 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
873 /* version, increment each time something is added */
874 config[no_regs++] = 5;
875 config[no_regs++] = adev->gfx.config.max_shader_engines;
876 config[no_regs++] = adev->gfx.config.max_tile_pipes;
877 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
878 config[no_regs++] = adev->gfx.config.max_sh_per_se;
879 config[no_regs++] = adev->gfx.config.max_backends_per_se;
880 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
881 config[no_regs++] = adev->gfx.config.max_gprs;
882 config[no_regs++] = adev->gfx.config.max_gs_threads;
883 config[no_regs++] = adev->gfx.config.max_hw_contexts;
884 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
885 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
886 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
887 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
888 config[no_regs++] = adev->gfx.config.num_tile_pipes;
889 config[no_regs++] = adev->gfx.config.backend_enable_mask;
890 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
891 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
892 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
893 config[no_regs++] = adev->gfx.config.num_gpus;
894 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
895 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
896 config[no_regs++] = adev->gfx.config.gb_addr_config;
897 config[no_regs++] = adev->gfx.config.num_rbs;
900 config[no_regs++] = adev->rev_id;
901 config[no_regs++] = lower_32_bits(adev->pg_flags);
902 config[no_regs++] = lower_32_bits(adev->cg_flags);
905 config[no_regs++] = adev->family;
906 config[no_regs++] = adev->external_rev_id;
909 config[no_regs++] = adev->pdev->device;
910 config[no_regs++] = adev->pdev->revision;
911 config[no_regs++] = adev->pdev->subsystem_device;
912 config[no_regs++] = adev->pdev->subsystem_vendor;
914 /* rev==4 APU flag */
915 config[no_regs++] = adev->flags & AMD_IS_APU ? 1 : 0;
917 /* rev==5 PG/CG flag upper 32bit */
918 config[no_regs++] = upper_32_bits(adev->pg_flags);
919 config[no_regs++] = upper_32_bits(adev->cg_flags);
921 while (size && (*pos < no_regs * 4)) {
924 value = config[*pos >> 2];
925 r = put_user(value, (uint32_t *)buf);
942 * amdgpu_debugfs_sensor_read - Read from the powerplay sensors
944 * @f: open file handle
945 * @buf: User buffer to store read data in
946 * @size: Number of bytes to read
947 * @pos: Offset to seek to
949 * The offset is treated as the BYTE address of one of the sensors
950 * enumerated in amd/include/kgd_pp_interface.h under the
951 * 'amd_pp_sensors' enumeration. For instance to read the UVD VCLK
952 * you would use the offset 3 * 4 = 12.
954 static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
955 size_t size, loff_t *pos)
957 struct amdgpu_device *adev = file_inode(f)->i_private;
958 int idx, x, outsize, r, valuesize;
961 if (size & 3 || *pos & 0x3)
964 if (!adev->pm.dpm_enabled)
967 /* convert offset to sensor number */
970 valuesize = sizeof(values);
972 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
974 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
978 r = amdgpu_virt_enable_access_debugfs(adev);
980 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
984 r = amdgpu_dpm_read_sensor(adev, idx, &values[0], &valuesize);
986 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
987 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
990 amdgpu_virt_disable_access_debugfs(adev);
994 if (size > valuesize) {
995 amdgpu_virt_disable_access_debugfs(adev);
1003 r = put_user(values[x++], (int32_t *)buf);
1010 amdgpu_virt_disable_access_debugfs(adev);
1011 return !r ? outsize : r;
1014 /** amdgpu_debugfs_wave_read - Read WAVE STATUS data
1016 * @f: open file handle
1017 * @buf: User buffer to store read data in
1018 * @size: Number of bytes to read
1019 * @pos: Offset to seek to
1021 * The offset being sought changes which wave that the status data
1022 * will be returned for. The bits are used as follows:
1024 * Bits 0..6: Byte offset into data
1025 * Bits 7..14: SE selector
1026 * Bits 15..22: SH/SA selector
1027 * Bits 23..30: CU/{WGP+SIMD} selector
1028 * Bits 31..36: WAVE ID selector
1029 * Bits 37..44: SIMD ID selector
1031 * The returned data begins with one DWORD of version information
1032 * Followed by WAVE STATUS registers relevant to the GFX IP version
1033 * being used. See gfx_v8_0_read_wave_data() for an example output.
1035 static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
1036 size_t size, loff_t *pos)
1038 struct amdgpu_device *adev = f->f_inode->i_private;
1041 uint32_t offset, se, sh, cu, wave, simd, data[32];
1043 if (size & 3 || *pos & 3)
1047 offset = (*pos & GENMASK_ULL(6, 0));
1048 se = (*pos & GENMASK_ULL(14, 7)) >> 7;
1049 sh = (*pos & GENMASK_ULL(22, 15)) >> 15;
1050 cu = (*pos & GENMASK_ULL(30, 23)) >> 23;
1051 wave = (*pos & GENMASK_ULL(36, 31)) >> 31;
1052 simd = (*pos & GENMASK_ULL(44, 37)) >> 37;
1054 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1056 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1060 r = amdgpu_virt_enable_access_debugfs(adev);
1062 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1066 /* switch to the specific se/sh/cu */
1067 mutex_lock(&adev->grbm_idx_mutex);
1068 amdgpu_gfx_select_se_sh(adev, se, sh, cu, 0);
1071 if (adev->gfx.funcs->read_wave_data)
1072 adev->gfx.funcs->read_wave_data(adev, 0, simd, wave, data, &x);
1074 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0);
1075 mutex_unlock(&adev->grbm_idx_mutex);
1077 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1078 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1081 amdgpu_virt_disable_access_debugfs(adev);
1085 while (size && (offset < x * 4)) {
1088 value = data[offset >> 2];
1089 r = put_user(value, (uint32_t *)buf);
1091 amdgpu_virt_disable_access_debugfs(adev);
1101 amdgpu_virt_disable_access_debugfs(adev);
1105 /** amdgpu_debugfs_gpr_read - Read wave gprs
1107 * @f: open file handle
1108 * @buf: User buffer to store read data in
1109 * @size: Number of bytes to read
1110 * @pos: Offset to seek to
1112 * The offset being sought changes which wave that the status data
1113 * will be returned for. The bits are used as follows:
1115 * Bits 0..11: Byte offset into data
1116 * Bits 12..19: SE selector
1117 * Bits 20..27: SH/SA selector
1118 * Bits 28..35: CU/{WGP+SIMD} selector
1119 * Bits 36..43: WAVE ID selector
1120 * Bits 37..44: SIMD ID selector
1121 * Bits 52..59: Thread selector
1122 * Bits 60..61: Bank selector (VGPR=0,SGPR=1)
1124 * The return data comes from the SGPR or VGPR register bank for
1125 * the selected operational unit.
1127 static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
1128 size_t size, loff_t *pos)
1130 struct amdgpu_device *adev = f->f_inode->i_private;
1133 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
1135 if (size > 4096 || size & 3 || *pos & 3)
1139 offset = (*pos & GENMASK_ULL(11, 0)) >> 2;
1140 se = (*pos & GENMASK_ULL(19, 12)) >> 12;
1141 sh = (*pos & GENMASK_ULL(27, 20)) >> 20;
1142 cu = (*pos & GENMASK_ULL(35, 28)) >> 28;
1143 wave = (*pos & GENMASK_ULL(43, 36)) >> 36;
1144 simd = (*pos & GENMASK_ULL(51, 44)) >> 44;
1145 thread = (*pos & GENMASK_ULL(59, 52)) >> 52;
1146 bank = (*pos & GENMASK_ULL(61, 60)) >> 60;
1148 data = kcalloc(1024, sizeof(*data), GFP_KERNEL);
1152 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1156 r = amdgpu_virt_enable_access_debugfs(adev);
1160 /* switch to the specific se/sh/cu */
1161 mutex_lock(&adev->grbm_idx_mutex);
1162 amdgpu_gfx_select_se_sh(adev, se, sh, cu, 0);
1165 if (adev->gfx.funcs->read_wave_vgprs)
1166 adev->gfx.funcs->read_wave_vgprs(adev, 0, simd, wave, thread, offset, size>>2, data);
1168 if (adev->gfx.funcs->read_wave_sgprs)
1169 adev->gfx.funcs->read_wave_sgprs(adev, 0, simd, wave, offset, size>>2, data);
1172 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0);
1173 mutex_unlock(&adev->grbm_idx_mutex);
1175 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1176 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1181 value = data[result >> 2];
1182 r = put_user(value, (uint32_t *)buf);
1184 amdgpu_virt_disable_access_debugfs(adev);
1194 amdgpu_virt_disable_access_debugfs(adev);
1198 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1204 * amdgpu_debugfs_gfxoff_residency_read - Read GFXOFF residency
1206 * @f: open file handle
1207 * @buf: User buffer to store read data in
1208 * @size: Number of bytes to read
1209 * @pos: Offset to seek to
1211 * Read the last residency value logged. It doesn't auto update, one needs to
1212 * stop logging before getting the current value.
1214 static ssize_t amdgpu_debugfs_gfxoff_residency_read(struct file *f, char __user *buf,
1215 size_t size, loff_t *pos)
1217 struct amdgpu_device *adev = file_inode(f)->i_private;
1221 if (size & 0x3 || *pos & 0x3)
1224 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1226 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1233 r = amdgpu_get_gfx_off_residency(adev, &value);
1237 r = put_user(value, (uint32_t *)buf);
1249 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1250 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1256 * amdgpu_debugfs_gfxoff_residency_write - Log GFXOFF Residency
1258 * @f: open file handle
1259 * @buf: User buffer to write data from
1260 * @size: Number of bytes to write
1261 * @pos: Offset to seek to
1263 * Write a 32-bit non-zero to start logging; write a 32-bit zero to stop
1265 static ssize_t amdgpu_debugfs_gfxoff_residency_write(struct file *f, const char __user *buf,
1266 size_t size, loff_t *pos)
1268 struct amdgpu_device *adev = file_inode(f)->i_private;
1272 if (size & 0x3 || *pos & 0x3)
1275 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1277 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1284 r = get_user(value, (uint32_t *)buf);
1288 amdgpu_set_gfx_off_residency(adev, value ? true : false);
1298 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1299 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1306 * amdgpu_debugfs_gfxoff_count_read - Read GFXOFF entry count
1308 * @f: open file handle
1309 * @buf: User buffer to store read data in
1310 * @size: Number of bytes to read
1311 * @pos: Offset to seek to
1313 static ssize_t amdgpu_debugfs_gfxoff_count_read(struct file *f, char __user *buf,
1314 size_t size, loff_t *pos)
1316 struct amdgpu_device *adev = file_inode(f)->i_private;
1320 if (size & 0x3 || *pos & 0x3)
1323 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1325 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1332 r = amdgpu_get_gfx_off_entrycount(adev, &value);
1336 r = put_user(value, (u64 *)buf);
1348 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1349 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1355 * amdgpu_debugfs_gfxoff_write - Enable/disable GFXOFF
1357 * @f: open file handle
1358 * @buf: User buffer to write data from
1359 * @size: Number of bytes to write
1360 * @pos: Offset to seek to
1362 * Write a 32-bit zero to disable or a 32-bit non-zero to enable
1364 static ssize_t amdgpu_debugfs_gfxoff_write(struct file *f, const char __user *buf,
1365 size_t size, loff_t *pos)
1367 struct amdgpu_device *adev = file_inode(f)->i_private;
1371 if (size & 0x3 || *pos & 0x3)
1374 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1376 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1383 r = get_user(value, (uint32_t *)buf);
1387 amdgpu_gfx_off_ctrl(adev, value ? true : false);
1397 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1398 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1405 * amdgpu_debugfs_gfxoff_read - read gfxoff status
1407 * @f: open file handle
1408 * @buf: User buffer to store read data in
1409 * @size: Number of bytes to read
1410 * @pos: Offset to seek to
1412 static ssize_t amdgpu_debugfs_gfxoff_read(struct file *f, char __user *buf,
1413 size_t size, loff_t *pos)
1415 struct amdgpu_device *adev = file_inode(f)->i_private;
1419 if (size & 0x3 || *pos & 0x3)
1422 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1424 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1429 u32 value = adev->gfx.gfx_off_state;
1431 r = put_user(value, (u32 *)buf);
1443 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1444 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1449 static ssize_t amdgpu_debugfs_gfxoff_status_read(struct file *f, char __user *buf,
1450 size_t size, loff_t *pos)
1452 struct amdgpu_device *adev = file_inode(f)->i_private;
1456 if (size & 0x3 || *pos & 0x3)
1459 r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1461 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1468 r = amdgpu_get_gfx_off_status(adev, &value);
1472 r = put_user(value, (u32 *)buf);
1484 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1485 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1490 static const struct file_operations amdgpu_debugfs_regs2_fops = {
1491 .owner = THIS_MODULE,
1492 .unlocked_ioctl = amdgpu_debugfs_regs2_ioctl,
1493 .read = amdgpu_debugfs_regs2_read,
1494 .write = amdgpu_debugfs_regs2_write,
1495 .open = amdgpu_debugfs_regs2_open,
1496 .release = amdgpu_debugfs_regs2_release,
1497 .llseek = default_llseek
1500 static const struct file_operations amdgpu_debugfs_gprwave_fops = {
1501 .owner = THIS_MODULE,
1502 .unlocked_ioctl = amdgpu_debugfs_gprwave_ioctl,
1503 .read = amdgpu_debugfs_gprwave_read,
1504 .open = amdgpu_debugfs_gprwave_open,
1505 .release = amdgpu_debugfs_gprwave_release,
1506 .llseek = default_llseek
1509 static const struct file_operations amdgpu_debugfs_regs_fops = {
1510 .owner = THIS_MODULE,
1511 .read = amdgpu_debugfs_regs_read,
1512 .write = amdgpu_debugfs_regs_write,
1513 .llseek = default_llseek
1515 static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
1516 .owner = THIS_MODULE,
1517 .read = amdgpu_debugfs_regs_didt_read,
1518 .write = amdgpu_debugfs_regs_didt_write,
1519 .llseek = default_llseek
1521 static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
1522 .owner = THIS_MODULE,
1523 .read = amdgpu_debugfs_regs_pcie_read,
1524 .write = amdgpu_debugfs_regs_pcie_write,
1525 .llseek = default_llseek
1527 static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
1528 .owner = THIS_MODULE,
1529 .read = amdgpu_debugfs_regs_smc_read,
1530 .write = amdgpu_debugfs_regs_smc_write,
1531 .llseek = default_llseek
1534 static const struct file_operations amdgpu_debugfs_gca_config_fops = {
1535 .owner = THIS_MODULE,
1536 .read = amdgpu_debugfs_gca_config_read,
1537 .llseek = default_llseek
1540 static const struct file_operations amdgpu_debugfs_sensors_fops = {
1541 .owner = THIS_MODULE,
1542 .read = amdgpu_debugfs_sensor_read,
1543 .llseek = default_llseek
1546 static const struct file_operations amdgpu_debugfs_wave_fops = {
1547 .owner = THIS_MODULE,
1548 .read = amdgpu_debugfs_wave_read,
1549 .llseek = default_llseek
1551 static const struct file_operations amdgpu_debugfs_gpr_fops = {
1552 .owner = THIS_MODULE,
1553 .read = amdgpu_debugfs_gpr_read,
1554 .llseek = default_llseek
1557 static const struct file_operations amdgpu_debugfs_gfxoff_fops = {
1558 .owner = THIS_MODULE,
1559 .read = amdgpu_debugfs_gfxoff_read,
1560 .write = amdgpu_debugfs_gfxoff_write,
1561 .llseek = default_llseek
1564 static const struct file_operations amdgpu_debugfs_gfxoff_status_fops = {
1565 .owner = THIS_MODULE,
1566 .read = amdgpu_debugfs_gfxoff_status_read,
1567 .llseek = default_llseek
1570 static const struct file_operations amdgpu_debugfs_gfxoff_count_fops = {
1571 .owner = THIS_MODULE,
1572 .read = amdgpu_debugfs_gfxoff_count_read,
1573 .llseek = default_llseek
1576 static const struct file_operations amdgpu_debugfs_gfxoff_residency_fops = {
1577 .owner = THIS_MODULE,
1578 .read = amdgpu_debugfs_gfxoff_residency_read,
1579 .write = amdgpu_debugfs_gfxoff_residency_write,
1580 .llseek = default_llseek
1583 static const struct file_operations *debugfs_regs[] = {
1584 &amdgpu_debugfs_regs_fops,
1585 &amdgpu_debugfs_regs2_fops,
1586 &amdgpu_debugfs_gprwave_fops,
1587 &amdgpu_debugfs_regs_didt_fops,
1588 &amdgpu_debugfs_regs_pcie_fops,
1589 &amdgpu_debugfs_regs_smc_fops,
1590 &amdgpu_debugfs_gca_config_fops,
1591 &amdgpu_debugfs_sensors_fops,
1592 &amdgpu_debugfs_wave_fops,
1593 &amdgpu_debugfs_gpr_fops,
1594 &amdgpu_debugfs_gfxoff_fops,
1595 &amdgpu_debugfs_gfxoff_status_fops,
1596 &amdgpu_debugfs_gfxoff_count_fops,
1597 &amdgpu_debugfs_gfxoff_residency_fops,
1600 static const char * const debugfs_regs_names[] = {
1607 "amdgpu_gca_config",
1612 "amdgpu_gfxoff_status",
1613 "amdgpu_gfxoff_count",
1614 "amdgpu_gfxoff_residency",
1618 * amdgpu_debugfs_regs_init - Initialize debugfs entries that provide
1621 * @adev: The device to attach the debugfs entries to
1623 int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
1625 struct drm_minor *minor = adev_to_drm(adev)->primary;
1626 struct dentry *ent, *root = minor->debugfs_root;
1629 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
1630 ent = debugfs_create_file(debugfs_regs_names[i],
1631 S_IFREG | 0444, root,
1632 adev, debugfs_regs[i]);
1633 if (!i && !IS_ERR_OR_NULL(ent))
1634 i_size_write(ent->d_inode, adev->rmmio_size);
1640 static int amdgpu_debugfs_test_ib_show(struct seq_file *m, void *unused)
1642 struct amdgpu_device *adev = m->private;
1643 struct drm_device *dev = adev_to_drm(adev);
1646 r = pm_runtime_get_sync(dev->dev);
1648 pm_runtime_put_autosuspend(dev->dev);
1652 /* Avoid accidently unparking the sched thread during GPU reset */
1653 r = down_write_killable(&adev->reset_domain->sem);
1657 /* hold on the scheduler */
1658 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
1659 struct amdgpu_ring *ring = adev->rings[i];
1661 if (!ring || !ring->sched.thread)
1663 kthread_park(ring->sched.thread);
1666 seq_puts(m, "run ib test:\n");
1667 r = amdgpu_ib_ring_tests(adev);
1669 seq_printf(m, "ib ring tests failed (%d).\n", r);
1671 seq_puts(m, "ib ring tests passed.\n");
1673 /* go on the scheduler */
1674 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
1675 struct amdgpu_ring *ring = adev->rings[i];
1677 if (!ring || !ring->sched.thread)
1679 kthread_unpark(ring->sched.thread);
1682 up_write(&adev->reset_domain->sem);
1684 pm_runtime_mark_last_busy(dev->dev);
1685 pm_runtime_put_autosuspend(dev->dev);
1690 static int amdgpu_debugfs_evict_vram(void *data, u64 *val)
1692 struct amdgpu_device *adev = (struct amdgpu_device *)data;
1693 struct drm_device *dev = adev_to_drm(adev);
1696 r = pm_runtime_get_sync(dev->dev);
1698 pm_runtime_put_autosuspend(dev->dev);
1702 *val = amdgpu_ttm_evict_resources(adev, TTM_PL_VRAM);
1704 pm_runtime_mark_last_busy(dev->dev);
1705 pm_runtime_put_autosuspend(dev->dev);
1711 static int amdgpu_debugfs_evict_gtt(void *data, u64 *val)
1713 struct amdgpu_device *adev = (struct amdgpu_device *)data;
1714 struct drm_device *dev = adev_to_drm(adev);
1717 r = pm_runtime_get_sync(dev->dev);
1719 pm_runtime_put_autosuspend(dev->dev);
1723 *val = amdgpu_ttm_evict_resources(adev, TTM_PL_TT);
1725 pm_runtime_mark_last_busy(dev->dev);
1726 pm_runtime_put_autosuspend(dev->dev);
1731 static int amdgpu_debugfs_benchmark(void *data, u64 val)
1733 struct amdgpu_device *adev = (struct amdgpu_device *)data;
1734 struct drm_device *dev = adev_to_drm(adev);
1737 r = pm_runtime_get_sync(dev->dev);
1739 pm_runtime_put_autosuspend(dev->dev);
1743 r = amdgpu_benchmark(adev, val);
1745 pm_runtime_mark_last_busy(dev->dev);
1746 pm_runtime_put_autosuspend(dev->dev);
1751 static int amdgpu_debugfs_vm_info_show(struct seq_file *m, void *unused)
1753 struct amdgpu_device *adev = m->private;
1754 struct drm_device *dev = adev_to_drm(adev);
1755 struct drm_file *file;
1758 r = mutex_lock_interruptible(&dev->filelist_mutex);
1762 list_for_each_entry(file, &dev->filelist, lhead) {
1763 struct amdgpu_fpriv *fpriv = file->driver_priv;
1764 struct amdgpu_vm *vm = &fpriv->vm;
1766 seq_printf(m, "pid:%d\tProcess:%s ----------\n",
1767 vm->task_info.pid, vm->task_info.process_name);
1768 r = amdgpu_bo_reserve(vm->root.bo, true);
1771 amdgpu_debugfs_vm_bo_info(vm, m);
1772 amdgpu_bo_unreserve(vm->root.bo);
1775 mutex_unlock(&dev->filelist_mutex);
1780 DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_test_ib);
1781 DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_vm_info);
1782 DEFINE_DEBUGFS_ATTRIBUTE(amdgpu_evict_vram_fops, amdgpu_debugfs_evict_vram,
1784 DEFINE_DEBUGFS_ATTRIBUTE(amdgpu_evict_gtt_fops, amdgpu_debugfs_evict_gtt,
1786 DEFINE_DEBUGFS_ATTRIBUTE(amdgpu_benchmark_fops, NULL, amdgpu_debugfs_benchmark,
1789 static void amdgpu_ib_preempt_fences_swap(struct amdgpu_ring *ring,
1790 struct dma_fence **fences)
1792 struct amdgpu_fence_driver *drv = &ring->fence_drv;
1793 uint32_t sync_seq, last_seq;
1795 last_seq = atomic_read(&ring->fence_drv.last_seq);
1796 sync_seq = ring->fence_drv.sync_seq;
1798 last_seq &= drv->num_fences_mask;
1799 sync_seq &= drv->num_fences_mask;
1802 struct dma_fence *fence, **ptr;
1805 last_seq &= drv->num_fences_mask;
1806 ptr = &drv->fences[last_seq];
1808 fence = rcu_dereference_protected(*ptr, 1);
1809 RCU_INIT_POINTER(*ptr, NULL);
1814 fences[last_seq] = fence;
1816 } while (last_seq != sync_seq);
1819 static void amdgpu_ib_preempt_signal_fences(struct dma_fence **fences,
1823 struct dma_fence *fence;
1825 for (i = 0; i < length; i++) {
1829 dma_fence_signal(fence);
1830 dma_fence_put(fence);
1834 static void amdgpu_ib_preempt_job_recovery(struct drm_gpu_scheduler *sched)
1836 struct drm_sched_job *s_job;
1837 struct dma_fence *fence;
1839 spin_lock(&sched->job_list_lock);
1840 list_for_each_entry(s_job, &sched->pending_list, list) {
1841 fence = sched->ops->run_job(s_job);
1842 dma_fence_put(fence);
1844 spin_unlock(&sched->job_list_lock);
1847 static void amdgpu_ib_preempt_mark_partial_job(struct amdgpu_ring *ring)
1849 struct amdgpu_job *job;
1850 struct drm_sched_job *s_job, *tmp;
1851 uint32_t preempt_seq;
1852 struct dma_fence *fence, **ptr;
1853 struct amdgpu_fence_driver *drv = &ring->fence_drv;
1854 struct drm_gpu_scheduler *sched = &ring->sched;
1855 bool preempted = true;
1857 if (ring->funcs->type != AMDGPU_RING_TYPE_GFX)
1860 preempt_seq = le32_to_cpu(*(drv->cpu_addr + 2));
1861 if (preempt_seq <= atomic_read(&drv->last_seq)) {
1866 preempt_seq &= drv->num_fences_mask;
1867 ptr = &drv->fences[preempt_seq];
1868 fence = rcu_dereference_protected(*ptr, 1);
1871 spin_lock(&sched->job_list_lock);
1872 list_for_each_entry_safe(s_job, tmp, &sched->pending_list, list) {
1873 if (dma_fence_is_signaled(&s_job->s_fence->finished)) {
1874 /* remove job from ring_mirror_list */
1875 list_del_init(&s_job->list);
1876 sched->ops->free_job(s_job);
1879 job = to_amdgpu_job(s_job);
1880 if (preempted && (&job->hw_fence) == fence)
1881 /* mark the job as preempted */
1882 job->preemption_status |= AMDGPU_IB_PREEMPTED;
1884 spin_unlock(&sched->job_list_lock);
1887 static int amdgpu_debugfs_ib_preempt(void *data, u64 val)
1890 struct amdgpu_ring *ring;
1891 struct dma_fence **fences = NULL;
1892 struct amdgpu_device *adev = (struct amdgpu_device *)data;
1894 if (val >= AMDGPU_MAX_RINGS)
1897 ring = adev->rings[val];
1899 if (!ring || !ring->funcs->preempt_ib || !ring->sched.thread)
1902 /* the last preemption failed */
1903 if (ring->trail_seq != le32_to_cpu(*ring->trail_fence_cpu_addr))
1906 length = ring->fence_drv.num_fences_mask + 1;
1907 fences = kcalloc(length, sizeof(void *), GFP_KERNEL);
1911 /* Avoid accidently unparking the sched thread during GPU reset */
1912 r = down_read_killable(&adev->reset_domain->sem);
1916 /* stop the scheduler */
1917 kthread_park(ring->sched.thread);
1919 /* preempt the IB */
1920 r = amdgpu_ring_preempt_ib(ring);
1922 DRM_WARN("failed to preempt ring %d\n", ring->idx);
1926 amdgpu_fence_process(ring);
1928 if (atomic_read(&ring->fence_drv.last_seq) !=
1929 ring->fence_drv.sync_seq) {
1930 DRM_INFO("ring %d was preempted\n", ring->idx);
1932 amdgpu_ib_preempt_mark_partial_job(ring);
1934 /* swap out the old fences */
1935 amdgpu_ib_preempt_fences_swap(ring, fences);
1937 amdgpu_fence_driver_force_completion(ring);
1939 /* resubmit unfinished jobs */
1940 amdgpu_ib_preempt_job_recovery(&ring->sched);
1942 /* wait for jobs finished */
1943 amdgpu_fence_wait_empty(ring);
1945 /* signal the old fences */
1946 amdgpu_ib_preempt_signal_fences(fences, length);
1950 /* restart the scheduler */
1951 kthread_unpark(ring->sched.thread);
1953 up_read(&adev->reset_domain->sem);
1961 static int amdgpu_debugfs_sclk_set(void *data, u64 val)
1964 uint32_t max_freq, min_freq;
1965 struct amdgpu_device *adev = (struct amdgpu_device *)data;
1967 if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
1970 ret = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1972 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1976 ret = amdgpu_dpm_get_dpm_freq_range(adev, PP_SCLK, &min_freq, &max_freq);
1977 if (ret == -EOPNOTSUPP) {
1981 if (ret || val > max_freq || val < min_freq) {
1986 ret = amdgpu_dpm_set_soft_freq_range(adev, PP_SCLK, (uint32_t)val, (uint32_t)val);
1991 pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1992 pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1997 DEFINE_DEBUGFS_ATTRIBUTE(fops_ib_preempt, NULL,
1998 amdgpu_debugfs_ib_preempt, "%llu\n");
2000 DEFINE_DEBUGFS_ATTRIBUTE(fops_sclk_set, NULL,
2001 amdgpu_debugfs_sclk_set, "%llu\n");
2003 static ssize_t amdgpu_reset_dump_register_list_read(struct file *f,
2004 char __user *buf, size_t size, loff_t *pos)
2006 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
2007 char reg_offset[12];
2008 int i, ret, len = 0;
2013 memset(reg_offset, 0, 12);
2014 ret = down_read_killable(&adev->reset_domain->sem);
2018 for (i = 0; i < adev->num_regs; i++) {
2019 sprintf(reg_offset, "0x%x\n", adev->reset_dump_reg_list[i]);
2020 up_read(&adev->reset_domain->sem);
2021 if (copy_to_user(buf + len, reg_offset, strlen(reg_offset)))
2024 len += strlen(reg_offset);
2025 ret = down_read_killable(&adev->reset_domain->sem);
2030 up_read(&adev->reset_domain->sem);
2036 static ssize_t amdgpu_reset_dump_register_list_write(struct file *f,
2037 const char __user *buf, size_t size, loff_t *pos)
2039 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
2040 char reg_offset[11];
2041 uint32_t *new = NULL, *tmp = NULL;
2042 int ret, i = 0, len = 0;
2045 memset(reg_offset, 0, 11);
2046 if (copy_from_user(reg_offset, buf + len,
2047 min(10, ((int)size-len)))) {
2052 new = krealloc_array(tmp, i + 1, sizeof(uint32_t), GFP_KERNEL);
2058 if (sscanf(reg_offset, "%X %n", &tmp[i], &ret) != 1) {
2065 } while (len < size);
2067 new = kmalloc_array(i, sizeof(uint32_t), GFP_KERNEL);
2072 ret = down_write_killable(&adev->reset_domain->sem);
2076 swap(adev->reset_dump_reg_list, tmp);
2077 swap(adev->reset_dump_reg_value, new);
2079 up_write(&adev->reset_domain->sem);
2089 static const struct file_operations amdgpu_reset_dump_register_list = {
2090 .owner = THIS_MODULE,
2091 .read = amdgpu_reset_dump_register_list_read,
2092 .write = amdgpu_reset_dump_register_list_write,
2093 .llseek = default_llseek
2096 int amdgpu_debugfs_init(struct amdgpu_device *adev)
2098 struct dentry *root = adev_to_drm(adev)->primary->debugfs_root;
2102 if (!debugfs_initialized())
2105 debugfs_create_x32("amdgpu_smu_debug", 0600, root,
2106 &adev->pm.smu_debug_mask);
2108 ent = debugfs_create_file("amdgpu_preempt_ib", 0600, root, adev,
2111 DRM_ERROR("unable to create amdgpu_preempt_ib debugsfs file\n");
2112 return PTR_ERR(ent);
2115 ent = debugfs_create_file("amdgpu_force_sclk", 0200, root, adev,
2118 DRM_ERROR("unable to create amdgpu_set_sclk debugsfs file\n");
2119 return PTR_ERR(ent);
2122 /* Register debugfs entries for amdgpu_ttm */
2123 amdgpu_ttm_debugfs_init(adev);
2124 amdgpu_debugfs_pm_init(adev);
2125 amdgpu_debugfs_sa_init(adev);
2126 amdgpu_debugfs_fence_init(adev);
2127 amdgpu_debugfs_gem_init(adev);
2129 r = amdgpu_debugfs_regs_init(adev);
2131 DRM_ERROR("registering register debugfs failed (%d).\n", r);
2133 amdgpu_debugfs_firmware_init(adev);
2134 amdgpu_ta_if_debugfs_init(adev);
2136 #if defined(CONFIG_DRM_AMD_DC)
2137 if (adev->dc_enabled)
2138 dtn_debugfs_init(adev);
2141 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2142 struct amdgpu_ring *ring = adev->rings[i];
2147 amdgpu_debugfs_ring_init(adev, ring);
2150 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
2151 if (!amdgpu_vcnfw_log)
2154 if (adev->vcn.harvest_config & (1 << i))
2157 amdgpu_debugfs_vcn_fwlog_init(adev, i, &adev->vcn.inst[i]);
2160 amdgpu_ras_debugfs_create_all(adev);
2161 amdgpu_rap_debugfs_init(adev);
2162 amdgpu_securedisplay_debugfs_init(adev);
2163 amdgpu_fw_attestation_debugfs_init(adev);
2165 debugfs_create_file("amdgpu_evict_vram", 0444, root, adev,
2166 &amdgpu_evict_vram_fops);
2167 debugfs_create_file("amdgpu_evict_gtt", 0444, root, adev,
2168 &amdgpu_evict_gtt_fops);
2169 debugfs_create_file("amdgpu_test_ib", 0444, root, adev,
2170 &amdgpu_debugfs_test_ib_fops);
2171 debugfs_create_file("amdgpu_vm_info", 0444, root, adev,
2172 &amdgpu_debugfs_vm_info_fops);
2173 debugfs_create_file("amdgpu_benchmark", 0200, root, adev,
2174 &amdgpu_benchmark_fops);
2175 debugfs_create_file("amdgpu_reset_dump_register_list", 0644, root, adev,
2176 &amdgpu_reset_dump_register_list);
2178 adev->debugfs_vbios_blob.data = adev->bios;
2179 adev->debugfs_vbios_blob.size = adev->bios_size;
2180 debugfs_create_blob("amdgpu_vbios", 0444, root,
2181 &adev->debugfs_vbios_blob);
2183 adev->debugfs_discovery_blob.data = adev->mman.discovery_bin;
2184 adev->debugfs_discovery_blob.size = adev->mman.discovery_tmr_size;
2185 debugfs_create_blob("amdgpu_discovery", 0444, root,
2186 &adev->debugfs_discovery_blob);
2192 int amdgpu_debugfs_init(struct amdgpu_device *adev)
2196 int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)