blob: 9695ee7ffb69b9a64af279a11aaf400a8f5420b6 [file] [log] [blame]
Tom Rini26750c82012-06-19 12:54:34 +00001/*
2 * Copyright 2012 Texas Instruments
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License Version 2. This file is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
9#ifndef __CONFIG_FALLBACKS_H
10#define __CONFIG_FALLBACKS_H
11
Benoît Thébaudeau6113d3f2013-04-11 09:35:49 +000012#ifdef CONFIG_SPL
13#ifdef CONFIG_SPL_PAD_TO
14#ifdef CONFIG_SPL_MAX_SIZE
15#if CONFIG_SPL_PAD_TO && CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
16#error CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
17#endif
18#endif
19#else
20#ifdef CONFIG_SPL_MAX_SIZE
21#define CONFIG_SPL_PAD_TO CONFIG_SPL_MAX_SIZE
22#else
23#define CONFIG_SPL_PAD_TO 0
24#endif
25#endif
26#endif
27
Tom Rini26750c82012-06-19 12:54:34 +000028#ifndef CONFIG_SYS_BAUDRATE_TABLE
29#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
30#endif
31
Stephen Warren2c1af9d2013-02-28 15:03:46 +000032/* Rather than repeat this expression each time, add a define for it */
Simon Glassfc843a02017-05-17 03:25:30 -060033#if defined(CONFIG_IDE) || \
Simon Glass10e40d52017-06-14 21:28:25 -060034 defined(CONFIG_SATA) || \
Simon Glassc649e3c2016-05-01 11:36:02 -060035 defined(CONFIG_SCSI) || \
Stephen Warren2c1af9d2013-02-28 15:03:46 +000036 defined(CONFIG_CMD_USB) || \
Stephen Warren4123c4e2013-02-28 15:03:47 +000037 defined(CONFIG_CMD_PART) || \
Egbert Eichf9cd3d32013-10-04 19:42:53 +020038 defined(CONFIG_CMD_GPT) || \
Stephen Warren2c1af9d2013-02-28 15:03:46 +000039 defined(CONFIG_MMC) || \
Bin Mengfceadc12017-08-22 08:15:17 -070040 defined(CONFIG_NVME) || \
Henrik Nordströmf4d8de42013-11-10 10:26:56 -070041 defined(CONFIG_SYSTEMACE) || \
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010042 (defined(CONFIG_EFI_LOADER) && !defined(CONFIG_SPL_BUILD)) || \
Henrik Nordströmf4d8de42013-11-10 10:26:56 -070043 defined(CONFIG_SANDBOX)
Stephen Warren2c1af9d2013-02-28 15:03:46 +000044#define HAVE_BLOCK_DEVICE
45#endif
46
Patrick Delaunayb331cd62017-01-27 11:00:42 +010047#if (CONFIG_IS_ENABLED(PARTITION_UUIDS) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +010048 CONFIG_IS_ENABLED(EFI_PARTITION) || \
Rob Clark22ada0c2017-09-09 06:47:42 -040049 CONFIG_IS_ENABLED(EFI_LOADER) || \
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +020050 defined(CONFIG_RANDOM_UUID) || \
Przemyslaw Marczak89c82302014-04-02 10:20:05 +020051 defined(CONFIG_CMD_UUID) || \
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +020052 defined(CONFIG_BOOTP_PXE)) && \
53 !defined(CONFIG_LIB_UUID)
54#define CONFIG_LIB_UUID
55#endif
56
Przemyslaw Marczak89c82302014-04-02 10:20:05 +020057#if (defined(CONFIG_RANDOM_UUID) || \
58 defined(CONFIG_CMD_UUID)) && \
59 (!defined(CONFIG_LIB_RAND) && \
60 !defined(CONFIG_LIB_HW_RAND))
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +020061#define CONFIG_LIB_RAND
62#endif
63
Thomas Petazzoni72f09602017-08-23 22:58:59 +020064/* Console I/O Buffer Size */
65#ifndef CONFIG_SYS_CBSIZE
66#if defined(CONFIG_CMD_KGDB)
67#define CONFIG_SYS_CBSIZE 1024
68#else
69#define CONFIG_SYS_CBSIZE 256
70#endif
71#endif
72
Fabio Estevam31cc2c82014-11-27 20:41:44 -020073#ifndef CONFIG_SYS_PBSIZE
Thomas Petazzoni80c914f2017-08-23 22:59:01 +020074#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
Fabio Estevam31cc2c82014-11-27 20:41:44 -020075#endif
76
Thomas Petazzonibb939d72017-08-23 22:59:03 +020077#ifndef CONFIG_SYS_MAXARGS
78#define CONFIG_SYS_MAXARGS 16
79#endif
80
Heiko Schocher21d29f72014-05-28 11:33:33 +020081#ifndef CONFIG_FIT_SIGNATURE
82#define CONFIG_IMAGE_FORMAT_LEGACY
83#endif
84
85#ifdef CONFIG_DISABLE_IMAGE_LEGACY
86#undef CONFIG_IMAGE_FORMAT_LEGACY
87#endif
88
Simon Glassc6202d82014-12-10 08:55:47 -070089#ifdef CONFIG_DM_I2C
90# ifdef CONFIG_SYS_I2C
91# error "Cannot define CONFIG_SYS_I2C when CONFIG_DM_I2C is used"
92# endif
93#endif
94
Simon Glass9a6598d2016-03-13 19:07:35 -060095#ifndef CONFIG_CMDLINE
96#undef CONFIG_CMDLINE_EDITING
97#undef CONFIG_SYS_LONGHELP
Simon Glass9a6598d2016-03-13 19:07:35 -060098#endif
99
Tom Rini26750c82012-06-19 12:54:34 +0000100#endif /* __CONFIG_FALLBACKS_H */