2 * Meson GXL and GXM USB2 PHY driver
4 * Copyright (C) 2017 Martin Blumenstingl <martin.blumenstingl@googlemail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * You should have received a copy of the GNU General Public License
11 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #include <linux/clk.h>
15 #include <linux/delay.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/regmap.h>
20 #include <linux/reset.h>
21 #include <linux/phy/phy.h>
22 #include <linux/platform_device.h>
24 /* bits [31:27] are read-only */
26 #define U2P_R0_BYPASS_SEL BIT(0)
27 #define U2P_R0_BYPASS_DM_EN BIT(1)
28 #define U2P_R0_BYPASS_DP_EN BIT(2)
29 #define U2P_R0_TXBITSTUFF_ENH BIT(3)
30 #define U2P_R0_TXBITSTUFF_EN BIT(4)
31 #define U2P_R0_DM_PULLDOWN BIT(5)
32 #define U2P_R0_DP_PULLDOWN BIT(6)
33 #define U2P_R0_DP_VBUS_VLD_EXT_SEL BIT(7)
34 #define U2P_R0_DP_VBUS_VLD_EXT BIT(8)
35 #define U2P_R0_ADP_PRB_EN BIT(9)
36 #define U2P_R0_ADP_DISCHARGE BIT(10)
37 #define U2P_R0_ADP_CHARGE BIT(11)
38 #define U2P_R0_DRV_VBUS BIT(12)
39 #define U2P_R0_ID_PULLUP BIT(13)
40 #define U2P_R0_LOOPBACK_EN_B BIT(14)
41 #define U2P_R0_OTG_DISABLE BIT(15)
42 #define U2P_R0_COMMON_ONN BIT(16)
43 #define U2P_R0_FSEL_MASK GENMASK(19, 17)
44 #define U2P_R0_REF_CLK_SEL_MASK GENMASK(21, 20)
45 #define U2P_R0_POWER_ON_RESET BIT(22)
46 #define U2P_R0_V_ATE_TEST_EN_B_MASK GENMASK(24, 23)
47 #define U2P_R0_ID_SET_ID_DQ BIT(25)
48 #define U2P_R0_ATE_RESET BIT(26)
49 #define U2P_R0_FSV_MINUS BIT(27)
50 #define U2P_R0_FSV_PLUS BIT(28)
51 #define U2P_R0_BYPASS_DM_DATA BIT(29)
52 #define U2P_R0_BYPASS_DP_DATA BIT(30)
55 #define U2P_R1_BURN_IN_TEST BIT(0)
56 #define U2P_R1_ACA_ENABLE BIT(1)
57 #define U2P_R1_DCD_ENABLE BIT(2)
58 #define U2P_R1_VDAT_SRC_EN_B BIT(3)
59 #define U2P_R1_VDAT_DET_EN_B BIT(4)
60 #define U2P_R1_CHARGES_SEL BIT(5)
61 #define U2P_R1_TX_PREEMP_PULSE_TUNE BIT(6)
62 #define U2P_R1_TX_PREEMP_AMP_TUNE_MASK GENMASK(8, 7)
63 #define U2P_R1_TX_RES_TUNE_MASK GENMASK(10, 9)
64 #define U2P_R1_TX_RISE_TUNE_MASK GENMASK(12, 11)
65 #define U2P_R1_TX_VREF_TUNE_MASK GENMASK(16, 13)
66 #define U2P_R1_TX_FSLS_TUNE_MASK GENMASK(20, 17)
67 #define U2P_R1_TX_HSXV_TUNE_MASK GENMASK(22, 21)
68 #define U2P_R1_OTG_TUNE_MASK GENMASK(25, 23)
69 #define U2P_R1_SQRX_TUNE_MASK GENMASK(28, 26)
70 #define U2P_R1_COMP_DIS_TUNE_MASK GENMASK(31, 29)
72 /* bits [31:14] are read-only */
74 #define U2P_R2_TESTDATA_IN_MASK GENMASK(7, 0)
75 #define U2P_R2_TESTADDR_MASK GENMASK(11, 8)
76 #define U2P_R2_TESTDATA_OUT_SEL BIT(12)
77 #define U2P_R2_TESTCLK BIT(13)
78 #define U2P_R2_TESTDATA_OUT_MASK GENMASK(17, 14)
79 #define U2P_R2_ACA_PIN_RANGE_C BIT(18)
80 #define U2P_R2_ACA_PIN_RANGE_B BIT(19)
81 #define U2P_R2_ACA_PIN_RANGE_A BIT(20)
82 #define U2P_R2_ACA_PIN_GND BIT(21)
83 #define U2P_R2_ACA_PIN_FLOAT BIT(22)
84 #define U2P_R2_CHARGE_DETECT BIT(23)
85 #define U2P_R2_DEVICE_SESSION_VALID BIT(24)
86 #define U2P_R2_ADP_PROBE BIT(25)
87 #define U2P_R2_ADP_SENSE BIT(26)
88 #define U2P_R2_SESSION_END BIT(27)
89 #define U2P_R2_VBUS_VALID BIT(28)
90 #define U2P_R2_B_VALID BIT(29)
91 #define U2P_R2_A_VALID BIT(30)
92 #define U2P_R2_ID_DIG BIT(31)
96 #define RESET_COMPLETE_TIME 500
98 struct phy_meson_gxl_usb2_priv
{
99 struct regmap
*regmap
;
103 struct reset_control
*reset
;
106 static const struct regmap_config phy_meson_gxl_usb2_regmap_conf
= {
110 .max_register
= U2P_R3
,
113 static int phy_meson_gxl_usb2_init(struct phy
*phy
)
115 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
118 ret
= reset_control_reset(priv
->reset
);
122 ret
= clk_prepare_enable(priv
->clk
);
129 static int phy_meson_gxl_usb2_exit(struct phy
*phy
)
131 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
133 clk_disable_unprepare(priv
->clk
);
138 static int phy_meson_gxl_usb2_reset(struct phy
*phy
)
140 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
142 if (priv
->is_enabled
) {
143 /* reset the PHY and wait until settings are stabilized */
144 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_POWER_ON_RESET
,
145 U2P_R0_POWER_ON_RESET
);
146 udelay(RESET_COMPLETE_TIME
);
147 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_POWER_ON_RESET
,
149 udelay(RESET_COMPLETE_TIME
);
155 static int phy_meson_gxl_usb2_set_mode(struct phy
*phy
, enum phy_mode mode
)
157 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
160 case PHY_MODE_USB_HOST
:
161 case PHY_MODE_USB_OTG
:
162 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_DM_PULLDOWN
,
164 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_DP_PULLDOWN
,
166 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_ID_PULLUP
, 0);
169 case PHY_MODE_USB_DEVICE
:
170 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_DM_PULLDOWN
,
172 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_DP_PULLDOWN
,
174 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_ID_PULLUP
,
182 phy_meson_gxl_usb2_reset(phy
);
189 static int phy_meson_gxl_usb2_power_off(struct phy
*phy
)
191 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
193 priv
->is_enabled
= 0;
195 /* power off the PHY by putting it into reset mode */
196 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_POWER_ON_RESET
,
197 U2P_R0_POWER_ON_RESET
);
202 static int phy_meson_gxl_usb2_power_on(struct phy
*phy
)
204 struct phy_meson_gxl_usb2_priv
*priv
= phy_get_drvdata(phy
);
207 priv
->is_enabled
= 1;
209 /* power on the PHY by taking it out of reset mode */
210 regmap_update_bits(priv
->regmap
, U2P_R0
, U2P_R0_POWER_ON_RESET
, 0);
212 ret
= phy_meson_gxl_usb2_set_mode(phy
, priv
->mode
);
214 phy_meson_gxl_usb2_power_off(phy
);
216 dev_err(&phy
->dev
, "Failed to initialize PHY with mode %d\n",
224 static const struct phy_ops phy_meson_gxl_usb2_ops
= {
225 .init
= phy_meson_gxl_usb2_init
,
226 .exit
= phy_meson_gxl_usb2_exit
,
227 .power_on
= phy_meson_gxl_usb2_power_on
,
228 .power_off
= phy_meson_gxl_usb2_power_off
,
229 .set_mode
= phy_meson_gxl_usb2_set_mode
,
230 .reset
= phy_meson_gxl_usb2_reset
,
231 .owner
= THIS_MODULE
,
234 static int phy_meson_gxl_usb2_probe(struct platform_device
*pdev
)
236 struct device
*dev
= &pdev
->dev
;
237 struct phy_provider
*phy_provider
;
238 struct resource
*res
;
239 struct phy_meson_gxl_usb2_priv
*priv
;
244 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
248 platform_set_drvdata(pdev
, priv
);
250 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
251 base
= devm_ioremap_resource(dev
, res
);
253 return PTR_ERR(base
);
255 /* start in host mode */
256 priv
->mode
= PHY_MODE_USB_HOST
;
258 priv
->regmap
= devm_regmap_init_mmio(dev
, base
,
259 &phy_meson_gxl_usb2_regmap_conf
);
260 if (IS_ERR(priv
->regmap
))
261 return PTR_ERR(priv
->regmap
);
263 priv
->clk
= devm_clk_get(dev
, "phy");
264 if (IS_ERR(priv
->clk
)) {
265 ret
= PTR_ERR(priv
->clk
);
272 priv
->reset
= devm_reset_control_get_optional_shared(dev
, "phy");
273 if (IS_ERR(priv
->reset
))
274 return PTR_ERR(priv
->reset
);
276 phy
= devm_phy_create(dev
, NULL
, &phy_meson_gxl_usb2_ops
);
279 if (ret
!= -EPROBE_DEFER
)
280 dev_err(dev
, "failed to create PHY\n");
285 phy_set_drvdata(phy
, priv
);
287 phy_provider
= devm_of_phy_provider_register(dev
, of_phy_simple_xlate
);
289 return PTR_ERR_OR_ZERO(phy_provider
);
292 static const struct of_device_id phy_meson_gxl_usb2_of_match
[] = {
293 { .compatible
= "amlogic,meson-gxl-usb2-phy", },
296 MODULE_DEVICE_TABLE(of
, phy_meson_gxl_usb2_of_match
);
298 static struct platform_driver phy_meson_gxl_usb2_driver
= {
299 .probe
= phy_meson_gxl_usb2_probe
,
301 .name
= "phy-meson-gxl-usb2",
302 .of_match_table
= phy_meson_gxl_usb2_of_match
,
305 module_platform_driver(phy_meson_gxl_usb2_driver
);
307 MODULE_AUTHOR("Martin Blumenstingl <martin.blumenstingl@googlemail.com>");
308 MODULE_DESCRIPTION("Meson GXL and GXM USB2 PHY driver");
309 MODULE_LICENSE("GPL v2");