From: Carsten Haitzler Date: Mon, 4 Sep 2023 09:05:03 +0000 (+0100) Subject: panfrost: Add GPU variant of G57 to the set of known ids X-Git-Tag: upstream/23.3.3~1304 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4f7f9975aedcdb35eb2c7c4ac43d1351267a146;p=platform%2Fupstream%2Fmesa.git 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: --- 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 */