xref: /freebsd/sys/contrib/device-tree/Bindings/usb/ti,tusb73x0-pci.yaml (revision 2846c90520eb4cc74e24d586a0ea0f4a0006bc73)
1*5f62a964SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*5f62a964SEmmanuel Vadot%YAML 1.2
3*5f62a964SEmmanuel Vadot---
4*5f62a964SEmmanuel Vadot$id: http://devicetree.org/schemas/usb/ti,tusb73x0-pci.yaml#
5*5f62a964SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5f62a964SEmmanuel Vadot
7*5f62a964SEmmanuel Vadottitle: TUSB73x0 USB 3.0 xHCI Host Controller (PCIe)
8*5f62a964SEmmanuel Vadot
9*5f62a964SEmmanuel Vadotmaintainers:
10*5f62a964SEmmanuel Vadot  - Francesco Dolcini <francesco.dolcini@toradex.com>
11*5f62a964SEmmanuel Vadot
12*5f62a964SEmmanuel Vadotdescription:
13*5f62a964SEmmanuel Vadot  TUSB73x0 USB 3.0 xHCI Host Controller via PCIe x1 Gen2 interface.
14*5f62a964SEmmanuel Vadot  The TUSB7320 supports up to two downstream ports, the TUSB7340 supports up
15*5f62a964SEmmanuel Vadot  to four downstream ports, both variants share the same PCI device ID.
16*5f62a964SEmmanuel Vadot
17*5f62a964SEmmanuel Vadotproperties:
18*5f62a964SEmmanuel Vadot  compatible:
19*5f62a964SEmmanuel Vadot    const: pci104c,8241
20*5f62a964SEmmanuel Vadot
21*5f62a964SEmmanuel Vadot  reg:
22*5f62a964SEmmanuel Vadot    maxItems: 1
23*5f62a964SEmmanuel Vadot
24*5f62a964SEmmanuel Vadot  ti,pwron-active-high:
25*5f62a964SEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/flag
26*5f62a964SEmmanuel Vadot    description:
27*5f62a964SEmmanuel Vadot      Configure the polarity of the PWRONx# signals. When this is present, the
28*5f62a964SEmmanuel Vadot      PWRONx# pins are active high and their internal pull-down resistors are
29*5f62a964SEmmanuel Vadot      disabled. When this is absent, the PWRONx# pins are active low (default)
30*5f62a964SEmmanuel Vadot      and their internal pull-down resistors are enabled.
31*5f62a964SEmmanuel Vadot
32*5f62a964SEmmanuel Vadotrequired:
33*5f62a964SEmmanuel Vadot  - compatible
34*5f62a964SEmmanuel Vadot  - reg
35*5f62a964SEmmanuel Vadot
36*5f62a964SEmmanuel VadotallOf:
37*5f62a964SEmmanuel Vadot  - $ref: usb-xhci.yaml
38*5f62a964SEmmanuel Vadot
39*5f62a964SEmmanuel VadotadditionalProperties: false
40*5f62a964SEmmanuel Vadot
41*5f62a964SEmmanuel Vadotexamples:
42*5f62a964SEmmanuel Vadot  - |
43*5f62a964SEmmanuel Vadot    pcie@0 {
44*5f62a964SEmmanuel Vadot        reg = <0x0 0x1000>;
45*5f62a964SEmmanuel Vadot        ranges = <0x02000000 0x0 0x100000 0x10000000 0x0 0x0>;
46*5f62a964SEmmanuel Vadot        #address-cells = <3>;
47*5f62a964SEmmanuel Vadot        #size-cells = <2>;
48*5f62a964SEmmanuel Vadot        device_type = "pci";
49*5f62a964SEmmanuel Vadot
50*5f62a964SEmmanuel Vadot        usb@0 {
51*5f62a964SEmmanuel Vadot            compatible = "pci104c,8241";
52*5f62a964SEmmanuel Vadot            reg = <0x0 0x0 0x0 0x0 0x0>;
53*5f62a964SEmmanuel Vadot            ti,pwron-active-high;
54*5f62a964SEmmanuel Vadot        };
55*5f62a964SEmmanuel Vadot    };
56