arc: hard-code CONFIG_ARCH_EARLY_INIT_R in asm/config.h
[platform/kernel/u-boot.git] / include / configs / arcangel4.h
1 /*
2  * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef _CONFIG_ARCANGEL4_H_
8 #define _CONFIG_ARCANGEL4_H_
9
10 /*
11  *  CPU configuration
12  */
13 #define CONFIG_SYS_TIMER_RATE           CONFIG_SYS_CLK_FREQ
14
15 /*
16  * Memory configuration
17  */
18 #define CONFIG_SYS_TEXT_BASE            0x81000000
19 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_TEXT_BASE
20
21 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000
22 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
23 #define CONFIG_SYS_SDRAM_SIZE           0x10000000      /* 256 Mb */
24
25 #define CONFIG_SYS_INIT_SP_ADDR         \
26         (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
27
28 #define CONFIG_SYS_MALLOC_LEN           0x200000        /* 2 MB */
29 #define CONFIG_SYS_BOOTM_LEN            0x2000000       /* 32 MB */
30 #define CONFIG_SYS_LOAD_ADDR            0x82000000
31
32 #define CONFIG_SYS_NO_FLASH
33
34 /*
35  * UART configuration
36  *
37  */
38 #define CONFIG_ARC_SERIAL
39 #define CONFIG_ARC_UART_BASE            0xC0FC1000
40 #define CONFIG_BAUDRATE                 115200
41
42 /*
43  * Command line configuration
44  */
45 #include <config_cmd_default.h>
46
47 #define CONFIG_CMD_ELF
48
49 #define CONFIG_OF_LIBFDT
50
51 #define CONFIG_AUTO_COMPLETE
52 #define CONFIG_SYS_MAXARGS              16
53
54 /*
55  * Environment settings
56  */
57 #define CONFIG_ENV_IS_NOWHERE
58 #define CONFIG_ENV_SIZE                 0x00200         /* 512 bytes */
59 #define CONFIG_ENV_OFFSET               0
60
61 /*
62  * Environment configuration
63  */
64 #define CONFIG_BOOTDELAY                3
65 #define CONFIG_BOOTFILE                 "uImage"
66 #define CONFIG_BOOTARGS                 "console=ttyARC0,115200n8"
67 #define CONFIG_LOADADDR                 CONFIG_SYS_LOAD_ADDR
68
69 /*
70  * Console configuration
71  */
72 #define CONFIG_SYS_LONGHELP
73 #define CONFIG_SYS_PROMPT               "arcangel4# "
74 #define CONFIG_SYS_CBSIZE               256
75 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
76 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
77                                                 sizeof(CONFIG_SYS_PROMPT) + 16)
78
79 #endif /* _CONFIG_ARCANGEL4_H_ */