blob: 29a1197b5ae22c42ac21f8cfd67f83c6f787a09b [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 */
Tom Rinibb4dd962022-11-16 13:10:37 -050016#define CFG_SYS_SDRAM_BASE STM32_DDR_BASE
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010017
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010018/*
Patrick Delaunaya5bf69e2020-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 */
Tom Rini6a5dccc2022-11-16 13:10:41 -050022#define CFG_SYS_BOOTMAPSZ SZ_256M
Patrick Delaunaya5bf69e2020-02-10 11:54:11 +010023
Patrick Delaunay67865262019-07-02 13:26:05 +020024/* NAND support */
Patrick Delaunay67865262019-07-02 13:26:05 +020025
Christophe Roullier515ff1b2019-05-17 15:08:46 +020026/* Ethernet need */
Christophe Roullier515ff1b2019-05-17 15:08:46 +020027
Sughosh Ganue166b5e2022-10-21 18:15:58 +053028#define STM32MP_FIP_IMAGE_GUID \
29 EFI_GUID(0x19d5df83, 0x11b0, 0x457b, 0xbe, 0x2c, \
30 0x75, 0x59, 0xc1, 0x31, 0x42, 0xa5)
31
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010032/*****************************************************************************/
33#ifdef CONFIG_DISTRO_DEFAULTS
34/*****************************************************************************/
35
36#if !defined(CONFIG_SPL_BUILD)
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010037
Marek Vasut5fe232d2020-01-10 01:26:54 +010038#ifdef CONFIG_CMD_MMC
39#define BOOT_TARGET_MMC0(func) func(MMC, mmc, 0)
40#define BOOT_TARGET_MMC1(func) func(MMC, mmc, 1)
41#define BOOT_TARGET_MMC2(func) func(MMC, mmc, 2)
42#else
43#define BOOT_TARGET_MMC0(func)
44#define BOOT_TARGET_MMC1(func)
45#define BOOT_TARGET_MMC2(func)
46#endif
47
48#ifdef CONFIG_NET
49#define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
50#else
51#define BOOT_TARGET_PXE(func)
52#endif
53
54#ifdef CONFIG_CMD_UBIFS
Pali Rohárdd54f6c2022-05-31 10:32:36 +020055#define BOOT_TARGET_UBIFS(func) func(UBIFS, ubifs, 0, UBI, boot)
Marek Vasut5fe232d2020-01-10 01:26:54 +010056#else
57#define BOOT_TARGET_UBIFS(func)
58#endif
59
Tom Rini8a091622021-07-09 10:11:55 -040060#ifdef CONFIG_CMD_USB
Marek Vasutf2c47202021-02-12 13:50:52 +010061#define BOOT_TARGET_USB(func) func(USB, usb, 0)
62#else
63#define BOOT_TARGET_USB(func)
64#endif
65
Marek Vasut5fe232d2020-01-10 01:26:54 +010066#define BOOT_TARGET_DEVICES(func) \
67 BOOT_TARGET_MMC1(func) \
68 BOOT_TARGET_UBIFS(func) \
69 BOOT_TARGET_MMC0(func) \
70 BOOT_TARGET_MMC2(func) \
Marek Vasutf2c47202021-02-12 13:50:52 +010071 BOOT_TARGET_USB(func) \
Marek Vasut5fe232d2020-01-10 01:26:54 +010072 BOOT_TARGET_PXE(func)
Christophe Roullier515ff1b2019-05-17 15:08:46 +020073
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010074/*
Patrick Delaunay123687c2022-05-20 18:24:46 +020075 * default bootcmd for stm32mp15:
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010076 * for serial/usb: execute the stm32prog command
Patrick Delaunayf9484bc2021-10-22 10:19:25 +020077 * for mmc boot (eMMC, SD card), distro boot on the same mmc device
78 * for nand or spi-nand boot, distro boot with ubifs on UBI partition
79 * for nor boot, use the default distro order in ${boot_targets}
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010080 */
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010081#define STM32MP_BOOTCMD "bootcmd_stm32mp=" \
82 "echo \"Boot over ${boot_device}${boot_instance}!\";" \
83 "if test ${boot_device} = serial || test ${boot_device} = usb;" \
84 "then stm32prog ${boot_device} ${boot_instance}; " \
85 "else " \
Patrick Delaunayd695d892019-07-05 17:20:21 +020086 "run env_check;" \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010087 "if test ${boot_device} = mmc;" \
88 "then env set boot_targets \"mmc${boot_instance}\"; fi;" \
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +010089 "if test ${boot_device} = nand ||" \
90 " test ${boot_device} = spi-nand ;" \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010091 "then env set boot_targets ubifs0; fi;" \
92 "run distro_bootcmd;" \
93 "fi;\0"
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010094
Patrick Delaunayf9484bc2021-10-22 10:19:25 +020095#define STM32MP_EXTRA \
Patrick Delaunayf9484bc2021-10-22 10:19:25 +020096 "env_check=if env info -p -d -q; then env save; fi\0" \
97 "boot_net_usb_start=true\0"
98
Marek Vasute43ec1f2021-11-13 03:24:44 +010099#ifndef STM32MP_BOARD_EXTRA_ENV
100#define STM32MP_BOARD_EXTRA_ENV
101#endif
102
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100103#include <config_distro_bootcmd.h>
Patrick Delaunayfc69c682018-03-20 10:54:54 +0100104
Patrick Delaunay80e17eb2019-02-27 17:01:21 +0100105/*
106 * memory layout for 32M uncompressed/compressed kernel,
Patrick Delaunay9d576762021-06-28 14:42:08 +0200107 * 1M fdt, 1M script, 1M pxe and 1M for overlay
Patrick Delaunay80e17eb2019-02-27 17:01:21 +0100108 * and the ramdisk at the end.
109 */
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200110#define __KERNEL_ADDR_R __stringify(0xc2000000)
111#define __FDT_ADDR_R __stringify(0xc4000000)
112#define __SCRIPT_ADDR_R __stringify(0xc4100000)
113#define __PXEFILE_ADDR_R __stringify(0xc4200000)
114#define __FDTOVERLAY_ADDR_R __stringify(0xc4300000)
115#define __RAMDISK_ADDR_R __stringify(0xc4400000)
116
117#define STM32MP_MEM_LAYOUT \
118 "kernel_addr_r=" __KERNEL_ADDR_R "\0" \
119 "fdt_addr_r=" __FDT_ADDR_R "\0" \
120 "scriptaddr=" __SCRIPT_ADDR_R "\0" \
121 "pxefile_addr_r=" __PXEFILE_ADDR_R "\0" \
122 "fdtoverlay_addr_r=" __FDTOVERLAY_ADDR_R "\0" \
123 "ramdisk_addr_r=" __RAMDISK_ADDR_R "\0"
124
Tom Rinic9edebe2022-12-04 10:03:50 -0500125#define CFG_EXTRA_ENV_SETTINGS \
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200126 STM32MP_MEM_LAYOUT \
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100127 STM32MP_BOOTCMD \
Patrick Delaunay6703cec2019-07-05 17:20:22 +0200128 BOOTENV \
Marek Vasute43ec1f2021-11-13 03:24:44 +0100129 STM32MP_EXTRA \
130 STM32MP_BOARD_EXTRA_ENV
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100131
132#endif /* ifndef CONFIG_SPL_BUILD */
Patrick Delaunayf2a7b872019-02-27 17:01:18 +0100133#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100134
Patrick Delaunayf9484bc2021-10-22 10:19:25 +0200135#endif /* __CONFIG_STM32MP15_COMMMON_H */