exynos_hdmi.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. - clocks: list of clock IDs from SoC clock driver.
  15. a) hdmi: Gate of HDMI IP bus clock.
  16. b) sclk_hdmi: Gate of HDMI special clock.
  17. c) sclk_pixel: Pixel special clock, one of the two possible inputs of
  18. HDMI clock mux.
  19. d) sclk_hdmiphy: HDMI PHY clock output, one of two possible inputs of
  20. HDMI clock mux.
  21. e) mout_hdmi: It is required by the driver to switch between the 2
  22. parents i.e. sclk_pixel and sclk_hdmiphy. If hdmiphy is stable
  23. after configuration, parent is set to sclk_hdmiphy else
  24. sclk_pixel.
  25. - clock-names: aliases as per driver requirements for above clock IDs:
  26. "hdmi", "sclk_hdmi", "sclk_pixel", "sclk_hdmiphy" and "mout_hdmi".
  27. Example:
  28. hdmi {
  29. compatible = "samsung,exynos4212-hdmi";
  30. reg = <0x14530000 0x100000>;
  31. interrupts = <0 95 0>;
  32. hpd-gpio = <&gpx3 7 1>;
  33. };