Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause |
| 2 | .. sectionauthor:: Patrick Delaunay <patrick.delaunay@st.com> |
| 3 | |
| 4 | STM32MP15x boards |
| 5 | ================= |
| 6 | |
| 7 | This is a quick instruction for setup STM32MP15x boards. |
| 8 | |
| 9 | Supported devices |
| 10 | ----------------- |
| 11 | |
| 12 | U-Boot supports STMP32MP15x SoCs: |
| 13 | |
| 14 | - STM32MP157 |
| 15 | - STM32MP153 |
| 16 | - STM32MP151 |
| 17 | |
| 18 | The STM32MP15x is a Cortex-A MPU aimed at various applications. |
| 19 | |
| 20 | It features: |
| 21 | |
| 22 | - Dual core Cortex-A7 application core (Single on STM32MP151) |
| 23 | - 2D/3D image composition with GPU (only on STM32MP157) |
| 24 | - Standard memories interface support |
| 25 | - Standard connectivity, widely inherited from the STM32 MCU family |
| 26 | - Comprehensive security support |
| 27 | |
Patrick Delaunay | db33b0e | 2020-02-26 11:26:43 +0100 | [diff] [blame] | 28 | Each line comes with a security option (cryptography & secure boot) and |
| 29 | a Cortex-A frequency option: |
| 30 | |
| 31 | - A : Cortex-A7 @ 650 MHz |
| 32 | - C : Secure Boot + HW Crypto + Cortex-A7 @ 650 MHz |
| 33 | - D : Cortex-A7 @ 800 MHz |
| 34 | - F : Secure Boot + HW Crypto + Cortex-A7 @ 800 MHz |
| 35 | |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 36 | Everything is supported in Linux but U-Boot is limited to: |
| 37 | |
| 38 | 1. UART |
| 39 | 2. SD card/MMC controller (SDMMC) |
| 40 | 3. NAND controller (FMC) |
| 41 | 4. NOR controller (QSPI) |
| 42 | 5. USB controller (OTG DWC2) |
| 43 | 6. Ethernet controller |
| 44 | |
| 45 | And the necessary drivers |
| 46 | |
| 47 | 1. I2C |
| 48 | 2. STPMIC1 (PMIC and regulator) |
| 49 | 3. Clock, Reset, Sysreset |
| 50 | 4. Fuse |
| 51 | |
| 52 | Currently the following boards are supported: |
| 53 | |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 54 | + stm32mp157a-dk1.dts |
| 55 | + stm32mp157c-dk2.dts |
| 56 | + stm32mp157c-ed1.dts |
| 57 | + stm32mp157c-ev1.dts |
Marek Vasut | 526c951 | 2020-03-31 19:51:36 +0200 | [diff] [blame] | 58 | + stm32mp15xx-dhcor-avenger96.dts |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 59 | |
| 60 | Boot Sequences |
| 61 | -------------- |
| 62 | |
| 63 | 3 boot configurations are supported with: |
| 64 | |
| 65 | +----------+------------------------+-------------------------+--------------+ |
| 66 | | **ROM** | **FSBL** | **SSBL** | **OS** | |
| 67 | + **code** +------------------------+-------------------------+--------------+ |
| 68 | | | First Stage Bootloader | Second Stage Bootloader | Linux Kernel | |
| 69 | + +------------------------+-------------------------+--------------+ |
| 70 | | | embedded RAM | DDR | |
| 71 | +----------+------------------------+-------------------------+--------------+ |
| 72 | |
| 73 | The **Trusted** boot chain |
| 74 | `````````````````````````` |
| 75 | |
| 76 | defconfig_file : stm32mp15_trusted_defconfig |
| 77 | |
| 78 | +-------------+-------------------------+------------+-------+ |
| 79 | | ROM code | FSBL | SSBL | OS | |
| 80 | + +-------------------------+------------+-------+ |
| 81 | | |Trusted Firmware-A (TF-A)| U-Boot | Linux | |
| 82 | +-------------+-------------------------+------------+-------+ |
Patrick Delaunay | 6557aa8 | 2020-03-18 09:22:51 +0100 | [diff] [blame] | 83 | | TrustZone |secure monitor | |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 84 | +-------------+-------------------------+------------+-------+ |
| 85 | |
| 86 | TF-A performs a full initialization of Secure peripherals and installs a |
Patrick Delaunay | 6557aa8 | 2020-03-18 09:22:51 +0100 | [diff] [blame] | 87 | secure monitor, BL32: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 88 | |
Patrick Delaunay | 6557aa8 | 2020-03-18 09:22:51 +0100 | [diff] [blame] | 89 | * SPMin provided by TF-A or |
| 90 | * OP-TEE from specific partitions (teeh, teed, teex). |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 91 | |
Patrick Delaunay | 6557aa8 | 2020-03-18 09:22:51 +0100 | [diff] [blame] | 92 | U-Boot is running in normal world and uses the secure monitor to access |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 93 | to secure resources. |
| 94 | |
| 95 | The **Basic** boot chain |
| 96 | ```````````````````````` |
| 97 | |
| 98 | defconfig_file : stm32mp15_basic_defconfig |
| 99 | |
| 100 | +-------------+------------+------------+-------+ |
| 101 | | ROM code | FSBL | SSBL | OS | |
| 102 | + +------------+------------+-------+ |
| 103 | | |U-Boot SPL | U-Boot | Linux | |
| 104 | +-------------+------------+------------+-------+ |
| 105 | | TrustZone | | PSCI from U-Boot | |
| 106 | +-------------+------------+------------+-------+ |
| 107 | |
| 108 | SPL has limited security initialization |
| 109 | |
| 110 | U-Boot is running in secure mode and provide a secure monitor to the kernel |
| 111 | with only PSCI support (Power State Coordination Interface defined by ARM). |
| 112 | |
| 113 | All the STM32MP15x boards supported by U-Boot use the same generic board |
| 114 | stm32mp1 which support all the bootable devices. |
| 115 | |
| 116 | Each board is configured only with the associated device tree. |
| 117 | |
| 118 | Device Tree Selection |
| 119 | --------------------- |
| 120 | |
| 121 | You need to select the appropriate device tree for your board, |
| 122 | the supported device trees for STM32MP15x are: |
| 123 | |
| 124 | + ev1: eval board with pmic stpmic1 (ev1 = mother board + daughter ed1) |
| 125 | |
| 126 | + stm32mp157c-ev1 |
| 127 | |
| 128 | + ed1: daughter board with pmic stpmic1 |
| 129 | |
| 130 | + stm32mp157c-ed1 |
| 131 | |
| 132 | + dk1: Discovery board |
| 133 | |
| 134 | + stm32mp157a-dk1 |
| 135 | |
| 136 | + dk2: Discovery board = dk1 with a BT/WiFI combo and a DSI panel |
| 137 | |
| 138 | + stm32mp157c-dk2 |
| 139 | |
Marek Vasut | 526c951 | 2020-03-31 19:51:36 +0200 | [diff] [blame] | 140 | + avenger96: Avenger96 board from Arrow Electronics based on DH Elec. DHCOR SoM |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 141 | |
Marek Vasut | 526c951 | 2020-03-31 19:51:36 +0200 | [diff] [blame] | 142 | + stm32mp15xx-dhcor-avenger96 |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 143 | |
| 144 | Build Procedure |
| 145 | --------------- |
| 146 | |
| 147 | 1. Install the required tools for U-Boot |
| 148 | |
| 149 | * install package needed in U-Boot makefile |
| 150 | (libssl-dev, swig, libpython-dev...) |
| 151 | |
| 152 | * install ARMv7 toolchain for 32bit Cortex-A (from Linaro, |
| 153 | from SDK for STM32MP15x, or any crosstoolchains from your distribution) |
| 154 | (you can use any gcc cross compiler compatible with U-Boot) |
| 155 | |
| 156 | 2. Set the cross compiler:: |
| 157 | |
| 158 | # export CROSS_COMPILE=/path/to/toolchain/arm-linux-gnueabi- |
| 159 | |
| 160 | 3. Select the output directory (optional):: |
| 161 | |
| 162 | # export KBUILD_OUTPUT=/path/to/output |
| 163 | |
| 164 | for example: use one output directory for each configuration:: |
| 165 | |
| 166 | # export KBUILD_OUTPUT=stm32mp15_trusted |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 167 | # export KBUILD_OUTPUT=stm32mp15_basic |
| 168 | |
| 169 | you can build outside of code directory:: |
| 170 | |
| 171 | # export KBUILD_OUTPUT=../build/stm32mp15_trusted |
| 172 | |
| 173 | 4. Configure U-Boot:: |
| 174 | |
| 175 | # make <defconfig_file> |
| 176 | |
| 177 | with <defconfig_file>: |
| 178 | |
| 179 | - For **trusted** boot mode : **stm32mp15_trusted_defconfig** |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 180 | - For basic boot mode: stm32mp15_basic_defconfig |
| 181 | |
| 182 | 5. Configure the device-tree and build the U-Boot image:: |
| 183 | |
| 184 | # make DEVICE_TREE=<name> all |
| 185 | |
| 186 | Examples: |
| 187 | |
| 188 | a) trusted boot on ev1:: |
| 189 | |
| 190 | # export KBUILD_OUTPUT=stm32mp15_trusted |
| 191 | # make stm32mp15_trusted_defconfig |
| 192 | # make DEVICE_TREE=stm32mp157c-ev1 all |
| 193 | |
| 194 | b) trusted with OP-TEE boot on dk2:: |
| 195 | |
Patrick Delaunay | 6557aa8 | 2020-03-18 09:22:51 +0100 | [diff] [blame] | 196 | # export KBUILD_OUTPUT=stm32mp15_trusted |
| 197 | # make stm32mp15_trusted_defconfig |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 198 | # make DEVICE_TREE=stm32mp157c-dk2 all |
| 199 | |
| 200 | c) basic boot on ev1:: |
| 201 | |
| 202 | # export KBUILD_OUTPUT=stm32mp15_basic |
| 203 | # make stm32mp15_basic_defconfig |
| 204 | # make DEVICE_TREE=stm32mp157c-ev1 all |
| 205 | |
| 206 | d) basic boot on ed1:: |
| 207 | |
| 208 | # export KBUILD_OUTPUT=stm32mp15_basic |
| 209 | # make stm32mp15_basic_defconfig |
| 210 | # make DEVICE_TREE=stm32mp157c-ed1 all |
| 211 | |
| 212 | e) basic boot on dk1:: |
| 213 | |
| 214 | # export KBUILD_OUTPUT=stm32mp15_basic |
| 215 | # make stm32mp15_basic_defconfig |
| 216 | # make DEVICE_TREE=stm32mp157a-dk1 all |
| 217 | |
| 218 | f) basic boot on avenger96:: |
| 219 | |
| 220 | # export KBUILD_OUTPUT=stm32mp15_basic |
| 221 | # make stm32mp15_basic_defconfig |
Marek Vasut | 526c951 | 2020-03-31 19:51:36 +0200 | [diff] [blame] | 222 | # make DEVICE_TREE=stm32mp15xx-dhcor-avenger96 all |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 223 | |
| 224 | 6. Output files |
| 225 | |
| 226 | BootRom and TF-A expect binaries with STM32 image header |
| 227 | SPL expects file with U-Boot uImage header |
| 228 | |
| 229 | So in the output directory (selected by KBUILD_OUTPUT), |
| 230 | you can found the needed files: |
| 231 | |
| 232 | - For **Trusted** boot (with or without OP-TEE) |
| 233 | |
| 234 | - FSBL = **tf-a.stm32** (provided by TF-A compilation) |
| 235 | - SSBL = **u-boot.stm32** |
| 236 | |
| 237 | - For Basic boot |
| 238 | |
| 239 | - FSBL = spl/u-boot-spl.stm32 |
| 240 | - SSBL = u-boot.img |
| 241 | |
| 242 | Switch Setting for Boot Mode |
| 243 | ---------------------------- |
| 244 | |
| 245 | You can select the boot mode, on the board with one switch, to select |
| 246 | the boot pin values = BOOT0, BOOT1, BOOT2 |
| 247 | |
| 248 | +-------------+---------+---------+---------+ |
| 249 | |*Boot Mode* | *BOOT2* | *BOOT1* | *BOOT0* | |
| 250 | +=============+=========+=========+=========+ |
| 251 | | Recovery | 0 | 0 | 0 | |
| 252 | +-------------+---------+---------+---------+ |
| 253 | | NOR | 0 | 0 | 1 | |
| 254 | +-------------+---------+---------+---------+ |
| 255 | | eMMC | 0 | 1 | 0 | |
| 256 | +-------------+---------+---------+---------+ |
| 257 | | NAND | 0 | 1 | 1 | |
| 258 | +-------------+---------+---------+---------+ |
| 259 | | Reserved | 1 | 0 | 0 | |
| 260 | +-------------+---------+---------+---------+ |
| 261 | | SD-Card | 1 | 0 | 1 | |
| 262 | +-------------+---------+---------+---------+ |
| 263 | | Recovery | 1 | 1 | 0 | |
| 264 | +-------------+---------+---------+---------+ |
| 265 | | SPI-NAND | 1 | 1 | 1 | |
| 266 | +-------------+---------+---------+---------+ |
| 267 | |
| 268 | - on the **daugther board ed1 = MB1263** with the switch SW1 |
| 269 | - on **Avenger96** with switch S3 (NOR and SPI-NAND are not applicable) |
| 270 | - on board **DK1/DK2** with the switch SW1 = BOOT0, BOOT2 |
| 271 | with only 2 pins available (BOOT1 is forced to 0 and NOR not supported), |
| 272 | the possible value becomes: |
| 273 | |
| 274 | +-------------+---------+---------+ |
| 275 | |*Boot Mode* | *BOOT2* | *BOOT0* | |
| 276 | +=============+=========+=========+ |
| 277 | | Recovery | 0 | 0 | |
| 278 | +-------------+---------+---------+ |
| 279 | | NOR (NA)| 0 | 1 | |
| 280 | +-------------+---------+---------+ |
| 281 | | Reserved | 1 | 0 | |
| 282 | +-------------+---------+---------+ |
| 283 | | SD-Card | 1 | 1 | |
| 284 | +-------------+---------+---------+ |
| 285 | |
| 286 | Recovery is a boot from serial link (UART/USB) and it is used with |
| 287 | STM32CubeProgrammer tool to load executable in RAM and to update the flash |
| 288 | devices available on the board (NOR/NAND/eMMC/SD card). |
| 289 | |
| 290 | The communication between HOST and board is based on |
| 291 | |
| 292 | - for UARTs : the uart protocol used with all MCU STM32 |
| 293 | - for USB : based on USB DFU 1.1 (without the ST extensions used on MCU STM32) |
| 294 | |
| 295 | Prepare an SD card |
| 296 | ------------------ |
| 297 | |
| 298 | The minimal requirements for STMP32MP15x boot up to U-Boot are: |
| 299 | |
| 300 | - GPT partitioning (with gdisk or with sgdisk) |
| 301 | - 2 fsbl partitions, named fsbl1 and fsbl2, size at least 256KiB |
| 302 | - one ssbl partition for U-Boot |
| 303 | |
| 304 | Then the minimal GPT partition is: |
| 305 | |
| 306 | +-------+--------+---------+-------------+ |
| 307 | | *Num* | *Name* | *Size* | *Content* | |
| 308 | +=======+========+=========+=============+ |
| 309 | | 1 | fsbl1 | 256 KiB | TF-A or SPL | |
| 310 | +-------+--------+---------+-------------+ |
| 311 | | 2 | fsbl2 | 256 KiB | TF-A or SPL | |
| 312 | +-------+--------+---------+-------------+ |
| 313 | | 3 | ssbl | enought | U-Boot | |
| 314 | +-------+--------+---------+-------------+ |
| 315 | | 4 | <any> | <any> | Rootfs | |
| 316 | +-------+--------+---------+-------------+ |
| 317 | |
| 318 | Add a 4th partition (Rootfs) marked bootable with a file extlinux.conf |
| 319 | following the Generic Distribution feature (doc/README.distro for use). |
| 320 | |
| 321 | According the used card reader select the correct block device |
| 322 | (for example /dev/sdx or /dev/mmcblk0). |
| 323 | |
| 324 | In the next example, it is /dev/mmcblk0 |
| 325 | |
| 326 | For example: with gpt table with 128 entries |
| 327 | |
| 328 | a) remove previous formatting:: |
| 329 | |
| 330 | # sgdisk -o /dev/<SD card dev> |
| 331 | |
| 332 | b) create minimal image:: |
| 333 | |
| 334 | # sgdisk --resize-table=128 -a 1 \ |
| 335 | -n 1:34:545 -c 1:fsbl1 \ |
| 336 | -n 2:546:1057 -c 2:fsbl2 \ |
| 337 | -n 3:1058:5153 -c 3:ssbl \ |
| 338 | -n 4:5154: -c 4:rootfs \ |
| 339 | -p /dev/<SD card dev> |
| 340 | |
| 341 | With other partition for kernel one partition rootfs for kernel. |
| 342 | |
| 343 | c) copy the FSBL (2 times) and SSBL file on the correct partition. |
| 344 | in this example in partition 1 to 3 |
| 345 | |
| 346 | for basic boot mode : <SD card dev> = /dev/mmcblk0:: |
| 347 | |
| 348 | # dd if=u-boot-spl.stm32 of=/dev/mmcblk0p1 |
| 349 | # dd if=u-boot-spl.stm32 of=/dev/mmcblk0p2 |
| 350 | # dd if=u-boot.img of=/dev/mmcblk0p3 |
| 351 | |
| 352 | for trusted boot mode: :: |
| 353 | |
| 354 | # dd if=tf-a.stm32 of=/dev/mmcblk0p1 |
| 355 | # dd if=tf-a.stm32 of=/dev/mmcblk0p2 |
| 356 | # dd if=u-boot.stm32 of=/dev/mmcblk0p3 |
| 357 | |
| 358 | To boot from SD card, select BootPinMode = 1 0 1 and reset. |
| 359 | |
| 360 | Prepare eMMC |
| 361 | ------------ |
| 362 | |
| 363 | You can use U-Boot to copy binary in eMMC. |
| 364 | |
| 365 | In the next example, you need to boot from SD card and the images |
| 366 | (u-boot-spl.stm32, u-boot.img) are presents on SD card (mmc 0) |
| 367 | in ext4 partition 4 (bootfs). |
| 368 | |
| 369 | To boot from SD card, select BootPinMode = 1 0 1 and reset. |
| 370 | |
| 371 | Then you update the eMMC with the next U-Boot command : |
| 372 | |
| 373 | a) prepare GPT on eMMC, |
| 374 | example with 2 partitions, bootfs and roots:: |
| 375 | |
| 376 | # setenv emmc_part "name=ssbl,size=2MiB;name=bootfs,type=linux,bootable,size=64MiB;name=rootfs,type=linux,size=512" |
| 377 | # gpt write mmc 1 ${emmc_part} |
| 378 | |
| 379 | b) copy SPL on eMMC on firts boot partition |
| 380 | (SPL max size is 256kB, with LBA 512, 0x200):: |
| 381 | |
| 382 | # ext4load mmc 0:4 0xC0000000 u-boot-spl.stm32 |
| 383 | # mmc dev 1 |
| 384 | # mmc partconf 1 1 1 1 |
| 385 | # mmc write ${fileaddr} 0 200 |
| 386 | # mmc partconf 1 1 1 0 |
| 387 | |
| 388 | c) copy U-Boot in first GPT partition of eMMC:: |
| 389 | |
| 390 | # ext4load mmc 0:4 0xC0000000 u-boo t.img |
| 391 | # mmc dev 1 |
| 392 | # part start mmc 1 1 partstart |
| 393 | # mmc write ${fileaddr} ${partstart} ${filesize} |
| 394 | |
| 395 | To boot from eMMC, select BootPinMode = 0 1 0 and reset. |
| 396 | |
| 397 | MAC Address |
| 398 | ----------- |
| 399 | |
| 400 | Please read doc/README.enetaddr for the implementation guidelines for mac id |
| 401 | usage. Basically, environment has precedence over board specific storage. |
| 402 | |
| 403 | For STMicroelectonics board, it is retrieved in STM32MP15x OTP : |
| 404 | |
| 405 | - OTP_57[31:0] = MAC_ADDR[31:0] |
| 406 | - OTP_58[15:0] = MAC_ADDR[47:32] |
| 407 | |
| 408 | To program a MAC address on virgin OTP words above, you can use the fuse command |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 409 | on bank 0 to access to internal OTP and lock them: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 410 | |
| 411 | Prerequisite: check if a MAC address isn't yet programmed in OTP |
| 412 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 413 | 1) check OTP: their value must be equal to 0:: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 414 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 415 | STM32MP> fuse sense 0 57 2 |
| 416 | Sensing bank 0: |
| 417 | Word 0x00000039: 00000000 00000000 |
| 418 | |
| 419 | 2) check environment variable:: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 420 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 421 | STM32MP> env print ethaddr |
| 422 | ## Error: "ethaddr" not defined |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 423 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 424 | 3) check lock status of fuse 57 & 58 (at 0x39, 0=unlocked, 1=locked):: |
| 425 | |
| 426 | STM32MP> fuse sense 0 0x10000039 2 |
| 427 | Sensing bank 0: |
| 428 | Word 0x10000039: 00000000 00000000 |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 429 | |
| 430 | Example to set mac address "12:34:56:78:9a:bc" |
| 431 | |
| 432 | 1) Write OTP:: |
| 433 | |
| 434 | STM32MP> fuse prog -y 0 57 0x78563412 0x0000bc9a |
| 435 | |
| 436 | 2) Read OTP:: |
| 437 | |
| 438 | STM32MP> fuse sense 0 57 2 |
| 439 | Sensing bank 0: |
| 440 | Word 0x00000039: 78563412 0000bc9a |
| 441 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 442 | 3) Lock OTP:: |
| 443 | |
| 444 | STM32MP> fuse prog 0 0x10000039 1 1 |
| 445 | |
| 446 | STM32MP> fuse sense 0 0x10000039 2 |
| 447 | Sensing bank 0: |
| 448 | Word 0x10000039: 00000001 00000001 |
| 449 | |
| 450 | 4) next REBOOT, in the trace:: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 451 | |
| 452 | ### Setting environment from OTP MAC address = "12:34:56:78:9a:bc" |
| 453 | |
Patrick Delaunay | b10cddf | 2020-02-12 19:37:38 +0100 | [diff] [blame] | 454 | 5) check env update:: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 455 | |
| 456 | STM32MP> env print ethaddr |
| 457 | ethaddr=12:34:56:78:9a:bc |
| 458 | |
| 459 | .. warning:: This command can't be executed twice on the same board as |
| 460 | OTP are protected. It is already done for the board |
| 461 | provided by STMicroelectronics. |
| 462 | |
| 463 | Coprocessor firmware |
| 464 | -------------------- |
| 465 | |
| 466 | U-Boot can boot the coprocessor before the kernel (coprocessor early boot). |
| 467 | |
| 468 | a) Manuallly by using rproc commands (update the bootcmd) |
| 469 | |
| 470 | Configurations:: |
| 471 | |
| 472 | # env set name_copro "rproc-m4-fw.elf" |
| 473 | # env set dev_copro 0 |
| 474 | # env set loadaddr_copro 0xC1000000 |
| 475 | |
| 476 | Load binary from bootfs partition (number 4) on SD card (mmc 0):: |
| 477 | |
| 478 | # ext4load mmc 0:4 ${loadaddr_copro} ${name_copro} |
| 479 | |
| 480 | => ${filesize} variable is updated with the size of the loaded file. |
| 481 | |
| 482 | Start M4 firmware with remote proc command:: |
| 483 | |
| 484 | # rproc init |
| 485 | # rproc load ${dev_copro} ${loadaddr_copro} ${filesize} |
| 486 | # rproc start ${dev_copro}"00270033 |
| 487 | |
| 488 | b) Automatically by using FIT feature and generic DISTRO bootcmd |
| 489 | |
| 490 | see examples in the board stm32mp1 directory: fit_copro_kernel_dtb.its |
| 491 | |
| 492 | Generate FIT including kernel + device tree + M4 firmware with cfg with M4 boot:: |
| 493 | |
| 494 | $> mkimage -f fit_copro_kernel_dtb.its fit_copro_kernel_dtb.itb |
| 495 | |
| 496 | Then using DISTRO configuration file: see extlinux.conf to select the correct |
| 497 | configuration: |
| 498 | |
| 499 | - stm32mp157c-ev1-m4 |
| 500 | - stm32mp157c-dk2-m4 |
| 501 | |
| 502 | DFU support |
| 503 | ----------- |
| 504 | |
| 505 | The DFU is supported on ST board. |
| 506 | |
| 507 | The env variable dfu_alt_info is automatically build, and all |
| 508 | the memory present on the ST boards are exported. |
| 509 | |
| 510 | The dfu mode is started by the command:: |
| 511 | |
| 512 | STM32MP> dfu 0 |
| 513 | |
| 514 | On EV1 board, booting from SD card, without OP-TEE:: |
| 515 | |
| 516 | STM32MP> dfu 0 list |
| 517 | DFU alt settings list: |
| 518 | dev: RAM alt: 0 name: uImage layout: RAM_ADDR |
| 519 | dev: RAM alt: 1 name: devicetree.dtb layout: RAM_ADDR |
| 520 | dev: RAM alt: 2 name: uramdisk.image.gz layout: RAM_ADDR |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 521 | dev: eMMC alt: 3 name: mmc0_fsbl1 layout: RAW_ADDR |
| 522 | dev: eMMC alt: 4 name: mmc0_fsbl2 layout: RAW_ADDR |
| 523 | dev: eMMC alt: 5 name: mmc0_ssbl layout: RAW_ADDR |
| 524 | dev: eMMC alt: 6 name: mmc0_bootfs layout: RAW_ADDR |
| 525 | dev: eMMC alt: 7 name: mmc0_vendorfs layout: RAW_ADDR |
| 526 | dev: eMMC alt: 8 name: mmc0_rootfs layout: RAW_ADDR |
| 527 | dev: eMMC alt: 9 name: mmc0_userfs layout: RAW_ADDR |
| 528 | dev: eMMC alt: 10 name: mmc1_boot1 layout: RAW_ADDR |
| 529 | dev: eMMC alt: 11 name: mmc1_boot2 layout: RAW_ADDR |
| 530 | dev: eMMC alt: 12 name: mmc1_ssbl layout: RAW_ADDR |
| 531 | dev: eMMC alt: 13 name: mmc1_bootfs layout: RAW_ADDR |
| 532 | dev: eMMC alt: 14 name: mmc1_vendorfs layout: RAW_ADDR |
| 533 | dev: eMMC alt: 15 name: mmc1_rootfs layout: RAW_ADDR |
| 534 | dev: eMMC alt: 16 name: mmc1_userfs layout: RAW_ADDR |
| 535 | dev: MTD alt: 17 name: nor0 layout: RAW_ADDR |
| 536 | dev: MTD alt: 18 name: nand0 layout: RAW_ADDR |
| 537 | dev: VIRT alt: 19 name: OTP layout: RAW_ADDR |
| 538 | dev: VIRT alt: 20 name: PMIC layout: RAW_ADDR |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 539 | |
| 540 | All the supported device are exported for dfu-util tool:: |
| 541 | |
| 542 | $> dfu-util -l |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 543 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=20, name="PMIC", serial="002700333338511934383330" |
| 544 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=19, name="OTP", serial="002700333338511934383330" |
| 545 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=18, name="nand0", serial="002700333338511934383330" |
| 546 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=17, name="nor0", serial="002700333338511934383330" |
| 547 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=16, name="mmc1_userfs", serial="002700333338511934383330" |
| 548 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=15, name="mmc1_rootfs", serial="002700333338511934383330" |
| 549 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=14, name="mmc1_vendorfs", serial="002700333338511934383330" |
| 550 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=13, name="mmc1_bootfs", serial="002700333338511934383330" |
| 551 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=12, name="mmc1_ssbl", serial="002700333338511934383330" |
| 552 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=11, name="mmc1_boot2", serial="002700333338511934383330" |
| 553 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=10, name="mmc1_boot1", serial="002700333338511934383330" |
| 554 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=9, name="mmc0_userfs", serial="002700333338511934383330" |
| 555 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=8, name="mmc0_rootfs", serial="002700333338511934383330" |
| 556 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=7, name="mmc0_vendorfs", serial="002700333338511934383330" |
| 557 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=6, name="mmc0_bootfs", serial="002700333338511934383330" |
| 558 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=5, name="mmc0_ssbl", serial="002700333338511934383330" |
| 559 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=4, name="mmc0_fsbl2", serial="002700333338511934383330" |
| 560 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=3, name="mmc0_fsbl1", serial="002700333338511934383330" |
| 561 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=2, name="uramdisk.image.gz", serial="002700333338511934383330" |
| 562 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=1, name="devicetree.dtb", serial="002700333338511934383330" |
| 563 | Found DFU: [0483:df11] ver=9999, devnum=99, cfg=1, intf=0, alt=0, name="uImage", serial="002700333338511934383330" |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 564 | |
| 565 | You can update the boot device: |
| 566 | |
| 567 | - SD card (mmc0) :: |
| 568 | |
| 569 | $> dfu-util -d 0483:5720 -a 3 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
| 570 | $> dfu-util -d 0483:5720 -a 4 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
| 571 | $> dfu-util -d 0483:5720 -a 5 -D u-boot-stm32mp157c-ev1-trusted.img |
| 572 | $> dfu-util -d 0483:5720 -a 6 -D st-image-bootfs-openstlinux-weston-stm32mp1.ext4 |
| 573 | $> dfu-util -d 0483:5720 -a 7 -D st-image-vendorfs-openstlinux-weston-stm32mp1.ext4 |
| 574 | $> dfu-util -d 0483:5720 -a 8 -D st-image-weston-openstlinux-weston-stm32mp1.ext4 |
| 575 | $> dfu-util -d 0483:5720 -a 9 -D st-image-userfs-openstlinux-weston-stm32mp1.ext4 |
| 576 | |
| 577 | - EMMC (mmc1):: |
| 578 | |
| 579 | $> dfu-util -d 0483:5720 -a 10 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
| 580 | $> dfu-util -d 0483:5720 -a 11 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
| 581 | $> dfu-util -d 0483:5720 -a 12 -D u-boot-stm32mp157c-ev1-trusted.img |
| 582 | $> dfu-util -d 0483:5720 -a 13 -D st-image-bootfs-openstlinux-weston-stm32mp1.ext4 |
| 583 | $> dfu-util -d 0483:5720 -a 14 -D st-image-vendorfs-openstlinux-weston-stm32mp1.ext4 |
| 584 | $> dfu-util -d 0483:5720 -a 15 -D st-image-weston-openstlinux-weston-stm32mp1.ext4 |
| 585 | $> dfu-util -d 0483:5720 -a 16 -D st-image-userfs-openstlinux-weston-stm32mp1.ext4 |
| 586 | |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 587 | - you can also dump the OTP and the PMIC NVM with:: |
| 588 | |
| 589 | $> dfu-util -d 0483:5720 -a 19 -U otp.bin |
| 590 | $> dfu-util -d 0483:5720 -a 20 -U pmic.bin |
| 591 | |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 592 | |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 593 | When the board is booting for nor0 or nand0, |
| 594 | only the MTD partition on the boot devices are available, for example: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 595 | |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 596 | - NOR (nor0 = alt 20) & NAND (nand0 = alt 26) :: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 597 | |
| 598 | $> dfu-util -d 0483:5720 -a 21 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 599 | $> dfu-util -d 0483:5720 -a 22 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 600 | $> dfu-util -d 0483:5720 -a 23 -D u-boot-stm32mp157c-ev1-trusted.img |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 601 | $> dfu-util -d 0483:5720 -a 27 -D st-image-weston-openstlinux-weston-stm32mp1_nand_4_256_multivolume.ubi |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 602 | |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 603 | - NAND (nand0 = alt 21):: |
Patrick Delaunay | 5f6fdcc | 2020-02-25 19:04:14 +0100 | [diff] [blame] | 604 | |
Patrick Delaunay | ccf64ef | 2020-03-18 09:22:54 +0100 | [diff] [blame] | 605 | $> dfu-util -d 0483:5720 -a 22 -D tf-a-stm32mp157c-ev1-trusted.stm32 |
| 606 | $> dfu-util -d 0483:5720 -a 23 -D u-boot-stm32mp157c-ev1-trusted.img |
| 607 | $> dfu-util -d 0483:5720 -a 24 -D u-boot-stm32mp157c-ev1-trusted.img |
| 608 | $> dfu-util -d 0483:5720 -a 25 -D st-image-weston-openstlinux-weston-stm32mp1_nand_4_256_multivolume.ubi |