diff options
| author | Abel Vesa <abel.vesa@oss.qualcomm.com> | 2026-08-10 14:10:38 +0300 |
|---|---|---|
| committer | Ulf Hansson <ulfh@kernel.org> | 2026-08-11 13:18:45 +0300 |
| commit | b48a0a0a76ccecec60f0568e2af4d89994b08bec (patch) | |
| tree | de3fc7ca3173058e6e3747f1fa6126e2a9ee5fdf | |
| parent | 3314c90a2eda3df7da4ab6f4388e667b2758de7f (diff) | |
| download | linux-b48a0a0a76ccecec60f0568e2af4d89994b08bec.tar.xz | |
pmdomain: qcom: rpmhpd: Add missing MXC and MMCX power domains for Eliza
MXC and MMCX were initially omitted as they were believed to have no
consumers, and they were not present downstream either.
The Iris video codec requires these power domains, so add MXC and MMCX
along with the MXC_AO and MMCX_AO.
Fixes: f387ecdd492f ("pmdomain: qcom: rpmhpd: Add Eliza RPMh Power Domains")
Signed-off-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulfh@kernel.org>
| -rw-r--r-- | drivers/pmdomain/qcom/rpmhpd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pmdomain/qcom/rpmhpd.c b/drivers/pmdomain/qcom/rpmhpd.c index 63120e703923..ffc46de8d07a 100644 --- a/drivers/pmdomain/qcom/rpmhpd.c +++ b/drivers/pmdomain/qcom/rpmhpd.c @@ -245,9 +245,13 @@ static struct rpmhpd *eliza_rpmhpds[] = { [RPMHPD_GFX] = &gfx, [RPMHPD_LCX] = &lcx, [RPMHPD_LMX] = &lmx, + [RPMHPD_MMCX] = &mmcx, + [RPMHPD_MMCX_AO] = &mmcx_ao, [RPMHPD_MSS] = &mss, [RPMHPD_MX] = &mx, [RPMHPD_MX_AO] = &mx_ao, + [RPMHPD_MXC] = &mxc, + [RPMHPD_MXC_AO] = &mxc_ao, [RPMHPD_NSP] = &nsp, }; |
