mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
ea467ea1cd
This converts the following to Kconfig: CONFIG_RTC_DS1337 CONFIG_RTC_DS1337_NOOSC CONFIG_RTC_DS1338 CONFIG_RTC_DS1374 CONFIG_RTC_DS3231 CONFIG_RTC_MC13XXX CONFIG_RTC_MXS CONFIG_RTC_PT7C4338 Signed-off-by: Tom Rini <trini@konsulko.com>
27 lines
514 B
C
27 lines
514 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_MXC_PHYADDR 0x01
|
|
|
|
/* UART */
|
|
#define CONFIG_MXC_UART_BASE UART4_BASE
|
|
#define CONSOLE_DEV "ttymxc3"
|
|
|
|
/* Watchdog */
|
|
|
|
/* Config on-board RTC */
|
|
#define CFG_SYS_RTC_BUS_NUM 2
|
|
#define CFG_SYS_I2C_RTC_ADDR 0x68
|
|
/* Turn off RTC square-wave output to save battery */
|
|
|
|
/* LED */
|
|
|
|
/* I2C */
|
|
|
|
#endif /* __CONFIG_TQMA6_WRU4_H */
|