blob: 1edc56046b1201bee2b9b827029f6fd6f4d2da78 [file] [log] [blame]
Alexey Brodkin66712b82014-02-04 12:56:18 +04001/*
Alexey Brodkincc8be222016-08-04 14:35:01 +03002 * Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved.
Alexey Brodkin66712b82014-02-04 12:56:18 +04003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
Alexey Brodkincc8be222016-08-04 14:35:01 +03007#ifndef _CONFIG_NSIM_H_
8#define _CONFIG_NSIM_H_
9
10#include <linux/sizes.h>
Alexey Brodkin66712b82014-02-04 12:56:18 +040011
12/*
13 * CPU configuration
14 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040015#define CONFIG_SYS_TIMER_RATE CONFIG_SYS_CLK_FREQ
16
17/*
Alexey Brodkin66712b82014-02-04 12:56:18 +040018 * Memory configuration
19 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040020#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
21
22#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
23#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
Alexey Brodkincc8be222016-08-04 14:35:01 +030024#define CONFIG_SYS_SDRAM_SIZE SZ_256M
Alexey Brodkin66712b82014-02-04 12:56:18 +040025
26#define CONFIG_SYS_INIT_SP_ADDR \
27 (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
28
Alexey Brodkincc8be222016-08-04 14:35:01 +030029#define CONFIG_SYS_MALLOC_LEN SZ_2M
30#define CONFIG_SYS_BOOTM_LEN SZ_32M
Alexey Brodkin66712b82014-02-04 12:56:18 +040031#define CONFIG_SYS_LOAD_ADDR 0x82000000
32
33#define CONFIG_SYS_NO_FLASH
34
35/*
36 * UART configuration
37 *
38 */
39#define CONFIG_ARC_SERIAL
40#define CONFIG_ARC_UART_BASE 0xC0FC1000
41#define CONFIG_BAUDRATE 115200
42
43/*
44 * Command line configuration
45 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040046#define CONFIG_AUTO_COMPLETE
47#define CONFIG_SYS_MAXARGS 16
48
49/*
50 * Environment settings
51 */
52#define CONFIG_ENV_IS_NOWHERE
Alexey Brodkincc8be222016-08-04 14:35:01 +030053#define CONFIG_ENV_SIZE SZ_512
Alexey Brodkin66712b82014-02-04 12:56:18 +040054#define CONFIG_ENV_OFFSET 0
55
56/*
57 * Environment configuration
58 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040059#define CONFIG_BOOTFILE "uImage"
60#define CONFIG_BOOTARGS "console=ttyARC0,115200n8"
61#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
62
63/*
64 * Console configuration
65 */
66#define CONFIG_SYS_LONGHELP
Alexey Brodkincc8be222016-08-04 14:35:01 +030067#define CONFIG_SYS_CBSIZE SZ_256
Alexey Brodkin66712b82014-02-04 12:56:18 +040068#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
69#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
70 sizeof(CONFIG_SYS_PROMPT) + 16)
71
Alexey Brodkincc8be222016-08-04 14:35:01 +030072#endif /* _CONFIG_NSIM_H_ */