1*be2fc084SPhilippe Reynes /* SPDX-License-Identifier: GPL-2.0+ */
2*be2fc084SPhilippe Reynes /*
3*be2fc084SPhilippe Reynes  * Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
4*be2fc084SPhilippe Reynes  */
5*be2fc084SPhilippe Reynes 
6*be2fc084SPhilippe Reynes #include <linux/sizes.h>
7*be2fc084SPhilippe Reynes 
8*be2fc084SPhilippe Reynes /*
9*be2fc084SPhilippe Reynes  * common
10*be2fc084SPhilippe Reynes  */
11*be2fc084SPhilippe Reynes 
12*be2fc084SPhilippe Reynes /* UART */
13*be2fc084SPhilippe Reynes #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200, \
14*be2fc084SPhilippe Reynes 					  230400, 500000, 1500000 }
15*be2fc084SPhilippe Reynes /* Memory usage */
16*be2fc084SPhilippe Reynes #define CONFIG_SYS_MAXARGS		24
17*be2fc084SPhilippe Reynes #define CONFIG_SYS_MALLOC_LEN		(1024 * 1024)
18*be2fc084SPhilippe Reynes #define CONFIG_SYS_BOOTM_LEN		(16 * 1024 * 1024)
19*be2fc084SPhilippe Reynes 
20*be2fc084SPhilippe Reynes /*
21*be2fc084SPhilippe Reynes  * 63158
22*be2fc084SPhilippe Reynes  */
23*be2fc084SPhilippe Reynes 
24*be2fc084SPhilippe Reynes /* RAM */
25*be2fc084SPhilippe Reynes #define CONFIG_SYS_SDRAM_BASE		0x00000000
26*be2fc084SPhilippe Reynes 
27*be2fc084SPhilippe Reynes /* U-Boot */
28*be2fc084SPhilippe Reynes #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_TEXT_BASE + SZ_16M)
29*be2fc084SPhilippe Reynes #define CONFIG_SYS_LOAD_ADDR		CONFIG_SYS_TEXT_BASE
30*be2fc084SPhilippe Reynes 
31*be2fc084SPhilippe Reynes #define CONFIG_SKIP_LOWLEVEL_INIT
32*be2fc084SPhilippe Reynes 
33*be2fc084SPhilippe Reynes /*
34*be2fc084SPhilippe Reynes  * bcm963158
35*be2fc084SPhilippe Reynes  */
36*be2fc084SPhilippe Reynes 
37*be2fc084SPhilippe Reynes #define CONFIG_ENV_SIZE			(8 * 1024)
38