xhci: Clean up 32-bit build warnings.
[zen-stable.git] / arch / arm / mach-omap2 / board-ti8168evm.c
blobe6ee8842285c00f9915e85f6b9b4d02ed00fb601
1 /*
2 * Code for TI8168 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>
18 #include <mach/hardware.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
23 #include <plat/irqs.h>
24 #include <plat/board.h>
25 #include <plat/common.h>
27 static struct omap_board_config_kernel ti8168_evm_config[] __initdata = {
30 static void __init ti8168_evm_init(void)
32 omap_serial_init();
33 omap_sdrc_init(NULL, NULL);
34 omap_board_config = ti8168_evm_config;
35 omap_board_config_size = ARRAY_SIZE(ti8168_evm_config);
38 static void __init ti8168_evm_map_io(void)
40 omapti816x_map_common_io();
43 MACHINE_START(TI8168EVM, "ti8168evm")
44 /* Maintainer: Texas Instruments */
45 .atag_offset = 0x100,
46 .map_io = ti8168_evm_map_io,
47 .init_early = ti816x_init_early,
48 .init_irq = ti816x_init_irq,
49 .timer = &omap3_timer,
50 .init_machine = ti8168_evm_init,
51 MACHINE_END