blob: e74f7afdaeb2cb1e96290d8f2f076e24c72049e6 [file] [log] [blame]
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +01001.. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2.. sectionauthor:: Patrick Delaunay <patrick.delaunay@st.com>
3
4STM32MP15x boards
5=================
6
7This is a quick instruction for setup STM32MP15x boards.
8
9Supported devices
10-----------------
11
12U-Boot supports STMP32MP15x SoCs:
13
14 - STM32MP157
15 - STM32MP153
16 - STM32MP151
17
18The STM32MP15x is a Cortex-A MPU aimed at various applications.
19
20It 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 Delaunaydb33b0e2020-02-26 11:26:43 +010028Each line comes with a security option (cryptography & secure boot) and
29a 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 Delaunay5f6fdcc2020-02-25 19:04:14 +010036Everything 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
45And the necessary drivers
46
47 1. I2C
48 2. STPMIC1 (PMIC and regulator)
49 3. Clock, Reset, Sysreset
50 4. Fuse
51
52Currently the following boards are supported:
53
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010054 + stm32mp157a-dk1.dts
55 + stm32mp157c-dk2.dts
56 + stm32mp157c-ed1.dts
57 + stm32mp157c-ev1.dts
Marek Vasut526c9512020-03-31 19:51:36 +020058 + stm32mp15xx-dhcor-avenger96.dts
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010059
60Boot Sequences
61--------------
62
633 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
73The **Trusted** boot chain
74``````````````````````````
75
76defconfig_file : stm32mp15_trusted_defconfig
77
78 +-------------+-------------------------+------------+-------+
79 | ROM code | FSBL | SSBL | OS |
80 + +-------------------------+------------+-------+
81 | |Trusted Firmware-A (TF-A)| U-Boot | Linux |
82 +-------------+-------------------------+------------+-------+
Patrick Delaunay6557aa82020-03-18 09:22:51 +010083 | TrustZone |secure monitor |
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010084 +-------------+-------------------------+------------+-------+
85
86TF-A performs a full initialization of Secure peripherals and installs a
Patrick Delaunay6557aa82020-03-18 09:22:51 +010087secure monitor, BL32:
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010088
Patrick Delaunay6557aa82020-03-18 09:22:51 +010089 * SPMin provided by TF-A or
90 * OP-TEE from specific partitions (teeh, teed, teex).
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010091
Patrick Delaunay6557aa82020-03-18 09:22:51 +010092U-Boot is running in normal world and uses the secure monitor to access
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +010093to secure resources.
94
95The **Basic** boot chain
96````````````````````````
97
98defconfig_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
108SPL has limited security initialization
109
110U-Boot is running in secure mode and provide a secure monitor to the kernel
111with only PSCI support (Power State Coordination Interface defined by ARM).
112
113All the STM32MP15x boards supported by U-Boot use the same generic board
114stm32mp1 which support all the bootable devices.
115
116Each board is configured only with the associated device tree.
117
118Device Tree Selection
119---------------------
120
121You need to select the appropriate device tree for your board,
122the 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 Vasut526c9512020-03-31 19:51:36 +0200140+ avenger96: Avenger96 board from Arrow Electronics based on DH Elec. DHCOR SoM
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100141
Marek Vasut526c9512020-03-31 19:51:36 +0200142 + stm32mp15xx-dhcor-avenger96
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100143
144Build Procedure
145---------------
146
1471. 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
1562. Set the cross compiler::
157
158 # export CROSS_COMPILE=/path/to/toolchain/arm-linux-gnueabi-
159
1603. 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 Delaunay5f6fdcc2020-02-25 19:04:14 +0100167 # export KBUILD_OUTPUT=stm32mp15_basic
168
169 you can build outside of code directory::
170
171 # export KBUILD_OUTPUT=../build/stm32mp15_trusted
172
1734. Configure U-Boot::
174
175 # make <defconfig_file>
176
177 with <defconfig_file>:
178
179 - For **trusted** boot mode : **stm32mp15_trusted_defconfig**
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100180 - For basic boot mode: stm32mp15_basic_defconfig
181
1825. 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 Delaunay6557aa82020-03-18 09:22:51 +0100196 # export KBUILD_OUTPUT=stm32mp15_trusted
197 # make stm32mp15_trusted_defconfig
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100198 # 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 Vasut526c9512020-03-31 19:51:36 +0200222 # make DEVICE_TREE=stm32mp15xx-dhcor-avenger96 all
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100223
2246. 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
242Switch Setting for Boot Mode
243----------------------------
244
245You can select the boot mode, on the board with one switch, to select
246the 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
286Recovery is a boot from serial link (UART/USB) and it is used with
287STM32CubeProgrammer tool to load executable in RAM and to update the flash
288devices available on the board (NOR/NAND/eMMC/SD card).
289
290The 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
295Prepare an SD card
296------------------
297
298The 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
304Then 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
318Add a 4th partition (Rootfs) marked bootable with a file extlinux.conf
319following the Generic Distribution feature (doc/README.distro for use).
320
321According the used card reader select the correct block device
322(for example /dev/sdx or /dev/mmcblk0).
323
324In the next example, it is /dev/mmcblk0
325
326For example: with gpt table with 128 entries
327
328a) remove previous formatting::
329
330 # sgdisk -o /dev/<SD card dev>
331
332b) 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
343c) 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
358To boot from SD card, select BootPinMode = 1 0 1 and reset.
359
360Prepare eMMC
361------------
362
363You can use U-Boot to copy binary in eMMC.
364
365In 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)
367in ext4 partition 4 (bootfs).
368
369To boot from SD card, select BootPinMode = 1 0 1 and reset.
370
371Then you update the eMMC with the next U-Boot command :
372
373a) 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
379b) 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
388c) 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
395To boot from eMMC, select BootPinMode = 0 1 0 and reset.
396
397MAC Address
398-----------
399
400Please read doc/README.enetaddr for the implementation guidelines for mac id
401usage. Basically, environment has precedence over board specific storage.
402
403For 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
408To program a MAC address on virgin OTP words above, you can use the fuse command
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100409on bank 0 to access to internal OTP and lock them:
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100410
411Prerequisite: check if a MAC address isn't yet programmed in OTP
412
Patrick Delaunayb10cddf2020-02-12 19:37:38 +01004131) check OTP: their value must be equal to 0::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100414
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100415 STM32MP> fuse sense 0 57 2
416 Sensing bank 0:
417 Word 0x00000039: 00000000 00000000
418
4192) check environment variable::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100420
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100421 STM32MP> env print ethaddr
422 ## Error: "ethaddr" not defined
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100423
Patrick Delaunayb10cddf2020-02-12 19:37:38 +01004243) 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 Delaunay5f6fdcc2020-02-25 19:04:14 +0100429
430Example to set mac address "12:34:56:78:9a:bc"
431
4321) Write OTP::
433
434 STM32MP> fuse prog -y 0 57 0x78563412 0x0000bc9a
435
4362) Read OTP::
437
438 STM32MP> fuse sense 0 57 2
439 Sensing bank 0:
440 Word 0x00000039: 78563412 0000bc9a
441
Patrick Delaunayb10cddf2020-02-12 19:37:38 +01004423) 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
4504) next REBOOT, in the trace::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100451
452 ### Setting environment from OTP MAC address = "12:34:56:78:9a:bc"
453
Patrick Delaunayb10cddf2020-02-12 19:37:38 +01004545) check env update::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100455
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
463Coprocessor firmware
464--------------------
465
466U-Boot can boot the coprocessor before the kernel (coprocessor early boot).
467
468a) 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
488b) 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
502DFU support
503-----------
504
505The DFU is supported on ST board.
506
507The env variable dfu_alt_info is automatically build, and all
508the memory present on the ST boards are exported.
509
510The dfu mode is started by the command::
511
512 STM32MP> dfu 0
513
514On 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 Delaunayccf64ef2020-03-18 09:22:54 +0100521 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 Delaunay5f6fdcc2020-02-25 19:04:14 +0100539
540All the supported device are exported for dfu-util tool::
541
542 $> dfu-util -l
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100543 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 Delaunay5f6fdcc2020-02-25 19:04:14 +0100564
565You 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 Delaunayccf64ef2020-03-18 09:22:54 +0100587- 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 Delaunay5f6fdcc2020-02-25 19:04:14 +0100592
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100593When the board is booting for nor0 or nand0,
594only the MTD partition on the boot devices are available, for example:
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100595
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100596- NOR (nor0 = alt 20) & NAND (nand0 = alt 26) ::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100597
598 $> dfu-util -d 0483:5720 -a 21 -D tf-a-stm32mp157c-ev1-trusted.stm32
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100599 $> dfu-util -d 0483:5720 -a 22 -D tf-a-stm32mp157c-ev1-trusted.stm32
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100600 $> dfu-util -d 0483:5720 -a 23 -D u-boot-stm32mp157c-ev1-trusted.img
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100601 $> dfu-util -d 0483:5720 -a 27 -D st-image-weston-openstlinux-weston-stm32mp1_nand_4_256_multivolume.ubi
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100602
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100603- NAND (nand0 = alt 21)::
Patrick Delaunay5f6fdcc2020-02-25 19:04:14 +0100604
Patrick Delaunayccf64ef2020-03-18 09:22:54 +0100605 $> 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