Loading...
1/*
2 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/platform_device.h>
15
16#include "dsi_phy.h"
17
18#define S_DIV_ROUND_UP(n, d) \
19 (((n) >= 0) ? (((n) + (d) - 1) / (d)) : (((n) - (d) + 1) / (d)))
20
21static inline s32 linear_inter(s32 tmax, s32 tmin, s32 percent,
22 s32 min_result, bool even)
23{
24 s32 v;
25
26 v = (tmax - tmin) * percent;
27 v = S_DIV_ROUND_UP(v, 100) + tmin;
28 if (even && (v & 0x1))
29 return max_t(s32, min_result, v - 1);
30 else
31 return max_t(s32, min_result, v);
32}
33
34static void dsi_dphy_timing_calc_clk_zero(struct msm_dsi_dphy_timing *timing,
35 s32 ui, s32 coeff, s32 pcnt)
36{
37 s32 tmax, tmin, clk_z;
38 s32 temp;
39
40 /* reset */
41 temp = 300 * coeff - ((timing->clk_prepare >> 1) + 1) * 2 * ui;
42 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
43 if (tmin > 255) {
44 tmax = 511;
45 clk_z = linear_inter(2 * tmin, tmin, pcnt, 0, true);
46 } else {
47 tmax = 255;
48 clk_z = linear_inter(tmax, tmin, pcnt, 0, true);
49 }
50
51 /* adjust */
52 temp = (timing->hs_rqst + timing->clk_prepare + clk_z) & 0x7;
53 timing->clk_zero = clk_z + 8 - temp;
54}
55
56int msm_dsi_dphy_timing_calc(struct msm_dsi_dphy_timing *timing,
57 const unsigned long bit_rate, const unsigned long esc_rate)
58{
59 s32 ui, lpx;
60 s32 tmax, tmin;
61 s32 pcnt0 = 10;
62 s32 pcnt1 = (bit_rate > 1200000000) ? 15 : 10;
63 s32 pcnt2 = 10;
64 s32 pcnt3 = (bit_rate > 180000000) ? 10 : 40;
65 s32 coeff = 1000; /* Precision, should avoid overflow */
66 s32 temp;
67
68 if (!bit_rate || !esc_rate)
69 return -EINVAL;
70
71 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
72 lpx = mult_frac(NSEC_PER_MSEC, coeff, esc_rate / 1000);
73
74 tmax = S_DIV_ROUND_UP(95 * coeff, ui) - 2;
75 tmin = S_DIV_ROUND_UP(38 * coeff, ui) - 2;
76 timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, true);
77
78 temp = lpx / ui;
79 if (temp & 0x1)
80 timing->hs_rqst = temp;
81 else
82 timing->hs_rqst = max_t(s32, 0, temp - 2);
83
84 /* Calculate clk_zero after clk_prepare and hs_rqst */
85 dsi_dphy_timing_calc_clk_zero(timing, ui, coeff, pcnt2);
86
87 temp = 105 * coeff + 12 * ui - 20 * coeff;
88 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
89 tmin = S_DIV_ROUND_UP(60 * coeff, ui) - 2;
90 timing->clk_trail = linear_inter(tmax, tmin, pcnt3, 0, true);
91
92 temp = 85 * coeff + 6 * ui;
93 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
94 temp = 40 * coeff + 4 * ui;
95 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
96 timing->hs_prepare = linear_inter(tmax, tmin, pcnt1, 0, true);
97
98 tmax = 255;
99 temp = ((timing->hs_prepare >> 1) + 1) * 2 * ui + 2 * ui;
100 temp = 145 * coeff + 10 * ui - temp;
101 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
102 timing->hs_zero = linear_inter(tmax, tmin, pcnt2, 24, true);
103
104 temp = 105 * coeff + 12 * ui - 20 * coeff;
105 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
106 temp = 60 * coeff + 4 * ui;
107 tmin = DIV_ROUND_UP(temp, ui) - 2;
108 timing->hs_trail = linear_inter(tmax, tmin, pcnt3, 0, true);
109
110 tmax = 255;
111 tmin = S_DIV_ROUND_UP(100 * coeff, ui) - 2;
112 timing->hs_exit = linear_inter(tmax, tmin, pcnt2, 0, true);
113
114 tmax = 63;
115 temp = ((timing->hs_exit >> 1) + 1) * 2 * ui;
116 temp = 60 * coeff + 52 * ui - 24 * ui - temp;
117 tmin = S_DIV_ROUND_UP(temp, 8 * ui) - 1;
118 timing->clk_post = linear_inter(tmax, tmin, pcnt2, 0, false);
119
120 tmax = 63;
121 temp = ((timing->clk_prepare >> 1) + 1) * 2 * ui;
122 temp += ((timing->clk_zero >> 1) + 1) * 2 * ui;
123 temp += 8 * ui + lpx;
124 tmin = S_DIV_ROUND_UP(temp, 8 * ui) - 1;
125 if (tmin > tmax) {
126 temp = linear_inter(2 * tmax, tmin, pcnt2, 0, false);
127 timing->clk_pre = temp >> 1;
128 } else {
129 timing->clk_pre = linear_inter(tmax, tmin, pcnt2, 0, false);
130 }
131
132 timing->ta_go = 3;
133 timing->ta_sure = 0;
134 timing->ta_get = 4;
135
136 DBG("PHY timings: %d, %d, %d, %d, %d, %d, %d, %d, %d, %d",
137 timing->clk_pre, timing->clk_post, timing->clk_zero,
138 timing->clk_trail, timing->clk_prepare, timing->hs_exit,
139 timing->hs_zero, timing->hs_prepare, timing->hs_trail,
140 timing->hs_rqst);
141
142 return 0;
143}
144
145void msm_dsi_phy_set_src_pll(struct msm_dsi_phy *phy, int pll_id, u32 reg,
146 u32 bit_mask)
147{
148 int phy_id = phy->id;
149 u32 val;
150
151 if ((phy_id >= DSI_MAX) || (pll_id >= DSI_MAX))
152 return;
153
154 val = dsi_phy_read(phy->base + reg);
155
156 if (phy->cfg->src_pll_truthtable[phy_id][pll_id])
157 dsi_phy_write(phy->base + reg, val | bit_mask);
158 else
159 dsi_phy_write(phy->base + reg, val & (~bit_mask));
160}
161
162static int dsi_phy_regulator_init(struct msm_dsi_phy *phy)
163{
164 struct regulator_bulk_data *s = phy->supplies;
165 const struct dsi_reg_entry *regs = phy->cfg->reg_cfg.regs;
166 struct device *dev = &phy->pdev->dev;
167 int num = phy->cfg->reg_cfg.num;
168 int i, ret;
169
170 for (i = 0; i < num; i++)
171 s[i].supply = regs[i].name;
172
173 ret = devm_regulator_bulk_get(dev, num, s);
174 if (ret < 0) {
175 dev_err(dev, "%s: failed to init regulator, ret=%d\n",
176 __func__, ret);
177 return ret;
178 }
179
180 for (i = 0; i < num; i++) {
181 if (regulator_can_change_voltage(s[i].consumer)) {
182 ret = regulator_set_voltage(s[i].consumer,
183 regs[i].min_voltage, regs[i].max_voltage);
184 if (ret < 0) {
185 dev_err(dev,
186 "regulator %d set voltage failed, %d\n",
187 i, ret);
188 return ret;
189 }
190 }
191 }
192
193 return 0;
194}
195
196static void dsi_phy_regulator_disable(struct msm_dsi_phy *phy)
197{
198 struct regulator_bulk_data *s = phy->supplies;
199 const struct dsi_reg_entry *regs = phy->cfg->reg_cfg.regs;
200 int num = phy->cfg->reg_cfg.num;
201 int i;
202
203 DBG("");
204 for (i = num - 1; i >= 0; i--)
205 if (regs[i].disable_load >= 0)
206 regulator_set_load(s[i].consumer, regs[i].disable_load);
207
208 regulator_bulk_disable(num, s);
209}
210
211static int dsi_phy_regulator_enable(struct msm_dsi_phy *phy)
212{
213 struct regulator_bulk_data *s = phy->supplies;
214 const struct dsi_reg_entry *regs = phy->cfg->reg_cfg.regs;
215 struct device *dev = &phy->pdev->dev;
216 int num = phy->cfg->reg_cfg.num;
217 int ret, i;
218
219 DBG("");
220 for (i = 0; i < num; i++) {
221 if (regs[i].enable_load >= 0) {
222 ret = regulator_set_load(s[i].consumer,
223 regs[i].enable_load);
224 if (ret < 0) {
225 dev_err(dev,
226 "regulator %d set op mode failed, %d\n",
227 i, ret);
228 goto fail;
229 }
230 }
231 }
232
233 ret = regulator_bulk_enable(num, s);
234 if (ret < 0) {
235 dev_err(dev, "regulator enable failed, %d\n", ret);
236 goto fail;
237 }
238
239 return 0;
240
241fail:
242 for (i--; i >= 0; i--)
243 regulator_set_load(s[i].consumer, regs[i].disable_load);
244 return ret;
245}
246
247static int dsi_phy_enable_resource(struct msm_dsi_phy *phy)
248{
249 struct device *dev = &phy->pdev->dev;
250 int ret;
251
252 pm_runtime_get_sync(dev);
253
254 ret = clk_prepare_enable(phy->ahb_clk);
255 if (ret) {
256 dev_err(dev, "%s: can't enable ahb clk, %d\n", __func__, ret);
257 pm_runtime_put_sync(dev);
258 }
259
260 return ret;
261}
262
263static void dsi_phy_disable_resource(struct msm_dsi_phy *phy)
264{
265 clk_disable_unprepare(phy->ahb_clk);
266 pm_runtime_put_sync(&phy->pdev->dev);
267}
268
269static const struct of_device_id dsi_phy_dt_match[] = {
270#ifdef CONFIG_DRM_MSM_DSI_28NM_PHY
271 { .compatible = "qcom,dsi-phy-28nm-hpm",
272 .data = &dsi_phy_28nm_hpm_cfgs },
273 { .compatible = "qcom,dsi-phy-28nm-lp",
274 .data = &dsi_phy_28nm_lp_cfgs },
275#endif
276#ifdef CONFIG_DRM_MSM_DSI_20NM_PHY
277 { .compatible = "qcom,dsi-phy-20nm",
278 .data = &dsi_phy_20nm_cfgs },
279#endif
280#ifdef CONFIG_DRM_MSM_DSI_28NM_8960_PHY
281 { .compatible = "qcom,dsi-phy-28nm-8960",
282 .data = &dsi_phy_28nm_8960_cfgs },
283#endif
284 {}
285};
286
287static int dsi_phy_driver_probe(struct platform_device *pdev)
288{
289 struct msm_dsi_phy *phy;
290 struct device *dev = &pdev->dev;
291 const struct of_device_id *match;
292 int ret;
293
294 phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL);
295 if (!phy)
296 return -ENOMEM;
297
298 match = of_match_node(dsi_phy_dt_match, dev->of_node);
299 if (!match)
300 return -ENODEV;
301
302 phy->cfg = match->data;
303 phy->pdev = pdev;
304
305 ret = of_property_read_u32(dev->of_node,
306 "qcom,dsi-phy-index", &phy->id);
307 if (ret) {
308 dev_err(dev, "%s: PHY index not specified, %d\n",
309 __func__, ret);
310 goto fail;
311 }
312
313 phy->regulator_ldo_mode = of_property_read_bool(dev->of_node,
314 "qcom,dsi-phy-regulator-ldo-mode");
315
316 phy->base = msm_ioremap(pdev, "dsi_phy", "DSI_PHY");
317 if (IS_ERR(phy->base)) {
318 dev_err(dev, "%s: failed to map phy base\n", __func__);
319 ret = -ENOMEM;
320 goto fail;
321 }
322
323 phy->reg_base = msm_ioremap(pdev, "dsi_phy_regulator",
324 "DSI_PHY_REG");
325 if (IS_ERR(phy->reg_base)) {
326 dev_err(dev, "%s: failed to map phy regulator base\n",
327 __func__);
328 ret = -ENOMEM;
329 goto fail;
330 }
331
332 ret = dsi_phy_regulator_init(phy);
333 if (ret) {
334 dev_err(dev, "%s: failed to init regulator\n", __func__);
335 goto fail;
336 }
337
338 phy->ahb_clk = devm_clk_get(dev, "iface_clk");
339 if (IS_ERR(phy->ahb_clk)) {
340 dev_err(dev, "%s: Unable to get ahb clk\n", __func__);
341 ret = PTR_ERR(phy->ahb_clk);
342 goto fail;
343 }
344
345 /* PLL init will call into clk_register which requires
346 * register access, so we need to enable power and ahb clock.
347 */
348 ret = dsi_phy_enable_resource(phy);
349 if (ret)
350 goto fail;
351
352 phy->pll = msm_dsi_pll_init(pdev, phy->cfg->type, phy->id);
353 if (!phy->pll)
354 dev_info(dev,
355 "%s: pll init failed, need separate pll clk driver\n",
356 __func__);
357
358 dsi_phy_disable_resource(phy);
359
360 platform_set_drvdata(pdev, phy);
361
362 return 0;
363
364fail:
365 return ret;
366}
367
368static int dsi_phy_driver_remove(struct platform_device *pdev)
369{
370 struct msm_dsi_phy *phy = platform_get_drvdata(pdev);
371
372 if (phy && phy->pll) {
373 msm_dsi_pll_destroy(phy->pll);
374 phy->pll = NULL;
375 }
376
377 platform_set_drvdata(pdev, NULL);
378
379 return 0;
380}
381
382static struct platform_driver dsi_phy_platform_driver = {
383 .probe = dsi_phy_driver_probe,
384 .remove = dsi_phy_driver_remove,
385 .driver = {
386 .name = "msm_dsi_phy",
387 .of_match_table = dsi_phy_dt_match,
388 },
389};
390
391void __init msm_dsi_phy_driver_register(void)
392{
393 platform_driver_register(&dsi_phy_platform_driver);
394}
395
396void __exit msm_dsi_phy_driver_unregister(void)
397{
398 platform_driver_unregister(&dsi_phy_platform_driver);
399}
400
401int msm_dsi_phy_enable(struct msm_dsi_phy *phy, int src_pll_id,
402 const unsigned long bit_rate, const unsigned long esc_rate)
403{
404 struct device *dev = &phy->pdev->dev;
405 int ret;
406
407 if (!phy || !phy->cfg->ops.enable)
408 return -EINVAL;
409
410 ret = dsi_phy_regulator_enable(phy);
411 if (ret) {
412 dev_err(dev, "%s: regulator enable failed, %d\n",
413 __func__, ret);
414 return ret;
415 }
416
417 ret = phy->cfg->ops.enable(phy, src_pll_id, bit_rate, esc_rate);
418 if (ret) {
419 dev_err(dev, "%s: phy enable failed, %d\n", __func__, ret);
420 dsi_phy_regulator_disable(phy);
421 return ret;
422 }
423
424 return 0;
425}
426
427void msm_dsi_phy_disable(struct msm_dsi_phy *phy)
428{
429 if (!phy || !phy->cfg->ops.disable)
430 return;
431
432 phy->cfg->ops.disable(phy);
433
434 dsi_phy_regulator_disable(phy);
435}
436
437void msm_dsi_phy_get_clk_pre_post(struct msm_dsi_phy *phy,
438 u32 *clk_pre, u32 *clk_post)
439{
440 if (!phy)
441 return;
442
443 if (clk_pre)
444 *clk_pre = phy->timing.clk_pre;
445 if (clk_post)
446 *clk_post = phy->timing.clk_post;
447}
448
449struct msm_dsi_pll *msm_dsi_phy_get_pll(struct msm_dsi_phy *phy)
450{
451 if (!phy)
452 return NULL;
453
454 return phy->pll;
455}
456
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
4 */
5
6#include <linux/clk-provider.h>
7#include <linux/platform_device.h>
8#include <dt-bindings/phy/phy.h>
9
10#include "dsi_phy.h"
11
12#define S_DIV_ROUND_UP(n, d) \
13 (((n) >= 0) ? (((n) + (d) - 1) / (d)) : (((n) - (d) + 1) / (d)))
14
15static inline s32 linear_inter(s32 tmax, s32 tmin, s32 percent,
16 s32 min_result, bool even)
17{
18 s32 v;
19
20 v = (tmax - tmin) * percent;
21 v = S_DIV_ROUND_UP(v, 100) + tmin;
22 if (even && (v & 0x1))
23 return max_t(s32, min_result, v - 1);
24 else
25 return max_t(s32, min_result, v);
26}
27
28static void dsi_dphy_timing_calc_clk_zero(struct msm_dsi_dphy_timing *timing,
29 s32 ui, s32 coeff, s32 pcnt)
30{
31 s32 tmax, tmin, clk_z;
32 s32 temp;
33
34 /* reset */
35 temp = 300 * coeff - ((timing->clk_prepare >> 1) + 1) * 2 * ui;
36 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
37 if (tmin > 255) {
38 tmax = 511;
39 clk_z = linear_inter(2 * tmin, tmin, pcnt, 0, true);
40 } else {
41 tmax = 255;
42 clk_z = linear_inter(tmax, tmin, pcnt, 0, true);
43 }
44
45 /* adjust */
46 temp = (timing->hs_rqst + timing->clk_prepare + clk_z) & 0x7;
47 timing->clk_zero = clk_z + 8 - temp;
48}
49
50int msm_dsi_dphy_timing_calc(struct msm_dsi_dphy_timing *timing,
51 struct msm_dsi_phy_clk_request *clk_req)
52{
53 const unsigned long bit_rate = clk_req->bitclk_rate;
54 const unsigned long esc_rate = clk_req->escclk_rate;
55 s32 ui, lpx;
56 s32 tmax, tmin;
57 s32 pcnt0 = 10;
58 s32 pcnt1 = (bit_rate > 1200000000) ? 15 : 10;
59 s32 pcnt2 = 10;
60 s32 pcnt3 = (bit_rate > 180000000) ? 10 : 40;
61 s32 coeff = 1000; /* Precision, should avoid overflow */
62 s32 temp;
63
64 if (!bit_rate || !esc_rate)
65 return -EINVAL;
66
67 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
68 lpx = mult_frac(NSEC_PER_MSEC, coeff, esc_rate / 1000);
69
70 tmax = S_DIV_ROUND_UP(95 * coeff, ui) - 2;
71 tmin = S_DIV_ROUND_UP(38 * coeff, ui) - 2;
72 timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, true);
73
74 temp = lpx / ui;
75 if (temp & 0x1)
76 timing->hs_rqst = temp;
77 else
78 timing->hs_rqst = max_t(s32, 0, temp - 2);
79
80 /* Calculate clk_zero after clk_prepare and hs_rqst */
81 dsi_dphy_timing_calc_clk_zero(timing, ui, coeff, pcnt2);
82
83 temp = 105 * coeff + 12 * ui - 20 * coeff;
84 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
85 tmin = S_DIV_ROUND_UP(60 * coeff, ui) - 2;
86 timing->clk_trail = linear_inter(tmax, tmin, pcnt3, 0, true);
87
88 temp = 85 * coeff + 6 * ui;
89 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
90 temp = 40 * coeff + 4 * ui;
91 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
92 timing->hs_prepare = linear_inter(tmax, tmin, pcnt1, 0, true);
93
94 tmax = 255;
95 temp = ((timing->hs_prepare >> 1) + 1) * 2 * ui + 2 * ui;
96 temp = 145 * coeff + 10 * ui - temp;
97 tmin = S_DIV_ROUND_UP(temp, ui) - 2;
98 timing->hs_zero = linear_inter(tmax, tmin, pcnt2, 24, true);
99
100 temp = 105 * coeff + 12 * ui - 20 * coeff;
101 tmax = S_DIV_ROUND_UP(temp, ui) - 2;
102 temp = 60 * coeff + 4 * ui;
103 tmin = DIV_ROUND_UP(temp, ui) - 2;
104 timing->hs_trail = linear_inter(tmax, tmin, pcnt3, 0, true);
105
106 tmax = 255;
107 tmin = S_DIV_ROUND_UP(100 * coeff, ui) - 2;
108 timing->hs_exit = linear_inter(tmax, tmin, pcnt2, 0, true);
109
110 tmax = 63;
111 temp = ((timing->hs_exit >> 1) + 1) * 2 * ui;
112 temp = 60 * coeff + 52 * ui - 24 * ui - temp;
113 tmin = S_DIV_ROUND_UP(temp, 8 * ui) - 1;
114 timing->shared_timings.clk_post = linear_inter(tmax, tmin, pcnt2, 0,
115 false);
116 tmax = 63;
117 temp = ((timing->clk_prepare >> 1) + 1) * 2 * ui;
118 temp += ((timing->clk_zero >> 1) + 1) * 2 * ui;
119 temp += 8 * ui + lpx;
120 tmin = S_DIV_ROUND_UP(temp, 8 * ui) - 1;
121 if (tmin > tmax) {
122 temp = linear_inter(2 * tmax, tmin, pcnt2, 0, false);
123 timing->shared_timings.clk_pre = temp >> 1;
124 timing->shared_timings.clk_pre_inc_by_2 = true;
125 } else {
126 timing->shared_timings.clk_pre =
127 linear_inter(tmax, tmin, pcnt2, 0, false);
128 timing->shared_timings.clk_pre_inc_by_2 = false;
129 }
130
131 timing->ta_go = 3;
132 timing->ta_sure = 0;
133 timing->ta_get = 4;
134
135 DBG("PHY timings: %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d",
136 timing->shared_timings.clk_pre, timing->shared_timings.clk_post,
137 timing->shared_timings.clk_pre_inc_by_2, timing->clk_zero,
138 timing->clk_trail, timing->clk_prepare, timing->hs_exit,
139 timing->hs_zero, timing->hs_prepare, timing->hs_trail,
140 timing->hs_rqst);
141
142 return 0;
143}
144
145int msm_dsi_dphy_timing_calc_v2(struct msm_dsi_dphy_timing *timing,
146 struct msm_dsi_phy_clk_request *clk_req)
147{
148 const unsigned long bit_rate = clk_req->bitclk_rate;
149 const unsigned long esc_rate = clk_req->escclk_rate;
150 s32 ui, ui_x8;
151 s32 tmax, tmin;
152 s32 pcnt0 = 50;
153 s32 pcnt1 = 50;
154 s32 pcnt2 = 10;
155 s32 pcnt3 = 30;
156 s32 pcnt4 = 10;
157 s32 pcnt5 = 2;
158 s32 coeff = 1000; /* Precision, should avoid overflow */
159 s32 hb_en, hb_en_ckln, pd_ckln, pd;
160 s32 val, val_ckln;
161 s32 temp;
162
163 if (!bit_rate || !esc_rate)
164 return -EINVAL;
165
166 timing->hs_halfbyte_en = 0;
167 hb_en = 0;
168 timing->hs_halfbyte_en_ckln = 0;
169 hb_en_ckln = 0;
170 timing->hs_prep_dly_ckln = (bit_rate > 100000000) ? 0 : 3;
171 pd_ckln = timing->hs_prep_dly_ckln;
172 timing->hs_prep_dly = (bit_rate > 120000000) ? 0 : 1;
173 pd = timing->hs_prep_dly;
174
175 val = (hb_en << 2) + (pd << 1);
176 val_ckln = (hb_en_ckln << 2) + (pd_ckln << 1);
177
178 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
179 ui_x8 = ui << 3;
180
181 temp = S_DIV_ROUND_UP(38 * coeff - val_ckln * ui, ui_x8);
182 tmin = max_t(s32, temp, 0);
183 temp = (95 * coeff - val_ckln * ui) / ui_x8;
184 tmax = max_t(s32, temp, 0);
185 timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, false);
186
187 temp = 300 * coeff - ((timing->clk_prepare << 3) + val_ckln) * ui;
188 tmin = S_DIV_ROUND_UP(temp - 11 * ui, ui_x8) - 3;
189 tmax = (tmin > 255) ? 511 : 255;
190 timing->clk_zero = linear_inter(tmax, tmin, pcnt5, 0, false);
191
192 tmin = DIV_ROUND_UP(60 * coeff + 3 * ui, ui_x8);
193 temp = 105 * coeff + 12 * ui - 20 * coeff;
194 tmax = (temp + 3 * ui) / ui_x8;
195 timing->clk_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
196
197 temp = S_DIV_ROUND_UP(40 * coeff + 4 * ui - val * ui, ui_x8);
198 tmin = max_t(s32, temp, 0);
199 temp = (85 * coeff + 6 * ui - val * ui) / ui_x8;
200 tmax = max_t(s32, temp, 0);
201 timing->hs_prepare = linear_inter(tmax, tmin, pcnt1, 0, false);
202
203 temp = 145 * coeff + 10 * ui - ((timing->hs_prepare << 3) + val) * ui;
204 tmin = S_DIV_ROUND_UP(temp - 11 * ui, ui_x8) - 3;
205 tmax = 255;
206 timing->hs_zero = linear_inter(tmax, tmin, pcnt4, 0, false);
207
208 tmin = DIV_ROUND_UP(60 * coeff + 4 * ui + 3 * ui, ui_x8);
209 temp = 105 * coeff + 12 * ui - 20 * coeff;
210 tmax = (temp + 3 * ui) / ui_x8;
211 timing->hs_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
212
213 temp = 50 * coeff + ((hb_en << 2) - 8) * ui;
214 timing->hs_rqst = S_DIV_ROUND_UP(temp, ui_x8);
215
216 tmin = DIV_ROUND_UP(100 * coeff, ui_x8) - 1;
217 tmax = 255;
218 timing->hs_exit = linear_inter(tmax, tmin, pcnt2, 0, false);
219
220 temp = 50 * coeff + ((hb_en_ckln << 2) - 8) * ui;
221 timing->hs_rqst_ckln = S_DIV_ROUND_UP(temp, ui_x8);
222
223 temp = 60 * coeff + 52 * ui - 43 * ui;
224 tmin = DIV_ROUND_UP(temp, ui_x8) - 1;
225 tmax = 63;
226 timing->shared_timings.clk_post =
227 linear_inter(tmax, tmin, pcnt2, 0, false);
228
229 temp = 8 * ui + ((timing->clk_prepare << 3) + val_ckln) * ui;
230 temp += (((timing->clk_zero + 3) << 3) + 11 - (pd_ckln << 1)) * ui;
231 temp += hb_en_ckln ? (((timing->hs_rqst_ckln << 3) + 4) * ui) :
232 (((timing->hs_rqst_ckln << 3) + 8) * ui);
233 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
234 tmax = 63;
235 if (tmin > tmax) {
236 temp = linear_inter(tmax << 1, tmin, pcnt2, 0, false);
237 timing->shared_timings.clk_pre = temp >> 1;
238 timing->shared_timings.clk_pre_inc_by_2 = 1;
239 } else {
240 timing->shared_timings.clk_pre =
241 linear_inter(tmax, tmin, pcnt2, 0, false);
242 timing->shared_timings.clk_pre_inc_by_2 = 0;
243 }
244
245 timing->ta_go = 3;
246 timing->ta_sure = 0;
247 timing->ta_get = 4;
248
249 DBG("%d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d",
250 timing->shared_timings.clk_pre, timing->shared_timings.clk_post,
251 timing->shared_timings.clk_pre_inc_by_2, timing->clk_zero,
252 timing->clk_trail, timing->clk_prepare, timing->hs_exit,
253 timing->hs_zero, timing->hs_prepare, timing->hs_trail,
254 timing->hs_rqst, timing->hs_rqst_ckln, timing->hs_halfbyte_en,
255 timing->hs_halfbyte_en_ckln, timing->hs_prep_dly,
256 timing->hs_prep_dly_ckln);
257
258 return 0;
259}
260
261int msm_dsi_dphy_timing_calc_v3(struct msm_dsi_dphy_timing *timing,
262 struct msm_dsi_phy_clk_request *clk_req)
263{
264 const unsigned long bit_rate = clk_req->bitclk_rate;
265 const unsigned long esc_rate = clk_req->escclk_rate;
266 s32 ui, ui_x8;
267 s32 tmax, tmin;
268 s32 pcnt0 = 50;
269 s32 pcnt1 = 50;
270 s32 pcnt2 = 10;
271 s32 pcnt3 = 30;
272 s32 pcnt4 = 10;
273 s32 pcnt5 = 2;
274 s32 coeff = 1000; /* Precision, should avoid overflow */
275 s32 hb_en, hb_en_ckln;
276 s32 temp;
277
278 if (!bit_rate || !esc_rate)
279 return -EINVAL;
280
281 timing->hs_halfbyte_en = 0;
282 hb_en = 0;
283 timing->hs_halfbyte_en_ckln = 0;
284 hb_en_ckln = 0;
285
286 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
287 ui_x8 = ui << 3;
288
289 temp = S_DIV_ROUND_UP(38 * coeff, ui_x8);
290 tmin = max_t(s32, temp, 0);
291 temp = (95 * coeff) / ui_x8;
292 tmax = max_t(s32, temp, 0);
293 timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, false);
294
295 temp = 300 * coeff - (timing->clk_prepare << 3) * ui;
296 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
297 tmax = (tmin > 255) ? 511 : 255;
298 timing->clk_zero = linear_inter(tmax, tmin, pcnt5, 0, false);
299
300 tmin = DIV_ROUND_UP(60 * coeff + 3 * ui, ui_x8);
301 temp = 105 * coeff + 12 * ui - 20 * coeff;
302 tmax = (temp + 3 * ui) / ui_x8;
303 timing->clk_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
304
305 temp = S_DIV_ROUND_UP(40 * coeff + 4 * ui, ui_x8);
306 tmin = max_t(s32, temp, 0);
307 temp = (85 * coeff + 6 * ui) / ui_x8;
308 tmax = max_t(s32, temp, 0);
309 timing->hs_prepare = linear_inter(tmax, tmin, pcnt1, 0, false);
310
311 temp = 145 * coeff + 10 * ui - (timing->hs_prepare << 3) * ui;
312 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
313 tmax = 255;
314 timing->hs_zero = linear_inter(tmax, tmin, pcnt4, 0, false);
315
316 tmin = DIV_ROUND_UP(60 * coeff + 4 * ui, ui_x8) - 1;
317 temp = 105 * coeff + 12 * ui - 20 * coeff;
318 tmax = (temp / ui_x8) - 1;
319 timing->hs_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
320
321 temp = 50 * coeff + ((hb_en << 2) - 8) * ui;
322 timing->hs_rqst = S_DIV_ROUND_UP(temp, ui_x8);
323
324 tmin = DIV_ROUND_UP(100 * coeff, ui_x8) - 1;
325 tmax = 255;
326 timing->hs_exit = linear_inter(tmax, tmin, pcnt2, 0, false);
327
328 temp = 50 * coeff + ((hb_en_ckln << 2) - 8) * ui;
329 timing->hs_rqst_ckln = S_DIV_ROUND_UP(temp, ui_x8);
330
331 temp = 60 * coeff + 52 * ui - 43 * ui;
332 tmin = DIV_ROUND_UP(temp, ui_x8) - 1;
333 tmax = 63;
334 timing->shared_timings.clk_post =
335 linear_inter(tmax, tmin, pcnt2, 0, false);
336
337 temp = 8 * ui + (timing->clk_prepare << 3) * ui;
338 temp += (((timing->clk_zero + 3) << 3) + 11) * ui;
339 temp += hb_en_ckln ? (((timing->hs_rqst_ckln << 3) + 4) * ui) :
340 (((timing->hs_rqst_ckln << 3) + 8) * ui);
341 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
342 tmax = 63;
343 if (tmin > tmax) {
344 temp = linear_inter(tmax << 1, tmin, pcnt2, 0, false);
345 timing->shared_timings.clk_pre = temp >> 1;
346 timing->shared_timings.clk_pre_inc_by_2 = 1;
347 } else {
348 timing->shared_timings.clk_pre =
349 linear_inter(tmax, tmin, pcnt2, 0, false);
350 timing->shared_timings.clk_pre_inc_by_2 = 0;
351 }
352
353 timing->ta_go = 3;
354 timing->ta_sure = 0;
355 timing->ta_get = 4;
356
357 DBG("%d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d",
358 timing->shared_timings.clk_pre, timing->shared_timings.clk_post,
359 timing->shared_timings.clk_pre_inc_by_2, timing->clk_zero,
360 timing->clk_trail, timing->clk_prepare, timing->hs_exit,
361 timing->hs_zero, timing->hs_prepare, timing->hs_trail,
362 timing->hs_rqst, timing->hs_rqst_ckln, timing->hs_halfbyte_en,
363 timing->hs_halfbyte_en_ckln, timing->hs_prep_dly,
364 timing->hs_prep_dly_ckln);
365
366 return 0;
367}
368
369int msm_dsi_dphy_timing_calc_v4(struct msm_dsi_dphy_timing *timing,
370 struct msm_dsi_phy_clk_request *clk_req)
371{
372 const unsigned long bit_rate = clk_req->bitclk_rate;
373 const unsigned long esc_rate = clk_req->escclk_rate;
374 s32 ui, ui_x8;
375 s32 tmax, tmin;
376 s32 pcnt_clk_prep = 50;
377 s32 pcnt_clk_zero = 2;
378 s32 pcnt_clk_trail = 30;
379 s32 pcnt_hs_prep = 50;
380 s32 pcnt_hs_zero = 10;
381 s32 pcnt_hs_trail = 30;
382 s32 pcnt_hs_exit = 10;
383 s32 coeff = 1000; /* Precision, should avoid overflow */
384 s32 hb_en;
385 s32 temp;
386
387 if (!bit_rate || !esc_rate)
388 return -EINVAL;
389
390 hb_en = 0;
391
392 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
393 ui_x8 = ui << 3;
394
395 /* TODO: verify these calculations against latest downstream driver
396 * everything except clk_post/clk_pre uses calculations from v3 based
397 * on the downstream driver having the same calculations for v3 and v4
398 */
399
400 temp = S_DIV_ROUND_UP(38 * coeff, ui_x8);
401 tmin = max_t(s32, temp, 0);
402 temp = (95 * coeff) / ui_x8;
403 tmax = max_t(s32, temp, 0);
404 timing->clk_prepare = linear_inter(tmax, tmin, pcnt_clk_prep, 0, false);
405
406 temp = 300 * coeff - (timing->clk_prepare << 3) * ui;
407 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
408 tmax = (tmin > 255) ? 511 : 255;
409 timing->clk_zero = linear_inter(tmax, tmin, pcnt_clk_zero, 0, false);
410
411 tmin = DIV_ROUND_UP(60 * coeff + 3 * ui, ui_x8);
412 temp = 105 * coeff + 12 * ui - 20 * coeff;
413 tmax = (temp + 3 * ui) / ui_x8;
414 timing->clk_trail = linear_inter(tmax, tmin, pcnt_clk_trail, 0, false);
415
416 temp = S_DIV_ROUND_UP(40 * coeff + 4 * ui, ui_x8);
417 tmin = max_t(s32, temp, 0);
418 temp = (85 * coeff + 6 * ui) / ui_x8;
419 tmax = max_t(s32, temp, 0);
420 timing->hs_prepare = linear_inter(tmax, tmin, pcnt_hs_prep, 0, false);
421
422 temp = 145 * coeff + 10 * ui - (timing->hs_prepare << 3) * ui;
423 tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
424 tmax = 255;
425 timing->hs_zero = linear_inter(tmax, tmin, pcnt_hs_zero, 0, false);
426
427 tmin = DIV_ROUND_UP(60 * coeff + 4 * ui, ui_x8) - 1;
428 temp = 105 * coeff + 12 * ui - 20 * coeff;
429 tmax = (temp / ui_x8) - 1;
430 timing->hs_trail = linear_inter(tmax, tmin, pcnt_hs_trail, 0, false);
431
432 temp = 50 * coeff + ((hb_en << 2) - 8) * ui;
433 timing->hs_rqst = S_DIV_ROUND_UP(temp, ui_x8);
434
435 tmin = DIV_ROUND_UP(100 * coeff, ui_x8) - 1;
436 tmax = 255;
437 timing->hs_exit = linear_inter(tmax, tmin, pcnt_hs_exit, 0, false);
438
439 /* recommended min
440 * = roundup((mipi_min_ns + t_hs_trail_ns)/(16*bit_clk_ns), 0) - 1
441 */
442 temp = 60 * coeff + 52 * ui + + (timing->hs_trail + 1) * ui_x8;
443 tmin = DIV_ROUND_UP(temp, 16 * ui) - 1;
444 tmax = 255;
445 timing->shared_timings.clk_post = linear_inter(tmax, tmin, 5, 0, false);
446
447 /* recommended min
448 * val1 = (tlpx_ns + clk_prepare_ns + clk_zero_ns + hs_rqst_ns)
449 * val2 = (16 * bit_clk_ns)
450 * final = roundup(val1/val2, 0) - 1
451 */
452 temp = 52 * coeff + (timing->clk_prepare + timing->clk_zero + 1) * ui_x8 + 54 * coeff;
453 tmin = DIV_ROUND_UP(temp, 16 * ui) - 1;
454 tmax = 255;
455 timing->shared_timings.clk_pre = DIV_ROUND_UP((tmax - tmin) * 125, 10000) + tmin;
456
457 DBG("%d, %d, %d, %d, %d, %d, %d, %d, %d, %d",
458 timing->shared_timings.clk_pre, timing->shared_timings.clk_post,
459 timing->clk_zero, timing->clk_trail, timing->clk_prepare, timing->hs_exit,
460 timing->hs_zero, timing->hs_prepare, timing->hs_trail, timing->hs_rqst);
461
462 return 0;
463}
464
465int msm_dsi_cphy_timing_calc_v4(struct msm_dsi_dphy_timing *timing,
466 struct msm_dsi_phy_clk_request *clk_req)
467{
468 const unsigned long bit_rate = clk_req->bitclk_rate;
469 const unsigned long esc_rate = clk_req->escclk_rate;
470 s32 ui, ui_x7;
471 s32 tmax, tmin;
472 s32 coeff = 1000; /* Precision, should avoid overflow */
473 s32 temp;
474
475 if (!bit_rate || !esc_rate)
476 return -EINVAL;
477
478 ui = mult_frac(NSEC_PER_MSEC, coeff, bit_rate / 1000);
479 ui_x7 = ui * 7;
480
481 temp = S_DIV_ROUND_UP(38 * coeff, ui_x7);
482 tmin = max_t(s32, temp, 0);
483 temp = (95 * coeff) / ui_x7;
484 tmax = max_t(s32, temp, 0);
485 timing->clk_prepare = linear_inter(tmax, tmin, 50, 0, false);
486
487 tmin = DIV_ROUND_UP(50 * coeff, ui_x7);
488 tmax = 255;
489 timing->hs_rqst = linear_inter(tmax, tmin, 1, 0, false);
490
491 tmin = DIV_ROUND_UP(100 * coeff, ui_x7) - 1;
492 tmax = 255;
493 timing->hs_exit = linear_inter(tmax, tmin, 10, 0, false);
494
495 tmin = 1;
496 tmax = 32;
497 timing->shared_timings.clk_post = linear_inter(tmax, tmin, 80, 0, false);
498
499 tmin = min_t(s32, 64, S_DIV_ROUND_UP(262 * coeff, ui_x7) - 1);
500 tmax = 64;
501 timing->shared_timings.clk_pre = linear_inter(tmax, tmin, 20, 0, false);
502
503 DBG("%d, %d, %d, %d, %d",
504 timing->shared_timings.clk_pre, timing->shared_timings.clk_post,
505 timing->clk_prepare, timing->hs_exit, timing->hs_rqst);
506
507 return 0;
508}
509
510static int dsi_phy_enable_resource(struct msm_dsi_phy *phy)
511{
512 struct device *dev = &phy->pdev->dev;
513 int ret;
514
515 pm_runtime_get_sync(dev);
516
517 ret = clk_prepare_enable(phy->ahb_clk);
518 if (ret) {
519 DRM_DEV_ERROR(dev, "%s: can't enable ahb clk, %d\n", __func__, ret);
520 pm_runtime_put_sync(dev);
521 }
522
523 return ret;
524}
525
526static void dsi_phy_disable_resource(struct msm_dsi_phy *phy)
527{
528 clk_disable_unprepare(phy->ahb_clk);
529 pm_runtime_put(&phy->pdev->dev);
530}
531
532static const struct of_device_id dsi_phy_dt_match[] = {
533#ifdef CONFIG_DRM_MSM_DSI_28NM_PHY
534 { .compatible = "qcom,dsi-phy-28nm-hpm",
535 .data = &dsi_phy_28nm_hpm_cfgs },
536 { .compatible = "qcom,dsi-phy-28nm-hpm-fam-b",
537 .data = &dsi_phy_28nm_hpm_famb_cfgs },
538 { .compatible = "qcom,dsi-phy-28nm-lp",
539 .data = &dsi_phy_28nm_lp_cfgs },
540#endif
541#ifdef CONFIG_DRM_MSM_DSI_20NM_PHY
542 { .compatible = "qcom,dsi-phy-20nm",
543 .data = &dsi_phy_20nm_cfgs },
544#endif
545#ifdef CONFIG_DRM_MSM_DSI_28NM_8960_PHY
546 { .compatible = "qcom,dsi-phy-28nm-8960",
547 .data = &dsi_phy_28nm_8960_cfgs },
548#endif
549#ifdef CONFIG_DRM_MSM_DSI_14NM_PHY
550 { .compatible = "qcom,dsi-phy-14nm",
551 .data = &dsi_phy_14nm_cfgs },
552 { .compatible = "qcom,dsi-phy-14nm-2290",
553 .data = &dsi_phy_14nm_2290_cfgs },
554 { .compatible = "qcom,dsi-phy-14nm-660",
555 .data = &dsi_phy_14nm_660_cfgs },
556 { .compatible = "qcom,dsi-phy-14nm-8953",
557 .data = &dsi_phy_14nm_8953_cfgs },
558#endif
559#ifdef CONFIG_DRM_MSM_DSI_10NM_PHY
560 { .compatible = "qcom,dsi-phy-10nm",
561 .data = &dsi_phy_10nm_cfgs },
562 { .compatible = "qcom,dsi-phy-10nm-8998",
563 .data = &dsi_phy_10nm_8998_cfgs },
564#endif
565#ifdef CONFIG_DRM_MSM_DSI_7NM_PHY
566 { .compatible = "qcom,dsi-phy-7nm",
567 .data = &dsi_phy_7nm_cfgs },
568 { .compatible = "qcom,dsi-phy-7nm-8150",
569 .data = &dsi_phy_7nm_8150_cfgs },
570 { .compatible = "qcom,sc7280-dsi-phy-7nm",
571 .data = &dsi_phy_7nm_7280_cfgs },
572#endif
573 {}
574};
575
576/*
577 * Currently, we only support one SoC for each PHY type. When we have multiple
578 * SoCs for the same PHY, we can try to make the index searching a bit more
579 * clever.
580 */
581static int dsi_phy_get_id(struct msm_dsi_phy *phy)
582{
583 struct platform_device *pdev = phy->pdev;
584 const struct msm_dsi_phy_cfg *cfg = phy->cfg;
585 struct resource *res;
586 int i;
587
588 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dsi_phy");
589 if (!res)
590 return -EINVAL;
591
592 for (i = 0; i < cfg->num_dsi_phy; i++) {
593 if (cfg->io_start[i] == res->start)
594 return i;
595 }
596
597 return -EINVAL;
598}
599
600static int dsi_phy_driver_probe(struct platform_device *pdev)
601{
602 struct msm_dsi_phy *phy;
603 struct device *dev = &pdev->dev;
604 u32 phy_type;
605 int ret;
606
607 phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL);
608 if (!phy)
609 return -ENOMEM;
610
611 phy->provided_clocks = devm_kzalloc(dev,
612 struct_size(phy->provided_clocks, hws, NUM_PROVIDED_CLKS),
613 GFP_KERNEL);
614 if (!phy->provided_clocks)
615 return -ENOMEM;
616
617 phy->provided_clocks->num = NUM_PROVIDED_CLKS;
618
619 phy->cfg = of_device_get_match_data(&pdev->dev);
620 if (!phy->cfg)
621 return -ENODEV;
622
623 phy->pdev = pdev;
624
625 phy->id = dsi_phy_get_id(phy);
626 if (phy->id < 0)
627 return dev_err_probe(dev, phy->id,
628 "Couldn't identify PHY index\n");
629
630 phy->regulator_ldo_mode = of_property_read_bool(dev->of_node,
631 "qcom,dsi-phy-regulator-ldo-mode");
632 if (!of_property_read_u32(dev->of_node, "phy-type", &phy_type))
633 phy->cphy_mode = (phy_type == PHY_TYPE_CPHY);
634
635 phy->base = msm_ioremap_size(pdev, "dsi_phy", &phy->base_size);
636 if (IS_ERR(phy->base))
637 return dev_err_probe(dev, PTR_ERR(phy->base),
638 "Failed to map phy base\n");
639
640 phy->pll_base = msm_ioremap_size(pdev, "dsi_pll", &phy->pll_size);
641 if (IS_ERR(phy->pll_base))
642 return dev_err_probe(dev, PTR_ERR(phy->pll_base),
643 "Failed to map pll base\n");
644
645 if (phy->cfg->has_phy_lane) {
646 phy->lane_base = msm_ioremap_size(pdev, "dsi_phy_lane", &phy->lane_size);
647 if (IS_ERR(phy->lane_base))
648 return dev_err_probe(dev, PTR_ERR(phy->lane_base),
649 "Failed to map phy lane base\n");
650 }
651
652 if (phy->cfg->has_phy_regulator) {
653 phy->reg_base = msm_ioremap_size(pdev, "dsi_phy_regulator", &phy->reg_size);
654 if (IS_ERR(phy->reg_base))
655 return dev_err_probe(dev, PTR_ERR(phy->reg_base),
656 "Failed to map phy regulator base\n");
657 }
658
659 if (phy->cfg->ops.parse_dt_properties) {
660 ret = phy->cfg->ops.parse_dt_properties(phy);
661 if (ret)
662 return ret;
663 }
664
665 ret = devm_regulator_bulk_get_const(dev, phy->cfg->num_regulators,
666 phy->cfg->regulator_data,
667 &phy->supplies);
668 if (ret)
669 return ret;
670
671 phy->ahb_clk = msm_clk_get(pdev, "iface");
672 if (IS_ERR(phy->ahb_clk))
673 return dev_err_probe(dev, PTR_ERR(phy->ahb_clk),
674 "Unable to get ahb clk\n");
675
676 /* PLL init will call into clk_register which requires
677 * register access, so we need to enable power and ahb clock.
678 */
679 ret = dsi_phy_enable_resource(phy);
680 if (ret)
681 return ret;
682
683 if (phy->cfg->ops.pll_init) {
684 ret = phy->cfg->ops.pll_init(phy);
685 if (ret)
686 return dev_err_probe(dev, ret,
687 "PLL init failed; need separate clk driver\n");
688 }
689
690 ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
691 phy->provided_clocks);
692 if (ret)
693 return dev_err_probe(dev, ret,
694 "Failed to register clk provider\n");
695
696 dsi_phy_disable_resource(phy);
697
698 platform_set_drvdata(pdev, phy);
699
700 return 0;
701}
702
703static struct platform_driver dsi_phy_platform_driver = {
704 .probe = dsi_phy_driver_probe,
705 .driver = {
706 .name = "msm_dsi_phy",
707 .of_match_table = dsi_phy_dt_match,
708 },
709};
710
711void __init msm_dsi_phy_driver_register(void)
712{
713 platform_driver_register(&dsi_phy_platform_driver);
714}
715
716void __exit msm_dsi_phy_driver_unregister(void)
717{
718 platform_driver_unregister(&dsi_phy_platform_driver);
719}
720
721int msm_dsi_phy_enable(struct msm_dsi_phy *phy,
722 struct msm_dsi_phy_clk_request *clk_req,
723 struct msm_dsi_phy_shared_timings *shared_timings)
724{
725 struct device *dev;
726 int ret;
727
728 if (!phy || !phy->cfg->ops.enable)
729 return -EINVAL;
730
731 dev = &phy->pdev->dev;
732
733 ret = dsi_phy_enable_resource(phy);
734 if (ret) {
735 DRM_DEV_ERROR(dev, "%s: resource enable failed, %d\n",
736 __func__, ret);
737 goto res_en_fail;
738 }
739
740 ret = regulator_bulk_enable(phy->cfg->num_regulators, phy->supplies);
741 if (ret) {
742 DRM_DEV_ERROR(dev, "%s: regulator enable failed, %d\n",
743 __func__, ret);
744 goto reg_en_fail;
745 }
746
747 ret = phy->cfg->ops.enable(phy, clk_req);
748 if (ret) {
749 DRM_DEV_ERROR(dev, "%s: phy enable failed, %d\n", __func__, ret);
750 goto phy_en_fail;
751 }
752
753 memcpy(shared_timings, &phy->timing.shared_timings,
754 sizeof(*shared_timings));
755
756 /*
757 * Resetting DSI PHY silently changes its PLL registers to reset status,
758 * which will confuse clock driver and result in wrong output rate of
759 * link clocks. Restore PLL status if its PLL is being used as clock
760 * source.
761 */
762 if (phy->usecase != MSM_DSI_PHY_SLAVE) {
763 ret = msm_dsi_phy_pll_restore_state(phy);
764 if (ret) {
765 DRM_DEV_ERROR(dev, "%s: failed to restore phy state, %d\n",
766 __func__, ret);
767 goto pll_restor_fail;
768 }
769 }
770
771 return 0;
772
773pll_restor_fail:
774 if (phy->cfg->ops.disable)
775 phy->cfg->ops.disable(phy);
776phy_en_fail:
777 regulator_bulk_disable(phy->cfg->num_regulators, phy->supplies);
778reg_en_fail:
779 dsi_phy_disable_resource(phy);
780res_en_fail:
781 return ret;
782}
783
784void msm_dsi_phy_disable(struct msm_dsi_phy *phy)
785{
786 if (!phy || !phy->cfg->ops.disable)
787 return;
788
789 phy->cfg->ops.disable(phy);
790
791 regulator_bulk_disable(phy->cfg->num_regulators, phy->supplies);
792 dsi_phy_disable_resource(phy);
793}
794
795void msm_dsi_phy_set_usecase(struct msm_dsi_phy *phy,
796 enum msm_dsi_phy_usecase uc)
797{
798 if (phy)
799 phy->usecase = uc;
800}
801
802/* Returns true if we have to clear DSI_LANE_CTRL.HS_REQ_SEL_PHY */
803bool msm_dsi_phy_set_continuous_clock(struct msm_dsi_phy *phy, bool enable)
804{
805 if (!phy || !phy->cfg->ops.set_continuous_clock)
806 return false;
807
808 return phy->cfg->ops.set_continuous_clock(phy, enable);
809}
810
811void msm_dsi_phy_pll_save_state(struct msm_dsi_phy *phy)
812{
813 if (phy->cfg->ops.save_pll_state) {
814 phy->cfg->ops.save_pll_state(phy);
815 phy->state_saved = true;
816 }
817}
818
819int msm_dsi_phy_pll_restore_state(struct msm_dsi_phy *phy)
820{
821 int ret;
822
823 if (phy->cfg->ops.restore_pll_state && phy->state_saved) {
824 ret = phy->cfg->ops.restore_pll_state(phy);
825 if (ret)
826 return ret;
827
828 phy->state_saved = false;
829 }
830
831 return 0;
832}
833
834void msm_dsi_phy_snapshot(struct msm_disp_state *disp_state, struct msm_dsi_phy *phy)
835{
836 msm_disp_snapshot_add_block(disp_state,
837 phy->base_size, phy->base,
838 "dsi%d_phy", phy->id);
839
840 /* Do not try accessing PLL registers if it is switched off */
841 if (phy->pll_on)
842 msm_disp_snapshot_add_block(disp_state,
843 phy->pll_size, phy->pll_base,
844 "dsi%d_pll", phy->id);
845
846 if (phy->lane_base)
847 msm_disp_snapshot_add_block(disp_state,
848 phy->lane_size, phy->lane_base,
849 "dsi%d_lane", phy->id);
850
851 if (phy->reg_base)
852 msm_disp_snapshot_add_block(disp_state,
853 phy->reg_size, phy->reg_base,
854 "dsi%d_reg", phy->id);
855}