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