summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-03-06 15:45:32 -0800
committerEric Anholt <[email protected]>2017-04-18 13:21:40 -0700
commitc1362e78ad8fd1fec842f136b6ef8d927e9327ed (patch)
treea9ca72093a273fb6a7befa1bedf1660a81f7a46e
parenta18ff34452f8427d6d61764e00cb679a4840cd75 (diff)
vc4: Enable V3D 2.6.
This version of the chip is present on the Cygnus-based 911360 enterprise phone platform. It appears to be completely backwards compatible.
-rw-r--r--src/gallium/drivers/vc4/vc4_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_screen.c b/src/gallium/drivers/vc4/vc4_screen.c
index 27d23dc964c..b5b1ced49fd 100644
--- a/src/gallium/drivers/vc4/vc4_screen.c
+++ b/src/gallium/drivers/vc4/vc4_screen.c
@@ -587,7 +587,7 @@ vc4_get_chip_info(struct vc4_screen *screen)
uint32_t minor = (ident1.value >> 0) & 0xf;
screen->v3d_ver = major * 10 + minor;
- if (screen->v3d_ver != 21) {
+ if (screen->v3d_ver != 21 && screen->v3d_ver != 26) {
fprintf(stderr,
"V3D %d.%d not supported by this version of Mesa.\n",
screen->v3d_ver / 10,