blob: 5e1c0073b0b3589d4696177e2e0557301a3780b3 [file] [log] [blame]
Suneel Garapatid9e72462019-10-19 18:47:37 -07001/* 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
Suneel Garapatid9e72462019-10-19 18:47:37 -070021#define CONFIG_LAST_STAGE_INIT
22
23/* Allow environment variable to be overwritten */
24#define CONFIG_ENV_OVERWRITE
25
Suneel Garapatid9e72462019-10-19 18:47:37 -070026/* Autoboot options */
27#define CONFIG_RESET_TO_RETRY
28#define CONFIG_BOOT_RETRY_TIME -1
29#define CONFIG_BOOT_RETRY_MIN 30
30
31/* BOOTP options */
32#define CONFIG_BOOTP_BOOTFILESIZE
33
34/** Extra environment settings */
35#define CONFIG_EXTRA_ENV_SETTINGS \
36 "loadaddr=20080000\0" \
37 "ethrotate=yes\0" \
38 "autoload=0\0"
39
40/** Environment defines */
41#if defined(CONFIG_ENV_IS_IN_MMC)
42#define CONFIG_SYS_MMC_ENV_DEV 0
43#endif
44
45/* Monitor Command Prompt */
46#define CONFIG_SYS_CBSIZE 1024 /** Console I/O Buffer Size */
47#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
48
49#define CONFIG_SYS_MAXARGS 64 /** max command args */
50
51#define CONFIG_SYS_MMC_MAX_BLK_COUNT 8192
52
53#undef CONFIG_SYS_PROMPT
54#define CONFIG_SYS_PROMPT env_get("prompt")
55
56#if defined(CONFIG_MMC_OCTEONTX)
57#define MMC_SUPPORTS_TUNING
58/** EMMC specific defines */
59#define CONFIG_SUPPORT_EMMC_BOOT
60#define CONFIG_SUPPORT_EMMC_RPMB
Suneel Garapatid9e72462019-10-19 18:47:37 -070061#endif
62
63#endif /* __OCTEONTX2_COMMON_H__ */