
Add SATA support.
Signed-off-by: Otavio Salvador otavio@ossystems.com.br ---
Changes in v3: - Proper initialize the subsystem
Changes in v2: None
board/congatec/cgtqmx6eval/cgtqmx6eval.c | 5 +++++ include/configs/cgtqmx6eval.h | 9 +++++++++ 2 files changed, 14 insertions(+)
diff --git a/board/congatec/cgtqmx6eval/cgtqmx6eval.c b/board/congatec/cgtqmx6eval/cgtqmx6eval.c index 4941416..9a81ecc 100644 --- a/board/congatec/cgtqmx6eval/cgtqmx6eval.c +++ b/board/congatec/cgtqmx6eval/cgtqmx6eval.c @@ -15,6 +15,7 @@ #include <asm/arch/mx6-pins.h> #include <asm/gpio.h> #include <asm/imx-common/iomux-v3.h> +#include <asm/imx-common/sata.h> #include <asm/imx-common/boot_mode.h> #include <asm/imx-common/mxc_i2c.h> #include <asm/arch/mxc_hdmi.h> @@ -675,6 +676,10 @@ int board_init(void)
setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
+#ifdef CONFIG_CMD_SATA + setup_sata(); +#endif + return 0; }
diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index c2a01bd..3ee1820 100644 --- a/include/configs/cgtqmx6eval.h +++ b/include/configs/cgtqmx6eval.h @@ -102,6 +102,15 @@ #endif #define CONFIG_IMX_HDMI
+/* SATA */ +#define CONFIG_CMD_SATA +#define CONFIG_DWC_AHSATA +#define CONFIG_SYS_SATA_MAX_DEVICE 1 +#define CONFIG_DWC_AHSATA_PORT_ID 0 +#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR +#define CONFIG_LBA48 +#define CONFIG_LIBATA + #define CONFIG_DEFAULT_FDT_FILE "imx6q-congatec.dtb"
#define CONFIG_EXTRA_ENV_SETTINGS \