diff options
| author | Patrick Delaunay <patrick.delaunay@st.com> | 2019-02-12 11:44:39 +0100 | 
|---|---|---|
| committer | Patrick Delaunay <patrick.delaunay@st.com> | 2019-04-12 16:09:13 +0200 | 
| commit | abf2678f0f0d796295f3bfbe422436292e0795f7 (patch) | |
| tree | d084a4a8f8708d49e7dbb82ad90c6d8e880eb9ff /drivers | |
| parent | 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5 (diff) | |
stm32mp1: add trusted boot with TF-A
Add support of trusted boot, using TF-A as first stage bootloader,
The boot sequence is
  BootRom >=> TF-A.stm32 (clock & DDR) >=> U-Boot.stm32
The TF-A monitor provides secure monitor with support of SMC
- proprietary to manage secure devices (BSEC for example)
- PSCI for power
The same device tree is used for STMicroelectronics boards with
basic boot and with trusted boot.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/clk/clk_stm32mp1.c | 2 | ||||
| -rw-r--r-- | drivers/ram/stm32mp1/stm32mp1_ram.c | 3 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/drivers/clk/clk_stm32mp1.c b/drivers/clk/clk_stm32mp1.c index aebc6f0a34c..24859fd054e 100644 --- a/drivers/clk/clk_stm32mp1.c +++ b/drivers/clk/clk_stm32mp1.c @@ -15,10 +15,12 @@  #include <dt-bindings/clock/stm32mp1-clks.h>  #include <dt-bindings/clock/stm32mp1-clksrc.h> +#ifndef CONFIG_STM32MP1_TRUSTED  #if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)  /* activate clock tree initialization in the driver */  #define STM32MP1_CLOCK_TREE_INIT  #endif +#endif  #define MAX_HSI_HZ		64000000 diff --git a/drivers/ram/stm32mp1/stm32mp1_ram.c b/drivers/ram/stm32mp1/stm32mp1_ram.c index bd497a3021d..e45a3b2658a 100644 --- a/drivers/ram/stm32mp1/stm32mp1_ram.c +++ b/drivers/ram/stm32mp1/stm32mp1_ram.c @@ -157,7 +157,8 @@ static int stm32mp1_ddr_probe(struct udevice *dev)  	priv->info.base = STM32_DDR_BASE; -#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) +#if !defined(CONFIG_STM32MP1_TRUSTED) && \ +	(!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))  	priv->info.size = 0;  	return stm32mp1_ddr_setup(dev);  #else | 
