]>
Commit | Line | Data |
---|---|---|
c861fbf7 SG |
1 | /* |
2 | * Copyright (c) 2011 The Chromium OS Authors. | |
1a459660 | 3 | * SPDX-License-Identifier: GPL-2.0+ |
c861fbf7 SG |
4 | */ |
5 | ||
6 | #ifndef __CONFIG_H | |
7 | #define __CONFIG_H | |
8 | ||
e2ee100f SG |
9 | #ifdef FTRACE |
10 | #define CONFIG_TRACE | |
11 | #define CONFIG_CMD_TRACE | |
12 | #define CONFIG_TRACE_BUFFER_SIZE (16 << 20) | |
13 | #define CONFIG_TRACE_EARLY_SIZE (8 << 20) | |
14 | #define CONFIG_TRACE_EARLY | |
15 | #define CONFIG_TRACE_EARLY_ADDR 0x00100000 | |
16 | ||
17 | #endif | |
18 | ||
19 | #define CONFIG_BOOTSTAGE | |
20 | #define CONFIG_BOOTSTAGE_REPORT | |
21 | ||
c861fbf7 SG |
22 | /* Number of bits in a C 'long' on this architecture */ |
23 | #define CONFIG_SANDBOX_BITS_PER_LONG 64 | |
24 | ||
7b06b66c | 25 | #define CONFIG_OF_CONTROL |
f828bf25 | 26 | #define CONFIG_OF_HOSTFILE |
7b06b66c SG |
27 | #define CONFIG_OF_LIBFDT |
28 | #define CONFIG_LMB | |
971020c7 | 29 | #define CONFIG_FIT |
74378cf8 SG |
30 | #define CONFIG_FIT_SIGNATURE |
31 | #define CONFIG_RSA | |
971020c7 | 32 | #define CONFIG_CMD_FDT |
7b06b66c | 33 | |
10fc1218 SG |
34 | #define CONFIG_FS_FAT |
35 | #define CONFIG_FS_EXT4 | |
36 | #define CONFIG_EXT4_WRITE | |
37 | #define CONFIG_CMD_FAT | |
38 | #define CONFIG_CMD_EXT4 | |
39 | #define CONFIG_CMD_EXT4_WRITE | |
40 | ||
7b06b66c SG |
41 | #define CONFIG_SYS_VSNPRINTF |
42 | ||
eef448e1 SG |
43 | #define CONFIG_CMD_GPIO |
44 | #define CONFIG_SANDBOX_GPIO | |
45 | #define CONFIG_SANDBOX_GPIO_COUNT 20 | |
46 | ||
c861fbf7 SG |
47 | /* |
48 | * Size of malloc() pool, although we don't actually use this yet. | |
49 | */ | |
50 | #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */ | |
51 | ||
52 | #define CONFIG_SYS_PROMPT "=>" /* Command Prompt */ | |
53 | #define CONFIG_SYS_HUSH_PARSER | |
c861fbf7 SG |
54 | #define CONFIG_SYS_LONGHELP /* #undef to save memory */ |
55 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ | |
56 | ||
57 | /* Print Buffer Size */ | |
58 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) | |
59 | #define CONFIG_SYS_MAXARGS 16 | |
60 | ||
61 | /* turn on command-line edit/c/auto */ | |
62 | #define CONFIG_CMDLINE_EDITING | |
63 | #define CONFIG_COMMAND_HISTORY | |
ed0fc4b1 | 64 | #define CONFIG_AUTO_COMPLETE |
c861fbf7 SG |
65 | |
66 | #define CONFIG_ENV_SIZE 8192 | |
67 | #define CONFIG_ENV_IS_NOWHERE | |
68 | ||
69 | #define CONFIG_SYS_HZ 1000 | |
70 | ||
71 | /* Memory things - we don't really want a memory test */ | |
ecdbf419 SG |
72 | #define CONFIG_SYS_LOAD_ADDR 0x00000000 |
73 | #define CONFIG_SYS_MEMTEST_START 0x00100000 | |
c861fbf7 SG |
74 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) |
75 | #define CONFIG_PHYS_64BIT | |
f828bf25 | 76 | #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000 |
c861fbf7 SG |
77 | |
78 | /* Size of our emulated memory */ | |
a733b06b | 79 | #define CONFIG_SYS_SDRAM_BASE 0 |
c861fbf7 | 80 | #define CONFIG_SYS_SDRAM_SIZE (128 << 20) |
a733b06b SG |
81 | #define CONFIG_SYS_TEXT_BASE 0 |
82 | #define CONFIG_SYS_MONITOR_BASE 0 | |
83 | #define CONFIG_NR_DRAM_BANKS 1 | |
c861fbf7 SG |
84 | |
85 | #define CONFIG_BAUDRATE 115200 | |
86 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ | |
87 | 115200} | |
88 | #define CONFIG_SANDBOX_SERIAL | |
89 | ||
90 | #define CONFIG_SYS_NO_FLASH | |
91 | ||
92 | /* include default commands */ | |
93 | #include <config_cmd_default.h> | |
94 | ||
95 | /* We don't have networking support yet */ | |
96 | #undef CONFIG_CMD_NET | |
97 | #undef CONFIG_CMD_NFS | |
98 | ||
ecdbf419 SG |
99 | #define CONFIG_CMD_HASH |
100 | #define CONFIG_HASH_VERIFY | |
101 | #define CONFIG_SHA1 | |
102 | #define CONFIG_SHA256 | |
103 | ||
e40753b2 SG |
104 | #define CONFIG_CMD_SANDBOX |
105 | ||
c861fbf7 SG |
106 | #define CONFIG_BOOTARGS "" |
107 | ||
108 | #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \ | |
109 | "stdout=serial\0" \ | |
110 | "stderr=serial\0" | |
111 | ||
112 | #endif |