sharp,lq150x1lg11.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Sharp 15" LQ150X1LG11 XGA TFT LCD panel
  2. Required properties:
  3. - compatible: should be "sharp,lq150x1lg11"
  4. - power-supply: regulator to provide the VCC supply voltage (3.3 volts)
  5. Optional properties:
  6. - backlight: phandle of the backlight device
  7. - rlud-gpios: a single GPIO for the RL/UD (rotate 180 degrees) pin.
  8. - sellvds-gpios: a single GPIO for the SELLVDS pin.
  9. If rlud-gpios and/or sellvds-gpios are not specified, the RL/UD and/or SELLVDS
  10. pins are assumed to be handled appropriately by the hardware.
  11. Example:
  12. backlight: backlight {
  13. compatible = "pwm-backlight";
  14. pwms = <&pwm 0 100000>; /* VBR */
  15. brightness-levels = <0 20 40 60 80 100>;
  16. default-brightness-level = <2>;
  17. power-supply = <&vdd_12v_reg>; /* VDD */
  18. enable-gpios = <&gpio 42 GPIO_ACTIVE_HIGH>; /* XSTABY */
  19. };
  20. panel {
  21. compatible = "sharp,lq150x1lg11";
  22. power-supply = <&vcc_3v3_reg>; /* VCC */
  23. backlight = <&backlight>;
  24. rlud-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>; /* RL/UD */
  25. sellvds-gpios = <&gpio 18 GPIO_ACTIVE_HIGH>; /* SELLVDS */
  26. };