Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 1 | /* |
| 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> |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 25 | #include "common.h" |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 26 | |
| 27 | static struct omap_board_config_kernel ti8168_evm_config[] __initdata = { |
| 28 | }; |
| 29 | |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 30 | static void __init ti8168_evm_init(void) |
| 31 | { |
| 32 | omap_serial_init(); |
Tony Lindgren | a4ca9db | 2011-08-22 23:57:23 -0700 | [diff] [blame] | 33 | omap_sdrc_init(NULL, NULL); |
Tony Lindgren | e41cccf | 2011-02-24 14:36:03 -0800 | [diff] [blame] | 34 | omap_board_config = ti8168_evm_config; |
| 35 | omap_board_config_size = ARRAY_SIZE(ti8168_evm_config); |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | static void __init ti8168_evm_map_io(void) |
| 39 | { |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 40 | omapti816x_map_common_io(); |
| 41 | } |
| 42 | |
| 43 | MACHINE_START(TI8168EVM, "ti8168evm") |
| 44 | /* Maintainer: Texas Instruments */ |
Nicolas Pitre | 5e52b43 | 2011-07-05 22:38:15 -0400 | [diff] [blame] | 45 | .atag_offset = 0x100, |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 46 | .map_io = ti8168_evm_map_io, |
Tony Lindgren | 8f5b5a4 | 2011-08-22 23:57:24 -0700 | [diff] [blame] | 47 | .init_early = ti816x_init_early, |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 48 | .init_irq = ti816x_init_irq, |
Tony Lindgren | e74984e | 2011-03-29 15:54:48 -0700 | [diff] [blame] | 49 | .timer = &omap3_timer, |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 50 | .init_machine = ti8168_evm_init, |
Russell King | baa9588 | 2011-11-05 17:06:28 +0000 | [diff] [blame^] | 51 | .restart = omap_prcm_restart, |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 52 | MACHINE_END |