blob: 214901c557f48fd86dd0e2ffa5f798afe542c8ad [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
Patrick Delaunayf8598d92018-03-12 10:46:18 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4 *
5 * Configuration settings for the STM32MP15x CPU
Patrick Delaunayf8598d92018-03-12 10:46:18 +01006 */
7
Patrick Delaunayc67ca252021-10-22 10:19:25 +02008#ifndef __CONFIG_STM32MP15_COMMMON_H
9#define __CONFIG_STM32MP15_COMMMON_H
Patrick Delaunayf8598d92018-03-12 10:46:18 +010010#include <linux/sizes.h>
11#include <asm/arch/stm32.h>
12
Patrick Delaunayf8598d92018-03-12 10:46:18 +010013/*
Patrick Delaunayf8598d92018-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
Patrick Delaunayf8598d92018-03-12 10:46:18 +010017
Patrick Delaunayf8598d92018-03-12 10:46:18 +010018/*
Patrick Delaunayac5769c2020-02-10 11:54:11 +010019 * For booting Linux, use the first 256 MB of memory, since this is
20 * the maximum mapped by the Linux kernel during initialization.
21 */
22#define CONFIG_SYS_BOOTMAPSZ SZ_256M
23
Patrick Delaunayf8598d92018-03-12 10:46:18 +010024/*MMC SD*/
25#define CONFIG_SYS_MMC_MAX_DEVICE 3
Patrick Delaunayf8598d92018-03-12 10:46:18 +010026
Patrick Delaunayc840c292019-07-02 13:26:05 +020027/* NAND support */
Patrick Delaunayc840c292019-07-02 13:26:05 +020028#define CONFIG_SYS_MAX_NAND_DEVICE 1
29
Christophe Roullierb4d4fe72019-05-17 15:08:46 +020030/* Ethernet need */
31#ifdef CONFIG_DWC_ETH_QOS
Christophe Roullierb4d4fe72019-05-17 15:08:46 +020032#define CONFIG_SERVERIP 192.168.1.1
Christophe Roullierb4d4fe72019-05-17 15:08:46 +020033#endif
34
Sughosh Ganud70c4a02022-10-21 18:15:58 +053035#define STM32MP_FIP_IMAGE_GUID \
36 EFI_GUID(0x19d5df83, 0x11b0, 0x457b, 0xbe, 0x2c, \
37 0x75, 0x59, 0xc1, 0x31, 0x42, 0xa5)
38
Patrick Delaunay842ebb52019-02-27 17:01:18 +010039/*****************************************************************************/
40#ifdef CONFIG_DISTRO_DEFAULTS
41/*****************************************************************************/
42
43#if !defined(CONFIG_SPL_BUILD)
Patrick Delaunayf8598d92018-03-12 10:46:18 +010044
Marek Vasutc3ab0fe2020-01-10 01:26:54 +010045#ifdef CONFIG_CMD_MMC
46#define BOOT_TARGET_MMC0(func) func(MMC, mmc, 0)
47#define BOOT_TARGET_MMC1(func) func(MMC, mmc, 1)
48#define BOOT_TARGET_MMC2(func) func(MMC, mmc, 2)
49#else
50#define BOOT_TARGET_MMC0(func)
51#define BOOT_TARGET_MMC1(func)
52#define BOOT_TARGET_MMC2(func)
53#endif
54
55#ifdef CONFIG_NET
56#define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
57#else
58#define BOOT_TARGET_PXE(func)
59#endif
60
61#ifdef CONFIG_CMD_UBIFS
Pali Roháre6ca1482022-05-31 10:32:36 +020062#define BOOT_TARGET_UBIFS(func) func(UBIFS, ubifs, 0, UBI, boot)
Marek Vasutc3ab0fe2020-01-10 01:26:54 +010063#else
64#define BOOT_TARGET_UBIFS(func)
65#endif
66
Tom Rinie8d3eaa2021-07-09 10:11:55 -040067#ifdef CONFIG_CMD_USB
Marek Vasut0bbfae72021-02-12 13:50:52 +010068#define BOOT_TARGET_USB(func) func(USB, usb, 0)
69#else
70#define BOOT_TARGET_USB(func)
71#endif
72
Marek Vasutc3ab0fe2020-01-10 01:26:54 +010073#define BOOT_TARGET_DEVICES(func) \
74 BOOT_TARGET_MMC1(func) \
75 BOOT_TARGET_UBIFS(func) \
76 BOOT_TARGET_MMC0(func) \
77 BOOT_TARGET_MMC2(func) \
Marek Vasut0bbfae72021-02-12 13:50:52 +010078 BOOT_TARGET_USB(func) \
Marek Vasutc3ab0fe2020-01-10 01:26:54 +010079 BOOT_TARGET_PXE(func)
Christophe Roullierb4d4fe72019-05-17 15:08:46 +020080
Patrick Delaunay842ebb52019-02-27 17:01:18 +010081/*
Patrick Delaunay960debb2022-05-20 18:24:46 +020082 * default bootcmd for stm32mp15:
Patrick Delaunay842ebb52019-02-27 17:01:18 +010083 * for serial/usb: execute the stm32prog command
Patrick Delaunayc67ca252021-10-22 10:19:25 +020084 * for mmc boot (eMMC, SD card), distro boot on the same mmc device
85 * for nand or spi-nand boot, distro boot with ubifs on UBI partition
86 * for nor boot, use the default distro order in ${boot_targets}
Patrick Delaunay842ebb52019-02-27 17:01:18 +010087 */
Patrick Delaunay842ebb52019-02-27 17:01:18 +010088#define STM32MP_BOOTCMD "bootcmd_stm32mp=" \
89 "echo \"Boot over ${boot_device}${boot_instance}!\";" \
90 "if test ${boot_device} = serial || test ${boot_device} = usb;" \
91 "then stm32prog ${boot_device} ${boot_instance}; " \
92 "else " \
Patrick Delaunay22bed7e2019-07-05 17:20:21 +020093 "run env_check;" \
Patrick Delaunay842ebb52019-02-27 17:01:18 +010094 "if test ${boot_device} = mmc;" \
95 "then env set boot_targets \"mmc${boot_instance}\"; fi;" \
Patrick Delaunayb664a742020-03-18 09:22:52 +010096 "if test ${boot_device} = nand ||" \
97 " test ${boot_device} = spi-nand ;" \
Patrick Delaunay842ebb52019-02-27 17:01:18 +010098 "then env set boot_targets ubifs0; fi;" \
99 "run distro_bootcmd;" \
100 "fi;\0"
Patrick Delaunayf8598d92018-03-12 10:46:18 +0100101
Jean-Philippe ROMAINf35ce372020-09-09 15:24:33 +0200102#ifdef CONFIG_FASTBOOT_CMD_OEM_FORMAT
103/* eMMC default partitions for fastboot command: oem format */
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200104#define STM32MP_PARTS_DEFAULT \
Jean-Philippe ROMAINf35ce372020-09-09 15:24:33 +0200105 "partitions=" \
106 "name=ssbl,size=2M;" \
107 "name=bootfs,size=64MB,bootable;" \
108 "name=vendorfs,size=16M;" \
109 "name=rootfs,size=746M;" \
110 "name=userfs,size=-\0"
111#else
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200112#define STM32MP_PARTS_DEFAULT
Jean-Philippe ROMAINf35ce372020-09-09 15:24:33 +0200113#endif
114
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200115#define STM32MP_EXTRA \
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200116 "env_check=if env info -p -d -q; then env save; fi\0" \
117 "boot_net_usb_start=true\0"
118
Marek Vasute8e66802021-11-13 03:24:44 +0100119#ifndef STM32MP_BOARD_EXTRA_ENV
120#define STM32MP_BOARD_EXTRA_ENV
121#endif
122
Patrick Delaunayf8598d92018-03-12 10:46:18 +0100123#include <config_distro_bootcmd.h>
124
Patrick Delaunay2cf2b512019-02-27 17:01:21 +0100125/*
126 * memory layout for 32M uncompressed/compressed kernel,
Patrick Delaunay918609c2021-06-28 14:42:08 +0200127 * 1M fdt, 1M script, 1M pxe and 1M for overlay
Patrick Delaunay2cf2b512019-02-27 17:01:21 +0100128 * and the ramdisk at the end.
129 */
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200130#define __KERNEL_ADDR_R __stringify(0xc2000000)
131#define __FDT_ADDR_R __stringify(0xc4000000)
132#define __SCRIPT_ADDR_R __stringify(0xc4100000)
133#define __PXEFILE_ADDR_R __stringify(0xc4200000)
134#define __FDTOVERLAY_ADDR_R __stringify(0xc4300000)
135#define __RAMDISK_ADDR_R __stringify(0xc4400000)
136
137#define STM32MP_MEM_LAYOUT \
138 "kernel_addr_r=" __KERNEL_ADDR_R "\0" \
139 "fdt_addr_r=" __FDT_ADDR_R "\0" \
140 "scriptaddr=" __SCRIPT_ADDR_R "\0" \
141 "pxefile_addr_r=" __PXEFILE_ADDR_R "\0" \
142 "fdtoverlay_addr_r=" __FDTOVERLAY_ADDR_R "\0" \
143 "ramdisk_addr_r=" __RAMDISK_ADDR_R "\0"
144
Patrick Delaunayf8598d92018-03-12 10:46:18 +0100145#define CONFIG_EXTRA_ENV_SETTINGS \
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200146 STM32MP_MEM_LAYOUT \
Patrick Delaunay842ebb52019-02-27 17:01:18 +0100147 STM32MP_BOOTCMD \
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200148 STM32MP_PARTS_DEFAULT \
Patrick Delaunay2ed212c2019-07-05 17:20:22 +0200149 BOOTENV \
Marek Vasute8e66802021-11-13 03:24:44 +0100150 STM32MP_EXTRA \
151 STM32MP_BOARD_EXTRA_ENV
Patrick Delaunayf8598d92018-03-12 10:46:18 +0100152
153#endif /* ifndef CONFIG_SPL_BUILD */
Patrick Delaunay842ebb52019-02-27 17:01:18 +0100154#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
Patrick Delaunayf8598d92018-03-12 10:46:18 +0100155
Patrick Delaunayc67ca252021-10-22 10:19:25 +0200156#endif /* __CONFIG_STM32MP15_COMMMON_H */