1 /* 2 * Copyright (c) 2011 The Chromium OS Authors. 3 * SPDX-License-Identifier: GPL-2.0+ 4 */ 5 6 #ifndef __CONFIG_H 7 #define __CONFIG_H 8 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_IO_TRACE 20 #define CONFIG_CMD_IOTRACE 21 22 #define CONFIG_SYS_TIMER_RATE 1000000 23 24 #define CONFIG_BOOTSTAGE 25 #define CONFIG_BOOTSTAGE_REPORT 26 27 #define CONFIG_SYS_STDIO_DEREGISTER 28 29 /* Number of bits in a C 'long' on this architecture */ 30 #define CONFIG_SANDBOX_BITS_PER_LONG 64 31 32 #define CONFIG_OF_LIBFDT 33 #define CONFIG_LMB 34 #define CONFIG_CMD_FDT 35 #define CONFIG_ANDROID_BOOT_IMAGE 36 37 #define CONFIG_FS_FAT 38 #define CONFIG_FAT_WRITE 39 #define CONFIG_FS_EXT4 40 #define CONFIG_EXT4_WRITE 41 #define CONFIG_CMD_FAT 42 #define CONFIG_CMD_EXT4 43 #define CONFIG_CMD_EXT4_WRITE 44 #define CONFIG_CMD_PART 45 #define CONFIG_DOS_PARTITION 46 #define CONFIG_HOST_MAX_DEVICES 4 47 #define CONFIG_CMD_FS_GENERIC 48 #define CONFIG_CMD_MD5SUM 49 50 #define CONFIG_SYS_VSNPRINTF 51 52 #define CONFIG_CMD_GPIO 53 #define CONFIG_SANDBOX_GPIO 54 #define CONFIG_SANDBOX_GPIO_COUNT 128 55 56 #define CONFIG_CMD_GPT 57 #define CONFIG_PARTITION_UUIDS 58 #define CONFIG_EFI_PARTITION 59 60 /* 61 * Size of malloc() pool, before and after relocation 62 */ 63 #define CONFIG_SYS_MALLOC_F_LEN (1 << 10) 64 #define CONFIG_MALLOC_F_ADDR 0x0010000 65 #define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */ 66 67 #define CONFIG_SYS_HUSH_PARSER 68 #define CONFIG_SYS_LONGHELP /* #undef to save memory */ 69 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 70 71 /* Print Buffer Size */ 72 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 73 #define CONFIG_SYS_MAXARGS 16 74 75 /* turn on command-line edit/c/auto */ 76 #define CONFIG_CMDLINE_EDITING 77 #define CONFIG_COMMAND_HISTORY 78 #define CONFIG_AUTO_COMPLETE 79 #define CONFIG_BOOTDELAY 3 80 81 #define CONFIG_ENV_SIZE 8192 82 #define CONFIG_ENV_IS_NOWHERE 83 84 /* SPI - enable all SPI flash types for testing purposes */ 85 #define CONFIG_SANDBOX_SPI 86 #define CONFIG_CMD_SF 87 #define CONFIG_CMD_SF_TEST 88 #define CONFIG_CMD_SPI 89 #define CONFIG_SPI_FLASH 90 #define CONFIG_SPI_FLASH_ATMEL 91 #define CONFIG_SPI_FLASH_EON 92 #define CONFIG_SPI_FLASH_GIGADEVICE 93 #define CONFIG_SPI_FLASH_MACRONIX 94 #define CONFIG_SPI_FLASH_SANDBOX 95 #define CONFIG_SPI_FLASH_SPANSION 96 #define CONFIG_SPI_FLASH_SST 97 #define CONFIG_SPI_FLASH_STMICRO 98 #define CONFIG_SPI_FLASH_WINBOND 99 100 #define CONFIG_CMD_I2C 101 #define CONFIG_SYS_I2C_SANDBOX 102 #define CONFIG_I2C_EDID 103 #define CONFIG_I2C_EEPROM 104 105 /* Memory things - we don't really want a memory test */ 106 #define CONFIG_SYS_LOAD_ADDR 0x00000000 107 #define CONFIG_SYS_MEMTEST_START 0x00100000 108 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) 109 #define CONFIG_SYS_FDT_LOAD_ADDR 0x100 110 111 #define CONFIG_PHYSMEM 112 113 /* Size of our emulated memory */ 114 #define CONFIG_SYS_SDRAM_BASE 0 115 #define CONFIG_SYS_SDRAM_SIZE (128 << 20) 116 #define CONFIG_SYS_TEXT_BASE 0 117 #define CONFIG_SYS_MONITOR_BASE 0 118 #define CONFIG_NR_DRAM_BANKS 1 119 120 #define CONFIG_BAUDRATE 115200 121 #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 122 115200} 123 #define CONFIG_SANDBOX_SERIAL 124 125 #define CONFIG_SYS_NO_FLASH 126 127 /* include default commands */ 128 #include <config_cmd_default.h> 129 130 /* We don't have networking support yet */ 131 #undef CONFIG_CMD_NET 132 #undef CONFIG_CMD_NFS 133 134 #define CONFIG_CMD_HASH 135 #define CONFIG_HASH_VERIFY 136 #define CONFIG_SHA1 137 #define CONFIG_SHA256 138 139 #define CONFIG_TPM_TIS_SANDBOX 140 141 #define CONFIG_CMD_SANDBOX 142 143 #define CONFIG_BOOTARGS "" 144 145 #define CONFIG_CROS_EC 146 #define CONFIG_CMD_CROS_EC 147 #define CONFIG_CROS_EC_SANDBOX 148 #define CONFIG_ARCH_EARLY_INIT_R 149 #define CONFIG_BOARD_LATE_INIT 150 151 #define CONFIG_SOUND 152 #define CONFIG_SOUND_SANDBOX 153 #define CONFIG_CMD_SOUND 154 155 #ifndef SANDBOX_NO_SDL 156 #define CONFIG_SANDBOX_SDL 157 #endif 158 159 /* LCD and keyboard require SDL support */ 160 #ifdef CONFIG_SANDBOX_SDL 161 #define CONFIG_LCD 162 #define CONFIG_VIDEO_SANDBOX_SDL 163 #define CONFIG_CMD_BMP 164 #define CONFIG_BOARD_EARLY_INIT_F 165 #define CONFIG_CONSOLE_MUX 166 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 167 #define LCD_BPP LCD_COLOR16 168 #define CONFIG_LCD_BMP_RLE8 169 170 #define CONFIG_CROS_EC_KEYB 171 #define CONFIG_KEYBOARD 172 173 #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial,cros-ec-keyb\0" \ 174 "stdout=serial,lcd\0" \ 175 "stderr=serial,lcd\0" 176 #else 177 178 #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \ 179 "stdout=serial,lcd\0" \ 180 "stderr=serial,lcd\0" 181 #endif 182 183 #define CONFIG_GZIP_COMPRESSED 184 #define CONFIG_BZIP2 185 #define CONFIG_LZO 186 #define CONFIG_LZMA 187 188 #define CONFIG_TPM_TIS_SANDBOX 189 190 #define CONFIG_CMD_LZMADEC 191 192 #endif 193