ilitek,il79900a.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/display/panel/ilitek,il79900a.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Ilitek IL79900a based MIPI-DSI panels
  7. maintainers:
  8. - Langyan Ye <yelangyan@huaqin.corp-partner.google.com>
  9. allOf:
  10. - $ref: panel-common.yaml#
  11. properties:
  12. compatible:
  13. items:
  14. - enum:
  15. - tianma,tl121bvms07-00
  16. - const: ilitek,il79900a
  17. reg:
  18. maxItems: 1
  19. description: DSI virtual channel used by the panel
  20. enable-gpios:
  21. maxItems: 1
  22. description: GPIO specifier for the enable pin
  23. avdd-supply:
  24. description: Positive analog voltage supply (AVDD)
  25. avee-supply:
  26. description: Negative analog voltage supply (AVEE)
  27. pp1800-supply:
  28. description: 1.8V logic voltage supply
  29. backlight: true
  30. required:
  31. - compatible
  32. - reg
  33. - enable-gpios
  34. - avdd-supply
  35. - avee-supply
  36. - pp1800-supply
  37. additionalProperties: false
  38. examples:
  39. - |
  40. dsi {
  41. #address-cells = <1>;
  42. #size-cells = <0>;
  43. panel@0 {
  44. compatible = "tianma,tl121bvms07-00", "ilitek,il79900a";
  45. reg = <0>;
  46. enable-gpios = <&pio 25 0>;
  47. avdd-supply = <&reg_avdd>;
  48. avee-supply = <&reg_avee>;
  49. pp1800-supply = <&reg_pp1800>;
  50. backlight = <&backlight>;
  51. };
  52. };
  53. ...