Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2017, 2020, The Linux Foundation. All rights reserved.
  4 * Copyright (c) 2021, Linaro Ltd.
  5 */
  6
  7#include <linux/clk.h>
  8#include <linux/clk-provider.h>
  9#include <linux/delay.h>
 10#include <linux/err.h>
 11#include <linux/io.h>
 12#include <linux/iopoll.h>
 13#include <linux/kernel.h>
 14#include <linux/module.h>
 15#include <linux/of.h>
 16#include <linux/phy/phy.h>
 
 17#include <linux/platform_device.h>
 18#include <linux/regulator/consumer.h>
 19#include <linux/reset.h>
 20#include <linux/slab.h>
 21
 22#include <dt-bindings/phy/phy.h>
 23
 24#include "phy-qcom-qmp.h"
 
 
 25
 26/* EDP_PHY registers */
 27#define DP_PHY_CFG                              0x0010
 28#define DP_PHY_CFG_1                            0x0014
 29#define DP_PHY_PD_CTL                           0x001c
 30#define DP_PHY_MODE                             0x0020
 31
 32#define DP_PHY_AUX_CFG0				0x0024
 33#define DP_PHY_AUX_CFG1				0x0028
 34#define DP_PHY_AUX_CFG2				0x002C
 35#define DP_PHY_AUX_CFG3				0x0030
 36#define DP_PHY_AUX_CFG4				0x0034
 37#define DP_PHY_AUX_CFG5				0x0038
 38#define DP_PHY_AUX_CFG6				0x003C
 39#define DP_PHY_AUX_CFG7				0x0040
 40#define DP_PHY_AUX_CFG8				0x0044
 41#define DP_PHY_AUX_CFG9				0x0048
 42
 43#define DP_PHY_AUX_INTERRUPT_MASK		0x0058
 44
 45#define DP_PHY_VCO_DIV                          0x0074
 46#define DP_PHY_TX0_TX1_LANE_CTL                 0x007c
 47#define DP_PHY_TX2_TX3_LANE_CTL                 0x00a0
 48
 49#define DP_PHY_STATUS                           0x00e0
 50
 51/* LANE_TXn registers */
 52#define TXn_CLKBUF_ENABLE                       0x0000
 53#define TXn_TX_EMP_POST1_LVL                    0x0004
 54
 55#define TXn_TX_DRV_LVL                          0x0014
 56#define TXn_TX_DRV_LVL_OFFSET                   0x0018
 57#define TXn_RESET_TSYNC_EN                      0x001c
 58#define TXn_LDO_CONFIG                          0x0084
 59#define TXn_TX_BAND                             0x0028
 60
 61#define TXn_RES_CODE_LANE_OFFSET_TX0            0x0044
 62#define TXn_RES_CODE_LANE_OFFSET_TX1            0x0048
 63
 64#define TXn_TRANSCEIVER_BIAS_EN                 0x0054
 65#define TXn_HIGHZ_DRVR_EN                       0x0058
 66#define TXn_TX_POL_INV                          0x005c
 67#define TXn_LANE_MODE_1                         0x0064
 68
 69#define TXn_TRAN_DRVR_EMP_EN                    0x0078
 70
 71struct qcom_edp_cfg {
 72	bool is_dp;
 73
 74	/* DP PHY swing and pre_emphasis tables */
 75	const u8 (*swing_hbr_rbr)[4][4];
 76	const u8 (*swing_hbr3_hbr2)[4][4];
 77	const u8 (*pre_emphasis_hbr_rbr)[4][4];
 78	const u8 (*pre_emphasis_hbr3_hbr2)[4][4];
 79};
 80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 81struct qcom_edp {
 82	struct device *dev;
 83	const struct qcom_edp_cfg *cfg;
 84
 85	struct phy *phy;
 86
 87	void __iomem *edp;
 88	void __iomem *tx0;
 89	void __iomem *tx1;
 90	void __iomem *pll;
 91
 92	struct clk_hw dp_link_hw;
 93	struct clk_hw dp_pixel_hw;
 94
 95	struct phy_configure_opts_dp dp_opts;
 96
 97	struct clk_bulk_data clks[2];
 98	struct regulator_bulk_data supplies[2];
 
 
 99};
100
101static const u8 dp_swing_hbr_rbr[4][4] = {
102	{ 0x08, 0x0f, 0x16, 0x1f },
103	{ 0x11, 0x1e, 0x1f, 0xff },
104	{ 0x16, 0x1f, 0xff, 0xff },
105	{ 0x1f, 0xff, 0xff, 0xff }
106};
107
108static const u8 dp_pre_emp_hbr_rbr[4][4] = {
109	{ 0x00, 0x0d, 0x14, 0x1a },
110	{ 0x00, 0x0e, 0x15, 0xff },
111	{ 0x00, 0x0e, 0xff, 0xff },
112	{ 0x03, 0xff, 0xff, 0xff }
113};
114
115static const u8 dp_swing_hbr2_hbr3[4][4] = {
116	{ 0x02, 0x12, 0x16, 0x1a },
117	{ 0x09, 0x19, 0x1f, 0xff },
118	{ 0x10, 0x1f, 0xff, 0xff },
119	{ 0x1f, 0xff, 0xff, 0xff }
120};
121
122static const u8 dp_pre_emp_hbr2_hbr3[4][4] = {
123	{ 0x00, 0x0c, 0x15, 0x1b },
124	{ 0x02, 0x0e, 0x16, 0xff },
125	{ 0x02, 0x11, 0xff, 0xff },
126	{ 0x04, 0xff, 0xff, 0xff }
127};
128
129static const struct qcom_edp_cfg dp_phy_cfg = {
130	.is_dp = true,
131	.swing_hbr_rbr = &dp_swing_hbr_rbr,
132	.swing_hbr3_hbr2 = &dp_swing_hbr2_hbr3,
133	.pre_emphasis_hbr_rbr = &dp_pre_emp_hbr_rbr,
134	.pre_emphasis_hbr3_hbr2 = &dp_pre_emp_hbr2_hbr3,
135};
136
137static const u8 edp_swing_hbr_rbr[4][4] = {
138	{ 0x07, 0x0f, 0x16, 0x1f },
139	{ 0x0d, 0x16, 0x1e, 0xff },
140	{ 0x11, 0x1b, 0xff, 0xff },
141	{ 0x16, 0xff, 0xff, 0xff }
142};
143
144static const u8 edp_pre_emp_hbr_rbr[4][4] = {
145	{ 0x05, 0x12, 0x17, 0x1d },
146	{ 0x05, 0x11, 0x18, 0xff },
147	{ 0x06, 0x11, 0xff, 0xff },
148	{ 0x00, 0xff, 0xff, 0xff }
149};
150
151static const u8 edp_swing_hbr2_hbr3[4][4] = {
152	{ 0x0b, 0x11, 0x17, 0x1c },
153	{ 0x10, 0x19, 0x1f, 0xff },
154	{ 0x19, 0x1f, 0xff, 0xff },
155	{ 0x1f, 0xff, 0xff, 0xff }
156};
157
158static const u8 edp_pre_emp_hbr2_hbr3[4][4] = {
159	{ 0x08, 0x11, 0x17, 0x1b },
160	{ 0x00, 0x0c, 0x13, 0xff },
161	{ 0x05, 0x10, 0xff, 0xff },
162	{ 0x00, 0xff, 0xff, 0xff }
163};
164
165static const struct qcom_edp_cfg edp_phy_cfg = {
166	.is_dp = false,
167	.swing_hbr_rbr = &edp_swing_hbr_rbr,
168	.swing_hbr3_hbr2 = &edp_swing_hbr2_hbr3,
169	.pre_emphasis_hbr_rbr = &edp_pre_emp_hbr_rbr,
170	.pre_emphasis_hbr3_hbr2 = &edp_pre_emp_hbr2_hbr3,
171};
172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173static int qcom_edp_phy_init(struct phy *phy)
174{
175	struct qcom_edp *edp = phy_get_drvdata(phy);
176	const struct qcom_edp_cfg *cfg = edp->cfg;
177	int ret;
178	u8 cfg8;
179
180	ret = regulator_bulk_enable(ARRAY_SIZE(edp->supplies), edp->supplies);
181	if (ret)
182		return ret;
183
184	ret = clk_bulk_prepare_enable(ARRAY_SIZE(edp->clks), edp->clks);
185	if (ret)
186		goto out_disable_supplies;
187
 
 
188	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
189	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
190	       edp->edp + DP_PHY_PD_CTL);
191
192	/* Turn on BIAS current for PHY/PLL */
193	writel(0x17, edp->pll + QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN);
 
194
195	writel(DP_PHY_PD_CTL_PSR_PWRDN, edp->edp + DP_PHY_PD_CTL);
196	msleep(20);
197
198	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
199	       DP_PHY_PD_CTL_LANE_0_1_PWRDN | DP_PHY_PD_CTL_LANE_2_3_PWRDN |
200	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
201	       edp->edp + DP_PHY_PD_CTL);
202
203	if (cfg && cfg->is_dp)
204		cfg8 = 0xb7;
205	else
206		cfg8 = 0x37;
 
 
 
