Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 1 | /* |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 2 | * Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved. |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 7 | #ifndef _CONFIG_NSIM_H_ |
| 8 | #define _CONFIG_NSIM_H_ |
| 9 | |
| 10 | #include <linux/sizes.h> |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 11 | |
| 12 | /* |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 13 | * Memory configuration |
| 14 | */ |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 15 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
| 16 | |
| 17 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000 |
| 18 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 19 | #define CONFIG_SYS_SDRAM_SIZE SZ_256M |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 20 | |
| 21 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 22 | (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE) |
| 23 | |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 24 | #define CONFIG_SYS_MALLOC_LEN SZ_2M |
| 25 | #define CONFIG_SYS_BOOTM_LEN SZ_32M |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 26 | #define CONFIG_SYS_LOAD_ADDR 0x82000000 |
| 27 | |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 28 | /* |
| 29 | * UART configuration |
| 30 | * |
| 31 | */ |
| 32 | #define CONFIG_ARC_SERIAL |
| 33 | #define CONFIG_ARC_UART_BASE 0xC0FC1000 |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 34 | |
| 35 | /* |
| 36 | * Command line configuration |
| 37 | */ |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 38 | #define CONFIG_AUTO_COMPLETE |
| 39 | #define CONFIG_SYS_MAXARGS 16 |
Alexey Brodkin | 06bd1d7 | 2017-04-21 11:04:19 +0300 | [diff] [blame] | 40 | #define CONFIG_CMDLINE_EDITING |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * Environment settings |
| 44 | */ |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 45 | #define CONFIG_ENV_SIZE SZ_512 |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 46 | #define CONFIG_ENV_OFFSET 0 |
| 47 | |
| 48 | /* |
| 49 | * Environment configuration |
| 50 | */ |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 51 | #define CONFIG_BOOTFILE "uImage" |
| 52 | #define CONFIG_BOOTARGS "console=ttyARC0,115200n8" |
| 53 | #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR |
| 54 | |
| 55 | /* |
| 56 | * Console configuration |
| 57 | */ |
| 58 | #define CONFIG_SYS_LONGHELP |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 59 | #define CONFIG_SYS_CBSIZE SZ_256 |
Alexey Brodkin | 66712b8 | 2014-02-04 12:56:18 +0400 | [diff] [blame] | 60 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 61 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 62 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 63 | |
Alexey Brodkin | cc8be22 | 2016-08-04 14:35:01 +0300 | [diff] [blame] | 64 | #endif /* _CONFIG_NSIM_H_ */ |