1/*
2 * Copyright (c) 2024 S&C Electric Company <Michael.Banducci@sandc.com>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/h7/stm32h7_dualcore.dtsi>
8#include <st/h7/stm32h745.dtsi>
9
10/ {
11	soc {
12		compatible = "st,stm32h755", "st,stm32h7", "simple-bus";
13
14		cryp: cryp@48021000 {
15			compatible = "st,stm32-cryp";
16			reg = <0x48021000 0x400>;
17			clocks = <&rcc STM32_CLOCK(AHB2, 4U)>;
18			interrupts = <79 0>;
19			status = "disabled";
20		};
21
22		hash: cryp@48021400 {
23			compatible = "st,stm32-cryp";
24			reg = <0x48021400 0x400>;
25			clocks = <&rcc STM32_CLOCK(AHB2, 5U)>;
26			interrupts = <80 0>;
27			status = "disabled";
28		};
29	};
30};
31