diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-16 20:15:29 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-16 20:15:29 -0400 |
commit | 26a806c064b7be25fc7c255b5d83646cf4645a93 (patch) | |
tree | 9fa30cb5b806f37ebf1a0c9f99d7b596a417a0b7 /arch/arm/mach-imx | |
parent | e5567598c61907187261aba7095ac825d8060827 (diff) | |
parent | 7852399cc666fda491e481575bdbf61bace58f00 (diff) |
Merge tag 'imx-soc' of git://git.pengutronix.de/git/imx/linux-2.6 into next/soc
ARM i.MX SoC updates
* tag 'imx-soc' of git://git.pengutronix.de/git/imx/linux-2.6:
ARM: i.MX35: Implement camera and keypad clocks
ARM: mxc: ssi-fiq: Make ssi-fiq.S Thumb-2 compatible
ARM i.MX53: register CAN clocks
arm imx31: add a few pinmux settings the tt01 needs
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/clk-imx35.c | 11 | ||||
-rw-r--r-- | arch/arm/mach-imx/clk-imx51-imx53.c | 14 |
2 files changed, 20 insertions, 5 deletions
diff --git a/arch/arm/mach-imx/clk-imx35.c b/arch/arm/mach-imx/clk-imx35.c index c6422fb10bae..cebc71d5a5af 100644 --- a/arch/arm/mach-imx/clk-imx35.c +++ b/arch/arm/mach-imx/clk-imx35.c | |||
@@ -62,8 +62,8 @@ enum mx35_clks { | |||
62 | kpp_gate, mlb_gate, mshc_gate, owire_gate, pwm_gate, rngc_gate, | 62 | kpp_gate, mlb_gate, mshc_gate, owire_gate, pwm_gate, rngc_gate, |
63 | rtc_gate, rtic_gate, scc_gate, sdma_gate, spba_gate, spdif_gate, | 63 | rtc_gate, rtic_gate, scc_gate, sdma_gate, spba_gate, spdif_gate, |
64 | ssi1_gate, ssi2_gate, uart1_gate, uart2_gate, uart3_gate, usbotg_gate, | 64 | ssi1_gate, ssi2_gate, uart1_gate, uart2_gate, uart3_gate, usbotg_gate, |
65 | wdog_gate, max_gate, admux_gate, csi_gate, iim_gate, gpu2d_gate, | 65 | wdog_gate, max_gate, admux_gate, csi_gate, csi_div, csi_sel, iim_gate, |
66 | clk_max | 66 | gpu2d_gate, clk_max |
67 | }; | 67 | }; |
68 | 68 | ||
69 | static struct clk *clk[clk_max]; | 69 | static struct clk *clk[clk_max]; |
@@ -142,6 +142,9 @@ int __init mx35_clocks_init() | |||
142 | 142 | ||
143 | clk[nfc_div] = imx_clk_divider("nfc_div", "ahb", base + MX35_CCM_PDR4, 28, 4); | 143 | clk[nfc_div] = imx_clk_divider("nfc_div", "ahb", base + MX35_CCM_PDR4, 28, 4); |
144 | 144 | ||
145 | clk[csi_sel] = imx_clk_mux("csi_sel", base + MX35_CCM_PDR2, 7, 1, std_sel, ARRAY_SIZE(std_sel)); | ||
146 | clk[csi_div] = imx_clk_divider("csi_div", "csi_sel", base + MX35_CCM_PDR2, 16, 6); | ||
147 | |||
145 | clk[asrc_gate] = imx_clk_gate2("asrc_gate", "ipg", base + MX35_CCM_CGR0, 0); | 148 | clk[asrc_gate] = imx_clk_gate2("asrc_gate", "ipg", base + MX35_CCM_CGR0, 0); |
146 | clk[pata_gate] = imx_clk_gate2("pata_gate", "ipg", base + MX35_CCM_CGR0, 2); | 149 | clk[pata_gate] = imx_clk_gate2("pata_gate", "ipg", base + MX35_CCM_CGR0, 2); |
147 | clk[audmux_gate] = imx_clk_gate2("audmux_gate", "ipg", base + MX35_CCM_CGR0, 4); | 150 | clk[audmux_gate] = imx_clk_gate2("audmux_gate", "ipg", base + MX35_CCM_CGR0, 4); |
@@ -192,7 +195,7 @@ int __init mx35_clocks_init() | |||
192 | clk[max_gate] = imx_clk_gate2("max_gate", "dummy", base + MX35_CCM_CGR2, 26); | 195 | clk[max_gate] = imx_clk_gate2("max_gate", "dummy", base + MX35_CCM_CGR2, 26); |
193 | clk[admux_gate] = imx_clk_gate2("admux_gate", "ipg", base + MX35_CCM_CGR2, 30); | 196 | clk[admux_gate] = imx_clk_gate2("admux_gate", "ipg", base + MX35_CCM_CGR2, 30); |
194 | 197 | ||
195 | clk[csi_gate] = imx_clk_gate2("csi_gate", "ipg", base + MX35_CCM_CGR3, 0); | 198 | clk[csi_gate] = imx_clk_gate2("csi_gate", "csi_div", base + MX35_CCM_CGR3, 0); |
196 | clk[iim_gate] = imx_clk_gate2("iim_gate", "ipg", base + MX35_CCM_CGR3, 2); | 199 | clk[iim_gate] = imx_clk_gate2("iim_gate", "ipg", base + MX35_CCM_CGR3, 2); |
197 | clk[gpu2d_gate] = imx_clk_gate2("gpu2d_gate", "ahb", base + MX35_CCM_CGR3, 4); | 200 | clk[gpu2d_gate] = imx_clk_gate2("gpu2d_gate", "ahb", base + MX35_CCM_CGR3, 4); |
198 | 201 | ||
@@ -228,6 +231,7 @@ int __init mx35_clocks_init() | |||
228 | clk_register_clkdev(clk[i2c3_gate], NULL, "imx-i2c.2"); | 231 | clk_register_clkdev(clk[i2c3_gate], NULL, "imx-i2c.2"); |
229 | clk_register_clkdev(clk[ipu_gate], NULL, "ipu-core"); | 232 | clk_register_clkdev(clk[ipu_gate], NULL, "ipu-core"); |
230 | clk_register_clkdev(clk[ipu_gate], NULL, "mx3_sdc_fb"); | 233 | clk_register_clkdev(clk[ipu_gate], NULL, "mx3_sdc_fb"); |
234 | clk_register_clkdev(clk[kpp_gate], NULL, "imx-keypad"); | ||
231 | clk_register_clkdev(clk[owire_gate], NULL, "mxc_w1"); | 235 | clk_register_clkdev(clk[owire_gate], NULL, "mxc_w1"); |
232 | clk_register_clkdev(clk[sdma_gate], NULL, "imx35-sdma"); | 236 | clk_register_clkdev(clk[sdma_gate], NULL, "imx35-sdma"); |
233 | clk_register_clkdev(clk[ipg], "ipg", "imx-ssi.0"); | 237 | clk_register_clkdev(clk[ipg], "ipg", "imx-ssi.0"); |
@@ -255,6 +259,7 @@ int __init mx35_clocks_init() | |||
255 | clk_register_clkdev(clk[usbotg_gate], "ahb", "fsl-usb2-udc"); | 259 | clk_register_clkdev(clk[usbotg_gate], "ahb", "fsl-usb2-udc"); |
256 | clk_register_clkdev(clk[wdog_gate], NULL, "imx2-wdt.0"); | 260 | clk_register_clkdev(clk[wdog_gate], NULL, "imx2-wdt.0"); |
257 | clk_register_clkdev(clk[nfc_div], NULL, "mxc_nand.0"); | 261 | clk_register_clkdev(clk[nfc_div], NULL, "mxc_nand.0"); |
262 | clk_register_clkdev(clk[csi_gate], NULL, "mx3-camera.0"); | ||
258 | 263 | ||
259 | clk_prepare_enable(clk[spba_gate]); | 264 | clk_prepare_enable(clk[spba_gate]); |
260 | clk_prepare_enable(clk[gpio1_gate]); | 265 | clk_prepare_enable(clk[gpio1_gate]); |
diff --git a/arch/arm/mach-imx/clk-imx51-imx53.c b/arch/arm/mach-imx/clk-imx51-imx53.c index 4bdcaa97bd98..db70d23f95fa 100644 --- a/arch/arm/mach-imx/clk-imx51-imx53.c +++ b/arch/arm/mach-imx/clk-imx51-imx53.c | |||
@@ -49,6 +49,7 @@ static const char *mx53_tve_ext_sel[] = { "pll4_sw", "ckih1", }; | |||
49 | static const char *tve_sel[] = { "tve_pred", "tve_ext_sel", }; | 49 | static const char *tve_sel[] = { "tve_pred", "tve_ext_sel", }; |
50 | static const char *ipu_sel[] = { "axi_a", "axi_b", "emi_slow_gate", "ahb", }; | 50 | static const char *ipu_sel[] = { "axi_a", "axi_b", "emi_slow_gate", "ahb", }; |
51 | static const char *vpu_sel[] = { "axi_a", "axi_b", "emi_slow_gate", "ahb", }; | 51 | static const char *vpu_sel[] = { "axi_a", "axi_b", "emi_slow_gate", "ahb", }; |
52 | static const char *mx53_can_sel[] = { "ipg", "ckih1", "ckih2", "lp_apm", }; | ||
52 | 53 | ||
53 | enum imx5_clks { | 54 | enum imx5_clks { |
54 | dummy, ckil, osc, ckih1, ckih2, ahb, ipg, axi_a, axi_b, uart_pred, | 55 | dummy, ckil, osc, ckih1, ckih2, ahb, ipg, axi_a, axi_b, uart_pred, |
@@ -82,6 +83,7 @@ enum imx5_clks { | |||
82 | ssi_ext1_podf, ssi_ext2_pred, ssi_ext2_podf, ssi1_root_gate, | 83 | ssi_ext1_podf, ssi_ext2_pred, ssi_ext2_podf, ssi1_root_gate, |
83 | ssi2_root_gate, ssi3_root_gate, ssi_ext1_gate, ssi_ext2_gate, | 84 | ssi2_root_gate, ssi3_root_gate, ssi_ext1_gate, ssi_ext2_gate, |
84 | epit1_ipg_gate, epit1_hf_gate, epit2_ipg_gate, epit2_hf_gate, | 85 | epit1_ipg_gate, epit1_hf_gate, epit2_ipg_gate, epit2_hf_gate, |
86 | can_sel, can1_serial_gate, can1_ipg_gate, | ||
85 | clk_max | 87 | clk_max |
86 | }; | 88 | }; |
87 | 89 | ||
@@ -421,8 +423,12 @@ int __init mx53_clocks_init(unsigned long rate_ckil, unsigned long rate_osc, | |||
421 | clk[esdhc4_per_gate] = imx_clk_gate2("esdhc4_per_gate", "esdhc_d_sel", MXC_CCM_CCGR3, 14); | 423 | clk[esdhc4_per_gate] = imx_clk_gate2("esdhc4_per_gate", "esdhc_d_sel", MXC_CCM_CCGR3, 14); |
422 | clk[usb_phy1_gate] = imx_clk_gate2("usb_phy1_gate", "usb_phy_sel", MXC_CCM_CCGR4, 10); | 424 | clk[usb_phy1_gate] = imx_clk_gate2("usb_phy1_gate", "usb_phy_sel", MXC_CCM_CCGR4, 10); |
423 | clk[usb_phy2_gate] = imx_clk_gate2("usb_phy2_gate", "usb_phy_sel", MXC_CCM_CCGR4, 12); | 425 | clk[usb_phy2_gate] = imx_clk_gate2("usb_phy2_gate", "usb_phy_sel", MXC_CCM_CCGR4, 12); |
424 | clk[can2_serial_gate] = imx_clk_gate2("can2_serial_gate", "ipg", MXC_CCM_CCGR4, 6); | 426 | clk[can_sel] = imx_clk_mux("can_sel", MXC_CCM_CSCMR2, 6, 2, |
425 | clk[can2_ipg_gate] = imx_clk_gate2("can2_ipg_gate", "ipg", MXC_CCM_CCGR4, 8); | 427 | mx53_can_sel, ARRAY_SIZE(mx53_can_sel)); |
428 | clk[can1_serial_gate] = imx_clk_gate2("can1_serial_gate", "can_sel", MXC_CCM_CCGR6, 22); | ||
429 | clk[can1_ipg_gate] = imx_clk_gate2("can1_ipg_gate", "ipg", MXC_CCM_CCGR6, 20); | ||
430 | clk[can2_serial_gate] = imx_clk_gate2("can2_serial_gate", "can_sel", MXC_CCM_CCGR4, 8); | ||
431 | clk[can2_ipg_gate] = imx_clk_gate2("can2_ipg_gate", "ipg", MXC_CCM_CCGR4, 6); | ||
426 | clk[i2c3_gate] = imx_clk_gate2("i2c3_gate", "per_root", MXC_CCM_CCGR1, 22); | 432 | clk[i2c3_gate] = imx_clk_gate2("i2c3_gate", "per_root", MXC_CCM_CCGR1, 22); |
427 | 433 | ||
428 | for (i = 0; i < ARRAY_SIZE(clk); i++) | 434 | for (i = 0; i < ARRAY_SIZE(clk); i++) |
@@ -455,6 +461,10 @@ int __init mx53_clocks_init(unsigned long rate_ckil, unsigned long rate_osc, | |||
455 | clk_register_clkdev(clk[ssi1_ipg_gate], NULL, "63fcc000.ssi"); | 461 | clk_register_clkdev(clk[ssi1_ipg_gate], NULL, "63fcc000.ssi"); |
456 | clk_register_clkdev(clk[ssi2_ipg_gate], NULL, "50014000.ssi"); | 462 | clk_register_clkdev(clk[ssi2_ipg_gate], NULL, "50014000.ssi"); |
457 | clk_register_clkdev(clk[ssi3_ipg_gate], NULL, "63fd0000.ssi"); | 463 | clk_register_clkdev(clk[ssi3_ipg_gate], NULL, "63fd0000.ssi"); |
464 | clk_register_clkdev(clk[can1_ipg_gate], "ipg", "53fc8000.can"); | ||
465 | clk_register_clkdev(clk[can1_serial_gate], "per", "53fc8000.can"); | ||
466 | clk_register_clkdev(clk[can2_ipg_gate], "ipg", "53fcc000.can"); | ||
467 | clk_register_clkdev(clk[can2_serial_gate], "per", "53fcc000.can"); | ||
458 | 468 | ||
459 | /* set SDHC root clock to 200MHZ*/ | 469 | /* set SDHC root clock to 200MHZ*/ |
460 | clk_set_rate(clk[esdhc_a_podf], 200000000); | 470 | clk_set_rate(clk[esdhc_a_podf], 200000000); |