]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ti-u-boot/ti-u-boot.git/blob - include/config_fallbacks.h
Prepare v2024.04
[ti-u-boot/ti-u-boot.git] / include / config_fallbacks.h
1 /*
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  */
9 #ifndef __CONFIG_FALLBACKS_H
10 #define __CONFIG_FALLBACKS_H
12 #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
28 #ifndef CONFIG_SYS_BAUDRATE_TABLE
29 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200 }
30 #endif
32 /* Console I/O Buffer Size */
33 #ifndef CONFIG_SYS_CBSIZE
34 #if defined(CONFIG_CMD_KGDB)
35 #define CONFIG_SYS_CBSIZE       1024
36 #else
37 #define CONFIG_SYS_CBSIZE       256
38 #endif
39 #endif
41 #ifndef CONFIG_SYS_PBSIZE
42 #define CONFIG_SYS_PBSIZE       (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
43 #endif
45 #ifndef CONFIG_SYS_MAXARGS
46 #define CONFIG_SYS_MAXARGS      16
47 #endif
49 #if CONFIG_IS_ENABLED(DM_I2C)
50 # ifdef CONFIG_SYS_I2C
51 #  error "Cannot define CONFIG_SYS_I2C when CONFIG_DM_I2C is used"
52 # endif
53 #endif
55 #endif  /* __CONFIG_FALLBACKS_H */