mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-19 10:46:55 +07:00
drm/etnaviv: Consider all kwnown idle bits in debugfs
We were missing out on some bits the vendor kernel driver knows about. Signed-off-by: Guido Günther <agx@sigxcpu.org> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
This commit is contained in:
parent
b9e352ed82
commit
b170455120
@ -946,6 +946,20 @@ int etnaviv_gpu_debugfs(struct etnaviv_gpu *gpu, struct seq_file *m)
|
||||
seq_puts(m, "\t FP is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_TS) == 0)
|
||||
seq_puts(m, "\t TS is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_BL) == 0)
|
||||
seq_puts(m, "\t BL is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_ASYNCFE) == 0)
|
||||
seq_puts(m, "\t ASYNCFE is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_MC) == 0)
|
||||
seq_puts(m, "\t MC is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_PPA) == 0)
|
||||
seq_puts(m, "\t PPA is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_WD) == 0)
|
||||
seq_puts(m, "\t WD is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_NN) == 0)
|
||||
seq_puts(m, "\t NN is not idle\n");
|
||||
if ((idle & VIVS_HI_IDLE_STATE_TP) == 0)
|
||||
seq_puts(m, "\t TP is not idle\n");
|
||||
if (idle & VIVS_HI_IDLE_STATE_AXI_LP)
|
||||
seq_puts(m, "\t AXI low power mode\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user