Commit 45d1f841 authored by Kunihiko Hayashi's avatar Kunihiko Hayashi Committed by Vinod Koul
Browse files

dt-bindings: phy: uniphier-usb3hs: Fix incorrect clock-names and reset-names



There is no clock-names and reset-names for Pro5 SoC, that should have two
properties, "gio" and "link" like usb3-ssphy.

And according to the existing PXs2 devicetree, the clock-names for PXs2 SoC
should have "link" and "phy", and minItems of clocks should be 2.

Fixes: 134ab284 ("dt-bindings: phy: Convert UniPhier USB3-PHY conroller to json-schema")
Signed-off-by: default avatarKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/1648637715-19262-5-git-send-email-hayashi.kunihiko@socionext.com


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent fccd2f32
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -31,12 +31,14 @@ properties:
    const: 0

  clocks:
    minItems: 1
    minItems: 2
    maxItems: 3

  clock-names:
    oneOf:
      - const: link          # for PXs2
      - items:               # for Pro5
          - const: gio
          - const: link
      - items:               # for PXs3 with phy-ext
          - const: link
          - const: phy
@@ -49,7 +51,11 @@ properties:
    maxItems: 2

  reset-names:
    items:
    oneOf:
      - items:               # for Pro5
          - const: gio
          - const: link
      - items:               # for others
          - const: link
          - const: phy