imx: mx6: support i.MX6SOLO when enable/disable_ldb_di_clock_sources
i.MX6DL and i.MX6SOLO work the same, add i.MX6SOLO support when enable/disable_ldb_di_clock_sources. Signed-off-by: Peng Fan <van.freenix@gmail.com> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
32ff58bb2e
commit
dea572379e
|
@ -1228,7 +1228,7 @@ static void disable_ldb_di_clock_sources(void)
|
||||||
/* Make sure PFDs are disabled at boot. */
|
/* Make sure PFDs are disabled at boot. */
|
||||||
reg = readl(&mxc_ccm->analog_pfd_528);
|
reg = readl(&mxc_ccm->analog_pfd_528);
|
||||||
/* Cannot disable pll2_pfd2_396M, as it is the MMDC clock in iMX6DL */
|
/* Cannot disable pll2_pfd2_396M, as it is the MMDC clock in iMX6DL */
|
||||||
if (is_cpu_type(MXC_CPU_MX6DL))
|
if (is_cpu_type(MXC_CPU_MX6DL) || is_cpu_type(MXC_CPU_MX6SOLO))
|
||||||
reg |= 0x80008080;
|
reg |= 0x80008080;
|
||||||
else
|
else
|
||||||
reg |= 0x80808080;
|
reg |= 0x80808080;
|
||||||
|
@ -1251,7 +1251,7 @@ static void enable_ldb_di_clock_sources(void)
|
||||||
int reg;
|
int reg;
|
||||||
|
|
||||||
reg = readl(&mxc_ccm->analog_pfd_528);
|
reg = readl(&mxc_ccm->analog_pfd_528);
|
||||||
if (is_cpu_type(MXC_CPU_MX6DL))
|
if (is_cpu_type(MXC_CPU_MX6DL) || is_cpu_type(MXC_CPU_MX6SOLO))
|
||||||
reg &= ~(0x80008080);
|
reg &= ~(0x80008080);
|
||||||
else
|
else
|
||||||
reg &= ~(0x80808080);
|
reg &= ~(0x80808080);
|
||||||
|
|
Loading…
Reference in New Issue