From a4f7f9975aedcdb35eb2c7c4ac43d1351267a146 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 4 Sep 2023 10:05:03 +0100 Subject: [PATCH] panfrost: Add GPU variant of G57 to the set of known ids There already is a G57 ID, but this is for a MTK variant that is not actually the original design. The original design is 0x9091 not 0x9093. Signed-off-by: Carsten Haitzler Part-of: --- src/panfrost/lib/pan_props.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panfrost/lib/pan_props.c b/src/panfrost/lib/pan_props.c index 46d61c9..890f97a 100644 --- a/src/panfrost/lib/pan_props.c +++ b/src/panfrost/lib/pan_props.c @@ -69,6 +69,7 @@ const struct panfrost_model panfrost_model_list[] = { MODEL(0x7211, "G76", "TNOx", HAS_ANISO, 16384, {}), MODEL(0x7212, "G52", "TGOx", HAS_ANISO, 16384, {}), MODEL(0x7402, "G52 r1", "TGOx", HAS_ANISO, 16384, {}), + MODEL(0x9091, "G57", "TNAx", HAS_ANISO, 16384, {}), MODEL(0x9093, "G57", "TNAx", HAS_ANISO, 16384, {}), }; /* clang-format on */ -- 2.7.4