xref: /openbmc/u-boot/include/configs/zc5601.h (revision 7d2a0534)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) Stefano Babic <sbabic@denx.de>
4  *
5  * Configuration settings for the E+L i.MX6Q DO82 board.
6  */
7 
8 #ifndef __EL_ZC5601_H
9 #define __EL_ZC5601_H
10 
11 
12 #define CONFIG_MXC_UART_BASE	UART2_BASE
13 #define CONSOLE_DEV		"ttymxc1"
14 #define CONFIG_MMCROOT			"/dev/mmcblk0p1"
15 
16 #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
17 
18 #include "el6x_common.h"
19 
20 /* Ethernet */
21 #define CONFIG_FEC_MXC
22 #define IMX_FEC_BASE				ENET_BASE_ADDR
23 #define CONFIG_FEC_XCV_TYPE			RGMII
24 #define CONFIG_ETHPRIME				"FEC"
25 #define CONFIG_FEC_MXC_PHYADDR			0x10
26 #define CONFIG_FEC_FIXED_SPEED			1000 /* No autoneg, fix Gb */
27 
28 #endif                         /*__EL6Q_CONFIG_H */
29