2 * Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved.
4 * SPDX-License-Identifier: GPL-2.0+
7 #ifndef _CONFIG_NSIM_H_
8 #define _CONFIG_NSIM_H_
10 #include <linux/sizes.h>
13 * Memory configuration
15 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
17 #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
18 #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
19 #define CONFIG_SYS_SDRAM_SIZE SZ_256M
21 #define CONFIG_SYS_INIT_SP_ADDR \
22 (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
24 #define CONFIG_SYS_MALLOC_LEN SZ_2M
25 #define CONFIG_SYS_BOOTM_LEN SZ_32M
26 #define CONFIG_SYS_LOAD_ADDR 0x82000000
32 #define CONFIG_ARC_SERIAL
35 * Command line configuration
39 * Environment settings
41 #define CONFIG_ENV_SIZE SZ_512
42 #define CONFIG_ENV_OFFSET 0
45 * Environment configuration
47 #define CONFIG_BOOTFILE "uImage"
48 #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
51 * Console configuration
54 #endif /* _CONFIG_NSIM_H_ */