Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
Simon Glass | e7f1eb5 | 2013-06-11 11:14:44 -0700 | [diff] [blame] | 9 | #ifdef FTRACE |
| 10 | #define CONFIG_TRACE |
Simon Glass | ad0bcb1 | 2019-04-08 13:20:53 -0600 | [diff] [blame^] | 11 | #define CONFIG_CMD_TRACE |
Simon Glass | e7f1eb5 | 2013-06-11 11:14:44 -0700 | [diff] [blame] | 12 | #define CONFIG_TRACE_BUFFER_SIZE (16 << 20) |
Simon Glass | 171bb99 | 2019-04-08 13:20:46 -0600 | [diff] [blame] | 13 | #define CONFIG_TRACE_EARLY_SIZE (16 << 20) |
Simon Glass | e7f1eb5 | 2013-06-11 11:14:44 -0700 | [diff] [blame] | 14 | #define CONFIG_TRACE_EARLY |
| 15 | #define CONFIG_TRACE_EARLY_ADDR 0x00100000 |
Simon Glass | e7f1eb5 | 2013-06-11 11:14:44 -0700 | [diff] [blame] | 16 | #endif |
| 17 | |
Simon Glass | 1a4742c | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 18 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 125a27b | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 19 | #define CONFIG_IO_TRACE |
Simon Glass | 1a4742c | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 20 | #endif |
Simon Glass | 125a27b | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 21 | |
Thomas Chou | 7b059dc | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 22 | #ifndef CONFIG_TIMER |
Rob Herring | 86bd4e8 | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 23 | #define CONFIG_SYS_TIMER_RATE 1000000 |
Thomas Chou | 7b059dc | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 24 | #endif |
Rob Herring | 86bd4e8 | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 25 | |
Simon Glass | 827116f | 2012-02-15 15:51:12 -0800 | [diff] [blame] | 26 | #define CONFIG_LMB |
| 27 | |
Henrik Nordström | 26f9a6c | 2013-11-10 10:26:56 -0700 | [diff] [blame] | 28 | #define CONFIG_HOST_MAX_DEVICES 4 |
Simon Glass | eb4cecd | 2012-12-26 09:53:37 +0000 | [diff] [blame] | 29 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 30 | /* |
Simon Glass | c757cb0 | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 31 | * Size of malloc() pool, before and after relocation |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 32 | */ |
Simon Glass | c757cb0 | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 33 | #define CONFIG_MALLOC_F_ADDR 0x0010000 |
Simon Glass | 7b89a1b | 2014-02-27 13:25:56 -0700 | [diff] [blame] | 34 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */ |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 35 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 36 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 37 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 38 | /* turn on command-line edit/c/auto */ |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 39 | |
| 40 | #define CONFIG_ENV_SIZE 8192 |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 41 | |
Simon Glass | 1f21d48 | 2014-09-15 06:33:20 -0600 | [diff] [blame] | 42 | /* SPI - enable all SPI flash types for testing purposes */ |
Mike Frysinger | 494b82b | 2013-12-03 16:43:28 -0700 | [diff] [blame] | 43 | |
Simon Glass | b3cbce2 | 2014-12-10 08:55:52 -0700 | [diff] [blame] | 44 | #define CONFIG_I2C_EDID |
Simon Glass | b3cbce2 | 2014-12-10 08:55:52 -0700 | [diff] [blame] | 45 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 46 | /* Memory things - we don't really want a memory test */ |
Simon Glass | a081a0f | 2013-02-24 20:29:23 +0000 | [diff] [blame] | 47 | #define CONFIG_SYS_LOAD_ADDR 0x00000000 |
| 48 | #define CONFIG_SYS_MEMTEST_START 0x00100000 |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 49 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) |
Simon Glass | 84640e8 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 50 | #define CONFIG_SYS_FDT_LOAD_ADDR 0x100 |
| 51 | |
| 52 | #define CONFIG_PHYSMEM |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 53 | |
| 54 | /* Size of our emulated memory */ |
Simon Glass | 62cf912 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 55 | #define CONFIG_SYS_SDRAM_BASE 0 |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 56 | #define CONFIG_SYS_SDRAM_SIZE (128 << 20) |
Simon Glass | 62cf912 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 57 | #define CONFIG_SYS_MONITOR_BASE 0 |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 58 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 59 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
| 60 | 115200} |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 61 | |
Sjoerd Simons | d094224 | 2015-04-13 22:54:27 +0200 | [diff] [blame] | 62 | #define BOOT_TARGET_DEVICES(func) \ |
| 63 | func(HOST, host, 1) \ |
| 64 | func(HOST, host, 0) |
| 65 | |
| 66 | #include <config_distro_bootcmd.h> |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 67 | |
Joe Hershberger | c7dc2a3 | 2015-04-08 01:41:25 -0500 | [diff] [blame] | 68 | #define CONFIG_KEEP_SERVERADDR |
| 69 | #define CONFIG_UDP_CHECKSUM |
Joe Hershberger | c7dc2a3 | 2015-04-08 01:41:25 -0500 | [diff] [blame] | 70 | #define CONFIG_TIMESTAMP |
Joe Hershberger | c96323f | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 71 | #define CONFIG_BOOTP_DNS2 |
Joe Hershberger | c96323f | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 72 | #define CONFIG_BOOTP_SEND_HOSTNAME |
| 73 | #define CONFIG_BOOTP_SERVERIP |
Joe Hershberger | c96323f | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 74 | #define CONFIG_IP_DEFRAG |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 75 | |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 76 | #ifndef SANDBOX_NO_SDL |
Simon Glass | 84640e8 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 77 | #define CONFIG_SANDBOX_SDL |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 78 | #endif |
| 79 | |
| 80 | /* LCD and keyboard require SDL support */ |
| 81 | #ifdef CONFIG_SANDBOX_SDL |
Simon Glass | 84640e8 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 82 | #define LCD_BPP LCD_COLOR16 |
Simon Glass | f461f12 | 2014-10-15 04:53:04 -0600 | [diff] [blame] | 83 | #define CONFIG_LCD_BMP_RLE8 |
Simon Glass | 7a1cb29 | 2016-01-18 19:52:28 -0700 | [diff] [blame] | 84 | #define CONFIG_VIDEO_BMP_RLE8 |
| 85 | #define CONFIG_SPLASH_SCREEN_ALIGN |
Simon Glass | 84640e8 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 86 | |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 87 | #define CONFIG_KEYBOARD |
| 88 | |
Simon Glass | 2b510fa | 2015-11-08 23:48:07 -0700 | [diff] [blame] | 89 | #define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \ |
Simon Glass | 798ff50 | 2016-01-21 19:44:51 -0700 | [diff] [blame] | 90 | "stdout=serial,vidconsole\0" \ |
| 91 | "stderr=serial,vidconsole\0" |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 92 | #else |
Joe Hershberger | 6ab7699 | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 93 | #define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \ |
Simon Glass | 798ff50 | 2016-01-21 19:44:51 -0700 | [diff] [blame] | 94 | "stdout=serial,vidconsole\0" \ |
| 95 | "stderr=serial,vidconsole\0" |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 96 | #endif |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 97 | |
Joe Hershberger | 6ab7699 | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 98 | #define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \ |
| 99 | "eth1addr=00:00:11:22:33:45\0" \ |
Bin Meng | 04a11cb | 2015-08-27 22:25:53 -0700 | [diff] [blame] | 100 | "eth3addr=00:00:11:22:33:46\0" \ |
| 101 | "eth5addr=00:00:11:22:33:47\0" \ |
Joe Hershberger | 6ab7699 | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 102 | "ipaddr=1.2.3.4\0" |
| 103 | |
Sjoerd Simons | d094224 | 2015-04-13 22:54:27 +0200 | [diff] [blame] | 104 | #define MEM_LAYOUT_ENV_SETTINGS \ |
| 105 | "bootm_size=0x10000000\0" \ |
| 106 | "kernel_addr_r=0x1000000\0" \ |
| 107 | "fdt_addr_r=0xc00000\0" \ |
| 108 | "ramdisk_addr_r=0x2000000\0" \ |
| 109 | "scriptaddr=0x1000\0" \ |
| 110 | "pxefile_addr_r=0x2000\0" |
| 111 | |
| 112 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 113 | SANDBOX_SERIAL_SETTINGS \ |
| 114 | SANDBOX_ETH_SETTINGS \ |
| 115 | BOOTENV \ |
| 116 | MEM_LAYOUT_ENV_SETTINGS |
Joe Hershberger | 6ab7699 | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 117 | |
Kees Cook | 5d3bca8 | 2013-08-16 07:59:11 -0700 | [diff] [blame] | 118 | #define CONFIG_GZIP_COMPRESSED |
| 119 | #define CONFIG_BZIP2 |
Kees Cook | 5d3bca8 | 2013-08-16 07:59:11 -0700 | [diff] [blame] | 120 | |
Simon Glass | 1a4742c | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 121 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 4e7227c | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 122 | #define CONFIG_SYS_IDE_MAXBUS 1 |
| 123 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0 |
| 124 | #define CONFIG_SYS_IDE_MAXDEVICE 2 |
| 125 | #define CONFIG_SYS_ATA_BASE_ADDR 0x100 |
| 126 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 127 | #define CONFIG_SYS_ATA_REG_OFFSET 1 |
| 128 | #define CONFIG_SYS_ATA_ALT_OFFSET 2 |
| 129 | #define CONFIG_SYS_ATA_STRIDE 4 |
Simon Glass | 1a4742c | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 130 | #endif |
Simon Glass | 4e7227c | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 131 | |
Simon Glass | 151b935 | 2016-05-01 11:36:25 -0600 | [diff] [blame] | 132 | #define CONFIG_SCSI_AHCI_PLAT |
| 133 | #define CONFIG_SYS_SCSI_MAX_DEVICE 2 |
| 134 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 8 |
| 135 | #define CONFIG_SYS_SCSI_MAX_LUN 4 |
| 136 | |
Simon Glass | 4a63e33 | 2016-05-01 11:36:27 -0600 | [diff] [blame] | 137 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 |
| 138 | |
Simon Glass | b419dbb | 2017-03-28 10:27:28 -0600 | [diff] [blame] | 139 | #define CONFIG_MISC_INIT_F |
| 140 | |
Simon Glass | d2fdaaf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 141 | #endif |