Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[platform/kernel/u-boot.git] / include / configs / stm32mp15_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
2 /*
3  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4  *
5  * Configuration settings for the STM32MP15x CPU
6  */
7
8 #ifndef __CONFIG_STM32MP15_COMMMON_H
9 #define __CONFIG_STM32MP15_COMMMON_H
10 #include <linux/sizes.h>
11 #include <asm/arch/stm32.h>
12
13 /*
14  * Configuration of the external SRAM memory used by U-Boot
15  */
16 #define CONFIG_SYS_SDRAM_BASE                   STM32_DDR_BASE
17 #define CONFIG_SYS_INIT_SP_ADDR                 CONFIG_SYS_TEXT_BASE
18
19 /*
20  * Console I/O buffer size
21  */
22 #define CONFIG_SYS_CBSIZE                       SZ_1K
23
24 /*
25  * For booting Linux, use the first 256 MB of memory, since this is
26  * the maximum mapped by the Linux kernel during initialization.
27  */
28 #define CONFIG_SYS_BOOTMAPSZ            SZ_256M
29
30 /* Extend size of kernel image for uncompression */
31 #define CONFIG_SYS_BOOTM_LEN            SZ_32M
32
33 /* SPL support */
34 #ifdef CONFIG_SPL
35 /* SPL use DDR */
36 #define CONFIG_SYS_SPL_MALLOC_START     0xC0300000
37 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x01D00000
38
39 /* Restrict SPL to fit within SYSRAM */
40 #define STM32_SYSRAM_END                (STM32_SYSRAM_BASE + STM32_SYSRAM_SIZE)
41 #define CONFIG_SPL_MAX_FOOTPRINT        (STM32_SYSRAM_END - CONFIG_SPL_TEXT_BASE)
42 #define CONFIG_SPL_STACK                (STM32_SYSRAM_BASE + \
43                                          STM32_SYSRAM_SIZE)
44 #endif /* #ifdef CONFIG_SPL */
45 /*MMC SD*/
46 #define CONFIG_SYS_MMC_MAX_DEVICE       3
47
48 /* NAND support */
49 #define CONFIG_SYS_MAX_NAND_DEVICE      1
50
51 /* Ethernet need */
52 #ifdef CONFIG_DWC_ETH_QOS
53 #define CONFIG_SERVERIP                 192.168.1.1
54 #define CONFIG_SYS_AUTOLOAD             "no"
55 #endif
56
57 /*****************************************************************************/
58 #ifdef CONFIG_DISTRO_DEFAULTS
59 /*****************************************************************************/
60
61 #if !defined(CONFIG_SPL_BUILD)
62
63 #ifdef CONFIG_CMD_MMC
64 #define BOOT_TARGET_MMC0(func)  func(MMC, mmc, 0)
65 #define BOOT_TARGET_MMC1(func)  func(MMC, mmc, 1)
66 #define BOOT_TARGET_MMC2(func)  func(MMC, mmc, 2)
67 #else
68 #define BOOT_TARGET_MMC0(func)
69 #define BOOT_TARGET_MMC1(func)
70 #define BOOT_TARGET_MMC2(func)
71 #endif
72
73 #ifdef CONFIG_NET
74 #define BOOT_TARGET_PXE(func)   func(PXE, pxe, na)
75 #else
76 #define BOOT_TARGET_PXE(func)
77 #endif
78
79 #ifdef CONFIG_CMD_UBIFS
80 #define BOOT_TARGET_UBIFS(func) func(UBIFS, ubifs, 0)
81 #else
82 #define BOOT_TARGET_UBIFS(func)
83 #endif
84
85 #ifdef CONFIG_CMD_USB
86 #define BOOT_TARGET_USB(func)   func(USB, usb, 0)
87 #else
88 #define BOOT_TARGET_USB(func)
89 #endif
90
91 #define BOOT_TARGET_DEVICES(func)       \
92         BOOT_TARGET_MMC1(func)          \
93         BOOT_TARGET_UBIFS(func)         \
94         BOOT_TARGET_MMC0(func)          \
95         BOOT_TARGET_MMC2(func)          \
96         BOOT_TARGET_USB(func)           \
97         BOOT_TARGET_PXE(func)
98
99 /*
100  * default bootcmd for stm32mp1:
101  * for serial/usb: execute the stm32prog command
102  * for mmc boot (eMMC, SD card), distro boot on the same mmc device
103  * for nand or spi-nand boot, distro boot with ubifs on UBI partition
104  * for nor boot, use the default distro order in ${boot_targets}
105  */
106 #define STM32MP_BOOTCMD "bootcmd_stm32mp=" \
107         "echo \"Boot over ${boot_device}${boot_instance}!\";" \
108         "if test ${boot_device} = serial || test ${boot_device} = usb;" \
109         "then stm32prog ${boot_device} ${boot_instance}; " \
110         "else " \
111                 "run env_check;" \
112                 "if test ${boot_device} = mmc;" \
113                 "then env set boot_targets \"mmc${boot_instance}\"; fi;" \
114                 "if test ${boot_device} = nand ||" \
115                   " test ${boot_device} = spi-nand ;" \
116                 "then env set boot_targets ubifs0; fi;" \
117                 "run distro_bootcmd;" \
118         "fi;\0"
119
120 #ifdef CONFIG_FASTBOOT_CMD_OEM_FORMAT
121 /* eMMC default partitions for fastboot command: oem format */
122 #define STM32MP_PARTS_DEFAULT \
123         "partitions=" \
124         "name=ssbl,size=2M;" \
125         "name=bootfs,size=64MB,bootable;" \
126         "name=vendorfs,size=16M;" \
127         "name=rootfs,size=746M;" \
128         "name=userfs,size=-\0"
129 #else
130 #define STM32MP_PARTS_DEFAULT
131 #endif
132
133 #define STM32MP_EXTRA \
134         "env_check=if env info -p -d -q; then env save; fi\0" \
135         "boot_net_usb_start=true\0"
136
137 #ifndef STM32MP_BOARD_EXTRA_ENV
138 #define STM32MP_BOARD_EXTRA_ENV
139 #endif
140
141 #include <config_distro_bootcmd.h>
142
143 /*
144  * memory layout for 32M uncompressed/compressed kernel,
145  * 1M fdt, 1M script, 1M pxe and 1M for overlay
146  * and the ramdisk at the end.
147  */
148 #define __KERNEL_ADDR_R     __stringify(0xc2000000)
149 #define __FDT_ADDR_R        __stringify(0xc4000000)
150 #define __SCRIPT_ADDR_R     __stringify(0xc4100000)
151 #define __PXEFILE_ADDR_R    __stringify(0xc4200000)
152 #define __FDTOVERLAY_ADDR_R __stringify(0xc4300000)
153 #define __RAMDISK_ADDR_R    __stringify(0xc4400000)
154
155 #define STM32MP_MEM_LAYOUT \
156         "kernel_addr_r=" __KERNEL_ADDR_R "\0" \
157         "fdt_addr_r=" __FDT_ADDR_R "\0" \
158         "scriptaddr=" __SCRIPT_ADDR_R "\0" \
159         "pxefile_addr_r=" __PXEFILE_ADDR_R "\0" \
160         "fdtoverlay_addr_r=" __FDTOVERLAY_ADDR_R "\0" \
161         "ramdisk_addr_r=" __RAMDISK_ADDR_R "\0"
162
163 #define CONFIG_EXTRA_ENV_SETTINGS \
164         STM32MP_MEM_LAYOUT \
165         STM32MP_BOOTCMD \
166         STM32MP_PARTS_DEFAULT \
167         BOOTENV \
168         STM32MP_EXTRA \
169         STM32MP_BOARD_EXTRA_ENV
170
171 #endif /* ifndef CONFIG_SPL_BUILD */
172 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
173
174 #endif /* __CONFIG_STM32MP15_COMMMON_H */