diff --git a/drivers/gpu/drm/panfrost/panfrost_gpu.c b/drivers/gpu/drm/panfrost/panfrost_gpu.c
index 6452e4e900dd78f0d44807609707a8222c05ea07..560d337f5275acf1dba1e5d2d4fb1eef8957aadc 100644
--- a/drivers/gpu/drm/panfrost/panfrost_gpu.c
+++ b/drivers/gpu/drm/panfrost/panfrost_gpu.c
@@ -204,6 +204,14 @@ static const struct panfrost_model gpu_models[] = {
 
 	GPU_MODEL(g57, 0x9001,
 		GPU_REV(g57, 0, 0)),
+
+        /* MediaTek MT8192 has a Mali-G57 with a different GPU ID from the
+         * standard. Arm's driver does not appear to handle this model.
+         * ChromeOS has a hack downstream for it. Treat it as equivalent to
+         * standard Mali-G57 for now.
+         */
+	GPU_MODEL(g57, 0x9003,
+		GPU_REV(g57, 0, 0)),
 };
 
 static void panfrost_gpu_init_features(struct panfrost_device *pfdev)