Linux Audio

Check our new training course

Embedded Linux training

Mar 10-20, 2025, special US time zones
Register
Loading...
 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
 7title: TI TUSB320 USB Type-C CC Logic controller
 8
 9maintainers:
10  - Michael Auchter <michael.auchter@ni.com>
11
12properties:
13  compatible:
14    const: ti,tusb320
15
16  reg:
17    maxItems: 1
18
19  interrupts:
20    maxItems: 1
21
22required:
23  - compatible
24  - reg
25  - interrupts
26
27additionalProperties: false
28
29examples:
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...