blob: ab9a7a9e9d643a8d7cb347d048ea43eb2dd1df5e [file] [log] [blame]
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +05301/*
Hemant Pedanekara890b672011-12-13 10:48:55 -08002 * Code for TI8168/TI8148 EVM.
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +05303 *
4 * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15#include <linux/kernel.h>
16#include <linux/init.h>
17
18#include <mach/hardware.h>
19#include <asm/mach-types.h>
20#include <asm/mach/arch.h>
21#include <asm/mach/map.h>
22
23#include <plat/irqs.h>
24#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010025#include "common.h"
Ravi Babuf36217f2011-12-13 10:50:59 -080026#include <plat/usb.h>
27
28static struct omap_musb_board_data musb_board_data = {
29 .set_phy_power = ti81xx_musb_phy_power,
30 .interface_type = MUSB_INTERFACE_ULPI,
31 .mode = MUSB_OTG,
32 .power = 500,
33};
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053034
Hemant Pedanekara890b672011-12-13 10:48:55 -080035static struct omap_board_config_kernel ti81xx_evm_config[] __initdata = {
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053036};
37
Hemant Pedanekara890b672011-12-13 10:48:55 -080038static void __init ti81xx_evm_init(void)
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053039{
40 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070041 omap_sdrc_init(NULL, NULL);
Hemant Pedanekara890b672011-12-13 10:48:55 -080042 omap_board_config = ti81xx_evm_config;
43 omap_board_config_size = ARRAY_SIZE(ti81xx_evm_config);
Ravi Babuf36217f2011-12-13 10:50:59 -080044 usb_musb_init(&musb_board_data);
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053045}
46
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053047MACHINE_START(TI8168EVM, "ti8168evm")
48 /* Maintainer: Texas Instruments */
Nicolas Pitre5e52b432011-07-05 22:38:15 -040049 .atag_offset = 0x100,
Hemant Pedanekara9203602011-12-13 10:46:44 -080050 .map_io = ti81xx_map_io,
51 .init_early = ti81xx_init_early,
52 .init_irq = ti81xx_init_irq,
Tony Lindgrene74984e2011-03-29 15:54:48 -070053 .timer = &omap3_timer,
Hemant Pedanekara890b672011-12-13 10:48:55 -080054 .init_machine = ti81xx_evm_init,
Arnd Bergmann421b7592012-01-09 17:06:36 +000055 .restart = omap_prcm_restart,
Hemant Pedanekara890b672011-12-13 10:48:55 -080056MACHINE_END
57
58MACHINE_START(TI8148EVM, "ti8148evm")
59 /* Maintainer: Texas Instruments */
60 .atag_offset = 0x100,
61 .map_io = ti81xx_map_io,
62 .init_early = ti81xx_init_early,
63 .init_irq = ti81xx_init_irq,
64 .timer = &omap3_timer,
65 .init_machine = ti81xx_evm_init,
Russell Kingbaa95882011-11-05 17:06:28 +000066 .restart = omap_prcm_restart,
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053067MACHINE_END