1/* 2 * Copyright (c) 2021 Thomas Stranger 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 zephyr,entropy = &rng; 10 }; 11 12 soc { 13 aes: aes@40026000 { 14 compatible = "st,stm32-aes"; 15 reg = <0x40026000 0x400>; 16 clocks = <&rcc STM32_CLOCK(AHB1, 16U)>; 17 resets = <&rctl STM32_RESET(AHB1, 16U)>; 18 interrupts = <31 0>; 19 status = "disabled"; 20 }; 21 22 rng: rng@40025000 { 23 compatible = "st,stm32-rng"; 24 reg = <0x40025000 0x400>; 25 interrupts = <31 1>; 26 clocks = <&rcc STM32_CLOCK(AHB1, 18U)>; 27 status = "disabled"; 28 }; 29 }; 30}; 31