2 * Code for TI8168/TI8148 EVM.
4 * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/
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.
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.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/usb/musb.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/arch.h>
22 #include <asm/mach/map.h>
26 static struct omap_musb_board_data musb_board_data
= {
27 .set_phy_power
= ti81xx_musb_phy_power
,
28 .interface_type
= MUSB_INTERFACE_ULPI
,
33 static void __init
ti81xx_evm_init(void)
36 omap_sdrc_init(NULL
, NULL
);
37 usb_musb_init(&musb_board_data
);
40 MACHINE_START(TI8168EVM
, "ti8168evm")
41 /* Maintainer: Texas Instruments */
43 .map_io
= ti81xx_map_io
,
44 .init_early
= ti81xx_init_early
,
45 .init_irq
= ti81xx_init_irq
,
46 .init_time
= omap3_sync32k_timer_init
,
47 .init_machine
= ti81xx_evm_init
,
48 .init_late
= ti81xx_init_late
,
49 .restart
= omap44xx_restart
,
52 MACHINE_START(TI8148EVM
, "ti8148evm")
53 /* Maintainer: Texas Instruments */
55 .map_io
= ti81xx_map_io
,
56 .init_early
= ti81xx_init_early
,
57 .init_irq
= ti81xx_init_irq
,
58 .init_time
= omap3_sync32k_timer_init
,
59 .init_machine
= ti81xx_evm_init
,
60 .init_late
= ti81xx_init_late
,
61 .restart
= omap44xx_restart
,