ti,dlpc3433.yaml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/display/bridge/ti,dlpc3433.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: TI DLPC3433 MIPI DSI to DMD bridge
  7. maintainers:
  8. - Jagan Teki <jagan@amarulasolutions.com>
  9. - Christopher Vollo <chris@renewoutreach.org>
  10. description: |
  11. TI DLPC3433 is a MIPI DSI based display controller bridge
  12. for processing high resolution DMD based projectors.
  13. It has a flexible configuration of MIPI DSI and DPI signal
  14. input that produces a DMD output in RGB565, RGB666, RGB888
  15. formats.
  16. It supports upto 720p resolution with 60 and 120 Hz refresh
  17. rates.
  18. properties:
  19. compatible:
  20. const: ti,dlpc3433
  21. reg:
  22. enum:
  23. - 0x1b
  24. - 0x1d
  25. enable-gpios:
  26. description: PROJ_ON pin, chip powers up PROJ_ON is high.
  27. vcc_intf-supply:
  28. description: A 1.8V/3.3V supply that power the Host I/O.
  29. vcc_flsh-supply:
  30. description: A 1.8V/3.3V supply that power the Flash I/O.
  31. ports:
  32. $ref: /schemas/graph.yaml#/properties/ports
  33. properties:
  34. port@0:
  35. $ref: /schemas/graph.yaml#/$defs/port-base
  36. unevaluatedProperties: false
  37. description: Video port for MIPI DSI input.
  38. properties:
  39. endpoint:
  40. $ref: /schemas/media/video-interfaces.yaml#
  41. unevaluatedProperties: false
  42. properties:
  43. data-lanes:
  44. description: array of physical DSI data lane indexes.
  45. minItems: 1
  46. items:
  47. - const: 1
  48. - const: 2
  49. - const: 3
  50. - const: 4
  51. port@1:
  52. $ref: /schemas/graph.yaml#/properties/port
  53. description: Video port for DMD output.
  54. required:
  55. - port@0
  56. - port@1
  57. required:
  58. - compatible
  59. - reg
  60. - enable-gpios
  61. - ports
  62. additionalProperties: false
  63. examples:
  64. - |
  65. #include <dt-bindings/gpio/gpio.h>
  66. i2c {
  67. #address-cells = <1>;
  68. #size-cells = <0>;
  69. bridge@1b {
  70. compatible = "ti,dlpc3433";
  71. reg = <0x1b>;
  72. enable-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>;
  73. ports {
  74. #address-cells = <1>;
  75. #size-cells = <0>;
  76. port@0 {
  77. reg = <0>;
  78. bridge_in_dsi: endpoint {
  79. remote-endpoint = <&dsi_out_bridge>;
  80. data-lanes = <1 2 3 4>;
  81. };
  82. };
  83. port@1 {
  84. reg = <1>;
  85. bridge_out_panel: endpoint {
  86. remote-endpoint = <&panel_out_bridge>;
  87. };
  88. };
  89. };
  90. };
  91. };