phy: uniphier-usb3: Add compatible string for NX1 SoC
authorKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Fri, 29 Oct 2021 10:39:01 +0000 (19:39 +0900)
committerVinod Koul <vkoul@kernel.org>
Tue, 23 Nov 2021 05:51:53 +0000 (11:21 +0530)
Add basic support for UniPhier NX1 SoC. This includes a compatible string
and the same SoC-dependent data as LD20/PXs3 SoCs.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Link: https://lore.kernel.org/r/1635503947-18250-3-git-send-email-hayashi.kunihiko@socionext.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/socionext/phy-uniphier-usb3hs.c
drivers/phy/socionext/phy-uniphier-usb3ss.c

index a9bc741..8c8673d 100644 (file)
@@ -447,6 +447,10 @@ static const struct of_device_id uniphier_u3hsphy_match[] = {
                .compatible = "socionext,uniphier-pxs3-usb3-hsphy",
                .data = &uniphier_pxs3_data,
        },
+       {
+               .compatible = "socionext,uniphier-nx1-usb3-hsphy",
+               .data = &uniphier_pxs3_data,
+       },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, uniphier_u3hsphy_match);
index 6700645..7ce611c 100644 (file)
@@ -328,6 +328,10 @@ static const struct of_device_id uniphier_u3ssphy_match[] = {
                .compatible = "socionext,uniphier-pxs3-usb3-ssphy",
                .data = &uniphier_ld20_data,
        },
+       {
+               .compatible = "socionext,uniphier-nx1-usb3-ssphy",
+               .data = &uniphier_ld20_data,
+       },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, uniphier_u3ssphy_match);