mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
cgtqmx6eval: Add SATA support
Add SATA support. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
6d551f2705
commit
6731bc8db4
2 changed files with 14 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
#include <asm/arch/mx6-pins.h>
|
#include <asm/arch/mx6-pins.h>
|
||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
#include <asm/imx-common/iomux-v3.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/boot_mode.h>
|
||||||
#include <asm/imx-common/mxc_i2c.h>
|
#include <asm/imx-common/mxc_i2c.h>
|
||||||
#include <asm/arch/mxc_hdmi.h>
|
#include <asm/arch/mxc_hdmi.h>
|
||||||
|
@ -450,6 +451,10 @@ int board_init(void)
|
||||||
|
|
||||||
setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
|
setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_SATA
|
||||||
|
setup_sata();
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -88,6 +88,15 @@
|
||||||
#endif
|
#endif
|
||||||
#define CONFIG_IMX_HDMI
|
#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_DEFAULT_FDT_FILE "imx6q-congatec.dtb"
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
|
|
Loading…
Reference in a new issue