diff options
author | Roger Quadros <rogerq@ti.com> | 2013-11-11 16:56:44 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-04 08:12:36 -0500 |
commit | 21914ee62a62501354a84f234ad73e7a92c29ae1 (patch) | |
tree | b13d21d1385d144429fdd4c5f2f33dc5b8aaaa15 /board | |
parent | 5afded6a4c49edce971aca8e1a1df5dda7eeed01 (diff) | |
download | u-boot-imx-21914ee62a62501354a84f234ad73e7a92c29ae1.zip u-boot-imx-21914ee62a62501354a84f234ad73e7a92c29ae1.tar.gz u-boot-imx-21914ee62a62501354a84f234ad73e7a92c29ae1.tar.bz2 |
ARM: dra7_evm: Add SATA support
The evm has a SATA port. Enable SATA configuration and
inititialize the SATA controller.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/dra7xx/evm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 9657c75..9ae88c5 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -14,6 +14,7 @@ #include <palmas.h> #include <asm/arch/sys_proto.h> #include <asm/arch/mmc_host_def.h> +#include <asm/arch/sata.h> #include "mux_data.h" @@ -77,6 +78,12 @@ int board_init(void) return 0; } +int board_late_init(void) +{ + omap_sata_init(); + return 0; +} + /** * @brief misc_init_r - Configure EVM board specific configurations * such as power configurations, ethernet initialization as phase2 of |