Skip to content

Commit

Permalink
dt-bindings: phy: Convert UniPhier USB2-PHY controller to json-schema
Browse files Browse the repository at this point in the history
Convert the UniPhier USB2-PHY conroller to DT schema format.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Signed-off-by: Rob Herring <robh@kernel.org>
  • Loading branch information
Kunihiko Hayashi authored and Rob Herring committed May 12, 2020
1 parent b36a247 commit 60f4fc4
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 45 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/phy/socionext,uniphier-usb2-phy.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Socionext UniPhier USB2 PHY

description: |
This describes the devicetree bindings for PHY interface built into
USB2 controller implemented on Socionext UniPhier SoCs.
Pro4 SoC has both USB2 and USB3 host controllers, however, this USB3
controller doesn't include its own High-Speed PHY. This needs to specify
USB2 PHY instead of USB3 HS-PHY.
maintainers:
- Kunihiko Hayashi <hayashi.kunihiko@socionext.com>

properties:
compatible:
enum:
- socionext,uniphier-pro4-usb2-phy
- socionext,uniphier-ld11-usb2-phy

"#address-cells":
const: 1

"#size-cells":
const: 0

patternProperties:
"^phy@[0-9]+$":
type: object
additionalProperties: false

properties:
reg:
minimum: 0
maximum: 3
description:
The ID number for the PHY

"#phy-cells":
const: 0

required:
- reg
- "#phy-cells"

required:
- compatible
- "#address-cells"
- "#size-cells"

additionalProperties: false

examples:
- |
// The UniPhier usb2-phy should be a subnode of a "syscon" compatible node.
soc-glue@5f800000 {
compatible = "socionext,uniphier-ld11-soc-glue", "simple-mfd", "syscon";
reg = <0x5f800000 0x2000>;
usb-controller {
compatible = "socionext,uniphier-ld11-usb2-phy";
#address-cells = <1>;
#size-cells = <0>;
usb_phy0: phy@0 {
reg = <0>;
#phy-cells = <0>;
};
usb_phy1: phy@1 {
reg = <1>;
#phy-cells = <0>;
};
usb_phy2: phy@2 {
reg = <2>;
#phy-cells = <0>;
};
};
};
45 changes: 0 additions & 45 deletions Documentation/devicetree/bindings/phy/uniphier-usb2-phy.txt

This file was deleted.

0 comments on commit 60f4fc4

Please sign in to comment.