xref: /linux/drivers/phy/cadence/phy-cadence-sierra.c (revision 15b0b82d51a39334da37b718bd014f4460117326)
144d30d62SAlan Douglas // SPDX-License-Identifier: GPL-2.0
244d30d62SAlan Douglas /*
344d30d62SAlan Douglas  * Cadence Sierra PHY Driver
444d30d62SAlan Douglas  *
544d30d62SAlan Douglas  * Copyright (c) 2018 Cadence Design Systems
644d30d62SAlan Douglas  * Author: Alan Douglas <adouglas@cadence.com>
744d30d62SAlan Douglas  *
844d30d62SAlan Douglas  */
944d30d62SAlan Douglas #include <linux/clk.h>
1044d30d62SAlan Douglas #include <linux/delay.h>
1144d30d62SAlan Douglas #include <linux/err.h>
1244d30d62SAlan Douglas #include <linux/io.h>
1344d30d62SAlan Douglas #include <linux/module.h>
1444d30d62SAlan Douglas #include <linux/phy/phy.h>
1544d30d62SAlan Douglas #include <linux/platform_device.h>
1644d30d62SAlan Douglas #include <linux/pm_runtime.h>
1744d30d62SAlan Douglas #include <linux/regmap.h>
1844d30d62SAlan Douglas #include <linux/reset.h>
1944d30d62SAlan Douglas #include <linux/slab.h>
2044d30d62SAlan Douglas #include <linux/of.h>
2144d30d62SAlan Douglas #include <linux/of_platform.h>
2244d30d62SAlan Douglas #include <dt-bindings/phy/phy.h>
2344d30d62SAlan Douglas 
2444d30d62SAlan Douglas /* PHY register offsets */
25380f5708SKishon Vijay Abraham I #define SIERRA_COMMON_CDB_OFFSET			0x0
26380f5708SKishon Vijay Abraham I #define SIERRA_MACRO_ID_REG				0x0
27871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_MODE_PREG			0x48
28871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG		0x49
29871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG		0x4A
30871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_LOCK_CNTSTART_PREG		0x4B
31871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG		0x4F
32871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG		0x50
33871002d7SAnil Varughese #define SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG	0x62
34380f5708SKishon Vijay Abraham I 
35380f5708SKishon Vijay Abraham I #define SIERRA_LANE_CDB_OFFSET(ln, block_offset, reg_offset)	\
36380f5708SKishon Vijay Abraham I 				((0x4000 << (block_offset)) + \
37380f5708SKishon Vijay Abraham I 				 (((ln) << 9) << (reg_offset)))
38aead5fd6SKishon Vijay Abraham I 
39aead5fd6SKishon Vijay Abraham I #define SIERRA_DET_STANDEC_A_PREG			0x000
40aead5fd6SKishon Vijay Abraham I #define SIERRA_DET_STANDEC_B_PREG			0x001
41aead5fd6SKishon Vijay Abraham I #define SIERRA_DET_STANDEC_C_PREG			0x002
42aead5fd6SKishon Vijay Abraham I #define SIERRA_DET_STANDEC_D_PREG			0x003
43aead5fd6SKishon Vijay Abraham I #define SIERRA_DET_STANDEC_E_PREG			0x004
44871002d7SAnil Varughese #define SIERRA_PSM_LANECAL_DLY_A1_RESETS_PREG		0x008
45871002d7SAnil Varughese #define SIERRA_PSM_A0IN_TMR_PREG			0x009
46aead5fd6SKishon Vijay Abraham I #define SIERRA_PSM_DIAG_PREG				0x015
47aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_TX_A0_PREG				0x028
48aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_TX_A1_PREG				0x029
49aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_TX_A2_PREG				0x02A
50aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_TX_A3_PREG				0x02B
51aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_RX_A0_PREG				0x030
52aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_RX_A1_PREG				0x031
53aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_RX_A2_PREG				0x032
54aead5fd6SKishon Vijay Abraham I #define SIERRA_PSC_RX_A3_PREG				0x033
55aead5fd6SKishon Vijay Abraham I #define SIERRA_PLLCTRL_SUBRATE_PREG			0x03A
56aead5fd6SKishon Vijay Abraham I #define SIERRA_PLLCTRL_GEN_D_PREG			0x03E
57871002d7SAnil Varughese #define SIERRA_PLLCTRL_CPGAIN_MODE_PREG			0x03F
58adc4bd6fSKishon Vijay Abraham I #define SIERRA_PLLCTRL_STATUS_PREG			0x044
59871002d7SAnil Varughese #define SIERRA_CLKPATH_BIASTRIM_PREG			0x04B
60871002d7SAnil Varughese #define SIERRA_DFE_BIASTRIM_PREG			0x04C
61aead5fd6SKishon Vijay Abraham I #define SIERRA_DRVCTRL_ATTEN_PREG			0x06A
62aead5fd6SKishon Vijay Abraham I #define SIERRA_CLKPATHCTRL_TMR_PREG			0x081
63871002d7SAnil Varughese #define SIERRA_RX_CREQ_FLTR_A_MODE3_PREG		0x085
64871002d7SAnil Varughese #define SIERRA_RX_CREQ_FLTR_A_MODE2_PREG		0x086
65aead5fd6SKishon Vijay Abraham I #define SIERRA_RX_CREQ_FLTR_A_MODE1_PREG		0x087
66aead5fd6SKishon Vijay Abraham I #define SIERRA_RX_CREQ_FLTR_A_MODE0_PREG		0x088
67aead5fd6SKishon Vijay Abraham I #define SIERRA_CREQ_CCLKDET_MODE01_PREG			0x08E
68aead5fd6SKishon Vijay Abraham I #define SIERRA_RX_CTLE_MAINTENANCE_PREG			0x091
69aead5fd6SKishon Vijay Abraham I #define SIERRA_CREQ_FSMCLK_SEL_PREG			0x092
70871002d7SAnil Varughese #define SIERRA_CREQ_EQ_CTRL_PREG			0x093
71871002d7SAnil Varughese #define SIERRA_CREQ_SPARE_PREG				0x096
72871002d7SAnil Varughese #define SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG		0x097
73aead5fd6SKishon Vijay Abraham I #define SIERRA_CTLELUT_CTRL_PREG			0x098
74aead5fd6SKishon Vijay Abraham I #define SIERRA_DFE_ECMP_RATESEL_PREG			0x0C0
75aead5fd6SKishon Vijay Abraham I #define SIERRA_DFE_SMP_RATESEL_PREG			0x0C1
76871002d7SAnil Varughese #define SIERRA_DEQ_PHALIGN_CTRL				0x0C4
77871002d7SAnil Varughese #define SIERRA_DEQ_CONCUR_CTRL1_PREG			0x0C8
78871002d7SAnil Varughese #define SIERRA_DEQ_CONCUR_CTRL2_PREG			0x0C9
79871002d7SAnil Varughese #define SIERRA_DEQ_EPIPWR_CTRL2_PREG			0x0CD
80871002d7SAnil Varughese #define SIERRA_DEQ_FAST_MAINT_CYCLES_PREG		0x0CE
81871002d7SAnil Varughese #define SIERRA_DEQ_ERRCMP_CTRL_PREG			0x0D0
82871002d7SAnil Varughese #define SIERRA_DEQ_OFFSET_CTRL_PREG			0x0D8
83871002d7SAnil Varughese #define SIERRA_DEQ_GAIN_CTRL_PREG			0x0E0
84aead5fd6SKishon Vijay Abraham I #define SIERRA_DEQ_VGATUNE_CTRL_PREG			0x0E1
85871002d7SAnil Varughese #define SIERRA_DEQ_GLUT0				0x0E8
86871002d7SAnil Varughese #define SIERRA_DEQ_GLUT1				0x0E9
87871002d7SAnil Varughese #define SIERRA_DEQ_GLUT2				0x0EA
88871002d7SAnil Varughese #define SIERRA_DEQ_GLUT3				0x0EB
89871002d7SAnil Varughese #define SIERRA_DEQ_GLUT4				0x0EC
90871002d7SAnil Varughese #define SIERRA_DEQ_GLUT5				0x0ED
91871002d7SAnil Varughese #define SIERRA_DEQ_GLUT6				0x0EE
92871002d7SAnil Varughese #define SIERRA_DEQ_GLUT7				0x0EF
93871002d7SAnil Varughese #define SIERRA_DEQ_GLUT8				0x0F0
94871002d7SAnil Varughese #define SIERRA_DEQ_GLUT9				0x0F1
95871002d7SAnil Varughese #define SIERRA_DEQ_GLUT10				0x0F2
96871002d7SAnil Varughese #define SIERRA_DEQ_GLUT11				0x0F3
97871002d7SAnil Varughese #define SIERRA_DEQ_GLUT12				0x0F4
98871002d7SAnil Varughese #define SIERRA_DEQ_GLUT13				0x0F5
99871002d7SAnil Varughese #define SIERRA_DEQ_GLUT14				0x0F6
100871002d7SAnil Varughese #define SIERRA_DEQ_GLUT15				0x0F7
101871002d7SAnil Varughese #define SIERRA_DEQ_GLUT16				0x0F8
102871002d7SAnil Varughese #define SIERRA_DEQ_ALUT0				0x108
103871002d7SAnil Varughese #define SIERRA_DEQ_ALUT1				0x109
104871002d7SAnil Varughese #define SIERRA_DEQ_ALUT2				0x10A
105871002d7SAnil Varughese #define SIERRA_DEQ_ALUT3				0x10B
106871002d7SAnil Varughese #define SIERRA_DEQ_ALUT4				0x10C
107871002d7SAnil Varughese #define SIERRA_DEQ_ALUT5				0x10D
108871002d7SAnil Varughese #define SIERRA_DEQ_ALUT6				0x10E
109871002d7SAnil Varughese #define SIERRA_DEQ_ALUT7				0x10F
110871002d7SAnil Varughese #define SIERRA_DEQ_ALUT8				0x110
111871002d7SAnil Varughese #define SIERRA_DEQ_ALUT9				0x111
112871002d7SAnil Varughese #define SIERRA_DEQ_ALUT10				0x112
113871002d7SAnil Varughese #define SIERRA_DEQ_ALUT11				0x113
114871002d7SAnil Varughese #define SIERRA_DEQ_ALUT12				0x114
115871002d7SAnil Varughese #define SIERRA_DEQ_ALUT13				0x115
116871002d7SAnil Varughese #define SIERRA_DEQ_DFETAP_CTRL_PREG			0x128
117871002d7SAnil Varughese #define SIERRA_DFE_EN_1010_IGNORE_PREG			0x134
118871002d7SAnil Varughese #define SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG		0x150
119871002d7SAnil Varughese #define SIERRA_DEQ_TAU_CTRL2_PREG			0x151
120871002d7SAnil Varughese #define SIERRA_DEQ_PICTRL_PREG				0x161
121871002d7SAnil Varughese #define SIERRA_CPICAL_TMRVAL_MODE1_PREG			0x170
122871002d7SAnil Varughese #define SIERRA_CPICAL_TMRVAL_MODE0_PREG			0x171
123871002d7SAnil Varughese #define SIERRA_CPICAL_PICNT_MODE1_PREG			0x174
124aead5fd6SKishon Vijay Abraham I #define SIERRA_CPI_OUTBUF_RATESEL_PREG			0x17C
125871002d7SAnil Varughese #define SIERRA_CPICAL_RES_STARTCODE_MODE23_PREG		0x183
126871002d7SAnil Varughese #define SIERRA_LFPSDET_SUPPORT_PREG			0x188
127aead5fd6SKishon Vijay Abraham I #define SIERRA_LFPSFILT_NS_PREG				0x18A
128aead5fd6SKishon Vijay Abraham I #define SIERRA_LFPSFILT_RD_PREG				0x18B
129aead5fd6SKishon Vijay Abraham I #define SIERRA_LFPSFILT_MP_PREG				0x18C
130871002d7SAnil Varughese #define SIERRA_SIGDET_SUPPORT_PREG			0x190
131aead5fd6SKishon Vijay Abraham I #define SIERRA_SDFILT_H2L_A_PREG			0x191
132871002d7SAnil Varughese #define SIERRA_SDFILT_L2H_PREG				0x193
133871002d7SAnil Varughese #define SIERRA_RXBUFFER_CTLECTRL_PREG			0x19E
134871002d7SAnil Varughese #define SIERRA_RXBUFFER_RCDFECTRL_PREG			0x19F
135871002d7SAnil Varughese #define SIERRA_RXBUFFER_DFECTRL_PREG			0x1A0
136871002d7SAnil Varughese #define SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG		0x14F
137871002d7SAnil Varughese #define SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG		0x150
138380f5708SKishon Vijay Abraham I 
139380f5708SKishon Vijay Abraham I #define SIERRA_PHY_CONFIG_CTRL_OFFSET(block_offset)	\
140380f5708SKishon Vijay Abraham I 				      (0xc000 << (block_offset))
141380f5708SKishon Vijay Abraham I #define SIERRA_PHY_PLL_CFG				0xe
14244d30d62SAlan Douglas 
14344d30d62SAlan Douglas #define SIERRA_MACRO_ID					0x00007364
144a43f72aeSKishon Vijay Abraham I #define SIERRA_MAX_LANES				16
145adc4bd6fSKishon Vijay Abraham I #define PLL_LOCK_TIME					100000
14644d30d62SAlan Douglas 
147380f5708SKishon Vijay Abraham I static const struct reg_field macro_id_type =
148380f5708SKishon Vijay Abraham I 				REG_FIELD(SIERRA_MACRO_ID_REG, 0, 15);
149380f5708SKishon Vijay Abraham I static const struct reg_field phy_pll_cfg_1 =
150380f5708SKishon Vijay Abraham I 				REG_FIELD(SIERRA_PHY_PLL_CFG, 1, 1);
151adc4bd6fSKishon Vijay Abraham I static const struct reg_field pllctrl_lock =
152adc4bd6fSKishon Vijay Abraham I 				REG_FIELD(SIERRA_PLLCTRL_STATUS_PREG, 0, 0);
153380f5708SKishon Vijay Abraham I 
15444d30d62SAlan Douglas struct cdns_sierra_inst {
15544d30d62SAlan Douglas 	struct phy *phy;
15644d30d62SAlan Douglas 	u32 phy_type;
15744d30d62SAlan Douglas 	u32 num_lanes;
15844d30d62SAlan Douglas 	u32 mlane;
15944d30d62SAlan Douglas 	struct reset_control *lnk_rst;
16044d30d62SAlan Douglas };
16144d30d62SAlan Douglas 
16244d30d62SAlan Douglas struct cdns_reg_pairs {
16344d30d62SAlan Douglas 	u16 val;
16444d30d62SAlan Douglas 	u32 off;
16544d30d62SAlan Douglas };
16644d30d62SAlan Douglas 
16744d30d62SAlan Douglas struct cdns_sierra_data {
16844d30d62SAlan Douglas 		u32 id_value;
169380f5708SKishon Vijay Abraham I 		u8 block_offset_shift;
170380f5708SKishon Vijay Abraham I 		u8 reg_offset_shift;
171871002d7SAnil Varughese 		u32 pcie_cmn_regs;
172871002d7SAnil Varughese 		u32 pcie_ln_regs;
173871002d7SAnil Varughese 		u32 usb_cmn_regs;
174871002d7SAnil Varughese 		u32 usb_ln_regs;
1753cfb0e8eSRikard Falkeborn 		const struct cdns_reg_pairs *pcie_cmn_vals;
1763cfb0e8eSRikard Falkeborn 		const struct cdns_reg_pairs *pcie_ln_vals;
1773cfb0e8eSRikard Falkeborn 		const struct cdns_reg_pairs *usb_cmn_vals;
1783cfb0e8eSRikard Falkeborn 		const struct cdns_reg_pairs *usb_ln_vals;
17944d30d62SAlan Douglas };
18044d30d62SAlan Douglas 
181380f5708SKishon Vijay Abraham I struct cdns_regmap_cdb_context {
18244d30d62SAlan Douglas 	struct device *dev;
18344d30d62SAlan Douglas 	void __iomem *base;
184380f5708SKishon Vijay Abraham I 	u8 reg_offset_shift;
185380f5708SKishon Vijay Abraham I };
186380f5708SKishon Vijay Abraham I 
187380f5708SKishon Vijay Abraham I struct cdns_sierra_phy {
188380f5708SKishon Vijay Abraham I 	struct device *dev;
189380f5708SKishon Vijay Abraham I 	struct regmap *regmap;
19044d30d62SAlan Douglas 	struct cdns_sierra_data *init_data;
19144d30d62SAlan Douglas 	struct cdns_sierra_inst phys[SIERRA_MAX_LANES];
19244d30d62SAlan Douglas 	struct reset_control *phy_rst;
19344d30d62SAlan Douglas 	struct reset_control *apb_rst;
194380f5708SKishon Vijay Abraham I 	struct regmap *regmap_lane_cdb[SIERRA_MAX_LANES];
195380f5708SKishon Vijay Abraham I 	struct regmap *regmap_phy_config_ctrl;
196380f5708SKishon Vijay Abraham I 	struct regmap *regmap_common_cdb;
197380f5708SKishon Vijay Abraham I 	struct regmap_field *macro_id_type;
198380f5708SKishon Vijay Abraham I 	struct regmap_field *phy_pll_cfg_1;
199adc4bd6fSKishon Vijay Abraham I 	struct regmap_field *pllctrl_lock[SIERRA_MAX_LANES];
20044d30d62SAlan Douglas 	struct clk *clk;
2016825cfc9SKishon Vijay Abraham I 	struct clk *cmn_refclk_dig_div;
2026825cfc9SKishon Vijay Abraham I 	struct clk *cmn_refclk1_dig_div;
20344d30d62SAlan Douglas 	int nsubnodes;
204a43f72aeSKishon Vijay Abraham I 	u32 num_lanes;
20544d30d62SAlan Douglas 	bool autoconf;
20644d30d62SAlan Douglas };
20744d30d62SAlan Douglas 
208380f5708SKishon Vijay Abraham I static int cdns_regmap_write(void *context, unsigned int reg, unsigned int val)
209380f5708SKishon Vijay Abraham I {
210380f5708SKishon Vijay Abraham I 	struct cdns_regmap_cdb_context *ctx = context;
211380f5708SKishon Vijay Abraham I 	u32 offset = reg << ctx->reg_offset_shift;
212380f5708SKishon Vijay Abraham I 
213380f5708SKishon Vijay Abraham I 	writew(val, ctx->base + offset);
214380f5708SKishon Vijay Abraham I 
215380f5708SKishon Vijay Abraham I 	return 0;
216380f5708SKishon Vijay Abraham I }
217380f5708SKishon Vijay Abraham I 
218380f5708SKishon Vijay Abraham I static int cdns_regmap_read(void *context, unsigned int reg, unsigned int *val)
219380f5708SKishon Vijay Abraham I {
220380f5708SKishon Vijay Abraham I 	struct cdns_regmap_cdb_context *ctx = context;
221380f5708SKishon Vijay Abraham I 	u32 offset = reg << ctx->reg_offset_shift;
222380f5708SKishon Vijay Abraham I 
223380f5708SKishon Vijay Abraham I 	*val = readw(ctx->base + offset);
224380f5708SKishon Vijay Abraham I 	return 0;
225380f5708SKishon Vijay Abraham I }
226380f5708SKishon Vijay Abraham I 
227380f5708SKishon Vijay Abraham I #define SIERRA_LANE_CDB_REGMAP_CONF(n) \
228380f5708SKishon Vijay Abraham I { \
229380f5708SKishon Vijay Abraham I 	.name = "sierra_lane" n "_cdb", \
230380f5708SKishon Vijay Abraham I 	.reg_stride = 1, \
231380f5708SKishon Vijay Abraham I 	.fast_io = true, \
232380f5708SKishon Vijay Abraham I 	.reg_write = cdns_regmap_write, \
233380f5708SKishon Vijay Abraham I 	.reg_read = cdns_regmap_read, \
234380f5708SKishon Vijay Abraham I }
235380f5708SKishon Vijay Abraham I 
2363cfb0e8eSRikard Falkeborn static const struct regmap_config cdns_sierra_lane_cdb_config[] = {
237380f5708SKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("0"),
238380f5708SKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("1"),
239380f5708SKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("2"),
240380f5708SKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("3"),
241a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("4"),
242a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("5"),
243a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("6"),
244a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("7"),
245a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("8"),
246a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("9"),
247a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("10"),
248a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("11"),
249a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("12"),
250a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("13"),
251a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("14"),
252a43f72aeSKishon Vijay Abraham I 	SIERRA_LANE_CDB_REGMAP_CONF("15"),
253380f5708SKishon Vijay Abraham I };
254380f5708SKishon Vijay Abraham I 
2553cfb0e8eSRikard Falkeborn static const struct regmap_config cdns_sierra_common_cdb_config = {
256380f5708SKishon Vijay Abraham I 	.name = "sierra_common_cdb",
257380f5708SKishon Vijay Abraham I 	.reg_stride = 1,
258380f5708SKishon Vijay Abraham I 	.fast_io = true,
259380f5708SKishon Vijay Abraham I 	.reg_write = cdns_regmap_write,
260380f5708SKishon Vijay Abraham I 	.reg_read = cdns_regmap_read,
261380f5708SKishon Vijay Abraham I };
262380f5708SKishon Vijay Abraham I 
2633cfb0e8eSRikard Falkeborn static const struct regmap_config cdns_sierra_phy_config_ctrl_config = {
264380f5708SKishon Vijay Abraham I 	.name = "sierra_phy_config_ctrl",
265380f5708SKishon Vijay Abraham I 	.reg_stride = 1,
266380f5708SKishon Vijay Abraham I 	.fast_io = true,
267380f5708SKishon Vijay Abraham I 	.reg_write = cdns_regmap_write,
268380f5708SKishon Vijay Abraham I 	.reg_read = cdns_regmap_read,
269380f5708SKishon Vijay Abraham I };
270380f5708SKishon Vijay Abraham I 
271cedcc2e2SKishon Vijay Abraham I static int cdns_sierra_phy_init(struct phy *gphy)
27244d30d62SAlan Douglas {
27344d30d62SAlan Douglas 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
27444d30d62SAlan Douglas 	struct cdns_sierra_phy *phy = dev_get_drvdata(gphy->dev.parent);
27580f96fb1SColin Ian King 	struct regmap *regmap;
27644d30d62SAlan Douglas 	int i, j;
2773cfb0e8eSRikard Falkeborn 	const struct cdns_reg_pairs *cmn_vals, *ln_vals;
278871002d7SAnil Varughese 	u32 num_cmn_regs, num_ln_regs;
27944d30d62SAlan Douglas 
280cedcc2e2SKishon Vijay Abraham I 	/* Initialise the PHY registers, unless auto configured */
281cedcc2e2SKishon Vijay Abraham I 	if (phy->autoconf)
282cedcc2e2SKishon Vijay Abraham I 		return 0;
283cedcc2e2SKishon Vijay Abraham I 
2846825cfc9SKishon Vijay Abraham I 	clk_set_rate(phy->cmn_refclk_dig_div, 25000000);
2856825cfc9SKishon Vijay Abraham I 	clk_set_rate(phy->cmn_refclk1_dig_div, 25000000);
28644d30d62SAlan Douglas 	if (ins->phy_type == PHY_TYPE_PCIE) {
287871002d7SAnil Varughese 		num_cmn_regs = phy->init_data->pcie_cmn_regs;
288871002d7SAnil Varughese 		num_ln_regs = phy->init_data->pcie_ln_regs;
289871002d7SAnil Varughese 		cmn_vals = phy->init_data->pcie_cmn_vals;
290871002d7SAnil Varughese 		ln_vals = phy->init_data->pcie_ln_vals;
29144d30d62SAlan Douglas 	} else if (ins->phy_type == PHY_TYPE_USB3) {
292871002d7SAnil Varughese 		num_cmn_regs = phy->init_data->usb_cmn_regs;
293871002d7SAnil Varughese 		num_ln_regs = phy->init_data->usb_ln_regs;
294871002d7SAnil Varughese 		cmn_vals = phy->init_data->usb_cmn_vals;
295871002d7SAnil Varughese 		ln_vals = phy->init_data->usb_ln_vals;
29644d30d62SAlan Douglas 	} else {
297cedcc2e2SKishon Vijay Abraham I 		return -EINVAL;
29844d30d62SAlan Douglas 	}
299871002d7SAnil Varughese 
300871002d7SAnil Varughese 	regmap = phy->regmap_common_cdb;
301871002d7SAnil Varughese 	for (j = 0; j < num_cmn_regs ; j++)
302871002d7SAnil Varughese 		regmap_write(regmap, cmn_vals[j].off, cmn_vals[j].val);
303871002d7SAnil Varughese 
304380f5708SKishon Vijay Abraham I 	for (i = 0; i < ins->num_lanes; i++) {
305871002d7SAnil Varughese 		for (j = 0; j < num_ln_regs ; j++) {
306380f5708SKishon Vijay Abraham I 			regmap = phy->regmap_lane_cdb[i + ins->mlane];
307871002d7SAnil Varughese 			regmap_write(regmap, ln_vals[j].off, ln_vals[j].val);
308380f5708SKishon Vijay Abraham I 		}
309380f5708SKishon Vijay Abraham I 	}
310cedcc2e2SKishon Vijay Abraham I 
311cedcc2e2SKishon Vijay Abraham I 	return 0;
31244d30d62SAlan Douglas }
31344d30d62SAlan Douglas 
31444d30d62SAlan Douglas static int cdns_sierra_phy_on(struct phy *gphy)
31544d30d62SAlan Douglas {
316adc4bd6fSKishon Vijay Abraham I 	struct cdns_sierra_phy *sp = dev_get_drvdata(gphy->dev.parent);
31744d30d62SAlan Douglas 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
318adc4bd6fSKishon Vijay Abraham I 	struct device *dev = sp->dev;
319adc4bd6fSKishon Vijay Abraham I 	u32 val;
320adc4bd6fSKishon Vijay Abraham I 	int ret;
32144d30d62SAlan Douglas 
3225b4f5757SKishon Vijay Abraham I 	ret = reset_control_deassert(sp->phy_rst);
3235b4f5757SKishon Vijay Abraham I 	if (ret) {
3245b4f5757SKishon Vijay Abraham I 		dev_err(dev, "Failed to take the PHY out of reset\n");
3255b4f5757SKishon Vijay Abraham I 		return ret;
3265b4f5757SKishon Vijay Abraham I 	}
3275b4f5757SKishon Vijay Abraham I 
32844d30d62SAlan Douglas 	/* Take the PHY lane group out of reset */
329adc4bd6fSKishon Vijay Abraham I 	ret = reset_control_deassert(ins->lnk_rst);
330adc4bd6fSKishon Vijay Abraham I 	if (ret) {
331adc4bd6fSKishon Vijay Abraham I 		dev_err(dev, "Failed to take the PHY lane out of reset\n");
332adc4bd6fSKishon Vijay Abraham I 		return ret;
333adc4bd6fSKishon Vijay Abraham I 	}
334adc4bd6fSKishon Vijay Abraham I 
335adc4bd6fSKishon Vijay Abraham I 	ret = regmap_field_read_poll_timeout(sp->pllctrl_lock[ins->mlane],
336adc4bd6fSKishon Vijay Abraham I 					     val, val, 1000, PLL_LOCK_TIME);
337adc4bd6fSKishon Vijay Abraham I 	if (ret < 0)
338adc4bd6fSKishon Vijay Abraham I 		dev_err(dev, "PLL lock of lane failed\n");
339adc4bd6fSKishon Vijay Abraham I 
340adc4bd6fSKishon Vijay Abraham I 	return ret;
34144d30d62SAlan Douglas }
34244d30d62SAlan Douglas 
34344d30d62SAlan Douglas static int cdns_sierra_phy_off(struct phy *gphy)
34444d30d62SAlan Douglas {
34544d30d62SAlan Douglas 	struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
34644d30d62SAlan Douglas 
34744d30d62SAlan Douglas 	return reset_control_assert(ins->lnk_rst);
34844d30d62SAlan Douglas }
34944d30d62SAlan Douglas 
3507904e15bSRoger Quadros static int cdns_sierra_phy_reset(struct phy *gphy)
3517904e15bSRoger Quadros {
3527904e15bSRoger Quadros 	struct cdns_sierra_phy *sp = dev_get_drvdata(gphy->dev.parent);
3537904e15bSRoger Quadros 
3547904e15bSRoger Quadros 	reset_control_assert(sp->phy_rst);
3557904e15bSRoger Quadros 	reset_control_deassert(sp->phy_rst);
3567904e15bSRoger Quadros 	return 0;
3577904e15bSRoger Quadros };
3587904e15bSRoger Quadros 
35944d30d62SAlan Douglas static const struct phy_ops ops = {
360cedcc2e2SKishon Vijay Abraham I 	.init		= cdns_sierra_phy_init,
36144d30d62SAlan Douglas 	.power_on	= cdns_sierra_phy_on,
36244d30d62SAlan Douglas 	.power_off	= cdns_sierra_phy_off,
3637904e15bSRoger Quadros 	.reset		= cdns_sierra_phy_reset,
36444d30d62SAlan Douglas 	.owner		= THIS_MODULE,
36544d30d62SAlan Douglas };
36644d30d62SAlan Douglas 
36744d30d62SAlan Douglas static int cdns_sierra_get_optional(struct cdns_sierra_inst *inst,
36844d30d62SAlan Douglas 				    struct device_node *child)
36944d30d62SAlan Douglas {
37044d30d62SAlan Douglas 	if (of_property_read_u32(child, "reg", &inst->mlane))
37144d30d62SAlan Douglas 		return -EINVAL;
37244d30d62SAlan Douglas 
37344d30d62SAlan Douglas 	if (of_property_read_u32(child, "cdns,num-lanes", &inst->num_lanes))
37444d30d62SAlan Douglas 		return -EINVAL;
37544d30d62SAlan Douglas 
37644d30d62SAlan Douglas 	if (of_property_read_u32(child, "cdns,phy-type", &inst->phy_type))
37744d30d62SAlan Douglas 		return -EINVAL;
37844d30d62SAlan Douglas 
37944d30d62SAlan Douglas 	return 0;
38044d30d62SAlan Douglas }
38144d30d62SAlan Douglas 
38244d30d62SAlan Douglas static const struct of_device_id cdns_sierra_id_table[];
38344d30d62SAlan Douglas 
384380f5708SKishon Vijay Abraham I static struct regmap *cdns_regmap_init(struct device *dev, void __iomem *base,
385380f5708SKishon Vijay Abraham I 				       u32 block_offset, u8 reg_offset_shift,
386380f5708SKishon Vijay Abraham I 				       const struct regmap_config *config)
387380f5708SKishon Vijay Abraham I {
388380f5708SKishon Vijay Abraham I 	struct cdns_regmap_cdb_context *ctx;
389380f5708SKishon Vijay Abraham I 
390380f5708SKishon Vijay Abraham I 	ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL);
391380f5708SKishon Vijay Abraham I 	if (!ctx)
392380f5708SKishon Vijay Abraham I 		return ERR_PTR(-ENOMEM);
393380f5708SKishon Vijay Abraham I 
394380f5708SKishon Vijay Abraham I 	ctx->dev = dev;
395380f5708SKishon Vijay Abraham I 	ctx->base = base + block_offset;
396380f5708SKishon Vijay Abraham I 	ctx->reg_offset_shift = reg_offset_shift;
397380f5708SKishon Vijay Abraham I 
398380f5708SKishon Vijay Abraham I 	return devm_regmap_init(dev, NULL, ctx, config);
399380f5708SKishon Vijay Abraham I }
400380f5708SKishon Vijay Abraham I 
401380f5708SKishon Vijay Abraham I static int cdns_regfield_init(struct cdns_sierra_phy *sp)
402380f5708SKishon Vijay Abraham I {
403380f5708SKishon Vijay Abraham I 	struct device *dev = sp->dev;
404380f5708SKishon Vijay Abraham I 	struct regmap_field *field;
405380f5708SKishon Vijay Abraham I 	struct regmap *regmap;
406adc4bd6fSKishon Vijay Abraham I 	int i;
407380f5708SKishon Vijay Abraham I 
408380f5708SKishon Vijay Abraham I 	regmap = sp->regmap_common_cdb;
409380f5708SKishon Vijay Abraham I 	field = devm_regmap_field_alloc(dev, regmap, macro_id_type);
410380f5708SKishon Vijay Abraham I 	if (IS_ERR(field)) {
411380f5708SKishon Vijay Abraham I 		dev_err(dev, "MACRO_ID_TYPE reg field init failed\n");
412380f5708SKishon Vijay Abraham I 		return PTR_ERR(field);
413380f5708SKishon Vijay Abraham I 	}
414380f5708SKishon Vijay Abraham I 	sp->macro_id_type = field;
415380f5708SKishon Vijay Abraham I 
416380f5708SKishon Vijay Abraham I 	regmap = sp->regmap_phy_config_ctrl;
417380f5708SKishon Vijay Abraham I 	field = devm_regmap_field_alloc(dev, regmap, phy_pll_cfg_1);
418380f5708SKishon Vijay Abraham I 	if (IS_ERR(field)) {
419380f5708SKishon Vijay Abraham I 		dev_err(dev, "PHY_PLL_CFG_1 reg field init failed\n");
420380f5708SKishon Vijay Abraham I 		return PTR_ERR(field);
421380f5708SKishon Vijay Abraham I 	}
422380f5708SKishon Vijay Abraham I 	sp->phy_pll_cfg_1 = field;
423380f5708SKishon Vijay Abraham I 
424adc4bd6fSKishon Vijay Abraham I 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
425adc4bd6fSKishon Vijay Abraham I 		regmap = sp->regmap_lane_cdb[i];
426adc4bd6fSKishon Vijay Abraham I 		field = devm_regmap_field_alloc(dev, regmap, pllctrl_lock);
427adc4bd6fSKishon Vijay Abraham I 		if (IS_ERR(field)) {
428adc4bd6fSKishon Vijay Abraham I 			dev_err(dev, "P%d_ENABLE reg field init failed\n", i);
429adc4bd6fSKishon Vijay Abraham I 			return PTR_ERR(field);
430adc4bd6fSKishon Vijay Abraham I 		}
431adc4bd6fSKishon Vijay Abraham I 		sp->pllctrl_lock[i] =  field;
432adc4bd6fSKishon Vijay Abraham I 	}
433adc4bd6fSKishon Vijay Abraham I 
434380f5708SKishon Vijay Abraham I 	return 0;
435380f5708SKishon Vijay Abraham I }
436380f5708SKishon Vijay Abraham I 
437380f5708SKishon Vijay Abraham I static int cdns_regmap_init_blocks(struct cdns_sierra_phy *sp,
438380f5708SKishon Vijay Abraham I 				   void __iomem *base, u8 block_offset_shift,
439380f5708SKishon Vijay Abraham I 				   u8 reg_offset_shift)
440380f5708SKishon Vijay Abraham I {
441380f5708SKishon Vijay Abraham I 	struct device *dev = sp->dev;
442380f5708SKishon Vijay Abraham I 	struct regmap *regmap;
443380f5708SKishon Vijay Abraham I 	u32 block_offset;
444380f5708SKishon Vijay Abraham I 	int i;
445380f5708SKishon Vijay Abraham I 
446380f5708SKishon Vijay Abraham I 	for (i = 0; i < SIERRA_MAX_LANES; i++) {
447380f5708SKishon Vijay Abraham I 		block_offset = SIERRA_LANE_CDB_OFFSET(i, block_offset_shift,
448380f5708SKishon Vijay Abraham I 						      reg_offset_shift);
449380f5708SKishon Vijay Abraham I 		regmap = cdns_regmap_init(dev, base, block_offset,
450380f5708SKishon Vijay Abraham I 					  reg_offset_shift,
451380f5708SKishon Vijay Abraham I 					  &cdns_sierra_lane_cdb_config[i]);
452380f5708SKishon Vijay Abraham I 		if (IS_ERR(regmap)) {
453380f5708SKishon Vijay Abraham I 			dev_err(dev, "Failed to init lane CDB regmap\n");
454380f5708SKishon Vijay Abraham I 			return PTR_ERR(regmap);
455380f5708SKishon Vijay Abraham I 		}
456380f5708SKishon Vijay Abraham I 		sp->regmap_lane_cdb[i] = regmap;
457380f5708SKishon Vijay Abraham I 	}
458380f5708SKishon Vijay Abraham I 
459380f5708SKishon Vijay Abraham I 	regmap = cdns_regmap_init(dev, base, SIERRA_COMMON_CDB_OFFSET,
460380f5708SKishon Vijay Abraham I 				  reg_offset_shift,
461380f5708SKishon Vijay Abraham I 				  &cdns_sierra_common_cdb_config);
462380f5708SKishon Vijay Abraham I 	if (IS_ERR(regmap)) {
463380f5708SKishon Vijay Abraham I 		dev_err(dev, "Failed to init common CDB regmap\n");
464380f5708SKishon Vijay Abraham I 		return PTR_ERR(regmap);
465380f5708SKishon Vijay Abraham I 	}
466380f5708SKishon Vijay Abraham I 	sp->regmap_common_cdb = regmap;
467380f5708SKishon Vijay Abraham I 
468380f5708SKishon Vijay Abraham I 	block_offset = SIERRA_PHY_CONFIG_CTRL_OFFSET(block_offset_shift);
469380f5708SKishon Vijay Abraham I 	regmap = cdns_regmap_init(dev, base, block_offset, reg_offset_shift,
470380f5708SKishon Vijay Abraham I 				  &cdns_sierra_phy_config_ctrl_config);
471380f5708SKishon Vijay Abraham I 	if (IS_ERR(regmap)) {
472380f5708SKishon Vijay Abraham I 		dev_err(dev, "Failed to init PHY config and control regmap\n");
473380f5708SKishon Vijay Abraham I 		return PTR_ERR(regmap);
474380f5708SKishon Vijay Abraham I 	}
475380f5708SKishon Vijay Abraham I 	sp->regmap_phy_config_ctrl = regmap;
476380f5708SKishon Vijay Abraham I 
477380f5708SKishon Vijay Abraham I 	return 0;
478380f5708SKishon Vijay Abraham I }
479380f5708SKishon Vijay Abraham I 
4807e016cbcSKishon Vijay Abraham I static int cdns_sierra_phy_get_clocks(struct cdns_sierra_phy *sp,
4817e016cbcSKishon Vijay Abraham I 				      struct device *dev)
4827e016cbcSKishon Vijay Abraham I {
4837e016cbcSKishon Vijay Abraham I 	struct clk *clk;
4847e016cbcSKishon Vijay Abraham I 	int ret;
4857e016cbcSKishon Vijay Abraham I 
4867e016cbcSKishon Vijay Abraham I 	clk = devm_clk_get_optional(dev, "phy_clk");
4877e016cbcSKishon Vijay Abraham I 	if (IS_ERR(clk)) {
4887e016cbcSKishon Vijay Abraham I 		dev_err(dev, "failed to get clock phy_clk\n");
4897e016cbcSKishon Vijay Abraham I 		return PTR_ERR(clk);
4907e016cbcSKishon Vijay Abraham I 	}
4917e016cbcSKishon Vijay Abraham I 	sp->clk = clk;
4927e016cbcSKishon Vijay Abraham I 
4937e016cbcSKishon Vijay Abraham I 	clk = devm_clk_get_optional(dev, "cmn_refclk_dig_div");
4947e016cbcSKishon Vijay Abraham I 	if (IS_ERR(clk)) {
4957e016cbcSKishon Vijay Abraham I 		dev_err(dev, "cmn_refclk_dig_div clock not found\n");
4967e016cbcSKishon Vijay Abraham I 		ret = PTR_ERR(clk);
4977e016cbcSKishon Vijay Abraham I 		return ret;
4987e016cbcSKishon Vijay Abraham I 	}
4997e016cbcSKishon Vijay Abraham I 	sp->cmn_refclk_dig_div = clk;
5007e016cbcSKishon Vijay Abraham I 
5017e016cbcSKishon Vijay Abraham I 	clk = devm_clk_get_optional(dev, "cmn_refclk1_dig_div");
5027e016cbcSKishon Vijay Abraham I 	if (IS_ERR(clk)) {
5037e016cbcSKishon Vijay Abraham I 		dev_err(dev, "cmn_refclk1_dig_div clock not found\n");
5047e016cbcSKishon Vijay Abraham I 		ret = PTR_ERR(clk);
5057e016cbcSKishon Vijay Abraham I 		return ret;
5067e016cbcSKishon Vijay Abraham I 	}
5077e016cbcSKishon Vijay Abraham I 	sp->cmn_refclk1_dig_div = clk;
5087e016cbcSKishon Vijay Abraham I 
5097e016cbcSKishon Vijay Abraham I 	return 0;
5107e016cbcSKishon Vijay Abraham I }
5117e016cbcSKishon Vijay Abraham I 
5121d5f40e0SKishon Vijay Abraham I static int cdns_sierra_phy_get_resets(struct cdns_sierra_phy *sp,
5131d5f40e0SKishon Vijay Abraham I 				      struct device *dev)
5141d5f40e0SKishon Vijay Abraham I {
5151d5f40e0SKishon Vijay Abraham I 	struct reset_control *rst;
5161d5f40e0SKishon Vijay Abraham I 
517*15b0b82dSKishon Vijay Abraham I 	rst = devm_reset_control_get_exclusive(dev, "sierra_reset");
5181d5f40e0SKishon Vijay Abraham I 	if (IS_ERR(rst)) {
5191d5f40e0SKishon Vijay Abraham I 		dev_err(dev, "failed to get reset\n");
5201d5f40e0SKishon Vijay Abraham I 		return PTR_ERR(rst);
5211d5f40e0SKishon Vijay Abraham I 	}
5221d5f40e0SKishon Vijay Abraham I 	sp->phy_rst = rst;
5231d5f40e0SKishon Vijay Abraham I 
524*15b0b82dSKishon Vijay Abraham I 	rst = devm_reset_control_get_optional_exclusive(dev, "sierra_apb");
5251d5f40e0SKishon Vijay Abraham I 	if (IS_ERR(rst)) {
5261d5f40e0SKishon Vijay Abraham I 		dev_err(dev, "failed to get apb reset\n");
5271d5f40e0SKishon Vijay Abraham I 		return PTR_ERR(rst);
5281d5f40e0SKishon Vijay Abraham I 	}
5291d5f40e0SKishon Vijay Abraham I 	sp->apb_rst = rst;
5301d5f40e0SKishon Vijay Abraham I 
5311d5f40e0SKishon Vijay Abraham I 	return 0;
5321d5f40e0SKishon Vijay Abraham I }
5331d5f40e0SKishon Vijay Abraham I 
53444d30d62SAlan Douglas static int cdns_sierra_phy_probe(struct platform_device *pdev)
53544d30d62SAlan Douglas {
53644d30d62SAlan Douglas 	struct cdns_sierra_phy *sp;
53744d30d62SAlan Douglas 	struct phy_provider *phy_provider;
53844d30d62SAlan Douglas 	struct device *dev = &pdev->dev;
53944d30d62SAlan Douglas 	const struct of_device_id *match;
540380f5708SKishon Vijay Abraham I 	struct cdns_sierra_data *data;
541380f5708SKishon Vijay Abraham I 	unsigned int id_value;
54244d30d62SAlan Douglas 	int i, ret, node = 0;
543380f5708SKishon Vijay Abraham I 	void __iomem *base;
54444d30d62SAlan Douglas 	struct device_node *dn = dev->of_node, *child;
54544d30d62SAlan Douglas 
54644d30d62SAlan Douglas 	if (of_get_child_count(dn) == 0)
54744d30d62SAlan Douglas 		return -ENODEV;
54844d30d62SAlan Douglas 
549380f5708SKishon Vijay Abraham I 	/* Get init data for this PHY */
550380f5708SKishon Vijay Abraham I 	match = of_match_device(cdns_sierra_id_table, dev);
551380f5708SKishon Vijay Abraham I 	if (!match)
552380f5708SKishon Vijay Abraham I 		return -EINVAL;
553380f5708SKishon Vijay Abraham I 
554380f5708SKishon Vijay Abraham I 	data = (struct cdns_sierra_data *)match->data;
555380f5708SKishon Vijay Abraham I 
55644d30d62SAlan Douglas 	sp = devm_kzalloc(dev, sizeof(*sp), GFP_KERNEL);
55744d30d62SAlan Douglas 	if (!sp)
55844d30d62SAlan Douglas 		return -ENOMEM;
55944d30d62SAlan Douglas 	dev_set_drvdata(dev, sp);
56044d30d62SAlan Douglas 	sp->dev = dev;
561380f5708SKishon Vijay Abraham I 	sp->init_data = data;
56244d30d62SAlan Douglas 
563fa629094SChunfeng Yun 	base = devm_platform_ioremap_resource(pdev, 0);
564380f5708SKishon Vijay Abraham I 	if (IS_ERR(base)) {
56544d30d62SAlan Douglas 		dev_err(dev, "missing \"reg\"\n");
566380f5708SKishon Vijay Abraham I 		return PTR_ERR(base);
56744d30d62SAlan Douglas 	}
56844d30d62SAlan Douglas 
569380f5708SKishon Vijay Abraham I 	ret = cdns_regmap_init_blocks(sp, base, data->block_offset_shift,
570380f5708SKishon Vijay Abraham I 				      data->reg_offset_shift);
571380f5708SKishon Vijay Abraham I 	if (ret)
572380f5708SKishon Vijay Abraham I 		return ret;
573380f5708SKishon Vijay Abraham I 
574380f5708SKishon Vijay Abraham I 	ret = cdns_regfield_init(sp);
575380f5708SKishon Vijay Abraham I 	if (ret)
576380f5708SKishon Vijay Abraham I 		return ret;
57744d30d62SAlan Douglas 
57844d30d62SAlan Douglas 	platform_set_drvdata(pdev, sp);
57944d30d62SAlan Douglas 
5807e016cbcSKishon Vijay Abraham I 	ret = cdns_sierra_phy_get_clocks(sp, dev);
5817e016cbcSKishon Vijay Abraham I 	if (ret)
5827e016cbcSKishon Vijay Abraham I 		return ret;
58344d30d62SAlan Douglas 
5841d5f40e0SKishon Vijay Abraham I 	ret = cdns_sierra_phy_get_resets(sp, dev);
5851d5f40e0SKishon Vijay Abraham I 	if (ret)
5861d5f40e0SKishon Vijay Abraham I 		return ret;
58744d30d62SAlan Douglas 
58844d30d62SAlan Douglas 	ret = clk_prepare_enable(sp->clk);
58944d30d62SAlan Douglas 	if (ret)
59044d30d62SAlan Douglas 		return ret;
59144d30d62SAlan Douglas 
59244d30d62SAlan Douglas 	/* Enable APB */
59344d30d62SAlan Douglas 	reset_control_deassert(sp->apb_rst);
59444d30d62SAlan Douglas 
59544d30d62SAlan Douglas 	/* Check that PHY is present */
596380f5708SKishon Vijay Abraham I 	regmap_field_read(sp->macro_id_type, &id_value);
597380f5708SKishon Vijay Abraham I 	if  (sp->init_data->id_value != id_value) {
59844d30d62SAlan Douglas 		ret = -EINVAL;
59944d30d62SAlan Douglas 		goto clk_disable;
60044d30d62SAlan Douglas 	}
60144d30d62SAlan Douglas 
60244d30d62SAlan Douglas 	sp->autoconf = of_property_read_bool(dn, "cdns,autoconf");
60344d30d62SAlan Douglas 
60444d30d62SAlan Douglas 	for_each_available_child_of_node(dn, child) {
60544d30d62SAlan Douglas 		struct phy *gphy;
60644d30d62SAlan Douglas 
60703ada5a3SKishon Vijay Abraham I 		if (!(of_node_name_eq(child, "phy") ||
60803ada5a3SKishon Vijay Abraham I 		      of_node_name_eq(child, "link")))
60903ada5a3SKishon Vijay Abraham I 			continue;
61003ada5a3SKishon Vijay Abraham I 
61144d30d62SAlan Douglas 		sp->phys[node].lnk_rst =
612b872936fSKishon Vijay Abraham I 			of_reset_control_array_get_exclusive(child);
61344d30d62SAlan Douglas 
61444d30d62SAlan Douglas 		if (IS_ERR(sp->phys[node].lnk_rst)) {
61544d30d62SAlan Douglas 			dev_err(dev, "failed to get reset %s\n",
61644d30d62SAlan Douglas 				child->full_name);
61744d30d62SAlan Douglas 			ret = PTR_ERR(sp->phys[node].lnk_rst);
61844d30d62SAlan Douglas 			goto put_child2;
61944d30d62SAlan Douglas 		}
62044d30d62SAlan Douglas 
62144d30d62SAlan Douglas 		if (!sp->autoconf) {
62244d30d62SAlan Douglas 			ret = cdns_sierra_get_optional(&sp->phys[node], child);
62344d30d62SAlan Douglas 			if (ret) {
62444d30d62SAlan Douglas 				dev_err(dev, "missing property in node %s\n",
62544d30d62SAlan Douglas 					child->name);
62644d30d62SAlan Douglas 				goto put_child;
62744d30d62SAlan Douglas 			}
62844d30d62SAlan Douglas 		}
62944d30d62SAlan Douglas 
630a43f72aeSKishon Vijay Abraham I 		sp->num_lanes += sp->phys[node].num_lanes;
631a43f72aeSKishon Vijay Abraham I 
63244d30d62SAlan Douglas 		gphy = devm_phy_create(dev, child, &ops);
63344d30d62SAlan Douglas 
63444d30d62SAlan Douglas 		if (IS_ERR(gphy)) {
63544d30d62SAlan Douglas 			ret = PTR_ERR(gphy);
63644d30d62SAlan Douglas 			goto put_child;
63744d30d62SAlan Douglas 		}
63844d30d62SAlan Douglas 		sp->phys[node].phy = gphy;
63944d30d62SAlan Douglas 		phy_set_drvdata(gphy, &sp->phys[node]);
64044d30d62SAlan Douglas 
64144d30d62SAlan Douglas 		node++;
64244d30d62SAlan Douglas 	}
64344d30d62SAlan Douglas 	sp->nsubnodes = node;
64444d30d62SAlan Douglas 
645a43f72aeSKishon Vijay Abraham I 	if (sp->num_lanes > SIERRA_MAX_LANES) {
646a43f72aeSKishon Vijay Abraham I 		dev_err(dev, "Invalid lane configuration\n");
647a43f72aeSKishon Vijay Abraham I 		goto put_child2;
648a43f72aeSKishon Vijay Abraham I 	}
649a43f72aeSKishon Vijay Abraham I 
65044d30d62SAlan Douglas 	/* If more than one subnode, configure the PHY as multilink */
65144d30d62SAlan Douglas 	if (!sp->autoconf && sp->nsubnodes > 1)
652380f5708SKishon Vijay Abraham I 		regmap_field_write(sp->phy_pll_cfg_1, 0x1);
65344d30d62SAlan Douglas 
65444d30d62SAlan Douglas 	pm_runtime_enable(dev);
65544d30d62SAlan Douglas 	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
65644d30d62SAlan Douglas 	return PTR_ERR_OR_ZERO(phy_provider);
65744d30d62SAlan Douglas 
65844d30d62SAlan Douglas put_child:
65944d30d62SAlan Douglas 	node++;
66044d30d62SAlan Douglas put_child2:
66144d30d62SAlan Douglas 	for (i = 0; i < node; i++)
66244d30d62SAlan Douglas 		reset_control_put(sp->phys[i].lnk_rst);
66344d30d62SAlan Douglas 	of_node_put(child);
66444d30d62SAlan Douglas clk_disable:
66544d30d62SAlan Douglas 	clk_disable_unprepare(sp->clk);
66644d30d62SAlan Douglas 	reset_control_assert(sp->apb_rst);
66744d30d62SAlan Douglas 	return ret;
66844d30d62SAlan Douglas }
66944d30d62SAlan Douglas 
67044d30d62SAlan Douglas static int cdns_sierra_phy_remove(struct platform_device *pdev)
67144d30d62SAlan Douglas {
672748e3456SKishon Vijay Abraham I 	struct cdns_sierra_phy *phy = platform_get_drvdata(pdev);
67344d30d62SAlan Douglas 	int i;
67444d30d62SAlan Douglas 
67544d30d62SAlan Douglas 	reset_control_assert(phy->phy_rst);
67644d30d62SAlan Douglas 	reset_control_assert(phy->apb_rst);
67744d30d62SAlan Douglas 	pm_runtime_disable(&pdev->dev);
67844d30d62SAlan Douglas 
67944d30d62SAlan Douglas 	/*
68044d30d62SAlan Douglas 	 * The device level resets will be put automatically.
68144d30d62SAlan Douglas 	 * Need to put the subnode resets here though.
68244d30d62SAlan Douglas 	 */
68344d30d62SAlan Douglas 	for (i = 0; i < phy->nsubnodes; i++) {
68444d30d62SAlan Douglas 		reset_control_assert(phy->phys[i].lnk_rst);
68544d30d62SAlan Douglas 		reset_control_put(phy->phys[i].lnk_rst);
68644d30d62SAlan Douglas 	}
68744d30d62SAlan Douglas 	return 0;
68844d30d62SAlan Douglas }
68944d30d62SAlan Douglas 
690871002d7SAnil Varughese /* refclk100MHz_32b_PCIe_cmn_pll_ext_ssc */
6913cfb0e8eSRikard Falkeborn static const struct cdns_reg_pairs cdns_pcie_cmn_regs_ext_ssc[] = {
692871002d7SAnil Varughese 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
693871002d7SAnil Varughese 	{0x2106, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
694871002d7SAnil Varughese 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE1_PREG},
695871002d7SAnil Varughese 	{0x8A06, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
696871002d7SAnil Varughese 	{0x1B1B, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG}
697871002d7SAnil Varughese };
698871002d7SAnil Varughese 
699871002d7SAnil Varughese /* refclk100MHz_32b_PCIe_ln_ext_ssc */
7003cfb0e8eSRikard Falkeborn static const struct cdns_reg_pairs cdns_pcie_ln_regs_ext_ssc[] = {
701871002d7SAnil Varughese 	{0x813E, SIERRA_CLKPATHCTRL_TMR_PREG},
702871002d7SAnil Varughese 	{0x8047, SIERRA_RX_CREQ_FLTR_A_MODE3_PREG},
703871002d7SAnil Varughese 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE2_PREG},
704871002d7SAnil Varughese 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
705871002d7SAnil Varughese 	{0x808F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
706871002d7SAnil Varughese 	{0x033C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
707871002d7SAnil Varughese 	{0x44CC, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG}
708871002d7SAnil Varughese };
709871002d7SAnil Varughese 
710871002d7SAnil Varughese /* refclk100MHz_20b_USB_cmn_pll_ext_ssc */
7113cfb0e8eSRikard Falkeborn static const struct cdns_reg_pairs cdns_usb_cmn_regs_ext_ssc[] = {
712871002d7SAnil Varughese 	{0x2085, SIERRA_CMN_PLLLC_LF_COEFF_MODE1_PREG},
713871002d7SAnil Varughese 	{0x2085, SIERRA_CMN_PLLLC_LF_COEFF_MODE0_PREG},
714871002d7SAnil Varughese 	{0x0000, SIERRA_CMN_PLLLC_BWCAL_MODE0_PREG},
715871002d7SAnil Varughese 	{0x0000, SIERRA_CMN_PLLLC_SS_TIME_STEPSIZE_MODE_PREG}
716871002d7SAnil Varughese };
717871002d7SAnil Varughese 
718871002d7SAnil Varughese /* refclk100MHz_20b_USB_ln_ext_ssc */
7193cfb0e8eSRikard Falkeborn static const struct cdns_reg_pairs cdns_usb_ln_regs_ext_ssc[] = {
720aead5fd6SKishon Vijay Abraham I 	{0xFE0A, SIERRA_DET_STANDEC_A_PREG},
721aead5fd6SKishon Vijay Abraham I 	{0x000F, SIERRA_DET_STANDEC_B_PREG},
7222bcf14caSSanket Parmar 	{0x55A5, SIERRA_DET_STANDEC_C_PREG},
723871002d7SAnil Varughese 	{0x69ad, SIERRA_DET_STANDEC_D_PREG},
724aead5fd6SKishon Vijay Abraham I 	{0x0241, SIERRA_DET_STANDEC_E_PREG},
7252bcf14caSSanket Parmar 	{0x0110, SIERRA_PSM_LANECAL_DLY_A1_RESETS_PREG},
726871002d7SAnil Varughese 	{0x0014, SIERRA_PSM_A0IN_TMR_PREG},
727aead5fd6SKishon Vijay Abraham I 	{0xCF00, SIERRA_PSM_DIAG_PREG},
728aead5fd6SKishon Vijay Abraham I 	{0x001F, SIERRA_PSC_TX_A0_PREG},
729aead5fd6SKishon Vijay Abraham I 	{0x0007, SIERRA_PSC_TX_A1_PREG},
730aead5fd6SKishon Vijay Abraham I 	{0x0003, SIERRA_PSC_TX_A2_PREG},
731aead5fd6SKishon Vijay Abraham I 	{0x0003, SIERRA_PSC_TX_A3_PREG},
732aead5fd6SKishon Vijay Abraham I 	{0x0FFF, SIERRA_PSC_RX_A0_PREG},
7332bcf14caSSanket Parmar 	{0x0003, SIERRA_PSC_RX_A1_PREG},
734aead5fd6SKishon Vijay Abraham I 	{0x0003, SIERRA_PSC_RX_A2_PREG},
735aead5fd6SKishon Vijay Abraham I 	{0x0001, SIERRA_PSC_RX_A3_PREG},
736aead5fd6SKishon Vijay Abraham I 	{0x0001, SIERRA_PLLCTRL_SUBRATE_PREG},
737aead5fd6SKishon Vijay Abraham I 	{0x0406, SIERRA_PLLCTRL_GEN_D_PREG},
738871002d7SAnil Varughese 	{0x5233, SIERRA_PLLCTRL_CPGAIN_MODE_PREG},
739871002d7SAnil Varughese 	{0x00CA, SIERRA_CLKPATH_BIASTRIM_PREG},
740871002d7SAnil Varughese 	{0x2512, SIERRA_DFE_BIASTRIM_PREG},
741aead5fd6SKishon Vijay Abraham I 	{0x0000, SIERRA_DRVCTRL_ATTEN_PREG},
7422bcf14caSSanket Parmar 	{0x823E, SIERRA_CLKPATHCTRL_TMR_PREG},
7432bcf14caSSanket Parmar 	{0x078F, SIERRA_RX_CREQ_FLTR_A_MODE1_PREG},
7442bcf14caSSanket Parmar 	{0x078F, SIERRA_RX_CREQ_FLTR_A_MODE0_PREG},
745aead5fd6SKishon Vijay Abraham I 	{0x7B3C, SIERRA_CREQ_CCLKDET_MODE01_PREG},
7462bcf14caSSanket Parmar 	{0x023C, SIERRA_RX_CTLE_MAINTENANCE_PREG},
747aead5fd6SKishon Vijay Abraham I 	{0x3232, SIERRA_CREQ_FSMCLK_SEL_PREG},
748871002d7SAnil Varughese 	{0x0000, SIERRA_CREQ_EQ_CTRL_PREG},
7492bcf14caSSanket Parmar 	{0x0000, SIERRA_CREQ_SPARE_PREG},
750871002d7SAnil Varughese 	{0xCC44, SIERRA_CREQ_EQ_OPEN_EYE_THRESH_PREG},
7512bcf14caSSanket Parmar 	{0x8452, SIERRA_CTLELUT_CTRL_PREG},
7522bcf14caSSanket Parmar 	{0x4121, SIERRA_DFE_ECMP_RATESEL_PREG},
7532bcf14caSSanket Parmar 	{0x4121, SIERRA_DFE_SMP_RATESEL_PREG},
7542bcf14caSSanket Parmar 	{0x0003, SIERRA_DEQ_PHALIGN_CTRL},
755871002d7SAnil Varughese 	{0x3200, SIERRA_DEQ_CONCUR_CTRL1_PREG},
756871002d7SAnil Varughese 	{0x5064, SIERRA_DEQ_CONCUR_CTRL2_PREG},
757871002d7SAnil Varughese 	{0x0030, SIERRA_DEQ_EPIPWR_CTRL2_PREG},
758871002d7SAnil Varughese 	{0x0048, SIERRA_DEQ_FAST_MAINT_CYCLES_PREG},
759871002d7SAnil Varughese 	{0x5A5A, SIERRA_DEQ_ERRCMP_CTRL_PREG},
760871002d7SAnil Varughese 	{0x02F5, SIERRA_DEQ_OFFSET_CTRL_PREG},
761871002d7SAnil Varughese 	{0x02F5, SIERRA_DEQ_GAIN_CTRL_PREG},
7622bcf14caSSanket Parmar 	{0x9999, SIERRA_DEQ_VGATUNE_CTRL_PREG},
763871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT0},
764871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT1},
765871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT2},
766871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT3},
767871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT4},
768871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT5},
769871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT6},
770871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT7},
771871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT8},
772871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT9},
773871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT10},
774871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT11},
775871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT12},
776871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT13},
777871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT14},
778871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT15},
779871002d7SAnil Varughese 	{0x0014, SIERRA_DEQ_GLUT16},
780871002d7SAnil Varughese 	{0x0BAE, SIERRA_DEQ_ALUT0},
781871002d7SAnil Varughese 	{0x0AEB, SIERRA_DEQ_ALUT1},
782871002d7SAnil Varughese 	{0x0A28, SIERRA_DEQ_ALUT2},
783871002d7SAnil Varughese 	{0x0965, SIERRA_DEQ_ALUT3},
784871002d7SAnil Varughese 	{0x08A2, SIERRA_DEQ_ALUT4},
785871002d7SAnil Varughese 	{0x07DF, SIERRA_DEQ_ALUT5},
786871002d7SAnil Varughese 	{0x071C, SIERRA_DEQ_ALUT6},
787871002d7SAnil Varughese 	{0x0659, SIERRA_DEQ_ALUT7},
788871002d7SAnil Varughese 	{0x0596, SIERRA_DEQ_ALUT8},
789871002d7SAnil Varughese 	{0x0514, SIERRA_DEQ_ALUT9},
790871002d7SAnil Varughese 	{0x0492, SIERRA_DEQ_ALUT10},
791871002d7SAnil Varughese 	{0x0410, SIERRA_DEQ_ALUT11},
792871002d7SAnil Varughese 	{0x038E, SIERRA_DEQ_ALUT12},
793871002d7SAnil Varughese 	{0x030C, SIERRA_DEQ_ALUT13},
794871002d7SAnil Varughese 	{0x03F4, SIERRA_DEQ_DFETAP_CTRL_PREG},
795871002d7SAnil Varughese 	{0x0001, SIERRA_DFE_EN_1010_IGNORE_PREG},
796871002d7SAnil Varughese 	{0x3C01, SIERRA_DEQ_TAU_CTRL1_FAST_MAINT_PREG},
797871002d7SAnil Varughese 	{0x3C40, SIERRA_DEQ_TAU_CTRL1_SLOW_MAINT_PREG},
798871002d7SAnil Varughese 	{0x1C08, SIERRA_DEQ_TAU_CTRL2_PREG},
799871002d7SAnil Varughese 	{0x0033, SIERRA_DEQ_PICTRL_PREG},
800871002d7SAnil Varughese 	{0x0400, SIERRA_CPICAL_TMRVAL_MODE1_PREG},
801871002d7SAnil Varughese 	{0x0330, SIERRA_CPICAL_TMRVAL_MODE0_PREG},
802871002d7SAnil Varughese 	{0x01FF, SIERRA_CPICAL_PICNT_MODE1_PREG},
803aead5fd6SKishon Vijay Abraham I 	{0x0009, SIERRA_CPI_OUTBUF_RATESEL_PREG},
804871002d7SAnil Varughese 	{0x3232, SIERRA_CPICAL_RES_STARTCODE_MODE23_PREG},
805871002d7SAnil Varughese 	{0x0005, SIERRA_LFPSDET_SUPPORT_PREG},
806aead5fd6SKishon Vijay Abraham I 	{0x000F, SIERRA_LFPSFILT_NS_PREG},
807aead5fd6SKishon Vijay Abraham I 	{0x0009, SIERRA_LFPSFILT_RD_PREG},
808aead5fd6SKishon Vijay Abraham I 	{0x0001, SIERRA_LFPSFILT_MP_PREG},
8092bcf14caSSanket Parmar 	{0x6013, SIERRA_SIGDET_SUPPORT_PREG},
810aead5fd6SKishon Vijay Abraham I 	{0x8013, SIERRA_SDFILT_H2L_A_PREG},
811871002d7SAnil Varughese 	{0x8009, SIERRA_SDFILT_L2H_PREG},
812871002d7SAnil Varughese 	{0x0024, SIERRA_RXBUFFER_CTLECTRL_PREG},
813871002d7SAnil Varughese 	{0x0020, SIERRA_RXBUFFER_RCDFECTRL_PREG},
814871002d7SAnil Varughese 	{0x4243, SIERRA_RXBUFFER_DFECTRL_PREG}
81544d30d62SAlan Douglas };
81644d30d62SAlan Douglas 
81744d30d62SAlan Douglas static const struct cdns_sierra_data cdns_map_sierra = {
81844d30d62SAlan Douglas 	SIERRA_MACRO_ID,
819380f5708SKishon Vijay Abraham I 	0x2,
820380f5708SKishon Vijay Abraham I 	0x2,
821871002d7SAnil Varughese 	ARRAY_SIZE(cdns_pcie_cmn_regs_ext_ssc),
822871002d7SAnil Varughese 	ARRAY_SIZE(cdns_pcie_ln_regs_ext_ssc),
823871002d7SAnil Varughese 	ARRAY_SIZE(cdns_usb_cmn_regs_ext_ssc),
824871002d7SAnil Varughese 	ARRAY_SIZE(cdns_usb_ln_regs_ext_ssc),
825871002d7SAnil Varughese 	cdns_pcie_cmn_regs_ext_ssc,
826871002d7SAnil Varughese 	cdns_pcie_ln_regs_ext_ssc,
827871002d7SAnil Varughese 	cdns_usb_cmn_regs_ext_ssc,
828871002d7SAnil Varughese 	cdns_usb_ln_regs_ext_ssc,
82944d30d62SAlan Douglas };
83044d30d62SAlan Douglas 
831367da978SKishon Vijay Abraham I static const struct cdns_sierra_data cdns_ti_map_sierra = {
832367da978SKishon Vijay Abraham I 	SIERRA_MACRO_ID,
833367da978SKishon Vijay Abraham I 	0x0,
834367da978SKishon Vijay Abraham I 	0x1,
835871002d7SAnil Varughese 	ARRAY_SIZE(cdns_pcie_cmn_regs_ext_ssc),
836871002d7SAnil Varughese 	ARRAY_SIZE(cdns_pcie_ln_regs_ext_ssc),
837871002d7SAnil Varughese 	ARRAY_SIZE(cdns_usb_cmn_regs_ext_ssc),
838871002d7SAnil Varughese 	ARRAY_SIZE(cdns_usb_ln_regs_ext_ssc),
839871002d7SAnil Varughese 	cdns_pcie_cmn_regs_ext_ssc,
840871002d7SAnil Varughese 	cdns_pcie_ln_regs_ext_ssc,
841871002d7SAnil Varughese 	cdns_usb_cmn_regs_ext_ssc,
842871002d7SAnil Varughese 	cdns_usb_ln_regs_ext_ssc,
843367da978SKishon Vijay Abraham I };
844367da978SKishon Vijay Abraham I 
84544d30d62SAlan Douglas static const struct of_device_id cdns_sierra_id_table[] = {
84644d30d62SAlan Douglas 	{
84744d30d62SAlan Douglas 		.compatible = "cdns,sierra-phy-t0",
84844d30d62SAlan Douglas 		.data = &cdns_map_sierra,
84944d30d62SAlan Douglas 	},
850367da978SKishon Vijay Abraham I 	{
851367da978SKishon Vijay Abraham I 		.compatible = "ti,sierra-phy-t0",
852367da978SKishon Vijay Abraham I 		.data = &cdns_ti_map_sierra,
853367da978SKishon Vijay Abraham I 	},
85444d30d62SAlan Douglas 	{}
85544d30d62SAlan Douglas };
85644d30d62SAlan Douglas MODULE_DEVICE_TABLE(of, cdns_sierra_id_table);
85744d30d62SAlan Douglas 
85844d30d62SAlan Douglas static struct platform_driver cdns_sierra_driver = {
85944d30d62SAlan Douglas 	.probe		= cdns_sierra_phy_probe,
86044d30d62SAlan Douglas 	.remove		= cdns_sierra_phy_remove,
86144d30d62SAlan Douglas 	.driver		= {
86244d30d62SAlan Douglas 		.name	= "cdns-sierra-phy",
86344d30d62SAlan Douglas 		.of_match_table = cdns_sierra_id_table,
86444d30d62SAlan Douglas 	},
86544d30d62SAlan Douglas };
86644d30d62SAlan Douglas module_platform_driver(cdns_sierra_driver);
86744d30d62SAlan Douglas 
86844d30d62SAlan Douglas MODULE_ALIAS("platform:cdns_sierra");
86944d30d62SAlan Douglas MODULE_AUTHOR("Cadence Design Systems");
87044d30d62SAlan Douglas MODULE_DESCRIPTION("CDNS sierra phy driver");
87144d30d62SAlan Douglas MODULE_LICENSE("GPL v2");
872