[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210123141825.15481-2-paul@crapouillou.net>
Date: Sat, 23 Jan 2021 14:18:25 +0000
From: Paul Cercueil <paul@...pouillou.net>
To: Kishon Vijay Abraham I <kishon@...com>,
Vinod Koul <vkoul@...nel.org>, Rob Herring <robh+dt@...nel.org>
Cc: 周琰杰 <zhouyanjie@...yeetech.com>,
od@...c.me, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org, Paul Cercueil <paul@...pouillou.net>
Subject: [PATCH v2 2/2] phy: ingenic: Add support for the JZ4760(B)
Add support for the JZ4760 and JZ4760B SoCs, which behave exactly as the
(newer) JZ4770 SoC.
Signed-off-by: Paul Cercueil <paul@...pouillou.net>
---
Notes:
v2: No change
drivers/phy/ingenic/phy-ingenic-usb.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/phy/ingenic/phy-ingenic-usb.c b/drivers/phy/ingenic/phy-ingenic-usb.c
index ea127b177f46..42902a0278cc 100644
--- a/drivers/phy/ingenic/phy-ingenic-usb.c
+++ b/drivers/phy/ingenic/phy-ingenic-usb.c
@@ -201,7 +201,7 @@ static const struct phy_ops ingenic_usb_phy_ops = {
.owner = THIS_MODULE,
};
-static void jz4770_usb_phy_init(struct phy *phy)
+static void jz4760_usb_phy_init(struct phy *phy)
{
struct ingenic_usb_phy *priv = phy_get_drvdata(phy);
u32 reg;
@@ -288,8 +288,8 @@ static void x2000_usb_phy_init(struct phy *phy)
writel(reg, priv->base + REG_USBPCR_OFFSET);
}
-static const struct ingenic_soc_info jz4770_soc_info = {
- .usb_phy_init = jz4770_usb_phy_init,
+static const struct ingenic_soc_info jz4760_soc_info = {
+ .usb_phy_init = jz4760_usb_phy_init,
};
static const struct ingenic_soc_info jz4775_soc_info = {
@@ -363,7 +363,8 @@ static int ingenic_usb_phy_probe(struct platform_device *pdev)
}
static const struct of_device_id ingenic_usb_phy_of_matches[] = {
- { .compatible = "ingenic,jz4770-phy", .data = &jz4770_soc_info },
+ { .compatible = "ingenic,jz4760-phy", .data = &jz4760_soc_info },
+ { .compatible = "ingenic,jz4770-phy", .data = &jz4760_soc_info },
{ .compatible = "ingenic,jz4775-phy", .data = &jz4775_soc_info },
{ .compatible = "ingenic,jz4780-phy", .data = &jz4780_soc_info },
{ .compatible = "ingenic,x1000-phy", .data = &x1000_soc_info },
--
2.29.2
Powered by blists - more mailing lists