207
208	writel(0xfc, edp->edp + DP_PHY_MODE);
209
210	writel(0x00, edp->edp + DP_PHY_AUX_CFG0);
211	writel(0x13, edp->edp + DP_PHY_AUX_CFG1);
212	writel(0x24, edp->edp + DP_PHY_AUX_CFG2);
213	writel(0x00, edp->edp + DP_PHY_AUX_CFG3);
214	writel(0x0a, edp->edp + DP_PHY_AUX_CFG4);
215	writel(0x26, edp->edp + DP_PHY_AUX_CFG5);
216	writel(0x0a, edp->edp + DP_PHY_AUX_CFG6);
217	writel(0x03, edp->edp + DP_PHY_AUX_CFG7);
218	writel(cfg8, edp->edp + DP_PHY_AUX_CFG8);
219	writel(0x03, edp->edp + DP_PHY_AUX_CFG9);
220
221	writel(PHY_AUX_STOP_ERR_MASK | PHY_AUX_DEC_ERR_MASK |
222	       PHY_AUX_SYNC_ERR_MASK | PHY_AUX_ALIGN_ERR_MASK |
223	       PHY_AUX_REQ_ERR_MASK, edp->edp + DP_PHY_AUX_INTERRUPT_MASK);
224
225	msleep(20);
226
227	return 0;
228
229out_disable_supplies:
230	regulator_bulk_disable(ARRAY_SIZE(edp->supplies), edp->supplies);
231
232	return ret;
233}
234
235static int qcom_edp_set_voltages(struct qcom_edp *edp, const struct phy_configure_opts_dp *dp_opts)
236{
237	const struct qcom_edp_cfg *cfg = edp->cfg;
238	unsigned int v_level = 0;
239	unsigned int p_level = 0;
240	u8 ldo_config;
241	u8 swing;
242	u8 emph;
243	int i;
244
245	if (!cfg)
246		return 0;
247
 
 
 
248	for (i = 0; i < dp_opts->lanes; i++) {
249		v_level = max(v_level, dp_opts->voltage[i]);
250		p_level = max(p_level, dp_opts->pre[i]);
251	}
252
253	if (dp_opts->link_rate <= 2700) {
254		swing = (*cfg->swing_hbr_rbr)[v_level][p_level];
255		emph = (*cfg->pre_emphasis_hbr_rbr)[v_level][p_level];
256	} else {
257		swing = (*cfg->swing_hbr3_hbr2)[v_level][p_level];
258		emph = (*cfg->pre_emphasis_hbr3_hbr2)[v_level][p_level];
259	}
260
261	if (swing == 0xff || emph == 0xff)
262		return -EINVAL;
263
264	ldo_config = (cfg && cfg->is_dp) ? 0x1 : 0x0;
265
266	writel(ldo_config, edp->tx0 + TXn_LDO_CONFIG);
267	writel(swing, edp->tx0 + TXn_TX_DRV_LVL);
268	writel(emph, edp->tx0 + TXn_TX_EMP_POST1_LVL);
269
270	writel(ldo_config, edp->tx1 + TXn_LDO_CONFIG);
271	writel(swing, edp->tx1 + TXn_TX_DRV_LVL);
272	writel(emph, edp->tx1 + TXn_TX_EMP_POST1_LVL);
273
274	return 0;
275}
276
277static int qcom_edp_phy_configure(struct phy *phy, union phy_configure_opts *opts)
278{
279	const struct phy_configure_opts_dp *dp_opts = &opts->dp;
280	struct qcom_edp *edp = phy_get_drvdata(phy);
281	int ret = 0;
282
283	memcpy(&edp->dp_opts, dp_opts, sizeof(*dp_opts));
284
285	if (dp_opts->set_voltages)
286		ret = qcom_edp_set_voltages(edp, dp_opts);
287
288	return ret;
289}
290
291static int qcom_edp_configure_ssc(const struct qcom_edp *edp)
292{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
294	u32 step1;
295	u32 step2;
296
297	switch (dp_opts->link_rate) {
298	case 1620:
299	case 2700:
300	case 8100:
301		step1 = 0x45;
302		step2 = 0x06;
303		break;
304
305	case 5400:
306		step1 = 0x5c;
307		step2 = 0x08;
308		break;
309
310	default:
311		/* Other link rates aren't supported */
312		return -EINVAL;
313	}
314
315	writel(0x01, edp->pll + QSERDES_V4_COM_SSC_EN_CENTER);
316	writel(0x00, edp->pll + QSERDES_V4_COM_SSC_ADJ_PER1);
317	writel(0x36, edp->pll + QSERDES_V4_COM_SSC_PER1);
318	writel(0x01, edp->pll + QSERDES_V4_COM_SSC_PER2);
319	writel(step1, edp->pll + QSERDES_V4_COM_SSC_STEP_SIZE1_MODE0);
320	writel(step2, edp->pll + QSERDES_V4_COM_SSC_STEP_SIZE2_MODE0);
321
322	return 0;
323}
324
325static int qcom_edp_configure_pll(const struct qcom_edp *edp)
326{
327	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
328	u32 div_frac_start2_mode0;
329	u32 div_frac_start3_mode0;
330	u32 dec_start_mode0;
331	u32 lock_cmp1_mode0;
332	u32 lock_cmp2_mode0;
333	u32 hsclk_sel;
334
335	switch (dp_opts->link_rate) {
336	case 1620:
337		hsclk_sel = 0x5;
338		dec_start_mode0 = 0x69;
339		div_frac_start2_mode0 = 0x80;
340		div_frac_start3_mode0 = 0x07;
341		lock_cmp1_mode0 = 0x6f;
342		lock_cmp2_mode0 = 0x08;
343		break;
344
345	case 2700:
346		hsclk_sel = 0x3;
347		dec_start_mode0 = 0x69;
348		div_frac_start2_mode0 = 0x80;
349		div_frac_start3_mode0 = 0x07;
350		lock_cmp1_mode0 = 0x0f;
351		lock_cmp2_mode0 = 0x0e;
352		break;
353
354	case 5400:
355		hsclk_sel = 0x1;
356		dec_start_mode0 = 0x8c;
357		div_frac_start2_mode0 = 0x00;
358		div_frac_start3_mode0 = 0x0a;
359		lock_cmp1_mode0 = 0x1f;
360		lock_cmp2_mode0 = 0x1c;
361		break;
362
363	case 8100:
364		hsclk_sel = 0x0;
365		dec_start_mode0 = 0x69;
366		div_frac_start2_mode0 = 0x80;
367		div_frac_start3_mode0 = 0x07;
368		lock_cmp1_mode0 = 0x2f;
369		lock_cmp2_mode0 = 0x2a;
370		break;
371
372	default:
373		/* Other link rates aren't supported */
374		return -EINVAL;
375	}
376
377	writel(0x01, edp->pll + QSERDES_V4_COM_SVS_MODE_CLK_SEL);
378	writel(0x0b, edp->pll + QSERDES_V4_COM_SYSCLK_EN_SEL);
379	writel(0x02, edp->pll + QSERDES_V4_COM_SYS_CLK_CTRL);
380	writel(0x0c, edp->pll + QSERDES_V4_COM_CLK_ENABLE1);
381	writel(0x06, edp->pll + QSERDES_V4_COM_SYSCLK_BUF_ENABLE);
382	writel(0x30, edp->pll + QSERDES_V4_COM_CLK_SELECT);
383	writel(hsclk_sel, edp->pll + QSERDES_V4_COM_HSCLK_SEL);
384	writel(0x0f, edp->pll + QSERDES_V4_COM_PLL_IVCO);
385	writel(0x08, edp->pll + QSERDES_V4_COM_LOCK_CMP_EN);
386	writel(0x36, edp->pll + QSERDES_V4_COM_PLL_CCTRL_MODE0);
387	writel(0x16, edp->pll + QSERDES_V4_COM_PLL_RCTRL_MODE0);
388	writel(0x06, edp->pll + QSERDES_V4_COM_CP_CTRL_MODE0);
389	writel(dec_start_mode0, edp->pll + QSERDES_V4_COM_DEC_START_MODE0);
390	writel(0x00, edp->pll + QSERDES_V4_COM_DIV_FRAC_START1_MODE0);
391	writel(div_frac_start2_mode0, edp->pll + QSERDES_V4_COM_DIV_FRAC_START2_MODE0);
392	writel(div_frac_start3_mode0, edp->pll + QSERDES_V4_COM_DIV_FRAC_START3_MODE0);
393	writel(0x02, edp->pll + QSERDES_V4_COM_CMN_CONFIG);
394	writel(0x3f, edp->pll + QSERDES_V4_COM_INTEGLOOP_GAIN0_MODE0);
395	writel(0x00, edp->pll + QSERDES_V4_COM_INTEGLOOP_GAIN1_MODE0);
396	writel(0x00, edp->pll + QSERDES_V4_COM_VCO_TUNE_MAP);
397	writel(lock_cmp1_mode0, edp->pll + QSERDES_V4_COM_LOCK_CMP1_MODE0);
398	writel(lock_cmp2_mode0, edp->pll + QSERDES_V4_COM_LOCK_CMP2_MODE0);
399
400	writel(0x0a, edp->pll + QSERDES_V4_COM_BG_TIMER);
401	writel(0x14, edp->pll + QSERDES_V4_COM_CORECLK_DIV_MODE0);
402	writel(0x00, edp->pll + QSERDES_V4_COM_VCO_TUNE_CTRL);
403	writel(0x17, edp->pll + QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN);
404	writel(0x0f, edp->pll + QSERDES_V4_COM_CORE_CLK_EN);
405	writel(0xa0, edp->pll + QSERDES_V4_COM_VCO_TUNE1_MODE0);
406	writel(0x03, edp->pll + QSERDES_V4_COM_VCO_TUNE2_MODE0);
407
408	return 0;
409}
410
411static int qcom_edp_set_vco_div(const struct qcom_edp *edp, unsigned long *pixel_freq)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412{
413	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
414	u32 vco_div;
 
415
416	switch (dp_opts->link_rate) {
417	case 1620:
418		vco_div = 0x1;
419		*pixel_freq = 1620000000UL / 2;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420		break;
421
422	case 2700:
423		vco_div = 0x1;
424		*pixel_freq = 2700000000UL / 2;
 
 
 
 
 
 
425		break;
426
427	case 5400:
428		vco_div = 0x2;
429		*pixel_freq = 5400000000UL / 4;
 
 
 
 
 
 
430		break;
431
432	case 8100:
433		vco_div = 0x0;
434		*pixel_freq = 8100000000UL / 6;
 
 
 
 
 
 
435		break;
436
437	default:
438		/* Other link rates aren't supported */
439		return -EINVAL;
440	}
441
442	writel(vco_div, edp->edp + DP_PHY_VCO_DIV);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
444	return 0;
445}
446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447static int qcom_edp_phy_power_on(struct phy *phy)
448{
449	const struct qcom_edp *edp = phy_get_drvdata(phy);
450	const struct qcom_edp_cfg *cfg = edp->cfg;
451	u32 bias0_en, drvr0_en, bias1_en, drvr1_en;
452	unsigned long pixel_freq;
453	u8 ldo_config;
454	int timeout;
455	int ret;
456	u32 val;
457	u8 cfg1;
458
459	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
460	       DP_PHY_PD_CTL_LANE_0_1_PWRDN | DP_PHY_PD_CTL_LANE_2_3_PWRDN |
461	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
462	       edp->edp + DP_PHY_PD_CTL);
463	writel(0xfc, edp->edp + DP_PHY_MODE);
464
465	timeout = readl_poll_timeout(edp->pll + QSERDES_V4_COM_CMN_STATUS,
466				     val, val & BIT(7), 5, 200);
467	if (timeout)
468		return timeout;
469
470
471	ldo_config = (cfg && cfg->is_dp) ? 0x1 : 0x0;
 
