s5p-cec.txt 956 B

1234567891011121314151617181920212223242526272829303132
  1. * Samsung HDMI CEC driver
  2. The HDMI CEC module is present is Samsung SoCs and its purpose is to
  3. handle communication between HDMI connected devices over the CEC bus.
  4. Required properties:
  5. - compatible : value should be following
  6. "samsung,s5p-cec"
  7. - reg : Physical base address of the IP registers and length of memory
  8. mapped region.
  9. - interrupts : HDMI CEC interrupt number to the CPU.
  10. - clocks : from common clock binding: handle to HDMI CEC clock.
  11. - clock-names : from common clock binding: must contain "hdmicec",
  12. corresponding to entry in the clocks property.
  13. - samsung,syscon-phandle - phandle to the PMU system controller
  14. Example:
  15. hdmicec: cec@100B0000 {
  16. compatible = "samsung,s5p-cec";
  17. reg = <0x100B0000 0x200>;
  18. interrupts = <0 114 0>;
  19. clocks = <&clock CLK_HDMI_CEC>;
  20. clock-names = "hdmicec";
  21. samsung,syscon-phandle = <&pmu_system_controller>;
  22. pinctrl-names = "default";
  23. pinctrl-0 = <&hdmi_cec>;
  24. status = "okay";
  25. };