1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2017, The Linux Foundation. All rights reserved.
7 #include <linux/clk-provider.h>
8 #include <linux/delay.h>
11 #include <linux/iopoll.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #include <linux/of_address.h>
16 #include <linux/phy/phy.h>
17 #include <linux/platform_device.h>
18 #include <linux/regulator/consumer.h>
19 #include <linux/reset.h>
20 #include <linux/slab.h>
21 #include <linux/usb/typec.h>
22 #include <linux/usb/typec_mux.h>
24 #include <drm/drm_bridge.h>
26 #include <dt-bindings/phy/phy-qcom-qmp.h>
28 #include "phy-qcom-qmp.h"
29 #include "phy-qcom-qmp-pcs-misc-v3.h"
30 #include "phy-qcom-qmp-pcs-usb-v4.h"
31 #include "phy-qcom-qmp-pcs-usb-v5.h"
32 #include "phy-qcom-qmp-pcs-usb-v6.h"
34 /* QPHY_SW_RESET bit */
35 #define SW_RESET BIT(0)
36 /* QPHY_POWER_DOWN_CONTROL */
37 #define SW_PWRDN BIT(0)
38 /* QPHY_START_CONTROL bits */
39 #define SERDES_START BIT(0)
40 #define PCS_START BIT(1)
41 /* QPHY_PCS_STATUS bit */
42 #define PHYSTATUS BIT(6)
44 /* QPHY_V3_DP_COM_RESET_OVRD_CTRL register bits */
45 /* DP PHY soft reset */
46 #define SW_DPPHY_RESET BIT(0)
47 /* mux to select DP PHY reset control, 0:HW control, 1: software reset */
48 #define SW_DPPHY_RESET_MUX BIT(1)
49 /* USB3 PHY soft reset */
50 #define SW_USB3PHY_RESET BIT(2)
51 /* mux to select USB3 PHY reset control, 0:HW control, 1: software reset */
52 #define SW_USB3PHY_RESET_MUX BIT(3)
54 /* QPHY_V3_DP_COM_PHY_MODE_CTRL register bits */
55 #define USB3_MODE BIT(0) /* enables USB3 mode */
56 #define DP_MODE BIT(1) /* enables DP mode */
58 /* QPHY_PCS_AUTONOMOUS_MODE_CTRL register bits */
59 #define ARCVR_DTCT_EN BIT(0)
60 #define ALFPS_DTCT_EN BIT(1)
61 #define ARCVR_DTCT_EVENT_SEL BIT(4)
63 /* QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR register bits */
64 #define IRQ_CLEAR BIT(0)
66 /* QPHY_V3_PCS_MISC_CLAMP_ENABLE register bits */
67 #define CLAMP_EN BIT(0) /* enables i/o clamp_n */
69 /* QPHY_V3_DP_COM_TYPEC_CTRL register bits */
70 #define SW_PORTSELECT_VAL BIT(0)
71 #define SW_PORTSELECT_MUX BIT(1)
73 #define PHY_INIT_COMPLETE_TIMEOUT 10000
75 struct qmp_phy_init_tbl {
79 * mask of lanes for which this register is written
80 * for cases when second lane needs different values
85 #define QMP_PHY_INIT_CFG(o, v) \
92 #define QMP_PHY_INIT_CFG_LANE(o, v, l) \
99 /* set of registers with offsets different per-PHY */
100 enum qphy_reg_layout {
105 QPHY_PCS_AUTONOMOUS_MODE_CTRL,
106 QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR,
107 QPHY_PCS_POWER_DOWN_CONTROL,
109 QPHY_COM_RESETSM_CNTRL,
110 QPHY_COM_C_READY_STATUS,
112 QPHY_COM_BIAS_EN_CLKBUFLR_EN,
118 QPHY_TX_TX_EMP_POST1_LVL,
119 QPHY_TX_HIGHZ_DRVR_EN,
120 QPHY_TX_TRANSCEIVER_BIAS_EN,
122 /* Keep last to ensure regs_layout arrays are properly initialized */
126 static const unsigned int qmp_v3_usb3phy_regs_layout[QPHY_LAYOUT_SIZE] = {
127 [QPHY_SW_RESET] = QPHY_V3_PCS_SW_RESET,
128 [QPHY_START_CTRL] = QPHY_V3_PCS_START_CONTROL,
129 [QPHY_PCS_STATUS] = QPHY_V3_PCS_PCS_STATUS,
130 [QPHY_PCS_POWER_DOWN_CONTROL] = QPHY_V3_PCS_POWER_DOWN_CONTROL,
131 [QPHY_PCS_AUTONOMOUS_MODE_CTRL] = QPHY_V3_PCS_AUTONOMOUS_MODE_CTRL,
132 [QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR] = QPHY_V3_PCS_LFPS_RXTERM_IRQ_CLEAR,
134 [QPHY_COM_RESETSM_CNTRL] = QSERDES_V3_COM_RESETSM_CNTRL,
135 [QPHY_COM_C_READY_STATUS] = QSERDES_V3_COM_C_READY_STATUS,
136 [QPHY_COM_CMN_STATUS] = QSERDES_V3_COM_CMN_STATUS,
137 [QPHY_COM_BIAS_EN_CLKBUFLR_EN] = QSERDES_V3_COM_BIAS_EN_CLKBUFLR_EN,
139 [QPHY_DP_PHY_STATUS] = QSERDES_V3_DP_PHY_STATUS,
141 [QPHY_TX_TX_POL_INV] = QSERDES_V3_TX_TX_POL_INV,
142 [QPHY_TX_TX_DRV_LVL] = QSERDES_V3_TX_TX_DRV_LVL,
143 [QPHY_TX_TX_EMP_POST1_LVL] = QSERDES_V3_TX_TX_EMP_POST1_LVL,
144 [QPHY_TX_HIGHZ_DRVR_EN] = QSERDES_V3_TX_HIGHZ_DRVR_EN,
145 [QPHY_TX_TRANSCEIVER_BIAS_EN] = QSERDES_V3_TX_TRANSCEIVER_BIAS_EN,
148 static const unsigned int qmp_v45_usb3phy_regs_layout[QPHY_LAYOUT_SIZE] = {
149 [QPHY_SW_RESET] = QPHY_V4_PCS_SW_RESET,
150 [QPHY_START_CTRL] = QPHY_V4_PCS_START_CONTROL,
151 [QPHY_PCS_STATUS] = QPHY_V4_PCS_PCS_STATUS1,
152 [QPHY_PCS_POWER_DOWN_CONTROL] = QPHY_V4_PCS_POWER_DOWN_CONTROL,
155 [QPHY_PCS_AUTONOMOUS_MODE_CTRL] = QPHY_V4_PCS_USB3_AUTONOMOUS_MODE_CTRL,
156 [QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR] = QPHY_V4_PCS_USB3_LFPS_RXTERM_IRQ_CLEAR,
158 [QPHY_COM_RESETSM_CNTRL] = QSERDES_V4_COM_RESETSM_CNTRL,
159 [QPHY_COM_C_READY_STATUS] = QSERDES_V4_COM_C_READY_STATUS,
160 [QPHY_COM_CMN_STATUS] = QSERDES_V4_COM_CMN_STATUS,
161 [QPHY_COM_BIAS_EN_CLKBUFLR_EN] = QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN,
163 [QPHY_DP_PHY_STATUS] = QSERDES_V4_DP_PHY_STATUS,
165 [QPHY_TX_TX_POL_INV] = QSERDES_V4_TX_TX_POL_INV,
166 [QPHY_TX_TX_DRV_LVL] = QSERDES_V4_TX_TX_DRV_LVL,
167 [QPHY_TX_TX_EMP_POST1_LVL] = QSERDES_V4_TX_TX_EMP_POST1_LVL,
168 [QPHY_TX_HIGHZ_DRVR_EN] = QSERDES_V4_TX_HIGHZ_DRVR_EN,
169 [QPHY_TX_TRANSCEIVER_BIAS_EN] = QSERDES_V4_TX_TRANSCEIVER_BIAS_EN,
172 static const unsigned int qmp_v5_5nm_usb3phy_regs_layout[QPHY_LAYOUT_SIZE] = {
173 [QPHY_SW_RESET] = QPHY_V5_PCS_SW_RESET,
174 [QPHY_START_CTRL] = QPHY_V5_PCS_START_CONTROL,
175 [QPHY_PCS_STATUS] = QPHY_V5_PCS_PCS_STATUS1,
176 [QPHY_PCS_POWER_DOWN_CONTROL] = QPHY_V5_PCS_POWER_DOWN_CONTROL,
179 [QPHY_PCS_AUTONOMOUS_MODE_CTRL] = QPHY_V5_PCS_USB3_AUTONOMOUS_MODE_CTRL,
180 [QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR] = QPHY_V5_PCS_USB3_LFPS_RXTERM_IRQ_CLEAR,
182 [QPHY_COM_RESETSM_CNTRL] = QSERDES_V5_COM_RESETSM_CNTRL,
183 [QPHY_COM_C_READY_STATUS] = QSERDES_V5_COM_C_READY_STATUS,
184 [QPHY_COM_CMN_STATUS] = QSERDES_V5_COM_CMN_STATUS,
185 [QPHY_COM_BIAS_EN_CLKBUFLR_EN] = QSERDES_V5_COM_BIAS_EN_CLKBUFLR_EN,
187 [QPHY_DP_PHY_STATUS] = QSERDES_V5_DP_PHY_STATUS,
189 [QPHY_TX_TX_POL_INV] = QSERDES_V5_5NM_TX_TX_POL_INV,
190 [QPHY_TX_TX_DRV_LVL] = QSERDES_V5_5NM_TX_TX_DRV_LVL,
191 [QPHY_TX_TX_EMP_POST1_LVL] = QSERDES_V5_5NM_TX_TX_EMP_POST1_LVL,
192 [QPHY_TX_HIGHZ_DRVR_EN] = QSERDES_V5_5NM_TX_HIGHZ_DRVR_EN,
193 [QPHY_TX_TRANSCEIVER_BIAS_EN] = QSERDES_V5_5NM_TX_TRANSCEIVER_BIAS_EN,
196 static const unsigned int qmp_v6_usb3phy_regs_layout[QPHY_LAYOUT_SIZE] = {
197 [QPHY_SW_RESET] = QPHY_V6_PCS_SW_RESET,
198 [QPHY_START_CTRL] = QPHY_V6_PCS_START_CONTROL,
199 [QPHY_PCS_STATUS] = QPHY_V6_PCS_PCS_STATUS1,
200 [QPHY_PCS_POWER_DOWN_CONTROL] = QPHY_V6_PCS_POWER_DOWN_CONTROL,
203 [QPHY_PCS_AUTONOMOUS_MODE_CTRL] = QPHY_V6_PCS_USB3_AUTONOMOUS_MODE_CTRL,
204 [QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR] = QPHY_V6_PCS_USB3_LFPS_RXTERM_IRQ_CLEAR,
206 [QPHY_COM_RESETSM_CNTRL] = QSERDES_V6_COM_RESETSM_CNTRL,
207 [QPHY_COM_C_READY_STATUS] = QSERDES_V6_COM_C_READY_STATUS,
208 [QPHY_COM_CMN_STATUS] = QSERDES_V6_COM_CMN_STATUS,
209 [QPHY_COM_BIAS_EN_CLKBUFLR_EN] = QSERDES_V6_COM_PLL_BIAS_EN_CLK_BUFLR_EN,
211 [QPHY_DP_PHY_STATUS] = QSERDES_V6_DP_PHY_STATUS,
213 [QPHY_TX_TX_POL_INV] = QSERDES_V6_TX_TX_POL_INV,
214 [QPHY_TX_TX_DRV_LVL] = QSERDES_V6_TX_TX_DRV_LVL,
215 [QPHY_TX_TX_EMP_POST1_LVL] = QSERDES_V6_TX_TX_EMP_POST1_LVL,
216 [QPHY_TX_HIGHZ_DRVR_EN] = QSERDES_V6_TX_HIGHZ_DRVR_EN,
217 [QPHY_TX_TRANSCEIVER_BIAS_EN] = QSERDES_V6_TX_TRANSCEIVER_BIAS_EN,
220 static const struct qmp_phy_init_tbl qmp_v3_usb3_serdes_tbl[] = {
221 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_IVCO, 0x07),
222 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYSCLK_EN_SEL, 0x14),
223 QMP_PHY_INIT_CFG(QSERDES_V3_COM_BIAS_EN_CLKBUFLR_EN, 0x08),
224 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CLK_SELECT, 0x30),
225 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYS_CLK_CTRL, 0x02),
226 QMP_PHY_INIT_CFG(QSERDES_V3_COM_RESETSM_CNTRL2, 0x08),
227 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CMN_CONFIG, 0x16),
228 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SVS_MODE_CLK_SEL, 0x01),
229 QMP_PHY_INIT_CFG(QSERDES_V3_COM_HSCLK_SEL, 0x80),
230 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DEC_START_MODE0, 0x82),
231 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START1_MODE0, 0xab),
232 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START2_MODE0, 0xea),
233 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START3_MODE0, 0x02),
234 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CP_CTRL_MODE0, 0x06),
235 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_RCTRL_MODE0, 0x16),
236 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_CCTRL_MODE0, 0x36),
237 QMP_PHY_INIT_CFG(QSERDES_V3_COM_INTEGLOOP_GAIN1_MODE0, 0x00),
238 QMP_PHY_INIT_CFG(QSERDES_V3_COM_INTEGLOOP_GAIN0_MODE0, 0x3f),
239 QMP_PHY_INIT_CFG(QSERDES_V3_COM_VCO_TUNE2_MODE0, 0x01),
240 QMP_PHY_INIT_CFG(QSERDES_V3_COM_VCO_TUNE1_MODE0, 0xc9),
241 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CORECLK_DIV_MODE0, 0x0a),
242 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP3_MODE0, 0x00),
243 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP2_MODE0, 0x34),
244 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP1_MODE0, 0x15),
245 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_EN, 0x04),
246 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CORE_CLK_EN, 0x00),
247 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_CFG, 0x00),
248 QMP_PHY_INIT_CFG(QSERDES_V3_COM_VCO_TUNE_MAP, 0x00),
249 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYSCLK_BUF_ENABLE, 0x0a),
250 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_EN_CENTER, 0x01),
251 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_PER1, 0x31),
252 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_PER2, 0x01),
253 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_ADJ_PER1, 0x00),
254 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_ADJ_PER2, 0x00),
255 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_STEP_SIZE1, 0x85),
256 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SSC_STEP_SIZE2, 0x07),
259 static const struct qmp_phy_init_tbl qmp_v3_usb3_tx_tbl[] = {
260 QMP_PHY_INIT_CFG(QSERDES_V3_TX_HIGHZ_DRVR_EN, 0x10),
261 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RCV_DETECT_LVL_2, 0x12),
262 QMP_PHY_INIT_CFG(QSERDES_V3_TX_LANE_MODE_1, 0x16),
263 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RES_CODE_LANE_OFFSET_RX, 0x09),
264 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RES_CODE_LANE_OFFSET_TX, 0x06),
267 static const struct qmp_phy_init_tbl qmp_v3_dp_serdes_tbl[] = {
268 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SVS_MODE_CLK_SEL, 0x01),
269 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYSCLK_EN_SEL, 0x37),
270 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYS_CLK_CTRL, 0x02),
271 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CLK_ENABLE1, 0x0e),
272 QMP_PHY_INIT_CFG(QSERDES_V3_COM_SYSCLK_BUF_ENABLE, 0x06),
273 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CLK_SELECT, 0x30),
274 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CMN_CONFIG, 0x02),
275 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START1_MODE0, 0x00),
276 QMP_PHY_INIT_CFG(QSERDES_V3_COM_INTEGLOOP_GAIN0_MODE0, 0x3f),
277 QMP_PHY_INIT_CFG(QSERDES_V3_COM_INTEGLOOP_GAIN1_MODE0, 0x00),
278 QMP_PHY_INIT_CFG(QSERDES_V3_COM_VCO_TUNE_MAP, 0x00),
279 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP3_MODE0, 0x00),
280 QMP_PHY_INIT_CFG(QSERDES_V3_COM_BG_TIMER, 0x0a),
281 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CORECLK_DIV_MODE0, 0x0a),
282 QMP_PHY_INIT_CFG(QSERDES_V3_COM_VCO_TUNE_CTRL, 0x00),
283 QMP_PHY_INIT_CFG(QSERDES_V3_COM_BIAS_EN_CLKBUFLR_EN, 0x3f),
284 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CORE_CLK_EN, 0x1f),
285 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_IVCO, 0x07),
286 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_CCTRL_MODE0, 0x36),
287 QMP_PHY_INIT_CFG(QSERDES_V3_COM_PLL_RCTRL_MODE0, 0x16),
288 QMP_PHY_INIT_CFG(QSERDES_V3_COM_CP_CTRL_MODE0, 0x06),
291 static const struct qmp_phy_init_tbl qmp_v3_dp_serdes_tbl_rbr[] = {
292 QMP_PHY_INIT_CFG(QSERDES_V3_COM_HSCLK_SEL, 0x0c),
293 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DEC_START_MODE0, 0x69),
294 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START2_MODE0, 0x80),
295 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START3_MODE0, 0x07),
296 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP1_MODE0, 0x6f),
297 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP2_MODE0, 0x08),
298 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_EN, 0x00),
301 static const struct qmp_phy_init_tbl qmp_v3_dp_serdes_tbl_hbr[] = {
302 QMP_PHY_INIT_CFG(QSERDES_V3_COM_HSCLK_SEL, 0x04),
303 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DEC_START_MODE0, 0x69),
304 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START2_MODE0, 0x80),
305 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START3_MODE0, 0x07),
306 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP1_MODE0, 0x0f),
307 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP2_MODE0, 0x0e),
308 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_EN, 0x00),
311 static const struct qmp_phy_init_tbl qmp_v3_dp_serdes_tbl_hbr2[] = {
312 QMP_PHY_INIT_CFG(QSERDES_V3_COM_HSCLK_SEL, 0x00),
313 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DEC_START_MODE0, 0x8c),
314 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START2_MODE0, 0x00),
315 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START3_MODE0, 0x0a),
316 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP1_MODE0, 0x1f),
317 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP2_MODE0, 0x1c),
318 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_EN, 0x00),
321 static const struct qmp_phy_init_tbl qmp_v3_dp_serdes_tbl_hbr3[] = {
322 QMP_PHY_INIT_CFG(QSERDES_V3_COM_HSCLK_SEL, 0x03),
323 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DEC_START_MODE0, 0x69),
324 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START2_MODE0, 0x80),
325 QMP_PHY_INIT_CFG(QSERDES_V3_COM_DIV_FRAC_START3_MODE0, 0x07),
326 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP1_MODE0, 0x2f),
327 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP2_MODE0, 0x2a),
328 QMP_PHY_INIT_CFG(QSERDES_V3_COM_LOCK_CMP_EN, 0x08),
331 static const struct qmp_phy_init_tbl qmp_v3_dp_tx_tbl[] = {
332 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TRANSCEIVER_BIAS_EN, 0x1a),
333 QMP_PHY_INIT_CFG(QSERDES_V3_TX_VMODE_CTRL1, 0x40),
334 QMP_PHY_INIT_CFG(QSERDES_V3_TX_PRE_STALL_LDO_BOOST_EN, 0x30),
335 QMP_PHY_INIT_CFG(QSERDES_V3_TX_INTERFACE_SELECT, 0x3d),
336 QMP_PHY_INIT_CFG(QSERDES_V3_TX_CLKBUF_ENABLE, 0x0f),
337 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RESET_TSYNC_EN, 0x03),
338 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TRAN_DRVR_EMP_EN, 0x03),
339 QMP_PHY_INIT_CFG(QSERDES_V3_TX_PARRATE_REC_DETECT_IDLE_EN, 0x00),
340 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TX_INTERFACE_MODE, 0x00),
341 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TX_BAND, 0x4),
342 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TX_POL_INV, 0x0a),
343 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TX_DRV_LVL, 0x38),
344 QMP_PHY_INIT_CFG(QSERDES_V3_TX_TX_EMP_POST1_LVL, 0x20),
345 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RES_CODE_LANE_OFFSET_TX, 0x06),
346 QMP_PHY_INIT_CFG(QSERDES_V3_TX_RES_CODE_LANE_OFFSET_RX, 0x07),
349 static const struct qmp_phy_init_tbl qmp_v3_usb3_rx_tbl[] = {
350 QMP_PHY_INIT_CFG(QSERDES_V3_RX_UCDR_FASTLOCK_FO_GAIN, 0x0b),
351 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
352 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4e),
353 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL4, 0x18),
354 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x77),
355 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_OFFSET_ADAPTOR_CNTRL2, 0x80),
356 QMP_PHY_INIT_CFG(QSERDES_V3_RX_SIGDET_CNTRL, 0x03),
357 QMP_PHY_INIT_CFG(QSERDES_V3_RX_SIGDET_DEGLITCH_CNTRL, 0x16),
358 QMP_PHY_INIT_CFG(QSERDES_V3_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x75),
361 static const struct qmp_phy_init_tbl qmp_v3_usb3_pcs_tbl[] = {
363 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNTRL2, 0x83),
364 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNT_VAL_L, 0x09),
365 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNT_VAL_H_TOL, 0xa2),
366 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_MAN_CODE, 0x40),
367 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNTRL1, 0x02),
369 /* Lock Det settings */
370 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG1, 0xd1),
371 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG2, 0x1f),
372 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG3, 0x47),
373 QMP_PHY_INIT_CFG(QPHY_V3_PCS_POWER_STATE_CONFIG2, 0x1b),
375 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RX_SIGDET_LVL, 0xba),
376 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V0, 0x9f),
377 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V1, 0x9f),
378 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V2, 0xb7),
379 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V3, 0x4e),
380 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V4, 0x65),
381 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_LS, 0x6b),
382 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V0, 0x15),
383 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V0, 0x0d),
384 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V1, 0x15),
385 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V1, 0x0d),
386 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V2, 0x15),
387 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V2, 0x0d),
388 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V3, 0x15),
389 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V3, 0x1d),
390 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V4, 0x15),
391 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V4, 0x0d),
392 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_LS, 0x15),
393 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_LS, 0x0d),
395 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RATE_SLEW_CNTRL, 0x02),
396 QMP_PHY_INIT_CFG(QPHY_V3_PCS_PWRUP_RESET_DLY_TIME_AUXCLK, 0x04),
397 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TSYNC_RSYNC_TIME, 0x44),
398 QMP_PHY_INIT_CFG(QPHY_V3_PCS_PWRUP_RESET_DLY_TIME_AUXCLK, 0x04),
399 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_P1U2_L, 0xe7),
400 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_P1U2_H, 0x03),
401 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_U3_L, 0x40),
402 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_U3_H, 0x00),
403 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RXEQTRAINING_WAIT_TIME, 0x75),
404 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LFPS_TX_ECSTART_EQTLOCK, 0x86),
405 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RXEQTRAINING_RUN_TIME, 0x13),
408 static const struct qmp_phy_init_tbl sm6350_usb3_rx_tbl[] = {
409 QMP_PHY_INIT_CFG(QSERDES_V3_RX_UCDR_FASTLOCK_FO_GAIN, 0x0b),
410 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
411 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4e),
412 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQU_ADAPTOR_CNTRL4, 0x18),
413 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x77),
414 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_OFFSET_ADAPTOR_CNTRL2, 0x80),
415 QMP_PHY_INIT_CFG(QSERDES_V3_RX_SIGDET_CNTRL, 0x03),
416 QMP_PHY_INIT_CFG(QSERDES_V3_RX_SIGDET_DEGLITCH_CNTRL, 0x16),
417 QMP_PHY_INIT_CFG(QSERDES_V3_RX_RX_MODE_00, 0x05),
418 QMP_PHY_INIT_CFG(QSERDES_V3_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x75),
421 static const struct qmp_phy_init_tbl sm6350_usb3_pcs_tbl[] = {
423 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNTRL2, 0x83),
424 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNT_VAL_L, 0x09),
425 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNT_VAL_H_TOL, 0xa2),
426 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_MAN_CODE, 0x40),
427 QMP_PHY_INIT_CFG(QPHY_V3_PCS_FLL_CNTRL1, 0x02),
429 /* Lock Det settings */
430 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG1, 0xd1),
431 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG2, 0x1f),
432 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LOCK_DETECT_CONFIG3, 0x47),
433 QMP_PHY_INIT_CFG(QPHY_V3_PCS_POWER_STATE_CONFIG2, 0x1b),
435 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RX_SIGDET_LVL, 0xcc),
436 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V0, 0x9f),
437 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V1, 0x9f),
438 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V2, 0xb7),
439 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V3, 0x4e),
440 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_V4, 0x65),
441 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXMGN_LS, 0x6b),
442 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V0, 0x15),
443 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V0, 0x0d),
444 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V1, 0x15),
445 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V1, 0x0d),
446 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V2, 0x15),
447 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V2, 0x0d),
448 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V3, 0x15),
449 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V3, 0x1d),
450 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_V4, 0x15),
451 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_V4, 0x0d),
452 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M6DB_LS, 0x15),
453 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TXDEEMPH_M3P5DB_LS, 0x0d),
455 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RATE_SLEW_CNTRL, 0x02),
456 QMP_PHY_INIT_CFG(QPHY_V3_PCS_PWRUP_RESET_DLY_TIME_AUXCLK, 0x04),
457 QMP_PHY_INIT_CFG(QPHY_V3_PCS_TSYNC_RSYNC_TIME, 0x44),
458 QMP_PHY_INIT_CFG(QPHY_V3_PCS_PWRUP_RESET_DLY_TIME_AUXCLK, 0x04),
459 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_P1U2_L, 0xe7),
460 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_P1U2_H, 0x03),
461 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_U3_L, 0x40),
462 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RCVR_DTCT_DLY_U3_H, 0x00),
463 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RXEQTRAINING_WAIT_TIME, 0x75),
464 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LFPS_TX_ECSTART_EQTLOCK, 0x86),
465 QMP_PHY_INIT_CFG(QPHY_V3_PCS_RXEQTRAINING_RUN_TIME, 0x13),
466 QMP_PHY_INIT_CFG(QPHY_V3_PCS_LFPS_DET_HIGH_COUNT_VAL, 0x04),
468 QMP_PHY_INIT_CFG(QPHY_V3_PCS_REFGEN_REQ_CONFIG1, 0x21),
469 QMP_PHY_INIT_CFG(QPHY_V3_PCS_REFGEN_REQ_CONFIG2, 0x60),
472 static const struct qmp_phy_init_tbl sm8150_usb3_serdes_tbl[] = {
473 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_EN_CENTER, 0x01),
474 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_PER1, 0x31),
475 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_PER2, 0x01),
476 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_STEP_SIZE1_MODE0, 0xde),
477 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_STEP_SIZE2_MODE0, 0x07),
478 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_STEP_SIZE1_MODE1, 0xde),
479 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SSC_STEP_SIZE2_MODE1, 0x07),
480 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_BUF_ENABLE, 0x0a),
481 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CMN_IPTRIM, 0x20),
482 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CP_CTRL_MODE0, 0x06),
483 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CP_CTRL_MODE1, 0x06),
484 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_RCTRL_MODE0, 0x16),
485 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_RCTRL_MODE1, 0x16),
486 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_CCTRL_MODE0, 0x36),
487 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_CCTRL_MODE1, 0x36),
488 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_EN_SEL, 0x1a),
489 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP_EN, 0x04),
490 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE0, 0x14),
491 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE0, 0x34),
492 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE1, 0x34),
493 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE1, 0x82),
494 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE0, 0x82),
495 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE1, 0x82),
496 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START1_MODE0, 0xab),
497 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE0, 0xea),
498 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE0, 0x02),
499 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE_MAP, 0x02),
500 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START1_MODE1, 0xab),
501 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE1, 0xea),
502 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE1, 0x02),
503 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE1_MODE0, 0x24),
504 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE1_MODE1, 0x24),
505 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE2_MODE1, 0x02),
506 QMP_PHY_INIT_CFG(QSERDES_V4_COM_HSCLK_SEL, 0x01),
507 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CORECLK_DIV_MODE1, 0x08),
508 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0xca),
509 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x1e),
510 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIN_VCOCAL_CMP_CODE1_MODE1, 0xca),
511 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIN_VCOCAL_CMP_CODE2_MODE1, 0x1e),
512 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIN_VCOCAL_HSCLK_SEL, 0x11),
515 static const struct qmp_phy_init_tbl sm8150_usb3_tx_tbl[] = {
516 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_TX, 0x00),
517 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_RX, 0x00),
518 QMP_PHY_INIT_CFG(QSERDES_V4_TX_LANE_MODE_1, 0xd5),
519 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RCV_DETECT_LVL_2, 0x12),
520 QMP_PHY_INIT_CFG(QSERDES_V4_TX_PI_QEC_CTRL, 0x20),
523 static const struct qmp_phy_init_tbl sm8150_usb3_rx_tbl[] = {
524 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SO_GAIN, 0x05),
525 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_FO_GAIN, 0x2f),
526 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x7f),
527 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_COUNT_LOW, 0xff),
528 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_COUNT_HIGH, 0x0f),
529 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_PI_CONTROLS, 0x99),
530 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_THRESH1, 0x04),
531 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_THRESH2, 0x08),
532 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_GAIN1, 0x05),
533 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_GAIN2, 0x05),
534 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VGA_CAL_CNTRL1, 0x54),
535 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VGA_CAL_CNTRL2, 0x0e),
536 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
537 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4a),
538 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL4, 0x0a),
539 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_IDAC_TSETTLE_LOW, 0xc0),
540 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_IDAC_TSETTLE_HIGH, 0x00),
541 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x77),
542 QMP_PHY_INIT_CFG(QSERDES_V4_RX_SIGDET_CNTRL, 0x04),
543 QMP_PHY_INIT_CFG(QSERDES_V4_RX_SIGDET_DEGLITCH_CNTRL, 0x0e),
544 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_LOW, 0xbf),
545 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH, 0xbf),
546 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH2, 0x3f),
547 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH3, 0x7f),
548 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH4, 0x94),
549 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_LOW, 0xdc),
550 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH, 0xdc),
551 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH2, 0x5c),
552 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH3, 0x0b),
553 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH4, 0xb3),
554 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DFE_EN_TIMER, 0x04),
555 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DFE_CTLE_POST_CAL_OFFSET, 0x38),
556 QMP_PHY_INIT_CFG(QSERDES_V4_RX_AUX_DATA_TCOARSE_TFINE, 0xa0),
557 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DCC_CTRL1, 0x0c),
558 QMP_PHY_INIT_CFG(QSERDES_V4_RX_GM_CAL, 0x1f),
559 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VTH_CODE, 0x10),
562 static const struct qmp_phy_init_tbl sm8150_usb3_pcs_tbl[] = {
563 /* Lock Det settings */
564 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG1, 0xd0),
565 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG2, 0x07),
566 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG6, 0x13),
568 QMP_PHY_INIT_CFG(QPHY_V4_PCS_REFGEN_REQ_CONFIG1, 0x21),
569 QMP_PHY_INIT_CFG(QPHY_V4_PCS_RX_SIGDET_LVL, 0xaa),
570 QMP_PHY_INIT_CFG(QPHY_V4_PCS_CDR_RESET_TIME, 0x0a),
571 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG1, 0x88),
572 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG2, 0x13),
573 QMP_PHY_INIT_CFG(QPHY_V4_PCS_PCS_TX_RX_CONFIG, 0x0c),
574 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG1, 0x4b),
575 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG5, 0x10),
578 static const struct qmp_phy_init_tbl sm8150_usb3_pcs_usb_tbl[] = {
579 QMP_PHY_INIT_CFG(QPHY_V4_PCS_USB3_LFPS_DET_HIGH_COUNT_VAL, 0xf8),
580 QMP_PHY_INIT_CFG(QPHY_V4_PCS_USB3_RXEQTRAINING_DFE_TIME_S2, 0x07),
583 static const struct qmp_phy_init_tbl sm8250_usb3_tx_tbl[] = {
584 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_TX, 0x60),
585 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_RX, 0x60),
586 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_OFFSET_TX, 0x11),
587 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_OFFSET_RX, 0x02),
588 QMP_PHY_INIT_CFG(QSERDES_V4_TX_LANE_MODE_1, 0xd5),
589 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RCV_DETECT_LVL_2, 0x12),
590 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_TX_PI_QEC_CTRL, 0x40, 1),
591 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_TX_PI_QEC_CTRL, 0x54, 2),
594 static const struct qmp_phy_init_tbl sm8250_usb3_rx_tbl[] = {
595 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SO_GAIN, 0x06),
596 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_FO_GAIN, 0x2f),
597 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x7f),
598 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_COUNT_LOW, 0xff),
599 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_FASTLOCK_COUNT_HIGH, 0x0f),
600 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_PI_CONTROLS, 0x99),
601 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_THRESH1, 0x04),
602 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_THRESH2, 0x08),
603 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_GAIN1, 0x05),
604 QMP_PHY_INIT_CFG(QSERDES_V4_RX_UCDR_SB2_GAIN2, 0x05),
605 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VGA_CAL_CNTRL1, 0x54),
606 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VGA_CAL_CNTRL2, 0x0c),
607 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
608 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4a),
609 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQU_ADAPTOR_CNTRL4, 0x0a),
610 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_IDAC_TSETTLE_LOW, 0xc0),
611 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_IDAC_TSETTLE_HIGH, 0x00),
612 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x77),
613 QMP_PHY_INIT_CFG(QSERDES_V4_RX_SIGDET_CNTRL, 0x04),
614 QMP_PHY_INIT_CFG(QSERDES_V4_RX_SIGDET_DEGLITCH_CNTRL, 0x0e),
615 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_RX_RX_MODE_00_LOW, 0xff, 1),
616 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_RX_RX_MODE_00_LOW, 0x7f, 2),
617 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_RX_RX_MODE_00_HIGH, 0x7f, 1),
618 QMP_PHY_INIT_CFG_LANE(QSERDES_V4_RX_RX_MODE_00_HIGH, 0xff, 2),
619 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH2, 0x7f),
620 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH3, 0x7f),
621 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_00_HIGH4, 0x97),
622 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_LOW, 0xdc),
623 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH, 0xdc),
624 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH2, 0x5c),
625 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH3, 0x7b),
626 QMP_PHY_INIT_CFG(QSERDES_V4_RX_RX_MODE_01_HIGH4, 0xb4),
627 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DFE_EN_TIMER, 0x04),
628 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DFE_CTLE_POST_CAL_OFFSET, 0x38),
629 QMP_PHY_INIT_CFG(QSERDES_V4_RX_AUX_DATA_TCOARSE_TFINE, 0xa0),
630 QMP_PHY_INIT_CFG(QSERDES_V4_RX_DCC_CTRL1, 0x0c),
631 QMP_PHY_INIT_CFG(QSERDES_V4_RX_GM_CAL, 0x1f),
632 QMP_PHY_INIT_CFG(QSERDES_V4_RX_VTH_CODE, 0x10),
635 static const struct qmp_phy_init_tbl sm8250_usb3_pcs_tbl[] = {
636 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG1, 0xd0),
637 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG2, 0x07),
638 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG3, 0x20),
639 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG6, 0x13),
640 QMP_PHY_INIT_CFG(QPHY_V4_PCS_REFGEN_REQ_CONFIG1, 0x21),
641 QMP_PHY_INIT_CFG(QPHY_V4_PCS_RX_SIGDET_LVL, 0xa9),
642 QMP_PHY_INIT_CFG(QPHY_V4_PCS_CDR_RESET_TIME, 0x0a),
643 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG1, 0x88),
644 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG2, 0x13),
645 QMP_PHY_INIT_CFG(QPHY_V4_PCS_PCS_TX_RX_CONFIG, 0x0c),
646 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG1, 0x4b),
647 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG5, 0x10),
650 static const struct qmp_phy_init_tbl sm8250_usb3_pcs_usb_tbl[] = {
651 QMP_PHY_INIT_CFG(QPHY_V4_PCS_USB3_LFPS_DET_HIGH_COUNT_VAL, 0xf8),
652 QMP_PHY_INIT_CFG(QPHY_V4_PCS_USB3_RXEQTRAINING_DFE_TIME_S2, 0x07),
655 static const struct qmp_phy_init_tbl sm8350_usb3_tx_tbl[] = {
656 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_TX, 0x00),
657 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_RX, 0x00),
658 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_OFFSET_TX, 0x16),
659 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_OFFSET_RX, 0x0e),
660 QMP_PHY_INIT_CFG(QSERDES_V5_TX_LANE_MODE_1, 0x35),
661 QMP_PHY_INIT_CFG(QSERDES_V5_TX_LANE_MODE_3, 0x3f),
662 QMP_PHY_INIT_CFG(QSERDES_V5_TX_LANE_MODE_4, 0x7f),
663 QMP_PHY_INIT_CFG(QSERDES_V5_TX_LANE_MODE_5, 0x3f),
664 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RCV_DETECT_LVL_2, 0x12),
665 QMP_PHY_INIT_CFG(QSERDES_V5_TX_PI_QEC_CTRL, 0x21),
668 static const struct qmp_phy_init_tbl sm8350_usb3_rx_tbl[] = {
669 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_FO_GAIN, 0x0a),
670 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SO_GAIN, 0x05),
671 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_FASTLOCK_FO_GAIN, 0x2f),
672 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x7f),
673 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_FASTLOCK_COUNT_LOW, 0xff),
674 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_FASTLOCK_COUNT_HIGH, 0x0f),
675 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_PI_CONTROLS, 0x99),
676 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SB2_THRESH1, 0x08),
677 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SB2_THRESH2, 0x08),
678 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SB2_GAIN1, 0x00),
679 QMP_PHY_INIT_CFG(QSERDES_V5_RX_UCDR_SB2_GAIN2, 0x04),
680 QMP_PHY_INIT_CFG(QSERDES_V5_RX_VGA_CAL_CNTRL1, 0x54),
681 QMP_PHY_INIT_CFG(QSERDES_V5_RX_VGA_CAL_CNTRL2, 0x0f),
682 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
683 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4a),
684 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_EQU_ADAPTOR_CNTRL4, 0x0a),
685 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_IDAC_TSETTLE_LOW, 0xc0),
686 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_IDAC_TSETTLE_HIGH, 0x00),
687 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x47),
688 QMP_PHY_INIT_CFG(QSERDES_V5_RX_SIGDET_CNTRL, 0x04),
689 QMP_PHY_INIT_CFG(QSERDES_V5_RX_SIGDET_DEGLITCH_CNTRL, 0x0e),
690 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_00_LOW, 0xbb),
691 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_00_HIGH, 0x7b),
692 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_00_HIGH2, 0xbb),
693 QMP_PHY_INIT_CFG_LANE(QSERDES_V5_RX_RX_MODE_00_HIGH3, 0x3d, 1),
694 QMP_PHY_INIT_CFG_LANE(QSERDES_V5_RX_RX_MODE_00_HIGH3, 0x3c, 2),
695 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_00_HIGH4, 0xdb),
696 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_01_LOW, 0x64),
697 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_01_HIGH, 0x24),
698 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_01_HIGH2, 0xd2),
699 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_01_HIGH3, 0x13),
700 QMP_PHY_INIT_CFG(QSERDES_V5_RX_RX_MODE_01_HIGH4, 0xa9),
701 QMP_PHY_INIT_CFG(QSERDES_V5_RX_DFE_EN_TIMER, 0x04),
702 QMP_PHY_INIT_CFG(QSERDES_V5_RX_DFE_CTLE_POST_CAL_OFFSET, 0x38),
703 QMP_PHY_INIT_CFG(QSERDES_V5_RX_AUX_DATA_TCOARSE_TFINE, 0xa0),
704 QMP_PHY_INIT_CFG(QSERDES_V5_RX_DCC_CTRL1, 0x0c),
705 QMP_PHY_INIT_CFG(QSERDES_V5_RX_GM_CAL, 0x00),
706 QMP_PHY_INIT_CFG(QSERDES_V5_RX_VTH_CODE, 0x10),
709 static const struct qmp_phy_init_tbl sm8350_usb3_pcs_tbl[] = {
710 QMP_PHY_INIT_CFG(QPHY_V4_PCS_RCVR_DTCT_DLY_P1U2_L, 0xe7),
711 QMP_PHY_INIT_CFG(QPHY_V4_PCS_RCVR_DTCT_DLY_P1U2_H, 0x03),
712 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG1, 0xd0),
713 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG2, 0x07),
714 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG3, 0x20),
715 QMP_PHY_INIT_CFG(QPHY_V4_PCS_LOCK_DETECT_CONFIG6, 0x13),
716 QMP_PHY_INIT_CFG(QPHY_V4_PCS_REFGEN_REQ_CONFIG1, 0x21),
717 QMP_PHY_INIT_CFG(QPHY_V4_PCS_RX_SIGDET_LVL, 0xaa),
718 QMP_PHY_INIT_CFG(QPHY_V4_PCS_CDR_RESET_TIME, 0x0a),
719 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG1, 0x88),
720 QMP_PHY_INIT_CFG(QPHY_V4_PCS_ALIGN_DETECT_CONFIG2, 0x13),
721 QMP_PHY_INIT_CFG(QPHY_V4_PCS_PCS_TX_RX_CONFIG, 0x0c),
722 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG1, 0x4b),
723 QMP_PHY_INIT_CFG(QPHY_V4_PCS_EQ_CONFIG5, 0x10),
726 static const struct qmp_phy_init_tbl sm8350_usb3_pcs_usb_tbl[] = {
727 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_RCVR_DTCT_DLY_U3_L, 0x40),
728 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_RCVR_DTCT_DLY_U3_H, 0x00),
729 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_LFPS_DET_HIGH_COUNT_VAL, 0xf8),
730 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_RXEQTRAINING_DFE_TIME_S2, 0x07),
733 static const struct qmp_phy_init_tbl sm8550_usb3_serdes_tbl[] = {
734 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_STEP_SIZE1_MODE1, 0xc0),
735 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_STEP_SIZE2_MODE1, 0x01),
736 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CP_CTRL_MODE1, 0x02),
737 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_RCTRL_MODE1, 0x16),
738 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_CCTRL_MODE1, 0x36),
739 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CORECLK_DIV_MODE1, 0x04),
740 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE1, 0x16),
741 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE1, 0x41),
742 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE1, 0x41),
743 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MSB_MODE1, 0x00),
744 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START1_MODE1, 0x55),
745 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE1, 0x75),
746 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE1, 0x01),
747 QMP_PHY_INIT_CFG(QSERDES_V6_COM_HSCLK_SEL_1, 0x01),
748 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE1_MODE1, 0x25),
749 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE2_MODE1, 0x02),
750 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE1, 0x5c),
751 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE1, 0x0f),
752 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0x5c),
753 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x0f),
754 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_STEP_SIZE1_MODE0, 0xc0),
755 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_STEP_SIZE2_MODE0, 0x01),
756 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CP_CTRL_MODE0, 0x02),
757 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_RCTRL_MODE0, 0x16),
758 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_CCTRL_MODE0, 0x36),
759 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE0, 0x08),
760 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE0, 0x1a),
761 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE0, 0x41),
762 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MSB_MODE0, 0x00),
763 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START1_MODE0, 0x55),
764 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE0, 0x75),
765 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE0, 0x01),
766 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE1_MODE0, 0x25),
767 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE2_MODE0, 0x02),
768 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BG_TIMER, 0x0a),
769 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_EN_CENTER, 0x01),
770 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_PER1, 0x62),
771 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SSC_PER2, 0x02),
772 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SYSCLK_BUF_ENABLE, 0x0c),
773 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SYSCLK_EN_SEL, 0x1a),
774 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP_CFG, 0x14),
775 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE_MAP, 0x04),
776 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CORE_CLK_EN, 0x20),
777 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CMN_CONFIG_1, 0x16),
778 QMP_PHY_INIT_CFG(QSERDES_V6_COM_AUTO_GAIN_ADJ_CTRL_1, 0xb6),
779 QMP_PHY_INIT_CFG(QSERDES_V6_COM_AUTO_GAIN_ADJ_CTRL_2, 0x4b),
780 QMP_PHY_INIT_CFG(QSERDES_V6_COM_AUTO_GAIN_ADJ_CTRL_3, 0x37),
781 QMP_PHY_INIT_CFG(QSERDES_V6_COM_ADDITIONAL_MISC, 0x0c),
784 static const struct qmp_phy_init_tbl sm8550_usb3_tx_tbl[] = {
785 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_TX, 0x00),
786 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_RX, 0x00),
787 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_OFFSET_TX, 0x1f),
788 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_OFFSET_RX, 0x09),
789 QMP_PHY_INIT_CFG(QSERDES_V6_TX_LANE_MODE_1, 0xf5),
790 QMP_PHY_INIT_CFG(QSERDES_V6_TX_LANE_MODE_3, 0x3f),
791 QMP_PHY_INIT_CFG(QSERDES_V6_TX_LANE_MODE_4, 0x3f),
792 QMP_PHY_INIT_CFG(QSERDES_V6_TX_LANE_MODE_5, 0x5f),
793 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RCV_DETECT_LVL_2, 0x12),
794 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_TX_PI_QEC_CTRL, 0x21, 1),
795 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_TX_PI_QEC_CTRL, 0x05, 2),
798 static const struct qmp_phy_init_tbl sm8550_usb3_rx_tbl[] = {
799 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_FO_GAIN, 0x0a),
800 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SO_GAIN, 0x06),
801 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_FASTLOCK_FO_GAIN, 0x2f),
802 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SO_SATURATION_AND_ENABLE, 0x7f),
803 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_FASTLOCK_COUNT_LOW, 0xff),
804 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_FASTLOCK_COUNT_HIGH, 0x0f),
805 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_PI_CONTROLS, 0x99),
806 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SB2_THRESH1, 0x08),
807 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SB2_THRESH2, 0x08),
808 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SB2_GAIN1, 0x00),
809 QMP_PHY_INIT_CFG(QSERDES_V6_RX_UCDR_SB2_GAIN2, 0x0a),
810 QMP_PHY_INIT_CFG(QSERDES_V6_RX_AUX_DATA_TCOARSE_TFINE, 0xa0),
811 QMP_PHY_INIT_CFG(QSERDES_V6_RX_VGA_CAL_CNTRL1, 0x54),
812 QMP_PHY_INIT_CFG(QSERDES_V6_RX_VGA_CAL_CNTRL2, 0x0f),
813 QMP_PHY_INIT_CFG(QSERDES_V6_RX_GM_CAL, 0x13),
814 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_EQU_ADAPTOR_CNTRL2, 0x0f),
815 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_EQU_ADAPTOR_CNTRL3, 0x4a),
816 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_EQU_ADAPTOR_CNTRL4, 0x0a),
817 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_IDAC_TSETTLE_LOW, 0x07),
818 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_IDAC_TSETTLE_HIGH, 0x00),
819 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_EQ_OFFSET_ADAPTOR_CNTRL1, 0x47),
820 QMP_PHY_INIT_CFG(QSERDES_V6_RX_SIGDET_CNTRL, 0x04),
821 QMP_PHY_INIT_CFG(QSERDES_V6_RX_SIGDET_DEGLITCH_CNTRL, 0x0e),
822 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_MODE_01_LOW, 0xdc),
823 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_MODE_01_HIGH, 0x5c),
824 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_MODE_01_HIGH2, 0x9c),
825 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_MODE_01_HIGH3, 0x1d),
826 QMP_PHY_INIT_CFG(QSERDES_V6_RX_RX_MODE_01_HIGH4, 0x09),
827 QMP_PHY_INIT_CFG(QSERDES_V6_RX_DFE_EN_TIMER, 0x04),
828 QMP_PHY_INIT_CFG(QSERDES_V6_RX_DFE_CTLE_POST_CAL_OFFSET, 0x38),
829 QMP_PHY_INIT_CFG(QSERDES_V6_RX_DCC_CTRL1, 0x0c),
830 QMP_PHY_INIT_CFG(QSERDES_V6_RX_VTH_CODE, 0x10),
831 QMP_PHY_INIT_CFG(QSERDES_V6_RX_SIGDET_CAL_CTRL1, 0x14),
832 QMP_PHY_INIT_CFG(QSERDES_V6_RX_SIGDET_CAL_TRIM, 0x08),
834 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_LOW, 0x3f, 1),
835 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH, 0xbf, 1),
836 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH2, 0xff, 1),
837 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH3, 0xdf, 1),
838 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH4, 0xed, 1),
840 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_LOW, 0xbf, 2),
841 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH, 0xbf, 2),
842 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH2, 0xbf, 2),
843 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH3, 0xdf, 2),
844 QMP_PHY_INIT_CFG_LANE(QSERDES_V6_RX_RX_MODE_00_HIGH4, 0xfd, 2),
847 static const struct qmp_phy_init_tbl sm8550_usb3_pcs_tbl[] = {
848 QMP_PHY_INIT_CFG(QPHY_V6_PCS_LOCK_DETECT_CONFIG1, 0xc4),
849 QMP_PHY_INIT_CFG(QPHY_V6_PCS_LOCK_DETECT_CONFIG2, 0x89),
850 QMP_PHY_INIT_CFG(QPHY_V6_PCS_LOCK_DETECT_CONFIG3, 0x20),
851 QMP_PHY_INIT_CFG(QPHY_V6_PCS_LOCK_DETECT_CONFIG6, 0x13),
852 QMP_PHY_INIT_CFG(QPHY_V6_PCS_REFGEN_REQ_CONFIG1, 0x21),
853 QMP_PHY_INIT_CFG(QPHY_V6_PCS_RX_SIGDET_LVL, 0x99),
854 QMP_PHY_INIT_CFG(QPHY_V6_PCS_RCVR_DTCT_DLY_P1U2_L, 0xe7),
855 QMP_PHY_INIT_CFG(QPHY_V6_PCS_RCVR_DTCT_DLY_P1U2_H, 0x03),
856 QMP_PHY_INIT_CFG(QPHY_V6_PCS_CDR_RESET_TIME, 0x0a),
857 QMP_PHY_INIT_CFG(QPHY_V6_PCS_ALIGN_DETECT_CONFIG1, 0x88),
858 QMP_PHY_INIT_CFG(QPHY_V6_PCS_ALIGN_DETECT_CONFIG2, 0x13),
859 QMP_PHY_INIT_CFG(QPHY_V6_PCS_PCS_TX_RX_CONFIG, 0x0c),
860 QMP_PHY_INIT_CFG(QPHY_V6_PCS_EQ_CONFIG1, 0x4b),
861 QMP_PHY_INIT_CFG(QPHY_V6_PCS_EQ_CONFIG5, 0x10),
864 static const struct qmp_phy_init_tbl sm8550_usb3_pcs_usb_tbl[] = {
865 QMP_PHY_INIT_CFG(QPHY_V6_PCS_USB3_LFPS_DET_HIGH_COUNT_VAL, 0xf8),
866 QMP_PHY_INIT_CFG(QPHY_V6_PCS_USB3_RXEQTRAINING_DFE_TIME_S2, 0x07),
867 QMP_PHY_INIT_CFG(QPHY_V6_PCS_USB3_RCVR_DTCT_DLY_U3_L, 0x40),
868 QMP_PHY_INIT_CFG(QPHY_V6_PCS_USB3_RCVR_DTCT_DLY_U3_H, 0x00),
869 QMP_PHY_INIT_CFG(QPHY_V6_PCS_USB3_POWER_STATE_CONFIG1, 0x68),
872 static const struct qmp_phy_init_tbl qmp_v4_dp_serdes_tbl[] = {
873 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SVS_MODE_CLK_SEL, 0x05),
874 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_EN_SEL, 0x3b),
875 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYS_CLK_CTRL, 0x02),
876 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CLK_ENABLE1, 0x0c),
877 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_BUF_ENABLE, 0x06),
878 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CLK_SELECT, 0x30),
879 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_IVCO, 0x0f),
880 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_CCTRL_MODE0, 0x36),
881 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_RCTRL_MODE0, 0x16),
882 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CP_CTRL_MODE0, 0x06),
883 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CMN_CONFIG, 0x02),
884 QMP_PHY_INIT_CFG(QSERDES_V4_COM_INTEGLOOP_GAIN0_MODE0, 0x3f),
885 QMP_PHY_INIT_CFG(QSERDES_V4_COM_INTEGLOOP_GAIN1_MODE0, 0x00),
886 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE_MAP, 0x00),
887 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START1_MODE0, 0x00),
888 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BG_TIMER, 0x0a),
889 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CORECLK_DIV_MODE0, 0x0a),
890 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE_CTRL, 0x00),
891 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN, 0x17),
892 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CORE_CLK_EN, 0x1f),
895 static const struct qmp_phy_init_tbl qmp_v4_dp_serdes_tbl_rbr[] = {
896 QMP_PHY_INIT_CFG(QSERDES_V4_COM_HSCLK_SEL, 0x05),
897 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE0, 0x69),
898 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE0, 0x80),
899 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE0, 0x07),
900 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE0, 0x6f),
901 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE0, 0x08),
902 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP_EN, 0x04),
905 static const struct qmp_phy_init_tbl qmp_v4_dp_serdes_tbl_hbr[] = {
906 QMP_PHY_INIT_CFG(QSERDES_V4_COM_HSCLK_SEL, 0x03),
907 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE0, 0x69),
908 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE0, 0x80),
909 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE0, 0x07),
910 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE0, 0x0f),
911 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE0, 0x0e),
912 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP_EN, 0x08),
915 static const struct qmp_phy_init_tbl qmp_v4_dp_serdes_tbl_hbr2[] = {
916 QMP_PHY_INIT_CFG(QSERDES_V4_COM_HSCLK_SEL, 0x01),
917 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE0, 0x8c),
918 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE0, 0x00),
919 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE0, 0x0a),
920 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE0, 0x1f),
921 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE0, 0x1c),
922 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP_EN, 0x08),
925 static const struct qmp_phy_init_tbl qmp_v4_dp_serdes_tbl_hbr3[] = {
926 QMP_PHY_INIT_CFG(QSERDES_V4_COM_HSCLK_SEL, 0x00),
927 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DEC_START_MODE0, 0x69),
928 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START2_MODE0, 0x80),
929 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START3_MODE0, 0x07),
930 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP1_MODE0, 0x2f),
931 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP2_MODE0, 0x2a),
932 QMP_PHY_INIT_CFG(QSERDES_V4_COM_LOCK_CMP_EN, 0x08),
935 static const struct qmp_phy_init_tbl qmp_v4_dp_tx_tbl[] = {
936 QMP_PHY_INIT_CFG(QSERDES_V4_TX_VMODE_CTRL1, 0x40),
937 QMP_PHY_INIT_CFG(QSERDES_V4_TX_PRE_STALL_LDO_BOOST_EN, 0x30),
938 QMP_PHY_INIT_CFG(QSERDES_V4_TX_INTERFACE_SELECT, 0x3b),
939 QMP_PHY_INIT_CFG(QSERDES_V4_TX_CLKBUF_ENABLE, 0x0f),
940 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RESET_TSYNC_EN, 0x03),
941 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TRAN_DRVR_EMP_EN, 0x0f),
942 QMP_PHY_INIT_CFG(QSERDES_V4_TX_PARRATE_REC_DETECT_IDLE_EN, 0x00),
943 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TX_INTERFACE_MODE, 0x00),
944 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_OFFSET_TX, 0x11),
945 QMP_PHY_INIT_CFG(QSERDES_V4_TX_RES_CODE_LANE_OFFSET_RX, 0x11),
946 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TX_BAND, 0x4),
947 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TX_POL_INV, 0x0a),
948 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TX_DRV_LVL, 0x2a),
949 QMP_PHY_INIT_CFG(QSERDES_V4_TX_TX_EMP_POST1_LVL, 0x20),
952 static const struct qmp_phy_init_tbl qmp_v5_dp_serdes_tbl[] = {
953 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SVS_MODE_CLK_SEL, 0x05),
954 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_EN_SEL, 0x3b),
955 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYS_CLK_CTRL, 0x02),
956 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CLK_ENABLE1, 0x0c),
957 QMP_PHY_INIT_CFG(QSERDES_V4_COM_SYSCLK_BUF_ENABLE, 0x06),
958 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CLK_SELECT, 0x30),
959 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_IVCO, 0x0f),
960 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_CCTRL_MODE0, 0x36),
961 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_CCTRL_MODE1, 0x36),
962 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_RCTRL_MODE0, 0x16),
963 QMP_PHY_INIT_CFG(QSERDES_V4_COM_PLL_RCTRL_MODE1, 0x16),
964 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CP_CTRL_MODE0, 0x06),
965 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CP_CTRL_MODE1, 0x06),
966 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CMN_CONFIG, 0x02),
967 QMP_PHY_INIT_CFG(QSERDES_V4_COM_INTEGLOOP_GAIN0_MODE0, 0x3f),
968 QMP_PHY_INIT_CFG(QSERDES_V4_COM_INTEGLOOP_GAIN1_MODE0, 0x00),
969 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE_MAP, 0x02),
970 QMP_PHY_INIT_CFG(QSERDES_V4_COM_DIV_FRAC_START1_MODE0, 0x00),
971 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BG_TIMER, 0x0a),
972 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CORECLK_DIV_MODE0, 0x0a),
973 QMP_PHY_INIT_CFG(QSERDES_V4_COM_VCO_TUNE_CTRL, 0x00),
974 QMP_PHY_INIT_CFG(QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN, 0x17),
975 QMP_PHY_INIT_CFG(QSERDES_V4_COM_CORE_CLK_EN, 0x1f),
978 static const struct qmp_phy_init_tbl qmp_v5_dp_tx_tbl[] = {
979 QMP_PHY_INIT_CFG(QSERDES_V5_TX_VMODE_CTRL1, 0x40),
980 QMP_PHY_INIT_CFG(QSERDES_V5_TX_PRE_STALL_LDO_BOOST_EN, 0x30),
981 QMP_PHY_INIT_CFG(QSERDES_V5_TX_INTERFACE_SELECT, 0x3b),
982 QMP_PHY_INIT_CFG(QSERDES_V5_TX_CLKBUF_ENABLE, 0x0f),
983 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RESET_TSYNC_EN, 0x03),
984 QMP_PHY_INIT_CFG(QSERDES_V5_TX_TRAN_DRVR_EMP_EN, 0x0f),
985 QMP_PHY_INIT_CFG(QSERDES_V5_TX_PARRATE_REC_DETECT_IDLE_EN, 0x00),
986 QMP_PHY_INIT_CFG(QSERDES_V5_TX_TX_INTERFACE_MODE, 0x00),
987 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_OFFSET_TX, 0x11),
988 QMP_PHY_INIT_CFG(QSERDES_V5_TX_RES_CODE_LANE_OFFSET_RX, 0x11),
989 QMP_PHY_INIT_CFG(QSERDES_V5_TX_TX_BAND, 0x04),
992 static const struct qmp_phy_init_tbl qmp_v5_5nm_dp_tx_tbl[] = {
993 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_LANE_MODE_3, 0x51),
994 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_TRANSCEIVER_BIAS_EN, 0x1a),
995 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_VMODE_CTRL1, 0x40),
996 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_PRE_STALL_LDO_BOOST_EN, 0x0),
997 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_INTERFACE_SELECT, 0xff),
998 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_CLKBUF_ENABLE, 0x0f),
999 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_RESET_TSYNC_EN, 0x03),
1000 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_TRAN_DRVR_EMP_EN, 0xf),
1001 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_PARRATE_REC_DETECT_IDLE_EN, 0x00),
1002 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_RES_CODE_LANE_OFFSET_TX, 0x11),
1003 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_RES_CODE_LANE_OFFSET_RX, 0x11),
1004 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_TX_BAND, 0x01),
1007 static const struct qmp_phy_init_tbl qmp_v6_dp_serdes_tbl[] = {
1008 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SVS_MODE_CLK_SEL, 0x15),
1009 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SYSCLK_EN_SEL, 0x3b),
1010 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SYS_CLK_CTRL, 0x02),
1011 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CLK_ENABLE1, 0x0c),
1012 QMP_PHY_INIT_CFG(QSERDES_V6_COM_SYSCLK_BUF_ENABLE, 0x06),
1013 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CLK_SELECT, 0x30),
1014 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_IVCO, 0x0f),
1015 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_CCTRL_MODE0, 0x36),
1016 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_RCTRL_MODE0, 0x16),
1017 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CP_CTRL_MODE0, 0x06),
1018 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START1_MODE0, 0x00),
1019 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CMN_CONFIG_1, 0x12),
1020 QMP_PHY_INIT_CFG(QSERDES_V6_COM_INTEGLOOP_GAIN0_MODE0, 0x3f),
1021 QMP_PHY_INIT_CFG(QSERDES_V6_COM_INTEGLOOP_GAIN1_MODE0, 0x00),
1022 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE_MAP, 0x00),
1023 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BG_TIMER, 0x0a),
1024 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_CORE_CLK_DIV_MODE0, 0x14),
1025 QMP_PHY_INIT_CFG(QSERDES_V6_COM_VCO_TUNE_CTRL, 0x00),
1026 QMP_PHY_INIT_CFG(QSERDES_V6_COM_PLL_BIAS_EN_CLK_BUFLR_EN, 0x17),
1027 QMP_PHY_INIT_CFG(QSERDES_V6_COM_CORE_CLK_EN, 0x0f),
1030 static const struct qmp_phy_init_tbl qmp_v6_dp_tx_tbl[] = {
1031 QMP_PHY_INIT_CFG(QSERDES_V6_TX_VMODE_CTRL1, 0x40),
1032 QMP_PHY_INIT_CFG(QSERDES_V6_TX_PRE_STALL_LDO_BOOST_EN, 0x30),
1033 QMP_PHY_INIT_CFG(QSERDES_V6_TX_INTERFACE_SELECT, 0x3b),
1034 QMP_PHY_INIT_CFG(QSERDES_V6_TX_CLKBUF_ENABLE, 0x0f),
1035 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RESET_TSYNC_EN, 0x03),
1036 QMP_PHY_INIT_CFG(QSERDES_V6_TX_TRAN_DRVR_EMP_EN, 0x0f),
1037 QMP_PHY_INIT_CFG(QSERDES_V6_TX_PARRATE_REC_DETECT_IDLE_EN, 0x00),
1038 QMP_PHY_INIT_CFG(QSERDES_V6_TX_TX_INTERFACE_MODE, 0x00),
1039 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_OFFSET_TX, 0x0c),
1040 QMP_PHY_INIT_CFG(QSERDES_V6_TX_RES_CODE_LANE_OFFSET_RX, 0x0c),
1041 QMP_PHY_INIT_CFG(QSERDES_V6_TX_TX_BAND, 0x4),
1044 static const struct qmp_phy_init_tbl qmp_v6_dp_serdes_tbl_rbr[] = {
1045 QMP_PHY_INIT_CFG(QSERDES_V6_COM_HSCLK_SEL_1, 0x05),
1046 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE0, 0x34),
1047 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE0, 0xc0),
1048 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE0, 0x0b),
1049 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE0, 0x37),
1050 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE0, 0x04),
1051 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP_EN, 0x04),
1052 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0x71),
1053 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x0c),
1056 static const struct qmp_phy_init_tbl qmp_v6_dp_serdes_tbl_hbr[] = {
1057 QMP_PHY_INIT_CFG(QSERDES_V6_COM_HSCLK_SEL_1, 0x03),
1058 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE0, 0x34),
1059 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE0, 0xc0),
1060 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE0, 0x0b),
1061 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE0, 0x07),
1062 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE0, 0x07),
1063 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP_EN, 0x08),
1064 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0x71),
1065 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x0c),
1068 static const struct qmp_phy_init_tbl qmp_v6_dp_serdes_tbl_hbr2[] = {
1069 QMP_PHY_INIT_CFG(QSERDES_V6_COM_HSCLK_SEL_1, 0x01),
1070 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE0, 0x46),
1071 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE0, 0x00),
1072 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE0, 0x05),
1073 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE0, 0x0f),
1074 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE0, 0x0e),
1075 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP_EN, 0x08),
1076 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0x97),
1077 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x10),
1080 static const struct qmp_phy_init_tbl qmp_v6_dp_serdes_tbl_hbr3[] = {
1081 QMP_PHY_INIT_CFG(QSERDES_V6_COM_HSCLK_SEL_1, 0x00),
1082 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DEC_START_MODE0, 0x34),
1083 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START2_MODE0, 0xc0),
1084 QMP_PHY_INIT_CFG(QSERDES_V6_COM_DIV_FRAC_START3_MODE0, 0x0b),
1085 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP1_MODE0, 0x17),
1086 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP2_MODE0, 0x15),
1087 QMP_PHY_INIT_CFG(QSERDES_V6_COM_LOCK_CMP_EN, 0x08),
1088 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0, 0x71),
1089 QMP_PHY_INIT_CFG(QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0, 0x0c),
1092 static const struct qmp_phy_init_tbl sc8280xp_usb43dp_serdes_tbl[] = {
1093 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_EN_CENTER, 0x01),
1094 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_PER1, 0x31),
1095 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_PER2, 0x01),
1096 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_STEP_SIZE1_MODE0, 0xfd),
1097 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_STEP_SIZE2_MODE0, 0x0d),
1098 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_STEP_SIZE1_MODE1, 0xfd),
1099 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SSC_STEP_SIZE2_MODE1, 0x0d),
1100 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SYSCLK_BUF_ENABLE, 0x0a),
1101 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CP_CTRL_MODE0, 0x02),
1102 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CP_CTRL_MODE1, 0x02),
1103 QMP_PHY_INIT_CFG(QSERDES_V5_COM_PLL_RCTRL_MODE0, 0x16),
1104 QMP_PHY_INIT_CFG(QSERDES_V5_COM_PLL_RCTRL_MODE1, 0x16),
1105 QMP_PHY_INIT_CFG(QSERDES_V5_COM_PLL_CCTRL_MODE0, 0x36),
1106 QMP_PHY_INIT_CFG(QSERDES_V5_COM_PLL_CCTRL_MODE1, 0x36),
1107 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SYSCLK_EN_SEL, 0x1a),
1108 QMP_PHY_INIT_CFG(QSERDES_V5_COM_LOCK_CMP_EN, 0x04),
1109 QMP_PHY_INIT_CFG(QSERDES_V5_COM_LOCK_CMP1_MODE0, 0x14),
1110 QMP_PHY_INIT_CFG(QSERDES_V5_COM_LOCK_CMP2_MODE0, 0x34),
1111 QMP_PHY_INIT_CFG(QSERDES_V5_COM_LOCK_CMP1_MODE1, 0x34),
1112 QMP_PHY_INIT_CFG(QSERDES_V5_COM_LOCK_CMP2_MODE1, 0x82),
1113 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DEC_START_MODE0, 0x04),
1114 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DEC_START_MSB_MODE0, 0x01),
1115 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DEC_START_MODE1, 0x04),
1116 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DEC_START_MSB_MODE1, 0x01),
1117 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START1_MODE0, 0x55),
1118 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START2_MODE0, 0xd5),
1119 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START3_MODE0, 0x05),
1120 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START1_MODE1, 0x55),
1121 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START2_MODE1, 0xd5),
1122 QMP_PHY_INIT_CFG(QSERDES_V5_COM_DIV_FRAC_START3_MODE1, 0x05),
1123 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE_MAP, 0x02),
1124 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE1_MODE0, 0xd4),
1125 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE2_MODE0, 0x00),
1126 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE1_MODE1, 0xd4),
1127 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE2_MODE1, 0x00),
1128 QMP_PHY_INIT_CFG(QSERDES_V5_COM_HSCLK_SEL, 0x13),
1129 QMP_PHY_INIT_CFG(QSERDES_V5_COM_HSCLK_HS_SWITCH_SEL, 0x00),
1130 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CORECLK_DIV_MODE0, 0x0a),
1131 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CORECLK_DIV_MODE1, 0x04),
1132 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CORE_CLK_EN, 0x60),
1133 QMP_PHY_INIT_CFG(QSERDES_V5_COM_CMN_CONFIG, 0x76),
1134 QMP_PHY_INIT_CFG(QSERDES_V5_COM_PLL_IVCO, 0xff),
1135 QMP_PHY_INIT_CFG(QSERDES_V5_COM_INTEGLOOP_GAIN0_MODE0, 0x20),
1136 QMP_PHY_INIT_CFG(QSERDES_V5_COM_INTEGLOOP_GAIN0_MODE1, 0x20),
1137 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE_INITVAL2, 0x00),
1138 QMP_PHY_INIT_CFG(QSERDES_V5_COM_VCO_TUNE_MAXVAL2, 0x01),
1139 QMP_PHY_INIT_CFG(QSERDES_V5_COM_SVS_MODE_CLK_SEL, 0x0a),
1142 static const struct qmp_phy_init_tbl sc8280xp_usb43dp_tx_tbl[] = {
1143 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_LANE_MODE_1, 0x05),
1144 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_LANE_MODE_2, 0xc2),
1145 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_LANE_MODE_3, 0x10),
1146 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_RES_CODE_LANE_OFFSET_TX, 0x1f),
1147 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_TX_RES_CODE_LANE_OFFSET_RX, 0x0a),
1150 static const struct qmp_phy_init_tbl sc8280xp_usb43dp_rx_tbl[] = {
1151 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_SIGDET_CNTRL, 0x04),
1152 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_SIGDET_DEGLITCH_CNTRL, 0x0e),
1153 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_SIGDET_ENABLES, 0x00),
1154 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B0, 0xd2),
1155 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B1, 0xd2),
1156 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B2, 0xdb),
1157 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B3, 0x21),
1158 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B4, 0x3f),
1159 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B5, 0x80),
1160 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B6, 0x45),
1161 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE_0_1_B7, 0x00),
1162 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B0, 0x6b),
1163 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B1, 0x63),
1164 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B2, 0xb6),
1165 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B3, 0x23),
1166 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B4, 0x35),
1167 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B5, 0x30),
1168 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B6, 0x8e),
1169 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_MODE_RATE2_B7, 0x00),
1170 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_IVCM_CAL_CODE_OVERRIDE, 0x00),
1171 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_IVCM_CAL_CTRL2, 0x80),
1172 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_SUMMER_CAL_SPD_MODE, 0x1b),
1173 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_DFE_CTLE_POST_CAL_OFFSET, 0x38),
1174 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_UCDR_PI_CONTROLS, 0x15),
1175 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_UCDR_SB2_GAIN2_RATE2, 0x0a),
1176 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_RX_IVCM_POSTCAL_OFFSET, 0x7c),
1177 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_VGA_CAL_CNTRL1, 0x00),
1178 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_VGA_CAL_MAN_VAL, 0x0d),
1179 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_DFE_DAC_ENABLE1, 0x00),
1180 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_DFE_3, 0x45),
1181 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_GM_CAL, 0x09),
1182 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_UCDR_FO_GAIN_RATE2, 0x09),
1183 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_UCDR_SO_GAIN_RATE2, 0x05),
1184 QMP_PHY_INIT_CFG(QSERDES_V5_5NM_RX_Q_PI_INTRINSIC_BIAS_RATE32, 0x3f),
1187 static const struct qmp_phy_init_tbl sc8280xp_usb43dp_pcs_tbl[] = {
1188 QMP_PHY_INIT_CFG(QPHY_V5_PCS_RCVR_DTCT_DLY_P1U2_L, 0xe7),
1189 QMP_PHY_INIT_CFG(QPHY_V5_PCS_RCVR_DTCT_DLY_P1U2_H, 0x03),
1190 QMP_PHY_INIT_CFG(QPHY_V5_PCS_LOCK_DETECT_CONFIG1, 0xd0),
1191 QMP_PHY_INIT_CFG(QPHY_V5_PCS_LOCK_DETECT_CONFIG2, 0x07),
1192 QMP_PHY_INIT_CFG(QPHY_V5_PCS_LOCK_DETECT_CONFIG3, 0x20),
1193 QMP_PHY_INIT_CFG(QPHY_V5_PCS_LOCK_DETECT_CONFIG6, 0x13),
1194 QMP_PHY_INIT_CFG(QPHY_V5_PCS_REFGEN_REQ_CONFIG1, 0x21),
1195 QMP_PHY_INIT_CFG(QPHY_V5_PCS_RX_SIGDET_LVL, 0xaa),
1196 QMP_PHY_INIT_CFG(QPHY_V5_PCS_RX_CONFIG, 0x0a),
1197 QMP_PHY_INIT_CFG(QPHY_V5_PCS_ALIGN_DETECT_CONFIG1, 0x88),
1198 QMP_PHY_INIT_CFG(QPHY_V5_PCS_ALIGN_DETECT_CONFIG2, 0x13),
1199 QMP_PHY_INIT_CFG(QPHY_V5_PCS_PCS_TX_RX_CONFIG, 0x0c),
1200 QMP_PHY_INIT_CFG(QPHY_V5_PCS_EQ_CONFIG1, 0x4b),
1201 QMP_PHY_INIT_CFG(QPHY_V5_PCS_EQ_CONFIG5, 0x10),
1202 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_LFPS_DET_HIGH_COUNT_VAL, 0xf8),
1203 QMP_PHY_INIT_CFG(QPHY_V5_PCS_USB3_RXEQTRAINING_DFE_TIME_S2, 0x07),
1206 /* list of regulators */
1207 struct qmp_regulator_data {
1209 unsigned int enable_load;
1212 static struct qmp_regulator_data qmp_phy_vreg_l[] = {
1213 { .name = "vdda-phy", .enable_load = 21800 },
1214 { .name = "vdda-pll", .enable_load = 36000 },
1217 static const u8 qmp_dp_v3_pre_emphasis_hbr3_hbr2[4][4] = {
1218 { 0x00, 0x0c, 0x15, 0x1a },
1219 { 0x02, 0x0e, 0x16, 0xff },
1220 { 0x02, 0x11, 0xff, 0xff },
1221 { 0x04, 0xff, 0xff, 0xff }
1224 static const u8 qmp_dp_v3_voltage_swing_hbr3_hbr2[4][4] = {
1225 { 0x02, 0x12, 0x16, 0x1a },
1226 { 0x09, 0x19, 0x1f, 0xff },
1227 { 0x10, 0x1f, 0xff, 0xff },
1228 { 0x1f, 0xff, 0xff, 0xff }
1231 static const u8 qmp_dp_v3_pre_emphasis_hbr_rbr[4][4] = {
1232 { 0x00, 0x0c, 0x14, 0x19 },
1233 { 0x00, 0x0b, 0x12, 0xff },
1234 { 0x00, 0x0b, 0xff, 0xff },
1235 { 0x04, 0xff, 0xff, 0xff }
1238 static const u8 qmp_dp_v3_voltage_swing_hbr_rbr[4][4] = {
1239 { 0x08, 0x0f, 0x16, 0x1f },
1240 { 0x11, 0x1e, 0x1f, 0xff },
1241 { 0x19, 0x1f, 0xff, 0xff },
1242 { 0x1f, 0xff, 0xff, 0xff }
1245 static const u8 qmp_dp_v4_pre_emphasis_hbr3_hbr2[4][4] = {
1246 { 0x00, 0x0c, 0x15, 0x1b },
1247 { 0x02, 0x0e, 0x16, 0xff },
1248 { 0x02, 0x11, 0xff, 0xff },
1249 { 0x04, 0xff, 0xff, 0xff }
1252 static const u8 qmp_dp_v4_pre_emphasis_hbr_rbr[4][4] = {
1253 { 0x00, 0x0d, 0x14, 0x1a },
1254 { 0x00, 0x0e, 0x15, 0xff },
1255 { 0x00, 0x0d, 0xff, 0xff },
1256 { 0x03, 0xff, 0xff, 0xff }
1259 static const u8 qmp_dp_v4_voltage_swing_hbr_rbr[4][4] = {
1260 { 0x08, 0x0f, 0x16, 0x1f },
1261 { 0x11, 0x1e, 0x1f, 0xff },
1262 { 0x16, 0x1f, 0xff, 0xff },
1263 { 0x1f, 0xff, 0xff, 0xff }
1266 static const u8 qmp_dp_v5_pre_emphasis_hbr3_hbr2[4][4] = {
1267 { 0x20, 0x2c, 0x35, 0x3b },
1268 { 0x22, 0x2e, 0x36, 0xff },
1269 { 0x22, 0x31, 0xff, 0xff },
1270 { 0x24, 0xff, 0xff, 0xff }
1273 static const u8 qmp_dp_v5_voltage_swing_hbr3_hbr2[4][4] = {
1274 { 0x22, 0x32, 0x36, 0x3a },
1275 { 0x29, 0x39, 0x3f, 0xff },
1276 { 0x30, 0x3f, 0xff, 0xff },
1277 { 0x3f, 0xff, 0xff, 0xff }
1280 static const u8 qmp_dp_v5_pre_emphasis_hbr_rbr[4][4] = {
1281 { 0x20, 0x2d, 0x34, 0x3a },
1282 { 0x20, 0x2e, 0x35, 0xff },
1283 { 0x20, 0x2e, 0xff, 0xff },
1284 { 0x24, 0xff, 0xff, 0xff }
1287 static const u8 qmp_dp_v5_voltage_swing_hbr_rbr[4][4] = {
1288 { 0x28, 0x2f, 0x36, 0x3f },
1289 { 0x31, 0x3e, 0x3f, 0xff },
1290 { 0x36, 0x3f, 0xff, 0xff },
1291 { 0x3f, 0xff, 0xff, 0xff }
1294 static const u8 qmp_dp_v6_pre_emphasis_hbr_rbr[4][4] = {
1295 { 0x20, 0x2d, 0x34, 0x3a },
1296 { 0x20, 0x2e, 0x35, 0xff },
1297 { 0x20, 0x2e, 0xff, 0xff },
1298 { 0x22, 0xff, 0xff, 0xff }
1303 struct qmp_combo_offsets {
1319 struct qmp_phy_cfg {
1320 const struct qmp_combo_offsets *offsets;
1322 /* Init sequence for PHY blocks - serdes, tx, rx, pcs */
1323 const struct qmp_phy_init_tbl *serdes_tbl;
1325 const struct qmp_phy_init_tbl *tx_tbl;
1327 const struct qmp_phy_init_tbl *rx_tbl;
1329 const struct qmp_phy_init_tbl *pcs_tbl;
1331 const struct qmp_phy_init_tbl *pcs_usb_tbl;
1332 int pcs_usb_tbl_num;
1334 const struct qmp_phy_init_tbl *dp_serdes_tbl;
1335 int dp_serdes_tbl_num;
1336 const struct qmp_phy_init_tbl *dp_tx_tbl;
1339 /* Init sequence for DP PHY block link rates */
1340 const struct qmp_phy_init_tbl *serdes_tbl_rbr;
1341 int serdes_tbl_rbr_num;
1342 const struct qmp_phy_init_tbl *serdes_tbl_hbr;
1343 int serdes_tbl_hbr_num;
1344 const struct qmp_phy_init_tbl *serdes_tbl_hbr2;
1345 int serdes_tbl_hbr2_num;
1346 const struct qmp_phy_init_tbl *serdes_tbl_hbr3;
1347 int serdes_tbl_hbr3_num;
1349 /* DP PHY swing and pre_emphasis tables */
1350 const u8 (*swing_hbr_rbr)[4][4];
1351 const u8 (*swing_hbr3_hbr2)[4][4];
1352 const u8 (*pre_emphasis_hbr_rbr)[4][4];
1353 const u8 (*pre_emphasis_hbr3_hbr2)[4][4];
1355 /* DP PHY callbacks */
1356 int (*configure_dp_phy)(struct qmp_combo *qmp);
1357 void (*configure_dp_tx)(struct qmp_combo *qmp);
1358 int (*calibrate_dp_phy)(struct qmp_combo *qmp);
1359 void (*dp_aux_init)(struct qmp_combo *qmp);
1361 /* resets to be requested */
1362 const char * const *reset_list;
1364 /* regulators to be requested */
1365 const struct qmp_regulator_data *vreg_list;
1368 /* array of registers with different offsets */
1369 const unsigned int *regs;
1371 /* true, if PHY needs delay after POWER_DOWN */
1372 bool has_pwrdn_delay;
1374 /* Offset from PCS to PCS_USB region */
1375 unsigned int pcs_usb_offset;
1382 const struct qmp_phy_cfg *cfg;
1386 void __iomem *serdes;
1392 void __iomem *pcs_misc;
1393 void __iomem *pcs_usb;
1395 void __iomem *dp_serdes;
1396 void __iomem *dp_tx;
1397 void __iomem *dp_tx2;
1398 void __iomem *dp_dp_phy;
1400 struct clk *pipe_clk;
1401 struct clk_bulk_data *clks;
1403 struct reset_control_bulk_data *resets;
1404 struct regulator_bulk_data *vregs;
1406 struct mutex phy_mutex;
1409 struct phy *usb_phy;
1411 unsigned int usb_init_count;
1414 unsigned int dp_aux_cfg;
1415 struct phy_configure_opts_dp dp_opts;
1416 unsigned int dp_init_count;
1418 struct clk_fixed_rate pipe_clk_fixed;
1419 struct clk_hw dp_link_hw;
1420 struct clk_hw dp_pixel_hw;
1422 struct drm_bridge bridge;
1424 struct typec_switch_dev *sw;
1425 enum typec_orientation orientation;
1428 static void qmp_v3_dp_aux_init(struct qmp_combo *qmp);
1429 static void qmp_v3_configure_dp_tx(struct qmp_combo *qmp);
1430 static int qmp_v3_configure_dp_phy(struct qmp_combo *qmp);
1431 static int qmp_v3_calibrate_dp_phy(struct qmp_combo *qmp);
1433 static void qmp_v4_dp_aux_init(struct qmp_combo *qmp);
1434 static void qmp_v4_configure_dp_tx(struct qmp_combo *qmp);
1435 static int qmp_v4_configure_dp_phy(struct qmp_combo *qmp);
1436 static int qmp_v4_calibrate_dp_phy(struct qmp_combo *qmp);
1438 static inline void qphy_setbits(void __iomem *base, u32 offset, u32 val)
1442 reg = readl(base + offset);
1444 writel(reg, base + offset);
1446 /* ensure that above write is through */
1447 readl(base + offset);
1450 static inline void qphy_clrbits(void __iomem *base, u32 offset, u32 val)
1454 reg = readl(base + offset);
1456 writel(reg, base + offset);
1458 /* ensure that above write is through */
1459 readl(base + offset);
1462 /* list of clocks required by phy */
1463 static const char * const qmp_combo_phy_clk_l[] = {
1464 "aux", "cfg_ahb", "ref", "com_aux",
1467 /* list of resets */
1468 static const char * const msm8996_usb3phy_reset_l[] = {
1472 static const char * const sc7180_usb3phy_reset_l[] = {
1476 static const struct qmp_combo_offsets qmp_combo_offsets_v3 = {
1482 .usb3_serdes = 0x1000,
1483 .usb3_pcs_misc = 0x1a00,
1485 .usb3_pcs_usb = 0x1f00,
1486 .dp_serdes = 0x2000,
1489 .dp_dp_phy = 0x2a00,
1492 static const struct qmp_combo_offsets qmp_combo_offsets_v5 = {
1498 .usb3_serdes = 0x1000,
1499 .usb3_pcs_misc = 0x1200,
1501 .usb3_pcs_usb = 0x1700,
1502 .dp_serdes = 0x2000,
1503 .dp_dp_phy = 0x2200,
1506 static const struct qmp_phy_cfg sc7180_usb3dpphy_cfg = {
1507 .offsets = &qmp_combo_offsets_v3,
1509 .serdes_tbl = qmp_v3_usb3_serdes_tbl,
1510 .serdes_tbl_num = ARRAY_SIZE(qmp_v3_usb3_serdes_tbl),
1511 .tx_tbl = qmp_v3_usb3_tx_tbl,
1512 .tx_tbl_num = ARRAY_SIZE(qmp_v3_usb3_tx_tbl),
1513 .rx_tbl = qmp_v3_usb3_rx_tbl,
1514 .rx_tbl_num = ARRAY_SIZE(qmp_v3_usb3_rx_tbl),
1515 .pcs_tbl = qmp_v3_usb3_pcs_tbl,
1516 .pcs_tbl_num = ARRAY_SIZE(qmp_v3_usb3_pcs_tbl),
1518 .dp_serdes_tbl = qmp_v3_dp_serdes_tbl,
1519 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl),
1520 .dp_tx_tbl = qmp_v3_dp_tx_tbl,
1521 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v3_dp_tx_tbl),
1523 .serdes_tbl_rbr = qmp_v3_dp_serdes_tbl_rbr,
1524 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_rbr),
1525 .serdes_tbl_hbr = qmp_v3_dp_serdes_tbl_hbr,
1526 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr),
1527 .serdes_tbl_hbr2 = qmp_v3_dp_serdes_tbl_hbr2,
1528 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr2),
1529 .serdes_tbl_hbr3 = qmp_v3_dp_serdes_tbl_hbr3,
1530 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr3),
1532 .swing_hbr_rbr = &qmp_dp_v3_voltage_swing_hbr_rbr,
1533 .pre_emphasis_hbr_rbr = &qmp_dp_v3_pre_emphasis_hbr_rbr,
1534 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1535 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v3_pre_emphasis_hbr3_hbr2,
1537 .dp_aux_init = qmp_v3_dp_aux_init,
1538 .configure_dp_tx = qmp_v3_configure_dp_tx,
1539 .configure_dp_phy = qmp_v3_configure_dp_phy,
1540 .calibrate_dp_phy = qmp_v3_calibrate_dp_phy,
1542 .reset_list = sc7180_usb3phy_reset_l,
1543 .num_resets = ARRAY_SIZE(sc7180_usb3phy_reset_l),
1544 .vreg_list = qmp_phy_vreg_l,
1545 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1546 .regs = qmp_v3_usb3phy_regs_layout,
1548 .has_pwrdn_delay = true,
1551 static const struct qmp_phy_cfg sdm845_usb3dpphy_cfg = {
1552 .offsets = &qmp_combo_offsets_v3,
1554 .serdes_tbl = qmp_v3_usb3_serdes_tbl,
1555 .serdes_tbl_num = ARRAY_SIZE(qmp_v3_usb3_serdes_tbl),
1556 .tx_tbl = qmp_v3_usb3_tx_tbl,
1557 .tx_tbl_num = ARRAY_SIZE(qmp_v3_usb3_tx_tbl),
1558 .rx_tbl = qmp_v3_usb3_rx_tbl,
1559 .rx_tbl_num = ARRAY_SIZE(qmp_v3_usb3_rx_tbl),
1560 .pcs_tbl = qmp_v3_usb3_pcs_tbl,
1561 .pcs_tbl_num = ARRAY_SIZE(qmp_v3_usb3_pcs_tbl),
1563 .dp_serdes_tbl = qmp_v3_dp_serdes_tbl,
1564 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl),
1565 .dp_tx_tbl = qmp_v3_dp_tx_tbl,
1566 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v3_dp_tx_tbl),
1568 .serdes_tbl_rbr = qmp_v3_dp_serdes_tbl_rbr,
1569 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_rbr),
1570 .serdes_tbl_hbr = qmp_v3_dp_serdes_tbl_hbr,
1571 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr),
1572 .serdes_tbl_hbr2 = qmp_v3_dp_serdes_tbl_hbr2,
1573 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr2),
1574 .serdes_tbl_hbr3 = qmp_v3_dp_serdes_tbl_hbr3,
1575 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr3),
1577 .swing_hbr_rbr = &qmp_dp_v3_voltage_swing_hbr_rbr,
1578 .pre_emphasis_hbr_rbr = &qmp_dp_v3_pre_emphasis_hbr_rbr,
1579 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1580 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v3_pre_emphasis_hbr3_hbr2,
1582 .dp_aux_init = qmp_v3_dp_aux_init,
1583 .configure_dp_tx = qmp_v3_configure_dp_tx,
1584 .configure_dp_phy = qmp_v3_configure_dp_phy,
1585 .calibrate_dp_phy = qmp_v3_calibrate_dp_phy,
1587 .reset_list = msm8996_usb3phy_reset_l,
1588 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1589 .vreg_list = qmp_phy_vreg_l,
1590 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1591 .regs = qmp_v3_usb3phy_regs_layout,
1593 .has_pwrdn_delay = true,
1596 static const struct qmp_phy_cfg sc8180x_usb3dpphy_cfg = {
1597 .offsets = &qmp_combo_offsets_v3,
1599 .serdes_tbl = sm8150_usb3_serdes_tbl,
1600 .serdes_tbl_num = ARRAY_SIZE(sm8150_usb3_serdes_tbl),
1601 .tx_tbl = sm8150_usb3_tx_tbl,
1602 .tx_tbl_num = ARRAY_SIZE(sm8150_usb3_tx_tbl),
1603 .rx_tbl = sm8150_usb3_rx_tbl,
1604 .rx_tbl_num = ARRAY_SIZE(sm8150_usb3_rx_tbl),
1605 .pcs_tbl = sm8150_usb3_pcs_tbl,
1606 .pcs_tbl_num = ARRAY_SIZE(sm8150_usb3_pcs_tbl),
1607 .pcs_usb_tbl = sm8150_usb3_pcs_usb_tbl,
1608 .pcs_usb_tbl_num = ARRAY_SIZE(sm8150_usb3_pcs_usb_tbl),
1610 .dp_serdes_tbl = qmp_v4_dp_serdes_tbl,
1611 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl),
1612 .dp_tx_tbl = qmp_v4_dp_tx_tbl,
1613 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v4_dp_tx_tbl),
1615 .serdes_tbl_rbr = qmp_v4_dp_serdes_tbl_rbr,
1616 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_rbr),
1617 .serdes_tbl_hbr = qmp_v4_dp_serdes_tbl_hbr,
1618 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr),
1619 .serdes_tbl_hbr2 = qmp_v4_dp_serdes_tbl_hbr2,
1620 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr2),
1621 .serdes_tbl_hbr3 = qmp_v4_dp_serdes_tbl_hbr3,
1622 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr3),
1624 .swing_hbr_rbr = &qmp_dp_v3_voltage_swing_hbr_rbr,
1625 .pre_emphasis_hbr_rbr = &qmp_dp_v3_pre_emphasis_hbr_rbr,
1626 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1627 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v3_pre_emphasis_hbr3_hbr2,
1629 .dp_aux_init = qmp_v4_dp_aux_init,
1630 .configure_dp_tx = qmp_v4_configure_dp_tx,
1631 .configure_dp_phy = qmp_v4_configure_dp_phy,
1632 .calibrate_dp_phy = qmp_v4_calibrate_dp_phy,
1634 .reset_list = msm8996_usb3phy_reset_l,
1635 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1636 .vreg_list = qmp_phy_vreg_l,
1637 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1638 .regs = qmp_v45_usb3phy_regs_layout,
1639 .pcs_usb_offset = 0x300,
1641 .has_pwrdn_delay = true,
1644 static const struct qmp_phy_cfg sc8280xp_usb43dpphy_cfg = {
1645 .offsets = &qmp_combo_offsets_v5,
1647 .serdes_tbl = sc8280xp_usb43dp_serdes_tbl,
1648 .serdes_tbl_num = ARRAY_SIZE(sc8280xp_usb43dp_serdes_tbl),
1649 .tx_tbl = sc8280xp_usb43dp_tx_tbl,
1650 .tx_tbl_num = ARRAY_SIZE(sc8280xp_usb43dp_tx_tbl),
1651 .rx_tbl = sc8280xp_usb43dp_rx_tbl,
1652 .rx_tbl_num = ARRAY_SIZE(sc8280xp_usb43dp_rx_tbl),
1653 .pcs_tbl = sc8280xp_usb43dp_pcs_tbl,
1654 .pcs_tbl_num = ARRAY_SIZE(sc8280xp_usb43dp_pcs_tbl),
1656 .dp_serdes_tbl = qmp_v5_dp_serdes_tbl,
1657 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v5_dp_serdes_tbl),
1658 .dp_tx_tbl = qmp_v5_5nm_dp_tx_tbl,
1659 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v5_5nm_dp_tx_tbl),
1661 .serdes_tbl_rbr = qmp_v4_dp_serdes_tbl_rbr,
1662 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_rbr),
1663 .serdes_tbl_hbr = qmp_v4_dp_serdes_tbl_hbr,
1664 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr),
1665 .serdes_tbl_hbr2 = qmp_v4_dp_serdes_tbl_hbr2,
1666 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr2),
1667 .serdes_tbl_hbr3 = qmp_v4_dp_serdes_tbl_hbr3,
1668 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr3),
1670 .swing_hbr_rbr = &qmp_dp_v5_voltage_swing_hbr_rbr,
1671 .pre_emphasis_hbr_rbr = &qmp_dp_v5_pre_emphasis_hbr_rbr,
1672 .swing_hbr3_hbr2 = &qmp_dp_v5_voltage_swing_hbr3_hbr2,
1673 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v5_pre_emphasis_hbr3_hbr2,
1675 .dp_aux_init = qmp_v4_dp_aux_init,
1676 .configure_dp_tx = qmp_v4_configure_dp_tx,
1677 .configure_dp_phy = qmp_v4_configure_dp_phy,
1678 .calibrate_dp_phy = qmp_v4_calibrate_dp_phy,
1680 .reset_list = msm8996_usb3phy_reset_l,
1681 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1682 .vreg_list = qmp_phy_vreg_l,
1683 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1684 .regs = qmp_v5_5nm_usb3phy_regs_layout,
1687 static const struct qmp_phy_cfg sm6350_usb3dpphy_cfg = {
1688 .offsets = &qmp_combo_offsets_v3,
1690 .serdes_tbl = qmp_v3_usb3_serdes_tbl,
1691 .serdes_tbl_num = ARRAY_SIZE(qmp_v3_usb3_serdes_tbl),
1692 .tx_tbl = qmp_v3_usb3_tx_tbl,
1693 .tx_tbl_num = ARRAY_SIZE(qmp_v3_usb3_tx_tbl),
1694 .rx_tbl = sm6350_usb3_rx_tbl,
1695 .rx_tbl_num = ARRAY_SIZE(sm6350_usb3_rx_tbl),
1696 .pcs_tbl = sm6350_usb3_pcs_tbl,
1697 .pcs_tbl_num = ARRAY_SIZE(sm6350_usb3_pcs_tbl),
1699 .dp_serdes_tbl = qmp_v3_dp_serdes_tbl,
1700 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl),
1701 .dp_tx_tbl = qmp_v3_dp_tx_tbl,
1702 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v3_dp_tx_tbl),
1704 .serdes_tbl_rbr = qmp_v3_dp_serdes_tbl_rbr,
1705 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_rbr),
1706 .serdes_tbl_hbr = qmp_v3_dp_serdes_tbl_hbr,
1707 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr),
1708 .serdes_tbl_hbr2 = qmp_v3_dp_serdes_tbl_hbr2,
1709 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr2),
1710 .serdes_tbl_hbr3 = qmp_v3_dp_serdes_tbl_hbr3,
1711 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v3_dp_serdes_tbl_hbr3),
1713 .swing_hbr_rbr = &qmp_dp_v3_voltage_swing_hbr_rbr,
1714 .pre_emphasis_hbr_rbr = &qmp_dp_v3_pre_emphasis_hbr_rbr,
1715 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1716 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v3_pre_emphasis_hbr3_hbr2,
1718 .dp_aux_init = qmp_v3_dp_aux_init,
1719 .configure_dp_tx = qmp_v3_configure_dp_tx,
1720 .configure_dp_phy = qmp_v3_configure_dp_phy,
1721 .calibrate_dp_phy = qmp_v3_calibrate_dp_phy,
1723 .reset_list = msm8996_usb3phy_reset_l,
1724 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1725 .vreg_list = qmp_phy_vreg_l,
1726 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1727 .regs = qmp_v3_usb3phy_regs_layout,
1730 static const struct qmp_phy_cfg sm8250_usb3dpphy_cfg = {
1731 .offsets = &qmp_combo_offsets_v3,
1733 .serdes_tbl = sm8150_usb3_serdes_tbl,
1734 .serdes_tbl_num = ARRAY_SIZE(sm8150_usb3_serdes_tbl),
1735 .tx_tbl = sm8250_usb3_tx_tbl,
1736 .tx_tbl_num = ARRAY_SIZE(sm8250_usb3_tx_tbl),
1737 .rx_tbl = sm8250_usb3_rx_tbl,
1738 .rx_tbl_num = ARRAY_SIZE(sm8250_usb3_rx_tbl),
1739 .pcs_tbl = sm8250_usb3_pcs_tbl,
1740 .pcs_tbl_num = ARRAY_SIZE(sm8250_usb3_pcs_tbl),
1741 .pcs_usb_tbl = sm8250_usb3_pcs_usb_tbl,
1742 .pcs_usb_tbl_num = ARRAY_SIZE(sm8250_usb3_pcs_usb_tbl),
1744 .dp_serdes_tbl = qmp_v4_dp_serdes_tbl,
1745 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl),
1746 .dp_tx_tbl = qmp_v4_dp_tx_tbl,
1747 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v4_dp_tx_tbl),
1749 .serdes_tbl_rbr = qmp_v4_dp_serdes_tbl_rbr,
1750 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_rbr),
1751 .serdes_tbl_hbr = qmp_v4_dp_serdes_tbl_hbr,
1752 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr),
1753 .serdes_tbl_hbr2 = qmp_v4_dp_serdes_tbl_hbr2,
1754 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr2),
1755 .serdes_tbl_hbr3 = qmp_v4_dp_serdes_tbl_hbr3,
1756 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr3),
1758 .swing_hbr_rbr = &qmp_dp_v3_voltage_swing_hbr_rbr,
1759 .pre_emphasis_hbr_rbr = &qmp_dp_v3_pre_emphasis_hbr_rbr,
1760 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1761 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v3_pre_emphasis_hbr3_hbr2,
1763 .dp_aux_init = qmp_v4_dp_aux_init,
1764 .configure_dp_tx = qmp_v4_configure_dp_tx,
1765 .configure_dp_phy = qmp_v4_configure_dp_phy,
1766 .calibrate_dp_phy = qmp_v4_calibrate_dp_phy,
1768 .reset_list = msm8996_usb3phy_reset_l,
1769 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1770 .vreg_list = qmp_phy_vreg_l,
1771 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1772 .regs = qmp_v45_usb3phy_regs_layout,
1773 .pcs_usb_offset = 0x300,
1775 .has_pwrdn_delay = true,
1778 static const struct qmp_phy_cfg sm8350_usb3dpphy_cfg = {
1779 .offsets = &qmp_combo_offsets_v3,
1781 .serdes_tbl = sm8150_usb3_serdes_tbl,
1782 .serdes_tbl_num = ARRAY_SIZE(sm8150_usb3_serdes_tbl),
1783 .tx_tbl = sm8350_usb3_tx_tbl,
1784 .tx_tbl_num = ARRAY_SIZE(sm8350_usb3_tx_tbl),
1785 .rx_tbl = sm8350_usb3_rx_tbl,
1786 .rx_tbl_num = ARRAY_SIZE(sm8350_usb3_rx_tbl),
1787 .pcs_tbl = sm8350_usb3_pcs_tbl,
1788 .pcs_tbl_num = ARRAY_SIZE(sm8350_usb3_pcs_tbl),
1789 .pcs_usb_tbl = sm8350_usb3_pcs_usb_tbl,
1790 .pcs_usb_tbl_num = ARRAY_SIZE(sm8350_usb3_pcs_usb_tbl),
1792 .dp_serdes_tbl = qmp_v4_dp_serdes_tbl,
1793 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl),
1794 .dp_tx_tbl = qmp_v5_dp_tx_tbl,
1795 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v5_dp_tx_tbl),
1797 .serdes_tbl_rbr = qmp_v4_dp_serdes_tbl_rbr,
1798 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_rbr),
1799 .serdes_tbl_hbr = qmp_v4_dp_serdes_tbl_hbr,
1800 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr),
1801 .serdes_tbl_hbr2 = qmp_v4_dp_serdes_tbl_hbr2,
1802 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr2),
1803 .serdes_tbl_hbr3 = qmp_v4_dp_serdes_tbl_hbr3,
1804 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v4_dp_serdes_tbl_hbr3),
1806 .swing_hbr_rbr = &qmp_dp_v4_voltage_swing_hbr_rbr,
1807 .pre_emphasis_hbr_rbr = &qmp_dp_v4_pre_emphasis_hbr_rbr,
1808 .swing_hbr3_hbr2 = &qmp_dp_v3_voltage_swing_hbr3_hbr2,
1809 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v4_pre_emphasis_hbr3_hbr2,
1811 .dp_aux_init = qmp_v4_dp_aux_init,
1812 .configure_dp_tx = qmp_v4_configure_dp_tx,
1813 .configure_dp_phy = qmp_v4_configure_dp_phy,
1814 .calibrate_dp_phy = qmp_v4_calibrate_dp_phy,
1816 .reset_list = msm8996_usb3phy_reset_l,
1817 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1818 .vreg_list = qmp_phy_vreg_l,
1819 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1820 .regs = qmp_v45_usb3phy_regs_layout,
1822 .has_pwrdn_delay = true,
1825 static const struct qmp_phy_cfg sm8550_usb3dpphy_cfg = {
1826 .offsets = &qmp_combo_offsets_v3,
1828 .serdes_tbl = sm8550_usb3_serdes_tbl,
1829 .serdes_tbl_num = ARRAY_SIZE(sm8550_usb3_serdes_tbl),
1830 .tx_tbl = sm8550_usb3_tx_tbl,
1831 .tx_tbl_num = ARRAY_SIZE(sm8550_usb3_tx_tbl),
1832 .rx_tbl = sm8550_usb3_rx_tbl,
1833 .rx_tbl_num = ARRAY_SIZE(sm8550_usb3_rx_tbl),
1834 .pcs_tbl = sm8550_usb3_pcs_tbl,
1835 .pcs_tbl_num = ARRAY_SIZE(sm8550_usb3_pcs_tbl),
1836 .pcs_usb_tbl = sm8550_usb3_pcs_usb_tbl,
1837 .pcs_usb_tbl_num = ARRAY_SIZE(sm8550_usb3_pcs_usb_tbl),
1839 .dp_serdes_tbl = qmp_v6_dp_serdes_tbl,
1840 .dp_serdes_tbl_num = ARRAY_SIZE(qmp_v6_dp_serdes_tbl),
1841 .dp_tx_tbl = qmp_v6_dp_tx_tbl,
1842 .dp_tx_tbl_num = ARRAY_SIZE(qmp_v6_dp_tx_tbl),
1844 .serdes_tbl_rbr = qmp_v6_dp_serdes_tbl_rbr,
1845 .serdes_tbl_rbr_num = ARRAY_SIZE(qmp_v6_dp_serdes_tbl_rbr),
1846 .serdes_tbl_hbr = qmp_v6_dp_serdes_tbl_hbr,
1847 .serdes_tbl_hbr_num = ARRAY_SIZE(qmp_v6_dp_serdes_tbl_hbr),
1848 .serdes_tbl_hbr2 = qmp_v6_dp_serdes_tbl_hbr2,
1849 .serdes_tbl_hbr2_num = ARRAY_SIZE(qmp_v6_dp_serdes_tbl_hbr2),
1850 .serdes_tbl_hbr3 = qmp_v6_dp_serdes_tbl_hbr3,
1851 .serdes_tbl_hbr3_num = ARRAY_SIZE(qmp_v6_dp_serdes_tbl_hbr3),
1853 .swing_hbr_rbr = &qmp_dp_v5_voltage_swing_hbr_rbr,
1854 .pre_emphasis_hbr_rbr = &qmp_dp_v6_pre_emphasis_hbr_rbr,
1855 .swing_hbr3_hbr2 = &qmp_dp_v5_voltage_swing_hbr3_hbr2,
1856 .pre_emphasis_hbr3_hbr2 = &qmp_dp_v5_pre_emphasis_hbr3_hbr2,
1858 .dp_aux_init = qmp_v4_dp_aux_init,
1859 .configure_dp_tx = qmp_v4_configure_dp_tx,
1860 .configure_dp_phy = qmp_v4_configure_dp_phy,
1861 .calibrate_dp_phy = qmp_v4_calibrate_dp_phy,
1863 .regs = qmp_v6_usb3phy_regs_layout,
1864 .reset_list = msm8996_usb3phy_reset_l,
1865 .num_resets = ARRAY_SIZE(msm8996_usb3phy_reset_l),
1866 .vreg_list = qmp_phy_vreg_l,
1867 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
1870 static void qmp_combo_configure_lane(void __iomem *base,
1871 const struct qmp_phy_init_tbl tbl[],
1876 const struct qmp_phy_init_tbl *t = tbl;
1881 for (i = 0; i < num; i++, t++) {
1882 if (!(t->lane_mask & lane_mask))
1885 writel(t->val, base + t->offset);
1889 static void qmp_combo_configure(void __iomem *base,
1890 const struct qmp_phy_init_tbl tbl[],
1893 qmp_combo_configure_lane(base, tbl, num, 0xff);
1896 static int qmp_combo_dp_serdes_init(struct qmp_combo *qmp)
1898 const struct qmp_phy_cfg *cfg = qmp->cfg;
1899 void __iomem *serdes = qmp->dp_serdes;
1900 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
1902 qmp_combo_configure(serdes, cfg->dp_serdes_tbl, cfg->dp_serdes_tbl_num);
1904 switch (dp_opts->link_rate) {
1906 qmp_combo_configure(serdes, cfg->serdes_tbl_rbr,
1907 cfg->serdes_tbl_rbr_num);
1910 qmp_combo_configure(serdes, cfg->serdes_tbl_hbr,
1911 cfg->serdes_tbl_hbr_num);
1914 qmp_combo_configure(serdes, cfg->serdes_tbl_hbr2,
1915 cfg->serdes_tbl_hbr2_num);
1918 qmp_combo_configure(serdes, cfg->serdes_tbl_hbr3,
1919 cfg->serdes_tbl_hbr3_num);
1922 /* Other link rates aren't supported */
1929 static void qmp_v3_dp_aux_init(struct qmp_combo *qmp)
1931 const struct qmp_phy_cfg *cfg = qmp->cfg;
1933 writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
1934 DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
1935 qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
1937 /* Turn on BIAS current for PHY/PLL */
1938 writel(QSERDES_V3_COM_BIAS_EN | QSERDES_V3_COM_BIAS_EN_MUX |
1939 QSERDES_V3_COM_CLKBUF_L_EN | QSERDES_V3_COM_EN_SYSCLK_TX_SEL,
1940 qmp->dp_serdes + cfg->regs[QPHY_COM_BIAS_EN_CLKBUFLR_EN]);
1942 writel(DP_PHY_PD_CTL_PSR_PWRDN, qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
1944 writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
1945 DP_PHY_PD_CTL_LANE_0_1_PWRDN |
1946 DP_PHY_PD_CTL_LANE_2_3_PWRDN | DP_PHY_PD_CTL_PLL_PWRDN |
1947 DP_PHY_PD_CTL_DP_CLAMP_EN,
1948 qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
1950 writel(QSERDES_V3_COM_BIAS_EN |
1951 QSERDES_V3_COM_BIAS_EN_MUX | QSERDES_V3_COM_CLKBUF_R_EN |
1952 QSERDES_V3_COM_CLKBUF_L_EN | QSERDES_V3_COM_EN_SYSCLK_TX_SEL |
1953 QSERDES_V3_COM_CLKBUF_RX_DRIVE_L,
1954 qmp->dp_serdes + cfg->regs[QPHY_COM_BIAS_EN_CLKBUFLR_EN]);
1956 writel(0x00, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG0);
1957 writel(0x13, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG1);
1958 writel(0x24, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG2);
1959 writel(0x00, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG3);
1960 writel(0x0a, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG4);
1961 writel(0x26, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG5);
1962 writel(0x0a, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG6);
1963 writel(0x03, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG7);
1964 writel(0xbb, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG8);
1965 writel(0x03, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG9);
1966 qmp->dp_aux_cfg = 0;
1968 writel(PHY_AUX_STOP_ERR_MASK | PHY_AUX_DEC_ERR_MASK |
1969 PHY_AUX_SYNC_ERR_MASK | PHY_AUX_ALIGN_ERR_MASK |
1970 PHY_AUX_REQ_ERR_MASK,
1971 qmp->dp_dp_phy + QSERDES_V3_DP_PHY_AUX_INTERRUPT_MASK);
1974 static int qmp_combo_configure_dp_swing(struct qmp_combo *qmp)
1976 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
1977 const struct qmp_phy_cfg *cfg = qmp->cfg;
1978 unsigned int v_level = 0, p_level = 0;
1979 u8 voltage_swing_cfg, pre_emphasis_cfg;
1982 for (i = 0; i < dp_opts->lanes; i++) {
1983 v_level = max(v_level, dp_opts->voltage[i]);
1984 p_level = max(p_level, dp_opts->pre[i]);
1987 if (dp_opts->link_rate <= 2700) {
1988 voltage_swing_cfg = (*cfg->swing_hbr_rbr)[v_level][p_level];
1989 pre_emphasis_cfg = (*cfg->pre_emphasis_hbr_rbr)[v_level][p_level];
1991 voltage_swing_cfg = (*cfg->swing_hbr3_hbr2)[v_level][p_level];
1992 pre_emphasis_cfg = (*cfg->pre_emphasis_hbr3_hbr2)[v_level][p_level];
1995 /* TODO: Move check to config check */
1996 if (voltage_swing_cfg == 0xFF && pre_emphasis_cfg == 0xFF)
1999 /* Enable MUX to use Cursor values from these registers */
2000 voltage_swing_cfg |= DP_PHY_TXn_TX_DRV_LVL_MUX_EN;
2001 pre_emphasis_cfg |= DP_PHY_TXn_TX_EMP_POST1_LVL_MUX_EN;
2003 writel(voltage_swing_cfg, qmp->dp_tx + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2004 writel(pre_emphasis_cfg, qmp->dp_tx + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2005 writel(voltage_swing_cfg, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2006 writel(pre_emphasis_cfg, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2011 static void qmp_v3_configure_dp_tx(struct qmp_combo *qmp)
2013 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
2014 u32 bias_en, drvr_en;
2016 if (qmp_combo_configure_dp_swing(qmp) < 0)
2019 if (dp_opts->lanes == 1) {
2027 writel(drvr_en, qmp->dp_tx + QSERDES_V3_TX_HIGHZ_DRVR_EN);
2028 writel(bias_en, qmp->dp_tx + QSERDES_V3_TX_TRANSCEIVER_BIAS_EN);
2029 writel(drvr_en, qmp->dp_tx2 + QSERDES_V3_TX_HIGHZ_DRVR_EN);
2030 writel(bias_en, qmp->dp_tx2 + QSERDES_V3_TX_TRANSCEIVER_BIAS_EN);
2033 static bool qmp_combo_configure_dp_mode(struct qmp_combo *qmp)
2035 bool reverse = (qmp->orientation == TYPEC_ORIENTATION_REVERSE);
2036 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
2039 val = DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
2040 DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN;
2042 if (dp_opts->lanes == 4 || reverse)
2043 val |= DP_PHY_PD_CTL_LANE_0_1_PWRDN;
2044 if (dp_opts->lanes == 4 || !reverse)
2045 val |= DP_PHY_PD_CTL_LANE_2_3_PWRDN;
2047 writel(val, qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
2050 writel(0x4c, qmp->pcs + QSERDES_DP_PHY_MODE);
2052 writel(0x5c, qmp->pcs + QSERDES_DP_PHY_MODE);
2057 static int qmp_combo_configure_dp_clocks(struct qmp_combo *qmp)
2059 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
2061 unsigned long pixel_freq;
2063 switch (dp_opts->link_rate) {
2066 pixel_freq = 1620000000UL / 2;
2070 pixel_freq = 2700000000UL / 2;
2074 pixel_freq = 5400000000UL / 4;
2078 pixel_freq = 8100000000UL / 6;
2081 /* Other link rates aren't supported */
2084 writel(phy_vco_div, qmp->dp_dp_phy + QSERDES_V4_DP_PHY_VCO_DIV);
2086 clk_set_rate(qmp->dp_link_hw.clk, dp_opts->link_rate * 100000);
2087 clk_set_rate(qmp->dp_pixel_hw.clk, pixel_freq);
2092 static int qmp_v3_configure_dp_phy(struct qmp_combo *qmp)
2094 const struct qmp_phy_cfg *cfg = qmp->cfg;
2098 qmp_combo_configure_dp_mode(qmp);
2100 writel(0x05, qmp->dp_dp_phy + QSERDES_V3_DP_PHY_TX0_TX1_LANE_CTL);
2101 writel(0x05, qmp->dp_dp_phy + QSERDES_V3_DP_PHY_TX2_TX3_LANE_CTL);
2103 ret = qmp_combo_configure_dp_clocks(qmp);
2107 writel(0x04, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG2);
2108 writel(0x01, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2109 writel(0x05, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2110 writel(0x01, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2111 writel(0x09, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2113 writel(0x20, qmp->dp_serdes + cfg->regs[QPHY_COM_RESETSM_CNTRL]);
2115 if (readl_poll_timeout(qmp->dp_serdes + cfg->regs[QPHY_COM_C_READY_STATUS],
2117 ((status & BIT(0)) > 0),
2122 writel(0x19, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2124 if (readl_poll_timeout(qmp->dp_dp_phy + cfg->regs[QPHY_DP_PHY_STATUS],
2126 ((status & BIT(1)) > 0),
2131 writel(0x18, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2133 writel(0x19, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2135 return readl_poll_timeout(qmp->dp_dp_phy + cfg->regs[QPHY_DP_PHY_STATUS],
2137 ((status & BIT(1)) > 0),
2143 * We need to calibrate the aux setting here as many times
2144 * as the caller tries
2146 static int qmp_v3_calibrate_dp_phy(struct qmp_combo *qmp)
2148 static const u8 cfg1_settings[] = { 0x13, 0x23, 0x1d };
2152 qmp->dp_aux_cfg %= ARRAY_SIZE(cfg1_settings);
2153 val = cfg1_settings[qmp->dp_aux_cfg];
2155 writel(val, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG1);
2160 static void qmp_v4_dp_aux_init(struct qmp_combo *qmp)
2162 const struct qmp_phy_cfg *cfg = qmp->cfg;
2164 writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_PSR_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
2165 DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
2166 qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
2168 /* Turn on BIAS current for PHY/PLL */
2169 writel(0x17, qmp->dp_serdes + cfg->regs[QPHY_COM_BIAS_EN_CLKBUFLR_EN]);
2171 writel(0x00, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG0);
2172 writel(0x13, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG1);
2173 writel(0xa4, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG2);
2174 writel(0x00, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG3);
2175 writel(0x0a, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG4);
2176 writel(0x26, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG5);
2177 writel(0x0a, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG6);
2178 writel(0x03, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG7);
2179 writel(0xb7, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG8);
2180 writel(0x03, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG9);
2181 qmp->dp_aux_cfg = 0;
2183 writel(PHY_AUX_STOP_ERR_MASK | PHY_AUX_DEC_ERR_MASK |
2184 PHY_AUX_SYNC_ERR_MASK | PHY_AUX_ALIGN_ERR_MASK |
2185 PHY_AUX_REQ_ERR_MASK,
2186 qmp->dp_dp_phy + QSERDES_V4_DP_PHY_AUX_INTERRUPT_MASK);
2189 static void qmp_v4_configure_dp_tx(struct qmp_combo *qmp)
2191 const struct qmp_phy_cfg *cfg = qmp->cfg;
2193 /* Program default values before writing proper values */
2194 writel(0x27, qmp->dp_tx + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2195 writel(0x27, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2197 writel(0x20, qmp->dp_tx + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2198 writel(0x20, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2200 qmp_combo_configure_dp_swing(qmp);
2203 static int qmp_v456_configure_dp_phy(struct qmp_combo *qmp)
2205 const struct qmp_phy_cfg *cfg = qmp->cfg;
2209 writel(0x0f, qmp->dp_dp_phy + QSERDES_V4_DP_PHY_CFG_1);
2211 qmp_combo_configure_dp_mode(qmp);
2213 writel(0x13, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG1);
2214 writel(0xa4, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG2);
2216 writel(0x05, qmp->dp_dp_phy + QSERDES_V4_DP_PHY_TX0_TX1_LANE_CTL);
2217 writel(0x05, qmp->dp_dp_phy + QSERDES_V4_DP_PHY_TX2_TX3_LANE_CTL);
2219 ret = qmp_combo_configure_dp_clocks(qmp);
2223 writel(0x01, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2224 writel(0x05, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2225 writel(0x01, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2226 writel(0x09, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2228 writel(0x20, qmp->dp_serdes + cfg->regs[QPHY_COM_RESETSM_CNTRL]);
2230 if (readl_poll_timeout(qmp->dp_serdes + cfg->regs[QPHY_COM_C_READY_STATUS],
2232 ((status & BIT(0)) > 0),
2237 if (readl_poll_timeout(qmp->dp_serdes + cfg->regs[QPHY_COM_CMN_STATUS],
2239 ((status & BIT(0)) > 0),
2244 if (readl_poll_timeout(qmp->dp_serdes + cfg->regs[QPHY_COM_CMN_STATUS],
2246 ((status & BIT(1)) > 0),
2251 writel(0x19, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2253 if (readl_poll_timeout(qmp->dp_dp_phy + cfg->regs[QPHY_DP_PHY_STATUS],
2255 ((status & BIT(0)) > 0),
2260 if (readl_poll_timeout(qmp->dp_dp_phy + cfg->regs[QPHY_DP_PHY_STATUS],
2262 ((status & BIT(1)) > 0),
2270 static int qmp_v4_configure_dp_phy(struct qmp_combo *qmp)
2272 const struct qmp_phy_cfg *cfg = qmp->cfg;
2273 bool reverse = (qmp->orientation == TYPEC_ORIENTATION_REVERSE);
2274 const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
2275 u32 bias0_en, drvr0_en, bias1_en, drvr1_en;
2279 ret = qmp_v456_configure_dp_phy(qmp);
2284 * At least for 7nm DP PHY this has to be done after enabling link
2288 if (dp_opts->lanes == 1) {
2289 bias0_en = reverse ? 0x3e : 0x15;
2290 bias1_en = reverse ? 0x15 : 0x3e;
2291 drvr0_en = reverse ? 0x13 : 0x10;
2292 drvr1_en = reverse ? 0x10 : 0x13;
2293 } else if (dp_opts->lanes == 2) {
2294 bias0_en = reverse ? 0x3f : 0x15;
2295 bias1_en = reverse ? 0x15 : 0x3f;
2305 writel(drvr0_en, qmp->dp_tx + cfg->regs[QPHY_TX_HIGHZ_DRVR_EN]);
2306 writel(bias0_en, qmp->dp_tx + cfg->regs[QPHY_TX_TRANSCEIVER_BIAS_EN]);
2307 writel(drvr1_en, qmp->dp_tx2 + cfg->regs[QPHY_TX_HIGHZ_DRVR_EN]);
2308 writel(bias1_en, qmp->dp_tx2 + cfg->regs[QPHY_TX_TRANSCEIVER_BIAS_EN]);
2310 writel(0x18, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2312 writel(0x19, qmp->dp_dp_phy + QSERDES_DP_PHY_CFG);
2314 if (readl_poll_timeout(qmp->dp_dp_phy + cfg->regs[QPHY_DP_PHY_STATUS],
2316 ((status & BIT(1)) > 0),
2321 writel(0x0a, qmp->dp_tx + cfg->regs[QPHY_TX_TX_POL_INV]);
2322 writel(0x0a, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_POL_INV]);
2324 writel(0x27, qmp->dp_tx + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2325 writel(0x27, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_DRV_LVL]);
2327 writel(0x20, qmp->dp_tx + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2328 writel(0x20, qmp->dp_tx2 + cfg->regs[QPHY_TX_TX_EMP_POST1_LVL]);
2336 * We need to calibrate the aux setting here as many times
2337 * as the caller tries
2339 static int qmp_v4_calibrate_dp_phy(struct qmp_combo *qmp)
2341 static const u8 cfg1_settings[] = { 0x20, 0x13, 0x23, 0x1d };
2345 qmp->dp_aux_cfg %= ARRAY_SIZE(cfg1_settings);
2346 val = cfg1_settings[qmp->dp_aux_cfg];
2348 writel(val, qmp->dp_dp_phy + QSERDES_DP_PHY_AUX_CFG1);
2353 static int qmp_combo_dp_configure(struct phy *phy, union phy_configure_opts *opts)
2355 const struct phy_configure_opts_dp *dp_opts = &opts->dp;
2356 struct qmp_combo *qmp = phy_get_drvdata(phy);
2357 const struct qmp_phy_cfg *cfg = qmp->cfg;
2359 mutex_lock(&qmp->phy_mutex);
2361 memcpy(&qmp->dp_opts, dp_opts, sizeof(*dp_opts));
2362 if (qmp->dp_opts.set_voltages) {
2363 cfg->configure_dp_tx(qmp);
2364 qmp->dp_opts.set_voltages = 0;
2367 mutex_unlock(&qmp->phy_mutex);
2372 static int qmp_combo_dp_calibrate(struct phy *phy)
2374 struct qmp_combo *qmp = phy_get_drvdata(phy);
2375 const struct qmp_phy_cfg *cfg = qmp->cfg;
2378 mutex_lock(&qmp->phy_mutex);
2380 if (cfg->calibrate_dp_phy)
2381 ret = cfg->calibrate_dp_phy(qmp);
2383 mutex_unlock(&qmp->phy_mutex);
2388 static int qmp_combo_com_init(struct qmp_combo *qmp, bool force)
2390 const struct qmp_phy_cfg *cfg = qmp->cfg;
2391 void __iomem *com = qmp->com;
2395 if (!force && qmp->init_count++)
2398 ret = regulator_bulk_enable(cfg->num_vregs, qmp->vregs);
2400 dev_err(qmp->dev, "failed to enable regulators, err=%d\n", ret);
2401 goto err_decrement_count;
2404 ret = reset_control_bulk_assert(cfg->num_resets, qmp->resets);
2406 dev_err(qmp->dev, "reset assert failed\n");
2407 goto err_disable_regulators;
2410 ret = reset_control_bulk_deassert(cfg->num_resets, qmp->resets);
2412 dev_err(qmp->dev, "reset deassert failed\n");
2413 goto err_disable_regulators;
2416 ret = clk_bulk_prepare_enable(qmp->num_clks, qmp->clks);
2418 goto err_assert_reset;
2420 qphy_setbits(com, QPHY_V3_DP_COM_POWER_DOWN_CTRL, SW_PWRDN);
2422 /* override hardware control for reset of qmp phy */
2423 qphy_setbits(com, QPHY_V3_DP_COM_RESET_OVRD_CTRL,
2424 SW_DPPHY_RESET_MUX | SW_DPPHY_RESET |
2425 SW_USB3PHY_RESET_MUX | SW_USB3PHY_RESET);
2427 /* Use software based port select and switch on typec orientation */
2428 val = SW_PORTSELECT_MUX;
2429 if (qmp->orientation == TYPEC_ORIENTATION_REVERSE)
2430 val |= SW_PORTSELECT_VAL;
2431 writel(val, com + QPHY_V3_DP_COM_TYPEC_CTRL);
2432 writel(USB3_MODE | DP_MODE, com + QPHY_V3_DP_COM_PHY_MODE_CTRL);
2434 /* bring both QMP USB and QMP DP PHYs PCS block out of reset */
2435 qphy_clrbits(com, QPHY_V3_DP_COM_RESET_OVRD_CTRL,
2436 SW_DPPHY_RESET_MUX | SW_DPPHY_RESET |
2437 SW_USB3PHY_RESET_MUX | SW_USB3PHY_RESET);
2439 qphy_clrbits(com, QPHY_V3_DP_COM_SWI_CTRL, 0x03);
2440 qphy_clrbits(com, QPHY_V3_DP_COM_SW_RESET, SW_RESET);
2442 qphy_setbits(qmp->pcs, cfg->regs[QPHY_PCS_POWER_DOWN_CONTROL],
2448 reset_control_bulk_assert(cfg->num_resets, qmp->resets);
2449 err_disable_regulators:
2450 regulator_bulk_disable(cfg->num_vregs, qmp->vregs);
2451 err_decrement_count:
2457 static int qmp_combo_com_exit(struct qmp_combo *qmp, bool force)
2459 const struct qmp_phy_cfg *cfg = qmp->cfg;
2461 if (!force && --qmp->init_count)
2464 reset_control_bulk_assert(cfg->num_resets, qmp->resets);
2466 clk_bulk_disable_unprepare(qmp->num_clks, qmp->clks);
2468 regulator_bulk_disable(cfg->num_vregs, qmp->vregs);
2473 static int qmp_combo_dp_init(struct phy *phy)
2475 struct qmp_combo *qmp = phy_get_drvdata(phy);
2476 const struct qmp_phy_cfg *cfg = qmp->cfg;
2479 mutex_lock(&qmp->phy_mutex);
2481 ret = qmp_combo_com_init(qmp, false);
2485 cfg->dp_aux_init(qmp);
2487 qmp->dp_init_count++;
2490 mutex_unlock(&qmp->phy_mutex);
2494 static int qmp_combo_dp_exit(struct phy *phy)
2496 struct qmp_combo *qmp = phy_get_drvdata(phy);
2498 mutex_lock(&qmp->phy_mutex);
2500 qmp_combo_com_exit(qmp, false);
2502 qmp->dp_init_count--;
2504 mutex_unlock(&qmp->phy_mutex);
2509 static int qmp_combo_dp_power_on(struct phy *phy)
2511 struct qmp_combo *qmp = phy_get_drvdata(phy);
2512 const struct qmp_phy_cfg *cfg = qmp->cfg;
2513 void __iomem *tx = qmp->dp_tx;
2514 void __iomem *tx2 = qmp->dp_tx2;
2516 mutex_lock(&qmp->phy_mutex);
2518 qmp_combo_dp_serdes_init(qmp);
2520 qmp_combo_configure_lane(tx, cfg->dp_tx_tbl, cfg->dp_tx_tbl_num, 1);
2521 qmp_combo_configure_lane(tx2, cfg->dp_tx_tbl, cfg->dp_tx_tbl_num, 2);
2523 /* Configure special DP tx tunings */
2524 cfg->configure_dp_tx(qmp);
2526 /* Configure link rate, swing, etc. */
2527 cfg->configure_dp_phy(qmp);
2529 mutex_unlock(&qmp->phy_mutex);
2534 static int qmp_combo_dp_power_off(struct phy *phy)
2536 struct qmp_combo *qmp = phy_get_drvdata(phy);
2538 mutex_lock(&qmp->phy_mutex);
2540 /* Assert DP PHY power down */
2541 writel(DP_PHY_PD_CTL_PSR_PWRDN, qmp->dp_dp_phy + QSERDES_DP_PHY_PD_CTL);
2543 mutex_unlock(&qmp->phy_mutex);
2548 static int qmp_combo_usb_power_on(struct phy *phy)
2550 struct qmp_combo *qmp = phy_get_drvdata(phy);
2551 const struct qmp_phy_cfg *cfg = qmp->cfg;
2552 void __iomem *serdes = qmp->serdes;
2553 void __iomem *tx = qmp->tx;
2554 void __iomem *rx = qmp->rx;
2555 void __iomem *tx2 = qmp->tx2;
2556 void __iomem *rx2 = qmp->rx2;
2557 void __iomem *pcs = qmp->pcs;
2558 void __iomem *pcs_usb = qmp->pcs_usb;
2559 void __iomem *status;
2563 qmp_combo_configure(serdes, cfg->serdes_tbl, cfg->serdes_tbl_num);
2565 ret = clk_prepare_enable(qmp->pipe_clk);
2567 dev_err(qmp->dev, "pipe_clk enable failed err=%d\n", ret);
2571 /* Tx, Rx, and PCS configurations */
2572 qmp_combo_configure_lane(tx, cfg->tx_tbl, cfg->tx_tbl_num, 1);
2573 qmp_combo_configure_lane(tx2, cfg->tx_tbl, cfg->tx_tbl_num, 2);
2575 qmp_combo_configure_lane(rx, cfg->rx_tbl, cfg->rx_tbl_num, 1);
2576 qmp_combo_configure_lane(rx2, cfg->rx_tbl, cfg->rx_tbl_num, 2);
2578 qmp_combo_configure(pcs, cfg->pcs_tbl, cfg->pcs_tbl_num);
2581 qmp_combo_configure(pcs_usb, cfg->pcs_usb_tbl, cfg->pcs_usb_tbl_num);
2583 if (cfg->has_pwrdn_delay)
2584 usleep_range(10, 20);
2586 /* Pull PHY out of reset state */
2587 qphy_clrbits(pcs, cfg->regs[QPHY_SW_RESET], SW_RESET);
2589 /* start SerDes and Phy-Coding-Sublayer */
2590 qphy_setbits(pcs, cfg->regs[QPHY_START_CTRL], SERDES_START | PCS_START);
2592 status = pcs + cfg->regs[QPHY_PCS_STATUS];
2593 ret = readl_poll_timeout(status, val, !(val & PHYSTATUS), 200,
2594 PHY_INIT_COMPLETE_TIMEOUT);
2596 dev_err(qmp->dev, "phy initialization timed-out\n");
2597 goto err_disable_pipe_clk;
2602 err_disable_pipe_clk:
2603 clk_disable_unprepare(qmp->pipe_clk);
2608 static int qmp_combo_usb_power_off(struct phy *phy)
2610 struct qmp_combo *qmp = phy_get_drvdata(phy);
2611 const struct qmp_phy_cfg *cfg = qmp->cfg;
2613 clk_disable_unprepare(qmp->pipe_clk);
2616 qphy_setbits(qmp->pcs, cfg->regs[QPHY_SW_RESET], SW_RESET);
2618 /* stop SerDes and Phy-Coding-Sublayer */
2619 qphy_clrbits(qmp->pcs, cfg->regs[QPHY_START_CTRL],
2620 SERDES_START | PCS_START);
2622 /* Put PHY into POWER DOWN state: active low */
2623 qphy_clrbits(qmp->pcs, cfg->regs[QPHY_PCS_POWER_DOWN_CONTROL],
2629 static int qmp_combo_usb_init(struct phy *phy)
2631 struct qmp_combo *qmp = phy_get_drvdata(phy);
2634 mutex_lock(&qmp->phy_mutex);
2635 ret = qmp_combo_com_init(qmp, false);
2639 ret = qmp_combo_usb_power_on(phy);
2641 qmp_combo_com_exit(qmp, false);
2645 qmp->usb_init_count++;
2648 mutex_unlock(&qmp->phy_mutex);
2652 static int qmp_combo_usb_exit(struct phy *phy)
2654 struct qmp_combo *qmp = phy_get_drvdata(phy);
2657 mutex_lock(&qmp->phy_mutex);
2658 ret = qmp_combo_usb_power_off(phy);
2662 ret = qmp_combo_com_exit(qmp, false);
2666 qmp->usb_init_count--;
2669 mutex_unlock(&qmp->phy_mutex);
2673 static int qmp_combo_usb_set_mode(struct phy *phy, enum phy_mode mode, int submode)
2675 struct qmp_combo *qmp = phy_get_drvdata(phy);
2682 static const struct phy_ops qmp_combo_usb_phy_ops = {
2683 .init = qmp_combo_usb_init,
2684 .exit = qmp_combo_usb_exit,
2685 .set_mode = qmp_combo_usb_set_mode,
2686 .owner = THIS_MODULE,
2689 static const struct phy_ops qmp_combo_dp_phy_ops = {
2690 .init = qmp_combo_dp_init,
2691 .configure = qmp_combo_dp_configure,
2692 .power_on = qmp_combo_dp_power_on,
2693 .calibrate = qmp_combo_dp_calibrate,
2694 .power_off = qmp_combo_dp_power_off,
2695 .exit = qmp_combo_dp_exit,
2696 .owner = THIS_MODULE,
2699 static void qmp_combo_enable_autonomous_mode(struct qmp_combo *qmp)
2701 const struct qmp_phy_cfg *cfg = qmp->cfg;
2702 void __iomem *pcs_usb = qmp->pcs_usb ?: qmp->pcs;
2703 void __iomem *pcs_misc = qmp->pcs_misc;
2706 if (qmp->mode == PHY_MODE_USB_HOST_SS ||
2707 qmp->mode == PHY_MODE_USB_DEVICE_SS)
2708 intr_mask = ARCVR_DTCT_EN | ALFPS_DTCT_EN;
2710 intr_mask = ARCVR_DTCT_EN | ARCVR_DTCT_EVENT_SEL;
2712 /* Clear any pending interrupts status */
2713 qphy_setbits(pcs_usb, cfg->regs[QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR], IRQ_CLEAR);
2714 /* Writing 1 followed by 0 clears the interrupt */
2715 qphy_clrbits(pcs_usb, cfg->regs[QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR], IRQ_CLEAR);
2717 qphy_clrbits(pcs_usb, cfg->regs[QPHY_PCS_AUTONOMOUS_MODE_CTRL],
2718 ARCVR_DTCT_EN | ALFPS_DTCT_EN | ARCVR_DTCT_EVENT_SEL);
2720 /* Enable required PHY autonomous mode interrupts */
2721 qphy_setbits(pcs_usb, cfg->regs[QPHY_PCS_AUTONOMOUS_MODE_CTRL], intr_mask);
2723 /* Enable i/o clamp_n for autonomous mode */
2725 qphy_clrbits(pcs_misc, QPHY_V3_PCS_MISC_CLAMP_ENABLE, CLAMP_EN);
2728 static void qmp_combo_disable_autonomous_mode(struct qmp_combo *qmp)
2730 const struct qmp_phy_cfg *cfg = qmp->cfg;
2731 void __iomem *pcs_usb = qmp->pcs_usb ?: qmp->pcs;
2732 void __iomem *pcs_misc = qmp->pcs_misc;
2734 /* Disable i/o clamp_n on resume for normal mode */
2736 qphy_setbits(pcs_misc, QPHY_V3_PCS_MISC_CLAMP_ENABLE, CLAMP_EN);
2738 qphy_clrbits(pcs_usb, cfg->regs[QPHY_PCS_AUTONOMOUS_MODE_CTRL],
2739 ARCVR_DTCT_EN | ARCVR_DTCT_EVENT_SEL | ALFPS_DTCT_EN);
2741 qphy_setbits(pcs_usb, cfg->regs[QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR], IRQ_CLEAR);
2742 /* Writing 1 followed by 0 clears the interrupt */
2743 qphy_clrbits(pcs_usb, cfg->regs[QPHY_PCS_LFPS_RXTERM_IRQ_CLEAR], IRQ_CLEAR);
2746 static int __maybe_unused qmp_combo_runtime_suspend(struct device *dev)
2748 struct qmp_combo *qmp = dev_get_drvdata(dev);
2750 dev_vdbg(dev, "Suspending QMP phy, mode:%d\n", qmp->mode);
2752 if (!qmp->init_count) {
2753 dev_vdbg(dev, "PHY not initialized, bailing out\n");
2757 qmp_combo_enable_autonomous_mode(qmp);
2759 clk_disable_unprepare(qmp->pipe_clk);
2760 clk_bulk_disable_unprepare(qmp->num_clks, qmp->clks);
2765 static int __maybe_unused qmp_combo_runtime_resume(struct device *dev)
2767 struct qmp_combo *qmp = dev_get_drvdata(dev);
2770 dev_vdbg(dev, "Resuming QMP phy, mode:%d\n", qmp->mode);
2772 if (!qmp->init_count) {
2773 dev_vdbg(dev, "PHY not initialized, bailing out\n");
2777 ret = clk_bulk_prepare_enable(qmp->num_clks, qmp->clks);
2781 ret = clk_prepare_enable(qmp->pipe_clk);
2783 dev_err(dev, "pipe_clk enable failed, err=%d\n", ret);
2784 clk_bulk_disable_unprepare(qmp->num_clks, qmp->clks);
2788 qmp_combo_disable_autonomous_mode(qmp);
2793 static const struct dev_pm_ops qmp_combo_pm_ops = {
2794 SET_RUNTIME_PM_OPS(qmp_combo_runtime_suspend,
2795 qmp_combo_runtime_resume, NULL)
2798 static int qmp_combo_vreg_init(struct qmp_combo *qmp)
2800 const struct qmp_phy_cfg *cfg = qmp->cfg;
2801 struct device *dev = qmp->dev;
2802 int num = cfg->num_vregs;
2805 qmp->vregs = devm_kcalloc(dev, num, sizeof(*qmp->vregs), GFP_KERNEL);
2809 for (i = 0; i < num; i++)
2810 qmp->vregs[i].supply = cfg->vreg_list[i].name;
2812 ret = devm_regulator_bulk_get(dev, num, qmp->vregs);
2814 dev_err(dev, "failed at devm_regulator_bulk_get\n");
2818 for (i = 0; i < num; i++) {
2819 ret = regulator_set_load(qmp->vregs[i].consumer,
2820 cfg->vreg_list[i].enable_load);
2822 dev_err(dev, "failed to set load at %s\n",
2823 qmp->vregs[i].supply);
2831 static int qmp_combo_reset_init(struct qmp_combo *qmp)
2833 const struct qmp_phy_cfg *cfg = qmp->cfg;
2834 struct device *dev = qmp->dev;
2838 qmp->resets = devm_kcalloc(dev, cfg->num_resets,
2839 sizeof(*qmp->resets), GFP_KERNEL);
2843 for (i = 0; i < cfg->num_resets; i++)
2844 qmp->resets[i].id = cfg->reset_list[i];
2846 ret = devm_reset_control_bulk_get_exclusive(dev, cfg->num_resets, qmp->resets);
2848 return dev_err_probe(dev, ret, "failed to get resets\n");
2853 static int qmp_combo_clk_init(struct qmp_combo *qmp)
2855 struct device *dev = qmp->dev;
2856 int num = ARRAY_SIZE(qmp_combo_phy_clk_l);
2859 qmp->clks = devm_kcalloc(dev, num, sizeof(*qmp->clks), GFP_KERNEL);
2863 for (i = 0; i < num; i++)
2864 qmp->clks[i].id = qmp_combo_phy_clk_l[i];
2866 qmp->num_clks = num;
2868 return devm_clk_bulk_get_optional(dev, num, qmp->clks);
2871 static void phy_clk_release_provider(void *res)
2873 of_clk_del_provider(res);
2877 * Register a fixed rate pipe clock.
2879 * The <s>_pipe_clksrc generated by PHY goes to the GCC that gate
2880 * controls it. The <s>_pipe_clk coming out of the GCC is requested
2881 * by the PHY driver for its operations.
2882 * We register the <s>_pipe_clksrc here. The gcc driver takes care
2883 * of assigning this <s>_pipe_clksrc as parent to <s>_pipe_clk.
2884 * Below picture shows this relationship.
2887 * | PHY block |<<---------------------------------------+
2889 * | +-------+ | +-----+ |
2890 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+
2891 * clk | +-------+ | +-----+
2894 static int phy_pipe_clk_register(struct qmp_combo *qmp, struct device_node *np)
2896 struct clk_fixed_rate *fixed = &qmp->pipe_clk_fixed;
2897 struct clk_init_data init = { };
2900 snprintf(name, sizeof(name), "%s::pipe_clk", dev_name(qmp->dev));
2902 init.ops = &clk_fixed_rate_ops;
2904 /* controllers using QMP phys use 125MHz pipe clock interface */
2905 fixed->fixed_rate = 125000000;
2906 fixed->hw.init = &init;
2908 return devm_clk_hw_register(qmp->dev, &fixed->hw);
2912 * Display Port PLL driver block diagram for branch clocks
2914 * +------------------------------+
2917 * | +-------------------+ |
2918 * | | (DP PLL/VCO) | |
2919 * | +---------+---------+ |
2921 * | +----------+-----------+ |
2922 * | | hsclk_divsel_clk_src | |
2923 * | +----------+-----------+ |
2924 * +------------------------------+
2926 * +---------<---------v------------>----------+
2928 * +--------v----------------+ |
2929 * | dp_phy_pll_link_clk | |
2931 * +--------+----------------+ |
2935 * Input to DISPCC block |
2936 * for link clk, crypto clk |
2937 * and interface clock |
2940 * +--------<------------+-----------------+---<---+
2942 * +----v---------+ +--------v-----+ +--------v------+
2943 * | vco_divided | | vco_divided | | vco_divided |
2944 * | _clk_src | | _clk_src | | _clk_src |
2946 * |divsel_six | | divsel_two | | divsel_four |
2947 * +-------+------+ +-----+--------+ +--------+------+
2949 * v---->----------v-------------<------v
2951 * +----------+-----------------+
2952 * | dp_phy_pll_vco_div_clk |
2953 * +---------+------------------+
2956 * Input to DISPCC block
2957 * for DP pixel clock
2960 static int qmp_dp_pixel_clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
2962 switch (req->rate) {
2963 case 1620000000UL / 2:
2964 case 2700000000UL / 2:
2965 /* 5.4 and 8.1 GHz are same link rate as 2.7GHz, i.e. div 4 and div 6 */
2972 static unsigned long qmp_dp_pixel_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
2974 const struct qmp_combo *qmp;
2975 const struct phy_configure_opts_dp *dp_opts;
2977 qmp = container_of(hw, struct qmp_combo, dp_pixel_hw);
2978 dp_opts = &qmp->dp_opts;
2980 switch (dp_opts->link_rate) {
2982 return 1620000000UL / 2;
2984 return 2700000000UL / 2;
2986 return 5400000000UL / 4;
2988 return 8100000000UL / 6;
2994 static const struct clk_ops qmp_dp_pixel_clk_ops = {
2995 .determine_rate = qmp_dp_pixel_clk_determine_rate,
2996 .recalc_rate = qmp_dp_pixel_clk_recalc_rate,
2999 static int qmp_dp_link_clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
3001 switch (req->rate) {
3012 static unsigned long qmp_dp_link_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
3014 const struct qmp_combo *qmp;
3015 const struct phy_configure_opts_dp *dp_opts;
3017 qmp = container_of(hw, struct qmp_combo, dp_link_hw);
3018 dp_opts = &qmp->dp_opts;
3020 switch (dp_opts->link_rate) {
3025 return dp_opts->link_rate * 100000;
3031 static const struct clk_ops qmp_dp_link_clk_ops = {
3032 .determine_rate = qmp_dp_link_clk_determine_rate,
3033 .recalc_rate = qmp_dp_link_clk_recalc_rate,
3036 static struct clk_hw *qmp_dp_clks_hw_get(struct of_phandle_args *clkspec, void *data)
3038 struct qmp_combo *qmp = data;
3039 unsigned int idx = clkspec->args[0];
3042 pr_err("%s: invalid index %u\n", __func__, idx);
3043 return ERR_PTR(-EINVAL);
3047 return &qmp->dp_link_hw;
3049 return &qmp->dp_pixel_hw;
3052 static int phy_dp_clks_register(struct qmp_combo *qmp, struct device_node *np)
3054 struct clk_init_data init = { };
3058 snprintf(name, sizeof(name), "%s::link_clk", dev_name(qmp->dev));
3059 init.ops = &qmp_dp_link_clk_ops;
3061 qmp->dp_link_hw.init = &init;
3062 ret = devm_clk_hw_register(qmp->dev, &qmp->dp_link_hw);
3066 snprintf(name, sizeof(name), "%s::vco_div_clk", dev_name(qmp->dev));
3067 init.ops = &qmp_dp_pixel_clk_ops;
3069 qmp->dp_pixel_hw.init = &init;
3070 ret = devm_clk_hw_register(qmp->dev, &qmp->dp_pixel_hw);
3077 static struct clk_hw *qmp_combo_clk_hw_get(struct of_phandle_args *clkspec, void *data)
3079 struct qmp_combo *qmp = data;
3081 switch (clkspec->args[0]) {
3082 case QMP_USB43DP_USB3_PIPE_CLK:
3083 return &qmp->pipe_clk_fixed.hw;
3084 case QMP_USB43DP_DP_LINK_CLK:
3085 return &qmp->dp_link_hw;
3086 case QMP_USB43DP_DP_VCO_DIV_CLK:
3087 return &qmp->dp_pixel_hw;
3090 return ERR_PTR(-EINVAL);
3093 static int qmp_combo_register_clocks(struct qmp_combo *qmp, struct device_node *usb_np,
3094 struct device_node *dp_np)
3098 ret = phy_pipe_clk_register(qmp, usb_np);
3102 ret = phy_dp_clks_register(qmp, dp_np);
3107 * Register a single provider for bindings without child nodes.
3109 if (usb_np == qmp->dev->of_node)
3110 return devm_of_clk_add_hw_provider(qmp->dev, qmp_combo_clk_hw_get, qmp);
3113 * Register multiple providers for legacy bindings with child nodes.
3115 ret = of_clk_add_hw_provider(usb_np, of_clk_hw_simple_get,
3116 &qmp->pipe_clk_fixed.hw);
3121 * Roll a devm action because the clock provider is the child node, but
3122 * the child node is not actually a device.
3124 ret = devm_add_action_or_reset(qmp->dev, phy_clk_release_provider, usb_np);
3128 ret = of_clk_add_hw_provider(dp_np, qmp_dp_clks_hw_get, qmp);
3132 return devm_add_action_or_reset(qmp->dev, phy_clk_release_provider, dp_np);
3135 #if IS_ENABLED(CONFIG_TYPEC)
3136 static int qmp_combo_typec_switch_set(struct typec_switch_dev *sw,
3137 enum typec_orientation orientation)
3139 struct qmp_combo *qmp = typec_switch_get_drvdata(sw);
3140 const struct qmp_phy_cfg *cfg = qmp->cfg;
3142 if (orientation == qmp->orientation || orientation == TYPEC_ORIENTATION_NONE)
3145 mutex_lock(&qmp->phy_mutex);
3146 qmp->orientation = orientation;
3148 if (qmp->init_count) {
3149 if (qmp->usb_init_count)
3150 qmp_combo_usb_power_off(qmp->usb_phy);
3151 qmp_combo_com_exit(qmp, true);
3153 qmp_combo_com_init(qmp, true);
3154 if (qmp->usb_init_count)
3155 qmp_combo_usb_power_on(qmp->usb_phy);
3156 if (qmp->dp_init_count)
3157 cfg->dp_aux_init(qmp);
3159 mutex_unlock(&qmp->phy_mutex);
3164 static void qmp_combo_typec_unregister(void *data)
3166 struct qmp_combo *qmp = data;
3168 typec_switch_unregister(qmp->sw);
3171 static int qmp_combo_typec_switch_register(struct qmp_combo *qmp)
3173 struct typec_switch_desc sw_desc = {};
3174 struct device *dev = qmp->dev;
3176 sw_desc.drvdata = qmp;
3177 sw_desc.fwnode = dev->fwnode;
3178 sw_desc.set = qmp_combo_typec_switch_set;
3179 qmp->sw = typec_switch_register(dev, &sw_desc);
3180 if (IS_ERR(qmp->sw)) {
3181 dev_err(dev, "Unable to register typec switch: %pe\n", qmp->sw);
3182 return PTR_ERR(qmp->sw);
3185 return devm_add_action_or_reset(dev, qmp_combo_typec_unregister, qmp);
3188 static int qmp_combo_typec_switch_register(struct qmp_combo *qmp)
3194 #if IS_ENABLED(CONFIG_DRM)
3195 static int qmp_combo_bridge_attach(struct drm_bridge *bridge,
3196 enum drm_bridge_attach_flags flags)
3198 struct qmp_combo *qmp = container_of(bridge, struct qmp_combo, bridge);
3199 struct drm_bridge *next_bridge;
3201 if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR))
3204 next_bridge = devm_drm_of_get_bridge(qmp->dev, qmp->dev->of_node, 0, 0);
3205 if (IS_ERR(next_bridge)) {
3206 dev_err(qmp->dev, "failed to acquire drm_bridge: %pe\n", next_bridge);
3207 return PTR_ERR(next_bridge);
3210 return drm_bridge_attach(bridge->encoder, next_bridge, bridge,
3211 DRM_BRIDGE_ATTACH_NO_CONNECTOR);
3214 static const struct drm_bridge_funcs qmp_combo_bridge_funcs = {
3215 .attach = qmp_combo_bridge_attach,
3218 static int qmp_combo_dp_register_bridge(struct qmp_combo *qmp)
3220 qmp->bridge.funcs = &qmp_combo_bridge_funcs;
3221 qmp->bridge.of_node = qmp->dev->of_node;
3223 return devm_drm_bridge_add(qmp->dev, &qmp->bridge);
3226 static int qmp_combo_dp_register_bridge(struct qmp_combo *qmp)
3232 static int qmp_combo_parse_dt_lecacy_dp(struct qmp_combo *qmp, struct device_node *np)
3234 struct device *dev = qmp->dev;
3237 * Get memory resources from the DP child node:
3238 * Resources are indexed as: tx -> 0; rx -> 1; pcs -> 2;
3239 * tx2 -> 3; rx2 -> 4
3241 * Note that only tx/tx2 and pcs (dp_phy) are used by the DP
3244 qmp->dp_tx = devm_of_iomap(dev, np, 0, NULL);
3245 if (IS_ERR(qmp->dp_tx))
3246 return PTR_ERR(qmp->dp_tx);
3248 qmp->dp_dp_phy = devm_of_iomap(dev, np, 2, NULL);
3249 if (IS_ERR(qmp->dp_dp_phy))
3250 return PTR_ERR(qmp->dp_dp_phy);
3252 qmp->dp_tx2 = devm_of_iomap(dev, np, 3, NULL);
3253 if (IS_ERR(qmp->dp_tx2))
3254 return PTR_ERR(qmp->dp_tx2);
3259 static int qmp_combo_parse_dt_lecacy_usb(struct qmp_combo *qmp, struct device_node *np)
3261 const struct qmp_phy_cfg *cfg = qmp->cfg;
3262 struct device *dev = qmp->dev;
3265 * Get memory resources from the USB child node:
3266 * Resources are indexed as: tx -> 0; rx -> 1; pcs -> 2;
3267 * tx2 -> 3; rx2 -> 4; pcs_misc (optional) -> 5
3269 qmp->tx = devm_of_iomap(dev, np, 0, NULL);
3270 if (IS_ERR(qmp->tx))
3271 return PTR_ERR(qmp->tx);
3273 qmp->rx = devm_of_iomap(dev, np, 1, NULL);
3274 if (IS_ERR(qmp->rx))
3275 return PTR_ERR(qmp->rx);
3277 qmp->pcs = devm_of_iomap(dev, np, 2, NULL);
3278 if (IS_ERR(qmp->pcs))
3279 return PTR_ERR(qmp->pcs);
3281 if (cfg->pcs_usb_offset)
3282 qmp->pcs_usb = qmp->pcs + cfg->pcs_usb_offset;
3284 qmp->tx2 = devm_of_iomap(dev, np, 3, NULL);
3285 if (IS_ERR(qmp->tx2))
3286 return PTR_ERR(qmp->tx2);
3288 qmp->rx2 = devm_of_iomap(dev, np, 4, NULL);
3289 if (IS_ERR(qmp->rx2))
3290 return PTR_ERR(qmp->rx2);
3292 qmp->pcs_misc = devm_of_iomap(dev, np, 5, NULL);
3293 if (IS_ERR(qmp->pcs_misc)) {
3294 dev_vdbg(dev, "PHY pcs_misc-reg not used\n");
3295 qmp->pcs_misc = NULL;
3298 qmp->pipe_clk = devm_get_clk_from_child(dev, np, NULL);
3299 if (IS_ERR(qmp->pipe_clk)) {
3300 return dev_err_probe(dev, PTR_ERR(qmp->pipe_clk),
3301 "failed to get pipe clock\n");
3307 static int qmp_combo_parse_dt_legacy(struct qmp_combo *qmp, struct device_node *usb_np,
3308 struct device_node *dp_np)
3310 struct platform_device *pdev = to_platform_device(qmp->dev);
3313 qmp->serdes = devm_platform_ioremap_resource(pdev, 0);
3314 if (IS_ERR(qmp->serdes))
3315 return PTR_ERR(qmp->serdes);
3317 qmp->com = devm_platform_ioremap_resource(pdev, 1);
3318 if (IS_ERR(qmp->com))
3319 return PTR_ERR(qmp->com);
3321 qmp->dp_serdes = devm_platform_ioremap_resource(pdev, 2);
3322 if (IS_ERR(qmp->dp_serdes))
3323 return PTR_ERR(qmp->dp_serdes);
3325 ret = qmp_combo_parse_dt_lecacy_usb(qmp, usb_np);
3329 ret = qmp_combo_parse_dt_lecacy_dp(qmp, dp_np);
3333 ret = devm_clk_bulk_get_all(qmp->dev, &qmp->clks);
3337 qmp->num_clks = ret;
3342 static int qmp_combo_parse_dt(struct qmp_combo *qmp)
3344 struct platform_device *pdev = to_platform_device(qmp->dev);
3345 const struct qmp_phy_cfg *cfg = qmp->cfg;
3346 const struct qmp_combo_offsets *offs = cfg->offsets;
3347 struct device *dev = qmp->dev;
3354 base = devm_platform_ioremap_resource(pdev, 0);
3356 return PTR_ERR(base);
3358 qmp->com = base + offs->com;
3359 qmp->tx = base + offs->txa;
3360 qmp->rx = base + offs->rxa;
3361 qmp->tx2 = base + offs->txb;
3362 qmp->rx2 = base + offs->rxb;
3364 qmp->serdes = base + offs->usb3_serdes;
3365 qmp->pcs_misc = base + offs->usb3_pcs_misc;
3366 qmp->pcs = base + offs->usb3_pcs;
3367 qmp->pcs_usb = base + offs->usb3_pcs_usb;
3369 qmp->dp_serdes = base + offs->dp_serdes;
3371 qmp->dp_tx = base + offs->dp_txa;
3372 qmp->dp_tx2 = base + offs->dp_txb;
3374 qmp->dp_tx = base + offs->txa;
3375 qmp->dp_tx2 = base + offs->txb;
3377 qmp->dp_dp_phy = base + offs->dp_dp_phy;
3379 ret = qmp_combo_clk_init(qmp);
3383 qmp->pipe_clk = devm_clk_get(dev, "usb3_pipe");
3384 if (IS_ERR(qmp->pipe_clk)) {
3385 return dev_err_probe(dev, PTR_ERR(qmp->pipe_clk),
3386 "failed to get usb3_pipe clock\n");
3392 static struct phy *qmp_combo_phy_xlate(struct device *dev, struct of_phandle_args *args)
3394 struct qmp_combo *qmp = dev_get_drvdata(dev);
3396 if (args->args_count == 0)
3397 return ERR_PTR(-EINVAL);
3399 switch (args->args[0]) {
3400 case QMP_USB43DP_USB3_PHY:
3401 return qmp->usb_phy;
3402 case QMP_USB43DP_DP_PHY:
3406 return ERR_PTR(-EINVAL);
3409 static int qmp_combo_probe(struct platform_device *pdev)
3411 struct qmp_combo *qmp;
3412 struct device *dev = &pdev->dev;
3413 struct device_node *dp_np, *usb_np;
3414 struct phy_provider *phy_provider;
3417 qmp = devm_kzalloc(dev, sizeof(*qmp), GFP_KERNEL);
3423 qmp->orientation = TYPEC_ORIENTATION_NORMAL;
3425 qmp->cfg = of_device_get_match_data(dev);
3429 mutex_init(&qmp->phy_mutex);
3431 ret = qmp_combo_reset_init(qmp);
3435 ret = qmp_combo_vreg_init(qmp);
3439 ret = qmp_combo_typec_switch_register(qmp);
3443 ret = qmp_combo_dp_register_bridge(qmp);
3447 /* Check for legacy binding with child nodes. */
3448 usb_np = of_get_child_by_name(dev->of_node, "usb3-phy");
3450 dp_np = of_get_child_by_name(dev->of_node, "dp-phy");
3452 of_node_put(usb_np);
3456 ret = qmp_combo_parse_dt_legacy(qmp, usb_np, dp_np);
3458 usb_np = of_node_get(dev->of_node);
3459 dp_np = of_node_get(dev->of_node);
3461 ret = qmp_combo_parse_dt(qmp);
3466 pm_runtime_set_active(dev);
3467 ret = devm_pm_runtime_enable(dev);
3471 * Prevent runtime pm from being ON by default. Users can enable
3472 * it using power/control in sysfs.
3474 pm_runtime_forbid(dev);
3476 ret = qmp_combo_register_clocks(qmp, usb_np, dp_np);
3480 qmp->usb_phy = devm_phy_create(dev, usb_np, &qmp_combo_usb_phy_ops);
3481 if (IS_ERR(qmp->usb_phy)) {
3482 ret = PTR_ERR(qmp->usb_phy);
3483 dev_err(dev, "failed to create USB PHY: %d\n", ret);
3487 phy_set_drvdata(qmp->usb_phy, qmp);
3489 qmp->dp_phy = devm_phy_create(dev, dp_np, &qmp_combo_dp_phy_ops);
3490 if (IS_ERR(qmp->dp_phy)) {
3491 ret = PTR_ERR(qmp->dp_phy);
3492 dev_err(dev, "failed to create DP PHY: %d\n", ret);
3496 phy_set_drvdata(qmp->dp_phy, qmp);
3498 dev_set_drvdata(dev, qmp);
3500 if (usb_np == dev->of_node)
3501 phy_provider = devm_of_phy_provider_register(dev, qmp_combo_phy_xlate);
3503 phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
3505 of_node_put(usb_np);
3508 return PTR_ERR_OR_ZERO(phy_provider);
3511 of_node_put(usb_np);
3516 static const struct of_device_id qmp_combo_of_match_table[] = {
3518 .compatible = "qcom,sc7180-qmp-usb3-dp-phy",
3519 .data = &sc7180_usb3dpphy_cfg,
3522 .compatible = "qcom,sc7280-qmp-usb3-dp-phy",
3523 .data = &sm8250_usb3dpphy_cfg,
3526 .compatible = "qcom,sc8180x-qmp-usb3-dp-phy",
3527 .data = &sc8180x_usb3dpphy_cfg,
3530 .compatible = "qcom,sc8280xp-qmp-usb43dp-phy",
3531 .data = &sc8280xp_usb43dpphy_cfg,
3534 .compatible = "qcom,sdm845-qmp-usb3-dp-phy",
3535 .data = &sdm845_usb3dpphy_cfg,
3538 .compatible = "qcom,sm6350-qmp-usb3-dp-phy",
3539 .data = &sm6350_usb3dpphy_cfg,
3542 .compatible = "qcom,sm8150-qmp-usb3-dp-phy",
3543 .data = &sc8180x_usb3dpphy_cfg,
3546 .compatible = "qcom,sm8250-qmp-usb3-dp-phy",
3547 .data = &sm8250_usb3dpphy_cfg,
3550 .compatible = "qcom,sm8350-qmp-usb3-dp-phy",
3551 .data = &sm8350_usb3dpphy_cfg,
3554 .compatible = "qcom,sm8450-qmp-usb3-dp-phy",
3555 .data = &sm8350_usb3dpphy_cfg,
3558 .compatible = "qcom,sm8550-qmp-usb3-dp-phy",
3559 .data = &sm8550_usb3dpphy_cfg,
3563 MODULE_DEVICE_TABLE(of, qmp_combo_of_match_table);
3565 static struct platform_driver qmp_combo_driver = {
3566 .probe = qmp_combo_probe,
3568 .name = "qcom-qmp-combo-phy",
3569 .pm = &qmp_combo_pm_ops,
3570 .of_match_table = qmp_combo_of_match_table,
3574 module_platform_driver(qmp_combo_driver);
3577 MODULE_DESCRIPTION("Qualcomm QMP USB+DP combo PHY driver");
3578 MODULE_LICENSE("GPL v2");