coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
dsi_phy.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
4 #include <delay.h>
5 #include <device/mmio.h>
6 #include <edid.h>
7 #include <lib.h>
8 #include <soc/clock.h>
9 #include <soc/display/dsi_phy.h>
10 #include <soc/display/mdssreg.h>
12 #include <string.h>
13 #include <timer.h>
14 
15 #define HAL_DSI_PHY_PLL_READY_TIMEOUT_MS 150 /* ~15 ms */
16 #define HAL_DSI_PHY_REFGEN_TIMEOUT_MS 150 /* ~15 ms */
17 
18 #define DSI_MAX_REFRESH_RATE 95
19 #define DSI_MIN_REFRESH_RATE 15
20 
21 #define HAL_DSI_PLL_VCO_MIN_MHZ_2_2_0 1000
22 
23 #define S_DIV_ROUND_UP(n, d) \
24  (((n) >= 0) ? (((n) + (d) - 1) / (d)) : (((n) - (d) + 1) / (d)))
25 
26 #define mult_frac(x, numer, denom)( \
27 { \
28  typeof(x) quot = (x) / (denom); \
29  typeof(x) rem = (x) % (denom); \
30  (quot * (numer)) + ((rem * (numer)) / (denom)); \
31 } \
32 )
33 
37 };
38 
39 /* PLL divider LUTs */
41 /* pll post div will always be power of 2 */
42  { 2, 11 },
43  { 4, 5 },
44  { 2, 9 },
45  { 8, 2 },
46  { 1, 15 },
47  { 2, 7 },
48  { 1, 13 },
49  { 4, 3 },
50  { 1, 11 },
51  { 2, 5 },
52  { 1, 9 },
53  { 8, 1 },
54  { 1, 7 },
55  { 2, 3 },
56  { 1, 5 },
57  { 4, 1 },
58  { 1, 3 },
59  { 2, 1 },
60  { 1, 1 }
61 };
62 
70  DSI_LANEID_FORCE_32BIT = 0x7FFFFFFF
71 };
72 
79 
80  /* pixel clk source select */
83 };
84 
85 static inline s32 linear_inter(s32 tmax, s32 tmin, s32 percent,
86  s32 min_result, bool even)
87 {
88  s32 v;
89 
90  v = (tmax - tmin) * percent;
91  v = S_DIV_ROUND_UP(v, 100) + tmin;
92  if (even && (v & 0x1))
93  return MAX(min_result, v - 1);
94 
95  return MAX(min_result, v);
96 }
97 
98 static void mdss_dsi_phy_reset(void)
99 {
100  write32(&dsi0_phy->phy_cmn_ctrl1, 0x40);
101  udelay(100);
103 }
104 
105 static void mdss_dsi_power_down(void)
106 {
107  /* power up DIGTOP & PLL */
108  write32(&dsi0_phy->phy_cmn_ctrl0, 0x60);
109 
110  /* Disable PLL */
112 
113  /* Resync re-time FIFO OFF*/
115 }
116 
118 {
119  uint32_t reg_val = 0;
120  uint32_t lprx_ctrl = 0;
121  uint32_t hstx_strength = 0x88;
122  uint32_t data_strength_lp_n = 0x5;
123  uint32_t data_strength_lp_p = 0x5;
124  uint32_t pemph_bottom = 0;
125  uint32_t pemph_top = 0;
126  uint32_t strength_override = 0;
127  uint32_t clk_lane = 0;
128 
129  if (lane == DSI_LANEID_CLK)
130  clk_lane = 1;
131  else
132  clk_lane = 0;
133 
134  if (lane == DSI_LANEID_0)
135  lprx_ctrl = 3;
136 
137  /*
138  * DSIPHY_STR_LP_N
139  * DSIPHY_STR_LP_P
140  */
141  reg_val = ((data_strength_lp_n << 0x4) & 0xf0) |
142  (data_strength_lp_p & 0x0f);
143 
145 
146  /*
147  * DSIPHY_LPRX_EN
148  * DSIPHY_CDRX_EN
149  * Transition from 0 to 1 for DLN0-3 CLKLN stays 0
150  */
152  write32(&dsi0_phy->phy_ln_regs[lane].dln0_lprx_ctrl, lprx_ctrl);
153 
154  /* Pin Swap */
156 
157  /*
158  * DSIPHY_HSTX_STR_HSTOP
159  * DSIPHY_HSTX_STR_HSBOT
160  */
161  write32(&dsi0_phy->phy_ln_regs[lane].dln0_hstx_str_ctrl, hstx_strength);
162 
163  /* PGM Delay */
164  write32(&dsi0_phy->phy_ln_regs[lane].dln0_cfg[0], 0x0);
165 
166  /* DLN0_CFG1 */
167  reg_val = (strength_override << 0x5) & 0x20;
168  write32(&dsi0_phy->phy_ln_regs[lane].dln0_cfg[1], reg_val);
169 
170  /* DLN0_CFG2 */
171  reg_val = ((pemph_bottom << 0x04) & 0xf0) |
172  (pemph_top & 0x0f);
173 
174  write32(&dsi0_phy->phy_ln_regs[lane].dln0_cfg[2], reg_val);
177 
178  /*
179  * DSIPHY_LPRX_DLY
180  * IS_CKLANE
181  */
182  reg_val = (clk_lane << 0x07) & 0x80;
183  write32(&dsi0_phy->phy_ln_regs[lane].dln0_cfg[3], reg_val);
184 
185  reg_val = 0;
186  if (lane == DSI_LANEID_CLK)
187  reg_val = 1;
188 
189  write32(&dsi0_phy->phy_ln_regs[lane].dln0_tx_dctrl, reg_val);
190 }
191 
193  struct dsi_phy_configtype *phy_cfg)
194 {
195  const unsigned long bit_rate = phy_cfg->desired_bitclk_freq;
196  s32 ui, ui_x8;
197  s32 tmax, tmin;
198  s32 pcnt0 = 50;
199  s32 pcnt1 = 50;
200  s32 pcnt2 = 10;
201  s32 pcnt3 = 30;
202  s32 pcnt4 = 10;
203  s32 pcnt5 = 2;
204  s32 coeff = 1000; /* Precision, should avoid overflow */
205  s32 hb_en, hb_en_ckln;
206  s32 temp;
207 
208  if (!bit_rate)
209  return;
210 
211  hb_en = 0;
212  timing->half_byte_clk_en = 0;
213  hb_en_ckln = 0;
214 
215  ui = mult_frac(1000000, coeff, bit_rate / 1000);
216  ui_x8 = ui << 3;
217 
218  temp = S_DIV_ROUND_UP(38 * coeff, ui_x8);
219  tmin = MAX(temp, 0);
220  temp = (95 * coeff) / ui_x8;
221  tmax = MAX(temp, 0);
222  timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, false);
223 
224  temp = 300 * coeff - (timing->clk_prepare << 3) * ui;
225  tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
226  tmax = (tmin > 255) ? 511 : 255;
227  timing->clk_zero = linear_inter(tmax, tmin, pcnt5, 0, false);
228 
229  tmin = DIV_ROUND_UP(60 * coeff + 3 * ui, ui_x8);
230  temp = 105 * coeff + 12 * ui - 20 * coeff;
231  tmax = (temp + 3 * ui) / ui_x8;
232  timing->clk_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
233 
234  temp = S_DIV_ROUND_UP(40 * coeff + 4 * ui, ui_x8);
235  tmin = MAX(temp, 0);
236  temp = (85 * coeff + 6 * ui) / ui_x8;
237  tmax = MAX(temp, 0);
238  timing->hs_prepare = linear_inter(tmax, tmin, pcnt1, 0, false);
239 
240  temp = 145 * coeff + 10 * ui - (timing->hs_prepare << 3) * ui;
241  tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
242  tmax = 255;
243  timing->hs_zero = linear_inter(tmax, tmin, pcnt4, 0, false);
244 
245  tmin = DIV_ROUND_UP(60 * coeff + 4 * ui, ui_x8) - 1;
246  temp = 105 * coeff + 12 * ui - 20 * coeff;
247  tmax = (temp / ui_x8) - 1;
248  timing->hs_trail = linear_inter(tmax, tmin, pcnt3, 0, false);
249 
250  temp = 50 * coeff + ((hb_en << 2) - 8) * ui;
251  timing->hs_rqst = S_DIV_ROUND_UP(temp, ui_x8);
252 
253  tmin = DIV_ROUND_UP(100 * coeff, ui_x8) - 1;
254  tmax = 255;
255  timing->hs_exit = linear_inter(tmax, tmin, pcnt2, 0, false);
256 
257  temp = 50 * coeff + ((hb_en_ckln << 2) - 8) * ui;
258  timing->hs_rqst = S_DIV_ROUND_UP(temp, ui_x8);
259 
260  temp = 60 * coeff + 52 * ui - 43 * ui;
261  tmin = DIV_ROUND_UP(temp, ui_x8) - 1;
262  tmax = 63;
263  timing->clk_post = linear_inter(tmax, tmin, pcnt2, 0, false);
264 
265  temp = 8 * ui + (timing->clk_prepare << 3) * ui;
266  temp += (((timing->clk_zero + 3) << 3) + 11) * ui;
267  temp += hb_en_ckln ? (((timing->hs_rqst << 3) + 4) * ui) :
268  (((timing->hs_rqst << 3) + 8) * ui);
269  tmin = S_DIV_ROUND_UP(temp, ui_x8) - 1;
270  tmax = 63;
271  if (tmin > tmax) {
272  temp = linear_inter(tmax << 1, tmin, pcnt2, 0, false);
273  timing->clk_pre = temp >> 1;
274  timing->clk_pre_inc_by_2 = 1;
275  } else {
276  timing->clk_pre = linear_inter(tmax, tmin, pcnt2, 0, false);
277  timing->clk_pre_inc_by_2 = 0;
278  }
279 
280  timing->ta_go = 3;
281  timing->ta_sure = 0;
282  timing->ta_get = 4;
283 
284  printk(BIOS_INFO, "PHY timings: %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d\n",
285  timing->clk_pre, timing->clk_post,
286  timing->clk_pre_inc_by_2, timing->clk_zero,
287  timing->clk_trail, timing->clk_prepare, timing->hs_exit,
288  timing->hs_zero, timing->hs_prepare, timing->hs_trail,
289  timing->hs_rqst);
290 }
291 
292 static enum cb_err mdss_dsi_phy_timings(struct msm_dsi_phy_ctrl *phy_timings)
293 {
294  uint32_t reg_val = 0;
295 
296  /*
297  * Step 4 Common block including GlobalTiming Parameters
298  * BYTECLK_SEL
299  */
300  reg_val = (0x02 << 3) & 0x18;
301  write32(&dsi0_phy->phy_cmn_glbl_ctrl, reg_val);
302 
303  /* VREG_CTRL */
305 
306  /*HALFBYTECLK_EN*/
308 
309  /* T_CLK_ZERO */
310  write32(&dsi0_phy->phy_cmn_timing_ctrl[1], phy_timings->clk_zero);
311 
312  /* T_CLK_PREPARE */
313  write32(&dsi0_phy->phy_cmn_timing_ctrl[2], phy_timings->clk_prepare);
314 
315  /* T_CLK_TRAIL */
316  write32(&dsi0_phy->phy_cmn_timing_ctrl[3], phy_timings->clk_trail);
317 
318  /* T_HS_EXIT */
319  write32(&dsi0_phy->phy_cmn_timing_ctrl[4], phy_timings->hs_exit);
320 
321  /* T_HS_ZERO */
322  write32(&dsi0_phy->phy_cmn_timing_ctrl[5], phy_timings->hs_zero);
323 
324  /* T_HS_PREPARE */
325  write32(&dsi0_phy->phy_cmn_timing_ctrl[6], phy_timings->hs_prepare);
326 
327  /* T_HS_TRAIL */
328  write32(&dsi0_phy->phy_cmn_timing_ctrl[7], phy_timings->hs_trail);
329 
330  /* T_HS_RQST */
331  write32(&dsi0_phy->phy_cmn_timing_ctrl[8], phy_timings->hs_rqst);
332 
333  /* T_TA_GO & T_TA_SURE */
335  phy_timings->ta_sure << 3 | phy_timings->ta_go);
336 
337  /* T_TA_GET */
338  write32(&dsi0_phy->phy_cmn_timing_ctrl[10], phy_timings->ta_get);
339 
340  /*DSIPHY_TRIG3_CMD*/
342 
343  /* DSI clock out timing ctrl T_CLK_PRE & T_CLK_POST*/
344  reg_val = ((phy_timings->clk_post << 8) | phy_timings->clk_pre);
345  write32(&dsi0->clkout_timing_ctrl, reg_val);
346 
347  /* DCTRL */
348  write32(&dsi0_phy->phy_cmn_ctrl2, 0x40);
349 
350  return CB_SUCCESS;
351 }
352 
353 static enum cb_err dsi_phy_waitforrefgen(void)
354 {
356  uint32_t refgen = 0;
357  enum cb_err ret = CB_SUCCESS;
358 
359  while (!refgen) {
360  refgen = (read32(&dsi0_phy->phy_cmn_phy_status) & 0x1);
361  if (!refgen) {
362  udelay(100);
363  timeout--;
364  if (!timeout) {
365  /* timeout while polling the lock status */
366  ret = CB_ERR;
367  break;
368  }
369  }
370  }
371 
372  return ret;
373 }
374 
375 static enum cb_err mdss_dsi_phy_commit(void)
376 {
377  enum cb_err ret = CB_SUCCESS;
378 
379  ret = dsi_phy_waitforrefgen();
380  if (ret) {
381  printk(BIOS_ERR, "%s: waitforrefgen error\n", __func__);
382  return ret;
383  }
384 
386 
387  /* Remove PLL, DIG and all lanes from pwrdn */
388  write32(&dsi0_phy->phy_cmn_ctrl0, 0x7F);
389 
390  /* Lane enable */
392 
398 
399  return ret;
400 }
401 
402 static void mdss_dsi_phy_setup(void)
403 {
404  /* First reset phy */
406 
407  /* commit phy settings */
409 }
410 
411 static void dsi_phy_resync_fifo(void)
412 {
413  /* Resync FIFO*/
415 }
416 
417 static void dsi_phy_pll_global_clk_enable(bool enable)
418 {
420  uint32_t clk_enable = 0;
421 
422  /* Set CLK_EN */
423  if (enable)
424  clk_enable = 1;
425 
426  clk_cfg &= ~0x20;
427  clk_cfg |= ((clk_enable << 0x5) & 0x20);
428 
429  /* clk cfg1 */
430  write32(&dsi0_phy->phy_cmn_clk_cfg1, clk_cfg);
431 }
432 
433 static enum cb_err dsi_phy_pll_lock_detect(void)
434 {
435  enum cb_err ret = CB_SUCCESS;
436 
437  /* Enable PLL */
439 
440  /* Wait for Lock */
441  if (!wait_us(15000, read32(&phy_pll_qlink->pll_common_status_one) & 0x1)) {
442  /* timeout while polling the lock status */
443  ret = CB_ERR;
444  printk(BIOS_ERR, "dsi pll lock detect timedout, error.\n");
445  }
446 
447  return ret;
448 }
449 
451 {
452  uint32_t reg_val = 0;
453 
455 
456  /* clear bit 0 and keep all other bits including bit 2 */
457  reg_val &= ~0x01;
458 
459  /* toggle bit 0 */
460  write32(&dsi0_phy->phy_ln_regs[DSI_LANEID_3].dln0_tx_dctrl, (0x01 | reg_val));
462 }
463 
464 static void dsi_phy_pll_set_source(void)
465 {
467  uint32_t dsi_clksel = 1;
468 
469  clk_cfg &= ~0x03;
470  clk_cfg |= ((dsi_clksel) & 0x3);
471 
472  /* clk cfg1 */
473  write32(&dsi0_phy->phy_cmn_clk_cfg1, clk_cfg);
474 }
475 
476 static void dsi_phy_pll_bias_enable(bool enable)
477 {
478  uint32_t reg_val = 0;
479 
480  /* Set BIAS_EN_MUX, BIAS_EN */
481  if (enable)
482  reg_val = (0x01 << 6) | (0x01 << 7);
483 
484  /* pll system muxes */
486 
487 }
488 
490 {
491  uint32_t m_val = 1;
492  uint32_t n_val = 1;
493 
494  if (phy_cfg->bits_per_pixel == 18) {
495  switch (phy_cfg->num_data_lanes) {
496  case 1:
497  case 2:
498  m_val = 2;
499  n_val = 3;
500  break;
501  case 4:
502  m_val = 4;
503  n_val = 9;
504  break;
505  default:
506  break;
507  }
508  } else if ((phy_cfg->bits_per_pixel == 16) &&
509  (phy_cfg->num_data_lanes == 3)) {
510  m_val = 3;
511  n_val = 8;
512  } else if ((phy_cfg->bits_per_pixel == 30) &&
513  (phy_cfg->num_data_lanes == 4)) {
514  m_val = 2;
515  n_val = 3;
516  }
517 
518  /*Save M/N info */
519  phy_cfg->pclk_divnumerator = m_val;
520  phy_cfg->pclk_divdenominator = n_val;
521 }
522 
524 {
525  uint32_t m_val = phy_cfg->pclk_divnumerator;
526  uint32_t n_val = phy_cfg->pclk_divdenominator;
527  uint32_t div_ctrl = 0;
528 
529  div_ctrl = (m_val * phy_cfg->bits_per_pixel) /
530  (n_val * phy_cfg->num_data_lanes * 2);
531 
532  return div_ctrl;
533 }
534 
535 
537 {
538  bool div_found = false;
539  uint32_t m_val = 1;
540  uint32_t n_val = 1;
541  uint32_t div_ctrl = 0;
542  uint32_t reg_val = 0;
543  uint32_t pll_post_div = 0;
544  uint32_t phy_post_div = 0;
545  uint64_t vco_freq_hz = 0;
546  uint64_t fval = 0;
547  uint64_t pll_output_freq_hz;
548  uint64_t desired_bitclk_hz;
549  uint64_t min_vco_freq_hz = 0;
550  uint32_t lut_max;
551  int i;
552  struct dsi_phy_divider_lut_entry_type *lut;
553 
554  /* use 1000Mhz */
555  min_vco_freq_hz = (HAL_DSI_PLL_VCO_MIN_MHZ_2_2_0 * 1000000);
556 
558 
559  m_val = phy_cfg->pclk_divnumerator;
560  n_val = phy_cfg->pclk_divdenominator;
561 
562  /* Desired clock in MHz */
563  desired_bitclk_hz = (uint64_t)phy_cfg->desired_bitclk_freq;
564 
565  /* D Phy */
566  lut = pll_dividerlut_dphy;
567  lut_max = ARRAY_SIZE(pll_dividerlut_dphy);
568  lut += (lut_max - 1);
569 
570  /* PLL Post Div - from LUT
571  * Check the LUT in reverse order
572  */
573  for (i = lut_max - 1; i >= 0; i--, lut--) {
574  fval = (uint64_t)lut->phy_post_div *
575  (uint64_t)lut->pll_post_div;
576  if (fval) {
577  if ((desired_bitclk_hz * fval) > min_vco_freq_hz) {
578  /* Range found */
579  pll_post_div = lut->pll_post_div;
580  phy_post_div = lut->phy_post_div;
581  div_found = true;
582  break;
583  }
584  }
585  }
586 
587  if (div_found) {
588  phy_cfg->pll_post_div = pll_post_div;
589  phy_cfg->phy_post_div = phy_post_div;
590 
591  /*div_ctrl_7_4 */
592  div_ctrl = dsi_phy_dsiclk_divider(phy_cfg);
593 
594  /* DIV_CTRL_7_4 DIV_CTRL_3_0
595  * (DIV_CTRL_3_0 = PHY post divider ratio)
596  */
597  reg_val = (div_ctrl << 0x04) & 0xf0;
598  reg_val |= (phy_post_div & 0x0f);
599  write32(&dsi0_phy->phy_cmn_clk_cfg0, reg_val);
600 
601  /* PLL output frequency = desired_bitclk_hz * phy_post_div */
602  pll_output_freq_hz = desired_bitclk_hz * phy_post_div;
603 
604  /* VCO output freq*/
605  vco_freq_hz = pll_output_freq_hz * pll_post_div;
606 
607  }
608 
609  return (unsigned long)vco_freq_hz;
610 }
611 
612 static void dsi_phy_pll_outputdiv_rate(struct dsi_phy_configtype *pll_cfg)
613 {
614  /* Output divider */
616  uint32_t reg_val = 0;
617 
618  pll_post_div = log2(pll_cfg->pll_post_div);
619  reg_val = pll_post_div & 0x3;
621 }
622 
624 {
625  unsigned long vco_freq_hz;
626  enum cb_err ret = CB_SUCCESS;
627 
628  /* validate input parameters */
629  if (!phy_cfg) {
630  return CB_ERR;
631  } else if ((phy_cfg->bits_per_pixel != 16) &&
632  (phy_cfg->bits_per_pixel != 18) &&
633  (phy_cfg->bits_per_pixel != 24)) {
634  /* Unsupported pixel bit depth */
635  return CB_ERR;
636  } else if ((phy_cfg->num_data_lanes == 0) ||
637  (phy_cfg->num_data_lanes > 4)) {
638  /* Illegal number of DSI data lanes */
639  return CB_ERR;
640  }
641 
642  vco_freq_hz = dsi_phy_calc_clk_divider(phy_cfg);
643  if (!vco_freq_hz) {
644  /* bitclock too low - unsupported */
645  printk(BIOS_ERR, "vco_freq_hz is 0, unsupported\n");
646  return CB_ERR;
647  }
648 
649  /* Enable PLL bias */
651 
652  /* Set byte clk source */
654 
656  dsi_phy_pll_vco_10nm_set_rate(vco_freq_hz);
658 
659  /* Steps 6,7 Start PLL & Lock */
660  if (ret == CB_SUCCESS)
661  ret = dsi_phy_pll_lock_detect();
662 
663  /* Step 8 - Resync Data Paths */
664  if (ret == CB_SUCCESS) {
665  /* Global clock enable */
667 
668  /* Resync FIFOs */
670  }
671 
672  return ret;
673 }
674 
676 {
677  uint64_t desired_bclk = 0;
678  uint32_t pixel_clock_in_hz;
679 
680  pixel_clock_in_hz = edid->mode.pixel_clock * KHz;
681  if (num_lines) {
682  desired_bclk = pixel_clock_in_hz * (uint64_t)bpp;
683  desired_bclk = desired_bclk/(uint64_t)(num_lines);
684  }
685 
686  printk(BIOS_INFO, "Desired bitclock: %uHz\n", (uint32_t)desired_bclk);
687  return (uint32_t)desired_bclk;
688 }
689 
690 static enum cb_err mdss_dsi_phy_pll_setup(struct edid *edid,
691  uint32_t num_of_lanes, uint32_t bpp)
692 {
694  struct msm_dsi_phy_ctrl phy_timings;
695  enum cb_err ret;
696 
697  /* Setup the PhyStructure */
698  memset(&phy_cfg, 0, sizeof(struct dsi_phy_configtype));
699  memset(&phy_timings, 0, sizeof(struct msm_dsi_phy_ctrl));
700 
701  phy_cfg.bits_per_pixel = bpp;
702  phy_cfg.num_data_lanes = num_of_lanes;
703 
704  /* desired DSI PLL bit clk freq in Hz */
705  phy_cfg.desired_bitclk_freq = dsi_calc_desired_bitclk(edid, num_of_lanes, bpp);
706 
708  if (ret)
709  return ret;
710  mdss_dsi_calculate_phy_timings(&phy_timings, &phy_cfg);
711  ret = mdss_dsi_phy_timings(&phy_timings);
712 
713  return ret;
714 }
715 
716 static enum cb_err enable_dsi_clk(void)
717 {
718  enum cb_err ret;
719  uint32_t i = 0;
720  struct mdp_external_clock_entry clks[] = {
721  {.clk_type = MDSS_CLK_ESC0, .clk_secondary_source = 1},
722  {.clk_type = MDSS_CLK_PCLK0, .clk_source = 1},
723  {.clk_type = MDSS_CLK_BYTE0, .clk_source = 1},
724  {.clk_type = MDSS_CLK_BYTE0_INTF, .clk_source = 1,
725  .clk_div = 1, .source_div = 2},
726  };
727 
728  for (i = 0; i < ARRAY_SIZE(clks); i++) {
729  /* Set Ext Source */
730  ret = mdss_clock_configure(clks[i].clk_type,
731  clks[i].clk_source,
732  clks[i].clk_div,
733  clks[i].clk_pll_m,
734  clks[i].clk_pll_n,
735  clks[i].clk_pll_2d);
736  if (ret) {
738  "mdss_clock_configure failed for %u\n",
739  clks[i].clk_type);
740  return CB_ERR;
741  }
742 
743  ret = mdss_clock_enable(clks[i].clk_type);
744  if (ret) {
746  "mdss_clock_enable failed for %u\n",
747  clks[i].clk_type);
748  return CB_ERR;
749  }
750  }
751 
752  return ret;
753 }
754 
755 enum cb_err mdss_dsi_phy_10nm_init(struct edid *edid, uint32_t num_of_lanes, uint32_t bpp)
756 {
757  enum cb_err ret;
758 
759  /* Phy set up */
761  ret = mdss_dsi_phy_pll_setup(edid, num_of_lanes, bpp);
762  enable_dsi_clk();
763 
764  return ret;
765 }
static void write32(void *addr, uint32_t val)
Definition: mmio.h:40
static uint32_t read32(const void *addr)
Definition: mmio.h:22
void * memset(void *dstpp, int c, size_t len)
Definition: memset.c:12
#define ARRAY_SIZE(a)
Definition: helpers.h:12
#define KHz
Definition: helpers.h:79
#define MAX(a, b)
Definition: helpers.h:40
#define DIV_ROUND_UP(x, y)
Definition: helpers.h:60
cb_err
coreboot error codes
Definition: cb_err.h:15
@ CB_ERR
Generic error code.
Definition: cb_err.h:17
@ CB_SUCCESS
Call completed successfully.
Definition: cb_err.h:16
#define printk(level,...)
Definition: stdlib.h:16
static struct dsi_regs *const dsi0
Definition: dsi_common.h:87
static enum cb_err dsi_phy_waitforrefgen(void)
Definition: dsi_phy.c:353
dsi_laneid_type
Definition: dsi_phy.c:63
@ DSI_LANEID_MAX
Definition: dsi_phy.c:69
@ DSI_LANEID_2
Definition: dsi_phy.c:66
@ DSI_LANEID_CLK
Definition: dsi_phy.c:68
@ DSI_LANEID_0
Definition: dsi_phy.c:64
@ DSI_LANEID_1
Definition: dsi_phy.c:65
@ DSI_LANEID_FORCE_32BIT
Definition: dsi_phy.c:70
@ DSI_LANEID_3
Definition: dsi_phy.c:67
static void mdss_dsi_phy_setup(void)
Definition: dsi_phy.c:402
#define HAL_DSI_PHY_REFGEN_TIMEOUT_MS
Definition: dsi_phy.c:16
static void dsi_phy_pll_outputdiv_rate(struct dsi_phy_configtype *pll_cfg)
Definition: dsi_phy.c:612
#define S_DIV_ROUND_UP(n, d)
Definition: dsi_phy.c:23
static struct dsi_phy_divider_lut_entry_type pll_dividerlut_dphy[]
Definition: dsi_phy.c:40
static void dsi_phy_resync_fifo(void)
Definition: dsi_phy.c:411
static void mdss_dsi_calculate_phy_timings(struct msm_dsi_phy_ctrl *timing, struct dsi_phy_configtype *phy_cfg)
Definition: dsi_phy.c:192
static void dsi_phy_mnd_divider(struct dsi_phy_configtype *phy_cfg)
Definition: dsi_phy.c:489
enum cb_err mdss_dsi_phy_10nm_init(struct edid *edid, uint32_t num_of_lanes, uint32_t bpp)
Definition: dsi_phy.c:755
static s32 linear_inter(s32 tmax, s32 tmin, s32 percent, s32 min_result, bool even)
Definition: dsi_phy.c:85
static void dsi_phy_pll_bias_enable(bool enable)
Definition: dsi_phy.c:476
static enum cb_err enable_dsi_clk(void)
Definition: dsi_phy.c:716
static void dsi_phy_toggle_dln3_tx_dctrl(void)
Definition: dsi_phy.c:450
static void mdss_dsi_phy_setup_lanephy(enum dsi_laneid_type lane)
Definition: dsi_phy.c:117
static enum cb_err dsi_phy_pll_lock_detect(void)
Definition: dsi_phy.c:433
static enum cb_err dsi_phy_pll_calcandcommit(struct dsi_phy_configtype *phy_cfg)
Definition: dsi_phy.c:623
static enum cb_err mdss_dsi_phy_commit(void)
Definition: dsi_phy.c:375
static uint32_t dsi_phy_dsiclk_divider(struct dsi_phy_configtype *phy_cfg)
Definition: dsi_phy.c:523
static unsigned long dsi_phy_calc_clk_divider(struct dsi_phy_configtype *phy_cfg)
Definition: dsi_phy.c:536
static uint32_t dsi_calc_desired_bitclk(struct edid *edid, uint32_t num_lines, uint32_t bpp)
Definition: dsi_phy.c:675
#define mult_frac(x, numer, denom)
Definition: dsi_phy.c:26
static enum cb_err mdss_dsi_phy_pll_setup(struct edid *edid, uint32_t num_of_lanes, uint32_t bpp)
Definition: dsi_phy.c:690
static void mdss_dsi_phy_reset(void)
Definition: dsi_phy.c:98
#define HAL_DSI_PLL_VCO_MIN_MHZ_2_2_0
Definition: dsi_phy.c:21
static enum cb_err mdss_dsi_phy_timings(struct msm_dsi_phy_ctrl *phy_timings)
Definition: dsi_phy.c:292
static void dsi_phy_pll_set_source(void)
Definition: dsi_phy.c:464
static void dsi_phy_pll_global_clk_enable(bool enable)
Definition: dsi_phy.c:417
static void mdss_dsi_power_down(void)
Definition: dsi_phy.c:105
void dsi_phy_pll_vco_10nm_set_rate(unsigned long rate)
Definition: dsi_phy_pll.c:137
#define wait_us(timeout_us, condition)
Definition: timer.h:198
static int log2(u32 x)
Definition: lib.h:53
#define BIOS_INFO
BIOS_INFO - Expected events.
Definition: loglevel.h:113
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
static struct dsi_phy_pll_qlink_regs *const phy_pll_qlink
Definition: mdssreg.h:453
static struct dsi_phy_regs *const dsi0_phy
Definition: mdssreg.h:452
static void phy_cfg(u32 channel, const struct rk3288_sdram_params *sdram_params)
Definition: sdram.c:630
int mdss_clock_enable(enum mdss_clock clk_type)
Definition: clock.c:220
enum cb_err mdss_clock_configure(enum mdss_clock clk_type, uint32_t source, uint32_t divider, uint32_t m, uint32_t n, uint32_t d_2)
Definition: clock.c:191
@ MDSS_CLK_ESC0
Definition: clock.h:124
@ MDSS_CLK_BYTE0
Definition: clock.h:126
@ MDSS_CLK_BYTE0_INTF
Definition: clock.h:127
@ MDSS_CLK_PCLK0
Definition: clock.h:125
unsigned short uint16_t
Definition: stdint.h:11
unsigned int uint32_t
Definition: stdint.h:14
unsigned long long uint64_t
Definition: stdint.h:17
int32_t s32
Definition: stdint.h:50
uint32_t desired_bitclk_freq
Definition: dsi_phy.c:74
uint32_t pclk_divnumerator
Definition: dsi_phy.c:77
uint32_t pll_post_div
Definition: dsi_phy.c:82
uint32_t phy_post_div
Definition: dsi_phy.c:81
uint32_t bits_per_pixel
Definition: dsi_phy.c:75
uint32_t num_data_lanes
Definition: dsi_phy.c:76
uint32_t pclk_divdenominator
Definition: dsi_phy.c:78
Definition: dsi_phy.c:34
uint16_t phy_post_div
Definition: dsi_phy.c:36
uint16_t pll_post_div
Definition: dsi_phy.c:35
struct dsi_phy_regs::@1421 phy_ln_regs[5]
uint32_t phy_cmn_phy_status
Definition: mdssreg.h:99
uint32_t dln0_pin_swap
Definition: mdssreg.h:104
uint32_t phy_cmn_timing_ctrl[12]
Definition: mdssreg.h:97
uint32_t phy_cmn_ctrl1
Definition: mdssreg.h:89
uint32_t dln0_offset_bot_ctrl
Definition: mdssreg.h:107
uint32_t phy_cmn_pll_ctrl
Definition: mdssreg.h:93
uint32_t dln0_tx_dctrl
Definition: mdssreg.h:110
uint32_t dln0_cfg[4]
Definition: mdssreg.h:102
uint32_t phy_cmn_clk_cfg0
Definition: mdssreg.h:83
uint32_t phy_cmn_rbuf_ctrl
Definition: mdssreg.h:86
uint32_t dln0_hstx_str_ctrl
Definition: mdssreg.h:105
uint32_t phy_cmn_clk_cfg1
Definition: mdssreg.h:84
uint32_t phy_cmn_glbl_ctrl
Definition: mdssreg.h:85
uint32_t dln0_lptx_str_ctrl
Definition: mdssreg.h:108
uint32_t phy_cmn_vreg_ctrl
Definition: mdssreg.h:87
uint32_t dln0_offset_top_ctrl
Definition: mdssreg.h:106
uint32_t phy_cmn_dsi_lane_ctrl0
Definition: mdssreg.h:95
uint32_t phy_cmn_ctrl0
Definition: mdssreg.h:88
uint32_t phy_cmn_ctrl2
Definition: mdssreg.h:90
uint32_t dln0_lprx_ctrl
Definition: mdssreg.h:109
uint32_t clkout_timing_ctrl
Definition: mdssreg.h:42
unsigned int pixel_clock
Definition: edid.h:22
Definition: edid.h:49
struct edid_mode mode
Definition: edid.h:72
uint32_t clk_pll_2d
enum mdss_clock clk_type
uint32_t clk_source
uint32_t clk_pll_m
uint32_t clk_pll_n
uint32_t clk_div
uint32_t hs_zero
Definition: dsi_phy.h:43
uint32_t clk_post
Definition: dsi_phy.h:38
bool clk_pre_inc_by_2
Definition: dsi_phy.h:51
uint32_t half_byte_clk_en
Definition: dsi_phy.h:50
uint32_t clk_trail
Definition: dsi_phy.h:40
uint32_t hs_rqst
Definition: dsi_phy.h:46
uint32_t hs_trail
Definition: dsi_phy.h:45
uint32_t ta_get
Definition: dsi_phy.h:49
uint32_t clk_pre
Definition: dsi_phy.h:37
uint32_t clk_zero
Definition: dsi_phy.h:39
uint32_t clk_prepare
Definition: dsi_phy.h:41
uint32_t hs_prepare
Definition: dsi_phy.h:44
uint32_t ta_go
Definition: dsi_phy.h:47
uint32_t hs_exit
Definition: dsi_phy.h:42
uint32_t ta_sure
Definition: dsi_phy.h:48
void udelay(uint32_t us)
Definition: udelay.c:15