toshiba,tc358762.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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/toshiba,tc358762.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Toshiba TC358762 MIPI DSI to MIPI DPI bridge
  7. maintainers:
  8. - Marek Vasut <marex@denx.de>
  9. description: |
  10. The TC358762 is bridge device which converts MIPI DSI to MIPI DPI.
  11. properties:
  12. compatible:
  13. enum:
  14. - toshiba,tc358762
  15. reg:
  16. maxItems: 1
  17. description: virtual channel number of a DSI peripheral
  18. reset-gpios:
  19. maxItems: 1
  20. vddc-supply:
  21. description: Regulator for 1.2V internal core power.
  22. ports:
  23. $ref: /schemas/graph.yaml#/properties/ports
  24. properties:
  25. port@0:
  26. $ref: /schemas/graph.yaml#/properties/port
  27. description:
  28. Video port for MIPI DSI input
  29. port@1:
  30. $ref: /schemas/graph.yaml#/properties/port
  31. description:
  32. Video port for MIPI DPI output (panel or connector).
  33. required:
  34. - port@1
  35. required:
  36. - compatible
  37. - reg
  38. - vddc-supply
  39. - ports
  40. additionalProperties: false
  41. examples:
  42. - |
  43. i2c {
  44. #address-cells = <1>;
  45. #size-cells = <0>;
  46. bridge@0 {
  47. reg = <0>;
  48. compatible = "toshiba,tc358762";
  49. vddc-supply = <&vcc_1v2_reg>;
  50. ports {
  51. #address-cells = <1>;
  52. #size-cells = <0>;
  53. port@0 {
  54. reg = <0>;
  55. bridge_in: endpoint {
  56. remote-endpoint = <&dsi_out>;
  57. };
  58. };
  59. port@1 {
  60. reg = <1>;
  61. bridge_out: endpoint {
  62. remote-endpoint = <&panel_in>;
  63. };
  64. };
  65. };
  66. };
  67. };
  68. ...