From: Fabien DESSENNE Date: Tue, 21 Mar 2017 15:13:27 +0000 (+0100) Subject: dt-bindings: Document STM32 CRC bindings X-Git-Tag: v4.12-rc1~130^2~47 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c0a680c4cc1b54c3f38b663f540d55c584452394;p=karo-tx-linux.git dt-bindings: Document STM32 CRC bindings Document device tree bindings for the STM32 CRC (crypto CRC32) Signed-off-by: Fabien Dessenne Acked-by: Rob Herring Signed-off-by: Herbert Xu --- diff --git a/Documentation/devicetree/bindings/crypto/st,stm32-crc.txt b/Documentation/devicetree/bindings/crypto/st,stm32-crc.txt new file mode 100644 index 000000000000..3ba92a5e9b36 --- /dev/null +++ b/Documentation/devicetree/bindings/crypto/st,stm32-crc.txt @@ -0,0 +1,16 @@ +* STMicroelectronics STM32 CRC + +Required properties: +- compatible: Should be "st,stm32f7-crc". +- reg: The address and length of the peripheral registers space +- clocks: The input clock of the CRC instance + +Optional properties: none + +Example: + +crc: crc@40023000 { + compatible = "st,stm32f7-crc"; + reg = <0x40023000 0x400>; + clocks = <&rcc 0 12>; +};