mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
8ccf98b1cf
This converts the following to Kconfig: CONFIG_MISC_INIT_R Signed-off-by: Adam Ford <aford173@gmail.com> [trini: Update the defaults logic slightly] Signed-off-by: Tom Rini <trini@konsulko.com>
36 lines
807 B
C
36 lines
807 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
|
|
#define CONFIG_PHY_SMSC
|
|
|
|
/* UART */
|
|
#define CONFIG_MXC_UART_BASE UART4_BASE
|
|
#define CONSOLE_DEV "ttymxc3"
|
|
|
|
/* Watchdog */
|
|
#define CONFIG_HW_WATCHDOG
|
|
#define CONFIG_IMX_WATCHDOG
|
|
#define CONFIG_WATCHDOG_TIMEOUT_MSECS 60000
|
|
|
|
/* 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
|
|
|
|
#endif /* __CONFIG_TQMA6_WRU4_H */
|