projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40913fb
)
imx: mx6: fix mmdc ch0 clk for 6SL
author
Peng Fan
<peng.fan@nxp.com>
Sun, 11 Dec 2016 11:24:25 +0000
(19:24 +0800)
committer
Stefano Babic
<sbabic@denx.de>
Fri, 16 Dec 2016 10:38:24 +0000
(11:38 +0100)
>From RM, per_periph2_clk_sel option3 is:
"derive clock from 198MHz clock (divided 392MHz PLL2 PFD)."
So fix it.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
arch/arm/cpu/armv7/mx6/clock.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/mx6/clock.c
b/arch/arm/cpu/armv7/mx6/clock.c
index 299562884add94b3f2e228827ba8b6d7374ba538..88f68f1137b6e91ee7b729a5266b12cee539863f 100644
(file)
--- a/
arch/arm/cpu/armv7/mx6/clock.c
+++ b/
arch/arm/cpu/armv7/mx6/clock.c
@@
-514,6
+514,11
@@
static u32 get_mmdc_ch0_clk(void)
freq = mxc_get_pll_pfd(PLL_BUS, 0);
break;
case 3:
+ if (is_mx6sl()) {
+ freq = mxc_get_pll_pfd(PLL_BUS, 2) >> 1;
+ break;
+ }
+
pmu_misc2_audio_div = PMU_MISC2_AUDIO_DIV(__raw_readl(&imx_ccm->pmu_misc2));
switch (pmu_misc2_audio_div) {
case 0: