diff options
Diffstat (limited to 'arch/arm/mach-mx3/clock.c')
-rw-r--r-- | arch/arm/mach-mx3/clock.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/mach-mx3/clock.c b/arch/arm/mach-mx3/clock.c index 9957a11533a4..28bd11dc89b8 100644 --- a/arch/arm/mach-mx3/clock.c +++ b/arch/arm/mach-mx3/clock.c | |||
@@ -566,8 +566,6 @@ int __init mx31_clocks_init(unsigned long fref) | |||
566 | u32 reg; | 566 | u32 reg; |
567 | int i; | 567 | int i; |
568 | 568 | ||
569 | mxc_set_cpu_type(MXC_CPU_MX31); | ||
570 | |||
571 | ckih_rate = fref; | 569 | ckih_rate = fref; |
572 | 570 | ||
573 | for (i = 0; i < ARRAY_SIZE(lookups); i++) | 571 | for (i = 0; i < ARRAY_SIZE(lookups); i++) |
@@ -581,6 +579,12 @@ int __init mx31_clocks_init(unsigned long fref) | |||
581 | MX32, but still required to be set */ | 579 | MX32, but still required to be set */ |
582 | MXC_CCM_CGR2); | 580 | MXC_CCM_CGR2); |
583 | 581 | ||
582 | /* | ||
583 | * Before turning off usb_pll make sure ipg_per_clk is generated | ||
584 | * by ipg_clk and not usb_pll. | ||
585 | */ | ||
586 | __raw_writel(__raw_readl(MXC_CCM_CCMR) | (1 << 24), MXC_CCM_CCMR); | ||
587 | |||
584 | usb_pll_disable(&usb_pll_clk); | 588 | usb_pll_disable(&usb_pll_clk); |
585 | 589 | ||
586 | pr_info("Clock input source is %ld\n", clk_get_rate(&ckih_clk)); | 590 | pr_info("Clock input source is %ld\n", clk_get_rate(&ckih_clk)); |