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_SYS_TIMER_RATE 1000000 20 21 #define CONFIG_BOOTSTAGE 22 #define CONFIG_BOOTSTAGE_REPORT 23 #define CONFIG_DM 24 #define CONFIG_DM_TEST 25 26 /* Number of bits in a C 'long' on this architecture */ 27 #define CONFIG_SANDBOX_BITS_PER_LONG 64 28 29 #define CONFIG_OF_CONTROL 30 #define CONFIG_OF_HOSTFILE 31 #define CONFIG_OF_LIBFDT 32 #define CONFIG_LMB 33 #define CONFIG_FIT 34 #define CONFIG_FIT_SIGNATURE 35 #define CONFIG_RSA 36 #define CONFIG_CMD_FDT 37 #define CONFIG_DEFAULT_DEVICE_TREE sandbox 38 39 #define CONFIG_FS_FAT 40 #define CONFIG_FS_EXT4 41 #define CONFIG_EXT4_WRITE 42 #define CONFIG_CMD_FAT 43 #define CONFIG_CMD_EXT4 44 #define CONFIG_CMD_EXT4_WRITE 45 #define CONFIG_CMD_PART 46 #define CONFIG_DOS_PARTITION 47 #define CONFIG_HOST_MAX_DEVICES 4 48 #define CONFIG_CMD_FS_GENERIC 49 50 #define CONFIG_SYS_VSNPRINTF 51 52 #define CONFIG_CMD_GPIO 53 #define CONFIG_SANDBOX_GPIO 54 #define CONFIG_SANDBOX_GPIO_COUNT 20 55 56 #define CONFIG_CMD_GPT 57 #define CONFIG_PARTITION_UUIDS 58 #define CONFIG_EFI_PARTITION 59 60 /* 61 * Size of malloc() pool, although we don't actually use this yet. 62 */ 63 #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */ 64 65 #define CONFIG_SYS_HUSH_PARSER 66 #define CONFIG_SYS_LONGHELP /* #undef to save memory */ 67 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 68 69 /* Print Buffer Size */ 70 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 71 #define CONFIG_SYS_MAXARGS 16 72 73 /* turn on command-line edit/c/auto */ 74 #define CONFIG_CMDLINE_EDITING 75 #define CONFIG_COMMAND_HISTORY 76 #define CONFIG_AUTO_COMPLETE 77 78 #define CONFIG_ENV_SIZE 8192 79 #define CONFIG_ENV_IS_NOWHERE 80 81 /* SPI */ 82 #define CONFIG_SANDBOX_SPI 83 #define CONFIG_CMD_SF 84 #define CONFIG_CMD_SF_TEST 85 #define CONFIG_CMD_SPI 86 #define CONFIG_SPI_FLASH 87 #define CONFIG_SPI_FLASH_SANDBOX 88 #define CONFIG_SPI_FLASH_STMICRO 89 #define CONFIG_SPI_FLASH_WINBOND 90 91 /* Memory things - we don't really want a memory test */ 92 #define CONFIG_SYS_LOAD_ADDR 0x00000000 93 #define CONFIG_SYS_MEMTEST_START 0x00100000 94 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) 95 #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000 96 97 /* Size of our emulated memory */ 98 #define CONFIG_SYS_SDRAM_BASE 0 99 #define CONFIG_SYS_SDRAM_SIZE (128 << 20) 100 #define CONFIG_SYS_TEXT_BASE 0 101 #define CONFIG_SYS_MONITOR_BASE 0 102 #define CONFIG_NR_DRAM_BANKS 1 103 104 #define CONFIG_BAUDRATE 115200 105 #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 106 115200} 107 #define CONFIG_SANDBOX_SERIAL 108 109 #define CONFIG_SYS_NO_FLASH 110 111 /* include default commands */ 112 #include <config_cmd_default.h> 113 114 /* We don't have networking support yet */ 115 #undef CONFIG_CMD_NET 116 #undef CONFIG_CMD_NFS 117 118 #define CONFIG_CMD_HASH 119 #define CONFIG_HASH_VERIFY 120 #define CONFIG_SHA1 121 #define CONFIG_SHA256 122 123 #define CONFIG_CMD_SANDBOX 124 125 #define CONFIG_BOOTARGS "" 126 127 #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \ 128 "stdout=serial\0" \ 129 "stderr=serial\0" 130 131 #define CONFIG_GZIP_COMPRESSED 132 #define CONFIG_BZIP2 133 #define CONFIG_LZO 134 #define CONFIG_LZMA 135 136 #define CONFIG_TPM_TIS_SANDBOX 137 138 #endif 139