2011-10-03 19:26:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-10-03 19:26:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2013-06-11 18:14:44 +00:00
|
|
|
#ifdef FTRACE
|
|
|
|
#define CONFIG_TRACE
|
|
|
|
#define CONFIG_CMD_TRACE
|
|
|
|
#define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
|
|
|
|
#define CONFIG_TRACE_EARLY_SIZE (8 << 20)
|
|
|
|
#define CONFIG_TRACE_EARLY
|
|
|
|
#define CONFIG_TRACE_EARLY_ADDR 0x00100000
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-11-08 14:40:44 +00:00
|
|
|
#define CONFIG_SYS_TIMER_RATE 1000000
|
|
|
|
|
2013-06-11 18:14:44 +00:00
|
|
|
#define CONFIG_BOOTSTAGE
|
|
|
|
#define CONFIG_BOOTSTAGE_REPORT
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
/* Number of bits in a C 'long' on this architecture */
|
|
|
|
#define CONFIG_SANDBOX_BITS_PER_LONG 64
|
|
|
|
|
2012-02-15 23:51:12 +00:00
|
|
|
#define CONFIG_OF_CONTROL
|
2013-04-20 08:42:41 +00:00
|
|
|
#define CONFIG_OF_HOSTFILE
|
2012-02-15 23:51:12 +00:00
|
|
|
#define CONFIG_OF_LIBFDT
|
|
|
|
#define CONFIG_LMB
|
2013-04-20 08:42:52 +00:00
|
|
|
#define CONFIG_FIT
|
2013-06-13 22:10:10 +00:00
|
|
|
#define CONFIG_FIT_SIGNATURE
|
|
|
|
#define CONFIG_RSA
|
2013-04-20 08:42:52 +00:00
|
|
|
#define CONFIG_CMD_FDT
|
2012-02-15 23:51:12 +00:00
|
|
|
|
2012-12-26 09:53:37 +00:00
|
|
|
#define CONFIG_FS_FAT
|
|
|
|
#define CONFIG_FS_EXT4
|
|
|
|
#define CONFIG_EXT4_WRITE
|
|
|
|
#define CONFIG_CMD_FAT
|
|
|
|
#define CONFIG_CMD_EXT4
|
|
|
|
#define CONFIG_CMD_EXT4_WRITE
|
|
|
|
|
2012-02-15 23:51:12 +00:00
|
|
|
#define CONFIG_SYS_VSNPRINTF
|
|
|
|
|
2012-02-15 23:51:14 +00:00
|
|
|
#define CONFIG_CMD_GPIO
|
|
|
|
#define CONFIG_SANDBOX_GPIO
|
|
|
|
#define CONFIG_SANDBOX_GPIO_COUNT 20
|
|
|
|
|
2013-10-04 17:44:07 +00:00
|
|
|
#define CONFIG_CMD_GPT
|
|
|
|
#define CONFIG_PARTITION_UUIDS
|
|
|
|
#define CONFIG_EFI_PARTITION
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
/*
|
|
|
|
* Size of malloc() pool, although we don't actually use this yet.
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
|
|
|
|
|
|
|
|
#define CONFIG_SYS_HUSH_PARSER
|
|
|
|
#define CONFIG_SYS_LONGHELP /* #undef to save memory */
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
|
|
|
|
|
|
/* Print Buffer Size */
|
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
|
|
#define CONFIG_SYS_MAXARGS 16
|
|
|
|
|
|
|
|
/* turn on command-line edit/c/auto */
|
|
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
#define CONFIG_COMMAND_HISTORY
|
2011-10-26 00:19:58 +00:00
|
|
|
#define CONFIG_AUTO_COMPLETE
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_ENV_SIZE 8192
|
|
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
|
|
|
|
|
|
/* 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)
|
2013-04-20 08:42:41 +00:00
|
|
|
#define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000
|
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_TEXT_BASE 0
|
|
|
|
#define CONFIG_SYS_MONITOR_BASE 0
|
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_BAUDRATE 115200
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
|
|
|
|
115200}
|
|
|
|
#define CONFIG_SANDBOX_SERIAL
|
|
|
|
|
|
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
|
|
|
|
/* include default commands */
|
|
|
|
#include <config_cmd_default.h>
|
|
|
|
|
|
|
|
/* We don't have networking support yet */
|
|
|
|
#undef CONFIG_CMD_NET
|
|
|
|
#undef CONFIG_CMD_NFS
|
|
|
|
|
2013-02-24 20:29:23 +00:00
|
|
|
#define CONFIG_CMD_HASH
|
|
|
|
#define CONFIG_HASH_VERIFY
|
|
|
|
#define CONFIG_SHA1
|
|
|
|
#define CONFIG_SHA256
|
|
|
|
|
2012-12-26 09:53:38 +00:00
|
|
|
#define CONFIG_CMD_SANDBOX
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
#define CONFIG_BOOTARGS ""
|
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \
|
|
|
|
"stdout=serial\0" \
|
|
|
|
"stderr=serial\0"
|
|
|
|
|
2013-08-16 14:59:11 +00:00
|
|
|
#define CONFIG_GZIP_COMPRESSED
|
|
|
|
#define CONFIG_BZIP2
|
|
|
|
#define CONFIG_LZO
|
|
|
|
#define CONFIG_LZMA
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
#endif
|