PRCM: OMAP3: Fix to wrongly modified omap2_clk_wait_ready
[linux-ginger.git] / arch / arm / mach-omap2 / board-omap3beagle.c
blobc992cc772552ca99b7f18a6746fb8dcd5d6bf2d1
1 /*
2 * linux/arch/arm/mach-omap2/board-omap3beagle.c
4 * Copyright (C) 2008 Texas Instruments
6 * Modified from mach-omap2/board-3430sdp.c
8 * Initial code: Syed Mohammed Khasim
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
21 #include <linux/io.h>
23 #include <asm/hardware.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
28 #include <asm/arch/gpio.h>
29 #include <asm/arch/board.h>
30 #include <asm/arch/usb-musb.h>
31 #include <asm/arch/usb-ehci.h>
32 #include <asm/arch/hsmmc.h>
33 #include <asm/arch/common.h>
35 static struct omap_uart_config omap3_beagle_uart_config __initdata = {
36 .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
39 static int __init omap3_beagle_i2c_init(void)
41 omap_register_i2c_bus(1, 2600, NULL, 0);
42 omap_register_i2c_bus(2, 400, NULL, 0);
43 omap_register_i2c_bus(3, 400, NULL, 0);
44 return 0;
47 static void __init omap3_beagle_init_irq(void)
49 omap2_init_common_hw();
50 omap_init_irq();
51 omap_gpio_init();
54 static struct omap_mmc_config omap3beagle_mmc_config __initdata = {
55 .mmc [0] = {
56 .enabled = 1,
57 .wire4 = 1,
61 static struct platform_device omap3_beagle_twl4030rtc_device = {
62 .name = "twl4030_rtc",
63 .id = -1,
66 static struct platform_device omap3_beagle_lcd_device = {
67 .name = "omap3beagle_lcd",
68 .id = -1,
71 static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
72 .ctrl_name = "internal",
75 static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
76 { OMAP_TAG_UART, &omap3_beagle_uart_config },
77 { OMAP_TAG_MMC, &omap3beagle_mmc_config },
78 { OMAP_TAG_LCD, &omap3_beagle_lcd_config },
81 static struct platform_device *omap3_beagle_devices[] __initdata = {
82 &omap3_beagle_lcd_device,
83 #ifdef CONFIG_RTC_DRV_TWL4030
84 &omap3_beagle_twl4030rtc_device,
85 #endif
88 static void __init omap3_beagle_init(void)
90 platform_add_devices(omap3_beagle_devices, ARRAY_SIZE(omap3_beagle_devices));
91 omap_board_config = omap3_beagle_config;
92 omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
93 omap_serial_init();
94 hsmmc_init();
95 usb_musb_init();
96 usb_ehci_init();
99 arch_initcall(omap3_beagle_i2c_init);
101 static void __init omap3_beagle_map_io(void)
103 omap2_set_globals_343x();
104 omap2_map_common_io();
107 MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
108 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
109 .phys_io = 0x48000000,
110 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
111 .boot_params = 0x80000100,
112 .map_io = omap3_beagle_map_io,
113 .init_irq = omap3_beagle_init_irq,
114 .init_machine = omap3_beagle_init,
115 .timer = &omap_timer,
116 MACHINE_END