diff options
author | Dan Murphy <dmurphy@ti.com> | 2014-02-03 06:59:02 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 10:47:45 -0500 |
commit | e9024ef27d0fc011ac36100c61dbd92025c96108 (patch) | |
tree | dd12ce62d45ea3050929d796f7bd117074da013d /arch/arm/cpu | |
parent | fff40a7e02092eee11970e7001c8560df419cac1 (diff) | |
download | u-boot-imx-e9024ef27d0fc011ac36100c61dbd92025c96108.zip u-boot-imx-e9024ef27d0fc011ac36100c61dbd92025c96108.tar.gz u-boot-imx-e9024ef27d0fc011ac36100c61dbd92025c96108.tar.bz2 |
ARM: O5/dra7xx: Add SATA boot support
Add the SATA boot support for OMAP5 and dra7xx.
Renamed the omap_sata_init to the common init_sata(int dev)
for commonality in with sata stack.
Added the ROM boot device ID for SATA.
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Reviewed-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/sata.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/sata.c b/arch/arm/cpu/armv7/omap-common/sata.c index f5468c4..cad4fee 100644 --- a/arch/arm/cpu/armv7/omap-common/sata.c +++ b/arch/arm/cpu/armv7/omap-common/sata.c @@ -12,6 +12,7 @@ #include <scsi.h> #include <asm/arch/clock.h> #include <asm/arch/sata.h> +#include <sata.h> #include <asm/io.h> #include "pipe3-phy.h" @@ -31,7 +32,7 @@ struct omap_pipe3 sata_phy = { .dpll_map = dpll_map_sata, }; -int omap_sata_init(void) +int init_sata(int dev) { int ret; u32 val; |