fsl,dcu.txt 622 B

12345678910111213141516171819202122
  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: From common clock binding: handle to dcu clock.
  8. - clock-names: From common clock binding: Shall be "dcu".
  9. - big-endian Boolean property, LS1021A DCU registers are big-endian.
  10. - fsl,panel: The phandle to panel node.
  11. Examples:
  12. dcu: dcu@2ce0000 {
  13. compatible = "fsl,ls1021a-dcu";
  14. reg = <0x0 0x2ce0000 0x0 0x10000>;
  15. clocks = <&platform_clk 0>;
  16. clock-names = "dcu";
  17. big-endian;
  18. fsl,panel = <&panel>;
  19. };