blob: b35e471bd95199370e0d0f0c9f22d8af948adcad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2015 Stefan Roese <[email protected]>
*/
#ifndef __CONFIG_TQMA6_WRU4_H
#define __CONFIG_TQMA6_WRU4_H
#include "tqma6.h"
/* Ethernet */
#define CFG_FEC_MXC_PHYADDR 0x01
/* UART */
#define CFG_MXC_UART_BASE UART4_BASE
#define CONSOLE_DEV "ttymxc3"
/* Watchdog */
/* Config on-board RTC */
#define CFG_SYS_I2C_RTC_ADDR 0x68
/* Turn off RTC square-wave output to save battery */
/* LED */
/* I2C */
#endif /* __CONFIG_TQMA6_WRU4_H */
|