blob: 981ca00d6e29b7abc79c0d7f15ae0d9c326998f8 [file] [log] [blame]
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +05301/*
2 * Code for TI8168 EVM.
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
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>
25#include <plat/common.h>
26
27static struct omap_board_config_kernel ti8168_evm_config[] __initdata = {
28};
29
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053030static void __init ti8168_evm_init(void)
31{
32 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070033 omap_sdrc_init(NULL, NULL);
Tony Lindgrene41cccf2011-02-24 14:36:03 -080034 omap_board_config = ti8168_evm_config;
35 omap_board_config_size = ARRAY_SIZE(ti8168_evm_config);
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053036}
37
38static void __init ti8168_evm_map_io(void)
39{
40 omap2_set_globals_ti816x();
41 omapti816x_map_common_io();
42}
43
44MACHINE_START(TI8168EVM, "ti8168evm")
45 /* Maintainer: Texas Instruments */
46 .boot_params = 0x80000100,
47 .map_io = ti8168_evm_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -070048 .init_early = ti816x_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -070049 .init_irq = ti816x_init_irq,
Tony Lindgrene74984e2011-03-29 15:54:48 -070050 .timer = &omap3_timer,
Hemant Pedanekar2c87fb22011-02-15 23:06:08 +053051 .init_machine = ti8168_evm_init,
52MACHINE_END