projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2ad626
)
pmdomain: imx: scu-pd: correct DMA2 channel
author
Peng Fan
<peng.fan@nxp.com>
Sun, 1 Oct 2023 12:38:53 +0000
(20:38 +0800)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Wed, 4 Oct 2023 22:28:52 +0000
(
00:28
+0200)
Per "dt-bindings/firmware/imx/rsrc.h", `IMX_SC_R_DMA_2_CH0 + 5` not
equals to IMX_SC_R_DMA_2_CH5, so there should be two entries in
imx8qxp_scu_pd_ranges, otherwise the imx_scu_add_pm_domain may filter
out wrong power domains.
Fixes: 927b7d15dcf2 ("genpd: imx: scu-pd: enlarge PD range")
Reported-by: Dong Aisheng <Aisheng.dong@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Link:
https://lore.kernel.org/r/20231001123853.200773-1-peng.fan@oss.nxp.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/pmdomain/imx/scu-pd.c
patch
|
blob
|
history
diff --git
a/drivers/pmdomain/imx/scu-pd.c
b/drivers/pmdomain/imx/scu-pd.c
index 2f693b67ddb4a9215f270eaac3c94d3425464d47..891c1d925a9dea7f0ceecae089220e727766ec4e 100644
(file)
--- a/
drivers/pmdomain/imx/scu-pd.c
+++ b/
drivers/pmdomain/imx/scu-pd.c
@@
-150,7
+150,8
@@
static const struct imx_sc_pd_range imx8qxp_scu_pd_ranges[] = {
{ "mclk-out-1", IMX_SC_R_MCLK_OUT_1, 1, false, 0 },
{ "dma0-ch", IMX_SC_R_DMA_0_CH0, 32, true, 0 },
{ "dma1-ch", IMX_SC_R_DMA_1_CH0, 16, true, 0 },
- { "dma2-ch", IMX_SC_R_DMA_2_CH0, 32, true, 0 },
+ { "dma2-ch-0", IMX_SC_R_DMA_2_CH0, 5, true, 0 },
+ { "dma2-ch-1", IMX_SC_R_DMA_2_CH5, 27, true, 0 },
{ "dma3-ch", IMX_SC_R_DMA_3_CH0, 32, true, 0 },
{ "asrc0", IMX_SC_R_ASRC_0, 1, false, 0 },
{ "asrc1", IMX_SC_R_ASRC_1, 1, false, 0 },