73a14b25de67b941ba686fa61ac81838dbde7766
[platform/kernel/u-boot.git] / include / configs / octeontx_common.h
1 /* SPDX-License-Identifier:    GPL-2.0
2  *
3  * Copyright (C) 2018 Marvell International Ltd.
4  *
5  * https://spdx.org/licenses
6  */
7
8 #ifndef __OCTEONTX_COMMON_H__
9 #define __OCTEONTX_COMMON_H__
10
11 #ifdef CONFIG_DISTRO_DEFAULTS
12 #define BOOT_TARGET_DEVICES(func) \
13         func(MMC, mmc, 0) \
14         func(MMC, mmc, 1) \
15         func(USB, usb, 0) \
16         func(SCSI, scsi, 0)
17
18 #include <config_distro_bootcmd.h>
19 /* Extra environment variables */
20 #define CONFIG_EXTRA_ENV_SETTINGS       \
21         "loadaddr=0x20080000\0"         \
22         "kernel_addr_r=0x02000000\0"    \
23         "ramdisk_addr_r=0x03000000\0"   \
24         "scriptaddr=0x04000000\0"       \
25         BOOTENV
26
27 #else
28
29 /** Extra environment settings */
30 #define CONFIG_EXTRA_ENV_SETTINGS       \
31         "loadaddr=20080000\0"           \
32         "autoload=0\0"
33
34 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
35
36 /** Maximum size of image supported for bootm (and bootable FIT images) */
37 #define CONFIG_SYS_BOOTM_LEN            (256 << 20)
38
39 /** Memory base address */
40 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_TEXT_BASE
41
42 /** Stack starting address */
43
44 /** Heap size for U-Boot */
45
46 #define CONFIG_SYS_MMC_MAX_BLK_COUNT    8192
47
48 /** EMMC specific defines */
49
50 #if defined(CONFIG_NAND_OCTEONTX)
51 #define CONFIG_SYS_MAX_NAND_DEVICE 8
52 #endif
53
54 #endif /* __OCTEONTX_COMMON_H__ */