This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Bootloader difference and implementation from SDK 14 to SDK 16

Hi,

few years back I've developed an application and a simple SPI bootloader for nRF51.

Later I've implemented the same on SDK 14 for nRF52832. Softdevice is SD132.

Bootloader is very simple and uses application to transfer data to external SPI data flash, it does not use Sofdevice, so this is Sofdevice-less bootloader.

It works like this:

1.) Nrf application transfers data to nRF52832 which writes the data via SPI to external data flash

2.) Nrf application writes flags that update is available and restarts the device

3.) Bootloader starts, reads the flags and flashes the device. After flashing it clears the flags and restarts the device

4.) Device boots to bootloader, flags are cleared so it starts the nrf application

I've already updated and created the application for SDK 16 and it works well.

I've also created the bootloader but I'm missing some defines:

SOFTDEVICE_REGION_START

CODE_REGION_1_START

BOOTLOADER_START_ADDR

Questions:

1.) Where can I find those defines now? If I'm not mistaken they were in nrf_dfu_types.h (SDK 14). Where can I find differences in addresses and SD size from SDK 14 to 16? Currently I don't know where to flash the bootloader/application. In address space SD starts from address 0, MBR is from 0 to 0x1000 so this is flashed once and it never gets erased. But how to know SD size in SDK 16 so I know where to flash the bootloader?

2.) Since SDK 16 has some new DFU bootloaders, would it be possible to implement something like this using some of the provided examples? Do bear in mind that update process must be seamless and automatic. That's why we are using application to transfer data to SPI flash - as data is transfered application is doing it's regular tasks. Only when transfer is complete bootloader is active and flashes the device. This way users don't have to connect/reconnect from bootloader to application.

Thanks!

Parents
  • Hi,

    1.

    There is a new SoftDevice helper library, so you will find much of the same information in nrf_sdm.h. There you have SD_SIZE_GET(), for instance. There you also have SD_FLASH_SIZE macro, specifying the SoftDevice size excluding the MBR. The MBR_SIZE is specified in nrf_mbr.h, and is always 0x1000. This means that the Start of the SoftDevice is always at MBR_SIZE (since it is immediately after), and the start of the application is always at (SD_FLASH_SIZE + MBR_SIZE).

    The BOOTLOADER_START_ADDR concept is used in the bootloader, but since you have your own bootloader it may not be relevant? The key point is just that you need to provide the start address of your bootloader to the MBR, which you do by writing the start address of your bootloader to the dedicated register in the UICR (0x10001014). You can search for "uicr_bootloader_start_address"in SDK 16 to see how it is done in our example bootloader.

    2. 

    SDK 16 does not include a "background" DFU bootloader example, but it is possible to implement this using the DFU modules we provide so that the application is responsible for validating and transferring the image, leaving only the activation to the bootloader. Though there are no examples, this has been discussed a few times, for instance in this thread.

Reply
  • Hi,

    1.

    There is a new SoftDevice helper library, so you will find much of the same information in nrf_sdm.h. There you have SD_SIZE_GET(), for instance. There you also have SD_FLASH_SIZE macro, specifying the SoftDevice size excluding the MBR. The MBR_SIZE is specified in nrf_mbr.h, and is always 0x1000. This means that the Start of the SoftDevice is always at MBR_SIZE (since it is immediately after), and the start of the application is always at (SD_FLASH_SIZE + MBR_SIZE).

    The BOOTLOADER_START_ADDR concept is used in the bootloader, but since you have your own bootloader it may not be relevant? The key point is just that you need to provide the start address of your bootloader to the MBR, which you do by writing the start address of your bootloader to the dedicated register in the UICR (0x10001014). You can search for "uicr_bootloader_start_address"in SDK 16 to see how it is done in our example bootloader.

    2. 

    SDK 16 does not include a "background" DFU bootloader example, but it is possible to implement this using the DFU modules we provide so that the application is responsible for validating and transferring the image, leaving only the activation to the bootloader. Though there are no examples, this has been discussed a few times, for instance in this thread.

Children
No Data
Related