intel_dsi_panel_vbt.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. *
  23. * Author: Shobhit Kumar <shobhit.kumar@intel.com>
  24. *
  25. */
  26. #include <drm/drmP.h>
  27. #include <drm/drm_crtc.h>
  28. #include <drm/drm_edid.h>
  29. #include <drm/i915_drm.h>
  30. #include <drm/drm_panel.h>
  31. #include <linux/slab.h>
  32. #include <video/mipi_display.h>
  33. #include <asm/intel-mid.h>
  34. #include <video/mipi_display.h>
  35. #include "i915_drv.h"
  36. #include "intel_drv.h"
  37. #include "intel_dsi.h"
  38. #include "intel_dsi_cmd.h"
  39. struct vbt_panel {
  40. struct drm_panel panel;
  41. struct intel_dsi *intel_dsi;
  42. };
  43. static inline struct vbt_panel *to_vbt_panel(struct drm_panel *panel)
  44. {
  45. return container_of(panel, struct vbt_panel, panel);
  46. }
  47. #define MIPI_TRANSFER_MODE_SHIFT 0
  48. #define MIPI_VIRTUAL_CHANNEL_SHIFT 1
  49. #define MIPI_PORT_SHIFT 3
  50. #define PREPARE_CNT_MAX 0x3F
  51. #define EXIT_ZERO_CNT_MAX 0x3F
  52. #define CLK_ZERO_CNT_MAX 0xFF
  53. #define TRAIL_CNT_MAX 0x1F
  54. #define NS_KHZ_RATIO 1000000
  55. #define GPI0_NC_0_HV_DDI0_HPD 0x4130
  56. #define GPIO_NC_0_HV_DDI0_PAD 0x4138
  57. #define GPIO_NC_1_HV_DDI0_DDC_SDA 0x4120
  58. #define GPIO_NC_1_HV_DDI0_DDC_SDA_PAD 0x4128
  59. #define GPIO_NC_2_HV_DDI0_DDC_SCL 0x4110
  60. #define GPIO_NC_2_HV_DDI0_DDC_SCL_PAD 0x4118
  61. #define GPIO_NC_3_PANEL0_VDDEN 0x4140
  62. #define GPIO_NC_3_PANEL0_VDDEN_PAD 0x4148
  63. #define GPIO_NC_4_PANEL0_BLKEN 0x4150
  64. #define GPIO_NC_4_PANEL0_BLKEN_PAD 0x4158
  65. #define GPIO_NC_5_PANEL0_BLKCTL 0x4160
  66. #define GPIO_NC_5_PANEL0_BLKCTL_PAD 0x4168
  67. #define GPIO_NC_6_PCONF0 0x4180
  68. #define GPIO_NC_6_PAD 0x4188
  69. #define GPIO_NC_7_PCONF0 0x4190
  70. #define GPIO_NC_7_PAD 0x4198
  71. #define GPIO_NC_8_PCONF0 0x4170
  72. #define GPIO_NC_8_PAD 0x4178
  73. #define GPIO_NC_9_PCONF0 0x4100
  74. #define GPIO_NC_9_PAD 0x4108
  75. #define GPIO_NC_10_PCONF0 0x40E0
  76. #define GPIO_NC_10_PAD 0x40E8
  77. #define GPIO_NC_11_PCONF0 0x40F0
  78. #define GPIO_NC_11_PAD 0x40F8
  79. struct gpio_table {
  80. u16 function_reg;
  81. u16 pad_reg;
  82. u8 init;
  83. };
  84. static struct gpio_table gtable[] = {
  85. { GPI0_NC_0_HV_DDI0_HPD, GPIO_NC_0_HV_DDI0_PAD, 0 },
  86. { GPIO_NC_1_HV_DDI0_DDC_SDA, GPIO_NC_1_HV_DDI0_DDC_SDA_PAD, 0 },
  87. { GPIO_NC_2_HV_DDI0_DDC_SCL, GPIO_NC_2_HV_DDI0_DDC_SCL_PAD, 0 },
  88. { GPIO_NC_3_PANEL0_VDDEN, GPIO_NC_3_PANEL0_VDDEN_PAD, 0 },
  89. { GPIO_NC_4_PANEL0_BLKEN, GPIO_NC_4_PANEL0_BLKEN_PAD, 0 },
  90. { GPIO_NC_5_PANEL0_BLKCTL, GPIO_NC_5_PANEL0_BLKCTL_PAD, 0 },
  91. { GPIO_NC_6_PCONF0, GPIO_NC_6_PAD, 0 },
  92. { GPIO_NC_7_PCONF0, GPIO_NC_7_PAD, 0 },
  93. { GPIO_NC_8_PCONF0, GPIO_NC_8_PAD, 0 },
  94. { GPIO_NC_9_PCONF0, GPIO_NC_9_PAD, 0 },
  95. { GPIO_NC_10_PCONF0, GPIO_NC_10_PAD, 0},
  96. { GPIO_NC_11_PCONF0, GPIO_NC_11_PAD, 0}
  97. };
  98. static inline enum port intel_dsi_seq_port_to_port(u8 port)
  99. {
  100. return port ? PORT_C : PORT_A;
  101. }
  102. static const u8 *mipi_exec_send_packet(struct intel_dsi *intel_dsi,
  103. const u8 *data)
  104. {
  105. u8 type, byte, mode, vc, seq_port;
  106. u16 len;
  107. enum port port;
  108. byte = *data++;
  109. mode = (byte >> MIPI_TRANSFER_MODE_SHIFT) & 0x1;
  110. vc = (byte >> MIPI_VIRTUAL_CHANNEL_SHIFT) & 0x3;
  111. seq_port = (byte >> MIPI_PORT_SHIFT) & 0x3;
  112. /* For DSI single link on Port A & C, the seq_port value which is
  113. * parsed from Sequence Block#53 of VBT has been set to 0
  114. * Now, read/write of packets for the DSI single link on Port A and
  115. * Port C will based on the DVO port from VBT block 2.
  116. */
  117. if (intel_dsi->ports == (1 << PORT_C))
  118. port = PORT_C;
  119. else
  120. port = intel_dsi_seq_port_to_port(seq_port);
  121. /* LP or HS mode */
  122. intel_dsi->hs = mode;
  123. /* get packet type and increment the pointer */
  124. type = *data++;
  125. len = *((u16 *) data);
  126. data += 2;
  127. switch (type) {
  128. case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM:
  129. dsi_vc_generic_write_0(intel_dsi, vc, port);
  130. break;
  131. case MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM:
  132. dsi_vc_generic_write_1(intel_dsi, vc, *data, port);
  133. break;
  134. case MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM:
  135. dsi_vc_generic_write_2(intel_dsi, vc, *data, *(data + 1), port);
  136. break;
  137. case MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM:
  138. case MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM:
  139. case MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM:
  140. DRM_DEBUG_DRIVER("Generic Read not yet implemented or used\n");
  141. break;
  142. case MIPI_DSI_GENERIC_LONG_WRITE:
  143. dsi_vc_generic_write(intel_dsi, vc, data, len, port);
  144. break;
  145. case MIPI_DSI_DCS_SHORT_WRITE:
  146. dsi_vc_dcs_write_0(intel_dsi, vc, *data, port);
  147. break;
  148. case MIPI_DSI_DCS_SHORT_WRITE_PARAM:
  149. dsi_vc_dcs_write_1(intel_dsi, vc, *data, *(data + 1), port);
  150. break;
  151. case MIPI_DSI_DCS_READ:
  152. DRM_DEBUG_DRIVER("DCS Read not yet implemented or used\n");
  153. break;
  154. case MIPI_DSI_DCS_LONG_WRITE:
  155. dsi_vc_dcs_write(intel_dsi, vc, data, len, port);
  156. break;
  157. }
  158. data += len;
  159. return data;
  160. }
  161. static const u8 *mipi_exec_delay(struct intel_dsi *intel_dsi, const u8 *data)
  162. {
  163. u32 delay = *((const u32 *) data);
  164. usleep_range(delay, delay + 10);
  165. data += 4;
  166. return data;
  167. }
  168. static const u8 *mipi_exec_gpio(struct intel_dsi *intel_dsi, const u8 *data)
  169. {
  170. u8 gpio, action;
  171. u16 function, pad;
  172. u32 val;
  173. struct drm_device *dev = intel_dsi->base.base.dev;
  174. struct drm_i915_private *dev_priv = dev->dev_private;
  175. gpio = *data++;
  176. /* pull up/down */
  177. action = *data++;
  178. function = gtable[gpio].function_reg;
  179. pad = gtable[gpio].pad_reg;
  180. mutex_lock(&dev_priv->dpio_lock);
  181. if (!gtable[gpio].init) {
  182. /* program the function */
  183. /* FIXME: remove constant below */
  184. vlv_gpio_nc_write(dev_priv, function, 0x2000CC00);
  185. gtable[gpio].init = 1;
  186. }
  187. val = 0x4 | action;
  188. /* pull up/down */
  189. vlv_gpio_nc_write(dev_priv, pad, val);
  190. mutex_unlock(&dev_priv->dpio_lock);
  191. return data;
  192. }
  193. typedef const u8 * (*fn_mipi_elem_exec)(struct intel_dsi *intel_dsi,
  194. const u8 *data);
  195. static const fn_mipi_elem_exec exec_elem[] = {
  196. NULL, /* reserved */
  197. mipi_exec_send_packet,
  198. mipi_exec_delay,
  199. mipi_exec_gpio,
  200. NULL, /* status read; later */
  201. };
  202. /*
  203. * MIPI Sequence from VBT #53 parsing logic
  204. * We have already separated each seqence during bios parsing
  205. * Following is generic execution function for any sequence
  206. */
  207. static const char * const seq_name[] = {
  208. "UNDEFINED",
  209. "MIPI_SEQ_ASSERT_RESET",
  210. "MIPI_SEQ_INIT_OTP",
  211. "MIPI_SEQ_DISPLAY_ON",
  212. "MIPI_SEQ_DISPLAY_OFF",
  213. "MIPI_SEQ_DEASSERT_RESET"
  214. };
  215. static void generic_exec_sequence(struct intel_dsi *intel_dsi, const u8 *data)
  216. {
  217. fn_mipi_elem_exec mipi_elem_exec;
  218. int index;
  219. if (!data)
  220. return;
  221. DRM_DEBUG_DRIVER("Starting MIPI sequence - %s\n", seq_name[*data]);
  222. /* go to the first element of the sequence */
  223. data++;
  224. /* parse each byte till we reach end of sequence byte - 0x00 */
  225. while (1) {
  226. index = *data;
  227. mipi_elem_exec = exec_elem[index];
  228. if (!mipi_elem_exec) {
  229. DRM_ERROR("Unsupported MIPI element, skipping sequence execution\n");
  230. return;
  231. }
  232. /* goto element payload */
  233. data++;
  234. /* execute the element specific rotines */
  235. data = mipi_elem_exec(intel_dsi, data);
  236. /*
  237. * After processing the element, data should point to
  238. * next element or end of sequence
  239. * check if have we reached end of sequence
  240. */
  241. if (*data == 0x00)
  242. break;
  243. }
  244. }
  245. static int vbt_panel_prepare(struct drm_panel *panel)
  246. {
  247. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  248. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  249. struct drm_device *dev = intel_dsi->base.base.dev;
  250. struct drm_i915_private *dev_priv = dev->dev_private;
  251. const u8 *sequence;
  252. sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_ASSERT_RESET];
  253. generic_exec_sequence(intel_dsi, sequence);
  254. sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP];
  255. generic_exec_sequence(intel_dsi, sequence);
  256. return 0;
  257. }
  258. static int vbt_panel_unprepare(struct drm_panel *panel)
  259. {
  260. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  261. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  262. struct drm_device *dev = intel_dsi->base.base.dev;
  263. struct drm_i915_private *dev_priv = dev->dev_private;
  264. const u8 *sequence;
  265. sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET];
  266. generic_exec_sequence(intel_dsi, sequence);
  267. return 0;
  268. }
  269. static int vbt_panel_enable(struct drm_panel *panel)
  270. {
  271. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  272. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  273. struct drm_device *dev = intel_dsi->base.base.dev;
  274. struct drm_i915_private *dev_priv = dev->dev_private;
  275. const u8 *sequence;
  276. sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_ON];
  277. generic_exec_sequence(intel_dsi, sequence);
  278. return 0;
  279. }
  280. static int vbt_panel_disable(struct drm_panel *panel)
  281. {
  282. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  283. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  284. struct drm_device *dev = intel_dsi->base.base.dev;
  285. struct drm_i915_private *dev_priv = dev->dev_private;
  286. const u8 *sequence;
  287. sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_OFF];
  288. generic_exec_sequence(intel_dsi, sequence);
  289. return 0;
  290. }
  291. static int vbt_panel_get_modes(struct drm_panel *panel)
  292. {
  293. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  294. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  295. struct drm_device *dev = intel_dsi->base.base.dev;
  296. struct drm_i915_private *dev_priv = dev->dev_private;
  297. struct drm_display_mode *mode;
  298. if (!panel->connector)
  299. return 0;
  300. mode = drm_mode_duplicate(dev, dev_priv->vbt.lfp_lvds_vbt_mode);
  301. if (!mode)
  302. return 0;
  303. mode->type |= DRM_MODE_TYPE_PREFERRED;
  304. drm_mode_probed_add(panel->connector, mode);
  305. return 1;
  306. }
  307. static const struct drm_panel_funcs vbt_panel_funcs = {
  308. .disable = vbt_panel_disable,
  309. .unprepare = vbt_panel_unprepare,
  310. .prepare = vbt_panel_prepare,
  311. .enable = vbt_panel_enable,
  312. .get_modes = vbt_panel_get_modes,
  313. };
  314. struct drm_panel *vbt_panel_init(struct intel_dsi *intel_dsi, u16 panel_id)
  315. {
  316. struct drm_device *dev = intel_dsi->base.base.dev;
  317. struct drm_i915_private *dev_priv = dev->dev_private;
  318. struct mipi_config *mipi_config = dev_priv->vbt.dsi.config;
  319. struct mipi_pps_data *pps = dev_priv->vbt.dsi.pps;
  320. struct drm_display_mode *mode = dev_priv->vbt.lfp_lvds_vbt_mode;
  321. struct vbt_panel *vbt_panel;
  322. u32 bits_per_pixel = 24;
  323. u32 tlpx_ns, extra_byte_count, bitrate, tlpx_ui;
  324. u32 ui_num, ui_den;
  325. u32 prepare_cnt, exit_zero_cnt, clk_zero_cnt, trail_cnt;
  326. u32 ths_prepare_ns, tclk_trail_ns;
  327. u32 tclk_prepare_clkzero, ths_prepare_hszero;
  328. u32 lp_to_hs_switch, hs_to_lp_switch;
  329. u32 pclk, computed_ddr;
  330. u16 burst_mode_ratio;
  331. DRM_DEBUG_KMS("\n");
  332. intel_dsi->eotp_pkt = mipi_config->eot_pkt_disabled ? 0 : 1;
  333. intel_dsi->clock_stop = mipi_config->enable_clk_stop ? 1 : 0;
  334. intel_dsi->lane_count = mipi_config->lane_cnt + 1;
  335. intel_dsi->pixel_format = mipi_config->videomode_color_format << 7;
  336. intel_dsi->dual_link = mipi_config->dual_link;
  337. intel_dsi->pixel_overlap = mipi_config->pixel_overlap;
  338. if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB666)
  339. bits_per_pixel = 18;
  340. else if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB565)
  341. bits_per_pixel = 16;
  342. intel_dsi->operation_mode = mipi_config->is_cmd_mode;
  343. intel_dsi->video_mode_format = mipi_config->video_transfer_mode;
  344. intel_dsi->escape_clk_div = mipi_config->byte_clk_sel;
  345. intel_dsi->lp_rx_timeout = mipi_config->lp_rx_timeout;
  346. intel_dsi->turn_arnd_val = mipi_config->turn_around_timeout;
  347. intel_dsi->rst_timer_val = mipi_config->device_reset_timer;
  348. intel_dsi->init_count = mipi_config->master_init_timer;
  349. intel_dsi->bw_timer = mipi_config->dbi_bw_timer;
  350. intel_dsi->video_frmt_cfg_bits =
  351. mipi_config->bta_enabled ? DISABLE_VIDEO_BTA : 0;
  352. pclk = mode->clock;
  353. /* In dual link mode each port needs half of pixel clock */
  354. if (intel_dsi->dual_link) {
  355. pclk = pclk / 2;
  356. /* we can enable pixel_overlap if needed by panel. In this
  357. * case we need to increase the pixelclock for extra pixels
  358. */
  359. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
  360. pclk += DIV_ROUND_UP(mode->vtotal *
  361. intel_dsi->pixel_overlap *
  362. 60, 1000);
  363. }
  364. }
  365. /* Burst Mode Ratio
  366. * Target ddr frequency from VBT / non burst ddr freq
  367. * multiply by 100 to preserve remainder
  368. */
  369. if (intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
  370. if (mipi_config->target_burst_mode_freq) {
  371. computed_ddr =
  372. (pclk * bits_per_pixel) / intel_dsi->lane_count;
  373. if (mipi_config->target_burst_mode_freq <
  374. computed_ddr) {
  375. DRM_ERROR("Burst mode freq is less than computed\n");
  376. return NULL;
  377. }
  378. burst_mode_ratio = DIV_ROUND_UP(
  379. mipi_config->target_burst_mode_freq * 100,
  380. computed_ddr);
  381. pclk = DIV_ROUND_UP(pclk * burst_mode_ratio, 100);
  382. } else {
  383. DRM_ERROR("Burst mode target is not set\n");
  384. return NULL;
  385. }
  386. } else
  387. burst_mode_ratio = 100;
  388. intel_dsi->burst_mode_ratio = burst_mode_ratio;
  389. intel_dsi->pclk = pclk;
  390. bitrate = (pclk * bits_per_pixel) / intel_dsi->lane_count;
  391. switch (intel_dsi->escape_clk_div) {
  392. case 0:
  393. tlpx_ns = 50;
  394. break;
  395. case 1:
  396. tlpx_ns = 100;
  397. break;
  398. case 2:
  399. tlpx_ns = 200;
  400. break;
  401. default:
  402. tlpx_ns = 50;
  403. break;
  404. }
  405. switch (intel_dsi->lane_count) {
  406. case 1:
  407. case 2:
  408. extra_byte_count = 2;
  409. break;
  410. case 3:
  411. extra_byte_count = 4;
  412. break;
  413. case 4:
  414. default:
  415. extra_byte_count = 3;
  416. break;
  417. }
  418. /*
  419. * ui(s) = 1/f [f in hz]
  420. * ui(ns) = 10^9 / (f*10^6) [f in Mhz] -> 10^3/f(Mhz)
  421. */
  422. /* in Kbps */
  423. ui_num = NS_KHZ_RATIO;
  424. ui_den = bitrate;
  425. tclk_prepare_clkzero = mipi_config->tclk_prepare_clkzero;
  426. ths_prepare_hszero = mipi_config->ths_prepare_hszero;
  427. /*
  428. * B060
  429. * LP byte clock = TLPX/ (8UI)
  430. */
  431. intel_dsi->lp_byte_clk = DIV_ROUND_UP(tlpx_ns * ui_den, 8 * ui_num);
  432. /* count values in UI = (ns value) * (bitrate / (2 * 10^6))
  433. *
  434. * Since txddrclkhs_i is 2xUI, all the count values programmed in
  435. * DPHY param register are divided by 2
  436. *
  437. * prepare count
  438. */
  439. ths_prepare_ns = max(mipi_config->ths_prepare,
  440. mipi_config->tclk_prepare);
  441. prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * 2);
  442. /* exit zero count */
  443. exit_zero_cnt = DIV_ROUND_UP(
  444. (ths_prepare_hszero - ths_prepare_ns) * ui_den,
  445. ui_num * 2
  446. );
  447. /*
  448. * Exit zero is unified val ths_zero and ths_exit
  449. * minimum value for ths_exit = 110ns
  450. * min (exit_zero_cnt * 2) = 110/UI
  451. * exit_zero_cnt = 55/UI
  452. */
  453. if (exit_zero_cnt < (55 * ui_den / ui_num))
  454. if ((55 * ui_den) % ui_num)
  455. exit_zero_cnt += 1;
  456. /* clk zero count */
  457. clk_zero_cnt = DIV_ROUND_UP(
  458. (tclk_prepare_clkzero - ths_prepare_ns)
  459. * ui_den, 2 * ui_num);
  460. /* trail count */
  461. tclk_trail_ns = max(mipi_config->tclk_trail, mipi_config->ths_trail);
  462. trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, 2 * ui_num);
  463. if (prepare_cnt > PREPARE_CNT_MAX ||
  464. exit_zero_cnt > EXIT_ZERO_CNT_MAX ||
  465. clk_zero_cnt > CLK_ZERO_CNT_MAX ||
  466. trail_cnt > TRAIL_CNT_MAX)
  467. DRM_DEBUG_DRIVER("Values crossing maximum limits, restricting to max values\n");
  468. if (prepare_cnt > PREPARE_CNT_MAX)
  469. prepare_cnt = PREPARE_CNT_MAX;
  470. if (exit_zero_cnt > EXIT_ZERO_CNT_MAX)
  471. exit_zero_cnt = EXIT_ZERO_CNT_MAX;
  472. if (clk_zero_cnt > CLK_ZERO_CNT_MAX)
  473. clk_zero_cnt = CLK_ZERO_CNT_MAX;
  474. if (trail_cnt > TRAIL_CNT_MAX)
  475. trail_cnt = TRAIL_CNT_MAX;
  476. /* B080 */
  477. intel_dsi->dphy_reg = exit_zero_cnt << 24 | trail_cnt << 16 |
  478. clk_zero_cnt << 8 | prepare_cnt;
  479. /*
  480. * LP to HS switch count = 4TLPX + PREP_COUNT * 2 + EXIT_ZERO_COUNT * 2
  481. * + 10UI + Extra Byte Count
  482. *
  483. * HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
  484. * Extra Byte Count is calculated according to number of lanes.
  485. * High Low Switch Count is the Max of LP to HS and
  486. * HS to LP switch count
  487. *
  488. */
  489. tlpx_ui = DIV_ROUND_UP(tlpx_ns * ui_den, ui_num);
  490. /* B044 */
  491. /* FIXME:
  492. * The comment above does not match with the code */
  493. lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * 2 +
  494. exit_zero_cnt * 2 + 10, 8);
  495. hs_to_lp_switch = DIV_ROUND_UP(mipi_config->ths_trail + 2 * tlpx_ui, 8);
  496. intel_dsi->hs_to_lp_count = max(lp_to_hs_switch, hs_to_lp_switch);
  497. intel_dsi->hs_to_lp_count += extra_byte_count;
  498. /* B088 */
  499. /* LP -> HS for clock lanes
  500. * LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
  501. * extra byte count
  502. * 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
  503. * 2(in UI) + extra byte count
  504. * In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
  505. * 8 + extra byte count
  506. */
  507. intel_dsi->clk_lp_to_hs_count =
  508. DIV_ROUND_UP(
  509. 4 * tlpx_ui + prepare_cnt * 2 +
  510. clk_zero_cnt * 2,
  511. 8);
  512. intel_dsi->clk_lp_to_hs_count += extra_byte_count;
  513. /* HS->LP for Clock Lanes
  514. * Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
  515. * Extra byte count
  516. * 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
  517. * In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
  518. * Extra byte count
  519. */
  520. intel_dsi->clk_hs_to_lp_count =
  521. DIV_ROUND_UP(2 * tlpx_ui + trail_cnt * 2 + 8,
  522. 8);
  523. intel_dsi->clk_hs_to_lp_count += extra_byte_count;
  524. DRM_DEBUG_KMS("Eot %s\n", intel_dsi->eotp_pkt ? "enabled" : "disabled");
  525. DRM_DEBUG_KMS("Clockstop %s\n", intel_dsi->clock_stop ?
  526. "disabled" : "enabled");
  527. DRM_DEBUG_KMS("Mode %s\n", intel_dsi->operation_mode ? "command" : "video");
  528. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
  529. DRM_DEBUG_KMS("Dual link: DSI_DUAL_LINK_FRONT_BACK\n");
  530. else if (intel_dsi->dual_link == DSI_DUAL_LINK_PIXEL_ALT)
  531. DRM_DEBUG_KMS("Dual link: DSI_DUAL_LINK_PIXEL_ALT\n");
  532. else
  533. DRM_DEBUG_KMS("Dual link: NONE\n");
  534. DRM_DEBUG_KMS("Pixel Format %d\n", intel_dsi->pixel_format);
  535. DRM_DEBUG_KMS("TLPX %d\n", intel_dsi->escape_clk_div);
  536. DRM_DEBUG_KMS("LP RX Timeout 0x%x\n", intel_dsi->lp_rx_timeout);
  537. DRM_DEBUG_KMS("Turnaround Timeout 0x%x\n", intel_dsi->turn_arnd_val);
  538. DRM_DEBUG_KMS("Init Count 0x%x\n", intel_dsi->init_count);
  539. DRM_DEBUG_KMS("HS to LP Count 0x%x\n", intel_dsi->hs_to_lp_count);
  540. DRM_DEBUG_KMS("LP Byte Clock %d\n", intel_dsi->lp_byte_clk);
  541. DRM_DEBUG_KMS("DBI BW Timer 0x%x\n", intel_dsi->bw_timer);
  542. DRM_DEBUG_KMS("LP to HS Clock Count 0x%x\n", intel_dsi->clk_lp_to_hs_count);
  543. DRM_DEBUG_KMS("HS to LP Clock Count 0x%x\n", intel_dsi->clk_hs_to_lp_count);
  544. DRM_DEBUG_KMS("BTA %s\n",
  545. intel_dsi->video_frmt_cfg_bits & DISABLE_VIDEO_BTA ?
  546. "disabled" : "enabled");
  547. /* delays in VBT are in unit of 100us, so need to convert
  548. * here in ms
  549. * Delay (100us) * 100 /1000 = Delay / 10 (ms) */
  550. intel_dsi->backlight_off_delay = pps->bl_disable_delay / 10;
  551. intel_dsi->backlight_on_delay = pps->bl_enable_delay / 10;
  552. intel_dsi->panel_on_delay = pps->panel_on_delay / 10;
  553. intel_dsi->panel_off_delay = pps->panel_off_delay / 10;
  554. intel_dsi->panel_pwr_cycle_delay = pps->panel_power_cycle_delay / 10;
  555. /* This is cheating a bit with the cleanup. */
  556. vbt_panel = devm_kzalloc(dev->dev, sizeof(*vbt_panel), GFP_KERNEL);
  557. vbt_panel->intel_dsi = intel_dsi;
  558. drm_panel_init(&vbt_panel->panel);
  559. vbt_panel->panel.funcs = &vbt_panel_funcs;
  560. drm_panel_add(&vbt_panel->panel);
  561. return &vbt_panel->panel;
  562. }