diff options
author | Stefano Babic <sbabic@denx.de> | 2016-06-06 11:19:42 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-07-12 17:58:48 +0200 |
commit | 8be4f40ecfd92257007e82a08e25044b447db18d (patch) | |
tree | efab25348fa7248f2556a16e3f61093641dfb865 /include/configs/zc5601.h | |
parent | 0750701a3f74e831b6cb0ecc69be2f7eff94e819 (diff) | |
download | u-boot-8be4f40ecfd92257007e82a08e25044b447db18d.tar.gz |
mx6: add support for el6x board
Custom Board based on MX6 Dual, 1GB RAM and eMMC.
There are two variants of the board with and without
PCIe (ZC5202 and ZC5601).
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs/zc5601.h')
-rw-r--r-- | include/configs/zc5601.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/configs/zc5601.h b/include/configs/zc5601.h new file mode 100644 index 0000000000..28b9c6b4c7 --- /dev/null +++ b/include/configs/zc5601.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) Stefano Babic <sbabic@denx.de> + * + * Configuration settings for the E+L i.MX6Q DO82 board. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __EL_ZC5601_H +#define __EL_ZC5601_H + + +#define CONFIG_MXC_UART_BASE UART2_BASE +#define CONFIG_CONSOLE_DEV "ttymxc1" +#define CONFIG_MMCROOT "/dev/mmcblk0p1" + +#define CONFIG_DEFAULT_FDT_FILE "imx6q-zc5601.dtb" + +#define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */ + +#include "el6x_common.h" + +/* Ethernet */ +#define CONFIG_FEC_MXC +#define CONFIG_MII +#define IMX_FEC_BASE ENET_BASE_ADDR +#define CONFIG_FEC_XCV_TYPE RGMII +#define CONFIG_ETHPRIME "FEC" +#define CONFIG_FEC_MXC_PHYADDR 0x10 +#define CONFIG_PHYLIB +#define CONFIG_FEC_FIXED_SPEED 1000 /* No autoneg, fix Gb */ + +#endif /*__EL6Q_CONFIG_H */ |