blob: 6b40cdb01779f69d9a4f761bd2534a9e246f001c [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4 *
5 * Configuration settings for the STM32MP15x CPU
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +01006 */
7
Patrick Delaunayf9484bc2021-10-22 10:19:25 +02008#ifndef __CONFIG_STM32MP15_COMMMON_H
9#define __CONFIG_STM32MP15_COMMMON_H
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010010#include <linux/sizes.h>
11#include <asm/arch/stm32.h>
12
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010013/*
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010014 * 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
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010019/*
20 * Console I/O buffer size
21 */
22#define CONFIG_SYS_CBSIZE SZ_1K
23
Patrick Delaunaya5bf69e2020-02-10 11:54:11 +010024/*
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
Patrick Delaunay80e17eb2019-02-27 17:01:21 +010030/* Extend size of kernel image for uncompression */
Patrick Delaunaya5bf69e2020-02-10 11:54:11 +010031#define CONFIG_SYS_BOOTM_LEN SZ_32M
Patrick Delaunay80e17eb2019-02-27 17:01:21 +010032
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010033/* SPL support */
34#ifdef CONFIG_SPL
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010035/* SPL use DDR */
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010036#define CONFIG_SYS_SPL_MALLOC_START 0xC0300000
Alexandru Gagniuc4ad344a2021-03-22 08:19:59 -050037#define CONFIG_SYS_SPL_MALLOC_SIZE 0x01D00000
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010038
Alexandru Gagniuc8762dce2021-03-22 08:20:01 -050039/* 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)
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010042#define CONFIG_SPL_STACK (STM32_SYSRAM_BASE + \
43 STM32_SYSRAM_SIZE)
44#endif /* #ifdef CONFIG_SPL */
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010045/*MMC SD*/
46#define CONFIG_SYS_MMC_MAX_DEVICE 3
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010047
Patrick Delaunay67865262019-07-02 13:26:05 +020048/* NAND support */
Patrick Delaunay67865262019-07-02 13:26:05 +020049#define CONFIG_SYS_MAX_NAND_DEVICE 1
50
Christophe Roullier515ff1b2019-05-17 15:08:46 +020051/* Ethernet need */
52#ifdef CONFIG_DWC_ETH_QOS
Christophe Roullier515ff1b2019-05-17 15:08:46 +020053#define CONFIG_SERVERIP 192.168.1.1
Christophe Roullier515ff1b2019-05-17 15:08:46 +020054#define CONFIG_SYS_AUTOLOAD "no"
55#endif
56
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010057/*****************************************************************************/
58#ifdef CONFIG_DISTRO_DEFAULTS
59/*****************************************************************************/
60
61#if !defined(CONFIG_SPL_BUILD)
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010062
Marek Vasut5fe232d2020-01-10 01:26:54 +010063#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
Tom Rini8a091622021-07-09 10:11:55 -040085#ifdef CONFIG_CMD_USB
Marek Vasutf2c47202021-02-12 13:50:52 +010086#define BOOT_TARGET_USB(func) func(USB, usb, 0)
87#else
88#define BOOT_TARGET_USB(func)
89#endif
90
Marek Vasut5fe232d2020-01-10 01:26:54 +010091#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) \
Marek Vasutf2c47202021-02-12 13:50:52 +010096 BOOT_TARGET_USB(func) \
Marek Vasut5fe232d2020-01-10 01:26:54 +010097 BOOT_TARGET_PXE(func)
Christophe Roullier515ff1b2019-05-17 15:08:46 +020098
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010099/*
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200100 * default bootcmd for stm32mp1:
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100101 * for serial/usb: execute the stm32prog command
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200102 * 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}
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100105 */
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100106#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 " \
Patrick Delaunayd695d892019-07-05 17:20:21 +0200111 "run env_check;" \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100112 "if test ${boot_device} = mmc;" \
113 "then env set boot_targets \"mmc${boot_instance}\"; fi;" \
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100114 "if test ${boot_device} = nand ||" \
115 " test ${boot_device} = spi-nand ;" \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100116 "then env set boot_targets ubifs0; fi;" \
117 "run distro_bootcmd;" \
118 "fi;\0"
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100119
Jean-Philippe ROMAIN40103852020-09-09 15:24:33 +0200120#ifdef CONFIG_FASTBOOT_CMD_OEM_FORMAT
121/* eMMC default partitions for fastboot command: oem format */
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200122#define STM32MP_PARTS_DEFAULT \
Jean-Philippe ROMAIN40103852020-09-09 15:24:33 +0200123 "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
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200130#define STM32MP_PARTS_DEFAULT
Jean-Philippe ROMAIN40103852020-09-09 15:24:33 +0200131#endif
132
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200133#define STM32MP_EXTRA \
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200134 "env_check=if env info -p -d -q; then env save; fi\0" \
135 "boot_net_usb_start=true\0"
136
Marek Vasute43ec1f2021-11-13 03:24:44 +0100137#ifndef STM32MP_BOARD_EXTRA_ENV
138#define STM32MP_BOARD_EXTRA_ENV
139#endif
140
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100141#include <config_distro_bootcmd.h>
Patrick Delaunayfc69c682018-03-20 10:54:54 +0100142
Patrick Delaunay80e17eb2019-02-27 17:01:21 +0100143/*
144 * memory layout for 32M uncompressed/compressed kernel,
Patrick Delaunay9d576762021-06-28 14:42:08 +0200145 * 1M fdt, 1M script, 1M pxe and 1M for overlay
Patrick Delaunay80e17eb2019-02-27 17:01:21 +0100146 * and the ramdisk at the end.
147 */
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200148#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
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100163#define CONFIG_EXTRA_ENV_SETTINGS \
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200164 STM32MP_MEM_LAYOUT \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100165 STM32MP_BOOTCMD \
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200166 STM32MP_PARTS_DEFAULT \
Patrick Delaunay6703cec2019-07-05 17:20:22 +0200167 BOOTENV \
Marek Vasute43ec1f2021-11-13 03:24:44 +0100168 STM32MP_EXTRA \
169 STM32MP_BOARD_EXTRA_ENV
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100170
171#endif /* ifndef CONFIG_SPL_BUILD */
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100172#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100173
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200174#endif /* __CONFIG_STM32MP15_COMMMON_H */