1STMicroelectronics STM32 CEC driver
2
3Required 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.
10
11Example for stm32f746:
12
13cec: 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";
19};
20