]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/blob - arch/arm/mach-omap2/io.c
ARM: OMAP2: Fix compillation error in cm_common
[can-eth-gw-linux.git] / arch / arm / mach-omap2 / io.c
1 /*
2  * linux/arch/arm/mach-omap2/io.c
3  *
4  * OMAP2 I/O mapping code
5  *
6  * Copyright (C) 2005 Nokia Corporation
7  * Copyright (C) 2007-2009 Texas Instruments
8  *
9  * Author:
10  *      Juha Yrjola <juha.yrjola@nokia.com>
11  *      Syed Khasim <x0khasim@ti.com>
12  *
13  * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License version 2 as
17  * published by the Free Software Foundation.
18  */
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/io.h>
23 #include <linux/clk.h>
24
25 #include <asm/tlb.h>
26 #include <asm/mach/map.h>
27
28 #include <plat-omap/dma-omap.h>
29
30 #include "../plat-omap/sram.h"
31
32 #include "omap_hwmod.h"
33 #include "soc.h"
34 #include "iomap.h"
35 #include "voltage.h"
36 #include "powerdomain.h"
37 #include "clockdomain.h"
38 #include "common.h"
39 #include "clock.h"
40 #include "clock2xxx.h"
41 #include "clock3xxx.h"
42 #include "clock44xx.h"
43 #include "omap-pm.h"
44 #include "sdrc.h"
45 #include "control.h"
46 #include "serial.h"
47 #include "cm2xxx.h"
48 #include "cm3xxx.h"
49 #include "prm.h"
50 #include "cm.h"
51 #include "prcm_mpu44xx.h"
52 #include "prminst44xx.h"
53 #include "cminst44xx.h"
54 /*
55  * The machine specific code may provide the extra mapping besides the
56  * default mapping provided here.
57  */
58
59 #if defined(CONFIG_SOC_OMAP2420) || defined(CONFIG_SOC_OMAP2430)
60 static struct map_desc omap24xx_io_desc[] __initdata = {
61         {
62                 .virtual        = L3_24XX_VIRT,
63                 .pfn            = __phys_to_pfn(L3_24XX_PHYS),
64                 .length         = L3_24XX_SIZE,
65                 .type           = MT_DEVICE
66         },
67         {
68                 .virtual        = L4_24XX_VIRT,
69                 .pfn            = __phys_to_pfn(L4_24XX_PHYS),
70                 .length         = L4_24XX_SIZE,
71                 .type           = MT_DEVICE
72         },
73 };
74
75 #ifdef CONFIG_SOC_OMAP2420
76 static struct map_desc omap242x_io_desc[] __initdata = {
77         {
78                 .virtual        = DSP_MEM_2420_VIRT,
79                 .pfn            = __phys_to_pfn(DSP_MEM_2420_PHYS),
80                 .length         = DSP_MEM_2420_SIZE,
81                 .type           = MT_DEVICE
82         },
83         {
84                 .virtual        = DSP_IPI_2420_VIRT,
85                 .pfn            = __phys_to_pfn(DSP_IPI_2420_PHYS),
86                 .length         = DSP_IPI_2420_SIZE,
87                 .type           = MT_DEVICE
88         },
89         {
90                 .virtual        = DSP_MMU_2420_VIRT,
91                 .pfn            = __phys_to_pfn(DSP_MMU_2420_PHYS),
92                 .length         = DSP_MMU_2420_SIZE,
93                 .type           = MT_DEVICE
94         },
95 };
96
97 #endif
98
99 #ifdef CONFIG_SOC_OMAP2430
100 static struct map_desc omap243x_io_desc[] __initdata = {
101         {
102                 .virtual        = L4_WK_243X_VIRT,
103                 .pfn            = __phys_to_pfn(L4_WK_243X_PHYS),
104                 .length         = L4_WK_243X_SIZE,
105                 .type           = MT_DEVICE
106         },
107         {
108                 .virtual        = OMAP243X_GPMC_VIRT,
109                 .pfn            = __phys_to_pfn(OMAP243X_GPMC_PHYS),
110                 .length         = OMAP243X_GPMC_SIZE,
111                 .type           = MT_DEVICE
112         },
113         {
114                 .virtual        = OMAP243X_SDRC_VIRT,
115                 .pfn            = __phys_to_pfn(OMAP243X_SDRC_PHYS),
116                 .length         = OMAP243X_SDRC_SIZE,
117                 .type           = MT_DEVICE
118         },
119         {
120                 .virtual        = OMAP243X_SMS_VIRT,
121                 .pfn            = __phys_to_pfn(OMAP243X_SMS_PHYS),
122                 .length         = OMAP243X_SMS_SIZE,
123                 .type           = MT_DEVICE
124         },
125 };
126 #endif
127 #endif
128
129 #ifdef  CONFIG_ARCH_OMAP3
130 static struct map_desc omap34xx_io_desc[] __initdata = {
131         {
132                 .virtual        = L3_34XX_VIRT,
133                 .pfn            = __phys_to_pfn(L3_34XX_PHYS),
134                 .length         = L3_34XX_SIZE,
135                 .type           = MT_DEVICE
136         },
137         {
138                 .virtual        = L4_34XX_VIRT,
139                 .pfn            = __phys_to_pfn(L4_34XX_PHYS),
140                 .length         = L4_34XX_SIZE,
141                 .type           = MT_DEVICE
142         },
143         {
144                 .virtual        = OMAP34XX_GPMC_VIRT,
145                 .pfn            = __phys_to_pfn(OMAP34XX_GPMC_PHYS),
146                 .length         = OMAP34XX_GPMC_SIZE,
147                 .type           = MT_DEVICE
148         },
149         {
150                 .virtual        = OMAP343X_SMS_VIRT,
151                 .pfn            = __phys_to_pfn(OMAP343X_SMS_PHYS),
152                 .length         = OMAP343X_SMS_SIZE,
153                 .type           = MT_DEVICE
154         },
155         {
156                 .virtual        = OMAP343X_SDRC_VIRT,
157                 .pfn            = __phys_to_pfn(OMAP343X_SDRC_PHYS),
158                 .length         = OMAP343X_SDRC_SIZE,
159                 .type           = MT_DEVICE
160         },
161         {
162                 .virtual        = L4_PER_34XX_VIRT,
163                 .pfn            = __phys_to_pfn(L4_PER_34XX_PHYS),
164                 .length         = L4_PER_34XX_SIZE,
165                 .type           = MT_DEVICE
166         },
167         {
168                 .virtual        = L4_EMU_34XX_VIRT,
169                 .pfn            = __phys_to_pfn(L4_EMU_34XX_PHYS),
170                 .length         = L4_EMU_34XX_SIZE,
171                 .type           = MT_DEVICE
172         },
173 #if defined(CONFIG_DEBUG_LL) &&                                                 \
174         (defined(CONFIG_MACH_OMAP_ZOOM2) || defined(CONFIG_MACH_OMAP_ZOOM3))
175         {
176                 .virtual        = ZOOM_UART_VIRT,
177                 .pfn            = __phys_to_pfn(ZOOM_UART_BASE),
178                 .length         = SZ_1M,
179                 .type           = MT_DEVICE
180         },
181 #endif
182 };
183 #endif
184
185 #ifdef CONFIG_SOC_TI81XX
186 static struct map_desc omapti81xx_io_desc[] __initdata = {
187         {
188                 .virtual        = L4_34XX_VIRT,
189                 .pfn            = __phys_to_pfn(L4_34XX_PHYS),
190                 .length         = L4_34XX_SIZE,
191                 .type           = MT_DEVICE
192         }
193 };
194 #endif
195
196 #ifdef CONFIG_SOC_AM33XX
197 static struct map_desc omapam33xx_io_desc[] __initdata = {
198         {
199                 .virtual        = L4_34XX_VIRT,
200                 .pfn            = __phys_to_pfn(L4_34XX_PHYS),
201                 .length         = L4_34XX_SIZE,
202                 .type           = MT_DEVICE
203         },
204         {
205                 .virtual        = L4_WK_AM33XX_VIRT,
206                 .pfn            = __phys_to_pfn(L4_WK_AM33XX_PHYS),
207                 .length         = L4_WK_AM33XX_SIZE,
208                 .type           = MT_DEVICE
209         }
210 };
211 #endif
212
213 #ifdef  CONFIG_ARCH_OMAP4
214 static struct map_desc omap44xx_io_desc[] __initdata = {
215         {
216                 .virtual        = L3_44XX_VIRT,
217                 .pfn            = __phys_to_pfn(L3_44XX_PHYS),
218                 .length         = L3_44XX_SIZE,
219                 .type           = MT_DEVICE,
220         },
221         {
222                 .virtual        = L4_44XX_VIRT,
223                 .pfn            = __phys_to_pfn(L4_44XX_PHYS),
224                 .length         = L4_44XX_SIZE,
225                 .type           = MT_DEVICE,
226         },
227         {
228                 .virtual        = L4_PER_44XX_VIRT,
229                 .pfn            = __phys_to_pfn(L4_PER_44XX_PHYS),
230                 .length         = L4_PER_44XX_SIZE,
231                 .type           = MT_DEVICE,
232         },
233 #ifdef CONFIG_OMAP4_ERRATA_I688
234         {
235                 .virtual        = OMAP4_SRAM_VA,
236                 .pfn            = __phys_to_pfn(OMAP4_SRAM_PA),
237                 .length         = PAGE_SIZE,
238                 .type           = MT_MEMORY_SO,
239         },
240 #endif
241
242 };
243 #endif
244
245 #ifdef  CONFIG_SOC_OMAP5
246 static struct map_desc omap54xx_io_desc[] __initdata = {
247         {
248                 .virtual        = L3_54XX_VIRT,
249                 .pfn            = __phys_to_pfn(L3_54XX_PHYS),
250                 .length         = L3_54XX_SIZE,
251                 .type           = MT_DEVICE,
252         },
253         {
254                 .virtual        = L4_54XX_VIRT,
255                 .pfn            = __phys_to_pfn(L4_54XX_PHYS),
256                 .length         = L4_54XX_SIZE,
257                 .type           = MT_DEVICE,
258         },
259         {
260                 .virtual        = L4_WK_54XX_VIRT,
261                 .pfn            = __phys_to_pfn(L4_WK_54XX_PHYS),
262                 .length         = L4_WK_54XX_SIZE,
263                 .type           = MT_DEVICE,
264         },
265         {
266                 .virtual        = L4_PER_54XX_VIRT,
267                 .pfn            = __phys_to_pfn(L4_PER_54XX_PHYS),
268                 .length         = L4_PER_54XX_SIZE,
269                 .type           = MT_DEVICE,
270         },
271 };
272 #endif
273
274 #ifdef CONFIG_SOC_OMAP2420
275 void __init omap242x_map_io(void)
276 {
277         iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
278         iotable_init(omap242x_io_desc, ARRAY_SIZE(omap242x_io_desc));
279 }
280 #endif
281
282 #ifdef CONFIG_SOC_OMAP2430
283 void __init omap243x_map_io(void)
284 {
285         iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
286         iotable_init(omap243x_io_desc, ARRAY_SIZE(omap243x_io_desc));
287 }
288 #endif
289
290 #ifdef CONFIG_ARCH_OMAP3
291 void __init omap3_map_io(void)
292 {
293         iotable_init(omap34xx_io_desc, ARRAY_SIZE(omap34xx_io_desc));
294 }
295 #endif
296
297 #ifdef CONFIG_SOC_TI81XX
298 void __init ti81xx_map_io(void)
299 {
300         iotable_init(omapti81xx_io_desc, ARRAY_SIZE(omapti81xx_io_desc));
301 }
302 #endif
303
304 #ifdef CONFIG_SOC_AM33XX
305 void __init am33xx_map_io(void)
306 {
307         iotable_init(omapam33xx_io_desc, ARRAY_SIZE(omapam33xx_io_desc));
308 }
309 #endif
310
311 #ifdef CONFIG_ARCH_OMAP4
312 void __init omap4_map_io(void)
313 {
314         iotable_init(omap44xx_io_desc, ARRAY_SIZE(omap44xx_io_desc));
315         omap_barriers_init();
316 }
317 #endif
318
319 #ifdef CONFIG_SOC_OMAP5
320 void __init omap5_map_io(void)
321 {
322         iotable_init(omap54xx_io_desc, ARRAY_SIZE(omap54xx_io_desc));
323 }
324 #endif
325 /*
326  * omap2_init_reprogram_sdrc - reprogram SDRC timing parameters
327  *
328  * Sets the CORE DPLL3 M2 divider to the same value that it's at
329  * currently.  This has the effect of setting the SDRC SDRAM AC timing
330  * registers to the values currently defined by the kernel.  Currently
331  * only defined for OMAP3; will return 0 if called on OMAP2.  Returns
332  * -EINVAL if the dpll3_m2_ck cannot be found, 0 if called on OMAP2,
333  * or passes along the return value of clk_set_rate().
334  */
335 static int __init _omap2_init_reprogram_sdrc(void)
336 {
337         struct clk *dpll3_m2_ck;
338         int v = -EINVAL;
339         long rate;
340
341         if (!cpu_is_omap34xx())
342                 return 0;
343
344         dpll3_m2_ck = clk_get(NULL, "dpll3_m2_ck");
345         if (IS_ERR(dpll3_m2_ck))
346                 return -EINVAL;
347
348         rate = clk_get_rate(dpll3_m2_ck);
349         pr_info("Reprogramming SDRC clock to %ld Hz\n", rate);
350         v = clk_set_rate(dpll3_m2_ck, rate);
351         if (v)
352                 pr_err("dpll3_m2_clk rate change failed: %d\n", v);
353
354         clk_put(dpll3_m2_ck);
355
356         return v;
357 }
358
359 static int _set_hwmod_postsetup_state(struct omap_hwmod *oh, void *data)
360 {
361         return omap_hwmod_set_postsetup_state(oh, *(u8 *)data);
362 }
363
364 static void __init omap_common_init_early(void)
365 {
366         omap_init_consistent_dma_size();
367 }
368
369 static void __init omap_hwmod_init_postsetup(void)
370 {
371         u8 postsetup_state;
372
373         /* Set the default postsetup state for all hwmods */
374 #ifdef CONFIG_PM_RUNTIME
375         postsetup_state = _HWMOD_STATE_IDLE;
376 #else
377         postsetup_state = _HWMOD_STATE_ENABLED;
378 #endif
379         omap_hwmod_for_each(_set_hwmod_postsetup_state, &postsetup_state);
380
381         omap_pm_if_early_init();
382 }
383
384 #ifdef CONFIG_SOC_OMAP2420
385 void __init omap2420_init_early(void)
386 {
387         omap2_set_globals_tap(OMAP242X_CLASS, OMAP2_L4_IO_ADDRESS(0x48014000));
388         omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE),
389                                OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE));
390         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP242X_CTRL_BASE),
391                                   NULL);
392         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP2420_PRM_BASE));
393         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP2420_CM_BASE), NULL);
394         omap2xxx_check_revision();
395         omap2xxx_cm_init();
396         omap_common_init_early();
397         omap2xxx_voltagedomains_init();
398         omap242x_powerdomains_init();
399         omap242x_clockdomains_init();
400         omap2420_hwmod_init();
401         omap_hwmod_init_postsetup();
402         omap2420_clk_init();
403 }
404
405 void __init omap2420_init_late(void)
406 {
407         omap_mux_late_init();
408         omap2_common_pm_late_init();
409         omap2_pm_init();
410 }
411 #endif
412
413 #ifdef CONFIG_SOC_OMAP2430
414 void __init omap2430_init_early(void)
415 {
416         omap2_set_globals_tap(OMAP243X_CLASS, OMAP2_L4_IO_ADDRESS(0x4900a000));
417         omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE),
418                                OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE));
419         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP243X_CTRL_BASE),
420                                   NULL);
421         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP2430_PRM_BASE));
422         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP2430_CM_BASE), NULL);
423         omap2xxx_check_revision();
424         omap2xxx_cm_init();
425         omap_common_init_early();
426         omap2xxx_voltagedomains_init();
427         omap243x_powerdomains_init();
428         omap243x_clockdomains_init();
429         omap2430_hwmod_init();
430         omap_hwmod_init_postsetup();
431         omap2430_clk_init();
432 }
433
434 void __init omap2430_init_late(void)
435 {
436         omap_mux_late_init();
437         omap2_common_pm_late_init();
438         omap2_pm_init();
439 }
440 #endif
441
442 /*
443  * Currently only board-omap3beagle.c should call this because of the
444  * same machine_id for 34xx and 36xx beagle.. Will get fixed with DT.
445  */
446 #ifdef CONFIG_ARCH_OMAP3
447 void __init omap3_init_early(void)
448 {
449         omap2_set_globals_tap(OMAP343X_CLASS, OMAP2_L4_IO_ADDRESS(0x4830A000));
450         omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE),
451                                OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE));
452         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP343X_CTRL_BASE),
453                                   NULL);
454         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE));
455         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE), NULL);
456         omap3xxx_check_revision();
457         omap3xxx_check_features();
458         omap3xxx_cm_init();
459         omap_common_init_early();
460         omap3xxx_voltagedomains_init();
461         omap3xxx_powerdomains_init();
462         omap3xxx_clockdomains_init();
463         omap3xxx_hwmod_init();
464         omap_hwmod_init_postsetup();
465         omap3xxx_clk_init();
466 }
467
468 void __init omap3430_init_early(void)
469 {
470         omap3_init_early();
471 }
472
473 void __init omap35xx_init_early(void)
474 {
475         omap3_init_early();
476 }
477
478 void __init omap3630_init_early(void)
479 {
480         omap3_init_early();
481 }
482
483 void __init am35xx_init_early(void)
484 {
485         omap3_init_early();
486 }
487
488 void __init ti81xx_init_early(void)
489 {
490         omap2_set_globals_tap(OMAP343X_CLASS,
491                               OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE));
492         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(TI81XX_CTRL_BASE),
493                                   NULL);
494         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE));
495         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE), NULL);
496         omap3xxx_check_revision();
497         ti81xx_check_features();
498         omap_common_init_early();
499         omap3xxx_voltagedomains_init();
500         omap3xxx_powerdomains_init();
501         omap3xxx_clockdomains_init();
502         omap3xxx_hwmod_init();
503         omap_hwmod_init_postsetup();
504         omap3xxx_clk_init();
505 }
506
507 void __init omap3_init_late(void)
508 {
509         omap_mux_late_init();
510         omap2_common_pm_late_init();
511         omap3_pm_init();
512 }
513
514 void __init omap3430_init_late(void)
515 {
516         omap_mux_late_init();
517         omap2_common_pm_late_init();
518         omap3_pm_init();
519 }
520
521 void __init omap35xx_init_late(void)
522 {
523         omap_mux_late_init();
524         omap2_common_pm_late_init();
525         omap3_pm_init();
526 }
527
528 void __init omap3630_init_late(void)
529 {
530         omap_mux_late_init();
531         omap2_common_pm_late_init();
532         omap3_pm_init();
533 }
534
535 void __init am35xx_init_late(void)
536 {
537         omap_mux_late_init();
538         omap2_common_pm_late_init();
539         omap3_pm_init();
540 }
541
542 void __init ti81xx_init_late(void)
543 {
544         omap_mux_late_init();
545         omap2_common_pm_late_init();
546         omap3_pm_init();
547 }
548 #endif
549
550 #ifdef CONFIG_SOC_AM33XX
551 void __init am33xx_init_early(void)
552 {
553         omap2_set_globals_tap(AM335X_CLASS,
554                               AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE));
555         omap2_set_globals_control(AM33XX_L4_WK_IO_ADDRESS(AM33XX_CTRL_BASE),
556                                   NULL);
557         omap2_set_globals_prm(AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE));
558         omap2_set_globals_cm(AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE), NULL);
559         omap3xxx_check_revision();
560         ti81xx_check_features();
561         omap_common_init_early();
562         am33xx_voltagedomains_init();
563         am33xx_powerdomains_init();
564         am33xx_clockdomains_init();
565         am33xx_hwmod_init();
566         omap_hwmod_init_postsetup();
567         am33xx_clk_init();
568 }
569 #endif
570
571 #ifdef CONFIG_ARCH_OMAP4
572 void __init omap4430_init_early(void)
573 {
574         omap2_set_globals_tap(OMAP443X_CLASS,
575                               OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE));
576         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE),
577                                   OMAP2_L4_IO_ADDRESS(OMAP443X_CTRL_BASE));
578         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP4430_PRM_BASE));
579         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP4430_CM_BASE),
580                              OMAP2_L4_IO_ADDRESS(OMAP4430_CM2_BASE));
581         omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP4430_PRCM_MPU_BASE));
582         omap_prm_base_init();
583         omap_cm_base_init();
584         omap4xxx_check_revision();
585         omap4xxx_check_features();
586         omap_common_init_early();
587         omap44xx_voltagedomains_init();
588         omap44xx_powerdomains_init();
589         omap44xx_clockdomains_init();
590         omap44xx_hwmod_init();
591         omap_hwmod_init_postsetup();
592         omap4xxx_clk_init();
593 }
594
595 void __init omap4430_init_late(void)
596 {
597         omap_mux_late_init();
598         omap2_common_pm_late_init();
599         omap4_pm_init();
600 }
601 #endif
602
603 #ifdef CONFIG_SOC_OMAP5
604 void __init omap5_init_early(void)
605 {
606         omap2_set_globals_tap(OMAP54XX_CLASS,
607                               OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE));
608         omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE),
609                                   OMAP2_L4_IO_ADDRESS(OMAP54XX_CTRL_BASE));
610         omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRM_BASE));
611         omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP54XX_CM_CORE_AON_BASE),
612                              OMAP2_L4_IO_ADDRESS(OMAP54XX_CM_CORE_BASE));
613         omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE));
614         omap_prm_base_init();
615         omap_cm_base_init();
616         omap5xxx_check_revision();
617         omap_common_init_early();
618 }
619 #endif
620
621 void __init omap_sdrc_init(struct omap_sdrc_params *sdrc_cs0,
622                                       struct omap_sdrc_params *sdrc_cs1)
623 {
624         omap_sram_init();
625
626         if (cpu_is_omap24xx() || omap3_has_sdrc()) {
627                 omap2_sdrc_init(sdrc_cs0, sdrc_cs1);
628                 _omap2_init_reprogram_sdrc();
629         }
630 }