0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/crypto/st,stm32-crc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: STMicroelectronics STM32 CRC bindings
0008
0009 maintainers:
0010 - Lionel Debieve <lionel.debieve@foss.st.com>
0011
0012 properties:
0013 compatible:
0014 const: st,stm32f7-crc
0015
0016 reg:
0017 maxItems: 1
0018
0019 clocks:
0020 maxItems: 1
0021
0022 required:
0023 - compatible
0024 - reg
0025 - clocks
0026
0027 additionalProperties: false
0028
0029 examples:
0030 - |
0031 #include <dt-bindings/clock/stm32mp1-clks.h>
0032 crc@40023000 {
0033 compatible = "st,stm32f7-crc";
0034 reg = <0x40023000 0x400>;
0035 clocks = <&rcc 0 12>;
0036 };
0037
0038 ...