exynos_hdmi.txt 669 B

1234567891011121314151617181920212223
  1. Device-Tree bindings for drm hdmi driver
  2. Required properties:
  3. - compatible: value should be one among the following:
  4. 1) "samsung,exynos5-hdmi" <DEPRECATED>
  5. 2) "samsung,exynos4210-hdmi"
  6. 3) "samsung,exynos4212-hdmi"
  7. - reg: physical base address of the hdmi and length of memory mapped
  8. region.
  9. - interrupts: interrupt number to the cpu.
  10. - hpd-gpio: following information about the hotplug gpio pin.
  11. a) phandle of the gpio controller node.
  12. b) pin number within the gpio controller.
  13. c) optional flags and pull up/down.
  14. Example:
  15. hdmi {
  16. compatible = "samsung,exynos4212-hdmi";
  17. reg = <0x14530000 0x100000>;
  18. interrupts = <0 95 0>;
  19. hpd-gpio = <&gpx3 7 1>;
  20. };