Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / phy / lantiq / phy-lantiq-vrx200-pcie.c
blobef93bf2cba1053be5196c83a8bb8f6def7460e1f
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * PCIe PHY driver for Lantiq VRX200 and ARX300 SoCs.
5 * Copyright (C) 2019 Martin Blumenstingl <martin.blumenstingl@googlemail.com>
7 * Based on the BSP (called "UGW") driver:
8 * Copyright (C) 2009-2015 Lei Chuanhua <chuanhua.lei@lantiq.com>
9 * Copyright (C) 2016 Intel Corporation
11 * TODO: PHY modes other than 36MHz (without "SSC")
14 #include <linux/bitfield.h>
15 #include <linux/bits.h>
16 #include <linux/clk.h>
17 #include <linux/delay.h>
18 #include <linux/mfd/syscon.h>
19 #include <linux/module.h>
20 #include <linux/of.h>
21 #include <linux/phy/phy.h>
22 #include <linux/platform_device.h>
23 #include <linux/property.h>
24 #include <linux/regmap.h>
25 #include <linux/reset.h>
27 #include <dt-bindings/phy/phy-lantiq-vrx200-pcie.h>
29 #define PCIE_PHY_PLL_CTRL1 0x44
31 #define PCIE_PHY_PLL_CTRL2 0x46
32 #define PCIE_PHY_PLL_CTRL2_CONST_SDM_MASK GENMASK(7, 0)
33 #define PCIE_PHY_PLL_CTRL2_CONST_SDM_EN BIT(8)
34 #define PCIE_PHY_PLL_CTRL2_PLL_SDM_EN BIT(9)
36 #define PCIE_PHY_PLL_CTRL3 0x48
37 #define PCIE_PHY_PLL_CTRL3_EXT_MMD_DIV_RATIO_EN BIT(1)
38 #define PCIE_PHY_PLL_CTRL3_EXT_MMD_DIV_RATIO_MASK GENMASK(6, 4)
40 #define PCIE_PHY_PLL_CTRL4 0x4a
41 #define PCIE_PHY_PLL_CTRL5 0x4c
42 #define PCIE_PHY_PLL_CTRL6 0x4e
43 #define PCIE_PHY_PLL_CTRL7 0x50
44 #define PCIE_PHY_PLL_A_CTRL1 0x52
46 #define PCIE_PHY_PLL_A_CTRL2 0x54
47 #define PCIE_PHY_PLL_A_CTRL2_LF_MODE_EN BIT(14)
49 #define PCIE_PHY_PLL_A_CTRL3 0x56
50 #define PCIE_PHY_PLL_A_CTRL3_MMD_MASK GENMASK(15, 13)
52 #define PCIE_PHY_PLL_STATUS 0x58
54 #define PCIE_PHY_TX1_CTRL1 0x60
55 #define PCIE_PHY_TX1_CTRL1_FORCE_EN BIT(3)
56 #define PCIE_PHY_TX1_CTRL1_LOAD_EN BIT(4)
58 #define PCIE_PHY_TX1_CTRL2 0x62
59 #define PCIE_PHY_TX1_CTRL3 0x64
60 #define PCIE_PHY_TX1_A_CTRL1 0x66
61 #define PCIE_PHY_TX1_A_CTRL2 0x68
62 #define PCIE_PHY_TX1_MOD1 0x6a
63 #define PCIE_PHY_TX1_MOD2 0x6c
64 #define PCIE_PHY_TX1_MOD3 0x6e
66 #define PCIE_PHY_TX2_CTRL1 0x70
67 #define PCIE_PHY_TX2_CTRL1_LOAD_EN BIT(4)
69 #define PCIE_PHY_TX2_CTRL2 0x72
70 #define PCIE_PHY_TX2_A_CTRL1 0x76
71 #define PCIE_PHY_TX2_A_CTRL2 0x78
72 #define PCIE_PHY_TX2_MOD1 0x7a
73 #define PCIE_PHY_TX2_MOD2 0x7c
74 #define PCIE_PHY_TX2_MOD3 0x7e
76 #define PCIE_PHY_RX1_CTRL1 0xa0
77 #define PCIE_PHY_RX1_CTRL1_LOAD_EN BIT(1)
79 #define PCIE_PHY_RX1_CTRL2 0xa2
80 #define PCIE_PHY_RX1_CDR 0xa4
81 #define PCIE_PHY_RX1_EI 0xa6
82 #define PCIE_PHY_RX1_A_CTRL 0xaa
84 struct ltq_vrx200_pcie_phy_priv {
85 struct phy *phy;
86 unsigned int mode;
87 struct device *dev;
88 struct regmap *phy_regmap;
89 struct regmap *rcu_regmap;
90 struct clk *pdi_clk;
91 struct clk *phy_clk;
92 struct reset_control *phy_reset;
93 struct reset_control *pcie_reset;
94 u32 rcu_ahb_endian_offset;
95 u32 rcu_ahb_endian_big_endian_mask;
98 static void ltq_vrx200_pcie_phy_common_setup(struct phy *phy)
100 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
102 /* PLL Setting */
103 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_A_CTRL1, 0x120e);
105 /* increase the bias reference voltage */
106 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_A_CTRL2, 0x39d7);
107 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_A_CTRL3, 0x0900);
109 /* Endcnt */
110 regmap_write(priv->phy_regmap, PCIE_PHY_RX1_EI, 0x0004);
111 regmap_write(priv->phy_regmap, PCIE_PHY_RX1_A_CTRL, 0x6803);
113 regmap_update_bits(priv->phy_regmap, PCIE_PHY_TX1_CTRL1,
114 PCIE_PHY_TX1_CTRL1_FORCE_EN,
115 PCIE_PHY_TX1_CTRL1_FORCE_EN);
117 /* predrv_ser_en */
118 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_A_CTRL2, 0x0706);
120 /* ctrl_lim */
121 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_CTRL3, 0x1fff);
123 /* ctrl */
124 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_A_CTRL1, 0x0810);
126 /* predrv_ser_en */
127 regmap_update_bits(priv->phy_regmap, PCIE_PHY_TX2_A_CTRL2, 0x7f00,
128 0x4700);
130 /* RTERM */
131 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_CTRL2, 0x2e00);
133 /* Improved 100MHz clock output */
134 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_CTRL2, 0x3096);
135 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_A_CTRL2, 0x4707);
137 /* Reduced CDR BW to avoid glitches */
138 regmap_write(priv->phy_regmap, PCIE_PHY_RX1_CDR, 0x0235);
141 static void pcie_phy_36mhz_mode_setup(struct phy *phy)
143 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
145 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_CTRL3,
146 PCIE_PHY_PLL_CTRL3_EXT_MMD_DIV_RATIO_EN, 0x0000);
148 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_CTRL3,
149 PCIE_PHY_PLL_CTRL3_EXT_MMD_DIV_RATIO_MASK, 0x0000);
151 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_CTRL2,
152 PCIE_PHY_PLL_CTRL2_PLL_SDM_EN,
153 PCIE_PHY_PLL_CTRL2_PLL_SDM_EN);
155 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_CTRL2,
156 PCIE_PHY_PLL_CTRL2_CONST_SDM_EN,
157 PCIE_PHY_PLL_CTRL2_CONST_SDM_EN);
159 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_A_CTRL3,
160 PCIE_PHY_PLL_A_CTRL3_MMD_MASK,
161 FIELD_PREP(PCIE_PHY_PLL_A_CTRL3_MMD_MASK, 0x1));
163 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_A_CTRL2,
164 PCIE_PHY_PLL_A_CTRL2_LF_MODE_EN, 0x0000);
166 /* const_sdm */
167 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_CTRL1, 0x38e4);
169 regmap_update_bits(priv->phy_regmap, PCIE_PHY_PLL_CTRL2,
170 PCIE_PHY_PLL_CTRL2_CONST_SDM_MASK,
171 FIELD_PREP(PCIE_PHY_PLL_CTRL2_CONST_SDM_MASK,
172 0xee));
174 /* pllmod */
175 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_CTRL7, 0x0002);
176 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_CTRL6, 0x3a04);
177 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_CTRL5, 0xfae3);
178 regmap_write(priv->phy_regmap, PCIE_PHY_PLL_CTRL4, 0x1b72);
181 static int ltq_vrx200_pcie_phy_wait_for_pll(struct phy *phy)
183 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
184 unsigned int tmp;
185 int ret;
187 ret = regmap_read_poll_timeout(priv->phy_regmap, PCIE_PHY_PLL_STATUS,
188 tmp, ((tmp & 0x0070) == 0x0070), 10,
189 10000);
190 if (ret) {
191 dev_err(priv->dev, "PLL Link timeout, PLL status = 0x%04x\n",
192 tmp);
193 return ret;
196 return 0;
199 static void ltq_vrx200_pcie_phy_apply_workarounds(struct phy *phy)
201 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
202 static const struct reg_default slices[] = {
204 .reg = PCIE_PHY_TX1_CTRL1,
205 .def = PCIE_PHY_TX1_CTRL1_LOAD_EN,
208 .reg = PCIE_PHY_TX2_CTRL1,
209 .def = PCIE_PHY_TX2_CTRL1_LOAD_EN,
212 .reg = PCIE_PHY_RX1_CTRL1,
213 .def = PCIE_PHY_RX1_CTRL1_LOAD_EN,
216 int i;
218 for (i = 0; i < ARRAY_SIZE(slices); i++) {
219 /* enable load_en */
220 regmap_update_bits(priv->phy_regmap, slices[i].reg,
221 slices[i].def, slices[i].def);
223 udelay(1);
225 /* disable load_en */
226 regmap_update_bits(priv->phy_regmap, slices[i].reg,
227 slices[i].def, 0x0);
230 for (i = 0; i < 5; i++) {
231 /* TX2 modulation */
232 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_MOD1, 0x1ffe);
233 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_MOD2, 0xfffe);
234 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_MOD3, 0x0601);
235 usleep_range(1000, 2000);
236 regmap_write(priv->phy_regmap, PCIE_PHY_TX2_MOD3, 0x0001);
238 /* TX1 modulation */
239 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_MOD1, 0x1ffe);
240 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_MOD2, 0xfffe);
241 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_MOD3, 0x0601);
242 usleep_range(1000, 2000);
243 regmap_write(priv->phy_regmap, PCIE_PHY_TX1_MOD3, 0x0001);
247 static int ltq_vrx200_pcie_phy_init(struct phy *phy)
249 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
250 int ret;
252 if (of_device_is_big_endian(priv->dev->of_node))
253 regmap_update_bits(priv->rcu_regmap,
254 priv->rcu_ahb_endian_offset,
255 priv->rcu_ahb_endian_big_endian_mask,
256 priv->rcu_ahb_endian_big_endian_mask);
257 else
258 regmap_update_bits(priv->rcu_regmap,
259 priv->rcu_ahb_endian_offset,
260 priv->rcu_ahb_endian_big_endian_mask, 0x0);
262 ret = reset_control_assert(priv->phy_reset);
263 if (ret)
264 goto err;
266 udelay(1);
268 ret = reset_control_deassert(priv->phy_reset);
269 if (ret)
270 goto err;
272 udelay(1);
274 ret = reset_control_deassert(priv->pcie_reset);
275 if (ret)
276 goto err_assert_phy_reset;
278 /* Make sure PHY PLL is stable */
279 usleep_range(20, 40);
281 return 0;
283 err_assert_phy_reset:
284 reset_control_assert(priv->phy_reset);
285 err:
286 return ret;
289 static int ltq_vrx200_pcie_phy_exit(struct phy *phy)
291 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
292 int ret;
294 ret = reset_control_assert(priv->pcie_reset);
295 if (ret)
296 return ret;
298 ret = reset_control_assert(priv->phy_reset);
299 if (ret)
300 return ret;
302 return 0;
305 static int ltq_vrx200_pcie_phy_power_on(struct phy *phy)
307 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
308 int ret;
310 /* Enable PDI to access PCIe PHY register */
311 ret = clk_prepare_enable(priv->pdi_clk);
312 if (ret)
313 goto err;
315 /* Configure PLL and PHY clock */
316 ltq_vrx200_pcie_phy_common_setup(phy);
318 pcie_phy_36mhz_mode_setup(phy);
320 /* Enable the PCIe PHY and make PLL setting take effect */
321 ret = clk_prepare_enable(priv->phy_clk);
322 if (ret)
323 goto err_disable_pdi_clk;
325 /* Check if we are in "startup ready" status */
326 ret = ltq_vrx200_pcie_phy_wait_for_pll(phy);
327 if (ret)
328 goto err_disable_phy_clk;
330 ltq_vrx200_pcie_phy_apply_workarounds(phy);
332 return 0;
334 err_disable_phy_clk:
335 clk_disable_unprepare(priv->phy_clk);
336 err_disable_pdi_clk:
337 clk_disable_unprepare(priv->pdi_clk);
338 err:
339 return ret;
342 static int ltq_vrx200_pcie_phy_power_off(struct phy *phy)
344 struct ltq_vrx200_pcie_phy_priv *priv = phy_get_drvdata(phy);
346 clk_disable_unprepare(priv->phy_clk);
347 clk_disable_unprepare(priv->pdi_clk);
349 return 0;
352 static const struct phy_ops ltq_vrx200_pcie_phy_ops = {
353 .init = ltq_vrx200_pcie_phy_init,
354 .exit = ltq_vrx200_pcie_phy_exit,
355 .power_on = ltq_vrx200_pcie_phy_power_on,
356 .power_off = ltq_vrx200_pcie_phy_power_off,
357 .owner = THIS_MODULE,
360 static struct phy *ltq_vrx200_pcie_phy_xlate(struct device *dev,
361 struct of_phandle_args *args)
363 struct ltq_vrx200_pcie_phy_priv *priv = dev_get_drvdata(dev);
364 unsigned int mode;
366 if (args->args_count != 1) {
367 dev_err(dev, "invalid number of arguments\n");
368 return ERR_PTR(-EINVAL);
371 mode = args->args[0];
373 switch (mode) {
374 case LANTIQ_PCIE_PHY_MODE_36MHZ:
375 priv->mode = mode;
376 break;
378 case LANTIQ_PCIE_PHY_MODE_25MHZ:
379 case LANTIQ_PCIE_PHY_MODE_25MHZ_SSC:
380 case LANTIQ_PCIE_PHY_MODE_36MHZ_SSC:
381 case LANTIQ_PCIE_PHY_MODE_100MHZ:
382 case LANTIQ_PCIE_PHY_MODE_100MHZ_SSC:
383 dev_err(dev, "PHY mode not implemented yet: %u\n", mode);
384 return ERR_PTR(-EINVAL);
386 default:
387 dev_err(dev, "invalid PHY mode %u\n", mode);
388 return ERR_PTR(-EINVAL);
391 return priv->phy;
394 static int ltq_vrx200_pcie_phy_probe(struct platform_device *pdev)
396 static const struct regmap_config regmap_config = {
397 .reg_bits = 8,
398 .val_bits = 16,
399 .reg_stride = 2,
400 .max_register = PCIE_PHY_RX1_A_CTRL,
402 struct ltq_vrx200_pcie_phy_priv *priv;
403 struct device *dev = &pdev->dev;
404 struct phy_provider *provider;
405 void __iomem *base;
406 int ret;
408 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
409 if (!priv)
410 return -ENOMEM;
412 base = devm_platform_ioremap_resource(pdev, 0);
413 if (IS_ERR(base))
414 return PTR_ERR(base);
416 priv->phy_regmap = devm_regmap_init_mmio(dev, base, &regmap_config);
417 if (IS_ERR(priv->phy_regmap))
418 return PTR_ERR(priv->phy_regmap);
420 priv->rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node,
421 "lantiq,rcu");
422 if (IS_ERR(priv->rcu_regmap))
423 return PTR_ERR(priv->rcu_regmap);
425 ret = device_property_read_u32(dev, "lantiq,rcu-endian-offset",
426 &priv->rcu_ahb_endian_offset);
427 if (ret) {
428 dev_err(dev,
429 "failed to parse the 'lantiq,rcu-endian-offset' property\n");
430 return ret;
433 ret = device_property_read_u32(dev, "lantiq,rcu-big-endian-mask",
434 &priv->rcu_ahb_endian_big_endian_mask);
435 if (ret) {
436 dev_err(dev,
437 "failed to parse the 'lantiq,rcu-big-endian-mask' property\n");
438 return ret;
441 priv->pdi_clk = devm_clk_get(dev, "pdi");
442 if (IS_ERR(priv->pdi_clk))
443 return PTR_ERR(priv->pdi_clk);
445 priv->phy_clk = devm_clk_get(dev, "phy");
446 if (IS_ERR(priv->phy_clk))
447 return PTR_ERR(priv->phy_clk);
449 priv->phy_reset = devm_reset_control_get_exclusive(dev, "phy");
450 if (IS_ERR(priv->phy_reset))
451 return PTR_ERR(priv->phy_reset);
453 priv->pcie_reset = devm_reset_control_get_shared(dev, "pcie");
454 if (IS_ERR(priv->pcie_reset))
455 return PTR_ERR(priv->pcie_reset);
457 priv->dev = dev;
459 priv->phy = devm_phy_create(dev, dev->of_node,
460 &ltq_vrx200_pcie_phy_ops);
461 if (IS_ERR(priv->phy)) {
462 dev_err(dev, "failed to create PHY\n");
463 return PTR_ERR(priv->phy);
466 phy_set_drvdata(priv->phy, priv);
467 dev_set_drvdata(dev, priv);
469 provider = devm_of_phy_provider_register(dev,
470 ltq_vrx200_pcie_phy_xlate);
472 return PTR_ERR_OR_ZERO(provider);
475 static const struct of_device_id ltq_vrx200_pcie_phy_of_match[] = {
476 { .compatible = "lantiq,vrx200-pcie-phy", },
477 { .compatible = "lantiq,arx300-pcie-phy", },
478 { /* sentinel */ },
480 MODULE_DEVICE_TABLE(of, ltq_vrx200_pcie_phy_of_match);
482 static struct platform_driver ltq_vrx200_pcie_phy_driver = {
483 .probe = ltq_vrx200_pcie_phy_probe,
484 .driver = {
485 .name = "ltq-vrx200-pcie-phy",
486 .of_match_table = ltq_vrx200_pcie_phy_of_match,
489 module_platform_driver(ltq_vrx200_pcie_phy_driver);
491 MODULE_AUTHOR("Martin Blumenstingl <martin.blumenstingl@googlemail.com>");
492 MODULE_DESCRIPTION("Lantiq VRX200 and ARX300 PCIe PHY driver");
493 MODULE_LICENSE("GPL v2");