aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-ti8168evm.c
diff options
context:
space:
mode:
authorHemant Pedanekar <hemantp@ti.com>2011-12-13 13:48:55 -0500
committerTony Lindgren <tony@atomide.com>2011-12-13 13:48:55 -0500
commita890b6760d975cdbdfcdf5753dab4c91059af9b1 (patch)
tree62ef6110ff34eec599be366f5aca93669e92eafa /arch/arm/mach-omap2/board-ti8168evm.c
parent95712de0ccd42d69623462e5d17cbd444f6fcccc (diff)
ARM: OMAP: TI814X: Create board support and enable build for TI8148 EVM
This patch adds minimal support and build configuration for TI8148 EVM. Also adds support for low level debugging on UART1 console on the EVM. Note that existing TI8168 EVM file (board-ti8168evm.c) is updated with machine info for TI8148 EVM. Signed-off-by: Hemant Pedanekar <hemantp@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-ti8168evm.c')
-rw-r--r--arch/arm/mach-omap2/board-ti8168evm.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/board-ti8168evm.c b/arch/arm/mach-omap2/board-ti8168evm.c
index b236fcc023ac..b3ca997a44fa 100644
--- a/arch/arm/mach-omap2/board-ti8168evm.c
+++ b/arch/arm/mach-omap2/board-ti8168evm.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Code for TI8168 EVM. 2 * Code for TI8168/TI8148 EVM.
3 * 3 *
4 * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/ 4 * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/
5 * 5 *
@@ -24,15 +24,15 @@
24#include <plat/board.h> 24#include <plat/board.h>
25#include "common.h" 25#include "common.h"
26 26
27static struct omap_board_config_kernel ti8168_evm_config[] __initdata = { 27static struct omap_board_config_kernel ti81xx_evm_config[] __initdata = {
28}; 28};
29 29
30static void __init ti8168_evm_init(void) 30static void __init ti81xx_evm_init(void)
31{ 31{
32 omap_serial_init(); 32 omap_serial_init();
33 omap_sdrc_init(NULL, NULL); 33 omap_sdrc_init(NULL, NULL);
34 omap_board_config = ti8168_evm_config; 34 omap_board_config = ti81xx_evm_config;
35 omap_board_config_size = ARRAY_SIZE(ti8168_evm_config); 35 omap_board_config_size = ARRAY_SIZE(ti81xx_evm_config);
36} 36}
37 37
38MACHINE_START(TI8168EVM, "ti8168evm") 38MACHINE_START(TI8168EVM, "ti8168evm")
@@ -42,5 +42,15 @@ MACHINE_START(TI8168EVM, "ti8168evm")
42 .init_early = ti81xx_init_early, 42 .init_early = ti81xx_init_early,
43 .init_irq = ti81xx_init_irq, 43 .init_irq = ti81xx_init_irq,
44 .timer = &omap3_timer, 44 .timer = &omap3_timer,
45 .init_machine = ti8168_evm_init, 45 .init_machine = ti81xx_evm_init,
46MACHINE_END
47
48MACHINE_START(TI8148EVM, "ti8148evm")
49 /* Maintainer: Texas Instruments */
50 .atag_offset = 0x100,
51 .map_io = ti81xx_map_io,
52 .init_early = ti81xx_init_early,
53 .init_irq = ti81xx_init_irq,
54 .timer = &omap3_timer,
55 .init_machine = ti81xx_evm_init,
46MACHINE_END 56MACHINE_END