summaryrefslogtreecommitdiff
path: root/board/freescale/mx6sabresd/mx6sabresd.c
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-06-05 10:56:30 +0800
committerYe.Li <B37916@freescale.com>2014-06-17 11:13:41 +0800
commit684958f4162c12b923636f97ce0c5a32747cc62b (patch)
treec084e518b69b149b73ed88408ab652c4e1ccccbf /board/freescale/mx6sabresd/mx6sabresd.c
parent28ae592dc9ec6611e5b7ced1fa4e08b8f930da0f (diff)
downloadu-boot-imx-684958f4162c12b923636f97ce0c5a32747cc62b.zip
u-boot-imx-684958f4162c12b923636f97ce0c5a32747cc62b.tar.gz
u-boot-imx-684958f4162c12b923636f97ce0c5a32747cc62b.tar.bz2
ENGR00315894-17 imx6q:sabresd/sabreauto: add SATA support
This patch adds the SATA support for i.mx6qsabresd and i.mx6qsabreauto board Signed-off-by: Jason Liu <r64343@freescale.com> Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board/freescale/mx6sabresd/mx6sabresd.c')
-rw-r--r--board/freescale/mx6sabresd/mx6sabresd.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c
index c4c451e..1350e9f 100644
--- a/board/freescale/mx6sabresd/mx6sabresd.c
+++ b/board/freescale/mx6sabresd/mx6sabresd.c
@@ -33,6 +33,9 @@
#include <i2c.h>
#include <asm/imx-common/mxc_i2c.h>
#endif
+#ifdef CONFIG_CMD_SATA
+#include <asm/imx-common/sata.h>
+#endif
#ifdef CONFIG_FASTBOOT
#include <fastboot.h>
#ifdef CONFIG_ANDROID_RECOVERY
@@ -753,6 +756,14 @@ int board_early_init_f(void)
setup_display();
#endif
+#ifdef CONFIG_SYS_USE_SPINOR
+ setup_spinor();
+#endif
+
+#ifdef CONFIG_CMD_SATA
+ setup_sata();
+#endif
+
return 0;
}
@@ -761,10 +772,6 @@ int board_init(void)
/* address of boot parameters */
gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
-#ifdef CONFIG_SYS_USE_SPINOR
- setup_spinor();
-#endif
-
#if defined(CONFIG_MX6DL) && defined(CONFIG_MXC_EPDC)
setup_epdc();
#endif