Users of common properties shouldn't have a type definition as the common schemas already have one. Drop all the unnecessary type references in the tree. A meta-schema update to catch these is pending. Cc: Maxime Ripard <mripard@kernel.org> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Krzysztof Kozlowski <krzk@kernel.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Jakub Kicinski <kuba@kernel.org> Cc: Ohad Ben-Cohen <ohad@wizery.com> Cc: Cheng-Yi Chiang <cychiang@chromium.org> Cc: Benson Leung <bleung@chromium.org> Cc: Zhang Rui <rui.zhang@intel.com> Cc: Daniel Lezcano <daniel.lezcano@linaro.org> Cc: Stefan Wahren <wahrenst@gmx.net> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Odelu Kukatla <okukatla@codeaurora.org> Cc: linux-gpio@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: linux-can@vger.kernel.org Cc: netdev@vger.kernel.org Cc: linux-remoteproc@vger.kernel.org Cc: alsa-devel@alsa-project.org Cc: linux-usb@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Dmity Baryshkov <dmitry.baryshkov@linaro.org> Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Suman Anna <s-anna@ti.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Marc Kleine-Budde <mkl@pengutronix.de> Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Acked-by: Maxime Ripard <maxime@cerno.tech> Reviewed-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de> Link: https://lore.kernel.org/r/20210316194858.3527845-1-robh@kernel.org
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/usb/usb.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Generic USB Controller Device Tree Bindings
|
|
|
|
maintainers:
|
|
- Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
|
|
select: false
|
|
|
|
properties:
|
|
$nodename:
|
|
pattern: "^usb(@.*)?"
|
|
|
|
phys:
|
|
description:
|
|
List of all the USB PHYs on this HCD
|
|
|
|
phy-names:
|
|
description:
|
|
Name specifier for the USB PHY
|
|
|
|
usb-phy:
|
|
$ref: /schemas/types.yaml#/definitions/phandle-array
|
|
description:
|
|
List of all the USB PHYs on this HCD to be accepted by the legacy USB
|
|
Physical Layer subsystem.
|
|
deprecated: true
|
|
|
|
phy_type:
|
|
description:
|
|
Tells USB controllers that we want to configure the core to support a
|
|
UTMI+ PHY with an 8- or 16-bit interface if UTMI+ is selected, UTMI+ low
|
|
pin interface if ULPI is specified, Serial core/PHY interconnect if
|
|
serial is specified and High-Speed Inter-Chip feature if HSIC is
|
|
selected. In case this isn't passed via DT, USB controllers should
|
|
default to HW capability.
|
|
$ref: /schemas/types.yaml#/definitions/string
|
|
enum: [utmi, utmi_wide, ulpi, serial, hsic]
|
|
|
|
maximum-speed:
|
|
description:
|
|
Tells USB controllers we want to work up to a certain speed. In case this
|
|
isn't passed via DT, USB controllers should default to their maximum HW
|
|
capability.
|
|
$ref: /schemas/types.yaml#/definitions/string
|
|
enum:
|
|
- low-speed
|
|
- full-speed
|
|
- high-speed
|
|
- super-speed
|
|
- super-speed-plus
|
|
- super-speed-plus-gen2x1
|
|
- super-speed-plus-gen1x2
|
|
- super-speed-plus-gen2x2
|
|
|
|
additionalProperties: true
|
|
|
|
...
|