Hi all

In our work integrating TFM into Zephyr and the nRF Connect SDK, it’s apparent that the integration would be a lot smoother if we could specify TFM’s flash layout externally.

Looking into it a bit, I came up with a draft proposal here: https://github.com/zephyrproject-rtos/trusted-firmware-m/pull/18/files

We could just modify our own platforms to this and be happy, but I’m wondering if there would be interest in standardizing something.

 

Now, a related problem is: How can we make it easier to add multiple boards based on a single chip. For the Nordic platforms we’ve already separated the chip-specific code (nRF9160/nRF5340) from the board specific code (DK/PDK), and for the boards, it really boils down to pin configurations.

We could allow to specify pins via Cmake instead, to easily allow users to support their production PCBs.

 

But (this was brought up in the above PR) we can also solve both problems by adding support for out-of-tree platforms.

For example, allow TFM to be built like so:

cmake -DTFM_PLATFORM=../../../../my_custom_board ...

This would probably be less work that designing a new interface for overriding flash layouts and pin configurations.

 

What are your thoughts?

BR,

Øyvind Rønningstad