Skip to content

Commit e9e836d

Browse files
6by9gregkh
authored andcommitted
drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs function
[ Upstream commit d285bb6 ] The debugfs function to dump dlists aborted at 256 bytes, when actually the dlist memory is generally significantly larger but varies based on SoC. We already have the correct limit in __vc4_hvs_alloc, so store it for use in the debugfs dlist function. Fixes: c6dac00 ("drm/vc4: hvs: Add debugfs node that dumps the current display lists") Reviewed-by: Maxime Ripard <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Dave Stevenson <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent ea23632 commit e9e836d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

drivers/gpu/drm/vc4/vc4_drv.h

+1
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ struct vc4_hvs {
315315
struct platform_device *pdev;
316316
void __iomem *regs;
317317
u32 __iomem *dlist;
318+
unsigned int dlist_mem_size;
318319

319320
struct clk *core_clk;
320321

drivers/gpu/drm/vc4/vc4_hvs.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ static int vc4_hvs_debugfs_dlist(struct seq_file *m, void *data)
110110
struct vc4_dev *vc4 = to_vc4_dev(dev);
111111
struct vc4_hvs *hvs = vc4->hvs;
112112
struct drm_printer p = drm_seq_file_printer(m);
113+
unsigned int dlist_mem_size = hvs->dlist_mem_size;
113114
unsigned int next_entry_start;
114115
unsigned int i, j;
115116
u32 dlist_word, dispstat;
@@ -126,7 +127,7 @@ static int vc4_hvs_debugfs_dlist(struct seq_file *m, void *data)
126127
drm_printf(&p, "HVS chan %u:\n", i);
127128
next_entry_start = 0;
128129

129-
for (j = HVS_READ(SCALER_DISPLISTX(i)); j < 256; j++) {
130+
for (j = HVS_READ(SCALER_DISPLISTX(i)); j < dlist_mem_size; j++) {
130131
dlist_word = readl((u32 __iomem *)vc4->hvs->dlist + j);
131132
drm_printf(&p, "dlist: %02d: 0x%08x\n", j,
132133
dlist_word);
@@ -804,9 +805,10 @@ struct vc4_hvs *__vc4_hvs_alloc(struct vc4_dev *vc4, struct platform_device *pde
804805
* our 16K), since we don't want to scramble the screen when
805806
* transitioning from the firmware's boot setup to runtime.
806807
*/
808+
hvs->dlist_mem_size = (SCALER_DLIST_SIZE >> 2) - HVS_BOOTLOADER_DLIST_END;
807809
drm_mm_init(&hvs->dlist_mm,
808810
HVS_BOOTLOADER_DLIST_END,
809-
(SCALER_DLIST_SIZE >> 2) - HVS_BOOTLOADER_DLIST_END);
811+
hvs->dlist_mem_size);
810812

811813
/* Set up the HVS LBM memory manager. We could have some more
812814
* complicated data structure that allowed reuse of LBM areas

0 commit comments

Comments
 (0)