Tom Rini | 4549e78 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */ |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2018, STMicroelectronics - All Rights Reserved |
| 4 | * |
| 5 | * Configuration settings for the STM32MP15x CPU |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 8 | #ifndef __CONFIG_STM32MP15_COMMMON_H |
| 9 | #define __CONFIG_STM32MP15_COMMMON_H |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 10 | #include <linux/sizes.h> |
| 11 | #include <asm/arch/stm32.h> |
| 12 | |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 13 | /* |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 14 | * Configuration of the external SRAM memory used by U-Boot |
| 15 | */ |
| 16 | #define CONFIG_SYS_SDRAM_BASE STM32_DDR_BASE |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 17 | |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 18 | /* |
Patrick Delaunay | ac5769c | 2020-02-10 11:54:11 +0100 | [diff] [blame] | 19 | * 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 Delaunay | 2cf2b51 | 2019-02-27 17:01:21 +0100 | [diff] [blame] | 24 | /* Extend size of kernel image for uncompression */ |
Patrick Delaunay | 2cf2b51 | 2019-02-27 17:01:21 +0100 | [diff] [blame] | 25 | |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 26 | /*MMC SD*/ |
| 27 | #define CONFIG_SYS_MMC_MAX_DEVICE 3 |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 28 | |
Patrick Delaunay | c840c29 | 2019-07-02 13:26:05 +0200 | [diff] [blame] | 29 | /* NAND support */ |
Patrick Delaunay | c840c29 | 2019-07-02 13:26:05 +0200 | [diff] [blame] | 30 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 31 | |
Christophe Roullier | b4d4fe7 | 2019-05-17 15:08:46 +0200 | [diff] [blame] | 32 | /* Ethernet need */ |
| 33 | #ifdef CONFIG_DWC_ETH_QOS |
Christophe Roullier | b4d4fe7 | 2019-05-17 15:08:46 +0200 | [diff] [blame] | 34 | #define CONFIG_SERVERIP 192.168.1.1 |
Christophe Roullier | b4d4fe7 | 2019-05-17 15:08:46 +0200 | [diff] [blame] | 35 | #endif |
| 36 | |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 37 | /*****************************************************************************/ |
| 38 | #ifdef CONFIG_DISTRO_DEFAULTS |
| 39 | /*****************************************************************************/ |
| 40 | |
| 41 | #if !defined(CONFIG_SPL_BUILD) |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 42 | |
Marek Vasut | c3ab0fe | 2020-01-10 01:26:54 +0100 | [diff] [blame] | 43 | #ifdef CONFIG_CMD_MMC |
| 44 | #define BOOT_TARGET_MMC0(func) func(MMC, mmc, 0) |
| 45 | #define BOOT_TARGET_MMC1(func) func(MMC, mmc, 1) |
| 46 | #define BOOT_TARGET_MMC2(func) func(MMC, mmc, 2) |
| 47 | #else |
| 48 | #define BOOT_TARGET_MMC0(func) |
| 49 | #define BOOT_TARGET_MMC1(func) |
| 50 | #define BOOT_TARGET_MMC2(func) |
| 51 | #endif |
| 52 | |
| 53 | #ifdef CONFIG_NET |
| 54 | #define BOOT_TARGET_PXE(func) func(PXE, pxe, na) |
| 55 | #else |
| 56 | #define BOOT_TARGET_PXE(func) |
| 57 | #endif |
| 58 | |
| 59 | #ifdef CONFIG_CMD_UBIFS |
Pali Rohár | e6ca148 | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 60 | #define BOOT_TARGET_UBIFS(func) func(UBIFS, ubifs, 0, UBI, boot) |
Marek Vasut | c3ab0fe | 2020-01-10 01:26:54 +0100 | [diff] [blame] | 61 | #else |
| 62 | #define BOOT_TARGET_UBIFS(func) |
| 63 | #endif |
| 64 | |
Tom Rini | e8d3eaa | 2021-07-09 10:11:55 -0400 | [diff] [blame] | 65 | #ifdef CONFIG_CMD_USB |
Marek Vasut | 0bbfae7 | 2021-02-12 13:50:52 +0100 | [diff] [blame] | 66 | #define BOOT_TARGET_USB(func) func(USB, usb, 0) |
| 67 | #else |
| 68 | #define BOOT_TARGET_USB(func) |
| 69 | #endif |
| 70 | |
Marek Vasut | c3ab0fe | 2020-01-10 01:26:54 +0100 | [diff] [blame] | 71 | #define BOOT_TARGET_DEVICES(func) \ |
| 72 | BOOT_TARGET_MMC1(func) \ |
| 73 | BOOT_TARGET_UBIFS(func) \ |
| 74 | BOOT_TARGET_MMC0(func) \ |
| 75 | BOOT_TARGET_MMC2(func) \ |
Marek Vasut | 0bbfae7 | 2021-02-12 13:50:52 +0100 | [diff] [blame] | 76 | BOOT_TARGET_USB(func) \ |
Marek Vasut | c3ab0fe | 2020-01-10 01:26:54 +0100 | [diff] [blame] | 77 | BOOT_TARGET_PXE(func) |
Christophe Roullier | b4d4fe7 | 2019-05-17 15:08:46 +0200 | [diff] [blame] | 78 | |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 79 | /* |
Patrick Delaunay | 960debb | 2022-05-20 18:24:46 +0200 | [diff] [blame] | 80 | * default bootcmd for stm32mp15: |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 81 | * for serial/usb: execute the stm32prog command |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 82 | * for mmc boot (eMMC, SD card), distro boot on the same mmc device |
| 83 | * for nand or spi-nand boot, distro boot with ubifs on UBI partition |
| 84 | * for nor boot, use the default distro order in ${boot_targets} |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 85 | */ |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 86 | #define STM32MP_BOOTCMD "bootcmd_stm32mp=" \ |
| 87 | "echo \"Boot over ${boot_device}${boot_instance}!\";" \ |
| 88 | "if test ${boot_device} = serial || test ${boot_device} = usb;" \ |
| 89 | "then stm32prog ${boot_device} ${boot_instance}; " \ |
| 90 | "else " \ |
Patrick Delaunay | 22bed7e | 2019-07-05 17:20:21 +0200 | [diff] [blame] | 91 | "run env_check;" \ |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 92 | "if test ${boot_device} = mmc;" \ |
| 93 | "then env set boot_targets \"mmc${boot_instance}\"; fi;" \ |
Patrick Delaunay | b664a74 | 2020-03-18 09:22:52 +0100 | [diff] [blame] | 94 | "if test ${boot_device} = nand ||" \ |
| 95 | " test ${boot_device} = spi-nand ;" \ |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 96 | "then env set boot_targets ubifs0; fi;" \ |
| 97 | "run distro_bootcmd;" \ |
| 98 | "fi;\0" |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 99 | |
Jean-Philippe ROMAIN | f35ce37 | 2020-09-09 15:24:33 +0200 | [diff] [blame] | 100 | #ifdef CONFIG_FASTBOOT_CMD_OEM_FORMAT |
| 101 | /* eMMC default partitions for fastboot command: oem format */ |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 102 | #define STM32MP_PARTS_DEFAULT \ |
Jean-Philippe ROMAIN | f35ce37 | 2020-09-09 15:24:33 +0200 | [diff] [blame] | 103 | "partitions=" \ |
| 104 | "name=ssbl,size=2M;" \ |
| 105 | "name=bootfs,size=64MB,bootable;" \ |
| 106 | "name=vendorfs,size=16M;" \ |
| 107 | "name=rootfs,size=746M;" \ |
| 108 | "name=userfs,size=-\0" |
| 109 | #else |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 110 | #define STM32MP_PARTS_DEFAULT |
Jean-Philippe ROMAIN | f35ce37 | 2020-09-09 15:24:33 +0200 | [diff] [blame] | 111 | #endif |
| 112 | |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 113 | #define STM32MP_EXTRA \ |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 114 | "env_check=if env info -p -d -q; then env save; fi\0" \ |
| 115 | "boot_net_usb_start=true\0" |
| 116 | |
Marek Vasut | e8e6680 | 2021-11-13 03:24:44 +0100 | [diff] [blame] | 117 | #ifndef STM32MP_BOARD_EXTRA_ENV |
| 118 | #define STM32MP_BOARD_EXTRA_ENV |
| 119 | #endif |
| 120 | |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 121 | #include <config_distro_bootcmd.h> |
| 122 | |
Patrick Delaunay | 2cf2b51 | 2019-02-27 17:01:21 +0100 | [diff] [blame] | 123 | /* |
| 124 | * memory layout for 32M uncompressed/compressed kernel, |
Patrick Delaunay | 918609c | 2021-06-28 14:42:08 +0200 | [diff] [blame] | 125 | * 1M fdt, 1M script, 1M pxe and 1M for overlay |
Patrick Delaunay | 2cf2b51 | 2019-02-27 17:01:21 +0100 | [diff] [blame] | 126 | * and the ramdisk at the end. |
| 127 | */ |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 128 | #define __KERNEL_ADDR_R __stringify(0xc2000000) |
| 129 | #define __FDT_ADDR_R __stringify(0xc4000000) |
| 130 | #define __SCRIPT_ADDR_R __stringify(0xc4100000) |
| 131 | #define __PXEFILE_ADDR_R __stringify(0xc4200000) |
| 132 | #define __FDTOVERLAY_ADDR_R __stringify(0xc4300000) |
| 133 | #define __RAMDISK_ADDR_R __stringify(0xc4400000) |
| 134 | |
| 135 | #define STM32MP_MEM_LAYOUT \ |
| 136 | "kernel_addr_r=" __KERNEL_ADDR_R "\0" \ |
| 137 | "fdt_addr_r=" __FDT_ADDR_R "\0" \ |
| 138 | "scriptaddr=" __SCRIPT_ADDR_R "\0" \ |
| 139 | "pxefile_addr_r=" __PXEFILE_ADDR_R "\0" \ |
| 140 | "fdtoverlay_addr_r=" __FDTOVERLAY_ADDR_R "\0" \ |
| 141 | "ramdisk_addr_r=" __RAMDISK_ADDR_R "\0" |
| 142 | |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 143 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 144 | STM32MP_MEM_LAYOUT \ |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 145 | STM32MP_BOOTCMD \ |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 146 | STM32MP_PARTS_DEFAULT \ |
Patrick Delaunay | 2ed212c | 2019-07-05 17:20:22 +0200 | [diff] [blame] | 147 | BOOTENV \ |
Marek Vasut | e8e6680 | 2021-11-13 03:24:44 +0100 | [diff] [blame] | 148 | STM32MP_EXTRA \ |
| 149 | STM32MP_BOARD_EXTRA_ENV |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 150 | |
| 151 | #endif /* ifndef CONFIG_SPL_BUILD */ |
Patrick Delaunay | 842ebb5 | 2019-02-27 17:01:18 +0100 | [diff] [blame] | 152 | #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/ |
Patrick Delaunay | f8598d9 | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 153 | |
Patrick Delaunay | c67ca25 | 2021-10-22 10:19:25 +0200 | [diff] [blame] | 154 | #endif /* __CONFIG_STM32MP15_COMMMON_H */ |