diff --git a/docs/drivers/panfrost.rst b/docs/drivers/panfrost.rst index f9a9acbb4e7..8709907b12b 100644 --- a/docs/drivers/panfrost.rst +++ b/docs/drivers/panfrost.rst @@ -32,6 +32,8 @@ The following hardware is currently supported: +--------------------+---------------+-----------+--------+--------+ | G720 | 5th Gen (v12) | 3.1 | 3.1 | 1.1 | +--------------------+---------------+-----------+--------+--------+ +| G725 | 5th Gen (v13) | 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 4b7330e08a4..494d7efa6ad 100644 --- a/src/panfrost/lib/pan_props.c +++ b/src/panfrost/lib/pan_props.c @@ -78,6 +78,8 @@ const struct panfrost_model panfrost_model_list[] = { MODEL(0xac74, 4, "G310", "TVAx", HAS_ANISO, 32768, 16384, {}), MODEL(0xc870, 4, "G720", "TTIx", HAS_ANISO, 65536, 32768, {}), + + MODEL(0xd830, 4, "G725", "TKRx", HAS_ANISO, 65536, 65536, {}), }; /* clang-format on */