From a7f480d92df8a7e525a4b619b09f40f73222647f Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Wed, 10 Feb 2016 11:41:26 +0100 Subject: arm: mx6: Add CCV xPress board support This patch add support for the CCV xPress board which is equipped with the i.MX6UL. And provides the following interfaces: - 128MiB DDR - UART - I2C - eMMC (with booting) - Ethernet - USB This patch adds two build targets. One with and one without SPL. The non-SPL version is used for loading U-Boot via USB (imx_usb_loader). Signed-off-by: Stefan Roese Cc: Fabio Estevam Cc: Stefano Babic --- configs/xpress_defconfig | 6 ++++++ configs/xpress_spl_defconfig | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 configs/xpress_defconfig create mode 100644 configs/xpress_spl_defconfig (limited to 'configs') diff --git a/configs/xpress_defconfig b/configs/xpress_defconfig new file mode 100644 index 0000000..033d32b --- /dev/null +++ b/configs/xpress_defconfig @@ -0,0 +1,6 @@ +CONFIG_ARM=y +CONFIG_ARCH_MX6=y +CONFIG_TARGET_XPRESS=y +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/ccv/xpress/imximage.cfg" +CONFIG_CMD_DHCP=y +CONFIG_CMD_PING=y diff --git a/configs/xpress_spl_defconfig b/configs/xpress_spl_defconfig new file mode 100644 index 0000000..c2b1075 --- /dev/null +++ b/configs/xpress_spl_defconfig @@ -0,0 +1,7 @@ +CONFIG_ARM=y +CONFIG_ARCH_MX6=y +CONFIG_TARGET_XPRESS=y +CONFIG_SPL=y +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/imx-common/spl_sd.cfg" +CONFIG_CMD_DHCP=y +CONFIG_CMD_PING=y -- cgit v1.1