blob: c4f8833b4c3c66a7eaa433622be930e7f5833f97 [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
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053018#include <asm/mach-types.h>
19#include <asm/mach/arch.h>
20#include <asm/mach/map.h>
21
Tony Lindgren4e653312011-11-10 22:45:17 +010022#include "common.h"
Ravi Babuf36217f2011-12-13 10:50:59 -080023#include <plat/usb.h>
24
25static struct omap_musb_board_data musb_board_data = {
26 .set_phy_power = ti81xx_musb_phy_power,
27 .interface_type = MUSB_INTERFACE_ULPI,
28 .mode = MUSB_OTG,
29 .power = 500,
30};
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053031
Hemant Pedanekara890b672011-12-13 10:48:55 -080032static void __init ti81xx_evm_init(void)
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053033{
34 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070035 omap_sdrc_init(NULL, NULL);
Ravi Babuf36217f2011-12-13 10:50:59 -080036 usb_musb_init(&musb_board_data);
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053037}
38
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053039MACHINE_START(TI8168EVM, "ti8168evm")
40 /* Maintainer: Texas Instruments */
Nicolas Pitre5e52b432011-07-05 22:38:15 -040041 .atag_offset = 0x100,
Hemant Pedanekara9203602011-12-13 10:46:44 -080042 .map_io = ti81xx_map_io,
43 .init_early = ti81xx_init_early,
44 .init_irq = ti81xx_init_irq,
Tony Lindgrene74984e2011-03-29 15:54:48 -070045 .timer = &omap3_timer,
Hemant Pedanekara890b672011-12-13 10:48:55 -080046 .init_machine = ti81xx_evm_init,
Shawn Guobbd707a2012-04-26 16:06:50 +080047 .init_late = ti81xx_init_late,
Arnd Bergmann421b7592012-01-09 17:06:36 +000048 .restart = omap_prcm_restart,
Hemant Pedanekara890b672011-12-13 10:48:55 -080049MACHINE_END
50
51MACHINE_START(TI8148EVM, "ti8148evm")
52 /* Maintainer: Texas Instruments */
53 .atag_offset = 0x100,
54 .map_io = ti81xx_map_io,
55 .init_early = ti81xx_init_early,
56 .init_irq = ti81xx_init_irq,
57 .timer = &omap3_timer,
58 .init_machine = ti81xx_evm_init,
Shawn Guobbd707a2012-04-26 16:06:50 +080059 .init_late = ti81xx_init_late,
Russell Kingbaa95882011-11-05 17:06:28 +000060 .restart = omap_prcm_restart,
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053061MACHINE_END