2019-04-16 08:27:57 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/usb/usb-hcd.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Generic USB Host Controller Device Tree Bindings
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
|
|
|
2020-12-10 09:09:25 +00:00
|
|
|
allOf:
|
|
|
|
- $ref: usb.yaml#
|
2019-10-02 11:26:51 +00:00
|
|
|
|
2020-12-10 09:09:26 +00:00
|
|
|
properties:
|
|
|
|
companion:
|
|
|
|
description: Phandle of a companion device
|
|
|
|
$ref: /schemas/types.yaml#/definitions/phandle
|
|
|
|
|
2020-12-10 09:09:29 +00:00
|
|
|
tpl-support:
|
|
|
|
description:
|
|
|
|
Indicates if the Targeted Peripheral List is supported for given
|
|
|
|
targeted hosts (non-PC hosts).
|
|
|
|
type: boolean
|
|
|
|
|
2020-12-25 07:52:48 +00:00
|
|
|
"#address-cells":
|
|
|
|
const: 1
|
|
|
|
|
|
|
|
"#size-cells":
|
|
|
|
const: 0
|
|
|
|
|
|
|
|
patternProperties:
|
|
|
|
"^.*@[0-9a-f]{1,2}$":
|
|
|
|
description: The hard wired USB devices
|
|
|
|
type: object
|
|
|
|
$ref: /usb/usb-device.yaml
|
|
|
|
|
2020-10-05 18:38:30 +00:00
|
|
|
additionalProperties: true
|
|
|
|
|
2019-04-16 08:27:57 +00:00
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
usb {
|
|
|
|
phys = <&usb2_phy1>, <&usb3_phy1>;
|
2019-10-02 11:26:51 +00:00
|
|
|
phy-names = "usb";
|
2020-12-25 07:52:48 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
|
|
|
hub@1 {
|
|
|
|
compatible = "usb5e3,610";
|
|
|
|
reg = <1>;
|
|
|
|
};
|
2019-04-16 08:27:57 +00:00
|
|
|
};
|