aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2022-07-05 16:55:55 +0200
committerPatrick Delaunay <patrick.delaunay@foss.st.com>2022-07-12 11:46:32 +0200
commit43872790d8eeb2055aebc13b09fba3dbb2f8dcaf (patch)
treec69018db14977e5e8d26485de79696ead1cf529f /drivers/misc
parent69ef98b209e7e392d4a31d99cb4fa249f8a58ac0 (diff)
downloadu-boot-43872790d8eeb2055aebc13b09fba3dbb2f8dcaf.zip
u-boot-43872790d8eeb2055aebc13b09fba3dbb2f8dcaf.tar.gz
u-boot-43872790d8eeb2055aebc13b09fba3dbb2f8dcaf.tar.bz2
clk: stm32: add support compatible st, stm32mp1-rcc-secure
Add support for new compatible st,stm32mp1-rcc-secure used when the RCC resource is managed by secured world (RCC_TZCR.TZEN=1) iand when SCMI is used. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/stm32_rcc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/stm32_rcc.c b/drivers/misc/stm32_rcc.c
index b816503..c1e5428 100644
--- a/drivers/misc/stm32_rcc.c
+++ b/drivers/misc/stm32_rcc.c
@@ -84,6 +84,7 @@ static const struct udevice_id stm32_rcc_ids[] = {
{.compatible = "st,stm32f746-rcc", .data = (ulong)&stm32_rcc_clk_f7 },
{.compatible = "st,stm32h743-rcc", .data = (ulong)&stm32_rcc_clk_h7 },
{.compatible = "st,stm32mp1-rcc", .data = (ulong)&stm32_rcc_clk_mp1 },
+ {.compatible = "st,stm32mp1-rcc-secure", .data = (ulong)&stm32_rcc_clk_mp1 },
{.compatible = "st,stm32mp13-rcc", .data = (ulong)&stm32_rcc_clk_mp13 },
{ }
};