mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
306881a0bf
This converts the following to Kconfig: CONFIG_PHYLIB CONFIG_BITBANGMII CONFIG_MV88E6352_SWITCH CONFIG_MV88E61XX_SWITCH CONFIG_PHYLIB_10G CONFIG_PHY_AQUANTIA CONFIG_PHY_ATHEROS CONFIG_PHY_BROADCOM CONFIG_PHY_CORTINA CONFIG_PHY_DAVICOM CONFIG_PHY_ET1011C CONFIG_PHY_LXT CONFIG_PHY_MARVELL CONFIG_PHY_MICREL CONFIG_PHY_NATSEMI CONFIG_PHY_REALTEK CONFIG_RTL8211X_PHY_FORCE_MASTER CONFIG_PHY_SMSC CONFIG_PHY_TERANETICS CONFIG_PHY_TI CONFIG_PHY_VITESSE CONFIG_PHY_XILINX Signed-off-by: Tom Rini <trini@konsulko.com>
35 lines
718 B
C
35 lines
718 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2015 Stefan Roese <sr@denx.de>
|
|
*/
|
|
|
|
#ifndef __CONFIG_TQMA6_WRU4_H
|
|
#define __CONFIG_TQMA6_WRU4_H
|
|
|
|
/* Ethernet */
|
|
#define CONFIG_FEC_XCV_TYPE RMII
|
|
#define CONFIG_ETHPRIME "FEC"
|
|
#define CONFIG_FEC_MXC_PHYADDR 0x01
|
|
|
|
/* UART */
|
|
#define CONFIG_MXC_UART_BASE UART4_BASE
|
|
#define CONSOLE_DEV "ttymxc3"
|
|
|
|
/* Watchdog */
|
|
|
|
/* Config on-board RTC */
|
|
#define CONFIG_RTC_DS1337
|
|
#define CONFIG_SYS_RTC_BUS_NUM 2
|
|
#define CONFIG_SYS_I2C_RTC_ADDR 0x68
|
|
/* Turn off RTC square-wave output to save battery */
|
|
#define CONFIG_RTC_DS1337_NOOSC
|
|
|
|
/* LED */
|
|
|
|
/* Bootcounter */
|
|
#define CONFIG_SYS_BOOTCOUNT_BE
|
|
|
|
/* I2C */
|
|
#define CONFIG_SYS_I2C
|
|
|
|
#endif /* __CONFIG_TQMA6_WRU4_H */
|