blob: 0be26ef3287f6ea8e478940aba5613162ad8474a [file] [log] [blame]
Suneel Garapati03c22882019-10-19 18:37:55 -07001/* 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
Tim Harvey8bb5a662021-03-25 17:07:33 -070011#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 */
Tom Rini0613c362022-12-04 10:03:50 -050020#define CFG_EXTRA_ENV_SETTINGS \
Tim Harvey8bb5a662021-03-25 17:07:33 -070021 "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 */
Tom Rini0613c362022-12-04 10:03:50 -050030#define CFG_EXTRA_ENV_SETTINGS \
Tim Harvey8bb5a662021-03-25 17:07:33 -070031 "loadaddr=20080000\0" \
32 "autoload=0\0"
33
34#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
35
Suneel Garapati03c22882019-10-19 18:37:55 -070036/** Maximum size of image supported for bootm (and bootable FIT images) */
Suneel Garapati03c22882019-10-19 18:37:55 -070037
38/** Memory base address */
Tom Riniaa6e94d2022-11-16 13:10:37 -050039#define CFG_SYS_SDRAM_BASE CONFIG_TEXT_BASE
Suneel Garapati03c22882019-10-19 18:37:55 -070040
41/** Stack starting address */
Suneel Garapati03c22882019-10-19 18:37:55 -070042
43/** Heap size for U-Boot */
Suneel Garapati03c22882019-10-19 18:37:55 -070044
Suneel Garapati03c22882019-10-19 18:37:55 -070045/** EMMC specific defines */
Suneel Garapati03c22882019-10-19 18:37:55 -070046
Suneel Garapati03c22882019-10-19 18:37:55 -070047#endif /* __OCTEONTX_COMMON_H__ */