mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
3146f0c017
Signed-off-by: Alexandru Gagniuc <alex.g@adaptrum.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
30 lines
715 B
C
30 lines
715 B
C
/*
|
|
* 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 CONSOLE_DEV "ttymxc1"
|
|
#define CONFIG_MMCROOT "/dev/mmcblk0p1"
|
|
|
|
#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_FEC_FIXED_SPEED 1000 /* No autoneg, fix Gb */
|
|
|
|
#endif /*__EL6Q_CONFIG_H */
|