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_BOOTSTAGE 20 #define CONFIG_BOOTSTAGE_REPORT 21 22 /* Number of bits in a C 'long' on this architecture */ 23 #define CONFIG_SANDBOX_BITS_PER_LONG 64 24 25 #define CONFIG_OF_CONTROL 26 #define CONFIG_OF_HOSTFILE 27 #define CONFIG_OF_LIBFDT 28 #define CONFIG_LMB 29 #define CONFIG_FIT 30 #define CONFIG_FIT_SIGNATURE 31 #define CONFIG_RSA 32 #define CONFIG_CMD_FDT 33 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 41 #define CONFIG_SYS_VSNPRINTF 42 43 #define CONFIG_CMD_GPIO 44 #define CONFIG_SANDBOX_GPIO 45 #define CONFIG_SANDBOX_GPIO_COUNT 20 46 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_HUSH_PARSER 53 #define CONFIG_SYS_LONGHELP /* #undef to save memory */ 54 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 55 56 /* Print Buffer Size */ 57 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 58 #define CONFIG_SYS_MAXARGS 16 59 60 /* turn on command-line edit/c/auto */ 61 #define CONFIG_CMDLINE_EDITING 62 #define CONFIG_COMMAND_HISTORY 63 #define CONFIG_AUTO_COMPLETE 64 65 #define CONFIG_ENV_SIZE 8192 66 #define CONFIG_ENV_IS_NOWHERE 67 68 /* Memory things - we don't really want a memory test */ 69 #define CONFIG_SYS_LOAD_ADDR 0x00000000 70 #define CONFIG_SYS_MEMTEST_START 0x00100000 71 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) 72 #define CONFIG_PHYS_64BIT 73 #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000 74 75 /* Size of our emulated memory */ 76 #define CONFIG_SYS_SDRAM_BASE 0 77 #define CONFIG_SYS_SDRAM_SIZE (128 << 20) 78 #define CONFIG_SYS_TEXT_BASE 0 79 #define CONFIG_SYS_MONITOR_BASE 0 80 #define CONFIG_NR_DRAM_BANKS 1 81 82 #define CONFIG_BAUDRATE 115200 83 #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 84 115200} 85 #define CONFIG_SANDBOX_SERIAL 86 87 #define CONFIG_SYS_NO_FLASH 88 89 /* include default commands */ 90 #include <config_cmd_default.h> 91 92 /* We don't have networking support yet */ 93 #undef CONFIG_CMD_NET 94 #undef CONFIG_CMD_NFS 95 96 #define CONFIG_CMD_HASH 97 #define CONFIG_HASH_VERIFY 98 #define CONFIG_SHA1 99 #define CONFIG_SHA256 100 101 #define CONFIG_CMD_SANDBOX 102 103 #define CONFIG_BOOTARGS "" 104 105 #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \ 106 "stdout=serial\0" \ 107 "stderr=serial\0" 108 109 #define CONFIG_GZIP_COMPRESSED 110 #define CONFIG_BZIP2 111 #define CONFIG_LZO 112 #define CONFIG_LZMA 113 114 #endif 115