Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
Simon Glass | e2ee100 | 2013-06-11 11:14:44 -0700 | [diff] [blame] | 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 | |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 19 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 20 | #define CONFIG_IO_TRACE |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 21 | #endif |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 22 | |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 23 | #ifndef CONFIG_TIMER |
Rob Herring | 28c860b | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 24 | #define CONFIG_SYS_TIMER_RATE 1000000 |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 25 | #endif |
Rob Herring | 28c860b | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 26 | |
Simon Glass | 7b06b66 | 2012-02-15 15:51:12 -0800 | [diff] [blame] | 27 | #define CONFIG_LMB |
Simon Glass | 07c0cd7 | 2014-06-12 07:24:48 -0600 | [diff] [blame] | 28 | #define CONFIG_ANDROID_BOOT_IMAGE |
Simon Glass | 7b06b66 | 2012-02-15 15:51:12 -0800 | [diff] [blame] | 29 | |
Simon Glass | a33aca1 | 2015-03-05 12:25:30 -0700 | [diff] [blame] | 30 | #define CONFIG_CMD_PCI |
Simon Glass | a33aca1 | 2015-03-05 12:25:30 -0700 | [diff] [blame] | 31 | |
Simon Glass | 10fc121 | 2012-12-26 09:53:37 +0000 | [diff] [blame] | 32 | #define CONFIG_FS_FAT |
Suriyan Ramasami | 7944495 | 2014-11-17 14:39:34 -0800 | [diff] [blame] | 33 | #define CONFIG_FAT_WRITE |
Simon Glass | 10fc121 | 2012-12-26 09:53:37 +0000 | [diff] [blame] | 34 | #define CONFIG_FS_EXT4 |
| 35 | #define CONFIG_EXT4_WRITE |
Henrik Nordström | f4d8de4 | 2013-11-10 10:26:56 -0700 | [diff] [blame] | 36 | #define CONFIG_HOST_MAX_DEVICES 4 |
Simon Glass | 10fc121 | 2012-12-26 09:53:37 +0000 | [diff] [blame] | 37 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 38 | /* |
Simon Glass | b53e94b | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 39 | * Size of malloc() pool, before and after relocation |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 40 | */ |
Simon Glass | b53e94b | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 41 | #define CONFIG_MALLOC_F_ADDR 0x0010000 |
Simon Glass | 9f60442 | 2014-02-27 13:25:56 -0700 | [diff] [blame] | 42 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */ |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 43 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 44 | #define CONFIG_SYS_LONGHELP /* #undef to save memory */ |
| 45 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 46 | |
| 47 | /* Print Buffer Size */ |
| 48 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) |
| 49 | #define CONFIG_SYS_MAXARGS 16 |
| 50 | |
| 51 | /* turn on command-line edit/c/auto */ |
| 52 | #define CONFIG_CMDLINE_EDITING |
Mike Frysinger | ed0fc4b | 2011-10-26 00:19:58 +0000 | [diff] [blame] | 53 | #define CONFIG_AUTO_COMPLETE |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 54 | |
| 55 | #define CONFIG_ENV_SIZE 8192 |
| 56 | #define CONFIG_ENV_IS_NOWHERE |
| 57 | |
Simon Glass | 5e74934 | 2014-09-15 06:33:20 -0600 | [diff] [blame] | 58 | /* SPI - enable all SPI flash types for testing purposes */ |
Mike Frysinger | ca9a501 | 2013-12-03 16:43:28 -0700 | [diff] [blame] | 59 | #define CONFIG_CMD_SF_TEST |
Mike Frysinger | ca9a501 | 2013-12-03 16:43:28 -0700 | [diff] [blame] | 60 | |
Simon Glass | ac395f0 | 2014-12-10 08:55:52 -0700 | [diff] [blame] | 61 | #define CONFIG_I2C_EDID |
Simon Glass | ac395f0 | 2014-12-10 08:55:52 -0700 | [diff] [blame] | 62 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 63 | /* Memory things - we don't really want a memory test */ |
Simon Glass | ecdbf41 | 2013-02-24 20:29:23 +0000 | [diff] [blame] | 64 | #define CONFIG_SYS_LOAD_ADDR 0x00000000 |
| 65 | #define CONFIG_SYS_MEMTEST_START 0x00100000 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 66 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 67 | #define CONFIG_SYS_FDT_LOAD_ADDR 0x100 |
| 68 | |
| 69 | #define CONFIG_PHYSMEM |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 70 | |
| 71 | /* Size of our emulated memory */ |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 72 | #define CONFIG_SYS_SDRAM_BASE 0 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 73 | #define CONFIG_SYS_SDRAM_SIZE (128 << 20) |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 74 | #define CONFIG_SYS_TEXT_BASE 0 |
| 75 | #define CONFIG_SYS_MONITOR_BASE 0 |
| 76 | #define CONFIG_NR_DRAM_BANKS 1 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 77 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 78 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
| 79 | 115200} |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 80 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 81 | /* include default commands */ |
Sjoerd Simons | 791a9f6 | 2015-04-13 22:54:27 +0200 | [diff] [blame] | 82 | #include <config_distro_defaults.h> |
| 83 | |
| 84 | #define BOOT_TARGET_DEVICES(func) \ |
| 85 | func(HOST, host, 1) \ |
| 86 | func(HOST, host, 0) |
| 87 | |
Sjoerd Simons | ebaa832 | 2015-04-30 22:16:09 +0200 | [diff] [blame] | 88 | #define CONFIG_BOOTCOMMAND "" |
| 89 | |
Sjoerd Simons | 791a9f6 | 2015-04-13 22:54:27 +0200 | [diff] [blame] | 90 | #include <config_distro_bootcmd.h> |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 91 | |
Joe Hershberger | 1f5bc52 | 2015-04-08 01:41:25 -0500 | [diff] [blame] | 92 | #define CONFIG_KEEP_SERVERADDR |
| 93 | #define CONFIG_UDP_CHECKSUM |
Joe Hershberger | 1f5bc52 | 2015-04-08 01:41:25 -0500 | [diff] [blame] | 94 | #define CONFIG_TIMESTAMP |
Joe Hershberger | f3e0c37 | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 95 | #define CONFIG_BOOTP_DNS |
| 96 | #define CONFIG_BOOTP_DNS2 |
Joe Hershberger | f3e0c37 | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 97 | #define CONFIG_BOOTP_SEND_HOSTNAME |
| 98 | #define CONFIG_BOOTP_SERVERIP |
Joe Hershberger | f3e0c37 | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 99 | #define CONFIG_IP_DEFRAG |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 100 | |
Simon Glass | ecdbf41 | 2013-02-24 20:29:23 +0000 | [diff] [blame] | 101 | #define CONFIG_HASH_VERIFY |
Simon Glass | ecdbf41 | 2013-02-24 20:29:23 +0000 | [diff] [blame] | 102 | |
Simon Glass | e40753b | 2012-12-26 09:53:38 +0000 | [diff] [blame] | 103 | #define CONFIG_CMD_SANDBOX |
| 104 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 105 | #define CONFIG_BOOTARGS "" |
| 106 | |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 107 | #ifndef SANDBOX_NO_SDL |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 108 | #define CONFIG_SANDBOX_SDL |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 109 | #endif |
| 110 | |
| 111 | /* LCD and keyboard require SDL support */ |
| 112 | #ifdef CONFIG_SANDBOX_SDL |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 113 | #define LCD_BPP LCD_COLOR16 |
Simon Glass | 0156444 | 2014-10-15 04:53:04 -0600 | [diff] [blame] | 114 | #define CONFIG_LCD_BMP_RLE8 |
Simon Glass | 747440d | 2016-01-18 19:52:28 -0700 | [diff] [blame] | 115 | #define CONFIG_VIDEO_BMP_RLE8 |
| 116 | #define CONFIG_SPLASH_SCREEN_ALIGN |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 117 | |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 118 | #define CONFIG_KEYBOARD |
| 119 | |
Simon Glass | 460a717 | 2015-11-08 23:48:07 -0700 | [diff] [blame] | 120 | #define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \ |
Simon Glass | f1a1247 | 2016-01-21 19:44:51 -0700 | [diff] [blame] | 121 | "stdout=serial,vidconsole\0" \ |
| 122 | "stderr=serial,vidconsole\0" |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 123 | #else |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 124 | #define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \ |
Simon Glass | f1a1247 | 2016-01-21 19:44:51 -0700 | [diff] [blame] | 125 | "stdout=serial,vidconsole\0" \ |
| 126 | "stderr=serial,vidconsole\0" |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 127 | #endif |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 128 | |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 129 | #define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \ |
| 130 | "eth1addr=00:00:11:22:33:45\0" \ |
Bin Meng | 71d7971 | 2015-08-27 22:25:53 -0700 | [diff] [blame] | 131 | "eth3addr=00:00:11:22:33:46\0" \ |
| 132 | "eth5addr=00:00:11:22:33:47\0" \ |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 133 | "ipaddr=1.2.3.4\0" |
| 134 | |
Sjoerd Simons | 791a9f6 | 2015-04-13 22:54:27 +0200 | [diff] [blame] | 135 | #define MEM_LAYOUT_ENV_SETTINGS \ |
| 136 | "bootm_size=0x10000000\0" \ |
| 137 | "kernel_addr_r=0x1000000\0" \ |
| 138 | "fdt_addr_r=0xc00000\0" \ |
| 139 | "ramdisk_addr_r=0x2000000\0" \ |
| 140 | "scriptaddr=0x1000\0" \ |
| 141 | "pxefile_addr_r=0x2000\0" |
| 142 | |
| 143 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 144 | SANDBOX_SERIAL_SETTINGS \ |
| 145 | SANDBOX_ETH_SETTINGS \ |
| 146 | BOOTENV \ |
| 147 | MEM_LAYOUT_ENV_SETTINGS |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 148 | |
Kees Cook | 3153e91 | 2013-08-16 07:59:11 -0700 | [diff] [blame] | 149 | #define CONFIG_GZIP_COMPRESSED |
| 150 | #define CONFIG_BZIP2 |
| 151 | #define CONFIG_LZO |
Kees Cook | 3153e91 | 2013-08-16 07:59:11 -0700 | [diff] [blame] | 152 | |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 153 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 74c6dc1 | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 154 | #define CONFIG_SYS_IDE_MAXBUS 1 |
| 155 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0 |
| 156 | #define CONFIG_SYS_IDE_MAXDEVICE 2 |
| 157 | #define CONFIG_SYS_ATA_BASE_ADDR 0x100 |
| 158 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 159 | #define CONFIG_SYS_ATA_REG_OFFSET 1 |
| 160 | #define CONFIG_SYS_ATA_ALT_OFFSET 2 |
| 161 | #define CONFIG_SYS_ATA_STRIDE 4 |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 162 | #endif |
Simon Glass | 74c6dc1 | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 163 | |
Simon Glass | e8c0a25 | 2016-05-01 11:36:25 -0600 | [diff] [blame] | 164 | #define CONFIG_SCSI |
| 165 | #define CONFIG_SCSI_AHCI_PLAT |
| 166 | #define CONFIG_SYS_SCSI_MAX_DEVICE 2 |
| 167 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 8 |
| 168 | #define CONFIG_SYS_SCSI_MAX_LUN 4 |
| 169 | |
Simon Glass | 199a120 | 2016-05-01 11:36:27 -0600 | [diff] [blame] | 170 | #define CONFIG_CMD_SATA |
| 171 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 |
| 172 | |
Simon Glass | cd995a8 | 2016-05-01 11:36:32 -0600 | [diff] [blame] | 173 | #define CONFIG_SYSTEMACE |
| 174 | #define CONFIG_SYS_SYSTEMACE_WIDTH 16 |
| 175 | #define CONFIG_SYS_SYSTEMACE_BASE 0 |
| 176 | |
Simon Glass | 6896977 | 2017-03-28 10:27:28 -0600 | [diff] [blame] | 177 | #define CONFIG_MISC_INIT_F |
| 178 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 179 | #endif |