1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2017, The Linux Foundation. All rights reserved.
7 #include <linux/delay.h>
10 #include <linux/kernel.h>
11 #include <linux/mfd/syscon.h>
12 #include <linux/module.h>
13 #include <linux/nvmem-consumer.h>
15 #include <linux/of_device.h>
16 #include <linux/phy/phy.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/regulator/consumer.h>
20 #include <linux/reset.h>
21 #include <linux/slab.h>
23 #include <dt-bindings/phy/phy-qcom-qusb2.h>
25 #define QUSB2PHY_PLL_TEST 0x04
26 #define CLK_REF_SEL BIT(7)
28 #define QUSB2PHY_PLL_TUNE 0x08
29 #define QUSB2PHY_PLL_USER_CTL1 0x0c
30 #define QUSB2PHY_PLL_USER_CTL2 0x10
31 #define QUSB2PHY_PLL_AUTOPGM_CTL1 0x1c
32 #define QUSB2PHY_PLL_PWR_CTRL 0x18
34 /* QUSB2PHY_PLL_STATUS register bits */
35 #define PLL_LOCKED BIT(5)
37 /* QUSB2PHY_PLL_COMMON_STATUS_ONE register bits */
38 #define CORE_READY_STATUS BIT(0)
40 /* QUSB2PHY_PORT_POWERDOWN register bits */
41 #define CLAMP_N_EN BIT(5)
42 #define FREEZIO_N BIT(1)
43 #define POWER_DOWN BIT(0)
45 /* QUSB2PHY_PWR_CTRL1 register bits */
46 #define PWR_CTRL1_VREF_SUPPLY_TRIM BIT(5)
47 #define PWR_CTRL1_CLAMP_N_EN BIT(1)
49 #define QUSB2PHY_REFCLK_ENABLE BIT(0)
51 #define PHY_CLK_SCHEME_SEL BIT(0)
53 /* QUSB2PHY_INTR_CTRL register bits */
54 #define DMSE_INTR_HIGH_SEL BIT(4)
55 #define DPSE_INTR_HIGH_SEL BIT(3)
56 #define CHG_DET_INTR_EN BIT(2)
57 #define DMSE_INTR_EN BIT(1)
58 #define DPSE_INTR_EN BIT(0)
60 /* QUSB2PHY_PLL_CORE_INPUT_OVERRIDE register bits */
61 #define CORE_PLL_EN_FROM_RESET BIT(4)
62 #define CORE_RESET BIT(5)
63 #define CORE_RESET_MUX BIT(6)
65 /* QUSB2PHY_IMP_CTRL1 register bits */
66 #define IMP_RES_OFFSET_MASK GENMASK(5, 0)
67 #define IMP_RES_OFFSET_SHIFT 0x0
69 /* QUSB2PHY_PORT_TUNE1 register bits */
70 #define HSTX_TRIM_MASK GENMASK(7, 4)
71 #define HSTX_TRIM_SHIFT 0x4
72 #define PREEMPH_WIDTH_HALF_BIT BIT(2)
73 #define PREEMPHASIS_EN_MASK GENMASK(1, 0)
74 #define PREEMPHASIS_EN_SHIFT 0x0
76 #define QUSB2PHY_PLL_ANALOG_CONTROLS_TWO 0x04
77 #define QUSB2PHY_PLL_CLOCK_INVERTERS 0x18c
78 #define QUSB2PHY_PLL_CMODE 0x2c
79 #define QUSB2PHY_PLL_LOCK_DELAY 0x184
80 #define QUSB2PHY_PLL_DIGITAL_TIMERS_TWO 0xb4
81 #define QUSB2PHY_PLL_BIAS_CONTROL_1 0x194
82 #define QUSB2PHY_PLL_BIAS_CONTROL_2 0x198
83 #define QUSB2PHY_PWR_CTRL2 0x214
84 #define QUSB2PHY_IMP_CTRL1 0x220
85 #define QUSB2PHY_IMP_CTRL2 0x224
86 #define QUSB2PHY_CHG_CTRL2 0x23c
88 struct qusb2_phy_init_tbl
{
92 * register part of layout ?
93 * if yes, then offset gives index in the reg-layout
98 #define QUSB2_PHY_INIT_CFG(o, v) \
104 #define QUSB2_PHY_INIT_CFG_L(o, v) \
111 /* set of registers with offsets different per-PHY */
112 enum qusb2phy_reg_layout
{
113 QUSB2PHY_PLL_CORE_INPUT_OVERRIDE
,
122 QUSB2PHY_PORT_POWERDOWN
,
126 static const unsigned int msm8996_regs_layout
[] = {
127 [QUSB2PHY_PLL_STATUS
] = 0x38,
128 [QUSB2PHY_PORT_TUNE1
] = 0x80,
129 [QUSB2PHY_PORT_TUNE2
] = 0x84,
130 [QUSB2PHY_PORT_TUNE3
] = 0x88,
131 [QUSB2PHY_PORT_TUNE4
] = 0x8c,
132 [QUSB2PHY_PORT_TUNE5
] = 0x90,
133 [QUSB2PHY_PORT_TEST1
] = 0xb8,
134 [QUSB2PHY_PORT_TEST2
] = 0x9c,
135 [QUSB2PHY_PORT_POWERDOWN
] = 0xb4,
136 [QUSB2PHY_INTR_CTRL
] = 0xbc,
139 static const struct qusb2_phy_init_tbl msm8996_init_tbl
[] = {
140 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE1
, 0xf8),
141 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE2
, 0xb3),
142 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE3
, 0x83),
143 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE4
, 0xc0),
145 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_TUNE
, 0x30),
146 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_USER_CTL1
, 0x79),
147 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_USER_CTL2
, 0x21),
149 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TEST2
, 0x14),
151 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_AUTOPGM_CTL1
, 0x9f),
152 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_PWR_CTRL
, 0x00),
155 static const unsigned int sdm845_regs_layout
[] = {
156 [QUSB2PHY_PLL_CORE_INPUT_OVERRIDE
] = 0xa8,
157 [QUSB2PHY_PLL_STATUS
] = 0x1a0,
158 [QUSB2PHY_PORT_TUNE1
] = 0x240,
159 [QUSB2PHY_PORT_TUNE2
] = 0x244,
160 [QUSB2PHY_PORT_TUNE3
] = 0x248,
161 [QUSB2PHY_PORT_TUNE4
] = 0x24c,
162 [QUSB2PHY_PORT_TUNE5
] = 0x250,
163 [QUSB2PHY_PORT_TEST1
] = 0x254,
164 [QUSB2PHY_PORT_TEST2
] = 0x258,
165 [QUSB2PHY_PORT_POWERDOWN
] = 0x210,
166 [QUSB2PHY_INTR_CTRL
] = 0x230,
169 static const struct qusb2_phy_init_tbl sdm845_init_tbl
[] = {
170 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_ANALOG_CONTROLS_TWO
, 0x03),
171 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_CLOCK_INVERTERS
, 0x7c),
172 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_CMODE
, 0x80),
173 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_LOCK_DELAY
, 0x0a),
174 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_DIGITAL_TIMERS_TWO
, 0x19),
175 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_BIAS_CONTROL_1
, 0x40),
176 QUSB2_PHY_INIT_CFG(QUSB2PHY_PLL_BIAS_CONTROL_2
, 0x20),
177 QUSB2_PHY_INIT_CFG(QUSB2PHY_PWR_CTRL2
, 0x21),
178 QUSB2_PHY_INIT_CFG(QUSB2PHY_IMP_CTRL1
, 0x0),
179 QUSB2_PHY_INIT_CFG(QUSB2PHY_IMP_CTRL2
, 0x58),
181 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE1
, 0x30),
182 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE2
, 0x29),
183 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE3
, 0xca),
184 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE4
, 0x04),
185 QUSB2_PHY_INIT_CFG_L(QUSB2PHY_PORT_TUNE5
, 0x03),
187 QUSB2_PHY_INIT_CFG(QUSB2PHY_CHG_CTRL2
, 0x0),
190 struct qusb2_phy_cfg
{
191 const struct qusb2_phy_init_tbl
*tbl
;
192 /* number of entries in the table */
193 unsigned int tbl_num
;
194 /* offset to PHY_CLK_SCHEME register in TCSR map */
195 unsigned int clk_scheme_offset
;
197 /* array of registers with different offsets */
198 const unsigned int *regs
;
199 unsigned int mask_core_ready
;
200 unsigned int disable_ctrl
;
201 unsigned int autoresume_en
;
203 /* true if PHY has PLL_TEST register to select clk_scheme */
206 /* true if TUNE1 register must be updated by fused value, else TUNE2 */
207 bool update_tune1_with_efuse
;
209 /* true if PHY has PLL_CORE_INPUT_OVERRIDE register to reset PLL */
210 bool has_pll_override
;
213 static const struct qusb2_phy_cfg msm8996_phy_cfg
= {
214 .tbl
= msm8996_init_tbl
,
215 .tbl_num
= ARRAY_SIZE(msm8996_init_tbl
),
216 .regs
= msm8996_regs_layout
,
218 .has_pll_test
= true,
219 .disable_ctrl
= (CLAMP_N_EN
| FREEZIO_N
| POWER_DOWN
),
220 .mask_core_ready
= PLL_LOCKED
,
221 .autoresume_en
= BIT(3),
224 static const struct qusb2_phy_cfg sdm845_phy_cfg
= {
225 .tbl
= sdm845_init_tbl
,
226 .tbl_num
= ARRAY_SIZE(sdm845_init_tbl
),
227 .regs
= sdm845_regs_layout
,
229 .disable_ctrl
= (PWR_CTRL1_VREF_SUPPLY_TRIM
| PWR_CTRL1_CLAMP_N_EN
|
231 .mask_core_ready
= CORE_READY_STATUS
,
232 .has_pll_override
= true,
233 .autoresume_en
= BIT(0),
236 static const char * const qusb2_phy_vreg_names
[] = {
237 "vdda-pll", "vdda-phy-dpdm",
240 #define QUSB2_NUM_VREGS ARRAY_SIZE(qusb2_phy_vreg_names)
243 * struct qusb2_phy - structure holding qusb2 phy attributes
246 * @base: iomapped memory space for qubs2 phy
248 * @cfg_ahb_clk: AHB2PHY interface clock
249 * @ref_clk: phy reference clock
250 * @iface_clk: phy interface clock
251 * @phy_reset: phy reset control
252 * @vregs: regulator supplies bulk data
254 * @tcsr: TCSR syscon register map
255 * @cell: nvmem cell containing phy tuning value
257 * @override_imp_res_offset: PHY should use different rescode offset
258 * @imp_res_offset_value: rescode offset to be updated in IMP_CTRL1 register
259 * @override_hstx_trim: PHY should use different HSTX o/p current value
260 * @hstx_trim_value: HSTX_TRIM value to be updated in TUNE1 register
261 * @override_preemphasis: PHY should use different pre-amphasis amplitude
262 * @preemphasis_level: Amplitude Pre-Emphasis to be updated in TUNE1 register
263 * @override_preemphasis_width: PHY should use different pre-emphasis duration
264 * @preemphasis_width: half/full-width Pre-Emphasis updated via TUNE1
266 * @cfg: phy config data
267 * @has_se_clk_scheme: indicate if PHY has single-ended ref clock scheme
268 * @phy_initialized: indicate if PHY has been initialized
269 * @mode: current PHY mode
275 struct clk
*cfg_ahb_clk
;
277 struct clk
*iface_clk
;
278 struct reset_control
*phy_reset
;
279 struct regulator_bulk_data vregs
[QUSB2_NUM_VREGS
];
282 struct nvmem_cell
*cell
;
284 bool override_imp_res_offset
;
285 u8 imp_res_offset_value
;
286 bool override_hstx_trim
;
288 bool override_preemphasis
;
289 u8 preemphasis_level
;
290 bool override_preemphasis_width
;
291 u8 preemphasis_width
;
293 const struct qusb2_phy_cfg
*cfg
;
294 bool has_se_clk_scheme
;
295 bool phy_initialized
;
299 static inline void qusb2_write_mask(void __iomem
*base
, u32 offset
,
304 reg
= readl(base
+ offset
);
307 writel(reg
, base
+ offset
);
309 /* Ensure above write is completed */
310 readl(base
+ offset
);
313 static inline void qusb2_setbits(void __iomem
*base
, u32 offset
, u32 val
)
317 reg
= readl(base
+ offset
);
319 writel(reg
, base
+ offset
);
321 /* Ensure above write is completed */
322 readl(base
+ offset
);
325 static inline void qusb2_clrbits(void __iomem
*base
, u32 offset
, u32 val
)
329 reg
= readl(base
+ offset
);
331 writel(reg
, base
+ offset
);
333 /* Ensure above write is completed */
334 readl(base
+ offset
);
338 void qcom_qusb2_phy_configure(void __iomem
*base
,
339 const unsigned int *regs
,
340 const struct qusb2_phy_init_tbl tbl
[], int num
)
344 for (i
= 0; i
< num
; i
++) {
345 if (tbl
[i
].in_layout
)
346 writel(tbl
[i
].val
, base
+ regs
[tbl
[i
].offset
]);
348 writel(tbl
[i
].val
, base
+ tbl
[i
].offset
);
353 * Update board specific PHY tuning override values if specified from
356 static void qusb2_phy_override_phy_params(struct qusb2_phy
*qphy
)
358 const struct qusb2_phy_cfg
*cfg
= qphy
->cfg
;
360 if (qphy
->override_imp_res_offset
)
361 qusb2_write_mask(qphy
->base
, QUSB2PHY_IMP_CTRL1
,
362 qphy
->imp_res_offset_value
<< IMP_RES_OFFSET_SHIFT
,
363 IMP_RES_OFFSET_MASK
);
365 if (qphy
->override_hstx_trim
)
366 qusb2_write_mask(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TUNE1
],
367 qphy
->hstx_trim_value
<< HSTX_TRIM_SHIFT
,
370 if (qphy
->override_preemphasis
)
371 qusb2_write_mask(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TUNE1
],
372 qphy
->preemphasis_level
<< PREEMPHASIS_EN_SHIFT
,
373 PREEMPHASIS_EN_MASK
);
375 if (qphy
->override_preemphasis_width
) {
376 if (qphy
->preemphasis_width
==
377 QUSB2_V2_PREEMPHASIS_WIDTH_HALF_BIT
)
378 qusb2_setbits(qphy
->base
,
379 cfg
->regs
[QUSB2PHY_PORT_TUNE1
],
380 PREEMPH_WIDTH_HALF_BIT
);
382 qusb2_clrbits(qphy
->base
,
383 cfg
->regs
[QUSB2PHY_PORT_TUNE1
],
384 PREEMPH_WIDTH_HALF_BIT
);
389 * Fetches HS Tx tuning value from nvmem and sets the
390 * QUSB2PHY_PORT_TUNE1/2 register.
391 * For error case, skip setting the value and use the default value.
393 static void qusb2_phy_set_tune2_param(struct qusb2_phy
*qphy
)
395 struct device
*dev
= &qphy
->phy
->dev
;
396 const struct qusb2_phy_cfg
*cfg
= qphy
->cfg
;
399 /* efuse register is optional */
404 * Read efuse register having TUNE2/1 parameter's high nibble.
405 * If efuse register shows value as 0x0, or if we fail to find
406 * a valid efuse register settings, then use default value
407 * as 0xB for high nibble that we have already set while
410 val
= nvmem_cell_read(qphy
->cell
, NULL
);
411 if (IS_ERR(val
) || !val
[0]) {
412 dev_dbg(dev
, "failed to read a valid hs-tx trim value\n");
416 /* Fused TUNE1/2 value is the higher nibble only */
417 if (cfg
->update_tune1_with_efuse
)
418 qusb2_setbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TUNE1
],
421 qusb2_setbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TUNE2
],
426 static int qusb2_phy_set_mode(struct phy
*phy
, enum phy_mode mode
)
428 struct qusb2_phy
*qphy
= phy_get_drvdata(phy
);
435 static int __maybe_unused
qusb2_phy_runtime_suspend(struct device
*dev
)
437 struct qusb2_phy
*qphy
= dev_get_drvdata(dev
);
438 const struct qusb2_phy_cfg
*cfg
= qphy
->cfg
;
441 dev_vdbg(dev
, "Suspending QUSB2 Phy, mode:%d\n", qphy
->mode
);
443 if (!qphy
->phy_initialized
) {
444 dev_vdbg(dev
, "PHY not initialized, bailing out\n");
449 * Enable DP/DM interrupts to detect line state changes based on current
450 * speed. In other words, enable the triggers _opposite_ of what the
451 * current D+/D- levels are e.g. if currently D+ high, D- low
452 * (HS 'J'/Suspend), configure the mask to trigger on D+ low OR D- high
454 intr_mask
= DPSE_INTR_EN
| DMSE_INTR_EN
;
455 switch (qphy
->mode
) {
456 case PHY_MODE_USB_HOST_HS
:
457 case PHY_MODE_USB_HOST_FS
:
458 case PHY_MODE_USB_DEVICE_HS
:
459 case PHY_MODE_USB_DEVICE_FS
:
460 intr_mask
|= DMSE_INTR_HIGH_SEL
;
462 case PHY_MODE_USB_HOST_LS
:
463 case PHY_MODE_USB_DEVICE_LS
:
464 intr_mask
|= DPSE_INTR_HIGH_SEL
;
467 /* No device connected, enable both DP/DM high interrupt */
468 intr_mask
|= DMSE_INTR_HIGH_SEL
;
469 intr_mask
|= DPSE_INTR_HIGH_SEL
;
473 writel(intr_mask
, qphy
->base
+ cfg
->regs
[QUSB2PHY_INTR_CTRL
]);
475 /* hold core PLL into reset */
476 if (cfg
->has_pll_override
) {
477 qusb2_setbits(qphy
->base
,
478 cfg
->regs
[QUSB2PHY_PLL_CORE_INPUT_OVERRIDE
],
479 CORE_PLL_EN_FROM_RESET
| CORE_RESET
|
483 /* enable phy auto-resume only if device is connected on bus */
484 if (qphy
->mode
!= PHY_MODE_INVALID
) {
485 qusb2_setbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TEST1
],
487 /* Autoresume bit has to be toggled in order to enable it */
488 qusb2_clrbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_TEST1
],
492 if (!qphy
->has_se_clk_scheme
)
493 clk_disable_unprepare(qphy
->ref_clk
);
495 clk_disable_unprepare(qphy
->cfg_ahb_clk
);
496 clk_disable_unprepare(qphy
->iface_clk
);
501 static int __maybe_unused
qusb2_phy_runtime_resume(struct device
*dev
)
503 struct qusb2_phy
*qphy
= dev_get_drvdata(dev
);
504 const struct qusb2_phy_cfg
*cfg
= qphy
->cfg
;
507 dev_vdbg(dev
, "Resuming QUSB2 phy, mode:%d\n", qphy
->mode
);
509 if (!qphy
->phy_initialized
) {
510 dev_vdbg(dev
, "PHY not initialized, bailing out\n");
514 ret
= clk_prepare_enable(qphy
->iface_clk
);
516 dev_err(dev
, "failed to enable iface_clk, %d\n", ret
);
520 ret
= clk_prepare_enable(qphy
->cfg_ahb_clk
);
522 dev_err(dev
, "failed to enable cfg ahb clock, %d\n", ret
);
523 goto disable_iface_clk
;
526 if (!qphy
->has_se_clk_scheme
) {
527 clk_prepare_enable(qphy
->ref_clk
);
529 dev_err(dev
, "failed to enable ref clk, %d\n", ret
);
530 goto disable_ahb_clk
;
534 writel(0x0, qphy
->base
+ cfg
->regs
[QUSB2PHY_INTR_CTRL
]);
536 /* bring core PLL out of reset */
537 if (cfg
->has_pll_override
) {
538 qusb2_clrbits(qphy
->base
,
539 cfg
->regs
[QUSB2PHY_PLL_CORE_INPUT_OVERRIDE
],
540 CORE_RESET
| CORE_RESET_MUX
);
546 clk_disable_unprepare(qphy
->cfg_ahb_clk
);
548 clk_disable_unprepare(qphy
->iface_clk
);
553 static int qusb2_phy_init(struct phy
*phy
)
555 struct qusb2_phy
*qphy
= phy_get_drvdata(phy
);
556 const struct qusb2_phy_cfg
*cfg
= qphy
->cfg
;
557 unsigned int val
= 0;
558 unsigned int clk_scheme
;
561 dev_vdbg(&phy
->dev
, "%s(): Initializing QUSB2 phy\n", __func__
);
563 /* turn on regulator supplies */
564 ret
= regulator_bulk_enable(ARRAY_SIZE(qphy
->vregs
), qphy
->vregs
);
568 ret
= clk_prepare_enable(qphy
->iface_clk
);
570 dev_err(&phy
->dev
, "failed to enable iface_clk, %d\n", ret
);
574 /* enable ahb interface clock to program phy */
575 ret
= clk_prepare_enable(qphy
->cfg_ahb_clk
);
577 dev_err(&phy
->dev
, "failed to enable cfg ahb clock, %d\n", ret
);
578 goto disable_iface_clk
;
581 /* Perform phy reset */
582 ret
= reset_control_assert(qphy
->phy_reset
);
584 dev_err(&phy
->dev
, "failed to assert phy_reset, %d\n", ret
);
585 goto disable_ahb_clk
;
588 /* 100 us delay to keep PHY in reset mode */
589 usleep_range(100, 150);
591 ret
= reset_control_deassert(qphy
->phy_reset
);
593 dev_err(&phy
->dev
, "failed to de-assert phy_reset, %d\n", ret
);
594 goto disable_ahb_clk
;
597 /* Disable the PHY */
598 qusb2_setbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_POWERDOWN
],
599 qphy
->cfg
->disable_ctrl
);
601 if (cfg
->has_pll_test
) {
602 /* save reset value to override reference clock scheme later */
603 val
= readl(qphy
->base
+ QUSB2PHY_PLL_TEST
);
606 qcom_qusb2_phy_configure(qphy
->base
, cfg
->regs
, cfg
->tbl
,
609 /* Override board specific PHY tuning values */
610 qusb2_phy_override_phy_params(qphy
);
612 /* Set efuse value for tuning the PHY */
613 qusb2_phy_set_tune2_param(qphy
);
616 qusb2_clrbits(qphy
->base
, cfg
->regs
[QUSB2PHY_PORT_POWERDOWN
],
619 /* Required to get phy pll lock successfully */
620 usleep_range(150, 160);
622 /* Default is single-ended clock on msm8996 */
623 qphy
->has_se_clk_scheme
= true;
625 * read TCSR_PHY_CLK_SCHEME register to check if single-ended
626 * clock scheme is selected. If yes, then disable differential
627 * ref_clk and use single-ended clock, otherwise use differential
631 ret
= regmap_read(qphy
->tcsr
, qphy
->cfg
->clk_scheme_offset
,
634 dev_err(&phy
->dev
, "failed to read clk scheme reg\n");
635 goto assert_phy_reset
;
638 /* is it a differential clock scheme ? */
639 if (!(clk_scheme
& PHY_CLK_SCHEME_SEL
)) {
640 dev_vdbg(&phy
->dev
, "%s(): select differential clk\n",
642 qphy
->has_se_clk_scheme
= false;
644 dev_vdbg(&phy
->dev
, "%s(): select single-ended clk\n",
649 if (!qphy
->has_se_clk_scheme
) {
650 ret
= clk_prepare_enable(qphy
->ref_clk
);
652 dev_err(&phy
->dev
, "failed to enable ref clk, %d\n",
654 goto assert_phy_reset
;
658 if (cfg
->has_pll_test
) {
659 if (!qphy
->has_se_clk_scheme
)
664 writel(val
, qphy
->base
+ QUSB2PHY_PLL_TEST
);
666 /* ensure above write is through */
667 readl(qphy
->base
+ QUSB2PHY_PLL_TEST
);
670 /* Required to get phy pll lock successfully */
671 usleep_range(100, 110);
673 val
= readb(qphy
->base
+ cfg
->regs
[QUSB2PHY_PLL_STATUS
]);
674 if (!(val
& cfg
->mask_core_ready
)) {
676 "QUSB2PHY pll lock failed: status reg = %x\n", val
);
678 goto disable_ref_clk
;
680 qphy
->phy_initialized
= true;
685 if (!qphy
->has_se_clk_scheme
)
686 clk_disable_unprepare(qphy
->ref_clk
);
688 reset_control_assert(qphy
->phy_reset
);
690 clk_disable_unprepare(qphy
->cfg_ahb_clk
);
692 clk_disable_unprepare(qphy
->iface_clk
);
694 regulator_bulk_disable(ARRAY_SIZE(qphy
->vregs
), qphy
->vregs
);
699 static int qusb2_phy_exit(struct phy
*phy
)
701 struct qusb2_phy
*qphy
= phy_get_drvdata(phy
);
703 /* Disable the PHY */
704 qusb2_setbits(qphy
->base
, qphy
->cfg
->regs
[QUSB2PHY_PORT_POWERDOWN
],
705 qphy
->cfg
->disable_ctrl
);
707 if (!qphy
->has_se_clk_scheme
)
708 clk_disable_unprepare(qphy
->ref_clk
);
710 reset_control_assert(qphy
->phy_reset
);
712 clk_disable_unprepare(qphy
->cfg_ahb_clk
);
713 clk_disable_unprepare(qphy
->iface_clk
);
715 regulator_bulk_disable(ARRAY_SIZE(qphy
->vregs
), qphy
->vregs
);
717 qphy
->phy_initialized
= false;
722 static const struct phy_ops qusb2_phy_gen_ops
= {
723 .init
= qusb2_phy_init
,
724 .exit
= qusb2_phy_exit
,
725 .set_mode
= qusb2_phy_set_mode
,
726 .owner
= THIS_MODULE
,
729 static const struct of_device_id qusb2_phy_of_match_table
[] = {
731 .compatible
= "qcom,msm8996-qusb2-phy",
732 .data
= &msm8996_phy_cfg
,
734 .compatible
= "qcom,sdm845-qusb2-phy",
735 .data
= &sdm845_phy_cfg
,
739 MODULE_DEVICE_TABLE(of
, qusb2_phy_of_match_table
);
741 static const struct dev_pm_ops qusb2_phy_pm_ops
= {
742 SET_RUNTIME_PM_OPS(qusb2_phy_runtime_suspend
,
743 qusb2_phy_runtime_resume
, NULL
)
746 static int qusb2_phy_probe(struct platform_device
*pdev
)
748 struct device
*dev
= &pdev
->dev
;
749 struct qusb2_phy
*qphy
;
750 struct phy_provider
*phy_provider
;
751 struct phy
*generic_phy
;
752 struct resource
*res
;
757 qphy
= devm_kzalloc(dev
, sizeof(*qphy
), GFP_KERNEL
);
761 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
762 qphy
->base
= devm_ioremap_resource(dev
, res
);
763 if (IS_ERR(qphy
->base
))
764 return PTR_ERR(qphy
->base
);
766 qphy
->cfg_ahb_clk
= devm_clk_get(dev
, "cfg_ahb");
767 if (IS_ERR(qphy
->cfg_ahb_clk
)) {
768 ret
= PTR_ERR(qphy
->cfg_ahb_clk
);
769 if (ret
!= -EPROBE_DEFER
)
770 dev_err(dev
, "failed to get cfg ahb clk, %d\n", ret
);
774 qphy
->ref_clk
= devm_clk_get(dev
, "ref");
775 if (IS_ERR(qphy
->ref_clk
)) {
776 ret
= PTR_ERR(qphy
->ref_clk
);
777 if (ret
!= -EPROBE_DEFER
)
778 dev_err(dev
, "failed to get ref clk, %d\n", ret
);
782 qphy
->iface_clk
= devm_clk_get(dev
, "iface");
783 if (IS_ERR(qphy
->iface_clk
)) {
784 ret
= PTR_ERR(qphy
->iface_clk
);
785 if (ret
== -EPROBE_DEFER
)
787 qphy
->iface_clk
= NULL
;
788 dev_dbg(dev
, "failed to get iface clk, %d\n", ret
);
791 qphy
->phy_reset
= devm_reset_control_get_by_index(&pdev
->dev
, 0);
792 if (IS_ERR(qphy
->phy_reset
)) {
793 dev_err(dev
, "failed to get phy core reset\n");
794 return PTR_ERR(qphy
->phy_reset
);
797 num
= ARRAY_SIZE(qphy
->vregs
);
798 for (i
= 0; i
< num
; i
++)
799 qphy
->vregs
[i
].supply
= qusb2_phy_vreg_names
[i
];
801 ret
= devm_regulator_bulk_get(dev
, num
, qphy
->vregs
);
803 dev_err(dev
, "failed to get regulator supplies\n");
807 /* Get the specific init parameters of QMP phy */
808 qphy
->cfg
= of_device_get_match_data(dev
);
810 qphy
->tcsr
= syscon_regmap_lookup_by_phandle(dev
->of_node
,
812 if (IS_ERR(qphy
->tcsr
)) {
813 dev_dbg(dev
, "failed to lookup TCSR regmap\n");
817 qphy
->cell
= devm_nvmem_cell_get(dev
, NULL
);
818 if (IS_ERR(qphy
->cell
)) {
819 if (PTR_ERR(qphy
->cell
) == -EPROBE_DEFER
)
820 return -EPROBE_DEFER
;
822 dev_dbg(dev
, "failed to lookup tune2 hstx trim value\n");
825 if (!of_property_read_u32(dev
->of_node
, "qcom,imp-res-offset-value",
827 qphy
->imp_res_offset_value
= (u8
)value
;
828 qphy
->override_imp_res_offset
= true;
831 if (!of_property_read_u32(dev
->of_node
, "qcom,hstx-trim-value",
833 qphy
->hstx_trim_value
= (u8
)value
;
834 qphy
->override_hstx_trim
= true;
837 if (!of_property_read_u32(dev
->of_node
, "qcom,preemphasis-level",
839 qphy
->preemphasis_level
= (u8
)value
;
840 qphy
->override_preemphasis
= true;
843 if (!of_property_read_u32(dev
->of_node
, "qcom,preemphasis-width",
845 qphy
->preemphasis_width
= (u8
)value
;
846 qphy
->override_preemphasis_width
= true;
849 pm_runtime_set_active(dev
);
850 pm_runtime_enable(dev
);
852 * Prevent runtime pm from being ON by default. Users can enable
853 * it using power/control in sysfs.
855 pm_runtime_forbid(dev
);
857 generic_phy
= devm_phy_create(dev
, NULL
, &qusb2_phy_gen_ops
);
858 if (IS_ERR(generic_phy
)) {
859 ret
= PTR_ERR(generic_phy
);
860 dev_err(dev
, "failed to create phy, %d\n", ret
);
861 pm_runtime_disable(dev
);
864 qphy
->phy
= generic_phy
;
866 dev_set_drvdata(dev
, qphy
);
867 phy_set_drvdata(generic_phy
, qphy
);
869 phy_provider
= devm_of_phy_provider_register(dev
, of_phy_simple_xlate
);
870 if (!IS_ERR(phy_provider
))
871 dev_info(dev
, "Registered Qcom-QUSB2 phy\n");
873 pm_runtime_disable(dev
);
875 return PTR_ERR_OR_ZERO(phy_provider
);
878 static struct platform_driver qusb2_phy_driver
= {
879 .probe
= qusb2_phy_probe
,
881 .name
= "qcom-qusb2-phy",
882 .pm
= &qusb2_phy_pm_ops
,
883 .of_match_table
= qusb2_phy_of_match_table
,
887 module_platform_driver(qusb2_phy_driver
);
889 MODULE_AUTHOR("Vivek Gautam <vivek.gautam@codeaurora.org>");
890 MODULE_DESCRIPTION("Qualcomm QUSB2 PHY driver");
891 MODULE_LICENSE("GPL v2");