xref: /openbmc/linux/arch/arm/mach-omap2/io.c (revision f746929ffdc8a83c0e6092343d4475f6485e13d3)
11dbae815STony Lindgren /*
21dbae815STony Lindgren  * linux/arch/arm/mach-omap2/io.c
31dbae815STony Lindgren  *
41dbae815STony Lindgren  * OMAP2 I/O mapping code
51dbae815STony Lindgren  *
61dbae815STony Lindgren  * Copyright (C) 2005 Nokia Corporation
744169075SSantosh Shilimkar  * Copyright (C) 2007-2009 Texas Instruments
8646e3ed1STony Lindgren  *
9646e3ed1STony Lindgren  * Author:
10646e3ed1STony Lindgren  *	Juha Yrjola <juha.yrjola@nokia.com>
11646e3ed1STony Lindgren  *	Syed Khasim <x0khasim@ti.com>
121dbae815STony Lindgren  *
1344169075SSantosh Shilimkar  * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
1444169075SSantosh Shilimkar  *
151dbae815STony Lindgren  * This program is free software; you can redistribute it and/or modify
161dbae815STony Lindgren  * it under the terms of the GNU General Public License version 2 as
171dbae815STony Lindgren  * published by the Free Software Foundation.
181dbae815STony Lindgren  */
191dbae815STony Lindgren #include <linux/module.h>
201dbae815STony Lindgren #include <linux/kernel.h>
211dbae815STony Lindgren #include <linux/init.h>
22fced80c7SRussell King #include <linux/io.h>
232f135eafSPaul Walmsley #include <linux/clk.h>
241dbae815STony Lindgren 
25120db2cbSTony Lindgren #include <asm/tlb.h>
26120db2cbSTony Lindgren #include <asm/mach/map.h>
27120db2cbSTony Lindgren 
2845c3eb7dSTony Lindgren #include <linux/omap-dma.h>
29646e3ed1STony Lindgren 
30dc843280STony Lindgren #include "omap_hwmod.h"
31dbc04161STony Lindgren #include "soc.h"
32ee0839c2STony Lindgren #include "iomap.h"
33ee0839c2STony Lindgren #include "voltage.h"
34ee0839c2STony Lindgren #include "powerdomain.h"
35ee0839c2STony Lindgren #include "clockdomain.h"
36ee0839c2STony Lindgren #include "common.h"
37e30384abSVaibhav Hiremath #include "clock.h"
38e80a9729SPaul Walmsley #include "clock2xxx.h"
39657ebfadSPaul Walmsley #include "clock3xxx.h"
40e80a9729SPaul Walmsley #include "clock44xx.h"
411d5aef49STony Lindgren #include "omap-pm.h"
423e6ece13SPaul Walmsley #include "sdrc.h"
43b6a4226cSPaul Walmsley #include "control.h"
443d82cbbbSTony Lindgren #include "serial.h"
45bf027ca1STony Lindgren #include "sram.h"
46c4ceedcbSPaul Walmsley #include "cm2xxx.h"
47c4ceedcbSPaul Walmsley #include "cm3xxx.h"
487632a02fSTero Kristo #include "cm33xx.h"
49ab6c9bbfSTero Kristo #include "cm44xx.h"
50d9a16f9aSPaul Walmsley #include "prm.h"
51d9a16f9aSPaul Walmsley #include "cm.h"
52d9a16f9aSPaul Walmsley #include "prcm_mpu44xx.h"
53d9a16f9aSPaul Walmsley #include "prminst44xx.h"
5463a293e0SPaul Walmsley #include "prm2xxx.h"
5563a293e0SPaul Walmsley #include "prm3xxx.h"
56d9bbe84fSTero Kristo #include "prm33xx.h"
5763a293e0SPaul Walmsley #include "prm44xx.h"
5869a1e7a1STero Kristo #include "opp2xxx.h"
591dbae815STony Lindgren 
601dbae815STony Lindgren /*
61cfa9667dSTero Kristo  * omap_clk_soc_init: points to a function that does the SoC-specific
62ff931c82SRajendra Nayak  * clock initializations
63ff931c82SRajendra Nayak  */
64cfa9667dSTero Kristo static int (*omap_clk_soc_init)(void);
65ff931c82SRajendra Nayak 
66ff931c82SRajendra Nayak /*
671dbae815STony Lindgren  * The machine specific code may provide the extra mapping besides the
681dbae815STony Lindgren  * default mapping provided here.
691dbae815STony Lindgren  */
70cc26b3b0SSyed Mohammed, Khasim 
71e48f814eSTony Lindgren #if defined(CONFIG_SOC_OMAP2420) || defined(CONFIG_SOC_OMAP2430)
72cc26b3b0SSyed Mohammed, Khasim static struct map_desc omap24xx_io_desc[] __initdata = {
731dbae815STony Lindgren 	{
741dbae815STony Lindgren 		.virtual	= L3_24XX_VIRT,
751dbae815STony Lindgren 		.pfn		= __phys_to_pfn(L3_24XX_PHYS),
761dbae815STony Lindgren 		.length		= L3_24XX_SIZE,
771dbae815STony Lindgren 		.type		= MT_DEVICE
781dbae815STony Lindgren 	},
7909f21ed4SKyungmin Park 	{
8009f21ed4SKyungmin Park 		.virtual	= L4_24XX_VIRT,
8109f21ed4SKyungmin Park 		.pfn		= __phys_to_pfn(L4_24XX_PHYS),
8209f21ed4SKyungmin Park 		.length		= L4_24XX_SIZE,
8309f21ed4SKyungmin Park 		.type		= MT_DEVICE
8409f21ed4SKyungmin Park 	},
85cc26b3b0SSyed Mohammed, Khasim };
86cc26b3b0SSyed Mohammed, Khasim 
8759b479e0STony Lindgren #ifdef CONFIG_SOC_OMAP2420
88cc26b3b0SSyed Mohammed, Khasim static struct map_desc omap242x_io_desc[] __initdata = {
891dbae815STony Lindgren 	{
907adb9987SPaul Walmsley 		.virtual	= DSP_MEM_2420_VIRT,
917adb9987SPaul Walmsley 		.pfn		= __phys_to_pfn(DSP_MEM_2420_PHYS),
927adb9987SPaul Walmsley 		.length		= DSP_MEM_2420_SIZE,
93c40fae95STony Lindgren 		.type		= MT_DEVICE
94c40fae95STony Lindgren 	},
95c40fae95STony Lindgren 	{
967adb9987SPaul Walmsley 		.virtual	= DSP_IPI_2420_VIRT,
977adb9987SPaul Walmsley 		.pfn		= __phys_to_pfn(DSP_IPI_2420_PHYS),
987adb9987SPaul Walmsley 		.length		= DSP_IPI_2420_SIZE,
99c40fae95STony Lindgren 		.type		= MT_DEVICE
100c40fae95STony Lindgren 	},
101c40fae95STony Lindgren 	{
1027adb9987SPaul Walmsley 		.virtual	= DSP_MMU_2420_VIRT,
1037adb9987SPaul Walmsley 		.pfn		= __phys_to_pfn(DSP_MMU_2420_PHYS),
1047adb9987SPaul Walmsley 		.length		= DSP_MMU_2420_SIZE,
1051dbae815STony Lindgren 		.type		= MT_DEVICE
106cc26b3b0SSyed Mohammed, Khasim 	},
1071dbae815STony Lindgren };
1081dbae815STony Lindgren 
109cc26b3b0SSyed Mohammed, Khasim #endif
110cc26b3b0SSyed Mohammed, Khasim 
11159b479e0STony Lindgren #ifdef CONFIG_SOC_OMAP2430
112cc26b3b0SSyed Mohammed, Khasim static struct map_desc omap243x_io_desc[] __initdata = {
113cc26b3b0SSyed Mohammed, Khasim 	{
114cc26b3b0SSyed Mohammed, Khasim 		.virtual	= L4_WK_243X_VIRT,
115cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(L4_WK_243X_PHYS),
116cc26b3b0SSyed Mohammed, Khasim 		.length		= L4_WK_243X_SIZE,
117cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
118cc26b3b0SSyed Mohammed, Khasim 	},
119cc26b3b0SSyed Mohammed, Khasim 	{
120cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP243X_GPMC_VIRT,
121cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP243X_GPMC_PHYS),
122cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP243X_GPMC_SIZE,
123cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
124cc26b3b0SSyed Mohammed, Khasim 	},
125cc26b3b0SSyed Mohammed, Khasim 	{
126cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP243X_SDRC_VIRT,
127cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP243X_SDRC_PHYS),
128cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP243X_SDRC_SIZE,
129cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
130cc26b3b0SSyed Mohammed, Khasim 	},
131cc26b3b0SSyed Mohammed, Khasim 	{
132cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP243X_SMS_VIRT,
133cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP243X_SMS_PHYS),
134cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP243X_SMS_SIZE,
135cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
136cc26b3b0SSyed Mohammed, Khasim 	},
137cc26b3b0SSyed Mohammed, Khasim };
138cc26b3b0SSyed Mohammed, Khasim #endif
139cc26b3b0SSyed Mohammed, Khasim #endif
140cc26b3b0SSyed Mohammed, Khasim 
141a8eb7ca0STony Lindgren #ifdef	CONFIG_ARCH_OMAP3
142cc26b3b0SSyed Mohammed, Khasim static struct map_desc omap34xx_io_desc[] __initdata = {
143cc26b3b0SSyed Mohammed, Khasim 	{
144cc26b3b0SSyed Mohammed, Khasim 		.virtual	= L3_34XX_VIRT,
145cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(L3_34XX_PHYS),
146cc26b3b0SSyed Mohammed, Khasim 		.length		= L3_34XX_SIZE,
147cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
148cc26b3b0SSyed Mohammed, Khasim 	},
149cc26b3b0SSyed Mohammed, Khasim 	{
150cc26b3b0SSyed Mohammed, Khasim 		.virtual	= L4_34XX_VIRT,
151cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(L4_34XX_PHYS),
152cc26b3b0SSyed Mohammed, Khasim 		.length		= L4_34XX_SIZE,
153cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
154cc26b3b0SSyed Mohammed, Khasim 	},
155cc26b3b0SSyed Mohammed, Khasim 	{
156cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP34XX_GPMC_VIRT,
157cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP34XX_GPMC_PHYS),
158cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP34XX_GPMC_SIZE,
159cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
160cc26b3b0SSyed Mohammed, Khasim 	},
161cc26b3b0SSyed Mohammed, Khasim 	{
162cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP343X_SMS_VIRT,
163cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP343X_SMS_PHYS),
164cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP343X_SMS_SIZE,
165cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
166cc26b3b0SSyed Mohammed, Khasim 	},
167cc26b3b0SSyed Mohammed, Khasim 	{
168cc26b3b0SSyed Mohammed, Khasim 		.virtual	= OMAP343X_SDRC_VIRT,
169cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(OMAP343X_SDRC_PHYS),
170cc26b3b0SSyed Mohammed, Khasim 		.length		= OMAP343X_SDRC_SIZE,
171cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
172cc26b3b0SSyed Mohammed, Khasim 	},
173cc26b3b0SSyed Mohammed, Khasim 	{
174cc26b3b0SSyed Mohammed, Khasim 		.virtual	= L4_PER_34XX_VIRT,
175cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(L4_PER_34XX_PHYS),
176cc26b3b0SSyed Mohammed, Khasim 		.length		= L4_PER_34XX_SIZE,
177cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
178cc26b3b0SSyed Mohammed, Khasim 	},
179cc26b3b0SSyed Mohammed, Khasim 	{
180cc26b3b0SSyed Mohammed, Khasim 		.virtual	= L4_EMU_34XX_VIRT,
181cc26b3b0SSyed Mohammed, Khasim 		.pfn		= __phys_to_pfn(L4_EMU_34XX_PHYS),
182cc26b3b0SSyed Mohammed, Khasim 		.length		= L4_EMU_34XX_SIZE,
183cc26b3b0SSyed Mohammed, Khasim 		.type		= MT_DEVICE
184cc26b3b0SSyed Mohammed, Khasim 	},
185cc26b3b0SSyed Mohammed, Khasim };
186cc26b3b0SSyed Mohammed, Khasim #endif
18701001712SHemant Pedanekar 
18833959553SKevin Hilman #ifdef CONFIG_SOC_TI81XX
189a920360fSHemant Pedanekar static struct map_desc omapti81xx_io_desc[] __initdata = {
19001001712SHemant Pedanekar 	{
19101001712SHemant Pedanekar 		.virtual	= L4_34XX_VIRT,
19201001712SHemant Pedanekar 		.pfn		= __phys_to_pfn(L4_34XX_PHYS),
19301001712SHemant Pedanekar 		.length		= L4_34XX_SIZE,
19401001712SHemant Pedanekar 		.type		= MT_DEVICE
1951e6cb146SAfzal Mohammed 	}
1961e6cb146SAfzal Mohammed };
1971e6cb146SAfzal Mohammed #endif
1981e6cb146SAfzal Mohammed 
199addb154aSAfzal Mohammed #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
2001e6cb146SAfzal Mohammed static struct map_desc omapam33xx_io_desc[] __initdata = {
20101001712SHemant Pedanekar 	{
20201001712SHemant Pedanekar 		.virtual	= L4_34XX_VIRT,
20301001712SHemant Pedanekar 		.pfn		= __phys_to_pfn(L4_34XX_PHYS),
20401001712SHemant Pedanekar 		.length		= L4_34XX_SIZE,
20501001712SHemant Pedanekar 		.type		= MT_DEVICE
20601001712SHemant Pedanekar 	},
2071e6cb146SAfzal Mohammed 	{
2081e6cb146SAfzal Mohammed 		.virtual	= L4_WK_AM33XX_VIRT,
2091e6cb146SAfzal Mohammed 		.pfn		= __phys_to_pfn(L4_WK_AM33XX_PHYS),
2101e6cb146SAfzal Mohammed 		.length		= L4_WK_AM33XX_SIZE,
2111e6cb146SAfzal Mohammed 		.type		= MT_DEVICE
2121e6cb146SAfzal Mohammed 	}
21301001712SHemant Pedanekar };
21401001712SHemant Pedanekar #endif
21501001712SHemant Pedanekar 
21644169075SSantosh Shilimkar #ifdef	CONFIG_ARCH_OMAP4
21744169075SSantosh Shilimkar static struct map_desc omap44xx_io_desc[] __initdata = {
21844169075SSantosh Shilimkar 	{
21944169075SSantosh Shilimkar 		.virtual	= L3_44XX_VIRT,
22044169075SSantosh Shilimkar 		.pfn		= __phys_to_pfn(L3_44XX_PHYS),
22144169075SSantosh Shilimkar 		.length		= L3_44XX_SIZE,
22244169075SSantosh Shilimkar 		.type		= MT_DEVICE,
22344169075SSantosh Shilimkar 	},
22444169075SSantosh Shilimkar 	{
22544169075SSantosh Shilimkar 		.virtual	= L4_44XX_VIRT,
22644169075SSantosh Shilimkar 		.pfn		= __phys_to_pfn(L4_44XX_PHYS),
22744169075SSantosh Shilimkar 		.length		= L4_44XX_SIZE,
22844169075SSantosh Shilimkar 		.type		= MT_DEVICE,
22944169075SSantosh Shilimkar 	},
23044169075SSantosh Shilimkar 	{
23144169075SSantosh Shilimkar 		.virtual	= L4_PER_44XX_VIRT,
23244169075SSantosh Shilimkar 		.pfn		= __phys_to_pfn(L4_PER_44XX_PHYS),
23344169075SSantosh Shilimkar 		.length		= L4_PER_44XX_SIZE,
23444169075SSantosh Shilimkar 		.type		= MT_DEVICE,
23544169075SSantosh Shilimkar 	},
23644169075SSantosh Shilimkar };
23744169075SSantosh Shilimkar #endif
238cc26b3b0SSyed Mohammed, Khasim 
239a3a9384aSR Sricharan #if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX)
24005e152c7SR Sricharan static struct map_desc omap54xx_io_desc[] __initdata = {
24105e152c7SR Sricharan 	{
24205e152c7SR Sricharan 		.virtual	= L3_54XX_VIRT,
24305e152c7SR Sricharan 		.pfn		= __phys_to_pfn(L3_54XX_PHYS),
24405e152c7SR Sricharan 		.length		= L3_54XX_SIZE,
24505e152c7SR Sricharan 		.type		= MT_DEVICE,
24605e152c7SR Sricharan 	},
24705e152c7SR Sricharan 	{
24805e152c7SR Sricharan 		.virtual	= L4_54XX_VIRT,
24905e152c7SR Sricharan 		.pfn		= __phys_to_pfn(L4_54XX_PHYS),
25005e152c7SR Sricharan 		.length		= L4_54XX_SIZE,
25105e152c7SR Sricharan 		.type		= MT_DEVICE,
25205e152c7SR Sricharan 	},
25305e152c7SR Sricharan 	{
25405e152c7SR Sricharan 		.virtual	= L4_WK_54XX_VIRT,
25505e152c7SR Sricharan 		.pfn		= __phys_to_pfn(L4_WK_54XX_PHYS),
25605e152c7SR Sricharan 		.length		= L4_WK_54XX_SIZE,
25705e152c7SR Sricharan 		.type		= MT_DEVICE,
25805e152c7SR Sricharan 	},
25905e152c7SR Sricharan 	{
26005e152c7SR Sricharan 		.virtual	= L4_PER_54XX_VIRT,
26105e152c7SR Sricharan 		.pfn		= __phys_to_pfn(L4_PER_54XX_PHYS),
26205e152c7SR Sricharan 		.length		= L4_PER_54XX_SIZE,
26305e152c7SR Sricharan 		.type		= MT_DEVICE,
26405e152c7SR Sricharan 	},
26505e152c7SR Sricharan };
26605e152c7SR Sricharan #endif
26705e152c7SR Sricharan 
26859b479e0STony Lindgren #ifdef CONFIG_SOC_OMAP2420
269b6a4226cSPaul Walmsley void __init omap242x_map_io(void)
2706fbd55d0STony Lindgren {
2716fbd55d0STony Lindgren 	iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
2726fbd55d0STony Lindgren 	iotable_init(omap242x_io_desc, ARRAY_SIZE(omap242x_io_desc));
2736fbd55d0STony Lindgren }
2746fbd55d0STony Lindgren #endif
2756fbd55d0STony Lindgren 
27659b479e0STony Lindgren #ifdef CONFIG_SOC_OMAP2430
277b6a4226cSPaul Walmsley void __init omap243x_map_io(void)
2786fbd55d0STony Lindgren {
2796fbd55d0STony Lindgren 	iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
2806fbd55d0STony Lindgren 	iotable_init(omap243x_io_desc, ARRAY_SIZE(omap243x_io_desc));
2816fbd55d0STony Lindgren }
2826fbd55d0STony Lindgren #endif
2836fbd55d0STony Lindgren 
284a8eb7ca0STony Lindgren #ifdef CONFIG_ARCH_OMAP3
285b6a4226cSPaul Walmsley void __init omap3_map_io(void)
2866fbd55d0STony Lindgren {
2876fbd55d0STony Lindgren 	iotable_init(omap34xx_io_desc, ARRAY_SIZE(omap34xx_io_desc));
2886fbd55d0STony Lindgren }
2896fbd55d0STony Lindgren #endif
2906fbd55d0STony Lindgren 
29133959553SKevin Hilman #ifdef CONFIG_SOC_TI81XX
292b6a4226cSPaul Walmsley void __init ti81xx_map_io(void)
29301001712SHemant Pedanekar {
294a920360fSHemant Pedanekar 	iotable_init(omapti81xx_io_desc, ARRAY_SIZE(omapti81xx_io_desc));
29501001712SHemant Pedanekar }
29601001712SHemant Pedanekar #endif
29701001712SHemant Pedanekar 
298addb154aSAfzal Mohammed #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
299b6a4226cSPaul Walmsley void __init am33xx_map_io(void)
3001e6cb146SAfzal Mohammed {
3011e6cb146SAfzal Mohammed 	iotable_init(omapam33xx_io_desc, ARRAY_SIZE(omapam33xx_io_desc));
3026fbd55d0STony Lindgren }
3036fbd55d0STony Lindgren #endif
3046fbd55d0STony Lindgren 
3056fbd55d0STony Lindgren #ifdef CONFIG_ARCH_OMAP4
306b6a4226cSPaul Walmsley void __init omap4_map_io(void)
3076fbd55d0STony Lindgren {
3086fbd55d0STony Lindgren 	iotable_init(omap44xx_io_desc, ARRAY_SIZE(omap44xx_io_desc));
309*f746929fSRussell King 	omap_barriers_init();
3106fbd55d0STony Lindgren }
3116fbd55d0STony Lindgren #endif
3126fbd55d0STony Lindgren 
313a3a9384aSR Sricharan #if defined(CONFIG_SOC_OMAP5) ||  defined(CONFIG_SOC_DRA7XX)
314b6a4226cSPaul Walmsley void __init omap5_map_io(void)
31505e152c7SR Sricharan {
31605e152c7SR Sricharan 	iotable_init(omap54xx_io_desc, ARRAY_SIZE(omap54xx_io_desc));
317*f746929fSRussell King 	omap_barriers_init();
31805e152c7SR Sricharan }
31905e152c7SR Sricharan #endif
3202f135eafSPaul Walmsley /*
3212f135eafSPaul Walmsley  * omap2_init_reprogram_sdrc - reprogram SDRC timing parameters
3222f135eafSPaul Walmsley  *
3232f135eafSPaul Walmsley  * Sets the CORE DPLL3 M2 divider to the same value that it's at
3242f135eafSPaul Walmsley  * currently.  This has the effect of setting the SDRC SDRAM AC timing
3252f135eafSPaul Walmsley  * registers to the values currently defined by the kernel.  Currently
3262f135eafSPaul Walmsley  * only defined for OMAP3; will return 0 if called on OMAP2.  Returns
3272f135eafSPaul Walmsley  * -EINVAL if the dpll3_m2_ck cannot be found, 0 if called on OMAP2,
3282f135eafSPaul Walmsley  * or passes along the return value of clk_set_rate().
3292f135eafSPaul Walmsley  */
3302f135eafSPaul Walmsley static int __init _omap2_init_reprogram_sdrc(void)
3312f135eafSPaul Walmsley {
3322f135eafSPaul Walmsley 	struct clk *dpll3_m2_ck;
3332f135eafSPaul Walmsley 	int v = -EINVAL;
3342f135eafSPaul Walmsley 	long rate;
3352f135eafSPaul Walmsley 
3362f135eafSPaul Walmsley 	if (!cpu_is_omap34xx())
3372f135eafSPaul Walmsley 		return 0;
3382f135eafSPaul Walmsley 
3392f135eafSPaul Walmsley 	dpll3_m2_ck = clk_get(NULL, "dpll3_m2_ck");
340e281f7ecSAaro Koskinen 	if (IS_ERR(dpll3_m2_ck))
3412f135eafSPaul Walmsley 		return -EINVAL;
3422f135eafSPaul Walmsley 
3432f135eafSPaul Walmsley 	rate = clk_get_rate(dpll3_m2_ck);
3442f135eafSPaul Walmsley 	pr_info("Reprogramming SDRC clock to %ld Hz\n", rate);
3452f135eafSPaul Walmsley 	v = clk_set_rate(dpll3_m2_ck, rate);
3462f135eafSPaul Walmsley 	if (v)
3472f135eafSPaul Walmsley 		pr_err("dpll3_m2_clk rate change failed: %d\n", v);
3482f135eafSPaul Walmsley 
3492f135eafSPaul Walmsley 	clk_put(dpll3_m2_ck);
3502f135eafSPaul Walmsley 
3512f135eafSPaul Walmsley 	return v;
3522f135eafSPaul Walmsley }
3532f135eafSPaul Walmsley 
3542092e5ccSPaul Walmsley static int _set_hwmod_postsetup_state(struct omap_hwmod *oh, void *data)
3552092e5ccSPaul Walmsley {
3562092e5ccSPaul Walmsley 	return omap_hwmod_set_postsetup_state(oh, *(u8 *)data);
3572092e5ccSPaul Walmsley }
3582092e5ccSPaul Walmsley 
3597b250affSTony Lindgren static void __init omap_hwmod_init_postsetup(void)
360120db2cbSTony Lindgren {
3612092e5ccSPaul Walmsley 	u8 postsetup_state;
3622092e5ccSPaul Walmsley 
3632092e5ccSPaul Walmsley 	/* Set the default postsetup state for all hwmods */
364bf7c5449SRafael J. Wysocki #ifdef CONFIG_PM
3652092e5ccSPaul Walmsley 	postsetup_state = _HWMOD_STATE_IDLE;
3662092e5ccSPaul Walmsley #else
3672092e5ccSPaul Walmsley 	postsetup_state = _HWMOD_STATE_ENABLED;
3682092e5ccSPaul Walmsley #endif
3692092e5ccSPaul Walmsley 	omap_hwmod_for_each(_set_hwmod_postsetup_state, &postsetup_state);
37055d2cb08SBenoit Cousson 
37153da4ce2SKevin Hilman 	omap_pm_if_early_init();
3724805734bSPaul Walmsley }
3734805734bSPaul Walmsley 
374069d0a78SArnd Bergmann static void __init __maybe_unused omap_common_late_init(void)
3754ed12be0SRuslan Bilovol {
3764ed12be0SRuslan Bilovol 	omap_mux_late_init();
3774ed12be0SRuslan Bilovol 	omap2_common_pm_late_init();
3786770b211SRuslan Bilovol 	omap_soc_device_init();
3794ed12be0SRuslan Bilovol }
3804ed12be0SRuslan Bilovol 
38116110798SPaul Walmsley #ifdef CONFIG_SOC_OMAP2420
3828f5b5a41STony Lindgren void __init omap2420_init_early(void)
3838f5b5a41STony Lindgren {
384b6a4226cSPaul Walmsley 	omap2_set_globals_tap(OMAP242X_CLASS, OMAP2_L4_IO_ADDRESS(0x48014000));
385b6a4226cSPaul Walmsley 	omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE),
386b6a4226cSPaul Walmsley 			       OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE));
3872208bf11STero Kristo 	omap2_control_base_init();
3884de34f35SVaibhav Hiremath 	omap2xxx_check_revision();
389ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
3907b250affSTony Lindgren 	omap2xxx_voltagedomains_init();
3917b250affSTony Lindgren 	omap242x_powerdomains_init();
3927b250affSTony Lindgren 	omap242x_clockdomains_init();
3937b250affSTony Lindgren 	omap2420_hwmod_init();
3947b250affSTony Lindgren 	omap_hwmod_init_postsetup();
39569a1e7a1STero Kristo 	omap_clk_soc_init = omap2420_dt_clk_init;
39669a1e7a1STero Kristo 	rate_table = omap2420_rate_table;
3978f5b5a41STony Lindgren }
398bbd707acSShawn Guo 
399bbd707acSShawn Guo void __init omap2420_init_late(void)
400bbd707acSShawn Guo {
4014ed12be0SRuslan Bilovol 	omap_common_late_init();
402bbd707acSShawn Guo 	omap2_pm_init();
40323fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
404bbd707acSShawn Guo }
40516110798SPaul Walmsley #endif
4068f5b5a41STony Lindgren 
40716110798SPaul Walmsley #ifdef CONFIG_SOC_OMAP2430
4088f5b5a41STony Lindgren void __init omap2430_init_early(void)
4098f5b5a41STony Lindgren {
410b6a4226cSPaul Walmsley 	omap2_set_globals_tap(OMAP243X_CLASS, OMAP2_L4_IO_ADDRESS(0x4900a000));
411b6a4226cSPaul Walmsley 	omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE),
412b6a4226cSPaul Walmsley 			       OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE));
4132208bf11STero Kristo 	omap2_control_base_init();
4144de34f35SVaibhav Hiremath 	omap2xxx_check_revision();
415ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
4167b250affSTony Lindgren 	omap2xxx_voltagedomains_init();
4177b250affSTony Lindgren 	omap243x_powerdomains_init();
4187b250affSTony Lindgren 	omap243x_clockdomains_init();
4197b250affSTony Lindgren 	omap2430_hwmod_init();
4207b250affSTony Lindgren 	omap_hwmod_init_postsetup();
42169a1e7a1STero Kristo 	omap_clk_soc_init = omap2430_dt_clk_init;
42269a1e7a1STero Kristo 	rate_table = omap2430_rate_table;
4237b250affSTony Lindgren }
424bbd707acSShawn Guo 
425bbd707acSShawn Guo void __init omap2430_init_late(void)
426bbd707acSShawn Guo {
4274ed12be0SRuslan Bilovol 	omap_common_late_init();
428bbd707acSShawn Guo 	omap2_pm_init();
42923fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
430bbd707acSShawn Guo }
431c4e2d245SSanjeev Premi #endif
4327b250affSTony Lindgren 
4337b250affSTony Lindgren /*
4347b250affSTony Lindgren  * Currently only board-omap3beagle.c should call this because of the
4357b250affSTony Lindgren  * same machine_id for 34xx and 36xx beagle.. Will get fixed with DT.
4367b250affSTony Lindgren  */
437c4e2d245SSanjeev Premi #ifdef CONFIG_ARCH_OMAP3
4387b250affSTony Lindgren void __init omap3_init_early(void)
4397b250affSTony Lindgren {
440b6a4226cSPaul Walmsley 	omap2_set_globals_tap(OMAP343X_CLASS, OMAP2_L4_IO_ADDRESS(0x4830A000));
441b6a4226cSPaul Walmsley 	omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE),
442b6a4226cSPaul Walmsley 			       OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE));
4432208bf11STero Kristo 	/* XXX: remove these once OMAP3 is DT only */
4442208bf11STero Kristo 	if (!of_have_populated_dt()) {
4452208bf11STero Kristo 		omap2_set_globals_control(
446efde2346STero Kristo 			OMAP2_L4_IO_ADDRESS(OMAP343X_CTRL_BASE));
447d9a16f9aSPaul Walmsley 		omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE));
4482208bf11STero Kristo 		omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE),
4492208bf11STero Kristo 				     NULL);
4502208bf11STero Kristo 	}
4512208bf11STero Kristo 	omap2_control_base_init();
4524de34f35SVaibhav Hiremath 	omap3xxx_check_revision();
4534de34f35SVaibhav Hiremath 	omap3xxx_check_features();
454ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
455425dc8b2STero Kristo 	/* XXX: remove these once OMAP3 is DT only */
456425dc8b2STero Kristo 	if (!of_have_populated_dt()) {
457ab7b2ffcSTero Kristo 		omap3xxx_prm_init(NULL);
458425dc8b2STero Kristo 		omap3xxx_cm_init(NULL);
459425dc8b2STero Kristo 	}
4607b250affSTony Lindgren 	omap3xxx_voltagedomains_init();
4617b250affSTony Lindgren 	omap3xxx_powerdomains_init();
4627b250affSTony Lindgren 	omap3xxx_clockdomains_init();
4637b250affSTony Lindgren 	omap3xxx_hwmod_init();
4647b250affSTony Lindgren 	omap_hwmod_init_postsetup();
465eded36feSTero Kristo 	if (!of_have_populated_dt()) {
4662208bf11STero Kristo 		omap3_control_legacy_iomap_init();
467eded36feSTero Kristo 		if (soc_is_am35xx())
468eded36feSTero Kristo 			omap_clk_soc_init = am35xx_clk_legacy_init;
469eded36feSTero Kristo 		else if (cpu_is_omap3630())
470eded36feSTero Kristo 			omap_clk_soc_init = omap36xx_clk_legacy_init;
471eded36feSTero Kristo 		else if (omap_rev() == OMAP3430_REV_ES1_0)
472eded36feSTero Kristo 			omap_clk_soc_init = omap3430es1_clk_legacy_init;
473eded36feSTero Kristo 		else
474eded36feSTero Kristo 			omap_clk_soc_init = omap3430_clk_legacy_init;
475eded36feSTero Kristo 	}
4768f5b5a41STony Lindgren }
4778f5b5a41STony Lindgren 
4788f5b5a41STony Lindgren void __init omap3430_init_early(void)
4798f5b5a41STony Lindgren {
4807b250affSTony Lindgren 	omap3_init_early();
4813e049157STero Kristo 	if (of_have_populated_dt())
4823e049157STero Kristo 		omap_clk_soc_init = omap3430_dt_clk_init;
4838f5b5a41STony Lindgren }
4848f5b5a41STony Lindgren 
4858f5b5a41STony Lindgren void __init omap35xx_init_early(void)
4868f5b5a41STony Lindgren {
4877b250affSTony Lindgren 	omap3_init_early();
4883e049157STero Kristo 	if (of_have_populated_dt())
4893e049157STero Kristo 		omap_clk_soc_init = omap3430_dt_clk_init;
4908f5b5a41STony Lindgren }
4918f5b5a41STony Lindgren 
4928f5b5a41STony Lindgren void __init omap3630_init_early(void)
4938f5b5a41STony Lindgren {
4947b250affSTony Lindgren 	omap3_init_early();
4953e049157STero Kristo 	if (of_have_populated_dt())
4963e049157STero Kristo 		omap_clk_soc_init = omap3630_dt_clk_init;
4978f5b5a41STony Lindgren }
4988f5b5a41STony Lindgren 
4998f5b5a41STony Lindgren void __init am35xx_init_early(void)
5008f5b5a41STony Lindgren {
5017b250affSTony Lindgren 	omap3_init_early();
5023e049157STero Kristo 	if (of_have_populated_dt())
5033e049157STero Kristo 		omap_clk_soc_init = am35xx_dt_clk_init;
5048f5b5a41STony Lindgren }
5058f5b5a41STony Lindgren 
506bbd707acSShawn Guo void __init omap3_init_late(void)
507bbd707acSShawn Guo {
5084ed12be0SRuslan Bilovol 	omap_common_late_init();
509bbd707acSShawn Guo 	omap3_pm_init();
51023fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
511bbd707acSShawn Guo }
512bbd707acSShawn Guo 
513bbd707acSShawn Guo void __init omap3430_init_late(void)
514bbd707acSShawn Guo {
5154ed12be0SRuslan Bilovol 	omap_common_late_init();
516bbd707acSShawn Guo 	omap3_pm_init();
51723fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
518bbd707acSShawn Guo }
519bbd707acSShawn Guo 
520bbd707acSShawn Guo void __init omap35xx_init_late(void)
521bbd707acSShawn Guo {
5224ed12be0SRuslan Bilovol 	omap_common_late_init();
523bbd707acSShawn Guo 	omap3_pm_init();
52423fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
525bbd707acSShawn Guo }
526bbd707acSShawn Guo 
527bbd707acSShawn Guo void __init omap3630_init_late(void)
528bbd707acSShawn Guo {
5294ed12be0SRuslan Bilovol 	omap_common_late_init();
530bbd707acSShawn Guo 	omap3_pm_init();
53123fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
532bbd707acSShawn Guo }
533bbd707acSShawn Guo 
534bbd707acSShawn Guo void __init am35xx_init_late(void)
535bbd707acSShawn Guo {
5364ed12be0SRuslan Bilovol 	omap_common_late_init();
537bbd707acSShawn Guo 	omap3_pm_init();
53823fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
539bbd707acSShawn Guo }
540bbd707acSShawn Guo 
541bbd707acSShawn Guo void __init ti81xx_init_late(void)
542bbd707acSShawn Guo {
5434ed12be0SRuslan Bilovol 	omap_common_late_init();
54423fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
545bbd707acSShawn Guo }
546c4e2d245SSanjeev Premi #endif
5478f5b5a41STony Lindgren 
548a64459c4SAida Mynzhasova #ifdef CONFIG_SOC_TI81XX
549a64459c4SAida Mynzhasova void __init ti814x_init_early(void)
550a64459c4SAida Mynzhasova {
551a64459c4SAida Mynzhasova 	omap2_set_globals_tap(TI814X_CLASS,
552a64459c4SAida Mynzhasova 			      OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE));
5532208bf11STero Kristo 	omap2_control_base_init();
554a64459c4SAida Mynzhasova 	omap3xxx_check_revision();
555a64459c4SAida Mynzhasova 	ti81xx_check_features();
556ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
557a64459c4SAida Mynzhasova 	omap3xxx_voltagedomains_init();
558a64459c4SAida Mynzhasova 	omap3xxx_powerdomains_init();
559a64459c4SAida Mynzhasova 	ti81xx_clockdomains_init();
5604d38bd12STony Lindgren 	ti81xx_hwmod_init();
561a64459c4SAida Mynzhasova 	omap_hwmod_init_postsetup();
562a64459c4SAida Mynzhasova 	if (of_have_populated_dt())
563a64459c4SAida Mynzhasova 		omap_clk_soc_init = ti81xx_dt_clk_init;
564a64459c4SAida Mynzhasova }
565a64459c4SAida Mynzhasova 
566a64459c4SAida Mynzhasova void __init ti816x_init_early(void)
567a64459c4SAida Mynzhasova {
568a64459c4SAida Mynzhasova 	omap2_set_globals_tap(TI816X_CLASS,
569a64459c4SAida Mynzhasova 			      OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE));
5702208bf11STero Kristo 	omap2_control_base_init();
571a64459c4SAida Mynzhasova 	omap3xxx_check_revision();
572a64459c4SAida Mynzhasova 	ti81xx_check_features();
573ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
574a64459c4SAida Mynzhasova 	omap3xxx_voltagedomains_init();
575a64459c4SAida Mynzhasova 	omap3xxx_powerdomains_init();
576a64459c4SAida Mynzhasova 	ti81xx_clockdomains_init();
5774d38bd12STony Lindgren 	ti81xx_hwmod_init();
578a64459c4SAida Mynzhasova 	omap_hwmod_init_postsetup();
579a64459c4SAida Mynzhasova 	if (of_have_populated_dt())
580a64459c4SAida Mynzhasova 		omap_clk_soc_init = ti81xx_dt_clk_init;
581a64459c4SAida Mynzhasova }
582a64459c4SAida Mynzhasova #endif
583a64459c4SAida Mynzhasova 
58408f30989SAfzal Mohammed #ifdef CONFIG_SOC_AM33XX
58508f30989SAfzal Mohammed void __init am33xx_init_early(void)
58608f30989SAfzal Mohammed {
587b6a4226cSPaul Walmsley 	omap2_set_globals_tap(AM335X_CLASS,
588b6a4226cSPaul Walmsley 			      AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE));
5892208bf11STero Kristo 	omap2_control_base_init();
59008f30989SAfzal Mohammed 	omap3xxx_check_revision();
5917bcad170SVaibhav Hiremath 	am33xx_check_features();
592ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
5933f0ea764SVaibhav Hiremath 	am33xx_powerdomains_init();
5949c80f3aaSVaibhav Hiremath 	am33xx_clockdomains_init();
595a2cfc509SVaibhav Hiremath 	am33xx_hwmod_init();
596a2cfc509SVaibhav Hiremath 	omap_hwmod_init_postsetup();
597149c09d3STero Kristo 	omap_clk_soc_init = am33xx_dt_clk_init;
59808f30989SAfzal Mohammed }
599765e7a06SNishanth Menon 
600765e7a06SNishanth Menon void __init am33xx_init_late(void)
601765e7a06SNishanth Menon {
602765e7a06SNishanth Menon 	omap_common_late_init();
603765e7a06SNishanth Menon }
60408f30989SAfzal Mohammed #endif
60508f30989SAfzal Mohammed 
606c5107027SAfzal Mohammed #ifdef CONFIG_SOC_AM43XX
607c5107027SAfzal Mohammed void __init am43xx_init_early(void)
608c5107027SAfzal Mohammed {
609c5107027SAfzal Mohammed 	omap2_set_globals_tap(AM335X_CLASS,
610c5107027SAfzal Mohammed 			      AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE));
6112208bf11STero Kristo 	omap2_control_base_init();
612c5107027SAfzal Mohammed 	omap3xxx_check_revision();
6137a2e0513SAfzal Mohammed 	am33xx_check_features();
614ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
6158835cf6eSAmbresh K 	am43xx_powerdomains_init();
6168835cf6eSAmbresh K 	am43xx_clockdomains_init();
6178835cf6eSAmbresh K 	am43xx_hwmod_init();
6188835cf6eSAmbresh K 	omap_hwmod_init_postsetup();
619d941f86fSSekhar Nori 	omap_l2_cache_init();
620d22031e2STero Kristo 	omap_clk_soc_init = am43xx_dt_clk_init;
621c5107027SAfzal Mohammed }
622765e7a06SNishanth Menon 
623765e7a06SNishanth Menon void __init am43xx_init_late(void)
624765e7a06SNishanth Menon {
625765e7a06SNishanth Menon 	omap_common_late_init();
626765e7a06SNishanth Menon }
627c5107027SAfzal Mohammed #endif
628c5107027SAfzal Mohammed 
629c4e2d245SSanjeev Premi #ifdef CONFIG_ARCH_OMAP4
6308f5b5a41STony Lindgren void __init omap4430_init_early(void)
6318f5b5a41STony Lindgren {
632b6a4226cSPaul Walmsley 	omap2_set_globals_tap(OMAP443X_CLASS,
633b6a4226cSPaul Walmsley 			      OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE));
634d9a16f9aSPaul Walmsley 	omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP4430_PRCM_MPU_BASE));
635ca125b5eSTero Kristo 	omap2_control_base_init();
6364de34f35SVaibhav Hiremath 	omap4xxx_check_revision();
6374de34f35SVaibhav Hiremath 	omap4xxx_check_features();
638ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
639de70af49SNishanth Menon 	omap4_pm_init_early();
6407b250affSTony Lindgren 	omap44xx_voltagedomains_init();
6417b250affSTony Lindgren 	omap44xx_powerdomains_init();
6427b250affSTony Lindgren 	omap44xx_clockdomains_init();
6437b250affSTony Lindgren 	omap44xx_hwmod_init();
6447b250affSTony Lindgren 	omap_hwmod_init_postsetup();
645b39b14e6SSekhar Nori 	omap_l2_cache_init();
646c8c88d85STero Kristo 	omap_clk_soc_init = omap4xxx_dt_clk_init;
6478f5b5a41STony Lindgren }
648bbd707acSShawn Guo 
649bbd707acSShawn Guo void __init omap4430_init_late(void)
650bbd707acSShawn Guo {
6514ed12be0SRuslan Bilovol 	omap_common_late_init();
652bbd707acSShawn Guo 	omap4_pm_init();
65323fb8ba3SRajendra Nayak 	omap2_clk_enable_autoidle_all();
654bbd707acSShawn Guo }
655c4e2d245SSanjeev Premi #endif
6568f5b5a41STony Lindgren 
65705e152c7SR Sricharan #ifdef CONFIG_SOC_OMAP5
65805e152c7SR Sricharan void __init omap5_init_early(void)
65905e152c7SR Sricharan {
660b6a4226cSPaul Walmsley 	omap2_set_globals_tap(OMAP54XX_CLASS,
661b6a4226cSPaul Walmsley 			      OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE));
662d9a16f9aSPaul Walmsley 	omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE));
663ca125b5eSTero Kristo 	omap2_control_base_init();
664628ed471SSantosh Shilimkar 	omap4_pm_init_early();
665ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
66605e152c7SR Sricharan 	omap5xxx_check_revision();
667e4020aa9SSantosh Shilimkar 	omap54xx_voltagedomains_init();
668e4020aa9SSantosh Shilimkar 	omap54xx_powerdomains_init();
669e4020aa9SSantosh Shilimkar 	omap54xx_clockdomains_init();
670e4020aa9SSantosh Shilimkar 	omap54xx_hwmod_init();
671e4020aa9SSantosh Shilimkar 	omap_hwmod_init_postsetup();
672cfa9667dSTero Kristo 	omap_clk_soc_init = omap5xxx_dt_clk_init;
67305e152c7SR Sricharan }
674765e7a06SNishanth Menon 
675765e7a06SNishanth Menon void __init omap5_init_late(void)
676765e7a06SNishanth Menon {
677765e7a06SNishanth Menon 	omap_common_late_init();
678628ed471SSantosh Shilimkar 	omap4_pm_init();
679628ed471SSantosh Shilimkar 	omap2_clk_enable_autoidle_all();
680765e7a06SNishanth Menon }
68105e152c7SR Sricharan #endif
68205e152c7SR Sricharan 
683a3a9384aSR Sricharan #ifdef CONFIG_SOC_DRA7XX
684a3a9384aSR Sricharan void __init dra7xx_init_early(void)
685a3a9384aSR Sricharan {
686a3a9384aSR Sricharan 	omap2_set_globals_tap(-1, OMAP2_L4_IO_ADDRESS(DRA7XX_TAP_BASE));
687a3a9384aSR Sricharan 	omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE));
688ca125b5eSTero Kristo 	omap2_control_base_init();
6896af16a1dSRajendra Nayak 	omap4_pm_init_early();
690ab7b2ffcSTero Kristo 	omap2_prcm_base_init();
691733d20eeSNishanth Menon 	dra7xxx_check_revision();
6927de516a6SAmbresh K 	dra7xx_powerdomains_init();
6937de516a6SAmbresh K 	dra7xx_clockdomains_init();
6947de516a6SAmbresh K 	dra7xx_hwmod_init();
6957de516a6SAmbresh K 	omap_hwmod_init_postsetup();
696f1cf498eSTero Kristo 	omap_clk_soc_init = dra7xx_dt_clk_init;
697a3a9384aSR Sricharan }
698765e7a06SNishanth Menon 
699765e7a06SNishanth Menon void __init dra7xx_init_late(void)
700765e7a06SNishanth Menon {
701765e7a06SNishanth Menon 	omap_common_late_init();
7026af16a1dSRajendra Nayak 	omap4_pm_init();
7036af16a1dSRajendra Nayak 	omap2_clk_enable_autoidle_all();
704765e7a06SNishanth Menon }
705a3a9384aSR Sricharan #endif
706a3a9384aSR Sricharan 
707a3a9384aSR Sricharan 
708a4ca9dbeSTony Lindgren void __init omap_sdrc_init(struct omap_sdrc_params *sdrc_cs0,
7094805734bSPaul Walmsley 				      struct omap_sdrc_params *sdrc_cs1)
7104805734bSPaul Walmsley {
711a66cb345STony Lindgren 	omap_sram_init();
712a66cb345STony Lindgren 
71301001712SHemant Pedanekar 	if (cpu_is_omap24xx() || omap3_has_sdrc()) {
71458cda884SJean Pihet 		omap2_sdrc_init(sdrc_cs0, sdrc_cs1);
7152f135eafSPaul Walmsley 		_omap2_init_reprogram_sdrc();
716aa4b1f6eSKevin Hilman 	}
7171dbae815STony Lindgren }
718cfa9667dSTero Kristo 
719cfa9667dSTero Kristo int __init omap_clk_init(void)
720cfa9667dSTero Kristo {
721cfa9667dSTero Kristo 	int ret = 0;
722cfa9667dSTero Kristo 
723cfa9667dSTero Kristo 	if (!omap_clk_soc_init)
724cfa9667dSTero Kristo 		return 0;
725cfa9667dSTero Kristo 
7268111e010STero Kristo 	ti_clk_init_features();
7278111e010STero Kristo 
728eded36feSTero Kristo 	if (of_have_populated_dt()) {
729fe87414fSTero Kristo 		ret = omap_control_init();
730fe87414fSTero Kristo 		if (ret)
731fe87414fSTero Kristo 			return ret;
732fe87414fSTero Kristo 
7333a1a388eSTero Kristo 		ret = omap_prcm_init();
734c08ee14cSTero Kristo 		if (ret)
735c08ee14cSTero Kristo 			return ret;
736c08ee14cSTero Kristo 
737c08ee14cSTero Kristo 		of_clk_init(NULL);
738c08ee14cSTero Kristo 
739c08ee14cSTero Kristo 		ti_dt_clk_init_retry_clks();
740c08ee14cSTero Kristo 
741c08ee14cSTero Kristo 		ti_dt_clockdomains_setup();
742eded36feSTero Kristo 	}
743c08ee14cSTero Kristo 
744cfa9667dSTero Kristo 	ret = omap_clk_soc_init();
745cfa9667dSTero Kristo 
746cfa9667dSTero Kristo 	return ret;
747cfa9667dSTero Kristo }
748