Merge tag 'for-5.11/dm-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / extcon / extcon-usbc-tusb320.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/extcon/extcon-usbc-tusb320.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: TI TUSB320 USB Type-C CC Logic controller
8
9 maintainers:
10   - Michael Auchter <michael.auchter@ni.com>
11
12 properties:
13   compatible:
14     const: ti,tusb320
15
16   reg:
17     maxItems: 1
18
19   interrupts:
20     maxItems: 1
21
22 required:
23   - compatible
24   - reg
25   - interrupts
26
27 additionalProperties: false
28
29 examples:
30   - |
31     i2c0 {
32         #address-cells = <1>;
33         #size-cells = <0>;
34         tusb320@61 {
35             compatible = "ti,tusb320";
36             reg = <0x61>;
37             interrupt-parent = <&gpio>;
38             interrupts = <27 1>;
39         };
40     };
41 ...