Linux 4.19.133
[linux/fpc-iii.git] / drivers / phy / hisilicon / phy-hisi-inno-usb2.c
blob524381249a2b80ad857369b691a29195232a29f0
1 /*
2 * HiSilicon INNO USB2 PHY Driver.
4 * Copyright (c) 2016-2017 HiSilicon Technologies Co., Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/clk.h>
21 #include <linux/delay.h>
22 #include <linux/io.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/phy/phy.h>
26 #include <linux/reset.h>
28 #define INNO_PHY_PORT_NUM 2
29 #define REF_CLK_STABLE_TIME 100 /* unit:us */
30 #define UTMI_CLK_STABLE_TIME 200 /* unit:us */
31 #define TEST_CLK_STABLE_TIME 2 /* unit:ms */
32 #define PHY_CLK_STABLE_TIME 2 /* unit:ms */
33 #define UTMI_RST_COMPLETE_TIME 2 /* unit:ms */
34 #define POR_RST_COMPLETE_TIME 300 /* unit:us */
35 #define PHY_TEST_DATA GENMASK(7, 0)
36 #define PHY_TEST_ADDR GENMASK(15, 8)
37 #define PHY_TEST_PORT GENMASK(18, 16)
38 #define PHY_TEST_WREN BIT(21)
39 #define PHY_TEST_CLK BIT(22) /* rising edge active */
40 #define PHY_TEST_RST BIT(23) /* low active */
41 #define PHY_CLK_ENABLE BIT(2)
43 struct hisi_inno_phy_port {
44 struct reset_control *utmi_rst;
45 struct hisi_inno_phy_priv *priv;
48 struct hisi_inno_phy_priv {
49 void __iomem *mmio;
50 struct clk *ref_clk;
51 struct reset_control *por_rst;
52 struct hisi_inno_phy_port ports[INNO_PHY_PORT_NUM];
55 static void hisi_inno_phy_write_reg(struct hisi_inno_phy_priv *priv,
56 u8 port, u32 addr, u32 data)
58 void __iomem *reg = priv->mmio;
59 u32 val;
61 val = (data & PHY_TEST_DATA) |
62 ((addr << 8) & PHY_TEST_ADDR) |
63 ((port << 16) & PHY_TEST_PORT) |
64 PHY_TEST_WREN | PHY_TEST_RST;
65 writel(val, reg);
67 val |= PHY_TEST_CLK;
68 writel(val, reg);
70 val &= ~PHY_TEST_CLK;
71 writel(val, reg);
74 static void hisi_inno_phy_setup(struct hisi_inno_phy_priv *priv)
76 /* The phy clk is controlled by the port0 register 0x06. */
77 hisi_inno_phy_write_reg(priv, 0, 0x06, PHY_CLK_ENABLE);
78 msleep(PHY_CLK_STABLE_TIME);
81 static int hisi_inno_phy_init(struct phy *phy)
83 struct hisi_inno_phy_port *port = phy_get_drvdata(phy);
84 struct hisi_inno_phy_priv *priv = port->priv;
85 int ret;
87 ret = clk_prepare_enable(priv->ref_clk);
88 if (ret)
89 return ret;
90 udelay(REF_CLK_STABLE_TIME);
92 reset_control_deassert(priv->por_rst);
93 udelay(POR_RST_COMPLETE_TIME);
95 /* Set up phy registers */
96 hisi_inno_phy_setup(priv);
98 reset_control_deassert(port->utmi_rst);
99 udelay(UTMI_RST_COMPLETE_TIME);
101 return 0;
104 static int hisi_inno_phy_exit(struct phy *phy)
106 struct hisi_inno_phy_port *port = phy_get_drvdata(phy);
107 struct hisi_inno_phy_priv *priv = port->priv;
109 reset_control_assert(port->utmi_rst);
110 reset_control_assert(priv->por_rst);
111 clk_disable_unprepare(priv->ref_clk);
113 return 0;
116 static const struct phy_ops hisi_inno_phy_ops = {
117 .init = hisi_inno_phy_init,
118 .exit = hisi_inno_phy_exit,
119 .owner = THIS_MODULE,
122 static int hisi_inno_phy_probe(struct platform_device *pdev)
124 struct device *dev = &pdev->dev;
125 struct device_node *np = dev->of_node;
126 struct hisi_inno_phy_priv *priv;
127 struct phy_provider *provider;
128 struct device_node *child;
129 struct resource *res;
130 int i = 0;
131 int ret;
133 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
134 if (!priv)
135 return -ENOMEM;
137 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
138 priv->mmio = devm_ioremap_resource(dev, res);
139 if (IS_ERR(priv->mmio)) {
140 ret = PTR_ERR(priv->mmio);
141 return ret;
144 priv->ref_clk = devm_clk_get(dev, NULL);
145 if (IS_ERR(priv->ref_clk))
146 return PTR_ERR(priv->ref_clk);
148 priv->por_rst = devm_reset_control_get_exclusive(dev, NULL);
149 if (IS_ERR(priv->por_rst))
150 return PTR_ERR(priv->por_rst);
152 for_each_child_of_node(np, child) {
153 struct reset_control *rst;
154 struct phy *phy;
156 rst = of_reset_control_get_exclusive(child, NULL);
157 if (IS_ERR(rst))
158 return PTR_ERR(rst);
159 priv->ports[i].utmi_rst = rst;
160 priv->ports[i].priv = priv;
162 phy = devm_phy_create(dev, child, &hisi_inno_phy_ops);
163 if (IS_ERR(phy))
164 return PTR_ERR(phy);
166 phy_set_bus_width(phy, 8);
167 phy_set_drvdata(phy, &priv->ports[i]);
168 i++;
170 if (i > INNO_PHY_PORT_NUM) {
171 dev_warn(dev, "Support %d ports in maximum\n", i);
172 break;
176 provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
177 return PTR_ERR_OR_ZERO(provider);
180 static const struct of_device_id hisi_inno_phy_of_match[] = {
181 { .compatible = "hisilicon,inno-usb2-phy", },
182 { .compatible = "hisilicon,hi3798cv200-usb2-phy", },
183 { },
185 MODULE_DEVICE_TABLE(of, hisi_inno_phy_of_match);
187 static struct platform_driver hisi_inno_phy_driver = {
188 .probe = hisi_inno_phy_probe,
189 .driver = {
190 .name = "hisi-inno-phy",
191 .of_match_table = hisi_inno_phy_of_match,
194 module_platform_driver(hisi_inno_phy_driver);
196 MODULE_DESCRIPTION("HiSilicon INNO USB2 PHY Driver");
197 MODULE_LICENSE("GPL v2");