472
473	writel(ldo_config, edp->tx0 + TXn_LDO_CONFIG);
474	writel(ldo_config, edp->tx1 + TXn_LDO_CONFIG);
475	writel(0x00, edp->tx0 + TXn_LANE_MODE_1);
476	writel(0x00, edp->tx1 + TXn_LANE_MODE_1);
477
478	if (edp->dp_opts.ssc) {
479		ret = qcom_edp_configure_ssc(edp);
480		if (ret)
481			return ret;
482	}
483
484	ret = qcom_edp_configure_pll(edp);
485	if (ret)
486		return ret;
487
488	/* TX Lane configuration */
489	writel(0x05, edp->edp + DP_PHY_TX0_TX1_LANE_CTL);
490	writel(0x05, edp->edp + DP_PHY_TX2_TX3_LANE_CTL);
491
492	/* TX-0 register configuration */
493	writel(0x03, edp->tx0 + TXn_TRANSCEIVER_BIAS_EN);
494	writel(0x0f, edp->tx0 + TXn_CLKBUF_ENABLE);
495	writel(0x03, edp->tx0 + TXn_RESET_TSYNC_EN);
496	writel(0x01, edp->tx0 + TXn_TRAN_DRVR_EMP_EN);
497	writel(0x04, edp->tx0 + TXn_TX_BAND);
498
499	/* TX-1 register configuration */
500	writel(0x03, edp->tx1 + TXn_TRANSCEIVER_BIAS_EN);
501	writel(0x0f, edp->tx1 + TXn_CLKBUF_ENABLE);
502	writel(0x03, edp->tx1 + TXn_RESET_TSYNC_EN);
503	writel(0x01, edp->tx1 + TXn_TRAN_DRVR_EMP_EN);
504	writel(0x04, edp->tx1 + TXn_TX_BAND);
505
506	ret = qcom_edp_set_vco_div(edp, &pixel_freq);
507	if (ret)
508		return ret;
509
510	writel(0x01, edp->edp + DP_PHY_CFG);
511	writel(0x05, edp->edp + DP_PHY_CFG);
512	writel(0x01, edp->edp + DP_PHY_CFG);
513	writel(0x09, edp->edp + DP_PHY_CFG);
514
515	writel(0x20, edp->pll + QSERDES_V4_COM_RESETSM_CNTRL);
516
517	timeout = readl_poll_timeout(edp->pll + QSERDES_V4_COM_C_READY_STATUS,
518				     val, val & BIT(0), 500, 10000);
519	if (timeout)
520		return timeout;
521
522	writel(0x19, edp->edp + DP_PHY_CFG);
523	writel(0x1f, edp->tx0 + TXn_HIGHZ_DRVR_EN);
524	writel(0x04, edp->tx0 + TXn_HIGHZ_DRVR_EN);
525	writel(0x00, edp->tx0 + TXn_TX_POL_INV);
526	writel(0x1f, edp->tx1 + TXn_HIGHZ_DRVR_EN);
527	writel(0x04, edp->tx1 + TXn_HIGHZ_DRVR_EN);
528	writel(0x00, edp->tx1 + TXn_TX_POL_INV);
529	writel(0x10, edp->tx0 + TXn_TX_DRV_LVL_OFFSET);
530	writel(0x10, edp->tx1 + TXn_TX_DRV_LVL_OFFSET);
531	writel(0x11, edp->tx0 + TXn_RES_CODE_LANE_OFFSET_TX0);
532	writel(0x11, edp->tx0 + TXn_RES_CODE_LANE_OFFSET_TX1);
533	writel(0x11, edp->tx1 + TXn_RES_CODE_LANE_OFFSET_TX0);
534	writel(0x11, edp->tx1 + TXn_RES_CODE_LANE_OFFSET_TX1);
535
536	writel(0x10, edp->tx0 + TXn_TX_EMP_POST1_LVL);
537	writel(0x10, edp->tx1 + TXn_TX_EMP_POST1_LVL);
538	writel(0x1f, edp->tx0 + TXn_TX_DRV_LVL);
539	writel(0x1f, edp->tx1 + TXn_TX_DRV_LVL);
540
541	if (edp->dp_opts.lanes == 1) {
542		bias0_en = 0x01;
543		bias1_en = 0x00;
544		drvr0_en = 0x06;
545		drvr1_en = 0x07;
546		cfg1 = 0x1;
547	} else if (edp->dp_opts.lanes == 2) {
548		bias0_en = 0x03;
549		bias1_en = 0x00;
550		drvr0_en = 0x04;
551		drvr1_en = 0x07;
552		cfg1 = 0x3;
553	} else {
554		bias0_en = 0x03;
555		bias1_en = 0x03;
556		drvr0_en = 0x04;
557		drvr1_en = 0x04;
558		cfg1 = 0xf;
559	}
560
561	writel(drvr0_en, edp->tx0 + TXn_HIGHZ_DRVR_EN);
562	writel(bias0_en, edp->tx0 + TXn_TRANSCEIVER_BIAS_EN);
563	writel(drvr1_en, edp->tx1 + TXn_HIGHZ_DRVR_EN);
564	writel(bias1_en, edp->tx1 + TXn_TRANSCEIVER_BIAS_EN);
565	writel(cfg1, edp->edp + DP_PHY_CFG_1);
566
567	writel(0x18, edp->edp + DP_PHY_CFG);
568	usleep_range(100, 1000);
569
570	writel(0x19, edp->edp + DP_PHY_CFG);
571
572	ret = readl_poll_timeout(edp->edp + DP_PHY_STATUS,
573				 val, val & BIT(1), 500, 10000);
574	if (ret)
575		return ret;
576
577	clk_set_rate(edp->dp_link_hw.clk, edp->dp_opts.link_rate * 100000);
578	clk_set_rate(edp->dp_pixel_hw.clk, pixel_freq);
579
580	return 0;
581}
582
583static int qcom_edp_phy_power_off(struct phy *phy)
584{
585	const struct qcom_edp *edp = phy_get_drvdata(phy);
586
587	writel(DP_PHY_PD_CTL_PSR_PWRDN, edp->edp + DP_PHY_PD_CTL);
588
589	return 0;
590}
591
 
 
 
 
 
 
 
 
 
 
 
 
592static int qcom_edp_phy_exit(struct phy *phy)
593{
594	struct qcom_edp *edp = phy_get_drvdata(phy);
595
596	clk_bulk_disable_unprepare(ARRAY_SIZE(edp->clks), edp->clks);
597	regulator_bulk_disable(ARRAY_SIZE(edp->supplies), edp->supplies);
598
599	return 0;
600}
601
602static const struct phy_ops qcom_edp_ops = {
603	.init		= qcom_edp_phy_init,
604	.configure	= qcom_edp_phy_configure,
605	.power_on	= qcom_edp_phy_power_on,
606	.power_off	= qcom_edp_phy_power_off,
 
607	.exit		= qcom_edp_phy_exit,
608	.owner		= THIS_MODULE,
609};
610
611/*
612 * Embedded Display Port PLL driver block diagram for branch clocks
613 *
614 *              +------------------------------+
615 *              |        EDP_VCO_CLK           |
616 *              |                              |
617 *              |    +-------------------+     |
618 *              |    |  (EDP PLL/VCO)    |     |
619 *              |    +---------+---------+     |
620 *              |              v               |
621 *              |   +----------+-----------+   |
622 *              |   | hsclk_divsel_clk_src |   |
623 *              |   +----------+-----------+   |
624 *              +------------------------------+
625 *                              |
626 *          +---------<---------v------------>----------+
627 *          |                                           |
628 * +--------v----------------+                          |
629 * |   edp_phy_pll_link_clk  |                          |
630 * |     link_clk            |                          |
631 * +--------+----------------+                          |
632 *          |                                           |
633 *          |                                           |
634 *          v                                           v
635 * Input to DISPCC block                                |
636 * for link clk, crypto clk                             |
637 * and interface clock                                  |
638 *                                                      |
639 *                                                      |
640 *      +--------<------------+-----------------+---<---+
641 *      |                     |                 |
642 * +----v---------+  +--------v-----+  +--------v------+
643 * | vco_divided  |  | vco_divided  |  | vco_divided   |
644 * |    _clk_src  |  |    _clk_src  |  |    _clk_src   |
645 * |              |  |              |  |               |
646 * |divsel_six    |  |  divsel_two  |  |  divsel_four  |
647 * +-------+------+  +-----+--------+  +--------+------+
648 *         |                 |                  |
649 *         v---->----------v-------------<------v
650 *                         |
651 *              +----------+-----------------+
652 *              |   edp_phy_pll_vco_div_clk  |
653 *              +---------+------------------+
654 *                        |
655 *                        v
656 *              Input to DISPCC block
657 *              for EDP pixel clock
658 *
659 */
660static int qcom_edp_dp_pixel_clk_determine_rate(struct clk_hw *hw,
661						struct clk_rate_request *req)
662{
663	switch (req->rate) {
664	case 1620000000UL / 2:
665	case 2700000000UL / 2:
666	/* 5.4 and 8.1 GHz are same link rate as 2.7GHz, i.e. div 4 and div 6 */
667		return 0;
668
669	default:
670		return -EINVAL;
671	}
672}
673
674static unsigned long
675qcom_edp_dp_pixel_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
676{
677	const struct qcom_edp *edp = container_of(hw, struct qcom_edp, dp_pixel_hw);
678	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
679
680	switch (dp_opts->link_rate) {
681	case 1620:
682		return 1620000000UL / 2;
683	case 2700:
684		return 2700000000UL / 2;
685	case 5400:
686		return 5400000000UL / 4;
687	case 8100:
688		return 8100000000UL / 6;
689	default:
690		return 0;
691	}
692}
693
694static const struct clk_ops qcom_edp_dp_pixel_clk_ops = {
695	.determine_rate = qcom_edp_dp_pixel_clk_determine_rate,
696	.recalc_rate = qcom_edp_dp_pixel_clk_recalc_rate,
697};
698
699static int qcom_edp_dp_link_clk_determine_rate(struct clk_hw *hw,
700					       struct clk_rate_request *req)
701{
702	switch (req->rate) {
703	case 162000000:
704	case 270000000:
705	case 540000000:
706	case 810000000:
707		return 0;
708
709	default:
710		return -EINVAL;
711	}
712}
713
714static unsigned long
715qcom_edp_dp_link_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
716{
717	const struct qcom_edp *edp = container_of(hw, struct qcom_edp, dp_link_hw);
718	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
719
720	switch (dp_opts->link_rate) {
721	case 1620:
722	case 2700:
723	case 5400:
724	case 8100:
725		return dp_opts->link_rate * 100000;
726
727	default:
728		return 0;
729	}
730}
731
732static const struct clk_ops qcom_edp_dp_link_clk_ops = {
733	.determine_rate = qcom_edp_dp_link_clk_determine_rate,
734	.recalc_rate = qcom_edp_dp_link_clk_recalc_rate,
735};
736
737static int qcom_edp_clks_register(struct qcom_edp *edp, struct device_node *np)
738{
739	struct clk_hw_onecell_data *data;
740	struct clk_init_data init = { };
741	char name[64];
742	int ret;
743
744	data = devm_kzalloc(edp->dev, struct_size(data, hws, 2), GFP_KERNEL);
745	if (!data)
746		return -ENOMEM;
747	data->num = 2;
748
749	snprintf(name, sizeof(name), "%s::link_clk", dev_name(edp->dev));
750	init.ops = &qcom_edp_dp_link_clk_ops;
751	init.name = name;
752	edp->dp_link_hw.init = &init;
753	ret = devm_clk_hw_register(edp->dev, &edp->dp_link_hw);
754	if (ret)
755		return ret;
756
757	snprintf(name, sizeof(name), "%s::vco_div_clk", dev_name(edp->dev));
758	init.ops = &qcom_edp_dp_pixel_clk_ops;
759	init.name = name;
760	edp->dp_pixel_hw.init = &init;
761	ret = devm_clk_hw_register(edp->dev, &edp->dp_pixel_hw);
762	if (ret)
763		return ret;
764
765	data->hws[0] = &edp->dp_link_hw;
766	data->hws[1] = &edp->dp_pixel_hw;
767
768	return devm_of_clk_add_hw_provider(edp->dev, of_clk_hw_onecell_get, data);
769}
770
771static int qcom_edp_phy_probe(struct platform_device *pdev)
772{
773	struct phy_provider *phy_provider;
774	struct device *dev = &pdev->dev;
775	struct qcom_edp *edp;
776	int ret;
777
778	edp = devm_kzalloc(dev, sizeof(*edp), GFP_KERNEL);
779	if (!edp)
780		return -ENOMEM;
781
782	edp->dev = dev;
783	edp->cfg = of_device_get_match_data(&pdev->dev);
 
784
785	edp->edp = devm_platform_ioremap_resource(pdev, 0);
786	if (IS_ERR(edp->edp))
787		return PTR_ERR(edp->edp);
788
789	edp->tx0 = devm_platform_ioremap_resource(pdev, 1);
790	if (IS_ERR(edp->tx0))
791		return PTR_ERR(edp->tx0);
792
793	edp->tx1 = devm_platform_ioremap_resource(pdev, 2);
794	if (IS_ERR(edp->tx1))
795		return PTR_ERR(edp->tx1);
796
797	edp->pll = devm_platform_ioremap_resource(pdev, 3);
798	if (IS_ERR(edp->pll))
799		return PTR_ERR(edp->pll);
800
801	edp->clks[0].id = "aux";
802	edp->clks[1].id = "cfg_ahb";
803	ret = devm_clk_bulk_get(dev, ARRAY_SIZE(edp->clks), edp->clks);
804	if (ret)
805		return ret;
806
807	edp->supplies[0].supply = "vdda-phy";
808	edp->supplies[1].supply = "vdda-pll";
809	ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(edp->supplies), edp->supplies);
810	if (ret)
811		return ret;
812
813	ret = regulator_set_load(edp->supplies[0].consumer, 21800); /* 1.2 V vdda-phy */
814	if (ret) {
815		dev_err(dev, "failed to set load at %s\n", edp->supplies[0].supply);
816		return ret;
817	}
818
819	ret = regulator_set_load(edp->supplies[1].consumer, 36000); /* 0.9 V vdda-pll */
820	if (ret) {
821		dev_err(dev, "failed to set load at %s\n", edp->supplies[1].supply);
822		return ret;
823	}
824
825	ret = qcom_edp_clks_register(edp, pdev->dev.of_node);
826	if (ret)
827		return ret;
828
829	edp->phy = devm_phy_create(dev, pdev->dev.of_node, &qcom_edp_ops);
830	if (IS_ERR(edp->phy)) {
831		dev_err(dev, "failed to register phy\n");
832		return PTR_ERR(edp->phy);
833	}
834
835	phy_set_drvdata(edp->phy, edp);
836
837	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
838	return PTR_ERR_OR_ZERO(phy_provider);
839}
840
841static const struct of_device_id qcom_edp_phy_match_table[] = {
842	{ .compatible = "qcom,sc7280-edp-phy" },
843	{ .compatible = "qcom,sc8180x-edp-phy" },
844	{ .compatible = "qcom,sc8280xp-dp-phy", .data = &dp_phy_cfg },
845	{ .compatible = "qcom,sc8280xp-edp-phy", .data = &edp_phy_cfg },
 
 
846	{ }
847};
848MODULE_DEVICE_TABLE(of, qcom_edp_phy_match_table);
849
850static struct platform_driver qcom_edp_phy_driver = {
851	.probe		= qcom_edp_phy_probe,
852	.driver = {
853		.name	= "qcom-edp-phy",
854		.of_match_table = qcom_edp_phy_match_table,
855	},
856};
857
858module_platform_driver(qcom_edp_phy_driver);
859
860MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@linaro.org>");
861MODULE_DESCRIPTION("Qualcomm eDP QMP PHY driver");
862MODULE_LICENSE("GPL v2");
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (c) 2017, 2020, The Linux Foundation. All rights reserved.
   4 * Copyright (c) 2021, Linaro Ltd.
   5 */
   6
   7#include <linux/clk.h>
   8#include <linux/clk-provider.h>
   9#include <linux/delay.h>
  10#include <linux/err.h>
  11#include <linux/io.h>
  12#include <linux/iopoll.h>
  13#include <linux/kernel.h>
  14#include <linux/module.h>
  15#include <linux/of.h>
  16#include <linux/phy/phy.h>
  17#include <linux/phy/phy-dp.h>
  18#include <linux/platform_device.h>
  19#include <linux/regulator/consumer.h>
  20#include <linux/reset.h>
  21#include <linux/slab.h>
  22
  23#include <dt-bindings/phy/phy.h>
  24
  25#include "phy-qcom-qmp-dp-phy.h"
  26#include "phy-qcom-qmp-qserdes-com-v4.h"
  27#include "phy-qcom-qmp-qserdes-com-v6.h"
  28
  29/* EDP_PHY registers */
  30#define DP_PHY_CFG                              0x0010
  31#define DP_PHY_CFG_1                            0x0014
  32#define DP_PHY_PD_CTL                           0x001c
  33#define DP_PHY_MODE                             0x0020
  34
  35#define DP_AUX_CFG_SIZE                         10
  36#define DP_PHY_AUX_CFG(n)                       (0x24 + (0x04 * (n)))
 
 
 
 
 
 
 
 
  37
  38#define DP_PHY_AUX_INTERRUPT_MASK		0x0058
  39
  40#define DP_PHY_VCO_DIV                          0x0074
  41#define DP_PHY_TX0_TX1_LANE_CTL                 0x007c
  42#define DP_PHY_TX2_TX3_LANE_CTL                 0x00a0
  43
  44#define DP_PHY_STATUS                           0x00e0
  45
  46/* LANE_TXn registers */
  47#define TXn_CLKBUF_ENABLE                       0x0000
  48#define TXn_TX_EMP_POST1_LVL                    0x0004
  49
  50#define TXn_TX_DRV_LVL                          0x0014
  51#define TXn_TX_DRV_LVL_OFFSET                   0x0018
  52#define TXn_RESET_TSYNC_EN                      0x001c
  53#define TXn_LDO_CONFIG                          0x0084
  54#define TXn_TX_BAND                             0x0028
  55
  56#define TXn_RES_CODE_LANE_OFFSET_TX0            0x0044
  57#define TXn_RES_CODE_LANE_OFFSET_TX1            0x0048
  58
  59#define TXn_TRANSCEIVER_BIAS_EN                 0x0054
  60#define TXn_HIGHZ_DRVR_EN                       0x0058
  61#define TXn_TX_POL_INV                          0x005c
  62#define TXn_LANE_MODE_1                         0x0064
  63
  64#define TXn_TRAN_DRVR_EMP_EN                    0x0078
  65
  66struct qcom_edp_swing_pre_emph_cfg {
 
 
 
  67	const u8 (*swing_hbr_rbr)[4][4];
  68	const u8 (*swing_hbr3_hbr2)[4][4];
  69	const u8 (*pre_emphasis_hbr_rbr)[4][4];
  70	const u8 (*pre_emphasis_hbr3_hbr2)[4][4];
  71};
  72
  73struct qcom_edp;
  74
  75struct phy_ver_ops {
  76	int (*com_power_on)(const struct qcom_edp *edp);
  77	int (*com_resetsm_cntrl)(const struct qcom_edp *edp);
  78	int (*com_bias_en_clkbuflr)(const struct qcom_edp *edp);
  79	int (*com_configure_pll)(const struct qcom_edp *edp);
  80	int (*com_configure_ssc)(const struct qcom_edp *edp);
  81};
  82
  83struct qcom_edp_phy_cfg {
  84	bool is_edp;
  85	const u8 *aux_cfg;
  86	const struct qcom_edp_swing_pre_emph_cfg *swing_pre_emph_cfg;
  87	const struct phy_ver_ops *ver_ops;
  88};
  89
  90struct qcom_edp {
  91	struct device *dev;
  92	const struct qcom_edp_phy_cfg *cfg;
  93
  94	struct phy *phy;
  95
  96	void __iomem *edp;
  97	void __iomem *tx0;
  98	void __iomem *tx1;
  99	void __iomem *pll;
 100
 101	struct clk_hw dp_link_hw;
 102	struct clk_hw dp_pixel_hw;
 103
 104	struct phy_configure_opts_dp dp_opts;
 105
 106	struct clk_bulk_data clks[2];
 107	struct regulator_bulk_data supplies[2];
 108
 109	bool is_edp;
 110};
 111
 112static const u8 dp_swing_hbr_rbr[4][4] = {
 113	{ 0x08, 0x0f, 0x16, 0x1f },
 114	{ 0x11, 0x1e, 0x1f, 0xff },
 115	{ 0x16, 0x1f, 0xff, 0xff },
 116	{ 0x1f, 0xff, 0xff, 0xff }
 117};
 118
 119static const u8 dp_pre_emp_hbr_rbr[4][4] = {
 120	{ 0x00, 0x0d, 0x14, 0x1a },
 121	{ 0x00, 0x0e, 0x15, 0xff },
 122	{ 0x00, 0x0e, 0xff, 0xff },
 123	{ 0x03, 0xff, 0xff, 0xff }
 124};
 125
 126static const u8 dp_swing_hbr2_hbr3[4][4] = {
 127	{ 0x02, 0x12, 0x16, 0x1a },
 128	{ 0x09, 0x19, 0x1f, 0xff },
 129	{ 0x10, 0x1f, 0xff, 0xff },
 130	{ 0x1f, 0xff, 0xff, 0xff }
 131};
 132
 133static const u8 dp_pre_emp_hbr2_hbr3[4][4] = {
 134	{ 0x00, 0x0c, 0x15, 0x1b },
 135	{ 0x02, 0x0e, 0x16, 0xff },
 136	{ 0x02, 0x11, 0xff, 0xff },
 137	{ 0x04, 0xff, 0xff, 0xff }
 138};
 139
 140static const struct qcom_edp_swing_pre_emph_cfg dp_phy_swing_pre_emph_cfg = {
 
 141	.swing_hbr_rbr = &dp_swing_hbr_rbr,
 142	.swing_hbr3_hbr2 = &dp_swing_hbr2_hbr3,
 143	.pre_emphasis_hbr_rbr = &dp_pre_emp_hbr_rbr,
 144	.pre_emphasis_hbr3_hbr2 = &dp_pre_emp_hbr2_hbr3,
 145};
 146
 147static const u8 edp_swing_hbr_rbr[4][4] = {
 148	{ 0x07, 0x0f, 0x16, 0x1f },
 149	{ 0x0d, 0x16, 0x1e, 0xff },
 150	{ 0x11, 0x1b, 0xff, 0xff },
 151	{ 0x16, 0xff, 0xff, 0xff }
 152};
 153
 154static const u8 edp_pre_emp_hbr_rbr[4][4] = {
 155	{ 0x05, 0x12, 0x17, 0x1d },
 156	{ 0x05, 0x11, 0x18, 0xff },
 157	{ 0x06, 0x11, 0xff, 0xff },
 158	{ 0x00, 0xff, 0xff, 0xff }
 159};
 160
 161static const u8 edp_swing_hbr2_hbr3[4][4] = {
 162	{ 0x0b, 0x11, 0x17, 0x1c },
 163	{ 0x10, 0x19, 0x1f, 0xff },
 164	{ 0x19, 0x1f, 0xff, 0xff },
 165	{ 0x1f, 0xff, 0xff, 0xff }
 166};
 167
 168static const u8 edp_pre_emp_hbr2_hbr3[4][4] = {
 169	{ 0x08, 0x11, 0x17, 0x1b },
 170	{ 0x00, 0x0c, 0x13, 0xff },
 171	{ 0x05, 0x10, 0xff, 0xff },
 172	{ 0x00, 0xff, 0xff, 0xff }
 173};
 174
 175static const struct qcom_edp_swing_pre_emph_cfg edp_phy_swing_pre_emph_cfg = {
 
 176	.swing_hbr_rbr = &edp_swing_hbr_rbr,
 177	.swing_hbr3_hbr2 = &edp_swing_hbr2_hbr3,
 178	.pre_emphasis_hbr_rbr = &edp_pre_emp_hbr_rbr,
 179	.pre_emphasis_hbr3_hbr2 = &edp_pre_emp_hbr2_hbr3,
 180};
 181
 182static const u8 edp_phy_aux_cfg_v4[10] = {
 183	0x00, 0x13, 0x24, 0x00, 0x0a, 0x26, 0x0a, 0x03, 0x37, 0x03
 184};
 185
 186static const u8 edp_pre_emp_hbr_rbr_v5[4][4] = {
 187	{ 0x05, 0x11, 0x17, 0x1d },
 188	{ 0x05, 0x11, 0x18, 0xff },
 189	{ 0x06, 0x11, 0xff, 0xff },
 190	{ 0x00, 0xff, 0xff, 0xff }
 191};
 192
 193static const u8 edp_pre_emp_hbr2_hbr3_v5[4][4] = {
 194	{ 0x0c, 0x15, 0x19, 0x1e },
 195	{ 0x0b, 0x15, 0x19, 0xff },
 196	{ 0x0e, 0x14, 0xff, 0xff },
 197	{ 0x0d, 0xff, 0xff, 0xff }
 198};
 199
 200static const struct qcom_edp_swing_pre_emph_cfg edp_phy_swing_pre_emph_cfg_v5 = {
 201	.swing_hbr_rbr = &edp_swing_hbr_rbr,
 202	.swing_hbr3_hbr2 = &edp_swing_hbr2_hbr3,
 203	.pre_emphasis_hbr_rbr = &edp_pre_emp_hbr_rbr_v5,
 204	.pre_emphasis_hbr3_hbr2 = &edp_pre_emp_hbr2_hbr3_v5,
 205};
 206
 207static const u8 edp_phy_aux_cfg_v5[10] = {
 208	0x00, 0x13, 0xa4, 0x00, 0x0a, 0x26, 0x0a, 0x03, 0x37, 0x03
 209};
 210
 211static int qcom_edp_phy_init(struct phy *phy)
 212{
 213	struct qcom_edp *edp = phy_get_drvdata(phy);
 214	u8 aux_cfg[DP_AUX_CFG_SIZE];
 215	int ret;
 
 216
 217	ret = regulator_bulk_enable(ARRAY_SIZE(edp->supplies), edp->supplies);
 218	if (ret)
 219		return ret;
 220
 221	ret = clk_bulk_prepare_enable(ARRAY_SIZE(edp->clks), edp->clks);
 222	if (ret)
 223		goto out_disable_supplies;
 224
 225	memcpy(aux_cfg, edp->cfg->aux_cfg, sizeof(aux_cfg));
 226
 227	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
 228	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
 229	       edp->edp + DP_PHY_PD_CTL);
 230
 231	ret = edp->cfg->ver_ops->com_bias_en_clkbuflr(edp);
 232	if (ret)
 233		return ret;
 234
 235	writel(DP_PHY_PD_CTL_PSR_PWRDN, edp->edp + DP_PHY_PD_CTL);
 236	msleep(20);
 237
 238	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
 239	       DP_PHY_PD_CTL_LANE_0_1_PWRDN | DP_PHY_PD_CTL_LANE_2_3_PWRDN |
 240	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
 241	       edp->edp + DP_PHY_PD_CTL);
 242
 243	/*
 244	 * TODO: Re-work the conditions around setting the cfg8 value
 245	 * when more information becomes available about why this is
 246	 * even needed.
 247	 */
 248	if (edp->cfg->swing_pre_emph_cfg && !edp->is_edp)
 249		aux_cfg[8] = 0xb7;
 250
 251	writel(0xfc, edp->edp + DP_PHY_MODE);
 252
 253	for (int i = 0; i < DP_AUX_CFG_SIZE; i++)
 254		writel(aux_cfg[i], edp->edp + DP_PHY_AUX_CFG(i));
 
 
 
 
 
 
 
 
 255
 256	writel(PHY_AUX_STOP_ERR_MASK | PHY_AUX_DEC_ERR_MASK |
 257	       PHY_AUX_SYNC_ERR_MASK | PHY_AUX_ALIGN_ERR_MASK |
 258	       PHY_AUX_REQ_ERR_MASK, edp->edp + DP_PHY_AUX_INTERRUPT_MASK);
 259
 260	msleep(20);
 261
 262	return 0;
 263
 264out_disable_supplies:
 265	regulator_bulk_disable(ARRAY_SIZE(edp->supplies), edp->supplies);
 266
 267	return ret;
 268}
 269
 270static int qcom_edp_set_voltages(struct qcom_edp *edp, const struct phy_configure_opts_dp *dp_opts)
 271{
 272	const struct qcom_edp_swing_pre_emph_cfg *cfg = edp->cfg->swing_pre_emph_cfg;
 273	unsigned int v_level = 0;
 274	unsigned int p_level = 0;
 275	u8 ldo_config;
 276	u8 swing;
 277	u8 emph;
 278	int i;
 279
 280	if (!cfg)
 281		return 0;
 282
 283	if (edp->is_edp)
 284		cfg = &edp_phy_swing_pre_emph_cfg;
 285
 286	for (i = 0; i < dp_opts->lanes; i++) {
 287		v_level = max(v_level, dp_opts->voltage[i]);
 288		p_level = max(p_level, dp_opts->pre[i]);
 289	}
 290
 291	if (dp_opts->link_rate <= 2700) {
 292		swing = (*cfg->swing_hbr_rbr)[v_level][p_level];
 293		emph = (*cfg->pre_emphasis_hbr_rbr)[v_level][p_level];
 294	} else {
 295		swing = (*cfg->swing_hbr3_hbr2)[v_level][p_level];
 296		emph = (*cfg->pre_emphasis_hbr3_hbr2)[v_level][p_level];
 297	}
 298
 299	if (swing == 0xff || emph == 0xff)
 300		return -EINVAL;
 301
 302	ldo_config = edp->is_edp ? 0x0 : 0x1;
 303
 304	writel(ldo_config, edp->tx0 + TXn_LDO_CONFIG);
 305	writel(swing, edp->tx0 + TXn_TX_DRV_LVL);
 306	writel(emph, edp->tx0 + TXn_TX_EMP_POST1_LVL);
 307
 308	writel(ldo_config, edp->tx1 + TXn_LDO_CONFIG);
 309	writel(swing, edp->tx1 + TXn_TX_DRV_LVL);
 310	writel(emph, edp->tx1 + TXn_TX_EMP_POST1_LVL);
 311
 312	return 0;
 313}
 314
 315static int qcom_edp_phy_configure(struct phy *phy, union phy_configure_opts *opts)
 316{
 317	const struct phy_configure_opts_dp *dp_opts = &opts->dp;
 318	struct qcom_edp *edp = phy_get_drvdata(phy);
 319	int ret = 0;
 320
 321	memcpy(&edp->dp_opts, dp_opts, sizeof(*dp_opts));
 322
 323	if (dp_opts->set_voltages)
 324		ret = qcom_edp_set_voltages(edp, dp_opts);
 325
 326	return ret;
 327}
 328
 329static int qcom_edp_configure_ssc(const struct qcom_edp *edp)
 330{
 331	return edp->cfg->ver_ops->com_configure_ssc(edp);
 332}
 333
 334static int qcom_edp_configure_pll(const struct qcom_edp *edp)
 335{
 336	return edp->cfg->ver_ops->com_configure_pll(edp);
 337}
 338
 339static int qcom_edp_set_vco_div(const struct qcom_edp *edp, unsigned long *pixel_freq)
 340{
 341	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 342	u32 vco_div;
 343
 344	switch (dp_opts->link_rate) {
 345	case 1620:
 346		vco_div = 0x1;
 347		*pixel_freq = 1620000000UL / 2;
 348		break;
 349
 350	case 2700:
 351		vco_div = 0x1;
 352		*pixel_freq = 2700000000UL / 2;
 353		break;
 354
 355	case 5400:
 356		vco_div = 0x2;
 357		*pixel_freq = 5400000000UL / 4;
 358		break;
 359
 360	case 8100:
 361		vco_div = 0x0;
 362		*pixel_freq = 8100000000UL / 6;
 363		break;
 364
 365	default:
 366		/* Other link rates aren't supported */
 367		return -EINVAL;
 368	}
 369
 370	writel(vco_div, edp->edp + DP_PHY_VCO_DIV);
 371
 372	return 0;
 373}
 374
 375static int qcom_edp_phy_power_on_v4(const struct qcom_edp *edp)
 376{
 377	u32 val;
 378
 379	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
 380	       DP_PHY_PD_CTL_LANE_0_1_PWRDN | DP_PHY_PD_CTL_LANE_2_3_PWRDN |
 381	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
 382	       edp->edp + DP_PHY_PD_CTL);
 383	writel(0xfc, edp->edp + DP_PHY_MODE);
 384
 385	return readl_poll_timeout(edp->pll + QSERDES_V4_COM_CMN_STATUS,
 386				     val, val & BIT(7), 5, 200);
 387}
 388
 389static int qcom_edp_phy_com_resetsm_cntrl_v4(const struct qcom_edp *edp)
 390{
 391	u32 val;
 392
 393	writel(0x20, edp->pll + QSERDES_V4_COM_RESETSM_CNTRL);
 394
 395	return readl_poll_timeout(edp->pll + QSERDES_V4_COM_C_READY_STATUS,
 396				     val, val & BIT(0), 500, 10000);
 397}
 398
 399static int qcom_edp_com_bias_en_clkbuflr_v4(const struct qcom_edp *edp)
 400{
 401	/* Turn on BIAS current for PHY/PLL */
 402	writel(0x17, edp->pll + QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN);
 403
 404	return 0;
 405}
 406
 407static int qcom_edp_com_configure_ssc_v4(const struct qcom_edp *edp)
 408{
 409	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 410	u32 step1;
 411	u32 step2;
 412
 413	switch (dp_opts->link_rate) {
 414	case 1620:
 415	case 2700:
 416	case 8100:
 417		step1 = 0x45;
 418		step2 = 0x06;
 419		break;
 420
 421	case 5400:
 422		step1 = 0x5c;
 423		step2 = 0x08;
 424		break;
 425
 426	default:
 427		/* Other link rates aren't supported */
 428		return -EINVAL;
 429	}
 430
 431	writel(0x01, edp->pll + QSERDES_V4_COM_SSC_EN_CENTER);
 432	writel(0x00, edp->pll + QSERDES_V4_COM_SSC_ADJ_PER1);
 433	writel(0x36, edp->pll + QSERDES_V4_COM_SSC_PER1);
 434	writel(0x01, edp->pll + QSERDES_V4_COM_SSC_PER2);
 435	writel(step1, edp->pll + QSERDES_V4_COM_SSC_STEP_SIZE1_MODE0);
 436	writel(step2, edp->pll + QSERDES_V4_COM_SSC_STEP_SIZE2_MODE0);
 437
 438	return 0;
 439}
 440
 441static int qcom_edp_com_configure_pll_v4(const struct qcom_edp *edp)
 442{
 443	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 444	u32 div_frac_start2_mode0;
 445	u32 div_frac_start3_mode0;
 446	u32 dec_start_mode0;
 447	u32 lock_cmp1_mode0;
 448	u32 lock_cmp2_mode0;
 449	u32 hsclk_sel;
 450
 451	switch (dp_opts->link_rate) {
 452	case 1620:
 453		hsclk_sel = 0x5;
 454		dec_start_mode0 = 0x69;
 455		div_frac_start2_mode0 = 0x80;
 456		div_frac_start3_mode0 = 0x07;
 457		lock_cmp1_mode0 = 0x6f;
 458		lock_cmp2_mode0 = 0x08;
 459		break;
 460
 461	case 2700:
 462		hsclk_sel = 0x3;
 463		dec_start_mode0 = 0x69;
 464		div_frac_start2_mode0 = 0x80;
 465		div_frac_start3_mode0 = 0x07;
 466		lock_cmp1_mode0 = 0x0f;
 467		lock_cmp2_mode0 = 0x0e;
 468		break;
 469
 470	case 5400:
 471		hsclk_sel = 0x1;
 472		dec_start_mode0 = 0x8c;
 473		div_frac_start2_mode0 = 0x00;
 474		div_frac_start3_mode0 = 0x0a;
 475		lock_cmp1_mode0 = 0x1f;
 476		lock_cmp2_mode0 = 0x1c;
 477		break;
 478
 479	case 8100:
 480		hsclk_sel = 0x0;
 481		dec_start_mode0 = 0x69;
 482		div_frac_start2_mode0 = 0x80;
 483		div_frac_start3_mode0 = 0x07;
 484		lock_cmp1_mode0 = 0x2f;
 485		lock_cmp2_mode0 = 0x2a;
 486		break;
 487
 488	default:
 489		/* Other link rates aren't supported */
 490		return -EINVAL;
 491	}
 492
 493	writel(0x01, edp->pll + QSERDES_V4_COM_SVS_MODE_CLK_SEL);
 494	writel(0x0b, edp->pll + QSERDES_V4_COM_SYSCLK_EN_SEL);
 495	writel(0x02, edp->pll + QSERDES_V4_COM_SYS_CLK_CTRL);
 496	writel(0x0c, edp->pll + QSERDES_V4_COM_CLK_ENABLE1);
 497	writel(0x06, edp->pll + QSERDES_V4_COM_SYSCLK_BUF_ENABLE);
 498	writel(0x30, edp->pll + QSERDES_V4_COM_CLK_SELECT);
 499	writel(hsclk_sel, edp->pll + QSERDES_V4_COM_HSCLK_SEL);
 500	writel(0x0f, edp->pll + QSERDES_V4_COM_PLL_IVCO);
 501	writel(0x08, edp->pll + QSERDES_V4_COM_LOCK_CMP_EN);
 502	writel(0x36, edp->pll + QSERDES_V4_COM_PLL_CCTRL_MODE0);
 503	writel(0x16, edp->pll + QSERDES_V4_COM_PLL_RCTRL_MODE0);
 504	writel(0x06, edp->pll + QSERDES_V4_COM_CP_CTRL_MODE0);
 505	writel(dec_start_mode0, edp->pll + QSERDES_V4_COM_DEC_START_MODE0);
 506	writel(0x00, edp->pll + QSERDES_V4_COM_DIV_FRAC_START1_MODE0);
 507	writel(div_frac_start2_mode0, edp->pll + QSERDES_V4_COM_DIV_FRAC_START2_MODE0);
 508	writel(div_frac_start3_mode0, edp->pll + QSERDES_V4_COM_DIV_FRAC_START3_MODE0);
 509	writel(0x02, edp->pll + QSERDES_V4_COM_CMN_CONFIG);
 510	writel(0x3f, edp->pll + QSERDES_V4_COM_INTEGLOOP_GAIN0_MODE0);
 511	writel(0x00, edp->pll + QSERDES_V4_COM_INTEGLOOP_GAIN1_MODE0);
 512	writel(0x00, edp->pll + QSERDES_V4_COM_VCO_TUNE_MAP);
 513	writel(lock_cmp1_mode0, edp->pll + QSERDES_V4_COM_LOCK_CMP1_MODE0);
 514	writel(lock_cmp2_mode0, edp->pll + QSERDES_V4_COM_LOCK_CMP2_MODE0);
 515
 516	writel(0x0a, edp->pll + QSERDES_V4_COM_BG_TIMER);
 517	writel(0x14, edp->pll + QSERDES_V4_COM_CORECLK_DIV_MODE0);
 518	writel(0x00, edp->pll + QSERDES_V4_COM_VCO_TUNE_CTRL);
 519	writel(0x17, edp->pll + QSERDES_V4_COM_BIAS_EN_CLKBUFLR_EN);
 520	writel(0x0f, edp->pll + QSERDES_V4_COM_CORE_CLK_EN);
 521	writel(0xa0, edp->pll + QSERDES_V4_COM_VCO_TUNE1_MODE0);
 522	writel(0x03, edp->pll + QSERDES_V4_COM_VCO_TUNE2_MODE0);
 523
 524	return 0;
 525}
 526
 527static const struct phy_ver_ops qcom_edp_phy_ops_v4 = {
 528	.com_power_on		= qcom_edp_phy_power_on_v4,
 529	.com_resetsm_cntrl	= qcom_edp_phy_com_resetsm_cntrl_v4,
 530	.com_bias_en_clkbuflr	= qcom_edp_com_bias_en_clkbuflr_v4,
 531	.com_configure_pll	= qcom_edp_com_configure_pll_v4,
 532	.com_configure_ssc	= qcom_edp_com_configure_ssc_v4,
 533};
 534
 535static const struct qcom_edp_phy_cfg sa8775p_dp_phy_cfg = {
 536	.is_edp = false,
 537	.aux_cfg = edp_phy_aux_cfg_v5,
 538	.swing_pre_emph_cfg = &edp_phy_swing_pre_emph_cfg_v5,
 539	.ver_ops = &qcom_edp_phy_ops_v4,
 540};
 541
 542static const struct qcom_edp_phy_cfg sc7280_dp_phy_cfg = {
 543	.aux_cfg = edp_phy_aux_cfg_v4,
 544	.ver_ops = &qcom_edp_phy_ops_v4,
 545};
 546
 547static const struct qcom_edp_phy_cfg sc8280xp_dp_phy_cfg = {
 548	.aux_cfg = edp_phy_aux_cfg_v4,
 549	.swing_pre_emph_cfg = &dp_phy_swing_pre_emph_cfg,
 550	.ver_ops = &qcom_edp_phy_ops_v4,
 551};
 552
 553static const struct qcom_edp_phy_cfg sc8280xp_edp_phy_cfg = {
 554	.is_edp = true,
 555	.aux_cfg = edp_phy_aux_cfg_v4,
 556	.swing_pre_emph_cfg = &edp_phy_swing_pre_emph_cfg,
 557	.ver_ops = &qcom_edp_phy_ops_v4,
 558};
 559
 560static int qcom_edp_phy_power_on_v6(const struct qcom_edp *edp)
 561{
 562	u32 val;
 563
 564	writel(DP_PHY_PD_CTL_PWRDN | DP_PHY_PD_CTL_AUX_PWRDN |
 565	       DP_PHY_PD_CTL_LANE_0_1_PWRDN | DP_PHY_PD_CTL_LANE_2_3_PWRDN |
 566	       DP_PHY_PD_CTL_PLL_PWRDN | DP_PHY_PD_CTL_DP_CLAMP_EN,
 567	       edp->edp + DP_PHY_PD_CTL);
 568	writel(0xfc, edp->edp + DP_PHY_MODE);
 569
 570	return readl_poll_timeout(edp->pll + QSERDES_V6_COM_CMN_STATUS,
 571				     val, val & BIT(7), 5, 200);
 572}
 573
 574static int qcom_edp_phy_com_resetsm_cntrl_v6(const struct qcom_edp *edp)
 575{
 576	u32 val;
 577
 578	writel(0x20, edp->pll + QSERDES_V6_COM_RESETSM_CNTRL);
 579
 580	return readl_poll_timeout(edp->pll + QSERDES_V6_COM_C_READY_STATUS,
 581				     val, val & BIT(0), 500, 10000);
 582}
 583
 584static int qcom_edp_com_bias_en_clkbuflr_v6(const struct qcom_edp *edp)
 585{
 586	/* Turn on BIAS current for PHY/PLL */
 587	writel(0x1f, edp->pll + QSERDES_V6_COM_PLL_BIAS_EN_CLK_BUFLR_EN);
 588
 589	return 0;
 590}
 591
 592static int qcom_edp_com_configure_ssc_v6(const struct qcom_edp *edp)
 593{
 594	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 595	u32 step1;
 596	u32 step2;
 597
 598	switch (dp_opts->link_rate) {
 599	case 1620:
 600	case 2700:
 601	case 8100:
 602		step1 = 0x92;
 603		step2 = 0x01;
 604		break;
 605
 606	case 5400:
 607		step1 = 0x18;
 608		step2 = 0x02;
 609		break;
 610
 611	default:
 612		/* Other link rates aren't supported */
 613		return -EINVAL;
 614	}
 615
 616	writel(0x01, edp->pll + QSERDES_V6_COM_SSC_EN_CENTER);
 617	writel(0x00, edp->pll + QSERDES_V6_COM_SSC_ADJ_PER1);
 618	writel(0x36, edp->pll + QSERDES_V6_COM_SSC_PER1);
 619	writel(0x01, edp->pll + QSERDES_V6_COM_SSC_PER2);
 620	writel(step1, edp->pll + QSERDES_V6_COM_SSC_STEP_SIZE1_MODE0);
 621	writel(step2, edp->pll + QSERDES_V6_COM_SSC_STEP_SIZE2_MODE0);
 622
 623	return 0;
 624}
 625
 626static int qcom_edp_com_configure_pll_v6(const struct qcom_edp *edp)
 627{
 628	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 629	u32 div_frac_start2_mode0;
 630	u32 div_frac_start3_mode0;
 631	u32 dec_start_mode0;
 632	u32 lock_cmp1_mode0;
 633	u32 lock_cmp2_mode0;
 634	u32 code1_mode0;
 635	u32 code2_mode0;
 636	u32 hsclk_sel;
 637
 638	switch (dp_opts->link_rate) {
 639	case 1620:
 640		hsclk_sel = 0x5;
 641		dec_start_mode0 = 0x34;
 642		div_frac_start2_mode0 = 0xc0;
 643		div_frac_start3_mode0 = 0x0b;
 644		lock_cmp1_mode0 = 0x37;
 645		lock_cmp2_mode0 = 0x04;
 646		code1_mode0 = 0x71;
 647		code2_mode0 = 0x0c;
 648		break;
 649
 650	case 2700:
 651		hsclk_sel = 0x3;
 652		dec_start_mode0 = 0x34;
 653		div_frac_start2_mode0 = 0xc0;
 654		div_frac_start3_mode0 = 0x0b;
 655		lock_cmp1_mode0 = 0x07;
 656		lock_cmp2_mode0 = 0x07;
 657		code1_mode0 = 0x71;
 658		code2_mode0 = 0x0c;
 659		break;
 660
 661	case 5400:
 662		hsclk_sel = 0x1;
 663		dec_start_mode0 = 0x46;
 664		div_frac_start2_mode0 = 0x00;
 665		div_frac_start3_mode0 = 0x05;
 666		lock_cmp1_mode0 = 0x0f;
 667		lock_cmp2_mode0 = 0x0e;
 668		code1_mode0 = 0x97;
 669		code2_mode0 = 0x10;
 670		break;
 671
 672	case 8100:
 673		hsclk_sel = 0x0;
 674		dec_start_mode0 = 0x34;
 675		div_frac_start2_mode0 = 0xc0;
 676		div_frac_start3_mode0 = 0x0b;
 677		lock_cmp1_mode0 = 0x17;
 678		lock_cmp2_mode0 = 0x15;
 679		code1_mode0 = 0x71;
 680		code2_mode0 = 0x0c;
 681		break;
 682
 683	default:
 684		/* Other link rates aren't supported */
 685		return -EINVAL;
 686	}
 687
 688	writel(0x01, edp->pll + QSERDES_V6_COM_SVS_MODE_CLK_SEL);
 689	writel(0x0b, edp->pll + QSERDES_V6_COM_SYSCLK_EN_SEL);
 690	writel(0x02, edp->pll + QSERDES_V6_COM_SYS_CLK_CTRL);
 691	writel(0x0c, edp->pll + QSERDES_V6_COM_CLK_ENABLE1);
 692	writel(0x06, edp->pll + QSERDES_V6_COM_SYSCLK_BUF_ENABLE);
 693	writel(0x30, edp->pll + QSERDES_V6_COM_CLK_SELECT);
 694	writel(hsclk_sel, edp->pll + QSERDES_V6_COM_HSCLK_SEL_1);
 695	writel(0x07, edp->pll + QSERDES_V6_COM_PLL_IVCO);
 696	writel(0x08, edp->pll + QSERDES_V6_COM_LOCK_CMP_EN);
 697	writel(0x36, edp->pll + QSERDES_V6_COM_PLL_CCTRL_MODE0);
 698	writel(0x16, edp->pll + QSERDES_V6_COM_PLL_RCTRL_MODE0);
 699	writel(0x06, edp->pll + QSERDES_V6_COM_CP_CTRL_MODE0);
 700	writel(dec_start_mode0, edp->pll + QSERDES_V6_COM_DEC_START_MODE0);
 701	writel(0x00, edp->pll + QSERDES_V6_COM_DIV_FRAC_START1_MODE0);
 702	writel(div_frac_start2_mode0, edp->pll + QSERDES_V6_COM_DIV_FRAC_START2_MODE0);
 703	writel(div_frac_start3_mode0, edp->pll + QSERDES_V6_COM_DIV_FRAC_START3_MODE0);
 704	writel(0x12, edp->pll + QSERDES_V6_COM_CMN_CONFIG_1);
 705	writel(0x3f, edp->pll + QSERDES_V6_COM_INTEGLOOP_GAIN0_MODE0);
 706	writel(0x00, edp->pll + QSERDES_V6_COM_INTEGLOOP_GAIN1_MODE0);
 707	writel(0x00, edp->pll + QSERDES_V6_COM_VCO_TUNE_MAP);
 708	writel(lock_cmp1_mode0, edp->pll + QSERDES_V6_COM_LOCK_CMP1_MODE0);
 709	writel(lock_cmp2_mode0, edp->pll + QSERDES_V6_COM_LOCK_CMP2_MODE0);
 710
 711	writel(0x0a, edp->pll + QSERDES_V6_COM_BG_TIMER);
 712	writel(0x14, edp->pll + QSERDES_V6_COM_PLL_CORE_CLK_DIV_MODE0);
 713	writel(0x00, edp->pll + QSERDES_V6_COM_VCO_TUNE_CTRL);
 714	writel(0x1f, edp->pll + QSERDES_V6_COM_PLL_BIAS_EN_CLK_BUFLR_EN);
 715	writel(0x0f, edp->pll + QSERDES_V6_COM_CORE_CLK_EN);
 716	writel(0xa0, edp->pll + QSERDES_V6_COM_VCO_TUNE1_MODE0);
 717	writel(0x03, edp->pll + QSERDES_V6_COM_VCO_TUNE2_MODE0);
 718
 719	writel(code1_mode0, edp->pll + QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE1_MODE0);
 720	writel(code2_mode0, edp->pll + QSERDES_V6_COM_BIN_VCOCAL_CMP_CODE2_MODE0);
 721
 722	return 0;
 723}
 724
 725static const struct phy_ver_ops qcom_edp_phy_ops_v6 = {
 726	.com_power_on		= qcom_edp_phy_power_on_v6,
 727	.com_resetsm_cntrl	= qcom_edp_phy_com_resetsm_cntrl_v6,
 728	.com_bias_en_clkbuflr	= qcom_edp_com_bias_en_clkbuflr_v6,
 729	.com_configure_pll	= qcom_edp_com_configure_pll_v6,
 730	.com_configure_ssc	= qcom_edp_com_configure_ssc_v6,
 731};
 732
 733static struct qcom_edp_phy_cfg x1e80100_phy_cfg = {
 734	.aux_cfg = edp_phy_aux_cfg_v4,
 735	.swing_pre_emph_cfg = &dp_phy_swing_pre_emph_cfg,
 736	.ver_ops = &qcom_edp_phy_ops_v6,
 737};
 738
 739static int qcom_edp_phy_power_on(struct phy *phy)
 740{
 741	const struct qcom_edp *edp = phy_get_drvdata(phy);
 
 742	u32 bias0_en, drvr0_en, bias1_en, drvr1_en;
 743	unsigned long pixel_freq;
 744	u8 ldo_config = 0x0;
 
 745	int ret;
 746	u32 val;
 747	u8 cfg1;
 748
 749	ret = edp->cfg->ver_ops->com_power_on(edp);
 750	if (ret)
 751		return ret;
 
 
 
 
 
 
 
 
 752
 753	if (edp->cfg->swing_pre_emph_cfg && !edp->is_edp)
 754		ldo_config = 0x1;
 755
 756	writel(ldo_config, edp->tx0 + TXn_LDO_CONFIG);
 757	writel(ldo_config, edp->tx1 + TXn_LDO_CONFIG);
 758	writel(0x00, edp->tx0 + TXn_LANE_MODE_1);
 759	writel(0x00, edp->tx1 + TXn_LANE_MODE_1);
 760
 761	if (edp->dp_opts.ssc) {
 762		ret = qcom_edp_configure_ssc(edp);
 763		if (ret)
 764			return ret;
 765	}
 766
 767	ret = qcom_edp_configure_pll(edp);
 768	if (ret)
 769		return ret;
 770
 771	/* TX Lane configuration */
 772	writel(0x05, edp->edp + DP_PHY_TX0_TX1_LANE_CTL);
 773	writel(0x05, edp->edp + DP_PHY_TX2_TX3_LANE_CTL);
 774
 775	/* TX-0 register configuration */
 776	writel(0x03, edp->tx0 + TXn_TRANSCEIVER_BIAS_EN);
 777	writel(0x0f, edp->tx0 + TXn_CLKBUF_ENABLE);
 778	writel(0x03, edp->tx0 + TXn_RESET_TSYNC_EN);
 779	writel(0x01, edp->tx0 + TXn_TRAN_DRVR_EMP_EN);
 780	writel(0x04, edp->tx0 + TXn_TX_BAND);
 781
 782	/* TX-1 register configuration */
 783	writel(0x03, edp->tx1 + TXn_TRANSCEIVER_BIAS_EN);
 784	writel(0x0f, edp->tx1 + TXn_CLKBUF_ENABLE);
 785	writel(0x03, edp->tx1 + TXn_RESET_TSYNC_EN);
 786	writel(0x01, edp->tx1 + TXn_TRAN_DRVR_EMP_EN);
 787	writel(0x04, edp->tx1 + TXn_TX_BAND);
 788
 789	ret = qcom_edp_set_vco_div(edp, &pixel_freq);
 790	if (ret)
 791		return ret;
 792
 793	writel(0x01, edp->edp + DP_PHY_CFG);
 794	writel(0x05, edp->edp + DP_PHY_CFG);
 795	writel(0x01, edp->edp + DP_PHY_CFG);
 796	writel(0x09, edp->edp + DP_PHY_CFG);
 797
 798	ret = edp->cfg->ver_ops->com_resetsm_cntrl(edp);
 799	if (ret)
 800		return ret;
 
 
 
 801
 802	writel(0x19, edp->edp + DP_PHY_CFG);
 803	writel(0x1f, edp->tx0 + TXn_HIGHZ_DRVR_EN);
 804	writel(0x04, edp->tx0 + TXn_HIGHZ_DRVR_EN);
 805	writel(0x00, edp->tx0 + TXn_TX_POL_INV);
 806	writel(0x1f, edp->tx1 + TXn_HIGHZ_DRVR_EN);
 807	writel(0x04, edp->tx1 + TXn_HIGHZ_DRVR_EN);
 808	writel(0x00, edp->tx1 + TXn_TX_POL_INV);
 809	writel(0x10, edp->tx0 + TXn_TX_DRV_LVL_OFFSET);
 810	writel(0x10, edp->tx1 + TXn_TX_DRV_LVL_OFFSET);
 811	writel(0x11, edp->tx0 + TXn_RES_CODE_LANE_OFFSET_TX0);
 812	writel(0x11, edp->tx0 + TXn_RES_CODE_LANE_OFFSET_TX1);
 813	writel(0x11, edp->tx1 + TXn_RES_CODE_LANE_OFFSET_TX0);
 814	writel(0x11, edp->tx1 + TXn_RES_CODE_LANE_OFFSET_TX1);
 815
 816	writel(0x10, edp->tx0 + TXn_TX_EMP_POST1_LVL);
 817	writel(0x10, edp->tx1 + TXn_TX_EMP_POST1_LVL);
 818	writel(0x1f, edp->tx0 + TXn_TX_DRV_LVL);
 819	writel(0x1f, edp->tx1 + TXn_TX_DRV_LVL);
 820
 821	if (edp->dp_opts.lanes == 1) {
 822		bias0_en = 0x01;
 823		bias1_en = 0x00;
 824		drvr0_en = 0x06;
 825		drvr1_en = 0x07;
 826		cfg1 = 0x1;
 827	} else if (edp->dp_opts.lanes == 2) {
 828		bias0_en = 0x03;
 829		bias1_en = 0x00;
 830		drvr0_en = 0x04;
 831		drvr1_en = 0x07;
 832		cfg1 = 0x3;
 833	} else {
 834		bias0_en = 0x03;
 835		bias1_en = 0x03;
 836		drvr0_en = 0x04;
 837		drvr1_en = 0x04;
 838		cfg1 = 0xf;
 839	}
 840
 841	writel(drvr0_en, edp->tx0 + TXn_HIGHZ_DRVR_EN);
 842	writel(bias0_en, edp->tx0 + TXn_TRANSCEIVER_BIAS_EN);
 843	writel(drvr1_en, edp->tx1 + TXn_HIGHZ_DRVR_EN);
 844	writel(bias1_en, edp->tx1 + TXn_TRANSCEIVER_BIAS_EN);
 845	writel(cfg1, edp->edp + DP_PHY_CFG_1);
 846
 847	writel(0x18, edp->edp + DP_PHY_CFG);
 848	usleep_range(100, 1000);
 849
 850	writel(0x19, edp->edp + DP_PHY_CFG);
 851
 852	ret = readl_poll_timeout(edp->edp + DP_PHY_STATUS,
 853				 val, val & BIT(1), 500, 10000);
 854	if (ret)
 855		return ret;
 856
 857	clk_set_rate(edp->dp_link_hw.clk, edp->dp_opts.link_rate * 100000);
 858	clk_set_rate(edp->dp_pixel_hw.clk, pixel_freq);
 859
 860	return 0;
 861}
 862
 863static int qcom_edp_phy_power_off(struct phy *phy)
 864{
 865	const struct qcom_edp *edp = phy_get_drvdata(phy);
 866
 867	writel(DP_PHY_PD_CTL_PSR_PWRDN, edp->edp + DP_PHY_PD_CTL);
 868
 869	return 0;
 870}
 871
 872static int qcom_edp_phy_set_mode(struct phy *phy, enum phy_mode mode, int submode)
 873{
 874	struct qcom_edp *edp = phy_get_drvdata(phy);
 875
 876	if (mode != PHY_MODE_DP)
 877		return -EINVAL;
 878
 879	edp->is_edp = submode == PHY_SUBMODE_EDP;
 880
 881	return 0;
 882}
 883
 884static int qcom_edp_phy_exit(struct phy *phy)
 885{
 886	struct qcom_edp *edp = phy_get_drvdata(phy);
 887
 888	clk_bulk_disable_unprepare(ARRAY_SIZE(edp->clks), edp->clks);
 889	regulator_bulk_disable(ARRAY_SIZE(edp->supplies), edp->supplies);
 890
 891	return 0;
 892}
 893
 894static const struct phy_ops qcom_edp_ops = {
 895	.init		= qcom_edp_phy_init,
 896	.configure	= qcom_edp_phy_configure,
 897	.power_on	= qcom_edp_phy_power_on,
 898	.power_off	= qcom_edp_phy_power_off,
 899	.set_mode	= qcom_edp_phy_set_mode,
 900	.exit		= qcom_edp_phy_exit,
 901	.owner		= THIS_MODULE,
 902};
 903
 904/*
 905 * Embedded Display Port PLL driver block diagram for branch clocks
 906 *
 907 *              +------------------------------+
 908 *              |        EDP_VCO_CLK           |
 909 *              |                              |
 910 *              |    +-------------------+     |
 911 *              |    |  (EDP PLL/VCO)    |     |
 912 *              |    +---------+---------+     |
 913 *              |              v               |
 914 *              |   +----------+-----------+   |
 915 *              |   | hsclk_divsel_clk_src |   |
 916 *              |   +----------+-----------+   |
 917 *              +------------------------------+
 918 *                              |
 919 *          +---------<---------v------------>----------+
 920 *          |                                           |
 921 * +--------v----------------+                          |
 922 * |   edp_phy_pll_link_clk  |                          |
 923 * |     link_clk            |                          |
 924 * +--------+----------------+                          |
 925 *          |                                           |
 926 *          |                                           |
 927 *          v                                           v
 928 * Input to DISPCC block                                |
 929 * for link clk, crypto clk                             |
 930 * and interface clock                                  |
 931 *                                                      |
 932 *                                                      |
 933 *      +--------<------------+-----------------+---<---+
 934 *      |                     |                 |
 935 * +----v---------+  +--------v-----+  +--------v------+
 936 * | vco_divided  |  | vco_divided  |  | vco_divided   |
 937 * |    _clk_src  |  |    _clk_src  |  |    _clk_src   |
 938 * |              |  |              |  |               |
 939 * |divsel_six    |  |  divsel_two  |  |  divsel_four  |
 940 * +-------+------+  +-----+--------+  +--------+------+
 941 *         |                 |                  |
 942 *         v---->----------v-------------<------v
 943 *                         |
 944 *              +----------+-----------------+
 945 *              |   edp_phy_pll_vco_div_clk  |
 946 *              +---------+------------------+
 947 *                        |
 948 *                        v
 949 *              Input to DISPCC block
 950 *              for EDP pixel clock
 951 *
 952 */
 953static int qcom_edp_dp_pixel_clk_determine_rate(struct clk_hw *hw,
 954						struct clk_rate_request *req)
 955{
 956	switch (req->rate) {
 957	case 1620000000UL / 2:
 958	case 2700000000UL / 2:
 959	/* 5.4 and 8.1 GHz are same link rate as 2.7GHz, i.e. div 4 and div 6 */
 960		return 0;
 961
 962	default:
 963		return -EINVAL;
 964	}
 965}
 966
 967static unsigned long
 968qcom_edp_dp_pixel_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
 969{
 970	const struct qcom_edp *edp = container_of(hw, struct qcom_edp, dp_pixel_hw);
 971	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
 972
 973	switch (dp_opts->link_rate) {
 974	case 1620:
 975		return 1620000000UL / 2;
 976	case 2700:
 977		return 2700000000UL / 2;
 978	case 5400:
 979		return 5400000000UL / 4;
 980	case 8100:
 981		return 8100000000UL / 6;
 982	default:
 983		return 0;
 984	}
 985}
 986
 987static const struct clk_ops qcom_edp_dp_pixel_clk_ops = {
 988	.determine_rate = qcom_edp_dp_pixel_clk_determine_rate,
 989	.recalc_rate = qcom_edp_dp_pixel_clk_recalc_rate,
 990};
 991
 992static int qcom_edp_dp_link_clk_determine_rate(struct clk_hw *hw,
 993					       struct clk_rate_request *req)
 994{
 995	switch (req->rate) {
 996	case 162000000:
 997	case 270000000:
 998	case 540000000:
 999	case 810000000:
1000		return 0;
1001
1002	default:
1003		return -EINVAL;
1004	}
1005}
1006
1007static unsigned long
1008qcom_edp_dp_link_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
1009{
1010	const struct qcom_edp *edp = container_of(hw, struct qcom_edp, dp_link_hw);
1011	const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts;
1012
1013	switch (dp_opts->link_rate) {
1014	case 1620:
1015	case 2700:
1016	case 5400:
1017	case 8100:
1018		return dp_opts->link_rate * 100000;
1019
1020	default:
1021		return 0;
1022	}
1023}
1024
1025static const struct clk_ops qcom_edp_dp_link_clk_ops = {
1026	.determine_rate = qcom_edp_dp_link_clk_determine_rate,
1027	.recalc_rate = qcom_edp_dp_link_clk_recalc_rate,
1028};
1029
1030static int qcom_edp_clks_register(struct qcom_edp *edp, struct device_node *np)
1031{
1032	struct clk_hw_onecell_data *data;
1033	struct clk_init_data init = { };
1034	char name[64];
1035	int ret;
1036
1037	data = devm_kzalloc(edp->dev, struct_size(data, hws, 2), GFP_KERNEL);
1038	if (!data)
1039		return -ENOMEM;
1040	data->num = 2;
1041
1042	snprintf(name, sizeof(name), "%s::link_clk", dev_name(edp->dev));
1043	init.ops = &qcom_edp_dp_link_clk_ops;
1044	init.name = name;
1045	edp->dp_link_hw.init = &init;
1046	ret = devm_clk_hw_register(edp->dev, &edp->dp_link_hw);
1047	if (ret)
1048		return ret;
1049
1050	snprintf(name, sizeof(name), "%s::vco_div_clk", dev_name(edp->dev));
1051	init.ops = &qcom_edp_dp_pixel_clk_ops;
1052	init.name = name;
1053	edp->dp_pixel_hw.init = &init;
1054	ret = devm_clk_hw_register(edp->dev, &edp->dp_pixel_hw);
1055	if (ret)
1056		return ret;
1057
1058	data->hws[0] = &edp->dp_link_hw;
1059	data->hws[1] = &edp->dp_pixel_hw;
1060
1061	return devm_of_clk_add_hw_provider(edp->dev, of_clk_hw_onecell_get, data);
1062}
1063
1064static int qcom_edp_phy_probe(struct platform_device *pdev)
1065{
1066	struct phy_provider *phy_provider;
1067	struct device *dev = &pdev->dev;
1068	struct qcom_edp *edp;
1069	int ret;
1070
1071	edp = devm_kzalloc(dev, sizeof(*edp), GFP_KERNEL);
1072	if (!edp)
1073		return -ENOMEM;
1074
1075	edp->dev = dev;
1076	edp->cfg = of_device_get_match_data(&pdev->dev);
1077	edp->is_edp = edp->cfg->is_edp;
1078
1079	edp->edp = devm_platform_ioremap_resource(pdev, 0);
1080	if (IS_ERR(edp->edp))
1081		return PTR_ERR(edp->edp);
1082
1083	edp->tx0 = devm_platform_ioremap_resource(pdev, 1);
1084	if (IS_ERR(edp->tx0))
1085		return PTR_ERR(edp->tx0);
1086
1087	edp->tx1 = devm_platform_ioremap_resource(pdev, 2);
1088	if (IS_ERR(edp->tx1))
1089		return PTR_ERR(edp->tx1);
1090
1091	edp->pll = devm_platform_ioremap_resource(pdev, 3);
1092	if (IS_ERR(edp->pll))
1093		return PTR_ERR(edp->pll);
1094
1095	edp->clks[0].id = "aux";
1096	edp->clks[1].id = "cfg_ahb";
1097	ret = devm_clk_bulk_get(dev, ARRAY_SIZE(edp->clks), edp->clks);
1098	if (ret)
1099		return ret;
1100
1101	edp->supplies[0].supply = "vdda-phy";
1102	edp->supplies[1].supply = "vdda-pll";
1103	ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(edp->supplies), edp->supplies);
1104	if (ret)
1105		return ret;
1106
1107	ret = regulator_set_load(edp->supplies[0].consumer, 21800); /* 1.2 V vdda-phy */
1108	if (ret) {
1109		dev_err(dev, "failed to set load at %s\n", edp->supplies[0].supply);
1110		return ret;
1111	}
1112
1113	ret = regulator_set_load(edp->supplies[1].consumer, 36000); /* 0.9 V vdda-pll */
1114	if (ret) {
1115		dev_err(dev, "failed to set load at %s\n", edp->supplies[1].supply);
1116		return ret;
1117	}
1118
1119	ret = qcom_edp_clks_register(edp, pdev->dev.of_node);
1120	if (ret)
1121		return ret;
1122
1123	edp->phy = devm_phy_create(dev, pdev->dev.of_node, &qcom_edp_ops);
1124	if (IS_ERR(edp->phy)) {
1125		dev_err(dev, "failed to register phy\n");
1126		return PTR_ERR(edp->phy);
1127	}
1128
1129	phy_set_drvdata(edp->phy, edp);
1130
1131	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
1132	return PTR_ERR_OR_ZERO(phy_provider);
1133}
1134
1135static const struct of_device_id qcom_edp_phy_match_table[] = {
1136	{ .compatible = "qcom,sa8775p-edp-phy", .data = &sa8775p_dp_phy_cfg, },
1137	{ .compatible = "qcom,sc7280-edp-phy", .data = &sc7280_dp_phy_cfg, },
1138	{ .compatible = "qcom,sc8180x-edp-phy", .data = &sc7280_dp_phy_cfg, },
1139	{ .compatible = "qcom,sc8280xp-dp-phy", .data = &sc8280xp_dp_phy_cfg, },
1140	{ .compatible = "qcom,sc8280xp-edp-phy", .data = &sc8280xp_edp_phy_cfg, },
1141	{ .compatible = "qcom,x1e80100-dp-phy", .data = &x1e80100_phy_cfg, },
1142	{ }
1143};
1144MODULE_DEVICE_TABLE(of, qcom_edp_phy_match_table);
1145
1146static struct platform_driver qcom_edp_phy_driver = {
1147	.probe		= qcom_edp_phy_probe,
1148	.driver = {
1149		.name	= "qcom-edp-phy",
1150		.of_match_table = qcom_edp_phy_match_table,
1151	},
1152};
1153
1154module_platform_driver(qcom_edp_phy_driver);
1155
1156MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@linaro.org>");
1157MODULE_DESCRIPTION("Qualcomm eDP QMP PHY driver");
1158MODULE_LICENSE("GPL v2");