rtc: stm32: fix misspelling and misalignment issues
[linux/fpc-iii.git] / Documentation / devicetree / bindings / media / st,stm32-cec.txt
blob6be2381c180d0e3c667813491b1429e5ae53ba6e
1 STMicroelectronics STM32 CEC driver
3 Required properties:
4  - compatible : value should be "st,stm32-cec"
5  - reg : Physical base address of the IP registers and length of memory
6          mapped region.
7  - clocks : from common clock binding: handle to CEC clocks
8  - clock-names : from common clock binding: must be "cec" and "hdmi-cec".
9  - interrupts : CEC interrupt number to the CPU.
11 Example for stm32f746:
13 cec: cec@40006c00 {
14         compatible = "st,stm32-cec";
15         reg = <0x40006C00 0x400>;
16         interrupts = <94>;
17         clocks = <&rcc 0 STM32F7_APB1_CLOCK(CEC)>, <&rcc 1 CLK_HDMI_CEC>;
18         clock-names = "cec", "hdmi-cec";