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