mxsfb.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * Freescale MXS LCD Interface (LCDIF)
  2. Required properties:
  3. - compatible: Should be "fsl,<chip>-lcdif". Supported chips include
  4. imx23 and imx28.
  5. - reg: Address and length of the register set for lcdif
  6. - interrupts: Should contain lcdif interrupts
  7. - display : phandle to display node (see below for details)
  8. * display node
  9. Required properties:
  10. - bits-per-pixel : <16> for RGB565, <32> for RGB888/666.
  11. - bus-width : number of data lines. Could be <8>, <16>, <18> or <24>.
  12. Required sub-node:
  13. - display-timings : Refer to binding doc display-timing.txt for details.
  14. Examples:
  15. lcdif@80030000 {
  16. compatible = "fsl,imx28-lcdif";
  17. reg = <0x80030000 2000>;
  18. interrupts = <38 86>;
  19. display: display {
  20. bits-per-pixel = <32>;
  21. bus-width = <24>;
  22. display-timings {
  23. native-mode = <&timing0>;
  24. timing0: timing0 {
  25. clock-frequency = <33500000>;
  26. hactive = <800>;
  27. vactive = <480>;
  28. hfront-porch = <164>;
  29. hback-porch = <89>;
  30. hsync-len = <10>;
  31. vback-porch = <23>;
  32. vfront-porch = <10>;
  33. vsync-len = <10>;
  34. hsync-active = <0>;
  35. vsync-active = <0>;
  36. de-active = <1>;
  37. pixelclk-active = <0>;
  38. };
  39. };
  40. };
  41. };