st,stm32-cec.txt 603 B

12345678910111213141516171819
  1. STMicroelectronics STM32 CEC driver
  2. Required properties:
  3. - compatible : value should be "st,stm32-cec"
  4. - reg : Physical base address of the IP registers and length of memory
  5. mapped region.
  6. - clocks : from common clock binding: handle to CEC clocks
  7. - clock-names : from common clock binding: must be "cec" and "hdmi-cec".
  8. - interrupts : CEC interrupt number to the CPU.
  9. Example for stm32f746:
  10. cec: cec@40006c00 {
  11. compatible = "st,stm32-cec";
  12. reg = <0x40006C00 0x400>;
  13. interrupts = <94>;
  14. clocks = <&rcc 0 STM32F7_APB1_CLOCK(CEC)>, <&rcc 1 CLK_HDMI_CEC>;
  15. clock-names = "cec", "hdmi-cec";
  16. };