1/*
2 * Copyright (c) 2023 Charles Dias <charlesdias.cd@outlook.com>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <st/h7/stm32h7a3.dtsi>
9
10/*
11 * STM32H7B0 line contains the same peripherals as STM32H7A3,
12 * with addition of CRYPTO/HASH and OTFDEC peripherals.
13 */
14/ {
15	soc {
16		compatible = "st,stm32h7b0", "st,stm32h7", "simple-bus";
17
18		cryp: cryp@48021000 {
19			compatible = "st,stm32-cryp";
20			reg = <0x48021000 0x400>;
21			clocks = <&rcc STM32_CLOCK(AHB2, 4U)>;
22			resets = <&rctl STM32_RESET(AHB2, 4U)>;
23			interrupts = <79 0>;
24			interrupt-names = "cryp";
25			status = "disabled";
26		};
27	};
28};
29