Re: [PATCH v3 2/2] pmdomain: qcom: rpmhpd: Add Eliza RPMh Power Domains
From: Konrad Dybcio
Date: Tue Feb 24 2026 - 08:43:54 EST
On 2/24/26 10:49 AM, Abel Vesa wrote:
> Add RPMh Power Domains support for the Eliza platform. The list of power
> domains is taken from downstream. Even though the cmd-db does list MMCX
> and MXC, they are not used, so they should not be describe.
>
> Reviewed-by: Taniya Das <taniya.das@xxxxxxxxxxxxxxxx>
> Reviewed-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxxxxxxxx>
> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@xxxxxxxxxxxxxxxx>
> Signed-off-by: Abel Vesa <abel.vesa@xxxxxxxxxxxxxxxx>
> ---
> drivers/pmdomain/qcom/rpmhpd.c | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/drivers/pmdomain/qcom/rpmhpd.c b/drivers/pmdomain/qcom/rpmhpd.c
> index 19849703be4a..ef2e08c6b454 100644
> --- a/drivers/pmdomain/qcom/rpmhpd.c
> +++ b/drivers/pmdomain/qcom/rpmhpd.c
> @@ -217,6 +217,27 @@ static struct rpmhpd gmxc = {
> .res_name = "gmxc.lvl",
> };
>
> +/* Eliza RPMH powerdomains */
> +static struct rpmhpd *eliza_rpmhpds[] = {
> + [RPMHPD_CX] = &cx,
> + [RPMHPD_CX_AO] = &cx_ao,
> + [RPMHPD_EBI] = &ebi,
> + [RPMHPD_GFX] = &gfx,
> + [RPMHPD_GMXC] = &gmxc,
GMXC should be removed as well
> + [RPMHPD_LCX] = &lcx,
> + [RPMHPD_LMX] = &lmx,
> + [RPMHPD_MSS] = &mss,
> + [RPMHPD_MX] = &mx,
> + [RPMHPD_MX_AO] = &mx_ao,
> + [RPMHPD_NSP] = &nsp,
> + [RPMHPD_NSP2] = &nsp2,
And this one too
Both are OFF by default ICYWW
Konrad