Convert CONFIG_SYS_SPL_MALLOC_SIZE et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / imx8mn_beacon.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2020 Compass Electronics Group, LLC
4  */
5
6 #ifndef __IMX8MN_BEACON_H
7 #define __IMX8MN_BEACON_H
8
9 #include <linux/sizes.h>
10 #include <asm/arch/imx-regs.h>
11
12 #define CONFIG_SYS_MONITOR_LEN  SZ_512K
13 #define CONFIG_SYS_UBOOT_BASE   \
14         (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
15
16 #ifdef CONFIG_SPL_BUILD
17 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
18 #define CONFIG_MALLOC_F_ADDR            0x184000
19
20 /* For RAW image gives a error info not panic */
21 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
22
23 #endif /* CONFIG_SPL_BUILD */
24
25 /* Initial environment variables */
26 #define CONFIG_EXTRA_ENV_SETTINGS               \
27         "script=boot.scr\0" \
28         "image=Image\0" \
29         "ramdiskimage=rootfs.cpio.uboot\0" \
30         "console=ttymxc1,115200\0" \
31         "fdt_addr=0x43000000\0"                 \
32         "ramdisk_addr=0x44000000\0" \
33         "boot_fdt=try\0" \
34         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
35         "initrd_addr=0x43800000\0"              \
36         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
37         "mmcpart=1\0" \
38         "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \
39         "mmcautodetect=yes\0" \
40         "mmcargs=setenv bootargs console=${console} " \
41         " root=PARTUUID=${uuid} rootwait rw ${mtdparts} ${optargs}\0" \
42         "ramargs=setenv bootargs console=${console} root=/dev/ram rw " \
43         " ${optargs}\0" \
44         "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
45         "bootscript=echo Running bootscript from mmc ...; " \
46                 "source\0" \
47         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
48         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
49         "loadramdisk=load mmc ${mmcdev} ${ramdisk_addr} ${ramdiskimage}\0"\
50         "mmcboot=echo Booting from mmc ...; " \
51                 "run finduuid; run mmcargs; " \
52                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
53                         "if run loadfdt; then " \
54                                 "booti ${loadaddr} - ${fdt_addr}; " \
55                         "else " \
56                                 "echo WARN: Cannot load the DT; " \
57                         "fi; " \
58                 "else " \
59                         "echo wait for boot; " \
60                 "fi;\0" \
61         "netargs=setenv bootargs console=${console} " \
62                 "root=/dev/nfs " \
63                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
64         "netboot=echo Booting from net ...; " \
65                 "run netargs;  " \
66                 "if test ${ip_dyn} = yes; then " \
67                         "setenv get_cmd dhcp; " \
68                 "else " \
69                         "setenv get_cmd tftp; " \
70                 "fi; " \
71                 "${get_cmd} ${loadaddr} ${image}; " \
72                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
73                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
74                                 "booti ${loadaddr} - ${fdt_addr}; " \
75                         "else " \
76                                 "echo WARN: Cannot load the DT; " \
77                         "fi; " \
78                 "else " \
79                         "booti; " \
80                 "fi;\0" \
81         "ramboot=echo Booting from RAMdisk...; "\
82                 "run loadimage; run loadfdt; fdt addr $fdt_addr; "\
83                 "run loadramdisk; run ramargs; " \
84                 "booti ${loadaddr} ${ramdisk_addr} ${fdt_addr} ${optargs}\0"
85
86 /* Link Definitions */
87
88 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
89 #define CONFIG_SYS_INIT_RAM_SIZE        0x200000
90
91 #define CONFIG_SYS_SDRAM_BASE           0x40000000
92 #define PHYS_SDRAM                      0x40000000
93 #if CONFIG_IS_ENABLED(IMX8MN_BEACON_2GB_LPDDR)
94 #define PHYS_SDRAM_SIZE         0x80000000 /* 2GB DDR */
95 #else
96 #define PHYS_SDRAM_SIZE         0x40000000 /* 1GB DDR */
97 #endif
98
99 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(2)
100
101 #endif