From e7308a3902edf1905fe6ca5f847ae9f64cca5e78 Mon Sep 17 00:00:00 2001 From: Mary Guillemard Date: Wed, 26 Feb 2025 16:08:00 +0100 Subject: [PATCH] panfrost: Advertize Mali-G720 support We need GPU_FEATURES to determine if this is another variant but this will do for now. Signed-off-by: Mary Guillemard Reviewed-by: Boris Brezillon Reviewed-by: Lars-Ivar Hesselberg Simonsen Part-of: --- docs/drivers/panfrost.rst | 2 ++ src/panfrost/lib/pan_props.c | 2 ++ 2 files changed, 4 insertions(+) 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 */