mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
c0a680c4cc
Document device tree bindings for the STM32 CRC (crypto CRC32) Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
17 lines
348 B
Plaintext
17 lines
348 B
Plaintext
* 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>;
|
|
};
|