1 /* SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2018 Marvell International Ltd.
5 * https://spdx.org/licenses
8 #ifndef __OCTEONTX_COMMON_H__
9 #define __OCTEONTX_COMMON_H__
11 #ifdef CONFIG_DISTRO_DEFAULTS
12 #define BOOT_TARGET_DEVICES(func) \
18 #include <config_distro_bootcmd.h>
19 /* Extra environment variables */
20 #define CONFIG_EXTRA_ENV_SETTINGS \
22 "loadaddr=0x20080000\0" \
23 "kernel_addr_r=0x02000000\0" \
24 "ramdisk_addr_r=0x03000000\0" \
25 "scriptaddr=0x04000000\0" \
30 /** Extra environment settings */
31 #define CONFIG_EXTRA_ENV_SETTINGS \
32 "loadaddr=20080000\0" \
35 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
37 /** Maximum size of image supported for bootm (and bootable FIT images) */
38 #define CONFIG_SYS_BOOTM_LEN (256 << 20)
40 /** Memory base address */
41 #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_TEXT_BASE
43 /** Stack starting address */
44 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0xffff0)
46 /** Heap size for U-Boot */
47 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 64 * 1024 * 1024)
49 #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
51 /* Allow environment variable to be overwritten */
52 #define CONFIG_ENV_OVERWRITE
54 /* Autoboot options */
55 #define CONFIG_RESET_TO_RETRY
56 #define CONFIG_BOOT_RETRY_TIME -1
57 #define CONFIG_BOOT_RETRY_MIN 30
60 #define CONFIG_BOOTP_BOOTFILESIZE
62 /* AHCI support Definitions */
64 /** Enable 48-bit SATA addressing */
66 /** Enable 64-bit addressing */
67 # define CONFIG_SYS_64BIT_LBA
70 /***** SPI Defines *********/
71 #ifdef CONFIG_DM_SPI_FLASH
72 # define CONFIG_SF_DEFAULT_BUS 0
73 # define CONFIG_SF_DEFAULT_CS 0
76 /** Environment defines */
77 #if defined(CONFIG_ENV_IS_IN_MMC)
78 #define CONFIG_SYS_MMC_ENV_DEV 0
81 /* Monitor Command Prompt */
82 #define CONFIG_SYS_CBSIZE 1024 /** Console I/O Buffer Size */
83 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
85 #define CONFIG_SYS_MAXARGS 64 /** max command args */
87 #define CONFIG_SYS_MMC_MAX_BLK_COUNT 8192
89 #undef CONFIG_SYS_PROMPT
90 #define CONFIG_SYS_PROMPT env_get("prompt")
92 /** EMMC specific defines */
93 #if defined(CONFIG_MMC_OCTEONTX)
94 #define CONFIG_SUPPORT_EMMC_BOOT
95 #define CONFIG_SUPPORT_EMMC_RPMB
98 #if defined(CONFIG_NAND_OCTEONTX)
99 /*#define CONFIG_MTD_CONCAT */
100 #define CONFIG_SYS_MAX_NAND_DEVICE 8
101 #define CONFIG_SYS_NAND_ONFI_DETECTION
104 #endif /* __OCTEONTX_COMMON_H__ */