1*274bced8SJon Mason /* 2*274bced8SJon Mason * Configuration for Broadcom NS2. 3*274bced8SJon Mason * 4*274bced8SJon Mason * SPDX-License-Identifier: GPL-2.0+ 5*274bced8SJon Mason */ 6*274bced8SJon Mason 7*274bced8SJon Mason #ifndef __BCM_NORTHSTAR2_H 8*274bced8SJon Mason #define __BCM_NORTHSTAR2_H 9*274bced8SJon Mason 10*274bced8SJon Mason #include <linux/sizes.h> 11*274bced8SJon Mason 12*274bced8SJon Mason #define CONFIG_HOSTNAME northstar2 13*274bced8SJon Mason 14*274bced8SJon Mason /* Physical Memory Map */ 15*274bced8SJon Mason #define V2M_BASE 0x80000000 16*274bced8SJon Mason #define PHYS_SDRAM_1 V2M_BASE 17*274bced8SJon Mason 18*274bced8SJon Mason #define CONFIG_NR_DRAM_BANKS 2 19*274bced8SJon Mason #define PHYS_SDRAM_1_SIZE (4UL * SZ_1G) 20*274bced8SJon Mason #define PHYS_SDRAM_2_SIZE (4UL * SZ_1G) 21*274bced8SJon Mason #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 22*274bced8SJon Mason 23*274bced8SJon Mason /* define text_base for U-boot image */ 24*274bced8SJon Mason #define CONFIG_SYS_TEXT_BASE 0x85000000 25*274bced8SJon Mason #define CONFIG_SYS_INIT_SP_ADDR (PHYS_SDRAM_1 + 0x7ff00) 26*274bced8SJon Mason #define CONFIG_SYS_LOAD_ADDR 0x90000000 27*274bced8SJon Mason #define CONFIG_SYS_MALLOC_LEN SZ_16M 28*274bced8SJon Mason 29*274bced8SJon Mason /* Serial Configuration */ 30*274bced8SJon Mason #define CONFIG_SYS_NS16550_SERIAL 31*274bced8SJon Mason #define CONFIG_SYS_NS16550_REG_SIZE (-4) 32*274bced8SJon Mason #define CONFIG_SYS_NS16550_CLK 25000000 33*274bced8SJon Mason #define CONFIG_SYS_NS16550_COM1 0x66100000 34*274bced8SJon Mason #define CONFIG_SYS_NS16550_COM2 0x66110000 35*274bced8SJon Mason #define CONFIG_SYS_NS16550_COM3 0x66120000 36*274bced8SJon Mason #define CONFIG_SYS_NS16550_COM4 0x66130000 37*274bced8SJon Mason #define CONFIG_CONS_INDEX 4 38*274bced8SJon Mason #define CONFIG_BAUDRATE 115200 39*274bced8SJon Mason 40*274bced8SJon Mason #define CONFIG_ENV_SIZE SZ_8K 41*274bced8SJon Mason 42*274bced8SJon Mason /* console configuration */ 43*274bced8SJon Mason #define CONFIG_SYS_CBSIZE SZ_1K 44*274bced8SJon Mason #define CONFIG_SYS_MAXARGS 64 45*274bced8SJon Mason #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 46*274bced8SJon Mason 47*274bced8SJon Mason /* version string, parser, etc */ 48*274bced8SJon Mason #define CONFIG_CMDLINE_EDITING 49*274bced8SJon Mason #define CONFIG_SYS_LONGHELP 50*274bced8SJon Mason 51*274bced8SJon Mason #endif /* __BCM_NORTHSTAR2_H */ 52