1 /* 2 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __CONFIG_BMIPS_COMMON_H 8 #define __CONFIG_BMIPS_COMMON_H 9 10 /* RAM */ 11 #define CONFIG_SYS_MEMTEST_START 0xa0000000 12 #define CONFIG_SYS_MEMTEST_END 0xa2000000 13 14 /* Memory usage */ 15 #define CONFIG_SYS_MAXARGS 24 16 #define CONFIG_SYS_MALLOC_LEN (1024 * 1024) 17 #define CONFIG_SYS_BOOTPARAMS_LEN (128 * 1024) 18 #define CONFIG_SYS_CBSIZE 512 19 20 /* U-Boot */ 21 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE 22 23 #endif /* __CONFIG_BMIPS_COMMON_H */ 24