sharp,lq101r1sx01.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Sharp Microelectronics 10.1" WQXGA TFT LCD panel
  2. This panel requires a dual-channel DSI host to operate. It supports two modes:
  3. - left-right: each channel drives the left or right half of the screen
  4. - even-odd: each channel drives the even or odd lines of the screen
  5. Each of the DSI channels controls a separate DSI peripheral. The peripheral
  6. driven by the first link (DSI-LINK1), left or even, is considered the primary
  7. peripheral and controls the device. The 'link2' property contains a phandle
  8. to the peripheral driven by the second link (DSI-LINK2, right or odd).
  9. Note that in video mode the DSI-LINK1 interface always provides the left/even
  10. pixels and DSI-LINK2 always provides the right/odd pixels. In command mode it
  11. is possible to program either link to drive the left/even or right/odd pixels
  12. but for the sake of consistency this binding assumes that the same assignment
  13. is chosen as for video mode.
  14. Required properties:
  15. - compatible: should be "sharp,lq101r1sx01"
  16. - reg: DSI virtual channel of the peripheral
  17. Required properties (for DSI-LINK1 only):
  18. - link2: phandle to the DSI peripheral on the secondary link. Note that the
  19. presence of this property marks the containing node as DSI-LINK1.
  20. - power-supply: phandle of the regulator that provides the supply voltage
  21. Optional properties (for DSI-LINK1 only):
  22. - backlight: phandle of the backlight device attached to the panel
  23. Example:
  24. dsi@54300000 {
  25. panel: panel@0 {
  26. compatible = "sharp,lq101r1sx01";
  27. reg = <0>;
  28. link2 = <&secondary>;
  29. power-supply = <...>;
  30. backlight = <...>;
  31. };
  32. };
  33. dsi@54400000 {
  34. secondary: panel@0 {
  35. compatible = "sharp,lq101r1sx01";
  36. reg = <0>;
  37. };
  38. };