]>
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 | ||
55e55fe4 ÁFR |
9 | /* ETH */ |
10 | #define CONFIG_PHY_RESET_DELAY 20 | |
11 | #define CONFIG_SYS_RX_ETH_BUFFER 6 | |
12 | ||
f530eb9e ÁFR |
13 | /* UART */ |
14 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \ | |
15 | 230400, 500000, 1500000 } | |
16 | ||
ee422142 ÁFR |
17 | /* Memory usage */ |
18 | #define CONFIG_SYS_MAXARGS 24 | |
55e55fe4 | 19 | #define CONFIG_SYS_MALLOC_LEN (2 * 1024 * 1024) |
ee422142 ÁFR |
20 | #define CONFIG_SYS_BOOTPARAMS_LEN (128 * 1024) |
21 | #define CONFIG_SYS_CBSIZE 512 | |
22 | ||
23 | /* U-Boot */ | |
24 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE | |
25 | ||
26 | #endif /* __CONFIG_BMIPS_COMMON_H */ |