diff options
author | Kunihiko Hayashi <hayashi.kunihiko@socionext.com> | 2021-10-29 19:39:01 +0900 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-11-23 11:21:53 +0530 |
commit | 877e8d28bc840f1240852280850cdea5d97c1151 (patch) | |
tree | 51a4fc06585f7c24014f6db4bbb4ac4730469f66 /drivers/phy/socionext/phy-uniphier-usb3hs.c | |
parent | d0cfb865b363e6de30295348fca20d9c6810a0dc (diff) | |
download | linux-877e8d28bc840f1240852280850cdea5d97c1151.tar.bz2 |
phy: uniphier-usb3: Add compatible string for NX1 SoC
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>
Diffstat (limited to 'drivers/phy/socionext/phy-uniphier-usb3hs.c')
-rw-r--r-- | drivers/phy/socionext/phy-uniphier-usb3hs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/phy/socionext/phy-uniphier-usb3hs.c b/drivers/phy/socionext/phy-uniphier-usb3hs.c index a9bc74121f38..8c8673df0084 100644 --- a/drivers/phy/socionext/phy-uniphier-usb3hs.c +++ b/drivers/phy/socionext/phy-uniphier-usb3hs.c @@ -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); |