The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/display/bridge/toshiba,tc358762.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 0b4aaca5858185731895320ea03ee37b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.