Skip to content

Commit c1362e7

Browse files
committed
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.
1 parent a18ff34 commit c1362e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gallium/drivers/vc4/vc4_screen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ vc4_get_chip_info(struct vc4_screen *screen)
587587
uint32_t minor = (ident1.value >> 0) & 0xf;
588588
screen->v3d_ver = major * 10 + minor;
589589

590-
if (screen->v3d_ver != 21) {
590+
if (screen->v3d_ver != 21 && screen->v3d_ver != 26) {
591591
fprintf(stderr,
592592
"V3D %d.%d not supported by this version of Mesa.\n",
593593
screen->v3d_ver / 10,

0 commit comments

Comments
 (0)