From 46247b38271cd7635982e69431efbe3feb8f7166 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 22 May 2024 00:32:46 +0200 Subject: [PATCH] v3d/drm-shim: emulate a rpi4 instead of a rpi3 7278 is the chip on the rpi3, while the rpi4 that made it to market has the 2711 chip. When this was introduced (82bf1979), the rpi4 was probably still in flux, which is why the rpi3 chip was put there (and v3d doesn't care about that, but v3dv does). cc: mesa-stable Reviewed-by: Juan A. Suarez Part-of: --- src/broadcom/drm-shim/v3d_noop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/broadcom/drm-shim/v3d_noop.c b/src/broadcom/drm-shim/v3d_noop.c index 8a27052441b..333c91e6dcf 100644 --- a/src/broadcom/drm-shim/v3d_noop.c +++ b/src/broadcom/drm-shim/v3d_noop.c @@ -164,7 +164,7 @@ drm_shim_driver_init(void) drm_shim_override_file("OF_FULLNAME=/rdb/v3d\n" "OF_COMPATIBLE_N=1\n" - "OF_COMPATIBLE_0=brcm,7278-v3d\n", + "OF_COMPATIBLE_0=brcm,2711-v3d\n", "/sys/dev/char/%d:%d/device/uevent", DRM_MAJOR, render_node_minor); }