2023-10-25 14:01:41

by Sibi Sankar

[permalink] [raw]
Subject: [PATCH 0/3] pmdomain: qcom: Add power domain support for SC8380XP

This series adds power domain support for the Qualcomm SC8380XP platform, aka Snapdragon X Elite.

Dependencies: None
Release Link: https://www.qualcomm.com/news/releases/2023/10/qualcomm-unleashes-snapdragon-x-elite--the-ai-super-charged-plat

Abel Vesa (2):
dt-bindings: power: rpmpd: Add SC8380XP support
pmdomain: qcom: rpmhpd: Add SC8380XP power domains

Sibi Sankar (1):
dt-bindings: power: qcom,rpmhpd: Add GMXC PD index

.../devicetree/bindings/power/qcom,rpmpd.yaml | 1 +
drivers/pmdomain/qcom/rpmhpd.c | 28 +++++++++++++++++++
include/dt-bindings/power/qcom,rpmhpd.h | 1 +
3 files changed, 30 insertions(+)

--
2.17.1


2023-10-25 14:01:47

by Sibi Sankar

[permalink] [raw]
Subject: [PATCH 2/3] dt-bindings: power: rpmpd: Add SC8380XP support

From: Abel Vesa <[email protected]>

Add compatible and constants for the power domains exposed by the RPMH
in the Qualcomm SC8380XP platform.

Signed-off-by: Abel Vesa <[email protected]>
Signed-off-by: Rajendra Nayak <[email protected]>
Signed-off-by: Sibi Sankar <[email protected]>
---
Documentation/devicetree/bindings/power/qcom,rpmpd.yaml | 1 +
1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/power/qcom,rpmpd.yaml b/Documentation/devicetree/bindings/power/qcom,rpmpd.yaml
index d38c762e1280..6bca9c6c377f 100644
--- a/Documentation/devicetree/bindings/power/qcom,rpmpd.yaml
+++ b/Documentation/devicetree/bindings/power/qcom,rpmpd.yaml
@@ -39,6 +39,7 @@ properties:
- qcom,sc7280-rpmhpd
- qcom,sc8180x-rpmhpd
- qcom,sc8280xp-rpmhpd
+ - qcom,sc8380xp-rpmhpd
- qcom,sdm660-rpmpd
- qcom,sdm670-rpmhpd
- qcom,sdm845-rpmhpd
--
2.17.1

2023-10-25 14:02:05

by Sibi Sankar

[permalink] [raw]
Subject: [PATCH 3/3] pmdomain: qcom: rpmhpd: Add SC8380XP power domains

From: Abel Vesa <[email protected]>

Add the power domains exposed by RPMH in the Qualcomm SC8380XP platform.

Signed-off-by: Abel Vesa <[email protected]>
Signed-off-by: Rajendra Nayak <[email protected]>
Co-developed-by: Sibi Sankar <[email protected]>
Signed-off-by: Sibi Sankar <[email protected]>
---
drivers/pmdomain/qcom/rpmhpd.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)

diff --git a/drivers/pmdomain/qcom/rpmhpd.c b/drivers/pmdomain/qcom/rpmhpd.c
index a631fe1f9a06..28b7f5fcea7e 100644
--- a/drivers/pmdomain/qcom/rpmhpd.c
+++ b/drivers/pmdomain/qcom/rpmhpd.c
@@ -202,6 +202,11 @@ static struct rpmhpd qphy = {
.res_name = "qphy.lvl",
};

