f98f04b46f19ffab27010b456bc2d871e84a8f8e
[platform/kernel/u-boot.git] / include / configs / imx8mp_rsb3720.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2019 NXP
4  * Copyright 2022 Linaro
5  */
6
7 #ifndef __IMX8MP_RSB3720_H
8 #define __IMX8MP_RSB3720_H
9
10 #include <linux/sizes.h>
11 #include <linux/stringify.h>
12 #include <asm/arch/imx-regs.h>
13 #include <config_distro_bootcmd.h>
14
15 #define CONFIG_SYS_BOOTM_LEN            (32 * SZ_1M)
16
17 #define CONFIG_SYS_MONITOR_LEN          (512 * 1024)
18 #define CONFIG_SYS_UBOOT_BASE   (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
19
20 /* GUIDs for capsule updatable firmware images */
21 #define IMX8MP_RSB3720A1_4G_FIT_IMAGE_GUID \
22         EFI_GUID(0xb1251e89, 0x384a, 0x4635, 0xa8, 0x06, \
23                  0x3a, 0xa0, 0xb0, 0xe9, 0xf9, 0x65)
24
25 #define IMX8MP_RSB3720A1_6G_FIT_IMAGE_GUID \
26         EFI_GUID(0xb5fb6f08, 0xe142, 0x4db1, 0x97, 0xea, \
27                  0x5f, 0xd3, 0x6b, 0x9b, 0xe5, 0xb9)
28
29 #ifdef CONFIG_SPL_BUILD
30 #define CONFIG_SYS_SPL_MALLOC_START     0x42200000
31 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_512K /* 512 KB */
32
33 #define CONFIG_MALLOC_F_ADDR            0x184000 /* malloc f used before \
34                                                   * GD_FLG_FULL_MALLOC_INIT \
35                                                   * set \
36                                                   */
37
38 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
39
40 #if defined(CONFIG_NAND_BOOT)
41 #define CONFIG_SPL_NAND_MXS
42 #endif
43
44 #endif
45
46 /* ENET Config */
47 /* ENET1 */
48 #if defined(CONFIG_CMD_NET)
49 #define CONFIG_FEC_MXC_PHYADDR          4
50
51 #define DWC_NET_PHYADDR                 4
52 #ifdef CONFIG_DWC_ETH_QOS
53 #define CONFIG_SYS_NONCACHED_MEMORY     (1 * SZ_1M)     /* 1M */
54 #endif
55
56 #define PHY_ANEG_TIMEOUT 20000
57
58 #endif
59
60 #if CONFIG_IS_ENABLED(CMD_MMC)
61 # define BOOT_TARGET_MMC(func) \
62         func(MMC, mmc, 2)      \
63         func(MMC, mmc, 1)
64 #else
65 # define BOOT_TARGET_MMC(func)
66 #endif
67
68 #if CONFIG_IS_ENABLED(CMD_PXE)
69 # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
70 #else
71 # define BOOT_TARGET_PXE(func)
72 #endif
73
74 #if CONFIG_IS_ENABLED(CMD_DHCP)
75 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
76 #else
77 # define BOOT_TARGET_DHCP(func)
78 #endif
79
80 #define BOOT_TARGET_DEVICES(func) \
81         BOOT_TARGET_MMC(func) \
82         BOOT_TARGET_PXE(func) \
83         BOOT_TARGET_DHCP(func)
84
85 /* Initial environment variables */
86 #define CONFIG_EXTRA_ENV_SETTINGS               \
87         BOOTENV \
88         "script=boot.scr\0" \
89         "image=Image\0" \
90         "splashimage=0x50000000\0" \
91         "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
92         "fdt_addr=0x43000000\0"                 \
93         "fdt_addr_r=0x43000000\0"                       \
94         "boot_fit=no\0" \
95         "dfu_alt_info=mmc 2=flash-bin raw 0 0x1B00 mmcpart 1\0" \
96         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
97         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
98         "initrd_addr=0x43800000\0"              \
99         "bootm_size=0x10000000\0" \
100         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
101         "mmcpart=1\0" \
102         "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
103         "mmcautodetect=yes\0" \
104         "mmcargs=setenv bootargs ${jh_clk} console=${console} root=${mmcroot}\0 " \
105         "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
106         "bootscript=echo Running bootscript from mmc ...; " \
107                 "source\0" \
108         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
109         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
110         "kernel_addr_r=0x40480000\0" \
111         "pxefile_addr_r=0x40480000\0" \
112         "ramdisk_addr_r=0x43800000\0" \
113         "mmcboot=echo Booting from mmc ...; " \
114                 "run mmcargs; " \
115                 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
116                         "bootm ${loadaddr}; " \
117                 "else " \
118                         "if run loadfdt; then " \
119                                 "booti ${loadaddr} - ${fdt_addr}; " \
120                         "else " \
121                                 "echo WARN: Cannot load the DT; " \
122                         "fi; " \
123                 "fi;\0" \
124         "netargs=setenv bootargs ${jh_clk} console=${console} " \
125                 "root=/dev/nfs " \
126                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
127         "netboot=echo Booting from net ...; " \
128                 "run netargs;  " \
129                 "if test ${ip_dyn} = yes; then " \
130                         "setenv get_cmd dhcp; " \
131                 "else " \
132                         "setenv get_cmd tftp; " \
133                 "fi; " \
134                 "${get_cmd} ${loadaddr} ${image}; " \
135                 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
136                         "bootm ${loadaddr}; " \
137                 "else " \
138                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
139                                 "booti ${loadaddr} - ${fdt_addr}; " \
140                         "else " \
141                                 "echo WARN: Cannot load the DT; " \
142                         "fi; " \
143                 "fi;\0"
144
145 /* Link Definitions */
146 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
147 #define CONFIG_SYS_INIT_RAM_SIZE        0x80000
148
149
150 /* Totally 6GB or 4G DDR */
151 #define CONFIG_SYS_SDRAM_BASE           0x40000000
152 #define PHYS_SDRAM                      0x40000000
153 #if defined(CONFIG_TARGET_IMX8MP_RSB3720A1_6G)
154 #define PHYS_SDRAM_SIZE                 0xC0000000      /* 3 GB */
155 #define PHYS_SDRAM_2                    0x100000000
156 #define PHYS_SDRAM_2_SIZE               0xC0000000      /* 3 GB */
157 #elif defined(CONFIG_TARGET_IMX8MP_RSB3720A1_4G)
158 #define PHYS_SDRAM_SIZE                 0x80000000      /* 2 GB */
159 #define PHYS_SDRAM_2                    0xC0000000
160 #define PHYS_SDRAM_2_SIZE               0x80000000      /* 2 GB */
161 #endif
162
163 #define CONFIG_MXC_UART_BASE            UART3_BASE_ADDR
164
165 #define CONFIG_SYS_FSL_USDHC_NUM        2
166 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
167
168 #ifdef CONFIG_FSL_FSPI
169 #define FSL_FSPI_FLASH_SIZE             SZ_32M
170 #define FSL_FSPI_FLASH_NUM              1
171 #define FSPI0_BASE_ADDR                 0x30bb0000
172 #define FSPI0_AMBA_BASE                 0x0
173 #define CONFIG_FSPI_QUAD_SUPPORT
174
175 #define CONFIG_SYS_FSL_FSPI_AHB
176 #endif
177
178 #ifdef CONFIG_NAND_MXS
179
180 /* NAND stuff */
181 #define CONFIG_SYS_MAX_NAND_DEVICE     1
182 #define CONFIG_SYS_NAND_BASE           0x20000000
183 #endif /* CONFIG_NAND_MXS */
184
185 #endif /* __IMX8MP_RSB3720_H */