marvell,pxa2xx-lcdc.txt 900 B

12345678910111213141516171819202122232425262728293031323334
  1. PXA LCD Controller
  2. ------------------
  3. Required properties:
  4. - compatible : one of these
  5. "marvell,pxa2xx-lcdc",
  6. "marvell,pxa270-lcdc",
  7. "marvell,pxa300-lcdc"
  8. - reg : should contain 1 register range (address and length).
  9. - interrupts : framebuffer controller interrupt.
  10. - clocks: phandle to input clocks
  11. Required nodes:
  12. - port: connection to the LCD panel (see video-interfaces.txt)
  13. This node must have its properties bus-width and remote-endpoint set.
  14. If the panel is not a TFT color panel, then a "lcd-type" property in
  15. the panel should specify the panel type.
  16. This panel node should be in the board dts.
  17. Example:
  18. lcd-controller@40500000 {
  19. compatible = "marvell,pxa2xx-lcdc";
  20. reg = <0x44000000 0x10000>;
  21. interrupts = <17>;
  22. clocks = <&clks CLK_LCD>;
  23. status = "okay";
  24. port {
  25. lcdc_out: endpoint {
  26. remote-endpoint = <&panel_in>;
  27. bus-width = <16>;
  28. };
  29. };
  30. };