Convert CONFIG_ENV_IS_IN_SPI_FLASH et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / octeontx2_common.h
1 /* SPDX-License-Identifier:    GPL-2.0
2  * Copyright (C) 2018 Marvell International Ltd.
3  *
4  * https://spdx.org/licenses
5  */
6
7 #ifndef __OCTEONTX2_COMMON_H__
8 #define __OCTEONTX2_COMMON_H__
9
10 #define CONFIG_SUPPORT_RAW_INITRD
11
12 /** Maximum size of image supported for bootm (and bootable FIT images) */
13 #define CONFIG_SYS_BOOTM_LEN            (256 << 20)
14
15 /** Memory base address */
16 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_TEXT_BASE
17
18 /** Stack starting address */
19 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0xffff0)
20
21 #define CONFIG_LAST_STAGE_INIT
22
23 /* Autoboot options */
24 #define CONFIG_RESET_TO_RETRY
25 #define CONFIG_BOOT_RETRY_TIME          -1
26 #define CONFIG_BOOT_RETRY_MIN           30
27
28 /* BOOTP options */
29 #define CONFIG_BOOTP_BOOTFILESIZE
30
31 /** Extra environment settings */
32 #define CONFIG_EXTRA_ENV_SETTINGS       \
33                                         "loadaddr=20080000\0"   \
34                                         "ethrotate=yes\0"       \
35                                         "autoload=0\0"
36
37 /* Monitor Command Prompt */
38 #define CONFIG_SYS_CBSIZE               1024    /** Console I/O Buffer Size */
39 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
40
41 #define CONFIG_SYS_MAXARGS              64      /** max command args */
42
43 #define CONFIG_SYS_MMC_MAX_BLK_COUNT    8192
44
45 #undef CONFIG_SYS_PROMPT
46 #define CONFIG_SYS_PROMPT               env_get("prompt")
47
48 #if defined(CONFIG_MMC_OCTEONTX)
49 #define MMC_SUPPORTS_TUNING
50 /** EMMC specific defines */
51 #define CONFIG_SUPPORT_EMMC_RPMB
52 #endif
53
54 #endif /* __OCTEONTX2_COMMON_H__ */