blob: c086de6aa7d149a376d22790f322a0034cf8d55b [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/*
Alexey Brodkin66712b82014-02-04 12:56:18 +040013 * Memory configuration
14 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040015#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 Brodkincc8be222016-08-04 14:35:01 +030019#define CONFIG_SYS_SDRAM_SIZE SZ_256M
Alexey Brodkin66712b82014-02-04 12:56:18 +040020
21#define CONFIG_SYS_INIT_SP_ADDR \
22 (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
23
Alexey Brodkincc8be222016-08-04 14:35:01 +030024#define CONFIG_SYS_MALLOC_LEN SZ_2M
25#define CONFIG_SYS_BOOTM_LEN SZ_32M
Alexey Brodkin66712b82014-02-04 12:56:18 +040026#define CONFIG_SYS_LOAD_ADDR 0x82000000
27
Alexey Brodkin66712b82014-02-04 12:56:18 +040028/*
29 * UART configuration
30 *
31 */
32#define CONFIG_ARC_SERIAL
33#define CONFIG_ARC_UART_BASE 0xC0FC1000
Alexey Brodkin66712b82014-02-04 12:56:18 +040034
35/*
36 * Command line configuration
37 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040038#define CONFIG_AUTO_COMPLETE
Alexey Brodkin06bd1d72017-04-21 11:04:19 +030039#define CONFIG_CMDLINE_EDITING
Alexey Brodkin66712b82014-02-04 12:56:18 +040040
41/*
42 * Environment settings
43 */
Alexey Brodkincc8be222016-08-04 14:35:01 +030044#define CONFIG_ENV_SIZE SZ_512
Alexey Brodkin66712b82014-02-04 12:56:18 +040045#define CONFIG_ENV_OFFSET 0
46
47/*
48 * Environment configuration
49 */
Alexey Brodkin66712b82014-02-04 12:56:18 +040050#define CONFIG_BOOTFILE "uImage"
Alexey Brodkin66712b82014-02-04 12:56:18 +040051#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
52
53/*
54 * Console configuration
55 */
56#define CONFIG_SYS_LONGHELP
Alexey Brodkin66712b82014-02-04 12:56:18 +040057
Alexey Brodkincc8be222016-08-04 14:35:01 +030058#endif /* _CONFIG_NSIM_H_ */