DHSBC STM32MP13 DFU and UMS usage

From Wiki-DB
Jump to navigationJump to search

Requirements

Software

Hardware

  • DHSBC STM32MP13 board
  • USB-A to Type-C cable (for DFU and UMS data connection)
  • Type-C power supply for DHCBS STM32Mp13 board
  • FTDI cable TTL-232R-3V3 for console connection

Preparation

This installation was made on the Virtual Machine for Application Development. All console expressions refer to this Debian system, but any other debian based system should also work.

BOOT MODES

USB (DFU) 000b
SPI Flash 001b

NOTE: First Board revision 719-100 -> ON means 0 -> SPI Flash boot: bit 1 = OFF, bit 2,3 = ON!

Install dfu-util (debian)

apt-get install dfu-util

Collect artifacts from OE build:

  • tf-a-stm32mp135f-dhcor-dhsbc.stm32-stm32mp1
  • fip.bin-stm32mp1
  • *image*.wic

Start U-Boot via USB DFU upload:

>>> Connecting USB Data and FTDI console port. Open a terminal program (PuTTY or TeraTerm) for serial console connection.
>>> Switch boot mode to 123=ON-ON-ON (USB DFU boot)
>>> Power on the board
>>> DFU device apears on Linux host computer
$ dfu-util -a 0 -D tf-a-stm32mp135f-dhcor-dhsbc.stm32 -R
$ dfu-util -a 0 -D fip.bin -R

Install bootloader to SPI NOR:

  • U-Boot side:
=> sf probe
=> env set dfu_alt_info "mtd nor0=fsbl1 raw 0x0 0x40000;fsbl2 raw 0x40000 0x40000;uboot raw 0x80000 0x160000;env1 raw 0x3e0000 0x10000;env2 raw 0x3f0000 0x10000"
=> dfu 0 mtd
  • Host PC side
$ dfu-util -a 2 -D fip.bin
$ dfu-util -a 1 -D tf-a-stm32mp135f-dhcor-dhsbc.stm32
$ dfu-util -a 0 -D tf-a-stm32mp135f-dhcor-dhsbc.stm32
>>> Power off the board, switch boot mode to 123=OFF-ON-ON (QSPI NOR boot)

Reset Environment to default of new bootloader

=> env default -a
=> saveenv
=> saveenv

Install root filesystem to eMMC:

  • U-Boot side:
=> ums 0 mmc 0
  • Host PC side
$ dd if=*image*wic of=/dev/sdX bs=4M
>>> Power off the board, switch boot mode to 123=OFF-ON-ON (QSPI NOR boot)
>>> Power on and boot