]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
ee422142 ÁFR |
2 | /* |
3 | * Copyright (C) 2017 Álvaro Fernández Rojas <[email protected]> | |
ee422142 ÁFR |
4 | */ |
5 | ||
6 | #ifndef __CONFIG_BMIPS_COMMON_H | |
7 | #define __CONFIG_BMIPS_COMMON_H | |
8 | ||
55daf1c4 ÁFR |
9 | #include <linux/sizes.h> |
10 | ||
55e55fe4 ÁFR |
11 | /* ETH */ |
12 | #define CONFIG_PHY_RESET_DELAY 20 | |
13 | #define CONFIG_SYS_RX_ETH_BUFFER 6 | |
14 | ||
f530eb9e ÁFR |
15 | /* UART */ |
16 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \ | |
17 | 230400, 500000, 1500000 } | |
18 | ||
ee422142 ÁFR |
19 | /* Memory usage */ |
20 | #define CONFIG_SYS_MAXARGS 24 | |
55daf1c4 ÁFR |
21 | #define CONFIG_SYS_MALLOC_LEN SZ_2M |
22 | #define CONFIG_SYS_BOOTPARAMS_LEN SZ_128K | |
23 | #define CONFIG_SYS_CBSIZE SZ_512 | |
ee422142 ÁFR |
24 | |
25 | /* U-Boot */ | |
26 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE | |
27 | ||
28 | #endif /* __CONFIG_BMIPS_COMMON_H */ |