+static struct rpmhpd gmxc = {
+ .pd = { .name = "gmxc", },
+ .res_name = "gmxc.lvl",
+};
+
/* SA8540P RPMH powerdomains */
static struct rpmhpd *sa8540p_rpmhpds[] = {
[SC8280XP_CX] = &cx,
@@ -564,6 +569,28 @@ static const struct rpmhpd_desc sc8280xp_desc = {
.num_pds = ARRAY_SIZE(sc8280xp_rpmhpds),
};

+/* SC8380xp RPMH powerdomains */
+static struct rpmhpd *sc8380xp_rpmhpds[] = {
+ [RPMHPD_CX] = &cx,
+ [RPMHPD_CX_AO] = &cx_ao,
+ [RPMHPD_EBI] = &ebi,
+ [RPMHPD_GFX] = &gfx,
+ [RPMHPD_LCX] = &lcx,
+ [RPMHPD_LMX] = &lmx,
+ [RPMHPD_MMCX] = &mmcx,
+ [RPMHPD_MMCX_AO] = &mmcx_ao,
+ [RPMHPD_MX] = &mx,
+ [RPMHPD_MX_AO] = &mx_ao,
+ [RPMHPD_NSP] = &nsp,
+ [RPMHPD_MXC] = &mxc,
+ [RPMHPD_GMXC] = &gmxc,
+};
+
+static const struct rpmhpd_desc sc8380xp_desc = {
+ .rpmhpds = sc8380xp_rpmhpds,
+ .num_pds = ARRAY_SIZE(sc8380xp_rpmhpds),
+};
+
static const struct of_device_id rpmhpd_match_table[] = {
{ .compatible = "qcom,qdu1000-rpmhpd", .data = &qdu1000_desc },
{ .compatible = "qcom,sa8155p-rpmhpd", .data = &sa8155p_desc },
@@ -573,6 +600,7 @@ static const struct of_device_id rpmhpd_match_table[] = {
{ .compatible = "qcom,sc7280-rpmhpd", .data = &sc7280_desc },
{ .compatible = "qcom,sc8180x-rpmhpd", .data = &sc8180x_desc },
{ .compatible = "qcom,sc8280xp-rpmhpd", .data = &sc8280xp_desc },
+ { .compatible = "qcom,sc8380xp-rpmhpd", .data = &sc8380xp_desc },
{ .compatible = "qcom,sdm670-rpmhpd", .data = &sdm670_desc },
{ .compatible = "qcom,sdm845-rpmhpd", .data = &sdm845_desc },
{ .compatible = "qcom,sdx55-rpmhpd", .data = &sdx55_desc},
--
2.17.1

2023-10-25 17:33:34

by Dmitry Baryshkov

[permalink] [raw]
Subject: Re: [PATCH 3/3] pmdomain: qcom: rpmhpd: Add SC8380XP power domains

On Wed, 25 Oct 2023 at 17:01, Sibi Sankar <[email protected]> wrote:
>
> From: Abel Vesa <[email protected]>
>
> Add the power domains exposed by RPMH in the Qualcomm SC8380XP platform.
>
> Signed-off-by: Abel Vesa <[email protected]>
> Signed-off-by: Rajendra Nayak <[email protected]>
> Co-developed-by: Sibi Sankar <[email protected]>
> Signed-off-by: Sibi Sankar <[email protected]>

Reviewed-by: Dmitry Baryshkov <[email protected]>

> ---
> drivers/pmdomain/qcom/rpmhpd.c | 28 ++++++++++++++++++++++++++++
> 1 file changed, 28 insertions(+)

--
With best wishes
Dmitry

2023-10-26 11:03:46

by Konrad Dybcio

[permalink] [raw]
Subject: Re: [PATCH 3/3] pmdomain: qcom: rpmhpd: Add SC8380XP power domains



On 10/25/23 15:59, Sibi Sankar wrote:
> From: Abel Vesa <[email protected]>
>
> Add the power domains exposed by RPMH in the Qualcomm SC8380XP platform.
>
> Signed-off-by: Abel Vesa <[email protected]>
> Signed-off-by: Rajendra Nayak <[email protected]>
> Co-developed-by: Sibi Sankar <[email protected]>
> Signed-off-by: Sibi Sankar <[email protected]>
> ---
Reviewed-by: Konrad Dybcio <[email protected]>

Konrad

2023-10-26 14:28:11

by Ulf Hansson

[permalink] [raw]
Subject: Re: [PATCH 0/3] pmdomain: qcom: Add power domain support for SC8380XP

On Wed, 25 Oct 2023 at 16:00, Sibi Sankar <[email protected]> wrote:
>
> This series adds power domain support for the Qualcomm SC8380XP platform, aka Snapdragon X Elite.
>
> Dependencies: None
> Release Link: https://www.qualcomm.com/news/releases/2023/10/qualcomm-unleashes-snapdragon-x-elite--the-ai-super-charged-plat
>
> Abel Vesa (2):
> dt-bindings: power: rpmpd: Add SC8380XP support
> pmdomain: qcom: rpmhpd: Add SC8380XP power domains
>
> Sibi Sankar (1):
> dt-bindings: power: qcom,rpmhpd: Add GMXC PD index
>
> .../devicetree/bindings/power/qcom,rpmpd.yaml | 1 +
> drivers/pmdomain/qcom/rpmhpd.c | 28 +++++++++++++++++++
> include/dt-bindings/power/qcom,rpmhpd.h | 1 +
> 3 files changed, 30 insertions(+)
>

Applied for next, thanks!

Kind regards
Uffe

2023-10-27 08:20:36

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH 2/3] dt-bindings: power: rpmpd: Add SC8380XP support

On 25/10/2023 15:59, Sibi Sankar wrote:
> From: Abel Vesa <[email protected]>
>
> Add compatible and constants for the power domains exposed by the RPMH
> in the Qualcomm SC8380XP platform.

Reviewed-by: Krzysztof Kozlowski <[email protected]>

Best regards,
Krzysztof