1/* 2 * Copyright (c) 2021 Thomas Stranger 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/l5/stm32l5.dtsi> 8 9/ { 10 soc { 11 compatible = "st,stm32l562", "st,stm32l5", "simple-bus"; 12 13 aes: aes@420c0000 { 14 compatible = "st,stm32-aes"; 15 reg = <0x420c0000 0x400>; 16 clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00010000>; 17 resets = <&rctl STM32_RESET(AHB2, 16U)>; 18 interrupts = <93 0>; 19 status = "disabled"; 20 }; 21 }; 22}; 23