diff options
author | Dmitry Baryshkov | 2022-07-04 19:22:02 +0300 |
---|---|---|
committer | Bjorn Andersson | 2022-07-18 15:32:33 -0500 |
commit | 4c6e20077b222310c972aac56b3b3b7e9d36e7a0 (patch) | |
tree | 4a7d950ccc35556b6e7b0380f387302c0d568974 /drivers/remoteproc | |
parent | c2ca7a2e4bc1ebc8dd28040161215df0e753ab15 (diff) |
remoteproc: qcom: q6v5-mss: add powerdomains to MSM8996 config
MSM8996 follows the rest of MSS devices and requires a vote on MX and CX
power domains. Add corresponding entry to the device data.
Fixes: 4760a896be88 ("remoteproc: q6v5-mss: Vote for rpmh power domains")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220704162202.819051-1-dmitry.baryshkov@linaro.org
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r-- | drivers/remoteproc/qcom_q6v5_mss.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/remoteproc/qcom_q6v5_mss.c b/drivers/remoteproc/qcom_q6v5_mss.c index 8a66e70e3bfd..fddb63cffee0 100644 --- a/drivers/remoteproc/qcom_q6v5_mss.c +++ b/drivers/remoteproc/qcom_q6v5_mss.c @@ -2225,6 +2225,11 @@ static const struct rproc_hexagon_res msm8996_mss = { "mnoc_axi", NULL }, + .proxy_pd_names = (char*[]){ + "mx", + "cx", + NULL + }, .need_mem_protection = true, .has_alt_reset = false, .has_mba_logs = false, |