blob: d7043298e3fb492b18094e90de368962bcf3a367 [file] [log] [blame]
Simon Glassd2fdaaf2011-10-03 19:26:47 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * See file CREDITS for list of people who contributed to this
4 * project.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21
22#ifndef __CONFIG_H
23#define __CONFIG_H
24
Simon Glasse7f1eb52013-06-11 11:14:44 -070025#ifdef FTRACE
26#define CONFIG_TRACE
27#define CONFIG_CMD_TRACE
28#define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
29#define CONFIG_TRACE_EARLY_SIZE (8 << 20)
30#define CONFIG_TRACE_EARLY
31#define CONFIG_TRACE_EARLY_ADDR 0x00100000
32
33#endif
34
35#define CONFIG_BOOTSTAGE
36#define CONFIG_BOOTSTAGE_REPORT
37
Simon Glassd2fdaaf2011-10-03 19:26:47 +000038/* Number of bits in a C 'long' on this architecture */
39#define CONFIG_SANDBOX_BITS_PER_LONG 64
40
Simon Glass827116f2012-02-15 15:51:12 -080041#define CONFIG_OF_CONTROL
Simon Glass15393432013-04-20 08:42:41 +000042#define CONFIG_OF_HOSTFILE
Simon Glass827116f2012-02-15 15:51:12 -080043#define CONFIG_OF_LIBFDT
44#define CONFIG_LMB
Simon Glass79f396a2013-04-20 08:42:52 +000045#define CONFIG_FIT
46#define CONFIG_CMD_FDT
Simon Glass827116f2012-02-15 15:51:12 -080047
Simon Glasseb4cecd2012-12-26 09:53:37 +000048#define CONFIG_FS_FAT
49#define CONFIG_FS_EXT4
50#define CONFIG_EXT4_WRITE
51#define CONFIG_CMD_FAT
52#define CONFIG_CMD_EXT4
53#define CONFIG_CMD_EXT4_WRITE
54
Simon Glass827116f2012-02-15 15:51:12 -080055#define CONFIG_SYS_VSNPRINTF
56
Simon Glass424549162012-02-15 15:51:14 -080057#define CONFIG_CMD_GPIO
58#define CONFIG_SANDBOX_GPIO
59#define CONFIG_SANDBOX_GPIO_COUNT 20
60
Simon Glassd2fdaaf2011-10-03 19:26:47 +000061/*
62 * Size of malloc() pool, although we don't actually use this yet.
63 */
64#define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
65
66#define CONFIG_SYS_PROMPT "=>" /* Command Prompt */
67#define CONFIG_SYS_HUSH_PARSER
Simon Glassd2fdaaf2011-10-03 19:26:47 +000068#define CONFIG_SYS_LONGHELP /* #undef to save memory */
69#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
70
71/* Print Buffer Size */
72#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
73#define CONFIG_SYS_MAXARGS 16
74
75/* turn on command-line edit/c/auto */
76#define CONFIG_CMDLINE_EDITING
77#define CONFIG_COMMAND_HISTORY
Mike Frysingerc1285cb2011-10-26 00:19:58 +000078#define CONFIG_AUTO_COMPLETE
Simon Glassd2fdaaf2011-10-03 19:26:47 +000079
80#define CONFIG_ENV_SIZE 8192
81#define CONFIG_ENV_IS_NOWHERE
82
83#define CONFIG_SYS_HZ 1000
84
85/* Memory things - we don't really want a memory test */
Simon Glassa081a0f2013-02-24 20:29:23 +000086#define CONFIG_SYS_LOAD_ADDR 0x00000000
87#define CONFIG_SYS_MEMTEST_START 0x00100000
Simon Glassd2fdaaf2011-10-03 19:26:47 +000088#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
89#define CONFIG_PHYS_64BIT
Simon Glass15393432013-04-20 08:42:41 +000090#define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000
Simon Glassd2fdaaf2011-10-03 19:26:47 +000091
92/* Size of our emulated memory */
Simon Glass62cf9122013-04-26 02:53:43 +000093#define CONFIG_SYS_SDRAM_BASE 0
Simon Glassd2fdaaf2011-10-03 19:26:47 +000094#define CONFIG_SYS_SDRAM_SIZE (128 << 20)
Simon Glass62cf9122013-04-26 02:53:43 +000095#define CONFIG_SYS_TEXT_BASE 0
96#define CONFIG_SYS_MONITOR_BASE 0
97#define CONFIG_NR_DRAM_BANKS 1
Simon Glassd2fdaaf2011-10-03 19:26:47 +000098
99#define CONFIG_BAUDRATE 115200
100#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
101 115200}
102#define CONFIG_SANDBOX_SERIAL
103
104#define CONFIG_SYS_NO_FLASH
105
106/* include default commands */
107#include <config_cmd_default.h>
108
109/* We don't have networking support yet */
110#undef CONFIG_CMD_NET
111#undef CONFIG_CMD_NFS
112
Simon Glassa081a0f2013-02-24 20:29:23 +0000113#define CONFIG_CMD_HASH
114#define CONFIG_HASH_VERIFY
115#define CONFIG_SHA1
116#define CONFIG_SHA256
117
Simon Glass6cb5db42012-12-26 09:53:38 +0000118#define CONFIG_CMD_SANDBOX
119
Simon Glassd2fdaaf2011-10-03 19:26:47 +0000120#define CONFIG_BOOTARGS ""
121
122#define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \
123 "stdout=serial\0" \
124 "stderr=serial\0"
125
126#endif