1/* 2 * Copyright (c) 2022 Tomislav Milkovic 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/l4/stm32l476.dtsi> 8 9/ { 10 soc { 11 compatible = "st,stm32l486", "st,stm32l4", "simple-bus"; 12 13 aes: aes@50060000 { 14 compatible = "st,stm32l4-aes", "st,stm32-aes"; 15 reg = <0x50060000 0x400>; 16 clocks = <&rcc STM32_CLOCK(AHB2, 16U)>; 17 resets = <&rctl STM32_RESET(AHB2, 16U)>; 18 interrupts = <79 0>; 19 interrupt-names = "aes"; 20 status = "disabled"; 21 }; 22 }; 23}; 24