Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[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 #define CONFIG_SYS_INIT_SP_ADDR     (CONFIG_SYS_SDRAM_BASE + SZ_2M)
14
15 #define CONFIG_SYS_BOOTM_LEN        SZ_64M
16
17 #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
18
19 /* Environment options */
20
21 #define BOOT_TARGET_DEVICES(func) \
22         func(MMC, mmc, 0) \
23         func(DHCP, dhcp, na)
24
25 #include <config_distro_bootcmd.h>
26
27 #define CONFIG_EXTRA_ENV_SETTINGS \
28         "bootm_size=0x10000000\0" \
29         "kernel_addr_r=0x84000000\0" \
30         "fdt_addr_r=0x88000000\0" \
31         "scriptaddr=0x88100000\0" \
32         "pxefile_addr_r=0x88200000\0" \
33         "ramdisk_addr_r=0x88300000\0" \
34         BOOTENV
35
36 #endif /* __CONFIG_H */