xref: /linux/drivers/phy/cadence/phy-cadence-sierra.c (revision 612f9fcb435fdc9abd46b6339c9000cef6d323a2)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Cadence Sierra PHY Driver
4  *
5  * Copyright (c) 2018 Cadence Design Systems
6  * Author: Alan Douglas <adouglas@cadence.com>
7  *
8  */
9 #include <linux/clk.h>
10 #include <linux/clk-provider.h>
11 #include <linux/delay.h>
12 #include <linux/err.h>
13 #include <linux/io.h>
14 #include <linux/module.h>
15 #include <linux/phy/phy.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/regmap.h>
19 #include <linux/reset.h>
20 #include <linux/slab.h>
21 #include <linux/of.h>
22 #include <linux/of_platform.h>
23 #include <dt-bindings/phy/phy.h>
24 #include <dt-bindings/phy/phy-cadence.h>
25 
26 #define NUM_SSC_MODE		3
27 #define NUM_PHY_TYPE		5
28 
29 /* PHY register offsets */
30 #define SIERRA_COMMON_CDB_OFFSET			0x0
31 #define SIERRA_MACRO_ID_REG				0x0
32 #define SIERRA_CMN_PLLLC_GEN_PREG			0x42
33 #define SIERRA_CMN_PLLLC_FBDIV_INT_MODE0_PREG		0x43
34 #define SIERRA_CMN_PLLLC_DCOCAL_CTRL_PREG		0x45
35 #define SIERRA_CMN_PLLLC_INIT_PREG			0x46
36 #define SIERRA_CMN_PLLLC_ITERTMR_PREG			0x47
37 #define SIERRA_CMN_PLLLC_MODE_PREG			0x48
38 #define SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG		0x49
39 #define SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG		0x4A
40 #define SIERRA_CMN_PLLLC_LOCK_CNTSTART_PREG		0x4B
41 #define SIERRA_CMN_PLLLC_LOCKSEARCH_PREG		0x4C
42 #define SIERRA_CMN_PLLLC_CLK1_PREG			0x4D
43 #define SIERRA_CMN_PLLLC_CLK0_PREG			0x4E
44 #define SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG		0x4F
45 #define SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG		0x50
46 #define SIERRA_CMN_PLLLC_DSMCORR_PREG			0x51
47 #define SIERRA_CMN_PLLLC_SS_PREG			0x52
48 #define SIERRA_CMN_PLLLC_SS_AMP_STEP_SIZE_PREG		0x53
49 #define SIERRA_CMN_PLLLC_SSTWOPT_PREG			0x54
50 #define SIERRA_CMN_PLLCSM_PLLEN_TMR_PREG		0x5D
51 #define SIERRA_CMN_PLLCSM_PLLPRE_TMR_PREG		0x5E
52 #define SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG	0x62
53 #define SIERRA_CMN_PLLLC_LOCK_DELAY_CTRL_PREG		0x63
54 #define SIERRA_SDOSCCAL_CLK_CNT_PREG			0x6E
55 #define SIERRA_CMN_REFRCV_PREG				0x98
56 #define SIERRA_CMN_RESCAL_CTRLA_PREG			0xA0
57 #define SIERRA_CMN_REFRCV1_PREG				0xB8
58 #define SIERRA_CMN_PLLLC1_GEN_PREG			0xC2
59 #define SIERRA_CMN_PLLLC1_FBDIV_INT_PREG		0xC3
60 #define SIERRA_CMN_PLLLC1_DCOCAL_CTRL_PREG		0xC5
61 #define SIERRA_CMN_PLLLC1_LF_COEFF_MODE0_PREG		0xCA
62 #define SIERRA_CMN_PLLLC1_CLK0_PREG			0xCE
63 #define SIERRA_CMN_PLLLC1_BWCAL_MODE0_PREG		0xD0
64 #define SIERRA_CMN_PLLLC1_SS_TIME_STEPSIZE_MODE_PREG	0xE2
65 
66 #define SIERRA_LANE_CDB_OFFSET(ln, block_offset, reg_offset)	\
67 				((0x4000 << (block_offset)) + \
68 				 (((ln) << 9) << (reg_offset)))
69 
70 #define SIERRA_DET_STANDEC_A_PREG			0x000
71 #define SIERRA_DET_STANDEC_B_PREG			0x001
72 #define SIERRA_DET_STANDEC_C_PREG			0x002
73 #define SIERRA_DET_STANDEC_D_PREG			0x003
74 #define SIERRA_DET_STANDEC_E_PREG			0x004
75 #define SIERRA_PSM_LANECAL_DLY_A1_RESETS_PREG		0x008
76 #define SIERRA_PSM_A0IN_TMR_PREG			0x009
77 #define SIERRA_PSM_A3IN_TMR_PREG			0x00C
78 #define SIERRA_PSM_DIAG_PREG				0x015
79 #define SIERRA_PSC_LN_A3_PREG				0x023
80 #define SIERRA_PSC_LN_A4_PREG				0x024
81 #define SIERRA_PSC_LN_IDLE_PREG				0x026
82 #define SIERRA_PSC_TX_A0_PREG				0x028
83 #define SIERRA_PSC_TX_A1_PREG				0x029
84 #define SIERRA_PSC_TX_A2_PREG				0x02A
85 #define SIERRA_PSC_TX_A3_PREG				0x02B
86 #define SIERRA_PSC_RX_A0_PREG				0x030
87 #define SIERRA_PSC_RX_A1_PREG				0x031
88 #define SIERRA_PSC_RX_A2_PREG				0x032
89 #define SIERRA_PSC_RX_A3_PREG				0x033
90 #define SIERRA_PLLCTRL_FBDIV_MODE01_PREG		0x039
91 #define SIERRA_PLLCTRL_SUBRATE_PREG			0x03A
92 #define SIERRA_PLLCTRL_GEN_A_PREG			0x03B
93 #define SIERRA_PLLCTRL_GEN_D_PREG			0x03E
94 #define SIERRA_PLLCTRL_CPGAIN_MODE_PREG			0x03F
95 #define SIERRA_PLLCTRL_STATUS_PREG			0x044
96 #define SIERRA_CLKPATH_BIASTRIM_PREG			0x04B
97 #define SIERRA_DFE_BIASTRIM_PREG			0x04C
98 #define SIERRA_DRVCTRL_ATTEN_PREG			0x06A
99 #define SIERRA_DRVCTRL_BOOST_PREG			0x06F
100 #define SIERRA_LANE_TX_RECEIVER_DETECT_PREG		0x071
101 #define SIERRA_TX_RCVDET_OVRD_PREG			0x072
102 #define SIERRA_CLKPATHCTRL_TMR_PREG			0x081
103 #define SIERRA_RX_CREQ_FLTR_A_MODE3_PREG		0x085
104 #define SIERRA_RX_CREQ_FLTR_A_MODE2_PREG		0x086
105 #define SIERRA_RX_CREQ_FLTR_A_MODE1_PREG		0x087
106 #define SIERRA_RX_CREQ_FLTR_A_MODE0_PREG		0x088
107 #define SIERRA_CREQ_DCBIASATTEN_OVR_PREG		0x08C
108 #define SIERRA_CREQ_CCLKDET_MODE01_PREG			0x08E
109 #define SIERRA_RX_CTLE_CAL_PREG				0x08F
110 #define SIERRA_RX_CTLE_MAINTENANCE_PREG			0x091
111 #define SIERRA_CREQ_FSMCLK_SEL_PREG			0x092
112 #define SIERRA_CREQ_EQ_CTRL_PREG			0x093
113 #define SIERRA_CREQ_SPARE_PREG				0x096
114 #define SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG		0x097
115 #define SIERRA_CTLELUT_CTRL_PREG			0x098
116 #define SIERRA_DEQ_BLK_TAU_CTRL1_PREG			0x0AC
117 #define SIERRA_DEQ_BLK_TAU_CTRL4_PREG			0x0AF
118 #define SIERRA_DFE_ECMP_RATESEL_PREG			0x0C0
119 #define SIERRA_DFE_SMP_RATESEL_PREG			0x0C1
120 #define SIERRA_DEQ_PHALIGN_CTRL				0x0C4
121 #define SIERRA_DEQ_CONCUR_CTRL1_PREG			0x0C8
122 #define SIERRA_DEQ_CONCUR_CTRL2_PREG			0x0C9
123 #define SIERRA_DEQ_EPIPWR_CTRL2_PREG			0x0CD
124 #define SIERRA_DEQ_FAST_MAINT_CYCLES_PREG		0x0CE
125 #define SIERRA_DEQ_ERRCMP_CTRL_PREG			0x0D0
126 #define SIERRA_DEQ_OFFSET_CTRL_PREG			0x0D8
127 #define SIERRA_DEQ_GAIN_CTRL_PREG			0x0E0
128 #define SIERRA_DEQ_VGATUNE_CTRL_PREG			0x0E1
129 #define SIERRA_DEQ_GLUT0				0x0E8
130 #define SIERRA_DEQ_GLUT1				0x0E9
131 #define SIERRA_DEQ_GLUT2				0x0EA
132 #define SIERRA_DEQ_GLUT3				0x0EB
133 #define SIERRA_DEQ_GLUT4				0x0EC
134 #define SIERRA_DEQ_GLUT5				0x0ED
135 #define SIERRA_DEQ_GLUT6				0x0EE
136 #define SIERRA_DEQ_GLUT7				0x0EF
137 #define SIERRA_DEQ_GLUT8				0x0F0
138 #define SIERRA_DEQ_GLUT9				0x0F1
139 #define SIERRA_DEQ_GLUT10				0x0F2
140 #define SIERRA_DEQ_GLUT11				0x0F3
141 #define SIERRA_DEQ_GLUT12				0x0F4
142 #define SIERRA_DEQ_GLUT13				0x0F5
143 #define SIERRA_DEQ_GLUT14				0x0F6
144 #define SIERRA_DEQ_GLUT15				0x0F7
145 #define SIERRA_DEQ_GLUT16				0x0F8
146 #define SIERRA_POSTPRECUR_EN_CEPH_CTRL_PREG		0x0F9
147 #define SIERRA_TAU_EN_CEPH2TO0_PREG			0x0FB
148 #define SIERRA_TAU_EN_CEPH5TO3_PREG			0x0FC
149 #define SIERRA_DEQ_ALUT0				0x108
150 #define SIERRA_DEQ_ALUT1				0x109
151 #define SIERRA_DEQ_ALUT2				0x10A
152 #define SIERRA_DEQ_ALUT3				0x10B
153 #define SIERRA_DEQ_ALUT4				0x10C
154 #define SIERRA_DEQ_ALUT5				0x10D
155 #define SIERRA_DEQ_ALUT6				0x10E
156 #define SIERRA_DEQ_ALUT7				0x10F
157 #define SIERRA_DEQ_ALUT8				0x110
158 #define SIERRA_DEQ_ALUT9				0x111
159 #define SIERRA_DEQ_ALUT10				0x112
160 #define SIERRA_DEQ_ALUT11				0x113
161 #define SIERRA_DEQ_ALUT12				0x114
162 #define SIERRA_DEQ_ALUT13				0x115
163 #define SIERRA_OEPH_EN_CTRL_PREG			0x124
164 #define SIERRA_DEQ_DFETAP_CTRL_PREG			0x128
165 #define SIERRA_DEQ_DFETAP0				0x129
166 #define SIERRA_DEQ_DFETAP1				0x12B
167 #define SIERRA_DEQ_DFETAP2				0x12D
168 #define SIERRA_DEQ_DFETAP3				0x12F
169 #define SIERRA_DEQ_DFETAP4				0x131
170 #define SIERRA_DFE_EN_1010_IGNORE_PREG			0x134
171 #define SIERRA_DEQ_PRECUR_PREG				0x138
172 #define SIERRA_DEQ_POSTCUR_PREG				0x140
173 #define SIERRA_DEQ_POSTCUR_DECR_PREG			0x142
174 #define SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG		0x150
175 #define SIERRA_DEQ_TAU_CTRL2_PREG			0x151
176 #define SIERRA_DEQ_TAU_CTRL3_PREG			0x152
177 #define SIERRA_DEQ_OPENEYE_CTRL_PREG			0x158
178 #define SIERRA_DEQ_CONCUR_EPIOFFSET_MODE_PREG		0x159
179 #define SIERRA_DEQ_PICTRL_PREG				0x161
180 #define SIERRA_CPICAL_TMRVAL_MODE1_PREG			0x170
181 #define SIERRA_CPICAL_TMRVAL_MODE0_PREG			0x171
182 #define SIERRA_CPICAL_PICNT_MODE1_PREG			0x174
183 #define SIERRA_CPI_OUTBUF_RATESEL_PREG			0x17C
184 #define SIERRA_CPI_RESBIAS_BIN_PREG			0x17E
185 #define SIERRA_CPI_TRIM_PREG				0x17F
186 #define SIERRA_CPICAL_RES_STARTCODE_MODE23_PREG		0x183
187 #define SIERRA_CPICAL_RES_STARTCODE_MODE01_PREG		0x184
188 #define SIERRA_EPI_CTRL_PREG				0x187
189 #define SIERRA_LFPSDET_SUPPORT_PREG			0x188
190 #define SIERRA_LFPSFILT_NS_PREG				0x18A
191 #define SIERRA_LFPSFILT_RD_PREG				0x18B
192 #define SIERRA_LFPSFILT_MP_PREG				0x18C
193 #define SIERRA_SIGDET_SUPPORT_PREG			0x190
194 #define SIERRA_SDFILT_H2L_A_PREG			0x191
195 #define SIERRA_SDFILT_L2H_PREG				0x193
196 #define SIERRA_RXBUFFER_CTLECTRL_PREG			0x19E
197 #define SIERRA_RXBUFFER_RCDFECTRL_PREG			0x19F
198 #define SIERRA_RXBUFFER_DFECTRL_PREG			0x1A0
199 #define SIERRA_LN_SPARE_REG_PREG			0x1B0
200 #define SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG		0x14F
201 #define SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG		0x150
202 
203 /* PHY PCS common registers */
204 #define SIERRA_PHY_PCS_COMMON_OFFSET(block_offset)	\
205 				     (0xc000 << (block_offset))
206 #define SIERRA_PHY_PIPE_CMN_CTRL1			0x0
207 #define SIERRA_PHY_PLL_CFG				0xe
208 
209 /* PHY PCS lane registers */
210 #define SIERRA_PHY_PCS_LANE_CDB_OFFSET(ln, block_offset, reg_offset)	\
211 				       ((0xD000 << (block_offset)) +	\
212 				       (((ln) << 8) << (reg_offset)))
213 
214 #define SIERRA_PHY_ISO_LINK_CTRL			0xB
215 
216 /* PHY PMA common registers */
217 #define SIERRA_PHY_PMA_COMMON_OFFSET(block_offset)	\
218 				     (0xE000 << (block_offset))
219 #define SIERRA_PHY_PMA_CMN_CTRL				0x000
220 
221 /* PHY PMA lane registers */
222 #define SIERRA_PHY_PMA_LANE_CDB_OFFSET(ln, block_offset, reg_offset)	\
223 				       ((0xF000 << (block_offset)) +	\
224 				       (((ln) << 8) << (reg_offset)))
225 
226 #define SIERRA_PHY_PMA_XCVR_CTRL			0x000
227 
228 #define SIERRA_MACRO_ID					0x00007364
229 #define SIERRA_MAX_LANES				16
230 #define PLL_LOCK_TIME					100000
231 
232 #define CDNS_SIERRA_OUTPUT_CLOCKS			3
233 #define CDNS_SIERRA_INPUT_CLOCKS			3
234 enum cdns_sierra_clock_input {
235 	PHY_CLK,
236 	CMN_REFCLK_DIG_DIV,
237 	CMN_REFCLK1_DIG_DIV,
238 };
239 
240 #define SIERRA_NUM_CMN_PLLC				2
241 #define SIERRA_NUM_CMN_PLLC_PARENTS			2
242 
243 static const struct reg_field macro_id_type =
244 				REG_FIELD(SIERRA_MACRO_ID_REG, 0, 15);
245 static const struct reg_field phy_pll_cfg_1 =
246 				REG_FIELD(SIERRA_PHY_PLL_CFG, 1, 1);
247 static const struct reg_field pma_cmn_ready =
248 				REG_FIELD(SIERRA_PHY_PMA_CMN_CTRL, 0, 0);
249 static const struct reg_field pllctrl_lock =
250 				REG_FIELD(SIERRA_PLLCTRL_STATUS_PREG, 0, 0);
251 static const struct reg_field phy_iso_link_ctrl_1 =
252 				REG_FIELD(SIERRA_PHY_ISO_LINK_CTRL, 1, 1);
253 static const struct reg_field cmn_plllc_clk1outdiv_preg =
254 				REG_FIELD(SIERRA_CMN_PLLLC_CLK1_PREG, 0, 6);
255 static const struct reg_field cmn_plllc_clk1_en_preg =
256 				REG_FIELD(SIERRA_CMN_PLLLC_CLK1_PREG, 12, 12);
257 
258 static const char * const clk_names[] = {
259 	[CDNS_SIERRA_PLL_CMNLC] = "pll_cmnlc",
260 	[CDNS_SIERRA_PLL_CMNLC1] = "pll_cmnlc1",
261 	[CDNS_SIERRA_DERIVED_REFCLK] = "refclk_der",
262 };
263 
264 enum cdns_sierra_cmn_plllc {
265 	CMN_PLLLC,
266 	CMN_PLLLC1,
267 };
268 
269 struct cdns_sierra_pll_mux_reg_fields {
270 	struct reg_field	pfdclk_sel_preg;
271 	struct reg_field	plllc1en_field;
272 	struct reg_field	termen_field;
273 };
274 
275 static const struct cdns_sierra_pll_mux_reg_fields cmn_plllc_pfdclk1_sel_preg[] = {
276 	[CMN_PLLLC] = {
277 		.pfdclk_sel_preg = REG_FIELD(SIERRA_CMN_PLLLC_GEN_PREG, 1, 1),
278 		.plllc1en_field = REG_FIELD(SIERRA_CMN_REFRCV1_PREG, 8, 8),
279 		.termen_field = REG_FIELD(SIERRA_CMN_REFRCV1_PREG, 0, 0),
280 	},
281 	[CMN_PLLLC1] = {
282 		.pfdclk_sel_preg = REG_FIELD(SIERRA_CMN_PLLLC1_GEN_PREG, 1, 1),
283 		.plllc1en_field = REG_FIELD(SIERRA_CMN_REFRCV_PREG, 8, 8),
284 		.termen_field = REG_FIELD(SIERRA_CMN_REFRCV_PREG, 0, 0),
285 	},
286 };
287 
288 struct cdns_sierra_pll_mux {
289 	struct clk_hw		hw;
290 	struct regmap_field	*pfdclk_sel_preg;
291 	struct regmap_field	*plllc1en_field;
292 	struct regmap_field	*termen_field;
293 	struct clk_init_data	clk_data;
294 };
295 
296 #define to_cdns_sierra_pll_mux(_hw)	\
297 			container_of(_hw, struct cdns_sierra_pll_mux, hw)
298 
299 #define PLL0_REFCLK_NAME "pll0_refclk"
300 #define PLL1_REFCLK_NAME "pll1_refclk"
301 
302 static const struct clk_parent_data pll_mux_parent_data[][SIERRA_NUM_CMN_PLLC_PARENTS] = {
303 	[CMN_PLLLC] = {
304 		{ .fw_name = PLL0_REFCLK_NAME },
305 		{ .fw_name = PLL1_REFCLK_NAME }
306 	},
307 	[CMN_PLLLC1] = {
308 		{ .fw_name = PLL1_REFCLK_NAME },
309 		{ .fw_name = PLL0_REFCLK_NAME }
310 	},
311 };
312 
313 static const u32 cdns_sierra_pll_mux_table[][SIERRA_NUM_CMN_PLLC_PARENTS] = {
314 	[CMN_PLLLC] = { 0, 1 },
315 	[CMN_PLLLC1] = { 1, 0 },
316 };
317 
318 struct cdns_sierra_derived_refclk {
319 	struct clk_hw           hw;
320 	struct regmap_field     *cmn_plllc_clk1outdiv_preg;
321 	struct regmap_field     *cmn_plllc_clk1_en_preg;
322 	struct clk_init_data	clk_data;
323 };
324 
325 #define to_cdns_sierra_derived_refclk(_hw)	\
326 			container_of(_hw, struct cdns_sierra_derived_refclk, hw)
327 
328 enum cdns_sierra_phy_type {
329 	TYPE_NONE,
330 	TYPE_PCIE,
331 	TYPE_USB,
332 	TYPE_SGMII,
333 	TYPE_QSGMII
334 };
335 
336 enum cdns_sierra_ssc_mode {
337 	NO_SSC,
338 	EXTERNAL_SSC,
339 	INTERNAL_SSC
340 };
341 
342 struct cdns_sierra_inst {
343 	struct phy *phy;
344 	enum cdns_sierra_phy_type phy_type;
345 	u32 num_lanes;
346 	u32 mlane;
347 	struct reset_control *lnk_rst;
348 	enum cdns_sierra_ssc_mode ssc_mode;
349 };
350 
351 struct cdns_reg_pairs {
352 	u16 val;
353 	u32 off;
354 };
355 
356 struct cdns_sierra_vals {
357 	const struct cdns_reg_pairs *reg_pairs;
358 	u32 num_regs;
359 };
360 
361 struct cdns_sierra_data {
362 	u32 id_value;
363 	u8 block_offset_shift;
364 	u8 reg_offset_shift;
365 	const struct cdns_sierra_vals *pcs_cmn_vals[NUM_PHY_TYPE][NUM_PHY_TYPE]
366 						   [NUM_SSC_MODE];
367 	const struct cdns_sierra_vals *phy_pma_ln_vals[NUM_PHY_TYPE][NUM_PHY_TYPE]
368 						      [NUM_SSC_MODE];
369 	const struct cdns_sierra_vals *pma_cmn_vals[NUM_PHY_TYPE][NUM_PHY_TYPE]
370 						   [NUM_SSC_MODE];
371 	const struct cdns_sierra_vals *pma_ln_vals[NUM_PHY_TYPE][NUM_PHY_TYPE]
372 						  [NUM_SSC_MODE];
373 };
374 
375 struct cdns_regmap_cdb_context {
376 	struct device *dev;
377 	void __iomem *base;
378 	u8 reg_offset_shift;
379 };
380 
381 struct cdns_sierra_phy {
382 	struct device *dev;
383 	const struct cdns_sierra_data *init_data;
384 	struct cdns_sierra_inst phys[SIERRA_MAX_LANES];
385 	struct reset_control *phy_rst;
386 	struct reset_control *apb_rst;
387 	struct regmap *regmap_lane_cdb[SIERRA_MAX_LANES];
388 	struct regmap *regmap_phy_pcs_common_cdb;
389 	struct regmap *regmap_phy_pcs_lane_cdb[SIERRA_MAX_LANES];
390 	struct regmap *regmap_phy_pma_common_cdb;
391 	struct regmap *regmap_phy_pma_lane_cdb[SIERRA_MAX_LANES];
392 	struct regmap *regmap_common_cdb;
393 	struct regmap_field *macro_id_type;
394 	struct regmap_field *phy_pll_cfg_1;
395 	struct regmap_field *pma_cmn_ready;
396 	struct regmap_field *pllctrl_lock[SIERRA_MAX_LANES];
397 	struct regmap_field *phy_iso_link_ctrl_1[SIERRA_MAX_LANES];
398 	struct regmap_field *cmn_refrcv_refclk_plllc1en_preg[SIERRA_NUM_CMN_PLLC];
399 	struct regmap_field *cmn_refrcv_refclk_termen_preg[SIERRA_NUM_CMN_PLLC];
400 	struct regmap_field *cmn_plllc_pfdclk1_sel_preg[SIERRA_NUM_CMN_PLLC];
401 	struct clk *input_clks[CDNS_SIERRA_INPUT_CLOCKS];
402 	int nsubnodes;
403 	u32 num_lanes;
404 	bool autoconf;
405 	int already_configured;
406 	struct clk *pll_clks[SIERRA_NUM_CMN_PLLC];
407 	struct clk_hw_onecell_data clk_data;
408 };
409 
410 static int cdns_regmap_write(void *context, unsigned int reg, unsigned int val)
411 {
412 	struct cdns_regmap_cdb_context *ctx = context;
413 	u32 offset = reg << ctx->reg_offset_shift;
414 
415 	writew(val, ctx->base + offset);
416 
417 	return 0;
418 }
419 
420 static int cdns_regmap_read(void *context, unsigned int reg, unsigned int *val)
421 {
422 	struct cdns_regmap_cdb_context *ctx = context;
423 	u32 offset = reg << ctx->reg_offset_shift;
424 
425 	*val = readw(ctx->base + offset);
426 	return 0;
427 }
428 
429 #define SIERRA_LANE_CDB_REGMAP_CONF(n) \
430 { \
431 	.name = "sierra_lane" n "_cdb", \
432 	.reg_stride = 1, \
433 	.fast_io = true, \
434 	.reg_write = cdns_regmap_write, \
435 	.reg_read = cdns_regmap_read, \
436 }
437 
438 static const struct regmap_config cdns_sierra_lane_cdb_config[] = {
439 	SIERRA_LANE_CDB_REGMAP_CONF("0"),
440 	SIERRA_LANE_CDB_REGMAP_CONF("1"),
441 	SIERRA_LANE_CDB_REGMAP_CONF("2"),
442 	SIERRA_LANE_CDB_REGMAP_CONF("3"),
443 	SIERRA_LANE_CDB_REGMAP_CONF("4"),
444 	SIERRA_LANE_CDB_REGMAP_CONF("5"),
445 	SIERRA_LANE_CDB_REGMAP_CONF("6"),
446 	SIERRA_LANE_CDB_REGMAP_CONF("7"),
447 	SIERRA_LANE_CDB_REGMAP_CONF("8"),
448 	SIERRA_LANE_CDB_REGMAP_CONF("9"),
449 	SIERRA_LANE_CDB_REGMAP_CONF("10"),
450 	SIERRA_LANE_CDB_REGMAP_CONF("11"),
451 	SIERRA_LANE_CDB_REGMAP_CONF("12"),
452 	SIERRA_LANE_CDB_REGMAP_CONF("13"),
453 	SIERRA_LANE_CDB_REGMAP_CONF("14"),
454 	SIERRA_LANE_CDB_REGMAP_CONF("15"),
455 };
456 
457 static const struct regmap_config cdns_sierra_common_cdb_config = {
458 	.name = "sierra_common_cdb",
459 	.reg_stride = 1,
460 	.fast_io = true,
461 	.reg_write = cdns_regmap_write,
462 	.reg_read = cdns_regmap_read,
463 };
464 
465 static const struct regmap_config cdns_sierra_phy_pcs_cmn_cdb_config = {
466 	.name = "sierra_phy_pcs_cmn_cdb",
467 	.reg_stride = 1,
468 	.fast_io = true,
469 	.reg_write = cdns_regmap_write,
470 	.reg_read = cdns_regmap_read,
471 };
472 
473 #define SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF(n) \
474 { \
475 	.name = "sierra_phy_pcs_lane" n "_cdb", \
476 	.reg_stride = 1, \
477 	.fast_io = true, \
478 	.reg_write = cdns_regmap_write, \
479 	.reg_read = cdns_regmap_read, \
480 }
481 
482 static const struct regmap_config cdns_sierra_phy_pcs_lane_cdb_config[] = {
483 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("0"),
484 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("1"),
485 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("2"),
486 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("3"),
487 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("4"),
488 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("5"),
489 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("6"),
490 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("7"),
491 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("8"),
492 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("9"),
493 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("10"),
494 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("11"),
495 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("12"),
496 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("13"),
497 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("14"),
498 	SIERRA_PHY_PCS_LANE_CDB_REGMAP_CONF("15"),
499 };
500 
501 static const struct regmap_config cdns_sierra_phy_pma_cmn_cdb_config = {
502 	.name = "sierra_phy_pma_cmn_cdb",
503 	.reg_stride = 1,
504 	.fast_io = true,
505 	.reg_write = cdns_regmap_write,
506 	.reg_read = cdns_regmap_read,
507 };
508 
509 #define SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF(n) \
510 { \
511 	.name = "sierra_phy_pma_lane" n "_cdb", \
512 	.reg_stride = 1, \
513 	.fast_io = true, \
514 	.reg_write = cdns_regmap_write, \
515 	.reg_read = cdns_regmap_read, \
516 }
517 
518 static const struct regmap_config cdns_sierra_phy_pma_lane_cdb_config[] = {
519 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("0"),
520 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("1"),
521 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("2"),
522 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("3"),
523 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("4"),
524 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("5"),
525 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("6"),
526 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("7"),
527 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("8"),
528 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("9"),
529 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("10"),
530 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("11"),
531 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("12"),
532 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("13"),
533 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("14"),
534 	SIERRA_PHY_PMA_LANE_CDB_REGMAP_CONF("15"),
535 };
536 
537 static int cdns_sierra_phy_init(struct phy *gphy)
538 {
539 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
540 	struct cdns_sierra_phy *phy = dev_get_drvdata(gphy->dev.parent);
541 	const struct cdns_sierra_data *init_data = phy->init_data;
542 	const struct cdns_sierra_vals *pma_cmn_vals, *pma_ln_vals;
543 	enum cdns_sierra_phy_type phy_type = ins->phy_type;
544 	const struct cdns_sierra_vals *phy_pma_ln_vals;
545 	enum cdns_sierra_ssc_mode ssc = ins->ssc_mode;
546 	const struct cdns_sierra_vals *pcs_cmn_vals;
547 	const struct cdns_reg_pairs *reg_pairs;
548 	struct regmap *regmap;
549 	u32 num_regs;
550 	int i, j;
551 
552 	/* Initialise the PHY registers, unless auto configured */
553 	if (phy->autoconf || phy->already_configured || phy->nsubnodes > 1)
554 		return 0;
555 
556 	clk_set_rate(phy->input_clks[CMN_REFCLK_DIG_DIV], 25000000);
557 	clk_set_rate(phy->input_clks[CMN_REFCLK1_DIG_DIV], 25000000);
558 
559 	/* PHY PCS common registers configurations */
560 	pcs_cmn_vals = init_data->pcs_cmn_vals[phy_type][TYPE_NONE][ssc];
561 	if (pcs_cmn_vals) {
562 		reg_pairs = pcs_cmn_vals->reg_pairs;
563 		num_regs = pcs_cmn_vals->num_regs;
564 		regmap = phy->regmap_phy_pcs_common_cdb;
565 		for (i = 0; i < num_regs; i++)
566 			regmap_write(regmap, reg_pairs[i].off, reg_pairs[i].val);
567 	}
568 
569 	/* PHY PMA lane registers configurations */
570 	phy_pma_ln_vals = init_data->phy_pma_ln_vals[phy_type][TYPE_NONE][ssc];
571 	if (phy_pma_ln_vals) {
572 		reg_pairs = phy_pma_ln_vals->reg_pairs;
573 		num_regs = phy_pma_ln_vals->num_regs;
574 		for (i = 0; i < ins->num_lanes; i++) {
575 			regmap = phy->regmap_phy_pma_lane_cdb[i + ins->mlane];
576 			for (j = 0; j < num_regs; j++)
577 				regmap_write(regmap, reg_pairs[j].off, reg_pairs[j].val);
578 		}
579 	}
580 
581 	/* PMA common registers configurations */
582 	pma_cmn_vals = init_data->pma_cmn_vals[phy_type][TYPE_NONE][ssc];
583 	if (pma_cmn_vals) {
584 		reg_pairs = pma_cmn_vals->reg_pairs;
585 		num_regs = pma_cmn_vals->num_regs;
586 		regmap = phy->regmap_common_cdb;
587 		for (i = 0; i < num_regs; i++)
588 			regmap_write(regmap, reg_pairs[i].off, reg_pairs[i].val);
589 	}
590 
591 	/* PMA lane registers configurations */
592 	pma_ln_vals = init_data->pma_ln_vals[phy_type][TYPE_NONE][ssc];
593 	if (pma_ln_vals) {
594 		reg_pairs = pma_ln_vals->reg_pairs;
595 		num_regs = pma_ln_vals->num_regs;
596 		for (i = 0; i < ins->num_lanes; i++) {
597 			regmap = phy->regmap_lane_cdb[i + ins->mlane];
598 			for (j = 0; j < num_regs; j++)
599 				regmap_write(regmap, reg_pairs[j].off, reg_pairs[j].val);
600 		}
601 	}
602 
603 	return 0;
604 }
605 
606 static int cdns_sierra_phy_on(struct phy *gphy)
607 {
608 	struct cdns_sierra_phy *sp = dev_get_drvdata(gphy->dev.parent);
609 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
610 	struct device *dev = sp->dev;
611 	u32 val;
612 	int ret;
613 
614 	if (sp->nsubnodes == 1) {
615 		/* Take the PHY out of reset */
616 		ret = reset_control_deassert(sp->phy_rst);
617 		if (ret) {
618 			dev_err(dev, "Failed to take the PHY out of reset\n");
619 			return ret;
620 		}
621 	}
622 
623 	/* Take the PHY lane group out of reset */
624 	ret = reset_control_deassert(ins->lnk_rst);
625 	if (ret) {
626 		dev_err(dev, "Failed to take the PHY lane out of reset\n");
627 		return ret;
628 	}
629 
630 	if (ins->phy_type == TYPE_PCIE || ins->phy_type == TYPE_USB) {
631 		ret = regmap_field_read_poll_timeout(sp->phy_iso_link_ctrl_1[ins->mlane],
632 						     val, !val, 1000, PLL_LOCK_TIME);
633 		if (ret) {
634 			dev_err(dev, "Timeout waiting for PHY status ready\n");
635 			return ret;
636 		}
637 	}
638 
639 	/*
640 	 * Wait for cmn_ready assertion
641 	 * PHY_PMA_CMN_CTRL[0] == 1
642 	 */
643 	ret = regmap_field_read_poll_timeout(sp->pma_cmn_ready, val, val,
644 					     1000, PLL_LOCK_TIME);
645 	if (ret) {
646 		dev_err(dev, "Timeout waiting for CMN ready\n");
647 		return ret;
648 	}
649 
650 	ret = regmap_field_read_poll_timeout(sp->pllctrl_lock[ins->mlane],
651 					     val, val, 1000, PLL_LOCK_TIME);
652 	if (ret < 0)
653 		dev_err(dev, "PLL lock of lane failed\n");
654 
655 	return ret;
656 }
657 
658 static int cdns_sierra_phy_off(struct phy *gphy)
659 {
660 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
661 
662 	return reset_control_assert(ins->lnk_rst);
663 }
664 
665 static int cdns_sierra_phy_reset(struct phy *gphy)
666 {
667 	struct cdns_sierra_phy *sp = dev_get_drvdata(gphy->dev.parent);
668 
669 	reset_control_assert(sp->phy_rst);
670 	reset_control_deassert(sp->phy_rst);
671 	return 0;
672 };
673 
674 static const struct phy_ops ops = {
675 	.init		= cdns_sierra_phy_init,
676 	.power_on	= cdns_sierra_phy_on,
677 	.power_off	= cdns_sierra_phy_off,
678 	.reset		= cdns_sierra_phy_reset,
679 	.owner		= THIS_MODULE,
680 };
681 
682 static int cdns_sierra_noop_phy_on(struct phy *gphy)
683 {
684 	usleep_range(5000, 10000);
685 
686 	return 0;
687 }
688 
689 static const struct phy_ops noop_ops = {
690 	.power_on	= cdns_sierra_noop_phy_on,
691 	.owner		= THIS_MODULE,
692 };
693 
694 static u8 cdns_sierra_pll_mux_get_parent(struct clk_hw *hw)
695 {
696 	struct cdns_sierra_pll_mux *mux = to_cdns_sierra_pll_mux(hw);
697 	struct regmap_field *plllc1en_field = mux->plllc1en_field;
698 	struct regmap_field *termen_field = mux->termen_field;
699 	struct regmap_field *field = mux->pfdclk_sel_preg;
700 	unsigned int val;
701 	int index;
702 
703 	regmap_field_read(field, &val);
704 
705 	if (strstr(clk_hw_get_name(hw), clk_names[CDNS_SIERRA_PLL_CMNLC1])) {
706 		index = clk_mux_val_to_index(hw, cdns_sierra_pll_mux_table[CMN_PLLLC1], 0, val);
707 		if (index == 1) {
708 			regmap_field_write(plllc1en_field, 1);
709 			regmap_field_write(termen_field, 1);
710 		}
711 	} else {
712 		index = clk_mux_val_to_index(hw, cdns_sierra_pll_mux_table[CMN_PLLLC], 0, val);
713 	}
714 
715 	return index;
716 }
717 
718 static int cdns_sierra_pll_mux_set_parent(struct clk_hw *hw, u8 index)
719 {
720 	struct cdns_sierra_pll_mux *mux = to_cdns_sierra_pll_mux(hw);
721 	struct regmap_field *plllc1en_field = mux->plllc1en_field;
722 	struct regmap_field *termen_field = mux->termen_field;
723 	struct regmap_field *field = mux->pfdclk_sel_preg;
724 	int val, ret;
725 
726 	ret = regmap_field_write(plllc1en_field, 0);
727 	ret |= regmap_field_write(termen_field, 0);
728 	if (index == 1) {
729 		ret |= regmap_field_write(plllc1en_field, 1);
730 		ret |= regmap_field_write(termen_field, 1);
731 	}
732 
733 	if (strstr(clk_hw_get_name(hw), clk_names[CDNS_SIERRA_PLL_CMNLC1]))
734 		val = cdns_sierra_pll_mux_table[CMN_PLLLC1][index];
735 	else
736 		val = cdns_sierra_pll_mux_table[CMN_PLLLC][index];
737 
738 	ret |= regmap_field_write(field, val);
739 
740 	return ret;
741 }
742 
743 static const struct clk_ops cdns_sierra_pll_mux_ops = {
744 	.determine_rate = __clk_mux_determine_rate,
745 	.set_parent = cdns_sierra_pll_mux_set_parent,
746 	.get_parent = cdns_sierra_pll_mux_get_parent,
747 };
748 
749 static int cdns_sierra_pll_mux_register(struct cdns_sierra_phy *sp,
750 					struct regmap_field *pfdclk1_sel_field,
751 					struct regmap_field *plllc1en_field,
752 					struct regmap_field *termen_field,
753 					int clk_index)
754 {
755 	struct cdns_sierra_pll_mux *mux;
756 	struct device *dev = sp->dev;
757 	struct clk_init_data *init;
758 	char clk_name[100];
759 	int ret;
760 
761 	mux = devm_kzalloc(dev, sizeof(*mux), GFP_KERNEL);
762 	if (!mux)
763 		return -ENOMEM;
764 
765 	snprintf(clk_name, sizeof(clk_name), "%s_%s", dev_name(dev), clk_names[clk_index]);
766 
767 	init = &mux->clk_data;
768 
769 	init->ops = &cdns_sierra_pll_mux_ops;
770 	init->flags = CLK_SET_RATE_NO_REPARENT;
771 	init->parent_data = pll_mux_parent_data[clk_index];
772 	init->num_parents = SIERRA_NUM_CMN_PLLC_PARENTS;
773 	init->name = clk_name;
774 
775 	mux->pfdclk_sel_preg = pfdclk1_sel_field;
776 	mux->plllc1en_field = plllc1en_field;
777 	mux->termen_field = termen_field;
778 	mux->hw.init = init;
779 
780 	ret = devm_clk_hw_register(dev, &mux->hw);
781 	if (ret)
782 		return ret;
783 
784 	sp->clk_data.hws[clk_index] = &mux->hw;
785 
786 	sp->pll_clks[clk_index] = devm_clk_hw_get_clk(dev, &mux->hw,
787 						      clk_names[clk_index]);
788 
789 	return 0;
790 }
791 
792 static int cdns_sierra_phy_register_pll_mux(struct cdns_sierra_phy *sp)
793 {
794 	struct regmap_field *pfdclk1_sel_field;
795 	struct regmap_field *plllc1en_field;
796 	struct regmap_field *termen_field;
797 	struct device *dev = sp->dev;
798 	int ret = 0, i, clk_index;
799 
800 	clk_index = CDNS_SIERRA_PLL_CMNLC;
801 	for (i = 0; i < SIERRA_NUM_CMN_PLLC; i++, clk_index++) {
802 		pfdclk1_sel_field = sp->cmn_plllc_pfdclk1_sel_preg[i];
803 		plllc1en_field = sp->cmn_refrcv_refclk_plllc1en_preg[i];
804 		termen_field = sp->cmn_refrcv_refclk_termen_preg[i];
805 
806 		ret = cdns_sierra_pll_mux_register(sp, pfdclk1_sel_field, plllc1en_field,
807 						   termen_field, clk_index);
808 		if (ret) {
809 			dev_err(dev, "Fail to register cmn plllc mux\n");
810 			return ret;
811 		}
812 	}
813 
814 	return 0;
815 }
816 
817 static int cdns_sierra_derived_refclk_enable(struct clk_hw *hw)
818 {
819 	struct cdns_sierra_derived_refclk *derived_refclk = to_cdns_sierra_derived_refclk(hw);
820 
821 	regmap_field_write(derived_refclk->cmn_plllc_clk1_en_preg, 0x1);
822 
823 	/* Programming to get 100Mhz clock output in ref_der_clk_out 5GHz VCO/50 = 100MHz */
824 	regmap_field_write(derived_refclk->cmn_plllc_clk1outdiv_preg, 0x2E);
825 
826 	return 0;
827 }
828 
829 static void cdns_sierra_derived_refclk_disable(struct clk_hw *hw)
830 {
831 	struct cdns_sierra_derived_refclk *derived_refclk = to_cdns_sierra_derived_refclk(hw);
832 
833 	regmap_field_write(derived_refclk->cmn_plllc_clk1_en_preg, 0);
834 }
835 
836 static int cdns_sierra_derived_refclk_is_enabled(struct clk_hw *hw)
837 {
838 	struct cdns_sierra_derived_refclk *derived_refclk = to_cdns_sierra_derived_refclk(hw);
839 	int val;
840 
841 	regmap_field_read(derived_refclk->cmn_plllc_clk1_en_preg, &val);
842 
843 	return !!val;
844 }
845 
846 static const struct clk_ops cdns_sierra_derived_refclk_ops = {
847 	.enable = cdns_sierra_derived_refclk_enable,
848 	.disable = cdns_sierra_derived_refclk_disable,
849 	.is_enabled = cdns_sierra_derived_refclk_is_enabled,
850 };
851 
852 static int cdns_sierra_derived_refclk_register(struct cdns_sierra_phy *sp)
853 {
854 	struct cdns_sierra_derived_refclk *derived_refclk;
855 	struct device *dev = sp->dev;
856 	struct regmap_field *field;
857 	struct clk_init_data *init;
858 	struct regmap *regmap;
859 	char clk_name[100];
860 	int ret;
861 
862 	derived_refclk = devm_kzalloc(dev, sizeof(*derived_refclk), GFP_KERNEL);
863 	if (!derived_refclk)
864 		return -ENOMEM;
865 
866 	snprintf(clk_name, sizeof(clk_name), "%s_%s", dev_name(dev),
867 		 clk_names[CDNS_SIERRA_DERIVED_REFCLK]);
868 
869 	init = &derived_refclk->clk_data;
870 
871 	init->ops = &cdns_sierra_derived_refclk_ops;
872 	init->flags = 0;
873 	init->name = clk_name;
874 
875 	regmap = sp->regmap_common_cdb;
876 
877 	field = devm_regmap_field_alloc(dev, regmap, cmn_plllc_clk1outdiv_preg);
878 	if (IS_ERR(field)) {
879 		dev_err(dev, "cmn_plllc_clk1outdiv_preg reg field init failed\n");
880 		return PTR_ERR(field);
881 	}
882 	derived_refclk->cmn_plllc_clk1outdiv_preg = field;
883 
884 	field = devm_regmap_field_alloc(dev, regmap, cmn_plllc_clk1_en_preg);
885 	if (IS_ERR(field)) {
886 		dev_err(dev, "cmn_plllc_clk1_en_preg reg field init failed\n");
887 		return PTR_ERR(field);
888 	}
889 	derived_refclk->cmn_plllc_clk1_en_preg = field;
890 
891 	derived_refclk->hw.init = init;
892 
893 	ret = devm_clk_hw_register(dev, &derived_refclk->hw);
894 	if (ret)
895 		return ret;
896 
897 	sp->clk_data.hws[CDNS_SIERRA_DERIVED_REFCLK] = &derived_refclk->hw;
898 
899 	return 0;
900 }
901 
902 static void cdns_sierra_clk_unregister(struct cdns_sierra_phy *sp)
903 {
904 	struct device *dev = sp->dev;
905 	struct device_node *node = dev->of_node;
906 
907 	of_clk_del_provider(node);
908 }
909 
910 static int cdns_sierra_clk_register(struct cdns_sierra_phy *sp)
911 {
912 	struct device *dev = sp->dev;
913 	struct device_node *node = dev->of_node;
914 	int ret;
915 
916 	ret = cdns_sierra_phy_register_pll_mux(sp);
917 	if (ret) {
918 		dev_err(dev, "Failed to pll mux clocks\n");
919 		return ret;
920 	}
921 
922 	ret = cdns_sierra_derived_refclk_register(sp);
923 	if (ret) {
924 		dev_err(dev, "Failed to register derived refclk\n");
925 		return ret;
926 	}
927 
928 	sp->clk_data.num = CDNS_SIERRA_OUTPUT_CLOCKS;
929 	ret = of_clk_add_hw_provider(node, of_clk_hw_onecell_get,
930 				     &sp->clk_data);
931 	if (ret)
932 		dev_err(dev, "Failed to add clock provider: %s\n", node->name);
933 
934 	return ret;
935 }
936 
937 static int cdns_sierra_get_optional(struct cdns_sierra_inst *inst,
938 				    struct device_node *child)
939 {
940 	u32 phy_type;
941 
942 	if (of_property_read_u32(child, "reg", &inst->mlane))
943 		return -EINVAL;
944 
945 	if (of_property_read_u32(child, "cdns,num-lanes", &inst->num_lanes))
946 		return -EINVAL;
947 
948 	if (of_property_read_u32(child, "cdns,phy-type", &phy_type))
949 		return -EINVAL;
950 
951 	switch (phy_type) {
952 	case PHY_TYPE_PCIE:
953 		inst->phy_type = TYPE_PCIE;
954 		break;
955 	case PHY_TYPE_USB3:
956 		inst->phy_type = TYPE_USB;
957 		break;
958 	case PHY_TYPE_SGMII:
959 		inst->phy_type = TYPE_SGMII;
960 		break;
961 	case PHY_TYPE_QSGMII:
962 		inst->phy_type = TYPE_QSGMII;
963 		break;
964 	default:
965 		return -EINVAL;
966 	}
967 
968 	inst->ssc_mode = EXTERNAL_SSC;
969 	of_property_read_u32(child, "cdns,ssc-mode", &inst->ssc_mode);
970 
971 	return 0;
972 }
973 
974 static struct regmap *cdns_regmap_init(struct device *dev, void __iomem *base,
975 				       u32 block_offset, u8 reg_offset_shift,
976 				       const struct regmap_config *config)
977 {
978 	struct cdns_regmap_cdb_context *ctx;
979 
980 	ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL);
981 	if (!ctx)
982 		return ERR_PTR(-ENOMEM);
983 
984 	ctx->dev = dev;
985 	ctx->base = base + block_offset;
986 	ctx->reg_offset_shift = reg_offset_shift;
987 
988 	return devm_regmap_init(dev, NULL, ctx, config);
989 }
990 
991 static int cdns_regfield_init(struct cdns_sierra_phy *sp)
992 {
993 	struct device *dev = sp->dev;
994 	struct regmap_field *field;
995 	struct reg_field reg_field;
996 	struct regmap *regmap;
997 	int i;
998 
999 	regmap = sp->regmap_common_cdb;
1000 	field = devm_regmap_field_alloc(dev, regmap, macro_id_type);
1001 	if (IS_ERR(field)) {
1002 		dev_err(dev, "MACRO_ID_TYPE reg field init failed\n");
1003 		return PTR_ERR(field);
1004 	}
1005 	sp->macro_id_type = field;
1006 
1007 	for (i = 0; i < SIERRA_NUM_CMN_PLLC; i++) {
1008 		reg_field = cmn_plllc_pfdclk1_sel_preg[i].pfdclk_sel_preg;
1009 		field = devm_regmap_field_alloc(dev, regmap, reg_field);
1010 		if (IS_ERR(field)) {
1011 			dev_err(dev, "PLLLC%d_PFDCLK1_SEL failed\n", i);
1012 			return PTR_ERR(field);
1013 		}
1014 		sp->cmn_plllc_pfdclk1_sel_preg[i] = field;
1015 
1016 		reg_field = cmn_plllc_pfdclk1_sel_preg[i].plllc1en_field;
1017 		field = devm_regmap_field_alloc(dev, regmap, reg_field);
1018 		if (IS_ERR(field)) {
1019 			dev_err(dev, "REFRCV%d_REFCLK_PLLLC1EN failed\n", i);
1020 			return PTR_ERR(field);
1021 		}
1022 		sp->cmn_refrcv_refclk_plllc1en_preg[i] = field;
1023 
1024 		reg_field = cmn_plllc_pfdclk1_sel_preg[i].termen_field;
1025 		field = devm_regmap_field_alloc(dev, regmap, reg_field);
1026 		if (IS_ERR(field)) {
1027 			dev_err(dev, "REFRCV%d_REFCLK_TERMEN failed\n", i);
1028 			return PTR_ERR(field);
1029 		}
1030 		sp->cmn_refrcv_refclk_termen_preg[i] = field;
1031 	}
1032 
1033 	regmap = sp->regmap_phy_pcs_common_cdb;
1034 	field = devm_regmap_field_alloc(dev, regmap, phy_pll_cfg_1);
1035 	if (IS_ERR(field)) {
1036 		dev_err(dev, "PHY_PLL_CFG_1 reg field init failed\n");
1037 		return PTR_ERR(field);
1038 	}
1039 	sp->phy_pll_cfg_1 = field;
1040 
1041 	regmap = sp->regmap_phy_pma_common_cdb;
1042 	field = devm_regmap_field_alloc(dev, regmap, pma_cmn_ready);
1043 	if (IS_ERR(field)) {
1044 		dev_err(dev, "PHY_PMA_CMN_CTRL reg field init failed\n");
1045 		return PTR_ERR(field);
1046 	}
1047 	sp->pma_cmn_ready = field;
1048 
1049 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
1050 		regmap = sp->regmap_lane_cdb[i];
1051 		field = devm_regmap_field_alloc(dev, regmap, pllctrl_lock);
1052 		if (IS_ERR(field)) {
1053 			dev_err(dev, "P%d_ENABLE reg field init failed\n", i);
1054 			return PTR_ERR(field);
1055 		}
1056 		sp->pllctrl_lock[i] = field;
1057 	}
1058 
1059 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
1060 		regmap = sp->regmap_phy_pcs_lane_cdb[i];
1061 		field = devm_regmap_field_alloc(dev, regmap, phy_iso_link_ctrl_1);
1062 		if (IS_ERR(field)) {
1063 			dev_err(dev, "PHY_ISO_LINK_CTRL reg field init for lane %d failed\n", i);
1064 			return PTR_ERR(field);
1065 		}
1066 		sp->phy_iso_link_ctrl_1[i] = field;
1067 	}
1068 
1069 	return 0;
1070 }
1071 
1072 static int cdns_regmap_init_blocks(struct cdns_sierra_phy *sp,
1073 				   void __iomem *base, u8 block_offset_shift,
1074 				   u8 reg_offset_shift)
1075 {
1076 	struct device *dev = sp->dev;
1077 	struct regmap *regmap;
1078 	u32 block_offset;
1079 	int i;
1080 
1081 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
1082 		block_offset = SIERRA_LANE_CDB_OFFSET(i, block_offset_shift,
1083 						      reg_offset_shift);
1084 		regmap = cdns_regmap_init(dev, base, block_offset,
1085 					  reg_offset_shift,
1086 					  &cdns_sierra_lane_cdb_config[i]);
1087 		if (IS_ERR(regmap)) {
1088 			dev_err(dev, "Failed to init lane CDB regmap\n");
1089 			return PTR_ERR(regmap);
1090 		}
1091 		sp->regmap_lane_cdb[i] = regmap;
1092 	}
1093 
1094 	regmap = cdns_regmap_init(dev, base, SIERRA_COMMON_CDB_OFFSET,
1095 				  reg_offset_shift,
1096 				  &cdns_sierra_common_cdb_config);
1097 	if (IS_ERR(regmap)) {
1098 		dev_err(dev, "Failed to init common CDB regmap\n");
1099 		return PTR_ERR(regmap);
1100 	}
1101 	sp->regmap_common_cdb = regmap;
1102 
1103 	block_offset = SIERRA_PHY_PCS_COMMON_OFFSET(block_offset_shift);
1104 	regmap = cdns_regmap_init(dev, base, block_offset, reg_offset_shift,
1105 				  &cdns_sierra_phy_pcs_cmn_cdb_config);
1106 	if (IS_ERR(regmap)) {
1107 		dev_err(dev, "Failed to init PHY PCS common CDB regmap\n");
1108 		return PTR_ERR(regmap);
1109 	}
1110 	sp->regmap_phy_pcs_common_cdb = regmap;
1111 
1112 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
1113 		block_offset = SIERRA_PHY_PCS_LANE_CDB_OFFSET(i, block_offset_shift,
1114 							      reg_offset_shift);
1115 		regmap = cdns_regmap_init(dev, base, block_offset,
1116 					  reg_offset_shift,
1117 					  &cdns_sierra_phy_pcs_lane_cdb_config[i]);
1118 		if (IS_ERR(regmap)) {
1119 			dev_err(dev, "Failed to init PHY PCS lane CDB regmap\n");
1120 			return PTR_ERR(regmap);
1121 		}
1122 		sp->regmap_phy_pcs_lane_cdb[i] = regmap;
1123 	}
1124 
1125 	block_offset = SIERRA_PHY_PMA_COMMON_OFFSET(block_offset_shift);
1126 	regmap = cdns_regmap_init(dev, base, block_offset, reg_offset_shift,
1127 				  &cdns_sierra_phy_pma_cmn_cdb_config);
1128 	if (IS_ERR(regmap)) {
1129 		dev_err(dev, "Failed to init PHY PMA common CDB regmap\n");
1130 		return PTR_ERR(regmap);
1131 	}
1132 	sp->regmap_phy_pma_common_cdb = regmap;
1133 
1134 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
1135 		block_offset = SIERRA_PHY_PMA_LANE_CDB_OFFSET(i, block_offset_shift,
1136 							      reg_offset_shift);
1137 		regmap = cdns_regmap_init(dev, base, block_offset,
1138 					  reg_offset_shift,
1139 					  &cdns_sierra_phy_pma_lane_cdb_config[i]);
1140 		if (IS_ERR(regmap)) {
1141 			dev_err(dev, "Failed to init PHY PMA lane CDB regmap\n");
1142 			return PTR_ERR(regmap);
1143 		}
1144 		sp->regmap_phy_pma_lane_cdb[i] = regmap;
1145 	}
1146 
1147 	return 0;
1148 }
1149 
1150 static int cdns_sierra_phy_get_clocks(struct cdns_sierra_phy *sp,
1151 				      struct device *dev)
1152 {
1153 	struct clk *clk;
1154 	int ret;
1155 
1156 	clk = devm_clk_get_optional(dev, "cmn_refclk_dig_div");
1157 	if (IS_ERR(clk)) {
1158 		dev_err(dev, "cmn_refclk_dig_div clock not found\n");
1159 		ret = PTR_ERR(clk);
1160 		return ret;
1161 	}
1162 	sp->input_clks[CMN_REFCLK_DIG_DIV] = clk;
1163 
1164 	clk = devm_clk_get_optional(dev, "cmn_refclk1_dig_div");
1165 	if (IS_ERR(clk)) {
1166 		dev_err(dev, "cmn_refclk1_dig_div clock not found\n");
1167 		ret = PTR_ERR(clk);
1168 		return ret;
1169 	}
1170 	sp->input_clks[CMN_REFCLK1_DIG_DIV] = clk;
1171 
1172 	return 0;
1173 }
1174 
1175 static int cdns_sierra_phy_clk(struct cdns_sierra_phy *sp)
1176 {
1177 	struct device *dev = sp->dev;
1178 	struct clk *clk;
1179 	int ret;
1180 
1181 	clk = devm_clk_get_optional(dev, "phy_clk");
1182 	if (IS_ERR(clk)) {
1183 		dev_err(dev, "failed to get clock phy_clk\n");
1184 		return PTR_ERR(clk);
1185 	}
1186 	sp->input_clks[PHY_CLK] = clk;
1187 
1188 	ret = clk_prepare_enable(sp->input_clks[PHY_CLK]);
1189 	if (ret)
1190 		return ret;
1191 
1192 	return 0;
1193 }
1194 
1195 static int cdns_sierra_phy_enable_clocks(struct cdns_sierra_phy *sp)
1196 {
1197 	int ret;
1198 
1199 	ret = clk_prepare_enable(sp->pll_clks[CDNS_SIERRA_PLL_CMNLC]);
1200 	if (ret)
1201 		return ret;
1202 
1203 	ret = clk_prepare_enable(sp->pll_clks[CDNS_SIERRA_PLL_CMNLC1]);
1204 	if (ret)
1205 		goto err_pll_cmnlc1;
1206 
1207 	return 0;
1208 
1209 err_pll_cmnlc1:
1210 	clk_disable_unprepare(sp->pll_clks[CDNS_SIERRA_PLL_CMNLC]);
1211 
1212 	return ret;
1213 }
1214 
1215 static void cdns_sierra_phy_disable_clocks(struct cdns_sierra_phy *sp)
1216 {
1217 	clk_disable_unprepare(sp->pll_clks[CDNS_SIERRA_PLL_CMNLC1]);
1218 	clk_disable_unprepare(sp->pll_clks[CDNS_SIERRA_PLL_CMNLC]);
1219 	if (!sp->already_configured)
1220 		clk_disable_unprepare(sp->input_clks[PHY_CLK]);
1221 }
1222 
1223 static int cdns_sierra_phy_get_resets(struct cdns_sierra_phy *sp,
1224 				      struct device *dev)
1225 {
1226 	struct reset_control *rst;
1227 
1228 	rst = devm_reset_control_get_exclusive(dev, "sierra_reset");
1229 	if (IS_ERR(rst)) {
1230 		dev_err(dev, "failed to get reset\n");
1231 		return PTR_ERR(rst);
1232 	}
1233 	sp->phy_rst = rst;
1234 
1235 	rst = devm_reset_control_get_optional_exclusive(dev, "sierra_apb");
1236 	if (IS_ERR(rst)) {
1237 		dev_err(dev, "failed to get apb reset\n");
1238 		return PTR_ERR(rst);
1239 	}
1240 	sp->apb_rst = rst;
1241 
1242 	return 0;
1243 }
1244 
1245 static int cdns_sierra_phy_configure_multilink(struct cdns_sierra_phy *sp)
1246 {
1247 	const struct cdns_sierra_vals *pma_cmn_vals, *pma_ln_vals;
1248 	const struct cdns_sierra_data *init_data = sp->init_data;
1249 	const struct cdns_sierra_vals *phy_pma_ln_vals;
1250 	const struct cdns_sierra_vals *pcs_cmn_vals;
1251 	enum cdns_sierra_phy_type phy_t1, phy_t2;
1252 	const struct cdns_reg_pairs *reg_pairs;
1253 	int i, j, node, mlane, num_lanes, ret;
1254 	enum cdns_sierra_ssc_mode ssc;
1255 	struct regmap *regmap;
1256 	u32 num_regs;
1257 
1258 	/* Maximum 2 links (subnodes) are supported */
1259 	if (sp->nsubnodes != 2)
1260 		return -EINVAL;
1261 
1262 	clk_set_rate(sp->input_clks[CMN_REFCLK_DIG_DIV], 25000000);
1263 	clk_set_rate(sp->input_clks[CMN_REFCLK1_DIG_DIV], 25000000);
1264 
1265 	/* PHY configured to use both PLL LC and LC1 */
1266 	regmap_field_write(sp->phy_pll_cfg_1, 0x1);
1267 
1268 	phy_t1 = sp->phys[0].phy_type;
1269 	phy_t2 = sp->phys[1].phy_type;
1270 
1271 	/*
1272 	 * PHY configuration for multi-link operation is done in two steps.
1273 	 * e.g. Consider a case for a 4 lane PHY with PCIe using 2 lanes and QSGMII other 2 lanes.
1274 	 * Sierra PHY has 2 PLLs, viz. PLLLC and PLLLC1. So in this case, PLLLC is used for PCIe
1275 	 * and PLLLC1 is used for QSGMII. PHY is configured in two steps as described below.
1276 	 *
1277 	 * [1] For first step, phy_t1 = TYPE_PCIE and phy_t2 = TYPE_QSGMII
1278 	 *     So the register values are selected as [TYPE_PCIE][TYPE_QSGMII][ssc].
1279 	 *     This will configure PHY registers associated for PCIe (i.e. first protocol)
1280 	 *     involving PLLLC registers and registers for first 2 lanes of PHY.
1281 	 * [2] In second step, the variables phy_t1 and phy_t2 are swapped. So now,
1282 	 *     phy_t1 = TYPE_QSGMII and phy_t2 = TYPE_PCIE. And the register values are selected as
1283 	 *     [TYPE_QSGMII][TYPE_PCIE][ssc].
1284 	 *     This will configure PHY registers associated for QSGMII (i.e. second protocol)
1285 	 *     involving PLLLC1 registers and registers for other 2 lanes of PHY.
1286 	 *
1287 	 * This completes the PHY configuration for multilink operation. This approach enables
1288 	 * dividing the large number of PHY register configurations into protocol specific
1289 	 * smaller groups.
1290 	 */
1291 	for (node = 0; node < sp->nsubnodes; node++) {
1292 		if (node == 1) {
1293 			/*
1294 			 * If first link with phy_t1 is configured, then configure the PHY for
1295 			 * second link with phy_t2. Get the array values as [phy_t2][phy_t1][ssc].
1296 			 */
1297 			swap(phy_t1, phy_t2);
1298 		}
1299 
1300 		mlane = sp->phys[node].mlane;
1301 		ssc = sp->phys[node].ssc_mode;
1302 		num_lanes = sp->phys[node].num_lanes;
1303 
1304 		/* PHY PCS common registers configurations */
1305 		pcs_cmn_vals = init_data->pcs_cmn_vals[phy_t1][phy_t2][ssc];
1306 		if (pcs_cmn_vals) {
1307 			reg_pairs = pcs_cmn_vals->reg_pairs;
1308 			num_regs = pcs_cmn_vals->num_regs;
1309 			regmap = sp->regmap_phy_pcs_common_cdb;
1310 			for (i = 0; i < num_regs; i++)
1311 				regmap_write(regmap, reg_pairs[i].off, reg_pairs[i].val);
1312 		}
1313 
1314 		/* PHY PMA lane registers configurations */
1315 		phy_pma_ln_vals = init_data->phy_pma_ln_vals[phy_t1][phy_t2][ssc];
1316 		if (phy_pma_ln_vals) {
1317 			reg_pairs = phy_pma_ln_vals->reg_pairs;
1318 			num_regs = phy_pma_ln_vals->num_regs;
1319 			for (i = 0; i < num_lanes; i++) {
1320 				regmap = sp->regmap_phy_pma_lane_cdb[i + mlane];
1321 				for (j = 0; j < num_regs; j++)
1322 					regmap_write(regmap, reg_pairs[j].off, reg_pairs[j].val);
1323 			}
1324 		}
1325 
1326 		/* PMA common registers configurations */
1327 		pma_cmn_vals = init_data->pma_cmn_vals[phy_t1][phy_t2][ssc];
1328 		if (pma_cmn_vals) {
1329 			reg_pairs = pma_cmn_vals->reg_pairs;
1330 			num_regs = pma_cmn_vals->num_regs;
1331 			regmap = sp->regmap_common_cdb;
1332 			for (i = 0; i < num_regs; i++)
1333 				regmap_write(regmap, reg_pairs[i].off, reg_pairs[i].val);
1334 		}
1335 
1336 		/* PMA lane registers configurations */
1337 		pma_ln_vals = init_data->pma_ln_vals[phy_t1][phy_t2][ssc];
1338 		if (pma_ln_vals) {
1339 			reg_pairs = pma_ln_vals->reg_pairs;
1340 			num_regs = pma_ln_vals->num_regs;
1341 			for (i = 0; i < num_lanes; i++) {
1342 				regmap = sp->regmap_lane_cdb[i + mlane];
1343 				for (j = 0; j < num_regs; j++)
1344 					regmap_write(regmap, reg_pairs[j].off, reg_pairs[j].val);
1345 			}
1346 		}
1347 
1348 		if (phy_t1 == TYPE_SGMII || phy_t1 == TYPE_QSGMII)
1349 			reset_control_deassert(sp->phys[node].lnk_rst);
1350 	}
1351 
1352 	/* Take the PHY out of reset */
1353 	ret = reset_control_deassert(sp->phy_rst);
1354 	if (ret)
1355 		return ret;
1356 
1357 	return 0;
1358 }
1359 
1360 static int cdns_sierra_phy_probe(struct platform_device *pdev)
1361 {
1362 	struct cdns_sierra_phy *sp;
1363 	struct phy_provider *phy_provider;
1364 	struct device *dev = &pdev->dev;
1365 	const struct cdns_sierra_data *data;
1366 	unsigned int id_value;
1367 	int ret, node = 0;
1368 	void __iomem *base;
1369 	struct device_node *dn = dev->of_node;
1370 
1371 	if (of_get_child_count(dn) == 0)
1372 		return -ENODEV;
1373 
1374 	/* Get init data for this PHY */
1375 	data = of_device_get_match_data(dev);
1376 	if (!data)
1377 		return -EINVAL;
1378 
1379 	sp = devm_kzalloc(dev, struct_size(sp, clk_data.hws,
1380 					   CDNS_SIERRA_OUTPUT_CLOCKS),
1381 			  GFP_KERNEL);
1382 	if (!sp)
1383 		return -ENOMEM;
1384 	dev_set_drvdata(dev, sp);
1385 	sp->dev = dev;
1386 	sp->init_data = data;
1387 
1388 	base = devm_platform_ioremap_resource(pdev, 0);
1389 	if (IS_ERR(base)) {
1390 		dev_err(dev, "missing \"reg\"\n");
1391 		return PTR_ERR(base);
1392 	}
1393 
1394 	ret = cdns_regmap_init_blocks(sp, base, data->block_offset_shift,
1395 				      data->reg_offset_shift);
1396 	if (ret)
1397 		return ret;
1398 
1399 	ret = cdns_regfield_init(sp);
1400 	if (ret)
1401 		return ret;
1402 
1403 	platform_set_drvdata(pdev, sp);
1404 
1405 	ret = cdns_sierra_phy_get_clocks(sp, dev);
1406 	if (ret)
1407 		return ret;
1408 
1409 	ret = cdns_sierra_clk_register(sp);
1410 	if (ret)
1411 		return ret;
1412 
1413 	ret = cdns_sierra_phy_enable_clocks(sp);
1414 	if (ret)
1415 		goto unregister_clk;
1416 
1417 	regmap_field_read(sp->pma_cmn_ready, &sp->already_configured);
1418 
1419 	if (!sp->already_configured) {
1420 		ret = cdns_sierra_phy_clk(sp);
1421 		if (ret)
1422 			goto clk_disable;
1423 
1424 		ret = cdns_sierra_phy_get_resets(sp, dev);
1425 		if (ret)
1426 			goto clk_disable;
1427 
1428 		/* Enable APB */
1429 		reset_control_deassert(sp->apb_rst);
1430 	}
1431 
1432 	/* Check that PHY is present */
1433 	regmap_field_read(sp->macro_id_type, &id_value);
1434 	if  (sp->init_data->id_value != id_value) {
1435 		ret = -EINVAL;
1436 		goto ctrl_assert;
1437 	}
1438 
1439 	sp->autoconf = of_property_read_bool(dn, "cdns,autoconf");
1440 
1441 	for_each_available_child_of_node_scoped(dn, child) {
1442 		struct phy *gphy;
1443 
1444 		if (!(of_node_name_eq(child, "phy") ||
1445 		      of_node_name_eq(child, "link")))
1446 			continue;
1447 
1448 		sp->phys[node].lnk_rst =
1449 			of_reset_control_array_get_exclusive(child);
1450 
1451 		if (IS_ERR(sp->phys[node].lnk_rst)) {
1452 			dev_err(dev, "failed to get reset %s\n",
1453 				child->full_name);
1454 			ret = PTR_ERR(sp->phys[node].lnk_rst);
1455 			goto put_control;
1456 		}
1457 
1458 		if (!sp->autoconf) {
1459 			ret = cdns_sierra_get_optional(&sp->phys[node], child);
1460 			if (ret) {
1461 				dev_err(dev, "missing property in node %s\n",
1462 					child->name);
1463 				reset_control_put(sp->phys[node].lnk_rst);
1464 				goto put_control;
1465 			}
1466 		}
1467 
1468 		sp->num_lanes += sp->phys[node].num_lanes;
1469 
1470 		if (!sp->already_configured)
1471 			gphy = devm_phy_create(dev, child, &ops);
1472 		else
1473 			gphy = devm_phy_create(dev, child, &noop_ops);
1474 		if (IS_ERR(gphy)) {
1475 			ret = PTR_ERR(gphy);
1476 			reset_control_put(sp->phys[node].lnk_rst);
1477 			goto put_control;
1478 		}
1479 		sp->phys[node].phy = gphy;
1480 		phy_set_drvdata(gphy, &sp->phys[node]);
1481 
1482 		node++;
1483 	}
1484 	sp->nsubnodes = node;
1485 
1486 	if (sp->num_lanes > SIERRA_MAX_LANES) {
1487 		ret = -EINVAL;
1488 		dev_err(dev, "Invalid lane configuration\n");
1489 		goto put_control;
1490 	}
1491 
1492 	/* If more than one subnode, configure the PHY as multilink */
1493 	if (!sp->already_configured && !sp->autoconf && sp->nsubnodes > 1) {
1494 		ret = cdns_sierra_phy_configure_multilink(sp);
1495 		if (ret)
1496 			goto put_control;
1497 	}
1498 
1499 	pm_runtime_enable(dev);
1500 	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
1501 	if (IS_ERR(phy_provider)) {
1502 		ret = PTR_ERR(phy_provider);
1503 		goto put_control;
1504 	}
1505 
1506 	return 0;
1507 
1508 put_control:
1509 	while (--node >= 0)
1510 		reset_control_put(sp->phys[node].lnk_rst);
1511 ctrl_assert:
1512 	if (!sp->already_configured)
1513 		reset_control_assert(sp->apb_rst);
1514 clk_disable:
1515 	cdns_sierra_phy_disable_clocks(sp);
1516 unregister_clk:
1517 	cdns_sierra_clk_unregister(sp);
1518 	return ret;
1519 }
1520 
1521 static void cdns_sierra_phy_remove(struct platform_device *pdev)
1522 {
1523 	struct cdns_sierra_phy *phy = platform_get_drvdata(pdev);
1524 	int i;
1525 
1526 	reset_control_assert(phy->phy_rst);
1527 	reset_control_assert(phy->apb_rst);
1528 	pm_runtime_disable(&pdev->dev);
1529 
1530 	cdns_sierra_phy_disable_clocks(phy);
1531 	/*
1532 	 * The device level resets will be put automatically.
1533 	 * Need to put the subnode resets here though.
1534 	 */
1535 	for (i = 0; i < phy->nsubnodes; i++) {
1536 		reset_control_assert(phy->phys[i].lnk_rst);
1537 		reset_control_put(phy->phys[i].lnk_rst);
1538 	}
1539 
1540 	cdns_sierra_clk_unregister(phy);
1541 }
1542 
1543 /* SGMII PHY PMA lane configuration */
1544 static const struct cdns_reg_pairs sgmii_phy_pma_ln_regs[] = {
1545 	{0x9010, SIERRA_PHY_PMA_XCVR_CTRL}
1546 };
1547 
1548 static const struct cdns_sierra_vals sgmii_phy_pma_ln_vals = {
1549 	.reg_pairs = sgmii_phy_pma_ln_regs,
1550 	.num_regs = ARRAY_SIZE(sgmii_phy_pma_ln_regs),
1551 };
1552 
1553 /* SGMII refclk 100MHz, no ssc, opt3 and GE1 links using PLL LC1 */
1554 static const struct cdns_reg_pairs sgmii_100_no_ssc_plllc1_opt3_cmn_regs[] = {
1555 	{0x002D, SIERRA_CMN_PLLLC1_FBDIV_INT_PREG},
1556 	{0x2085, SIERRA_CMN_PLLLC1_LF_COEFF_MODE0_PREG},
1557 	{0x1005, SIERRA_CMN_PLLLC1_CLK0_PREG},
1558 	{0x0000, SIERRA_CMN_PLLLC1_BWCAL_MODE0_PREG},
1559 	{0x0800, SIERRA_CMN_PLLLC1_SS_TIME_STEPSIZE_MODE_PREG}
1560 };
1561 
1562 static const struct cdns_reg_pairs sgmii_100_no_ssc_plllc1_opt3_ln_regs[] = {
1563 	{0x688E, SIERRA_DET_STANDEC_D_PREG},
1564 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1565 	{0x0FFE, SIERRA_PSC_RX_A0_PREG},
1566 	{0x0106, SIERRA_PLLCTRL_FBDIV_MODE01_PREG},
1567 	{0x0013, SIERRA_PLLCTRL_SUBRATE_PREG},
1568 	{0x0003, SIERRA_PLLCTRL_GEN_A_PREG},
1569 	{0x0106, SIERRA_PLLCTRL_GEN_D_PREG},
1570 	{0x5231, SIERRA_PLLCTRL_CPGAIN_MODE_PREG },
1571 	{0x0000, SIERRA_DRVCTRL_ATTEN_PREG},
1572 	{0x9702, SIERRA_DRVCTRL_BOOST_PREG},
1573 	{0x0051, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1574 	{0x3C0E, SIERRA_CREQ_CCLKDET_MODE01_PREG},
1575 	{0x3220, SIERRA_CREQ_FSMCLK_SEL_PREG},
1576 	{0x0000, SIERRA_CREQ_EQ_CTRL_PREG},
1577 	{0x0002, SIERRA_DEQ_PHALIGN_CTRL},
1578 	{0x0186, SIERRA_DEQ_GLUT0},
1579 	{0x0186, SIERRA_DEQ_GLUT1},
1580 	{0x0186, SIERRA_DEQ_GLUT2},
1581 	{0x0186, SIERRA_DEQ_GLUT3},
1582 	{0x0186, SIERRA_DEQ_GLUT4},
1583 	{0x0861, SIERRA_DEQ_ALUT0},
1584 	{0x07E0, SIERRA_DEQ_ALUT1},
1585 	{0x079E, SIERRA_DEQ_ALUT2},
1586 	{0x071D, SIERRA_DEQ_ALUT3},
1587 	{0x03F5, SIERRA_DEQ_DFETAP_CTRL_PREG},
1588 	{0x0C01, SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG},
1589 	{0x3C40, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1590 	{0x1C04, SIERRA_DEQ_TAU_CTRL2_PREG},
1591 	{0x0033, SIERRA_DEQ_PICTRL_PREG},
1592 	{0x0000, SIERRA_CPI_OUTBUF_RATESEL_PREG},
1593 	{0x0B6D, SIERRA_CPI_RESBIAS_BIN_PREG},
1594 	{0x0102, SIERRA_RXBUFFER_CTLECTRL_PREG},
1595 	{0x0002, SIERRA_RXBUFFER_RCDFECTRL_PREG}
1596 };
1597 
1598 static const struct cdns_sierra_vals sgmii_100_no_ssc_plllc1_opt3_cmn_vals = {
1599 	.reg_pairs = sgmii_100_no_ssc_plllc1_opt3_cmn_regs,
1600 	.num_regs = ARRAY_SIZE(sgmii_100_no_ssc_plllc1_opt3_cmn_regs),
1601 };
1602 
1603 static const struct cdns_sierra_vals sgmii_100_no_ssc_plllc1_opt3_ln_vals = {
1604 	.reg_pairs = sgmii_100_no_ssc_plllc1_opt3_ln_regs,
1605 	.num_regs = ARRAY_SIZE(sgmii_100_no_ssc_plllc1_opt3_ln_regs),
1606 };
1607 
1608 /* QSGMII PHY PMA lane configuration */
1609 static const struct cdns_reg_pairs qsgmii_phy_pma_ln_regs[] = {
1610 	{0x9010, SIERRA_PHY_PMA_XCVR_CTRL}
1611 };
1612 
1613 static const struct cdns_sierra_vals qsgmii_phy_pma_ln_vals = {
1614 	.reg_pairs = qsgmii_phy_pma_ln_regs,
1615 	.num_regs = ARRAY_SIZE(qsgmii_phy_pma_ln_regs),
1616 };
1617 
1618 /* QSGMII refclk 100MHz, 20b, opt1, No BW cal, no ssc, PLL LC1 */
1619 static const struct cdns_reg_pairs qsgmii_100_no_ssc_plllc1_cmn_regs[] = {
1620 	{0x2085, SIERRA_CMN_PLLLC1_LF_COEFF_MODE0_PREG},
1621 	{0x0000, SIERRA_CMN_PLLLC1_BWCAL_MODE0_PREG},
1622 	{0x0000, SIERRA_CMN_PLLLC1_SS_TIME_STEPSIZE_MODE_PREG}
1623 };
1624 
1625 static const struct cdns_reg_pairs qsgmii_100_no_ssc_plllc1_ln_regs[] = {
1626 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1627 	{0x0252, SIERRA_DET_STANDEC_E_PREG},
1628 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1629 	{0x0FFE, SIERRA_PSC_RX_A0_PREG},
1630 	{0x0011, SIERRA_PLLCTRL_SUBRATE_PREG},
1631 	{0x0001, SIERRA_PLLCTRL_GEN_A_PREG},
1632 	{0x5233, SIERRA_PLLCTRL_CPGAIN_MODE_PREG},
1633 	{0x0000, SIERRA_DRVCTRL_ATTEN_PREG},
1634 	{0x0089, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1635 	{0x3C3C, SIERRA_CREQ_CCLKDET_MODE01_PREG},
1636 	{0x3222, SIERRA_CREQ_FSMCLK_SEL_PREG},
1637 	{0x0000, SIERRA_CREQ_EQ_CTRL_PREG},
1638 	{0x8422, SIERRA_CTLELUT_CTRL_PREG},
1639 	{0x4111, SIERRA_DFE_ECMP_RATESEL_PREG},
1640 	{0x4111, SIERRA_DFE_SMP_RATESEL_PREG},
1641 	{0x0002, SIERRA_DEQ_PHALIGN_CTRL},
1642 	{0x9595, SIERRA_DEQ_VGATUNE_CTRL_PREG},
1643 	{0x0186, SIERRA_DEQ_GLUT0},
1644 	{0x0186, SIERRA_DEQ_GLUT1},
1645 	{0x0186, SIERRA_DEQ_GLUT2},
1646 	{0x0186, SIERRA_DEQ_GLUT3},
1647 	{0x0186, SIERRA_DEQ_GLUT4},
1648 	{0x0861, SIERRA_DEQ_ALUT0},
1649 	{0x07E0, SIERRA_DEQ_ALUT1},
1650 	{0x079E, SIERRA_DEQ_ALUT2},
1651 	{0x071D, SIERRA_DEQ_ALUT3},
1652 	{0x03F5, SIERRA_DEQ_DFETAP_CTRL_PREG},
1653 	{0x0C01, SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG},
1654 	{0x3C40, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1655 	{0x1C04, SIERRA_DEQ_TAU_CTRL2_PREG},
1656 	{0x0033, SIERRA_DEQ_PICTRL_PREG},
1657 	{0x0660, SIERRA_CPICAL_TMRVAL_MODE0_PREG},
1658 	{0x00D5, SIERRA_CPI_OUTBUF_RATESEL_PREG},
1659 	{0x0B6D, SIERRA_CPI_RESBIAS_BIN_PREG},
1660 	{0x0102, SIERRA_RXBUFFER_CTLECTRL_PREG},
1661 	{0x0002, SIERRA_RXBUFFER_RCDFECTRL_PREG}
1662 };
1663 
1664 static const struct cdns_sierra_vals qsgmii_100_no_ssc_plllc1_cmn_vals = {
1665 	.reg_pairs = qsgmii_100_no_ssc_plllc1_cmn_regs,
1666 	.num_regs = ARRAY_SIZE(qsgmii_100_no_ssc_plllc1_cmn_regs),
1667 };
1668 
1669 static const struct cdns_sierra_vals qsgmii_100_no_ssc_plllc1_ln_vals = {
1670 	.reg_pairs = qsgmii_100_no_ssc_plllc1_ln_regs,
1671 	.num_regs = ARRAY_SIZE(qsgmii_100_no_ssc_plllc1_ln_regs),
1672 };
1673 
1674 /* PCIE PHY PCS common configuration */
1675 static const struct cdns_reg_pairs pcie_phy_pcs_cmn_regs[] = {
1676 	{0x0430, SIERRA_PHY_PIPE_CMN_CTRL1}
1677 };
1678 
1679 static const struct cdns_sierra_vals pcie_phy_pcs_cmn_vals = {
1680 	.reg_pairs = pcie_phy_pcs_cmn_regs,
1681 	.num_regs = ARRAY_SIZE(pcie_phy_pcs_cmn_regs),
1682 };
1683 
1684 /* refclk100MHz_32b_PCIe_cmn_pll_no_ssc, pcie_links_using_plllc, pipe_bw_3 */
1685 static const struct cdns_reg_pairs pcie_100_no_ssc_plllc_cmn_regs[] = {
1686 	{0x2105, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
1687 	{0x2105, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
1688 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
1689 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG}
1690 };
1691 
1692 /*
1693  * refclk100MHz_32b_PCIe_ln_no_ssc, multilink, using_plllc,
1694  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
1695  */
1696 static const struct cdns_reg_pairs ml_pcie_100_no_ssc_ln_regs[] = {
1697 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1698 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
1699 	{0x0004, SIERRA_PSC_LN_A3_PREG},
1700 	{0x0004, SIERRA_PSC_LN_A4_PREG},
1701 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1702 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
1703 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
1704 	{0x8055, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
1705 	{0x80BB, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
1706 	{0x8351, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
1707 	{0x8349, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1708 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
1709 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
1710 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
1711 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
1712 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
1713 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
1714 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
1715 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
1716 	{0x0041, SIERRA_DEQ_GLUT0},
1717 	{0x0082, SIERRA_DEQ_GLUT1},
1718 	{0x00C3, SIERRA_DEQ_GLUT2},
1719 	{0x0145, SIERRA_DEQ_GLUT3},
1720 	{0x0186, SIERRA_DEQ_GLUT4},
1721 	{0x09E7, SIERRA_DEQ_ALUT0},
1722 	{0x09A6, SIERRA_DEQ_ALUT1},
1723 	{0x0965, SIERRA_DEQ_ALUT2},
1724 	{0x08E3, SIERRA_DEQ_ALUT3},
1725 	{0x00FA, SIERRA_DEQ_DFETAP0},
1726 	{0x00FA, SIERRA_DEQ_DFETAP1},
1727 	{0x00FA, SIERRA_DEQ_DFETAP2},
1728 	{0x00FA, SIERRA_DEQ_DFETAP3},
1729 	{0x00FA, SIERRA_DEQ_DFETAP4},
1730 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
1731 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
1732 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
1733 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1734 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
1735 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
1736 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
1737 	{0x002B, SIERRA_CPI_TRIM_PREG},
1738 	{0x0003, SIERRA_EPI_CTRL_PREG},
1739 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
1740 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
1741 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
1742 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
1743 };
1744 
1745 static const struct cdns_sierra_vals pcie_100_no_ssc_plllc_cmn_vals = {
1746 	.reg_pairs = pcie_100_no_ssc_plllc_cmn_regs,
1747 	.num_regs = ARRAY_SIZE(pcie_100_no_ssc_plllc_cmn_regs),
1748 };
1749 
1750 static const struct cdns_sierra_vals ml_pcie_100_no_ssc_ln_vals = {
1751 	.reg_pairs = ml_pcie_100_no_ssc_ln_regs,
1752 	.num_regs = ARRAY_SIZE(ml_pcie_100_no_ssc_ln_regs),
1753 };
1754 
1755 /*
1756  * TI J721E:
1757  * refclk100MHz_32b_PCIe_ln_no_ssc, multilink, using_plllc,
1758  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
1759  */
1760 static const struct cdns_reg_pairs ti_ml_pcie_100_no_ssc_ln_regs[] = {
1761 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1762 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
1763 	{0x0004, SIERRA_PSC_LN_A3_PREG},
1764 	{0x0004, SIERRA_PSC_LN_A4_PREG},
1765 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1766 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
1767 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
1768 	{0x8055, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
1769 	{0x80BB, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
1770 	{0x8351, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
1771 	{0x8349, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1772 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
1773 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
1774 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
1775 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
1776 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
1777 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
1778 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
1779 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
1780 	{0x0041, SIERRA_DEQ_GLUT0},
1781 	{0x0082, SIERRA_DEQ_GLUT1},
1782 	{0x00C3, SIERRA_DEQ_GLUT2},
1783 	{0x0145, SIERRA_DEQ_GLUT3},
1784 	{0x0186, SIERRA_DEQ_GLUT4},
1785 	{0x09E7, SIERRA_DEQ_ALUT0},
1786 	{0x09A6, SIERRA_DEQ_ALUT1},
1787 	{0x0965, SIERRA_DEQ_ALUT2},
1788 	{0x08E3, SIERRA_DEQ_ALUT3},
1789 	{0x00FA, SIERRA_DEQ_DFETAP0},
1790 	{0x00FA, SIERRA_DEQ_DFETAP1},
1791 	{0x00FA, SIERRA_DEQ_DFETAP2},
1792 	{0x00FA, SIERRA_DEQ_DFETAP3},
1793 	{0x00FA, SIERRA_DEQ_DFETAP4},
1794 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
1795 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
1796 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
1797 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1798 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
1799 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
1800 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
1801 	{0x002B, SIERRA_CPI_TRIM_PREG},
1802 	{0x0003, SIERRA_EPI_CTRL_PREG},
1803 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
1804 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
1805 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
1806 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG},
1807 	{0x0002, SIERRA_TX_RCVDET_OVRD_PREG}
1808 };
1809 
1810 static const struct cdns_sierra_vals ti_ml_pcie_100_no_ssc_ln_vals = {
1811 	.reg_pairs = ti_ml_pcie_100_no_ssc_ln_regs,
1812 	.num_regs = ARRAY_SIZE(ti_ml_pcie_100_no_ssc_ln_regs),
1813 };
1814 
1815 /* refclk100MHz_32b_PCIe_cmn_pll_int_ssc, pcie_links_using_plllc, pipe_bw_3 */
1816 static const struct cdns_reg_pairs pcie_100_int_ssc_plllc_cmn_regs[] = {
1817 	{0x000E, SIERRA_CMN_PLLLC_MODE_PREG},
1818 	{0x4006, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
1819 	{0x4006, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
1820 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
1821 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
1822 	{0x0581, SIERRA_CMN_PLLLC_DSMCORR_PREG},
1823 	{0x7F80, SIERRA_CMN_PLLLC_SS_PREG},
1824 	{0x0041, SIERRA_CMN_PLLLC_SS_AMP_STEP_SIZE_PREG},
1825 	{0x0464, SIERRA_CMN_PLLLC_SSTWOPT_PREG},
1826 	{0x0D0D, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG},
1827 	{0x0060, SIERRA_CMN_PLLLC_LOCK_DELAY_CTRL_PREG}
1828 };
1829 
1830 /*
1831  * refclk100MHz_32b_PCIe_ln_int_ssc, multilink, using_plllc,
1832  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
1833  */
1834 static const struct cdns_reg_pairs ml_pcie_100_int_ssc_ln_regs[] = {
1835 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1836 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
1837 	{0x0004, SIERRA_PSC_LN_A3_PREG},
1838 	{0x0004, SIERRA_PSC_LN_A4_PREG},
1839 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1840 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
1841 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
1842 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
1843 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
1844 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
1845 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
1846 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1847 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
1848 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
1849 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
1850 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
1851 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
1852 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
1853 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
1854 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
1855 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
1856 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
1857 	{0x0041, SIERRA_DEQ_GLUT0},
1858 	{0x0082, SIERRA_DEQ_GLUT1},
1859 	{0x00C3, SIERRA_DEQ_GLUT2},
1860 	{0x0145, SIERRA_DEQ_GLUT3},
1861 	{0x0186, SIERRA_DEQ_GLUT4},
1862 	{0x09E7, SIERRA_DEQ_ALUT0},
1863 	{0x09A6, SIERRA_DEQ_ALUT1},
1864 	{0x0965, SIERRA_DEQ_ALUT2},
1865 	{0x08E3, SIERRA_DEQ_ALUT3},
1866 	{0x00FA, SIERRA_DEQ_DFETAP0},
1867 	{0x00FA, SIERRA_DEQ_DFETAP1},
1868 	{0x00FA, SIERRA_DEQ_DFETAP2},
1869 	{0x00FA, SIERRA_DEQ_DFETAP3},
1870 	{0x00FA, SIERRA_DEQ_DFETAP4},
1871 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
1872 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
1873 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
1874 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1875 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
1876 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
1877 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
1878 	{0x002B, SIERRA_CPI_TRIM_PREG},
1879 	{0x0003, SIERRA_EPI_CTRL_PREG},
1880 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
1881 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
1882 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
1883 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
1884 };
1885 
1886 static const struct cdns_sierra_vals pcie_100_int_ssc_plllc_cmn_vals = {
1887 	.reg_pairs = pcie_100_int_ssc_plllc_cmn_regs,
1888 	.num_regs = ARRAY_SIZE(pcie_100_int_ssc_plllc_cmn_regs),
1889 };
1890 
1891 static const struct cdns_sierra_vals ml_pcie_100_int_ssc_ln_vals = {
1892 	.reg_pairs = ml_pcie_100_int_ssc_ln_regs,
1893 	.num_regs = ARRAY_SIZE(ml_pcie_100_int_ssc_ln_regs),
1894 };
1895 
1896 /*
1897  * TI J721E:
1898  * refclk100MHz_32b_PCIe_ln_int_ssc, multilink, using_plllc,
1899  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
1900  */
1901 static const struct cdns_reg_pairs ti_ml_pcie_100_int_ssc_ln_regs[] = {
1902 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1903 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
1904 	{0x0004, SIERRA_PSC_LN_A3_PREG},
1905 	{0x0004, SIERRA_PSC_LN_A4_PREG},
1906 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1907 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
1908 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
1909 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
1910 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
1911 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
1912 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
1913 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1914 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
1915 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
1916 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
1917 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
1918 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
1919 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
1920 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
1921 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
1922 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
1923 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
1924 	{0x0041, SIERRA_DEQ_GLUT0},
1925 	{0x0082, SIERRA_DEQ_GLUT1},
1926 	{0x00C3, SIERRA_DEQ_GLUT2},
1927 	{0x0145, SIERRA_DEQ_GLUT3},
1928 	{0x0186, SIERRA_DEQ_GLUT4},
1929 	{0x09E7, SIERRA_DEQ_ALUT0},
1930 	{0x09A6, SIERRA_DEQ_ALUT1},
1931 	{0x0965, SIERRA_DEQ_ALUT2},
1932 	{0x08E3, SIERRA_DEQ_ALUT3},
1933 	{0x00FA, SIERRA_DEQ_DFETAP0},
1934 	{0x00FA, SIERRA_DEQ_DFETAP1},
1935 	{0x00FA, SIERRA_DEQ_DFETAP2},
1936 	{0x00FA, SIERRA_DEQ_DFETAP3},
1937 	{0x00FA, SIERRA_DEQ_DFETAP4},
1938 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
1939 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
1940 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
1941 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
1942 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
1943 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
1944 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
1945 	{0x002B, SIERRA_CPI_TRIM_PREG},
1946 	{0x0003, SIERRA_EPI_CTRL_PREG},
1947 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
1948 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
1949 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
1950 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG},
1951 	{0x0002, SIERRA_TX_RCVDET_OVRD_PREG}
1952 };
1953 
1954 static const struct cdns_sierra_vals ti_ml_pcie_100_int_ssc_ln_vals = {
1955 	.reg_pairs = ti_ml_pcie_100_int_ssc_ln_regs,
1956 	.num_regs = ARRAY_SIZE(ti_ml_pcie_100_int_ssc_ln_regs),
1957 };
1958 
1959 /* refclk100MHz_32b_PCIe_cmn_pll_ext_ssc, pcie_links_using_plllc, pipe_bw_3 */
1960 static const struct cdns_reg_pairs pcie_100_ext_ssc_plllc_cmn_regs[] = {
1961 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
1962 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
1963 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
1964 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
1965 	{0x1B1B, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG}
1966 };
1967 
1968 /*
1969  * refclk100MHz_32b_PCIe_ln_ext_ssc, multilink, using_plllc,
1970  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
1971  */
1972 static const struct cdns_reg_pairs ml_pcie_100_ext_ssc_ln_regs[] = {
1973 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
1974 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
1975 	{0x0004, SIERRA_PSC_LN_A3_PREG},
1976 	{0x0004, SIERRA_PSC_LN_A4_PREG},
1977 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
1978 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
1979 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
1980 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
1981 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
1982 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
1983 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
1984 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
1985 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
1986 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
1987 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
1988 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
1989 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
1990 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
1991 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
1992 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
1993 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
1994 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
1995 	{0x0041, SIERRA_DEQ_GLUT0},
1996 	{0x0082, SIERRA_DEQ_GLUT1},
1997 	{0x00C3, SIERRA_DEQ_GLUT2},
1998 	{0x0145, SIERRA_DEQ_GLUT3},
1999 	{0x0186, SIERRA_DEQ_GLUT4},
2000 	{0x09E7, SIERRA_DEQ_ALUT0},
2001 	{0x09A6, SIERRA_DEQ_ALUT1},
2002 	{0x0965, SIERRA_DEQ_ALUT2},
2003 	{0x08E3, SIERRA_DEQ_ALUT3},
2004 	{0x00FA, SIERRA_DEQ_DFETAP0},
2005 	{0x00FA, SIERRA_DEQ_DFETAP1},
2006 	{0x00FA, SIERRA_DEQ_DFETAP2},
2007 	{0x00FA, SIERRA_DEQ_DFETAP3},
2008 	{0x00FA, SIERRA_DEQ_DFETAP4},
2009 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
2010 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
2011 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
2012 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2013 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
2014 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
2015 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2016 	{0x002B, SIERRA_CPI_TRIM_PREG},
2017 	{0x0003, SIERRA_EPI_CTRL_PREG},
2018 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
2019 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
2020 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2021 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
2022 };
2023 
2024 static const struct cdns_sierra_vals pcie_100_ext_ssc_plllc_cmn_vals = {
2025 	.reg_pairs = pcie_100_ext_ssc_plllc_cmn_regs,
2026 	.num_regs = ARRAY_SIZE(pcie_100_ext_ssc_plllc_cmn_regs),
2027 };
2028 
2029 static const struct cdns_sierra_vals ml_pcie_100_ext_ssc_ln_vals = {
2030 	.reg_pairs = ml_pcie_100_ext_ssc_ln_regs,
2031 	.num_regs = ARRAY_SIZE(ml_pcie_100_ext_ssc_ln_regs),
2032 };
2033 
2034 /*
2035  * TI J721E:
2036  * refclk100MHz_32b_PCIe_ln_ext_ssc, multilink, using_plllc,
2037  * cmn_pllcy_anaclk0_1Ghz, xcvr_pllclk_fullrt_500mhz
2038  */
2039 static const struct cdns_reg_pairs ti_ml_pcie_100_ext_ssc_ln_regs[] = {
2040 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
2041 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
2042 	{0x0004, SIERRA_PSC_LN_A3_PREG},
2043 	{0x0004, SIERRA_PSC_LN_A4_PREG},
2044 	{0x0004, SIERRA_PSC_LN_IDLE_PREG},
2045 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
2046 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
2047 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
2048 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
2049 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
2050 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
2051 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2052 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
2053 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
2054 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
2055 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
2056 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2057 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
2058 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
2059 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
2060 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
2061 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
2062 	{0x0041, SIERRA_DEQ_GLUT0},
2063 	{0x0082, SIERRA_DEQ_GLUT1},
2064 	{0x00C3, SIERRA_DEQ_GLUT2},
2065 	{0x0145, SIERRA_DEQ_GLUT3},
2066 	{0x0186, SIERRA_DEQ_GLUT4},
2067 	{0x09E7, SIERRA_DEQ_ALUT0},
2068 	{0x09A6, SIERRA_DEQ_ALUT1},
2069 	{0x0965, SIERRA_DEQ_ALUT2},
2070 	{0x08E3, SIERRA_DEQ_ALUT3},
2071 	{0x00FA, SIERRA_DEQ_DFETAP0},
2072 	{0x00FA, SIERRA_DEQ_DFETAP1},
2073 	{0x00FA, SIERRA_DEQ_DFETAP2},
2074 	{0x00FA, SIERRA_DEQ_DFETAP3},
2075 	{0x00FA, SIERRA_DEQ_DFETAP4},
2076 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
2077 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
2078 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
2079 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2080 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
2081 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
2082 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2083 	{0x002B, SIERRA_CPI_TRIM_PREG},
2084 	{0x0003, SIERRA_EPI_CTRL_PREG},
2085 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
2086 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
2087 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2088 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG},
2089 	{0x0002, SIERRA_TX_RCVDET_OVRD_PREG}
2090 };
2091 
2092 static const struct cdns_sierra_vals ti_ml_pcie_100_ext_ssc_ln_vals = {
2093 	.reg_pairs = ti_ml_pcie_100_ext_ssc_ln_regs,
2094 	.num_regs = ARRAY_SIZE(ti_ml_pcie_100_ext_ssc_ln_regs),
2095 };
2096 
2097 /* refclk100MHz_32b_PCIe_cmn_pll_no_ssc */
2098 static const struct cdns_reg_pairs cdns_pcie_cmn_regs_no_ssc[] = {
2099 	{0x2105, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
2100 	{0x2105, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
2101 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
2102 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG}
2103 };
2104 
2105 /* refclk100MHz_32b_PCIe_ln_no_ssc */
2106 static const struct cdns_reg_pairs cdns_pcie_ln_regs_no_ssc[] = {
2107 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
2108 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
2109 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
2110 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
2111 	{0x8055, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
2112 	{0x80BB, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
2113 	{0x8351, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
2114 	{0x8349, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2115 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
2116 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
2117 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2118 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
2119 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
2120 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
2121 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
2122 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
2123 	{0x0041, SIERRA_DEQ_GLUT0},
2124 	{0x0082, SIERRA_DEQ_GLUT1},
2125 	{0x00C3, SIERRA_DEQ_GLUT2},
2126 	{0x0145, SIERRA_DEQ_GLUT3},
2127 	{0x0186, SIERRA_DEQ_GLUT4},
2128 	{0x09E7, SIERRA_DEQ_ALUT0},
2129 	{0x09A6, SIERRA_DEQ_ALUT1},
2130 	{0x0965, SIERRA_DEQ_ALUT2},
2131 	{0x08E3, SIERRA_DEQ_ALUT3},
2132 	{0x00FA, SIERRA_DEQ_DFETAP0},
2133 	{0x00FA, SIERRA_DEQ_DFETAP1},
2134 	{0x00FA, SIERRA_DEQ_DFETAP2},
2135 	{0x00FA, SIERRA_DEQ_DFETAP3},
2136 	{0x00FA, SIERRA_DEQ_DFETAP4},
2137 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
2138 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
2139 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
2140 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2141 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
2142 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
2143 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2144 	{0x002B, SIERRA_CPI_TRIM_PREG},
2145 	{0x0003, SIERRA_EPI_CTRL_PREG},
2146 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
2147 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
2148 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2149 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
2150 };
2151 
2152 static const struct cdns_sierra_vals pcie_100_no_ssc_cmn_vals = {
2153 	.reg_pairs = cdns_pcie_cmn_regs_no_ssc,
2154 	.num_regs = ARRAY_SIZE(cdns_pcie_cmn_regs_no_ssc),
2155 };
2156 
2157 static const struct cdns_sierra_vals pcie_100_no_ssc_ln_vals = {
2158 	.reg_pairs = cdns_pcie_ln_regs_no_ssc,
2159 	.num_regs = ARRAY_SIZE(cdns_pcie_ln_regs_no_ssc),
2160 };
2161 
2162 /* refclk100MHz_32b_PCIe_cmn_pll_int_ssc */
2163 static const struct cdns_reg_pairs cdns_pcie_cmn_regs_int_ssc[] = {
2164 	{0x000E, SIERRA_CMN_PLLLC_MODE_PREG},
2165 	{0x4006, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
2166 	{0x4006, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
2167 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
2168 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
2169 	{0x0581, SIERRA_CMN_PLLLC_DSMCORR_PREG},
2170 	{0x7F80, SIERRA_CMN_PLLLC_SS_PREG},
2171 	{0x0041, SIERRA_CMN_PLLLC_SS_AMP_STEP_SIZE_PREG},
2172 	{0x0464, SIERRA_CMN_PLLLC_SSTWOPT_PREG},
2173 	{0x0D0D, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG},
2174 	{0x0060, SIERRA_CMN_PLLLC_LOCK_DELAY_CTRL_PREG}
2175 };
2176 
2177 /* refclk100MHz_32b_PCIe_ln_int_ssc */
2178 static const struct cdns_reg_pairs cdns_pcie_ln_regs_int_ssc[] = {
2179 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
2180 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
2181 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
2182 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
2183 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
2184 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
2185 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
2186 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
2187 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2188 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
2189 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
2190 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
2191 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
2192 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2193 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
2194 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
2195 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
2196 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
2197 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
2198 	{0x0041, SIERRA_DEQ_GLUT0},
2199 	{0x0082, SIERRA_DEQ_GLUT1},
2200 	{0x00C3, SIERRA_DEQ_GLUT2},
2201 	{0x0145, SIERRA_DEQ_GLUT3},
2202 	{0x0186, SIERRA_DEQ_GLUT4},
2203 	{0x09E7, SIERRA_DEQ_ALUT0},
2204 	{0x09A6, SIERRA_DEQ_ALUT1},
2205 	{0x0965, SIERRA_DEQ_ALUT2},
2206 	{0x08E3, SIERRA_DEQ_ALUT3},
2207 	{0x00FA, SIERRA_DEQ_DFETAP0},
2208 	{0x00FA, SIERRA_DEQ_DFETAP1},
2209 	{0x00FA, SIERRA_DEQ_DFETAP2},
2210 	{0x00FA, SIERRA_DEQ_DFETAP3},
2211 	{0x00FA, SIERRA_DEQ_DFETAP4},
2212 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
2213 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
2214 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
2215 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2216 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
2217 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
2218 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2219 	{0x002B, SIERRA_CPI_TRIM_PREG},
2220 	{0x0003, SIERRA_EPI_CTRL_PREG},
2221 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
2222 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
2223 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2224 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
2225 };
2226 
2227 static const struct cdns_sierra_vals pcie_100_int_ssc_cmn_vals = {
2228 	.reg_pairs = cdns_pcie_cmn_regs_int_ssc,
2229 	.num_regs = ARRAY_SIZE(cdns_pcie_cmn_regs_int_ssc),
2230 };
2231 
2232 static const struct cdns_sierra_vals pcie_100_int_ssc_ln_vals = {
2233 	.reg_pairs = cdns_pcie_ln_regs_int_ssc,
2234 	.num_regs = ARRAY_SIZE(cdns_pcie_ln_regs_int_ssc),
2235 };
2236 
2237 /* refclk100MHz_32b_PCIe_cmn_pll_ext_ssc */
2238 static const struct cdns_reg_pairs cdns_pcie_cmn_regs_ext_ssc[] = {
2239 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
2240 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
2241 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
2242 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
2243 	{0x1B1B, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG}
2244 };
2245 
2246 /* refclk100MHz_32b_PCIe_ln_ext_ssc */
2247 static const struct cdns_reg_pairs cdns_pcie_ln_regs_ext_ssc[] = {
2248 	{0xFC08, SIERRA_DET_STANDEC_A_PREG},
2249 	{0x001D, SIERRA_PSM_A3IN_TMR_PREG},
2250 	{0x1555, SIERRA_DFE_BIASTRIM_PREG},
2251 	{0x9703, SIERRA_DRVCTRL_BOOST_PREG},
2252 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
2253 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
2254 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
2255 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
2256 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2257 	{0x0002, SIERRA_CREQ_DCBIASATTEN_OVR_PREG},
2258 	{0x9800, SIERRA_RX_CTLE_CAL_PREG},
2259 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
2260 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
2261 	{0x5624, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2262 	{0x000F, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
2263 	{0x00FF, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
2264 	{0x4C4C, SIERRA_DEQ_ERRCMP_CTRL_PREG},
2265 	{0x02FA, SIERRA_DEQ_OFFSET_CTRL_PREG},
2266 	{0x02FA, SIERRA_DEQ_GAIN_CTRL_PREG},
2267 	{0x0041, SIERRA_DEQ_GLUT0},
2268 	{0x0082, SIERRA_DEQ_GLUT1},
2269 	{0x00C3, SIERRA_DEQ_GLUT2},
2270 	{0x0145, SIERRA_DEQ_GLUT3},
2271 	{0x0186, SIERRA_DEQ_GLUT4},
2272 	{0x09E7, SIERRA_DEQ_ALUT0},
2273 	{0x09A6, SIERRA_DEQ_ALUT1},
2274 	{0x0965, SIERRA_DEQ_ALUT2},
2275 	{0x08E3, SIERRA_DEQ_ALUT3},
2276 	{0x00FA, SIERRA_DEQ_DFETAP0},
2277 	{0x00FA, SIERRA_DEQ_DFETAP1},
2278 	{0x00FA, SIERRA_DEQ_DFETAP2},
2279 	{0x00FA, SIERRA_DEQ_DFETAP3},
2280 	{0x00FA, SIERRA_DEQ_DFETAP4},
2281 	{0x000F, SIERRA_DEQ_PRECUR_PREG},
2282 	{0x0280, SIERRA_DEQ_POSTCUR_PREG},
2283 	{0x8F00, SIERRA_DEQ_POSTCUR_DECR_PREG},
2284 	{0x3C0F, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2285 	{0x1C0C, SIERRA_DEQ_TAU_CTRL2_PREG},
2286 	{0x0100, SIERRA_DEQ_TAU_CTRL3_PREG},
2287 	{0x5E82, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2288 	{0x002B, SIERRA_CPI_TRIM_PREG},
2289 	{0x0003, SIERRA_EPI_CTRL_PREG},
2290 	{0x803F, SIERRA_SDFILT_H2L_A_PREG},
2291 	{0x0004, SIERRA_RXBUFFER_CTLECTRL_PREG},
2292 	{0x2010, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2293 	{0x4432, SIERRA_RXBUFFER_DFECTRL_PREG}
2294 };
2295 
2296 static const struct cdns_sierra_vals pcie_100_ext_ssc_cmn_vals = {
2297 	.reg_pairs = cdns_pcie_cmn_regs_ext_ssc,
2298 	.num_regs = ARRAY_SIZE(cdns_pcie_cmn_regs_ext_ssc),
2299 };
2300 
2301 static const struct cdns_sierra_vals pcie_100_ext_ssc_ln_vals = {
2302 	.reg_pairs = cdns_pcie_ln_regs_ext_ssc,
2303 	.num_regs = ARRAY_SIZE(cdns_pcie_ln_regs_ext_ssc),
2304 };
2305 
2306 /* refclk100MHz_20b_USB_cmn_pll_ext_ssc */
2307 static const struct cdns_reg_pairs cdns_usb_cmn_regs_ext_ssc[] = {
2308 	{0x2085, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
2309 	{0x2085, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
2310 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
2311 	{0x0000, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG}
2312 };
2313 
2314 /* refclk100MHz_20b_USB_ln_ext_ssc */
2315 static const struct cdns_reg_pairs cdns_usb_ln_regs_ext_ssc[] = {
2316 	{0xFE0A, SIERRA_DET_STANDEC_A_PREG},
2317 	{0x000F, SIERRA_DET_STANDEC_B_PREG},
2318 	{0x55A5, SIERRA_DET_STANDEC_C_PREG},
2319 	{0x69ad, SIERRA_DET_STANDEC_D_PREG},
2320 	{0x0241, SIERRA_DET_STANDEC_E_PREG},
2321 	{0x0110, SIERRA_PSM_LANECAL_DLY_A1_RESETS_PREG},
2322 	{0x0014, SIERRA_PSM_A0IN_TMR_PREG},
2323 	{0xCF00, SIERRA_PSM_DIAG_PREG},
2324 	{0x001F, SIERRA_PSC_TX_A0_PREG},
2325 	{0x0007, SIERRA_PSC_TX_A1_PREG},
2326 	{0x0003, SIERRA_PSC_TX_A2_PREG},
2327 	{0x0003, SIERRA_PSC_TX_A3_PREG},
2328 	{0x0FFF, SIERRA_PSC_RX_A0_PREG},
2329 	{0x0003, SIERRA_PSC_RX_A1_PREG},
2330 	{0x0003, SIERRA_PSC_RX_A2_PREG},
2331 	{0x0001, SIERRA_PSC_RX_A3_PREG},
2332 	{0x0001, SIERRA_PLLCTRL_SUBRATE_PREG},
2333 	{0x0406, SIERRA_PLLCTRL_GEN_D_PREG},
2334 	{0x5233, SIERRA_PLLCTRL_CPGAIN_MODE_PREG},
2335 	{0x00CA, SIERRA_CLKPATH_BIASTRIM_PREG},
2336 	{0x2512, SIERRA_DFE_BIASTRIM_PREG},
2337 	{0x0000, SIERRA_DRVCTRL_ATTEN_PREG},
2338 	{0x823E, SIERRA_CLKPATHCTRL_TMR_PREG},
2339 	{0x078F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
2340 	{0x078F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2341 	{0x7B3C, SIERRA_CREQ_CCLKDET_MODE01_PREG},
2342 	{0x023C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
2343 	{0x3232, SIERRA_CREQ_FSMCLK_SEL_PREG},
2344 	{0x0000, SIERRA_CREQ_EQ_CTRL_PREG},
2345 	{0x0000, SIERRA_CREQ_SPARE_PREG},
2346 	{0xCC44, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
2347 	{0x8452, SIERRA_CTLELUT_CTRL_PREG},
2348 	{0x4121, SIERRA_DFE_ECMP_RATESEL_PREG},
2349 	{0x4121, SIERRA_DFE_SMP_RATESEL_PREG},
2350 	{0x0003, SIERRA_DEQ_PHALIGN_CTRL},
2351 	{0x3200, SIERRA_DEQ_CONCUR_CTRL1_PREG},
2352 	{0x5064, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2353 	{0x0030, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
2354 	{0x0048, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
2355 	{0x5A5A, SIERRA_DEQ_ERRCMP_CTRL_PREG},
2356 	{0x02F5, SIERRA_DEQ_OFFSET_CTRL_PREG},
2357 	{0x02F5, SIERRA_DEQ_GAIN_CTRL_PREG},
2358 	{0x9999, SIERRA_DEQ_VGATUNE_CTRL_PREG},
2359 	{0x0014, SIERRA_DEQ_GLUT0},
2360 	{0x0014, SIERRA_DEQ_GLUT1},
2361 	{0x0014, SIERRA_DEQ_GLUT2},
2362 	{0x0014, SIERRA_DEQ_GLUT3},
2363 	{0x0014, SIERRA_DEQ_GLUT4},
2364 	{0x0014, SIERRA_DEQ_GLUT5},
2365 	{0x0014, SIERRA_DEQ_GLUT6},
2366 	{0x0014, SIERRA_DEQ_GLUT7},
2367 	{0x0014, SIERRA_DEQ_GLUT8},
2368 	{0x0014, SIERRA_DEQ_GLUT9},
2369 	{0x0014, SIERRA_DEQ_GLUT10},
2370 	{0x0014, SIERRA_DEQ_GLUT11},
2371 	{0x0014, SIERRA_DEQ_GLUT12},
2372 	{0x0014, SIERRA_DEQ_GLUT13},
2373 	{0x0014, SIERRA_DEQ_GLUT14},
2374 	{0x0014, SIERRA_DEQ_GLUT15},
2375 	{0x0014, SIERRA_DEQ_GLUT16},
2376 	{0x0BAE, SIERRA_DEQ_ALUT0},
2377 	{0x0AEB, SIERRA_DEQ_ALUT1},
2378 	{0x0A28, SIERRA_DEQ_ALUT2},
2379 	{0x0965, SIERRA_DEQ_ALUT3},
2380 	{0x08A2, SIERRA_DEQ_ALUT4},
2381 	{0x07DF, SIERRA_DEQ_ALUT5},
2382 	{0x071C, SIERRA_DEQ_ALUT6},
2383 	{0x0659, SIERRA_DEQ_ALUT7},
2384 	{0x0596, SIERRA_DEQ_ALUT8},
2385 	{0x0514, SIERRA_DEQ_ALUT9},
2386 	{0x0492, SIERRA_DEQ_ALUT10},
2387 	{0x0410, SIERRA_DEQ_ALUT11},
2388 	{0x038E, SIERRA_DEQ_ALUT12},
2389 	{0x030C, SIERRA_DEQ_ALUT13},
2390 	{0x03F4, SIERRA_DEQ_DFETAP_CTRL_PREG},
2391 	{0x0001, SIERRA_DFE_EN_1010_IGNORE_PREG},
2392 	{0x3C01, SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG},
2393 	{0x3C40, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
2394 	{0x1C08, SIERRA_DEQ_TAU_CTRL2_PREG},
2395 	{0x0033, SIERRA_DEQ_PICTRL_PREG},
2396 	{0x0400, SIERRA_CPICAL_TMRVAL_MODE1_PREG},
2397 	{0x0330, SIERRA_CPICAL_TMRVAL_MODE0_PREG},
2398 	{0x01FF, SIERRA_CPICAL_PICNT_MODE1_PREG},
2399 	{0x0009, SIERRA_CPI_OUTBUF_RATESEL_PREG},
2400 	{0x3232, SIERRA_CPICAL_RES_STARTCODE_MODE23_PREG},
2401 	{0x0005, SIERRA_LFPSDET_SUPPORT_PREG},
2402 	{0x000F, SIERRA_LFPSFILT_NS_PREG},
2403 	{0x0009, SIERRA_LFPSFILT_RD_PREG},
2404 	{0x0001, SIERRA_LFPSFILT_MP_PREG},
2405 	{0x6013, SIERRA_SIGDET_SUPPORT_PREG},
2406 	{0x8013, SIERRA_SDFILT_H2L_A_PREG},
2407 	{0x8009, SIERRA_SDFILT_L2H_PREG},
2408 	{0x0024, SIERRA_RXBUFFER_CTLECTRL_PREG},
2409 	{0x0020, SIERRA_RXBUFFER_RCDFECTRL_PREG},
2410 	{0x4243, SIERRA_RXBUFFER_DFECTRL_PREG}
2411 };
2412 
2413 static const struct cdns_sierra_vals usb_100_ext_ssc_cmn_vals = {
2414 	.reg_pairs = cdns_usb_cmn_regs_ext_ssc,
2415 	.num_regs = ARRAY_SIZE(cdns_usb_cmn_regs_ext_ssc),
2416 };
2417 
2418 static const struct cdns_sierra_vals usb_100_ext_ssc_ln_vals = {
2419 	.reg_pairs = cdns_usb_ln_regs_ext_ssc,
2420 	.num_regs = ARRAY_SIZE(cdns_usb_ln_regs_ext_ssc),
2421 };
2422 
2423 /* SGMII PHY common configuration */
2424 static const struct cdns_reg_pairs sgmii_pma_cmn_vals[] = {
2425 	{0x0180, SIERRA_SDOSCCAL_CLK_CNT_PREG},
2426 	{0x6000, SIERRA_CMN_REFRCV_PREG},
2427 	{0x0031, SIERRA_CMN_RESCAL_CTRLA_PREG},
2428 	{0x001C, SIERRA_CMN_PLLLC_FBDIV_INT_MODE0_PREG},
2429 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
2430 	{0x0000, SIERRA_CMN_PLLLC_LOCKSEARCH_PREG},
2431 	{0x8103, SIERRA_CMN_PLLLC_CLK0_PREG},
2432 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
2433 	{0x0027, SIERRA_CMN_PLLCSM_PLLEN_TMR_PREG},
2434 	{0x0062, SIERRA_CMN_PLLCSM_PLLPRE_TMR_PREG},
2435 	{0x0800, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG},
2436 	{0x0000, SIERRA_CMN_PLLLC_INIT_PREG},
2437 	{0x0000, SIERRA_CMN_PLLLC_ITERTMR_PREG},
2438 	{0x0020, SIERRA_CMN_PLLLC_LOCK_CNTSTART_PREG},
2439 	{0x0013, SIERRA_CMN_PLLLC_DCOCAL_CTRL_PREG},
2440 	{0x0013, SIERRA_CMN_PLLLC1_DCOCAL_CTRL_PREG},
2441 };
2442 
2443 static const struct cdns_sierra_vals sgmii_cmn_vals = {
2444 	.reg_pairs = sgmii_pma_cmn_vals,
2445 	.num_regs = ARRAY_SIZE(sgmii_pma_cmn_vals),
2446 };
2447 
2448 /* SGMII PHY lane configuration */
2449 static const struct cdns_reg_pairs sgmii_ln_regs[] = {
2450 	{0x691E, SIERRA_DET_STANDEC_D_PREG},
2451 	{0x0FFE, SIERRA_PSC_RX_A0_PREG},
2452 	{0x0104, SIERRA_PLLCTRL_FBDIV_MODE01_PREG},
2453 	{0x0013, SIERRA_PLLCTRL_SUBRATE_PREG},
2454 	{0x0106, SIERRA_PLLCTRL_GEN_D_PREG},
2455 	{0x5234, SIERRA_PLLCTRL_CPGAIN_MODE_PREG},
2456 	{0x0000, SIERRA_DRVCTRL_ATTEN_PREG},
2457 	{0x00AB, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
2458 	{0x3C0E, SIERRA_CREQ_CCLKDET_MODE01_PREG},
2459 	{0x3220, SIERRA_CREQ_FSMCLK_SEL_PREG},
2460 	{0x0000, SIERRA_CREQ_EQ_CTRL_PREG},
2461 	{0x6320, SIERRA_DEQ_CONCUR_EPIOFFSET_MODE_PREG},
2462 	{0x0000, SIERRA_CPI_OUTBUF_RATESEL_PREG},
2463 	{0x15A2, SIERRA_LN_SPARE_REG_PREG},
2464 	{0x7900, SIERRA_DEQ_BLK_TAU_CTRL1_PREG},
2465 	{0x2202, SIERRA_DEQ_BLK_TAU_CTRL4_PREG},
2466 	{0x2206, SIERRA_DEQ_TAU_CTRL2_PREG},
2467 	{0x0005, SIERRA_LANE_TX_RECEIVER_DETECT_PREG},
2468 	{0x8001, SIERRA_CREQ_SPARE_PREG},
2469 	{0x0000, SIERRA_DEQ_CONCUR_CTRL1_PREG},
2470 	{0xD004, SIERRA_DEQ_CONCUR_CTRL2_PREG},
2471 	{0x0101, SIERRA_DEQ_GLUT9},
2472 	{0x0101, SIERRA_DEQ_GLUT10},
2473 	{0x0101, SIERRA_DEQ_GLUT11},
2474 	{0x0101, SIERRA_DEQ_GLUT12},
2475 	{0x0000, SIERRA_DEQ_GLUT13},
2476 	{0x0000, SIERRA_DEQ_GLUT16},
2477 	{0x0000, SIERRA_POSTPRECUR_EN_CEPH_CTRL_PREG},
2478 	{0x0000, SIERRA_TAU_EN_CEPH2TO0_PREG},
2479 	{0x0003, SIERRA_TAU_EN_CEPH5TO3_PREG},
2480 	{0x0101, SIERRA_DEQ_ALUT8},
2481 	{0x0101, SIERRA_DEQ_ALUT9},
2482 	{0x0100, SIERRA_DEQ_ALUT10},
2483 	{0x0000, SIERRA_OEPH_EN_CTRL_PREG},
2484 	{0x5425, SIERRA_DEQ_OPENEYE_CTRL_PREG},
2485 	{0x7458, SIERRA_CPICAL_RES_STARTCODE_MODE23_PREG},
2486 	{0x321F, SIERRA_CPICAL_RES_STARTCODE_MODE01_PREG},
2487 };
2488 
2489 static const struct cdns_sierra_vals sgmii_pma_ln_vals = {
2490 	.reg_pairs = sgmii_ln_regs,
2491 	.num_regs = ARRAY_SIZE(sgmii_ln_regs),
2492 };
2493 
2494 static const struct cdns_sierra_data cdns_map_sierra = {
2495 	.id_value = SIERRA_MACRO_ID,
2496 	.block_offset_shift = 0x2,
2497 	.reg_offset_shift = 0x2,
2498 	.pcs_cmn_vals = {
2499 		[TYPE_PCIE] = {
2500 			[TYPE_NONE] = {
2501 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2502 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2503 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2504 			},
2505 			[TYPE_SGMII] = {
2506 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2507 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2508 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2509 			},
2510 			[TYPE_QSGMII] = {
2511 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2512 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2513 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2514 			},
2515 		},
2516 	},
2517 	.pma_cmn_vals = {
2518 		[TYPE_PCIE] = {
2519 			[TYPE_NONE] = {
2520 				[NO_SSC] = &pcie_100_no_ssc_cmn_vals,
2521 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_cmn_vals,
2522 				[INTERNAL_SSC] = &pcie_100_int_ssc_cmn_vals,
2523 			},
2524 			[TYPE_SGMII] = {
2525 				[NO_SSC] = &pcie_100_no_ssc_plllc_cmn_vals,
2526 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_plllc_cmn_vals,
2527 				[INTERNAL_SSC] = &pcie_100_int_ssc_plllc_cmn_vals,
2528 			},
2529 			[TYPE_QSGMII] = {
2530 				[NO_SSC] = &pcie_100_no_ssc_plllc_cmn_vals,
2531 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_plllc_cmn_vals,
2532 				[INTERNAL_SSC] = &pcie_100_int_ssc_plllc_cmn_vals,
2533 			},
2534 		},
2535 		[TYPE_USB] = {
2536 			[TYPE_NONE] = {
2537 				[EXTERNAL_SSC] = &usb_100_ext_ssc_cmn_vals,
2538 			},
2539 		},
2540 		[TYPE_SGMII] = {
2541 			[TYPE_NONE] = {
2542 				[NO_SSC] = &sgmii_cmn_vals,
2543 			},
2544 			[TYPE_PCIE] = {
2545 				[NO_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2546 				[EXTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2547 				[INTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2548 			},
2549 		},
2550 		[TYPE_QSGMII] = {
2551 			[TYPE_PCIE] = {
2552 				[NO_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2553 				[EXTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2554 				[INTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2555 			},
2556 		},
2557 	},
2558 	.pma_ln_vals = {
2559 		[TYPE_PCIE] = {
2560 			[TYPE_NONE] = {
2561 				[NO_SSC] = &pcie_100_no_ssc_ln_vals,
2562 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_ln_vals,
2563 				[INTERNAL_SSC] = &pcie_100_int_ssc_ln_vals,
2564 			},
2565 			[TYPE_SGMII] = {
2566 				[NO_SSC] = &ml_pcie_100_no_ssc_ln_vals,
2567 				[EXTERNAL_SSC] = &ml_pcie_100_ext_ssc_ln_vals,
2568 				[INTERNAL_SSC] = &ml_pcie_100_int_ssc_ln_vals,
2569 			},
2570 			[TYPE_QSGMII] = {
2571 				[NO_SSC] = &ml_pcie_100_no_ssc_ln_vals,
2572 				[EXTERNAL_SSC] = &ml_pcie_100_ext_ssc_ln_vals,
2573 				[INTERNAL_SSC] = &ml_pcie_100_int_ssc_ln_vals,
2574 			},
2575 		},
2576 		[TYPE_USB] = {
2577 			[TYPE_NONE] = {
2578 				[EXTERNAL_SSC] = &usb_100_ext_ssc_ln_vals,
2579 			},
2580 		},
2581 		[TYPE_SGMII] = {
2582 			[TYPE_NONE] = {
2583 				[NO_SSC] = &sgmii_pma_ln_vals,
2584 			},
2585 			[TYPE_PCIE] = {
2586 				[NO_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2587 				[EXTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2588 				[INTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2589 			},
2590 		},
2591 		[TYPE_QSGMII] = {
2592 			[TYPE_PCIE] = {
2593 				[NO_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2594 				[EXTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2595 				[INTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2596 			},
2597 		},
2598 	},
2599 };
2600 
2601 static const struct cdns_sierra_data cdns_ti_map_sierra = {
2602 	.id_value = SIERRA_MACRO_ID,
2603 	.block_offset_shift = 0x0,
2604 	.reg_offset_shift = 0x1,
2605 	.pcs_cmn_vals = {
2606 		[TYPE_PCIE] = {
2607 			[TYPE_NONE] = {
2608 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2609 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2610 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2611 			},
2612 			[TYPE_SGMII] = {
2613 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2614 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2615 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2616 			},
2617 			[TYPE_QSGMII] = {
2618 				[NO_SSC] = &pcie_phy_pcs_cmn_vals,
2619 				[EXTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2620 				[INTERNAL_SSC] = &pcie_phy_pcs_cmn_vals,
2621 			},
2622 		},
2623 	},
2624 	.phy_pma_ln_vals = {
2625 		[TYPE_SGMII] = {
2626 			[TYPE_PCIE] = {
2627 				[NO_SSC] = &sgmii_phy_pma_ln_vals,
2628 				[EXTERNAL_SSC] = &sgmii_phy_pma_ln_vals,
2629 				[INTERNAL_SSC] = &sgmii_phy_pma_ln_vals,
2630 			},
2631 		},
2632 		[TYPE_QSGMII] = {
2633 			[TYPE_PCIE] = {
2634 				[NO_SSC] = &qsgmii_phy_pma_ln_vals,
2635 				[EXTERNAL_SSC] = &qsgmii_phy_pma_ln_vals,
2636 				[INTERNAL_SSC] = &qsgmii_phy_pma_ln_vals,
2637 			},
2638 		},
2639 	},
2640 	.pma_cmn_vals = {
2641 		[TYPE_PCIE] = {
2642 			[TYPE_NONE] = {
2643 				[NO_SSC] = &pcie_100_no_ssc_cmn_vals,
2644 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_cmn_vals,
2645 				[INTERNAL_SSC] = &pcie_100_int_ssc_cmn_vals,
2646 			},
2647 			[TYPE_SGMII] = {
2648 				[NO_SSC] = &pcie_100_no_ssc_plllc_cmn_vals,
2649 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_plllc_cmn_vals,
2650 				[INTERNAL_SSC] = &pcie_100_int_ssc_plllc_cmn_vals,
2651 			},
2652 			[TYPE_QSGMII] = {
2653 				[NO_SSC] = &pcie_100_no_ssc_plllc_cmn_vals,
2654 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_plllc_cmn_vals,
2655 				[INTERNAL_SSC] = &pcie_100_int_ssc_plllc_cmn_vals,
2656 			},
2657 		},
2658 		[TYPE_USB] = {
2659 			[TYPE_NONE] = {
2660 				[EXTERNAL_SSC] = &usb_100_ext_ssc_cmn_vals,
2661 			},
2662 		},
2663 		[TYPE_SGMII] = {
2664 			[TYPE_PCIE] = {
2665 				[NO_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2666 				[EXTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2667 				[INTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_cmn_vals,
2668 			},
2669 		},
2670 		[TYPE_QSGMII] = {
2671 			[TYPE_PCIE] = {
2672 				[NO_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2673 				[EXTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2674 				[INTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_cmn_vals,
2675 			},
2676 		},
2677 	},
2678 	.pma_ln_vals = {
2679 		[TYPE_PCIE] = {
2680 			[TYPE_NONE] = {
2681 				[NO_SSC] = &pcie_100_no_ssc_ln_vals,
2682 				[EXTERNAL_SSC] = &pcie_100_ext_ssc_ln_vals,
2683 				[INTERNAL_SSC] = &pcie_100_int_ssc_ln_vals,
2684 			},
2685 			[TYPE_SGMII] = {
2686 				[NO_SSC] = &ti_ml_pcie_100_no_ssc_ln_vals,
2687 				[EXTERNAL_SSC] = &ti_ml_pcie_100_ext_ssc_ln_vals,
2688 				[INTERNAL_SSC] = &ti_ml_pcie_100_int_ssc_ln_vals,
2689 			},
2690 			[TYPE_QSGMII] = {
2691 				[NO_SSC] = &ti_ml_pcie_100_no_ssc_ln_vals,
2692 				[EXTERNAL_SSC] = &ti_ml_pcie_100_ext_ssc_ln_vals,
2693 				[INTERNAL_SSC] = &ti_ml_pcie_100_int_ssc_ln_vals,
2694 			},
2695 		},
2696 		[TYPE_USB] = {
2697 			[TYPE_NONE] = {
2698 				[EXTERNAL_SSC] = &usb_100_ext_ssc_ln_vals,
2699 			},
2700 		},
2701 		[TYPE_SGMII] = {
2702 			[TYPE_PCIE] = {
2703 				[NO_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2704 				[EXTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2705 				[INTERNAL_SSC] = &sgmii_100_no_ssc_plllc1_opt3_ln_vals,
2706 			},
2707 		},
2708 		[TYPE_QSGMII] = {
2709 			[TYPE_PCIE] = {
2710 				[NO_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2711 				[EXTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2712 				[INTERNAL_SSC] = &qsgmii_100_no_ssc_plllc1_ln_vals,
2713 			},
2714 		},
2715 	},
2716 };
2717 
2718 static const struct of_device_id cdns_sierra_id_table[] = {
2719 	{
2720 		.compatible = "cdns,sierra-phy-t0",
2721 		.data = &cdns_map_sierra,
2722 	},
2723 	{
2724 		.compatible = "ti,sierra-phy-t0",
2725 		.data = &cdns_ti_map_sierra,
2726 	},
2727 	{}
2728 };
2729 MODULE_DEVICE_TABLE(of, cdns_sierra_id_table);
2730 
2731 static struct platform_driver cdns_sierra_driver = {
2732 	.probe		= cdns_sierra_phy_probe,
2733 	.remove_new	= cdns_sierra_phy_remove,
2734 	.driver		= {
2735 		.name	= "cdns-sierra-phy",
2736 		.of_match_table = cdns_sierra_id_table,
2737 	},
2738 };
2739 module_platform_driver(cdns_sierra_driver);
2740 
2741 MODULE_ALIAS("platform:cdns_sierra");
2742 MODULE_AUTHOR("Cadence Design Systems");
2743 MODULE_DESCRIPTION("CDNS sierra phy driver");
2744 MODULE_LICENSE("GPL v2");
2745