mx25: properly initialize clocks

This patch disables all unnecessary clock in mx25_clocks_init() to make a clean
start, the same as is being done for the rest of the i.MX chips.

This patch was tested on i.MX25 PDK.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>

authored by Baruch Siach and committed by Sascha Hauer 828df43f fadc0956

+8
+8
arch/arm/mach-mx25/clock.c
··· 218 for (i = 0; i < ARRAY_SIZE(lookups); i++) 219 clkdev_add(&lookups[i]); 220 221 mxc_timer_init(&gpt_clk, MX25_IO_ADDRESS(MX25_GPT1_BASE_ADDR), 54); 222 223 return 0;
··· 218 for (i = 0; i < ARRAY_SIZE(lookups); i++) 219 clkdev_add(&lookups[i]); 220 221 + /* Turn off all clocks except the ones we need to survive, namely: 222 + * EMI, GPIO1-3 (CCM_CGCR1[18:16]), GPT1, IOMUXC (CCM_CGCR1[27]), IIM, 223 + * SCC 224 + */ 225 + __raw_writel((1 << 19), CRM_BASE + CCM_CGCR0); 226 + __raw_writel((0xf << 16) | (3 << 26), CRM_BASE + CCM_CGCR1); 227 + __raw_writel((1 << 5), CRM_BASE + CCM_CGCR2); 228 + 229 mxc_timer_init(&gpt_clk, MX25_IO_ADDRESS(MX25_GPT1_BASE_ADDR), 54); 230 231 return 0;