1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2014-2017 Broadcom.
4  */
5 
6 #ifndef __ARCH_CONFIGS_H
7 #define __ARCH_CONFIGS_H
8 
9 #include <asm/iproc-common/configs.h>
10 
11 /* uArchitecture specifics */
12 
13 /* Serial Info */
14 /* Post pad 3 bytes after each reg addr */
15 #define CONFIG_SYS_NS16550_REG_SIZE	(-4)
16 #define CONFIG_SYS_NS16550_MEM32
17 
18 #define CONFIG_SYS_NS16550_CLK		100000000
19 #define CONFIG_SYS_NS16550_CLK_DIV	54
20 #define CONFIG_SERIAL_MULTI
21 #define CONFIG_SYS_NS16550_COM3		0x18023000
22 
23 /* Ethernet */
24 #define CONFIG_PHY_BROADCOM
25 #define CONFIG_PHY_RESET_DELAY 10000 /* PHY reset delay in us*/
26 
27 #endif /* __ARCH_CONFIGS_H */
28