Increase command FIFO depth threshold from 200 to 300

This commit is contained in:
AITUS95
2025-11-26 15:01:09 +01:00
committed by GitHub
parent 4608737831
commit 689fd67d63

View File

@@ -431,7 +431,7 @@ voodoo_writel(uint32_t addr, uint32_t val, void *priv)
#endif
*(uint32_t *) &voodoo->fb_mem[(voodoo->cmdfifo_base + (addr & 0x3fffc)) & voodoo->fb_mask] = val;
voodoo->cmdfifo_depth_wr++;
if ((voodoo->cmdfifo_depth_wr - voodoo->cmdfifo_depth_rd) > 200)
if ((voodoo->cmdfifo_depth_wr - voodoo->cmdfifo_depth_rd) > 300)
voodoo_wake_fifo_thread(voodoo);
} else
switch (addr & 0x3fc) {