2018-05-06 21:58:06 +00: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 18:14:44 +00:00
|
|
|
#ifdef FTRACE
|
|
|
|
#define CONFIG_TRACE
|
2019-04-08 19:20:53 +00:00
|
|
|
#define CONFIG_CMD_TRACE
|
2013-06-11 18:14:44 +00:00
|
|
|
#define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
|
2019-04-08 19:20:46 +00:00
|
|
|
#define CONFIG_TRACE_EARLY_SIZE (16 << 20)
|
2013-06-11 18:14:44 +00:00
|
|
|
#define CONFIG_TRACE_EARLY
|
|
|
|
#define CONFIG_TRACE_EARLY_ADDR 0x00100000
|
|
|
|
#endif
|
|
|
|
|
2016-07-04 17:57:52 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2014-06-12 05:29:43 +00:00
|
|
|
#define CONFIG_IO_TRACE
|
2016-07-04 17:57:52 +00:00
|
|
|
#endif
|
2014-06-12 05:29:43 +00:00
|
|
|
|
2015-10-30 07:35:52 +00:00
|
|
|
#ifndef CONFIG_TIMER
|
2013-11-08 14:40:44 +00:00
|
|
|
#define CONFIG_SYS_TIMER_RATE 1000000
|
2015-10-30 07:35:52 +00:00
|
|
|
#endif
|
2013-11-08 14:40:44 +00:00
|
|
|
|
2012-02-15 23:51:12 +00:00
|
|
|
#define CONFIG_LMB
|
|
|
|
|
2013-11-10 17:26:56 +00: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-11 04:23:32 +00:00
|
|
|
* Size of malloc() pool, before and after relocation
|
2011-10-03 19:26:47 +00:00
|
|
|
*/
|
2014-07-11 04:23:32 +00:00
|
|
|
#define CONFIG_MALLOC_F_ADDR 0x0010000
|
2014-02-27 20:25:56 +00: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 12:33:20 +00:00
|
|
|
/* SPI - enable all SPI flash types for testing purposes */
|
2013-12-03 23:43:28 +00:00
|
|
|
|
2014-12-10 15:55:52 +00: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
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x00100000
|
2011-10-03 19:26:47 +00:00
|
|
|
#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
|
2014-02-27 20:26:25 +00:00
|
|
|
#define CONFIG_SYS_FDT_LOAD_ADDR 0x100
|
|
|
|
|
|
|
|
#define CONFIG_PHYSMEM
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
/* Size of our emulated memory */
|
2013-04-26 02:53:43 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
2011-10-03 19:26:47 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_SIZE (128 << 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 20:54:27 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(HOST, host, 1) \
|
|
|
|
func(HOST, host, 0)
|
|
|
|
|
2019-05-18 17:59:48 +00:00
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
#define BOOTENV
|
|
|
|
#else
|
2015-04-13 20:54:27 +00:00
|
|
|
#include <config_distro_bootcmd.h>
|
2019-05-18 17:59:48 +00:00
|
|
|
#endif
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2015-04-08 06:41:25 +00:00
|
|
|
#define CONFIG_KEEP_SERVERADDR
|
|
|
|
#define CONFIG_UDP_CHECKSUM
|
|
|
|
#define CONFIG_TIMESTAMP
|
2015-03-22 22:09:22 +00:00
|
|
|
#define CONFIG_BOOTP_DNS2
|
|
|
|
#define CONFIG_BOOTP_SEND_HOSTNAME
|
|
|
|
#define CONFIG_BOOTP_SERVERIP
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2014-03-22 23:12:58 +00:00
|
|
|
#ifndef SANDBOX_NO_SDL
|
2014-02-27 20:26:25 +00:00
|
|
|
#define CONFIG_SANDBOX_SDL
|
2014-03-22 23:12:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LCD and keyboard require SDL support */
|
|
|
|
#ifdef CONFIG_SANDBOX_SDL
|
2014-02-27 20:26:25 +00:00
|
|
|
#define LCD_BPP LCD_COLOR16
|
2014-10-15 10:53:04 +00:00
|
|
|
#define CONFIG_LCD_BMP_RLE8
|
2016-01-19 02:52:28 +00:00
|
|
|
#define CONFIG_VIDEO_BMP_RLE8
|
|
|
|
#define CONFIG_SPLASH_SCREEN_ALIGN
|
2014-02-27 20:26:25 +00:00
|
|
|
|
2014-03-22 23:12:58 +00:00
|
|
|
#define CONFIG_KEYBOARD
|
|
|
|
|
2015-11-09 06:48:07 +00:00
|
|
|
#define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \
|
2016-01-22 02:44:51 +00:00
|
|
|
"stdout=serial,vidconsole\0" \
|
|
|
|
"stderr=serial,vidconsole\0"
|
2014-03-22 23:12:58 +00:00
|
|
|
#else
|
2015-03-22 22:09:13 +00:00
|
|
|
#define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \
|
2016-01-22 02:44:51 +00:00
|
|
|
"stdout=serial,vidconsole\0" \
|
|
|
|
"stderr=serial,vidconsole\0"
|
2014-03-22 23:12:58 +00:00
|
|
|
#endif
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2015-03-22 22:09:13 +00:00
|
|
|
#define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \
|
|
|
|
"eth1addr=00:00:11:22:33:45\0" \
|
2015-08-28 05:25:53 +00:00
|
|
|
"eth3addr=00:00:11:22:33:46\0" \
|
|
|
|
"eth5addr=00:00:11:22:33:47\0" \
|
2015-03-22 22:09:13 +00:00
|
|
|
"ipaddr=1.2.3.4\0"
|
|
|
|
|
2015-04-13 20:54:27 +00: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 22:09:13 +00:00
|
|
|
|
2013-08-16 14:59:11 +00:00
|
|
|
#define CONFIG_GZIP_COMPRESSED
|
|
|
|
#define CONFIG_BZIP2
|
|
|
|
|
2016-07-04 17:57:52 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2016-05-01 17:36:23 +00: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 17:57:52 +00:00
|
|
|
#endif
|
2016-05-01 17:36:23 +00:00
|
|
|
|
2016-05-01 17:36:25 +00: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 17:36:27 +00:00
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE 2
|
|
|
|
|
2017-03-28 16:27:28 +00:00
|
|
|
#define CONFIG_MISC_INIT_F
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
#endif
|