Skip to content

Releases: youngsea2000/STM32MP1xx_Baremetal

FSBLA_Sdmmc1_gpt_name

16 Nov 16:41
Compare
Choose a tag to compare

In order to synchronize with the official STM32MP13xx bootloader. This is the first and also the final version of the bootloader, which is launched by identifying the disk name through the standard GPT partition.

If you want to use this bootloader, you should pay attention to the following:

  1. The bootloader will select the first partition with 'ssbl' as the GPT partition name from the first four partitions on the SD card,
  2. and load the program from that partition into DDR at address 0xC0000000.
  3. Since the program contains a 256-byte header, the program entry point is at 0xC0000100.
  4. The above-mentioned settings can be modified according to personal needs.

为了与官方STM32MP13xx的bootloader同步,这是通过标准GPT分区的磁盘名字进行识别启动的第一版bootloader也是最后一版

如果你想使用这个bootloader,应该注意如下内容:

  1. bootloader 会选择sd卡前四个分区里第一个由"ssbl"作为gpt分区名字的分区
  2. 加载分区中的程序至DDR的0xC0000000
  3. 由于程序含有256字节的header,因此程序入口在0xC0000100
  4. 以上提到的内容可以根据个人需要自行修改。