mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
soc: qcom: rpmhpd: Add SDX65 power domains
Add power domains found in Qualcomm SDX65 SoC. Signed-off-by: Rohit Agarwal <quic_rohiagar@quicinc.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/1647410837-22537-5-git-send-email-quic_rohiagar@quicinc.com
This commit is contained in:
parent
ccc706353d
commit
3edff6262c
@ -210,6 +210,21 @@ static const struct rpmhpd_desc sdx55_desc = {
|
||||
.num_pds = ARRAY_SIZE(sdx55_rpmhpds),
|
||||
};
|
||||
|
||||
/* SDX65 RPMH powerdomains */
|
||||
static struct rpmhpd *sdx65_rpmhpds[] = {
|
||||
[SDX65_CX] = &cx_w_mx_parent,
|
||||
[SDX65_CX_AO] = &cx_ao_w_mx_parent,
|
||||
[SDX65_MSS] = &mss,
|
||||
[SDX65_MX] = &mx,
|
||||
[SDX65_MX_AO] = &mx_ao,
|
||||
[SDX65_MXC] = &mxc,
|
||||
};
|
||||
|
||||
static const struct rpmhpd_desc sdx65_desc = {
|
||||
.rpmhpds = sdx65_rpmhpds,
|
||||
.num_pds = ARRAY_SIZE(sdx65_rpmhpds),
|
||||
};
|
||||
|
||||
/* SM6350 RPMH powerdomains */
|
||||
static struct rpmhpd *sm6350_rpmhpds[] = {
|
||||
[SM6350_CX] = &cx_w_mx_parent,
|
||||
@ -369,6 +384,7 @@ static const struct of_device_id rpmhpd_match_table[] = {
|
||||
{ .compatible = "qcom,sc8180x-rpmhpd", .data = &sc8180x_desc },
|
||||
{ .compatible = "qcom,sdm845-rpmhpd", .data = &sdm845_desc },
|
||||
{ .compatible = "qcom,sdx55-rpmhpd", .data = &sdx55_desc},
|
||||
{ .compatible = "qcom,sdx65-rpmhpd", .data = &sdx65_desc},
|
||||
{ .compatible = "qcom,sm6350-rpmhpd", .data = &sm6350_desc },
|
||||
{ .compatible = "qcom,sm8150-rpmhpd", .data = &sm8150_desc },
|
||||
{ .compatible = "qcom,sm8250-rpmhpd", .data = &sm8250_desc },
|
||||
|
Loading…
Reference in New Issue
Block a user