2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-10-03 19:26:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2013-06-11 11:14:44 -07:00
|
|
|
#ifdef FTRACE
|
|
|
|
#define CONFIG_TRACE
|
|
|
|
#define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
|
2019-04-08 13:20:46 -06:00
|
|
|
#define CONFIG_TRACE_EARLY_SIZE (16 << 20)
|
2013-06-11 11:14:44 -07:00
|
|
|
#define CONFIG_TRACE_EARLY
|
|
|
|
#define CONFIG_TRACE_EARLY_ADDR 0x00100000
|
|
|
|
#endif
|
|
|
|
|
2016-07-04 11:57:52 -06:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2014-06-11 23:29:43 -06:00
|
|
|
#define CONFIG_IO_TRACE
|
2016-07-04 11:57:52 -06:00
|
|
|
#endif
|
2014-06-11 23:29:43 -06:00
|
|
|
|
2015-10-30 15:35:52 +08:00
|
|
|
#ifndef CONFIG_TIMER
|
2013-11-08 08:40:44 -06:00
|
|
|
#define CONFIG_SYS_TIMER_RATE 1000000
|
2015-10-30 15:35:52 +08:00
|
|
|
#endif
|
2013-11-08 08:40:44 -06:00
|
|
|
|
2012-02-15 15:51:12 -08:00
|
|
|
#define CONFIG_LMB
|
|
|
|
|
2013-11-10 10:26:56 -07:00
|
|
|
#define CONFIG_HOST_MAX_DEVICES 4
|
2012-12-26 09:53:37 +00:00
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
/*
|
2014-07-10 22:23:32 -06:00
|
|
|
* Size of malloc() pool, before and after relocation
|
2011-10-03 19:26:47 +00:00
|
|
|
*/
|
2014-07-10 22:23:32 -06:00
|
|
|
#define CONFIG_MALLOC_F_ADDR 0x0010000
|
2014-02-27 13:25:56 -07:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
|
|
|
|
|
|
/* turn on command-line edit/c/auto */
|
|
|
|
|
2014-09-15 06:33:20 -06:00
|
|
|
/* SPI - enable all SPI flash types for testing purposes */
|
2013-12-03 16:43:28 -07:00
|
|
|
|
2014-12-10 08:55:52 -07:00
|
|
|
#define CONFIG_I2C_EDID
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
/* Memory things - we don't really want a memory test */
|
2013-02-24 20:29:23 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x00000000
|
2014-02-27 13:26:25 -07:00
|
|
|
#define CONFIG_SYS_FDT_LOAD_ADDR 0x100
|
|
|
|
|
|
|
|
#define CONFIG_PHYSMEM
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
/* Size of our emulated memory */
|
2020-06-07 18:47:35 +02:00
|
|
|
#define SB_CONCAT(x, y) x ## y
|
|
|
|
#define SB_TO_UL(s) SB_CONCAT(s, UL)
|
2013-04-26 02:53:43 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
2020-06-07 18:47:35 +02:00
|
|
|
#define CONFIG_SYS_SDRAM_SIZE \
|
|
|
|
(SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20)
|
2013-04-26 02:53:43 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_BASE 0
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
|
|
|
|
115200}
|
|
|
|
|
2015-04-13 22:54:27 +02:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(HOST, host, 1) \
|
|
|
|
func(HOST, host, 0)
|
|
|
|
|
2019-05-18 11:59:48 -06:00
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
#define BOOTENV
|
|
|
|
#else
|
2015-04-13 22:54:27 +02:00
|
|
|
#include <config_distro_bootcmd.h>
|
2019-05-18 11:59:48 -06:00
|
|
|
#endif
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2015-04-08 01:41:25 -05:00
|
|
|
#define CONFIG_KEEP_SERVERADDR
|
|
|
|
#define CONFIG_UDP_CHECKSUM
|
|
|
|
#define CONFIG_TIMESTAMP
|
2015-03-22 17:09:22 -05:00
|
|
|
#define CONFIG_BOOTP_SERVERIP
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2014-03-22 17:12:58 -06:00
|
|
|
#ifndef SANDBOX_NO_SDL
|
2014-02-27 13:26:25 -07:00
|
|
|
#define CONFIG_SANDBOX_SDL
|
2014-03-22 17:12:58 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LCD and keyboard require SDL support */
|
|
|
|
#ifdef CONFIG_SANDBOX_SDL
|
2014-02-27 13:26:25 -07:00
|
|
|
#define LCD_BPP LCD_COLOR16
|
2014-10-15 04:53:04 -06:00
|
|
|
#define CONFIG_LCD_BMP_RLE8
|
2014-02-27 13:26:25 -07:00
|
|
|
|
2014-03-22 17:12:58 -06:00
|
|
|
#define CONFIG_KEYBOARD
|
|
|
|
|
2015-11-08 23:48:07 -07:00
|
|
|
#define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \
|
2016-01-21 19:44:51 -07:00
|
|
|
"stdout=serial,vidconsole\0" \
|
|
|
|
"stderr=serial,vidconsole\0"
|
2014-03-22 17:12:58 -06:00
|
|
|
#else
|
2015-03-22 17:09:13 -05:00
|
|
|
#define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \
|
2016-01-21 19:44:51 -07:00
|
|
|
"stdout=serial,vidconsole\0" \
|
|
|
|
"stderr=serial,vidconsole\0"
|
2014-03-22 17:12:58 -06:00
|
|
|
#endif
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2015-03-22 17:09:13 -05:00
|
|
|
#define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \
|
2020-06-02 01:47:09 +02:00
|
|
|
"eth3addr=00:00:11:22:33:45\0" \
|
|
|
|
"eth5addr=00:00:11:22:33:46\0" \
|
|
|
|
"eth6addr=00:00:11:22:33:47\0" \
|
2015-03-22 17:09:13 -05:00
|
|
|
"ipaddr=1.2.3.4\0"
|
|
|
|
|
2015-04-13 22:54:27 +02:00
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
|
|
|
"bootm_size=0x10000000\0" \
|
|
|
|
"kernel_addr_r=0x1000000\0" \
|
|
|
|
"fdt_addr_r=0xc00000\0" \
|
|
|
|
"ramdisk_addr_r=0x2000000\0" \
|
|
|
|
"scriptaddr=0x1000\0" \
|
|
|
|
"pxefile_addr_r=0x2000\0"
|
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
SANDBOX_SERIAL_SETTINGS \
|
|
|
|
SANDBOX_ETH_SETTINGS \
|
|
|
|
BOOTENV \
|
|
|
|
MEM_LAYOUT_ENV_SETTINGS
|
2015-03-22 17:09:13 -05:00
|
|
|
|
2016-07-04 11:57:52 -06:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2016-05-01 11:36:23 -06:00
|
|
|
#define CONFIG_SYS_IDE_MAXBUS 1
|
|
|
|
#define CONFIG_SYS_ATA_IDE0_OFFSET 0
|
|
|
|
#define CONFIG_SYS_IDE_MAXDEVICE 2
|
|
|
|
#define CONFIG_SYS_ATA_BASE_ADDR 0x100
|
|
|
|
#define CONFIG_SYS_ATA_DATA_OFFSET 0
|
|
|
|
#define CONFIG_SYS_ATA_REG_OFFSET 1
|
|
|
|
#define CONFIG_SYS_ATA_ALT_OFFSET 2
|
|
|
|
#define CONFIG_SYS_ATA_STRIDE 4
|
2016-07-04 11:57:52 -06:00
|
|
|
#endif
|
2016-05-01 11:36:23 -06:00
|
|
|
|
2016-05-01 11:36:25 -06:00
|
|
|
#define CONFIG_SCSI_AHCI_PLAT
|
|
|
|
#define CONFIG_SYS_SCSI_MAX_DEVICE 2
|
|
|
|
#define CONFIG_SYS_SCSI_MAX_SCSI_ID 8
|
|
|
|
#define CONFIG_SYS_SCSI_MAX_LUN 4
|
|
|
|
|
2016-05-01 11:36:27 -06:00
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE 2
|
|
|
|
|
2017-03-28 10:27:28 -06:00
|
|
|
#define CONFIG_MISC_INIT_F
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
#endif
|