From c4400b05be1aa68168e924066b9d05401745a879 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Fri, 1 May 2020 07:36:31 +0200 Subject: panfrost: GPUs newer than G-71 don't have swizzles... for attributes and varyings. Signed-off-by: Tomeu Vizoso Reviewed-by: Alyssa Rosenzweig Part-of: --- src/panfrost/include/panfrost-quirks.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/panfrost/include') diff --git a/src/panfrost/include/panfrost-quirks.h b/src/panfrost/include/panfrost-quirks.h index c8d631cd476..e45191fe11a 100644 --- a/src/panfrost/include/panfrost-quirks.h +++ b/src/panfrost/include/panfrost-quirks.h @@ -47,9 +47,12 @@ /* What it says on the tin */ #define IS_BIFROST (1 << 3) +/* What it says on the tin */ +#define HAS_SWIZZLES (1 << 4) + /* Quirk collections common to particular uarchs */ -#define MIDGARD_QUIRKS (MIDGARD_BROKEN_FP16) +#define MIDGARD_QUIRKS (MIDGARD_BROKEN_FP16 | HAS_SWIZZLES) #define BIFROST_QUIRKS (IS_BIFROST) @@ -73,6 +76,9 @@ panfrost_get_quirks(unsigned gpu_id) case 0x880: return MIDGARD_QUIRKS; + case 0x6000: /* G71 */ + return BIFROST_QUIRKS | HAS_SWIZZLES; + case 0x7093: /* G31 */ case 0x7212: /* G52 */ return BIFROST_QUIRKS; -- cgit v1.2.3