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