diff options
author | Roger Quadros <rogerq@ti.com> | 2013-11-11 16:56:42 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-04 08:12:09 -0500 |
commit | afdc6321316ca5a6bfc7b916328f45ab4720007e (patch) | |
tree | b71367b34ab932942ee9a452548330a10a860730 /board/ti | |
parent | a087a7fb9238caecfe0b57c63ccc686ffbccefa7 (diff) | |
download | u-boot-afdc6321316ca5a6bfc7b916328f45ab4720007e.tar.gz u-boot-afdc6321316ca5a6bfc7b916328f45ab4720007e.tar.xz u-boot-afdc6321316ca5a6bfc7b916328f45ab4720007e.zip |
ARM: omap5_uevm: Add SATA support
The uevm has a SATA port. Inititialize the SATA controller.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/omap5_uevm/evm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c index bb3a699cf7..af854dac1a 100644 --- a/board/ti/omap5_uevm/evm.c +++ b/board/ti/omap5_uevm/evm.c @@ -20,6 +20,7 @@ #include <asm/arch/clock.h> #include <asm/arch/ehci.h> #include <asm/ehci-omap.h> +#include <asm/arch/sata.h> #define DIE_ID_REG_BASE (OMAP54XX_L4_CORE_BASE + 0x2000) #define DIE_ID_REG_OFFSET 0x200 @@ -67,6 +68,12 @@ int board_init(void) return 0; } +int board_late_init(void) +{ + omap_sata_init(); + return 0; +} + int board_eth_init(bd_t *bis) { return 0; |