2020-03-30 03:19:02 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Aurelien Jarno
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <st/l4/stm32l412.dtsi>
|
2023-02-22 22:14:57 +08:00
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
2023-05-11 19:37:02 +08:00
|
|
|
compatible = "st,stm32l422", "st,stm32l4", "simple-bus";
|
|
|
|
|
2023-02-22 22:14:57 +08:00
|
|
|
aes: aes@50060000 {
|
|
|
|
compatible = "st,stm32-aes";
|
|
|
|
reg = <0x50060000 0x400>;
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00010000>;
|
|
|
|
interrupts = <79 0>;
|
|
|
|
interrupt-names = "aes";
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|