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