blob: c03bd43a31ab0d7c2e8f66afc1dc351dd1fa6f7e [file] [log] [blame]
Yann Gautiercd736192020-02-25 15:14:52 +01001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2/*
3 * Copyright (C) STMicroelectronics 2022 - All Rights Reserved
4 * Author: Alexandre Torgue <alexandre.torgue@foss.st.com> for STMicroelectronics.
5 */
6
7#include "stm32mp13xa.dtsi"
8
9/ {
10 soc {
11 cryp: crypto@54002000 {
12 compatible = "st,stm32mp1-cryp";
13 reg = <0x54002000 0x400>;
14 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
15 clocks = <&rcc CRYP1>;
16 resets = <&rcc CRYP1_R>;
17 status = "disabled";
18 };
19
20 saes: saes@54005000 {
21 compatible = "st,stm32-saes";
22 reg = <0x54005000 0x400>;
23 clocks = <&rcc SAES_K>;
24 resets = <&rcc SAES_R>;
25 status = "disabled";
26 };
27
28 pka: pka@54006000 {
29 compatible = "st,stm32-pka64";
30 reg = <0x54006000 0x2000>;
31 clocks = <&rcc PKA>;
32 resets = <&rcc PKA_R>;
33 status = "disabled";
34 };
35 };
36};