diff --git a/docs/drivers/panfrost.rst b/docs/drivers/panfrost.rst index 864ee88172d..f9a9acbb4e7 100644 --- a/docs/drivers/panfrost.rst +++ b/docs/drivers/panfrost.rst @@ -30,6 +30,8 @@ The following hardware is currently supported: +--------------------+---------------+-----------+--------+--------+ | G310, G610 | Valhall (v10) | 3.1 | 3.1 | 1.1 | +--------------------+---------------+-----------+--------+--------+ +| G720 | 5th Gen (v12) | 3.1 | 3.1 | 1.1 | ++--------------------+---------------+-----------+--------+--------+ Other Midgard and Bifrost chips (e.g. G71) are not yet supported. diff --git a/src/panfrost/lib/pan_props.c b/src/panfrost/lib/pan_props.c index 1c96825143c..4b7330e08a4 100644 --- a/src/panfrost/lib/pan_props.c +++ b/src/panfrost/lib/pan_props.c @@ -76,6 +76,8 @@ const struct panfrost_model panfrost_model_list[] = { MODEL(0xac74, 2, "G310", "TVAx", HAS_ANISO, 16384, 8192, {}), MODEL(0xac74, 3, "G310", "TVAx", HAS_ANISO, 32768, 16384, {}), MODEL(0xac74, 4, "G310", "TVAx", HAS_ANISO, 32768, 16384, {}), + + MODEL(0xc870, 4, "G720", "TTIx", HAS_ANISO, 65536, 32768, {}), }; /* clang-format on */