mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Inherit usb-hub.yaml and remove duplicated schemas. Signed-off-by: Pin-yen Lin <treapking@chromium.org> Reviewed-by: "Rob Herring (Arm)" <robh@kernel.org> Link: https://lore.kernel.org/r/20250422082957.2058229-4-treapking@chromium.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
93 lines
1.9 KiB
YAML
93 lines
1.9 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/usb/realtek,rts5411.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Realtek RTS5411 USB 3.0 hub controller
|
|
|
|
maintainers:
|
|
- Matthias Kaehlcke <mka@chromium.org>
|
|
|
|
allOf:
|
|
- $ref: usb-hub.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- usbbda,5411
|
|
- usbbda,411
|
|
|
|
vdd-supply:
|
|
description:
|
|
phandle to the regulator that provides power to the hub.
|
|
|
|
peer-hub: true
|
|
|
|
ports:
|
|
$ref: /schemas/graph.yaml#/properties/ports
|
|
|
|
patternProperties:
|
|
'^port@':
|
|
$ref: /schemas/graph.yaml#/properties/port
|
|
|
|
properties:
|
|
reg:
|
|
minimum: 1
|
|
maximum: 4
|
|
|
|
additionalProperties:
|
|
properties:
|
|
reg:
|
|
minimum: 1
|
|
maximum: 4
|
|
|
|
required:
|
|
- peer-hub
|
|
- compatible
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
usb {
|
|
dr_mode = "host";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
/* 2.0 hub on port 1 */
|
|
hub_2_0: hub@1 {
|
|
compatible = "usbbda,5411";
|
|
reg = <1>;
|
|
vdd-supply = <&pp3300_hub>;
|
|
peer-hub = <&hub_3_0>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
/* USB 2.0 device on port 2 */
|
|
device@2 {
|
|
compatible = "usb123,4567";
|
|
reg = <2>;
|
|
};
|
|
};
|
|
|
|
/* 3.0 hub on port 2 */
|
|
hub_3_0: hub@2 {
|
|
compatible = "usbbda,411";
|
|
reg = <2>;
|
|
vdd-supply = <&pp3300_hub>;
|
|
peer-hub = <&hub_2_0>;
|
|
|
|
ports {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
/* Type-A connector on port 4 */
|
|
port@4 {
|
|
reg = <4>;
|
|
endpoint {
|
|
remote-endpoint = <&usb_a0_ss>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|