ARM: OMAP2+: Introduce local usb.h
[deliverable/linux.git] / arch / arm / mach-omap2 / board-ti8168evm.c
CommitLineData
2c87fb2e 1/*
a890b676 2 * Code for TI8168/TI8148 EVM.
2c87fb2e
HP
3 *
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
2c87fb2e
HP
18#include <asm/mach-types.h>
19#include <asm/mach/arch.h>
20#include <asm/mach/map.h>
21
4e65331c 22#include "common.h"
f36217f3
RB
23
24static struct omap_musb_board_data musb_board_data = {
25 .set_phy_power = ti81xx_musb_phy_power,
26 .interface_type = MUSB_INTERFACE_ULPI,
27 .mode = MUSB_OTG,
28 .power = 500,
29};
2c87fb2e 30
a890b676 31static void __init ti81xx_evm_init(void)
2c87fb2e
HP
32{
33 omap_serial_init();
a4ca9dbe 34 omap_sdrc_init(NULL, NULL);
f36217f3 35 usb_musb_init(&musb_board_data);
2c87fb2e
HP
36}
37
2c87fb2e
HP
38MACHINE_START(TI8168EVM, "ti8168evm")
39 /* Maintainer: Texas Instruments */
5e52b435 40 .atag_offset = 0x100,
a920360f
HP
41 .map_io = ti81xx_map_io,
42 .init_early = ti81xx_init_early,
43 .init_irq = ti81xx_init_irq,
e74984e4 44 .timer = &omap3_timer,
a890b676 45 .init_machine = ti81xx_evm_init,
bbd707ac 46 .init_late = ti81xx_init_late,
421b759b 47 .restart = omap_prcm_restart,
a890b676
HP
48MACHINE_END
49
50MACHINE_START(TI8148EVM, "ti8148evm")
51 /* Maintainer: Texas Instruments */
52 .atag_offset = 0x100,
53 .map_io = ti81xx_map_io,
54 .init_early = ti81xx_init_early,
55 .init_irq = ti81xx_init_irq,
56 .timer = &omap3_timer,
57 .init_machine = ti81xx_evm_init,
bbd707ac 58 .init_late = ti81xx_init_late,
baa95883 59 .restart = omap_prcm_restart,
2c87fb2e 60MACHINE_END
This page took 0.117079 seconds and 5 git commands to generate.