diff options
author | Tomeu Vizoso <[email protected]> | 2019-10-28 09:59:30 +0100 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2019-12-03 04:25:04 +0000 |
commit | b655be7252040c55e27b60508e8f305618a7de41 (patch) | |
tree | 4f5e93d25635a44fcd4e5f1722e67feacaba7f0b /src/gallium | |
parent | 8555bffafdbcda9db0424d6ac2091fd3eac19bc5 (diff) |
panfrost: White list the Mali T720
Support for this GPU is equal now to that of T760, so whitelist it.
Signed-off-by: Tomeu Vizoso <[email protected]>
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index f0b9585e658..3aa5f05cd5e 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -739,6 +739,7 @@ panfrost_create_screen(int fd, struct renderonly *ro) /* Check if we're loading against a supported GPU model. */ switch (screen->gpu_id) { + case 0x720: /* T720 */ case 0x750: /* T760 */ case 0x820: /* T820 */ case 0x860: /* T860 */ |