Merge pull request #6917 from heitbaum/mesa

mesa: update panfrost: enable Mali T628 support patch for mesa 22.
This commit is contained in:
CvH 2022-09-23 12:15:25 +02:00 committed by GitHub
commit ca49fee4a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,10 +18,10 @@ index 693b475beb5..cdba8db319e 100644
/* Table of supported Mali GPUs */
const struct panfrost_model panfrost_model_list[] = {
+ MODEL(0x620, "T620", "T62x", NO_ANISO, {}),
MODEL(0x720, "T720", "T72x", NO_ANISO, { .no_hierarchical_tiling = true }),
MODEL(0x750, "T760", "T76x", NO_ANISO, {}),
MODEL(0x820, "T820", "T82x", NO_ANISO, { .no_hierarchical_tiling = true }),
+ MODEL(0x620, "T620", "T62x", NO_ANISO, 8192, {}),
MODEL(0x720, "T720", "T72x", NO_ANISO, 8192, { .no_hierarchical_tiling = true }),
MODEL(0x750, "T760", "T76x", NO_ANISO, 8192, {}),
MODEL(0x820, "T820", "T82x", NO_ANISO, 8192, { .no_hierarchical_tiling = true }),
--
2.17.1