fsl,dcu.txt 934 B

12345678910111213141516171819202122232425262728293031323334
  1. Device Tree bindings for Freescale DCU DRM Driver
  2. Required properties:
  3. - compatible: Should be one of
  4. * "fsl,ls1021a-dcu".
  5. * "fsl,vf610-dcu".
  6. - reg: Address and length of the register set for dcu.
  7. - clocks: Handle to "dcu" and "pix" clock (in the order below)
  8. This can be the same clock (e.g. LS1021a)
  9. See ../clocks/clock-bindings.txt for details.
  10. - clock-names: Should be "dcu" and "pix"
  11. See ../clocks/clock-bindings.txt for details.
  12. - big-endian Boolean property, LS1021A DCU registers are big-endian.
  13. - port Video port for the panel output
  14. Optional properties:
  15. - fsl,tcon: The phandle to the timing controller node.
  16. Examples:
  17. dcu: dcu@2ce0000 {
  18. compatible = "fsl,ls1021a-dcu";
  19. reg = <0x0 0x2ce0000 0x0 0x10000>;
  20. clocks = <&platform_clk 0>, <&platform_clk 0>;
  21. clock-names = "dcu", "pix";
  22. big-endian;
  23. fsl,tcon = <&tcon>;
  24. port {
  25. dcu_out: endpoint {
  26. remote-endpoint = <&panel_out>;
  27. };
  28. };
  29. };