c6b296281424f22d690691b3144e39d0313f6e2b
[platform/kernel/u-boot.git] / include / configs / imx8mn_bsh_smm_s2.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2021 Collabora Ltd.
4  */
5
6 #ifndef __IMX8MN_BSH_SMM_S2_H
7 #define __IMX8MN_BSH_SMM_S2_H
8
9 #include <configs/imx8mn_bsh_smm_s2_common.h>
10
11 #define BOOT_TARGET_DEVICES(func) \
12         func(NAND, nand, 0) \
13
14 #include <config_distro_bootcmd.h>
15
16 #define NANDARGS \
17         "nandargs=setenv bootargs console=${console} " \
18                 "${optargs} " \
19                 "mtdparts=${mtdparts} " \
20                 "root=${nandroot} " \
21                 "rootfstype=${nandrootfstype}\0" \
22         "nandroot=ubi0:root rw ubi.mtd=nandrootfs\0" \
23         "nandrootfstype=ubifs rootwait\0" \
24         "nandboot=echo Booting from nand ...; " \
25                 "run nandargs; " \
26                 "nand read ${fdt_addr_r} nanddtb; " \
27                 "nand read ${loadaddr} nandkernel; " \
28                 "booti ${loadaddr} - ${fdt_addr_r}\0"
29
30 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
31         "bootcmd_" #devtypel #instance "=" \
32         "run nandboot\0"
33
34 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
35         #devtypel #instance " "
36
37 /* Initial environment variables */
38 #define CONFIG_EXTRA_ENV_SETTINGS \
39         MEM_LAYOUT_ENV_SETTINGS \
40         NANDARGS \
41         BOOTENV
42
43 #define PHYS_SDRAM_SIZE                 SZ_256M
44
45 /* NAND */
46 #define CONFIG_SYS_MAX_NAND_DEVICE      1
47
48 #define CONFIG_SYS_NAND_BASE            0x20000000
49
50 #endif /* __IMX8MN_BSH_SMM_S2_H */