blob: 71c2ae3b3951aeb3ab5b3e4a72053a62cc4a03ce [file] [log] [blame]
Simon Glassc861fbf2011-10-03 19:26:47 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glassc861fbf2011-10-03 19:26:47 +00004 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
Simon Glasse2ee1002013-06-11 11:14:44 -07009#ifdef FTRACE
10#define CONFIG_TRACE
Simon Glasse2ee1002013-06-11 11:14:44 -070011#define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
12#define CONFIG_TRACE_EARLY_SIZE (8 << 20)
13#define CONFIG_TRACE_EARLY
14#define CONFIG_TRACE_EARLY_ADDR 0x00100000
15
16#endif
17
Simon Glass1c12bce2016-07-04 11:57:52 -060018#ifndef CONFIG_SPL_BUILD
Simon Glass42d3b292014-06-11 23:29:43 -060019#define CONFIG_IO_TRACE
Simon Glass1c12bce2016-07-04 11:57:52 -060020#endif
Simon Glass42d3b292014-06-11 23:29:43 -060021
Thomas Chou9961a0b2015-10-30 15:35:52 +080022#ifndef CONFIG_TIMER
Rob Herring28c860b2013-11-08 08:40:44 -060023#define CONFIG_SYS_TIMER_RATE 1000000
Thomas Chou9961a0b2015-10-30 15:35:52 +080024#endif
Rob Herring28c860b2013-11-08 08:40:44 -060025
Simon Glass7b06b662012-02-15 15:51:12 -080026#define CONFIG_LMB
27
Simon Glass10fc1212012-12-26 09:53:37 +000028#define CONFIG_FS_EXT4
29#define CONFIG_EXT4_WRITE
Henrik Nordströmf4d8de42013-11-10 10:26:56 -070030#define CONFIG_HOST_MAX_DEVICES 4
Simon Glass10fc1212012-12-26 09:53:37 +000031
Simon Glassc861fbf2011-10-03 19:26:47 +000032/*
Simon Glassb53e94b2014-07-10 22:23:32 -060033 * Size of malloc() pool, before and after relocation
Simon Glassc861fbf2011-10-03 19:26:47 +000034 */
Simon Glassb53e94b2014-07-10 22:23:32 -060035#define CONFIG_MALLOC_F_ADDR 0x0010000
Simon Glass9f604422014-02-27 13:25:56 -070036#define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */
Simon Glassc861fbf2011-10-03 19:26:47 +000037
Simon Glassc861fbf2011-10-03 19:26:47 +000038#define CONFIG_SYS_LONGHELP /* #undef to save memory */
39#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Simon Glassd63b5b42017-06-15 21:37:53 -060040#define CONFIG_DISPLAY_BOARDINFO_LATE
Simon Glassc861fbf2011-10-03 19:26:47 +000041
Simon Glassc861fbf2011-10-03 19:26:47 +000042/* turn on command-line edit/c/auto */
43#define CONFIG_CMDLINE_EDITING
Mike Frysingered0fc4b2011-10-26 00:19:58 +000044#define CONFIG_AUTO_COMPLETE
Simon Glassc861fbf2011-10-03 19:26:47 +000045
46#define CONFIG_ENV_SIZE 8192
Simon Glassc861fbf2011-10-03 19:26:47 +000047
Simon Glass5e749342014-09-15 06:33:20 -060048/* SPI - enable all SPI flash types for testing purposes */
Mike Frysingerca9a5012013-12-03 16:43:28 -070049
Simon Glassac395f02014-12-10 08:55:52 -070050#define CONFIG_I2C_EDID
Simon Glassac395f02014-12-10 08:55:52 -070051
Simon Glassc861fbf2011-10-03 19:26:47 +000052/* Memory things - we don't really want a memory test */
Simon Glassecdbf412013-02-24 20:29:23 +000053#define CONFIG_SYS_LOAD_ADDR 0x00000000
54#define CONFIG_SYS_MEMTEST_START 0x00100000
Simon Glassc861fbf2011-10-03 19:26:47 +000055#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
Simon Glass2c072c92014-02-27 13:26:25 -070056#define CONFIG_SYS_FDT_LOAD_ADDR 0x100
57
58#define CONFIG_PHYSMEM
Simon Glassc861fbf2011-10-03 19:26:47 +000059
60/* Size of our emulated memory */
Simon Glassa733b062013-04-26 02:53:43 +000061#define CONFIG_SYS_SDRAM_BASE 0
Simon Glassc861fbf2011-10-03 19:26:47 +000062#define CONFIG_SYS_SDRAM_SIZE (128 << 20)
Simon Glassa733b062013-04-26 02:53:43 +000063#define CONFIG_SYS_TEXT_BASE 0
64#define CONFIG_SYS_MONITOR_BASE 0
65#define CONFIG_NR_DRAM_BANKS 1
Simon Glassc861fbf2011-10-03 19:26:47 +000066
Simon Glassc861fbf2011-10-03 19:26:47 +000067#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
68 115200}
Simon Glassc861fbf2011-10-03 19:26:47 +000069
Simon Glassc861fbf2011-10-03 19:26:47 +000070/* include default commands */
Sjoerd Simons791a9f62015-04-13 22:54:27 +020071#include <config_distro_defaults.h>
72
73#define BOOT_TARGET_DEVICES(func) \
74 func(HOST, host, 1) \
75 func(HOST, host, 0)
76
Sjoerd Simonsebaa8322015-04-30 22:16:09 +020077#define CONFIG_BOOTCOMMAND ""
78
Sjoerd Simons791a9f62015-04-13 22:54:27 +020079#include <config_distro_bootcmd.h>
Simon Glassc861fbf2011-10-03 19:26:47 +000080
Joe Hershberger1f5bc522015-04-08 01:41:25 -050081#define CONFIG_KEEP_SERVERADDR
82#define CONFIG_UDP_CHECKSUM
Joe Hershberger1f5bc522015-04-08 01:41:25 -050083#define CONFIG_TIMESTAMP
Joe Hershbergerf3e0c372015-03-22 17:09:22 -050084#define CONFIG_BOOTP_DNS
85#define CONFIG_BOOTP_DNS2
Joe Hershbergerf3e0c372015-03-22 17:09:22 -050086#define CONFIG_BOOTP_SEND_HOSTNAME
87#define CONFIG_BOOTP_SERVERIP
Joe Hershbergerf3e0c372015-03-22 17:09:22 -050088#define CONFIG_IP_DEFRAG
Simon Glassc861fbf2011-10-03 19:26:47 +000089
Simon Glassad0e4632014-03-22 17:12:58 -060090#ifndef SANDBOX_NO_SDL
Simon Glass2c072c92014-02-27 13:26:25 -070091#define CONFIG_SANDBOX_SDL
Simon Glassad0e4632014-03-22 17:12:58 -060092#endif
93
94/* LCD and keyboard require SDL support */
95#ifdef CONFIG_SANDBOX_SDL
Simon Glass2c072c92014-02-27 13:26:25 -070096#define LCD_BPP LCD_COLOR16
Simon Glass01564442014-10-15 04:53:04 -060097#define CONFIG_LCD_BMP_RLE8
Simon Glass747440d2016-01-18 19:52:28 -070098#define CONFIG_VIDEO_BMP_RLE8
99#define CONFIG_SPLASH_SCREEN_ALIGN
Simon Glass2c072c92014-02-27 13:26:25 -0700100
Simon Glassad0e4632014-03-22 17:12:58 -0600101#define CONFIG_KEYBOARD
102
Simon Glass460a7172015-11-08 23:48:07 -0700103#define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \
Simon Glassf1a12472016-01-21 19:44:51 -0700104 "stdout=serial,vidconsole\0" \
105 "stderr=serial,vidconsole\0"
Simon Glassad0e4632014-03-22 17:12:58 -0600106#else
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500107#define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \
Simon Glassf1a12472016-01-21 19:44:51 -0700108 "stdout=serial,vidconsole\0" \
109 "stderr=serial,vidconsole\0"
Simon Glassad0e4632014-03-22 17:12:58 -0600110#endif
Simon Glassc861fbf2011-10-03 19:26:47 +0000111
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500112#define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \
113 "eth1addr=00:00:11:22:33:45\0" \
Bin Meng71d79712015-08-27 22:25:53 -0700114 "eth3addr=00:00:11:22:33:46\0" \
115 "eth5addr=00:00:11:22:33:47\0" \
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500116 "ipaddr=1.2.3.4\0"
117
Sjoerd Simons791a9f62015-04-13 22:54:27 +0200118#define MEM_LAYOUT_ENV_SETTINGS \
119 "bootm_size=0x10000000\0" \
120 "kernel_addr_r=0x1000000\0" \
121 "fdt_addr_r=0xc00000\0" \
122 "ramdisk_addr_r=0x2000000\0" \
123 "scriptaddr=0x1000\0" \
124 "pxefile_addr_r=0x2000\0"
125
126#define CONFIG_EXTRA_ENV_SETTINGS \
127 SANDBOX_SERIAL_SETTINGS \
128 SANDBOX_ETH_SETTINGS \
129 BOOTENV \
130 MEM_LAYOUT_ENV_SETTINGS
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500131
Kees Cook3153e912013-08-16 07:59:11 -0700132#define CONFIG_GZIP_COMPRESSED
133#define CONFIG_BZIP2
Kees Cook3153e912013-08-16 07:59:11 -0700134
Simon Glass1c12bce2016-07-04 11:57:52 -0600135#ifndef CONFIG_SPL_BUILD
Simon Glass74c6dc12016-05-01 11:36:23 -0600136#define CONFIG_SYS_IDE_MAXBUS 1
137#define CONFIG_SYS_ATA_IDE0_OFFSET 0
138#define CONFIG_SYS_IDE_MAXDEVICE 2
139#define CONFIG_SYS_ATA_BASE_ADDR 0x100
140#define CONFIG_SYS_ATA_DATA_OFFSET 0
141#define CONFIG_SYS_ATA_REG_OFFSET 1
142#define CONFIG_SYS_ATA_ALT_OFFSET 2
143#define CONFIG_SYS_ATA_STRIDE 4
Simon Glass1c12bce2016-07-04 11:57:52 -0600144#endif
Simon Glass74c6dc12016-05-01 11:36:23 -0600145
Simon Glasse8c0a252016-05-01 11:36:25 -0600146#define CONFIG_SCSI_AHCI_PLAT
147#define CONFIG_SYS_SCSI_MAX_DEVICE 2
148#define CONFIG_SYS_SCSI_MAX_SCSI_ID 8
149#define CONFIG_SYS_SCSI_MAX_LUN 4
150
Simon Glass199a1202016-05-01 11:36:27 -0600151#define CONFIG_SYS_SATA_MAX_DEVICE 2
152
Simon Glasscd995a82016-05-01 11:36:32 -0600153#define CONFIG_SYSTEMACE
154#define CONFIG_SYS_SYSTEMACE_WIDTH 16
155#define CONFIG_SYS_SYSTEMACE_BASE 0
156
Simon Glass68969772017-03-28 10:27:28 -0600157#define CONFIG_MISC_INIT_F
158
Simon Glassc861fbf2011-10-03 19:26:47 +0000159#endif