Skip to content

Commit f66f47b

Browse files
committed
drm/vc4: plane: Ensure fetch_count is sufficient for hw in SAND mode
It has been observed that under some situations the HVS stalls totally when asked to apply a source crop to a P030/SAND128 image. Investigation showed that it was always when the start offset was on component 22 in the range 0-23. Increasing the fetch_count by 1 under these conditions fixes the problem, so implement that in the driver. Signed-off-by: Dave Stevenson <[email protected]>
1 parent b478bd2 commit f66f47b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/gpu/drm/vc4/vc4_plane.c

+3
Original file line numberDiff line numberDiff line change
@@ -1983,6 +1983,9 @@ static int vc6_plane_mode_set(struct drm_plane *plane,
19831983

19841984
x_off = aligned * 32 + last_bits;
19851985
pix_per_tile = 96;
1986+
1987+
if (!i && last_bits == 22)
1988+
fetch_count++;
19861989
} else {
19871990
pix_per_tile = tile_width / fb->format->cpp[0];
19881991
x_off = (src_x % pix_per_tile) /

0 commit comments

Comments
 (0)