Convert CONFIG_SYS_BOOTM_LEN to Kconfig
[platform/kernel/u-boot.git] / include / configs / microchip_mpfs_icicle.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2019 Microchip Technology Inc.
4  * Padmarao Begari <padmarao.begari@microchip.com>
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #include <linux/sizes.h>
11
12 #define CONFIG_SYS_SDRAM_BASE       0x80000000
13
14 #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
15
16 /* Environment options */
17
18 #define BOOT_TARGET_DEVICES(func) \
19         func(MMC, mmc, 0) \
20         func(DHCP, dhcp, na)
21
22 #include <config_distro_bootcmd.h>
23
24 #define CONFIG_EXTRA_ENV_SETTINGS \
25         "bootm_size=0x10000000\0" \
26         "kernel_addr_r=0x84000000\0" \
27         "fdt_addr_r=0x88000000\0" \
28         "scriptaddr=0x88100000\0" \
29         "pxefile_addr_r=0x88200000\0" \
30         "ramdisk_addr_r=0x88300000\0" \
31         BOOTENV
32
33 #endif /* __CONFIG_H */