Hi,

In the ideal case with HAL API, the platform itself can decide which variant’s layout to be applied, selected by build system switches or just some header files.

Because SPM could get what it needed by HAL API run-time.

It can be mostly done inside the platform folder if one platform has the variants management already.

Others please give inputs as this is a very useful topic, we can list down the problem we met during integration first.

BR

/Ken

From: TF-M <tf-m-bounces@lists.trustedfirmware.org> On Behalf Of Rønningstad, Øyvind via TF-M
Sent: Thursday, November 26, 2020 3:47 AM
To: tf-m@lists.trustedfirmware.org
Cc: Rasmussen, Torsten <Torsten.Rasmussen@nordicsemi.no>
Subject: [TF-M] Externally override flash layout and pin configurations (out-of-tree platforms?)

 

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