intel_dsi_panel_vbt.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  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. struct vbt_panel {
  39. struct drm_panel panel;
  40. struct intel_dsi *intel_dsi;
  41. };
  42. static inline struct vbt_panel *to_vbt_panel(struct drm_panel *panel)
  43. {
  44. return container_of(panel, struct vbt_panel, panel);
  45. }
  46. #define MIPI_TRANSFER_MODE_SHIFT 0
  47. #define MIPI_VIRTUAL_CHANNEL_SHIFT 1
  48. #define MIPI_PORT_SHIFT 3
  49. #define PREPARE_CNT_MAX 0x3F
  50. #define EXIT_ZERO_CNT_MAX 0x3F
  51. #define CLK_ZERO_CNT_MAX 0xFF
  52. #define TRAIL_CNT_MAX 0x1F
  53. #define NS_KHZ_RATIO 1000000
  54. /* base offsets for gpio pads */
  55. #define VLV_GPIO_NC_0_HV_DDI0_HPD 0x4130
  56. #define VLV_GPIO_NC_1_HV_DDI0_DDC_SDA 0x4120
  57. #define VLV_GPIO_NC_2_HV_DDI0_DDC_SCL 0x4110
  58. #define VLV_GPIO_NC_3_PANEL0_VDDEN 0x4140
  59. #define VLV_GPIO_NC_4_PANEL0_BKLTEN 0x4150
  60. #define VLV_GPIO_NC_5_PANEL0_BKLTCTL 0x4160
  61. #define VLV_GPIO_NC_6_HV_DDI1_HPD 0x4180
  62. #define VLV_GPIO_NC_7_HV_DDI1_DDC_SDA 0x4190
  63. #define VLV_GPIO_NC_8_HV_DDI1_DDC_SCL 0x4170
  64. #define VLV_GPIO_NC_9_PANEL1_VDDEN 0x4100
  65. #define VLV_GPIO_NC_10_PANEL1_BKLTEN 0x40E0
  66. #define VLV_GPIO_NC_11_PANEL1_BKLTCTL 0x40F0
  67. #define VLV_GPIO_PCONF0(base_offset) (base_offset)
  68. #define VLV_GPIO_PAD_VAL(base_offset) ((base_offset) + 8)
  69. struct gpio_map {
  70. u16 base_offset;
  71. bool init;
  72. };
  73. static struct gpio_map vlv_gpio_table[] = {
  74. { VLV_GPIO_NC_0_HV_DDI0_HPD },
  75. { VLV_GPIO_NC_1_HV_DDI0_DDC_SDA },
  76. { VLV_GPIO_NC_2_HV_DDI0_DDC_SCL },
  77. { VLV_GPIO_NC_3_PANEL0_VDDEN },
  78. { VLV_GPIO_NC_4_PANEL0_BKLTEN },
  79. { VLV_GPIO_NC_5_PANEL0_BKLTCTL },
  80. { VLV_GPIO_NC_6_HV_DDI1_HPD },
  81. { VLV_GPIO_NC_7_HV_DDI1_DDC_SDA },
  82. { VLV_GPIO_NC_8_HV_DDI1_DDC_SCL },
  83. { VLV_GPIO_NC_9_PANEL1_VDDEN },
  84. { VLV_GPIO_NC_10_PANEL1_BKLTEN },
  85. { VLV_GPIO_NC_11_PANEL1_BKLTCTL },
  86. };
  87. static inline enum port intel_dsi_seq_port_to_port(u8 port)
  88. {
  89. return port ? PORT_C : PORT_A;
  90. }
  91. static const u8 *mipi_exec_send_packet(struct intel_dsi *intel_dsi,
  92. const u8 *data)
  93. {
  94. struct mipi_dsi_device *dsi_device;
  95. u8 type, flags, seq_port;
  96. u16 len;
  97. enum port port;
  98. flags = *data++;
  99. type = *data++;
  100. len = *((u16 *) data);
  101. data += 2;
  102. seq_port = (flags >> MIPI_PORT_SHIFT) & 3;
  103. /* For DSI single link on Port A & C, the seq_port value which is
  104. * parsed from Sequence Block#53 of VBT has been set to 0
  105. * Now, read/write of packets for the DSI single link on Port A and
  106. * Port C will based on the DVO port from VBT block 2.
  107. */
  108. if (intel_dsi->ports == (1 << PORT_C))
  109. port = PORT_C;
  110. else
  111. port = intel_dsi_seq_port_to_port(seq_port);
  112. dsi_device = intel_dsi->dsi_hosts[port]->device;
  113. if (!dsi_device) {
  114. DRM_DEBUG_KMS("no dsi device for port %c\n", port_name(port));
  115. goto out;
  116. }
  117. if ((flags >> MIPI_TRANSFER_MODE_SHIFT) & 1)
  118. dsi_device->mode_flags &= ~MIPI_DSI_MODE_LPM;
  119. else
  120. dsi_device->mode_flags |= MIPI_DSI_MODE_LPM;
  121. dsi_device->channel = (flags >> MIPI_VIRTUAL_CHANNEL_SHIFT) & 3;
  122. switch (type) {
  123. case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM:
  124. mipi_dsi_generic_write(dsi_device, NULL, 0);
  125. break;
  126. case MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM:
  127. mipi_dsi_generic_write(dsi_device, data, 1);
  128. break;
  129. case MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM:
  130. mipi_dsi_generic_write(dsi_device, data, 2);
  131. break;
  132. case MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM:
  133. case MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM:
  134. case MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM:
  135. DRM_DEBUG_DRIVER("Generic Read not yet implemented or used\n");
  136. break;
  137. case MIPI_DSI_GENERIC_LONG_WRITE:
  138. mipi_dsi_generic_write(dsi_device, data, len);
  139. break;
  140. case MIPI_DSI_DCS_SHORT_WRITE:
  141. mipi_dsi_dcs_write_buffer(dsi_device, data, 1);
  142. break;
  143. case MIPI_DSI_DCS_SHORT_WRITE_PARAM:
  144. mipi_dsi_dcs_write_buffer(dsi_device, data, 2);
  145. break;
  146. case MIPI_DSI_DCS_READ:
  147. DRM_DEBUG_DRIVER("DCS Read not yet implemented or used\n");
  148. break;
  149. case MIPI_DSI_DCS_LONG_WRITE:
  150. mipi_dsi_dcs_write_buffer(dsi_device, data, len);
  151. break;
  152. }
  153. out:
  154. data += len;
  155. return data;
  156. }
  157. static const u8 *mipi_exec_delay(struct intel_dsi *intel_dsi, const u8 *data)
  158. {
  159. u32 delay = *((const u32 *) data);
  160. usleep_range(delay, delay + 10);
  161. data += 4;
  162. return data;
  163. }
  164. static void vlv_exec_gpio(struct drm_i915_private *dev_priv,
  165. u8 gpio_source, u8 gpio_index, bool value)
  166. {
  167. struct gpio_map *map;
  168. u16 pconf0, padval;
  169. u32 tmp;
  170. u8 port;
  171. if (gpio_index >= ARRAY_SIZE(vlv_gpio_table)) {
  172. DRM_DEBUG_KMS("unknown gpio index %u\n", gpio_index);
  173. return;
  174. }
  175. map = &vlv_gpio_table[gpio_index];
  176. if (dev_priv->vbt.dsi.seq_version >= 3) {
  177. DRM_DEBUG_KMS("GPIO element v3 not supported\n");
  178. return;
  179. } else {
  180. if (gpio_source == 0) {
  181. port = IOSF_PORT_GPIO_NC;
  182. } else if (gpio_source == 1) {
  183. port = IOSF_PORT_GPIO_SC;
  184. } else {
  185. DRM_DEBUG_KMS("unknown gpio source %u\n", gpio_source);
  186. return;
  187. }
  188. }
  189. pconf0 = VLV_GPIO_PCONF0(map->base_offset);
  190. padval = VLV_GPIO_PAD_VAL(map->base_offset);
  191. mutex_lock(&dev_priv->sb_lock);
  192. if (!map->init) {
  193. /* FIXME: remove constant below */
  194. vlv_iosf_sb_write(dev_priv, port, pconf0, 0x2000CC00);
  195. map->init = true;
  196. }
  197. tmp = 0x4 | value;
  198. vlv_iosf_sb_write(dev_priv, port, padval, tmp);
  199. mutex_unlock(&dev_priv->sb_lock);
  200. }
  201. static const u8 *mipi_exec_gpio(struct intel_dsi *intel_dsi, const u8 *data)
  202. {
  203. struct drm_device *dev = intel_dsi->base.base.dev;
  204. struct drm_i915_private *dev_priv = dev->dev_private;
  205. u8 gpio_source, gpio_index;
  206. bool value;
  207. if (dev_priv->vbt.dsi.seq_version >= 3)
  208. data++;
  209. gpio_index = *data++;
  210. /* gpio source in sequence v2 only */
  211. if (dev_priv->vbt.dsi.seq_version == 2)
  212. gpio_source = (*data >> 1) & 3;
  213. else
  214. gpio_source = 0;
  215. /* pull up/down */
  216. value = *data++ & 1;
  217. if (IS_VALLEYVIEW(dev_priv))
  218. vlv_exec_gpio(dev_priv, gpio_source, gpio_index, value);
  219. else
  220. DRM_DEBUG_KMS("GPIO element not supported on this platform\n");
  221. return data;
  222. }
  223. static const u8 *mipi_exec_i2c_skip(struct intel_dsi *intel_dsi, const u8 *data)
  224. {
  225. return data + *(data + 6) + 7;
  226. }
  227. typedef const u8 * (*fn_mipi_elem_exec)(struct intel_dsi *intel_dsi,
  228. const u8 *data);
  229. static const fn_mipi_elem_exec exec_elem[] = {
  230. [MIPI_SEQ_ELEM_SEND_PKT] = mipi_exec_send_packet,
  231. [MIPI_SEQ_ELEM_DELAY] = mipi_exec_delay,
  232. [MIPI_SEQ_ELEM_GPIO] = mipi_exec_gpio,
  233. [MIPI_SEQ_ELEM_I2C] = mipi_exec_i2c_skip,
  234. };
  235. /*
  236. * MIPI Sequence from VBT #53 parsing logic
  237. * We have already separated each seqence during bios parsing
  238. * Following is generic execution function for any sequence
  239. */
  240. static const char * const seq_name[] = {
  241. [MIPI_SEQ_ASSERT_RESET] = "MIPI_SEQ_ASSERT_RESET",
  242. [MIPI_SEQ_INIT_OTP] = "MIPI_SEQ_INIT_OTP",
  243. [MIPI_SEQ_DISPLAY_ON] = "MIPI_SEQ_DISPLAY_ON",
  244. [MIPI_SEQ_DISPLAY_OFF] = "MIPI_SEQ_DISPLAY_OFF",
  245. [MIPI_SEQ_DEASSERT_RESET] = "MIPI_SEQ_DEASSERT_RESET",
  246. [MIPI_SEQ_BACKLIGHT_ON] = "MIPI_SEQ_BACKLIGHT_ON",
  247. [MIPI_SEQ_BACKLIGHT_OFF] = "MIPI_SEQ_BACKLIGHT_OFF",
  248. [MIPI_SEQ_TEAR_ON] = "MIPI_SEQ_TEAR_ON",
  249. [MIPI_SEQ_TEAR_OFF] = "MIPI_SEQ_TEAR_OFF",
  250. [MIPI_SEQ_POWER_ON] = "MIPI_SEQ_POWER_ON",
  251. [MIPI_SEQ_POWER_OFF] = "MIPI_SEQ_POWER_OFF",
  252. };
  253. static const char *sequence_name(enum mipi_seq seq_id)
  254. {
  255. if (seq_id < ARRAY_SIZE(seq_name) && seq_name[seq_id])
  256. return seq_name[seq_id];
  257. else
  258. return "(unknown)";
  259. }
  260. static void generic_exec_sequence(struct drm_panel *panel, enum mipi_seq seq_id)
  261. {
  262. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  263. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  264. struct drm_i915_private *dev_priv = to_i915(intel_dsi->base.base.dev);
  265. const u8 *data;
  266. fn_mipi_elem_exec mipi_elem_exec;
  267. if (WARN_ON(seq_id >= ARRAY_SIZE(dev_priv->vbt.dsi.sequence)))
  268. return;
  269. data = dev_priv->vbt.dsi.sequence[seq_id];
  270. if (!data) {
  271. DRM_DEBUG_KMS("MIPI sequence %d - %s not available\n",
  272. seq_id, sequence_name(seq_id));
  273. return;
  274. }
  275. WARN_ON(*data != seq_id);
  276. DRM_DEBUG_KMS("Starting MIPI sequence %d - %s\n",
  277. seq_id, sequence_name(seq_id));
  278. /* Skip Sequence Byte. */
  279. data++;
  280. /* Skip Size of Sequence. */
  281. if (dev_priv->vbt.dsi.seq_version >= 3)
  282. data += 4;
  283. while (1) {
  284. u8 operation_byte = *data++;
  285. u8 operation_size = 0;
  286. if (operation_byte == MIPI_SEQ_ELEM_END)
  287. break;
  288. if (operation_byte < ARRAY_SIZE(exec_elem))
  289. mipi_elem_exec = exec_elem[operation_byte];
  290. else
  291. mipi_elem_exec = NULL;
  292. /* Size of Operation. */
  293. if (dev_priv->vbt.dsi.seq_version >= 3)
  294. operation_size = *data++;
  295. if (mipi_elem_exec) {
  296. data = mipi_elem_exec(intel_dsi, data);
  297. } else if (operation_size) {
  298. /* We have size, skip. */
  299. DRM_DEBUG_KMS("Unsupported MIPI operation byte %u\n",
  300. operation_byte);
  301. data += operation_size;
  302. } else {
  303. /* No size, can't skip without parsing. */
  304. DRM_ERROR("Unsupported MIPI operation byte %u\n",
  305. operation_byte);
  306. return;
  307. }
  308. }
  309. }
  310. static int vbt_panel_prepare(struct drm_panel *panel)
  311. {
  312. generic_exec_sequence(panel, MIPI_SEQ_ASSERT_RESET);
  313. generic_exec_sequence(panel, MIPI_SEQ_INIT_OTP);
  314. return 0;
  315. }
  316. static int vbt_panel_unprepare(struct drm_panel *panel)
  317. {
  318. generic_exec_sequence(panel, MIPI_SEQ_DEASSERT_RESET);
  319. return 0;
  320. }
  321. static int vbt_panel_enable(struct drm_panel *panel)
  322. {
  323. generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_ON);
  324. return 0;
  325. }
  326. static int vbt_panel_disable(struct drm_panel *panel)
  327. {
  328. generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_OFF);
  329. return 0;
  330. }
  331. static int vbt_panel_get_modes(struct drm_panel *panel)
  332. {
  333. struct vbt_panel *vbt_panel = to_vbt_panel(panel);
  334. struct intel_dsi *intel_dsi = vbt_panel->intel_dsi;
  335. struct drm_device *dev = intel_dsi->base.base.dev;
  336. struct drm_i915_private *dev_priv = dev->dev_private;
  337. struct drm_display_mode *mode;
  338. if (!panel->connector)
  339. return 0;
  340. mode = drm_mode_duplicate(dev, dev_priv->vbt.lfp_lvds_vbt_mode);
  341. if (!mode)
  342. return 0;
  343. mode->type |= DRM_MODE_TYPE_PREFERRED;
  344. drm_mode_probed_add(panel->connector, mode);
  345. return 1;
  346. }
  347. static const struct drm_panel_funcs vbt_panel_funcs = {
  348. .disable = vbt_panel_disable,
  349. .unprepare = vbt_panel_unprepare,
  350. .prepare = vbt_panel_prepare,
  351. .enable = vbt_panel_enable,
  352. .get_modes = vbt_panel_get_modes,
  353. };
  354. struct drm_panel *vbt_panel_init(struct intel_dsi *intel_dsi, u16 panel_id)
  355. {
  356. struct drm_device *dev = intel_dsi->base.base.dev;
  357. struct drm_i915_private *dev_priv = dev->dev_private;
  358. struct mipi_config *mipi_config = dev_priv->vbt.dsi.config;
  359. struct mipi_pps_data *pps = dev_priv->vbt.dsi.pps;
  360. struct drm_display_mode *mode = dev_priv->vbt.lfp_lvds_vbt_mode;
  361. struct vbt_panel *vbt_panel;
  362. u32 bpp;
  363. u32 tlpx_ns, extra_byte_count, bitrate, tlpx_ui;
  364. u32 ui_num, ui_den;
  365. u32 prepare_cnt, exit_zero_cnt, clk_zero_cnt, trail_cnt;
  366. u32 ths_prepare_ns, tclk_trail_ns;
  367. u32 tclk_prepare_clkzero, ths_prepare_hszero;
  368. u32 lp_to_hs_switch, hs_to_lp_switch;
  369. u32 pclk, computed_ddr;
  370. u16 burst_mode_ratio;
  371. enum port port;
  372. DRM_DEBUG_KMS("\n");
  373. intel_dsi->eotp_pkt = mipi_config->eot_pkt_disabled ? 0 : 1;
  374. intel_dsi->clock_stop = mipi_config->enable_clk_stop ? 1 : 0;
  375. intel_dsi->lane_count = mipi_config->lane_cnt + 1;
  376. intel_dsi->pixel_format =
  377. pixel_format_from_register_bits(
  378. mipi_config->videomode_color_format << 7);
  379. bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
  380. intel_dsi->dual_link = mipi_config->dual_link;
  381. intel_dsi->pixel_overlap = mipi_config->pixel_overlap;
  382. intel_dsi->operation_mode = mipi_config->is_cmd_mode;
  383. intel_dsi->video_mode_format = mipi_config->video_transfer_mode;
  384. intel_dsi->escape_clk_div = mipi_config->byte_clk_sel;
  385. intel_dsi->lp_rx_timeout = mipi_config->lp_rx_timeout;
  386. intel_dsi->turn_arnd_val = mipi_config->turn_around_timeout;
  387. intel_dsi->rst_timer_val = mipi_config->device_reset_timer;
  388. intel_dsi->init_count = mipi_config->master_init_timer;
  389. intel_dsi->bw_timer = mipi_config->dbi_bw_timer;
  390. intel_dsi->video_frmt_cfg_bits =
  391. mipi_config->bta_enabled ? DISABLE_VIDEO_BTA : 0;
  392. pclk = mode->clock;
  393. /* In dual link mode each port needs half of pixel clock */
  394. if (intel_dsi->dual_link) {
  395. pclk = pclk / 2;
  396. /* we can enable pixel_overlap if needed by panel. In this
  397. * case we need to increase the pixelclock for extra pixels
  398. */
  399. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
  400. pclk += DIV_ROUND_UP(mode->vtotal *
  401. intel_dsi->pixel_overlap *
  402. 60, 1000);
  403. }
  404. }
  405. /* Burst Mode Ratio
  406. * Target ddr frequency from VBT / non burst ddr freq
  407. * multiply by 100 to preserve remainder
  408. */
  409. if (intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
  410. if (mipi_config->target_burst_mode_freq) {
  411. computed_ddr = (pclk * bpp) / intel_dsi->lane_count;
  412. if (mipi_config->target_burst_mode_freq <
  413. computed_ddr) {
  414. DRM_ERROR("Burst mode freq is less than computed\n");
  415. return NULL;
  416. }
  417. burst_mode_ratio = DIV_ROUND_UP(
  418. mipi_config->target_burst_mode_freq * 100,
  419. computed_ddr);
  420. pclk = DIV_ROUND_UP(pclk * burst_mode_ratio, 100);
  421. } else {
  422. DRM_ERROR("Burst mode target is not set\n");
  423. return NULL;
  424. }
  425. } else
  426. burst_mode_ratio = 100;
  427. intel_dsi->burst_mode_ratio = burst_mode_ratio;
  428. intel_dsi->pclk = pclk;
  429. bitrate = (pclk * bpp) / intel_dsi->lane_count;
  430. switch (intel_dsi->escape_clk_div) {
  431. case 0:
  432. tlpx_ns = 50;
  433. break;
  434. case 1:
  435. tlpx_ns = 100;
  436. break;
  437. case 2:
  438. tlpx_ns = 200;
  439. break;
  440. default:
  441. tlpx_ns = 50;
  442. break;
  443. }
  444. switch (intel_dsi->lane_count) {
  445. case 1:
  446. case 2:
  447. extra_byte_count = 2;
  448. break;
  449. case 3:
  450. extra_byte_count = 4;
  451. break;
  452. case 4:
  453. default:
  454. extra_byte_count = 3;
  455. break;
  456. }
  457. /*
  458. * ui(s) = 1/f [f in hz]
  459. * ui(ns) = 10^9 / (f*10^6) [f in Mhz] -> 10^3/f(Mhz)
  460. */
  461. /* in Kbps */
  462. ui_num = NS_KHZ_RATIO;
  463. ui_den = bitrate;
  464. tclk_prepare_clkzero = mipi_config->tclk_prepare_clkzero;
  465. ths_prepare_hszero = mipi_config->ths_prepare_hszero;
  466. /*
  467. * B060
  468. * LP byte clock = TLPX/ (8UI)
  469. */
  470. intel_dsi->lp_byte_clk = DIV_ROUND_UP(tlpx_ns * ui_den, 8 * ui_num);
  471. /* count values in UI = (ns value) * (bitrate / (2 * 10^6))
  472. *
  473. * Since txddrclkhs_i is 2xUI, all the count values programmed in
  474. * DPHY param register are divided by 2
  475. *
  476. * prepare count
  477. */
  478. ths_prepare_ns = max(mipi_config->ths_prepare,
  479. mipi_config->tclk_prepare);
  480. prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * 2);
  481. /* exit zero count */
  482. exit_zero_cnt = DIV_ROUND_UP(
  483. (ths_prepare_hszero - ths_prepare_ns) * ui_den,
  484. ui_num * 2
  485. );
  486. /*
  487. * Exit zero is unified val ths_zero and ths_exit
  488. * minimum value for ths_exit = 110ns
  489. * min (exit_zero_cnt * 2) = 110/UI
  490. * exit_zero_cnt = 55/UI
  491. */
  492. if (exit_zero_cnt < (55 * ui_den / ui_num))
  493. if ((55 * ui_den) % ui_num)
  494. exit_zero_cnt += 1;
  495. /* clk zero count */
  496. clk_zero_cnt = DIV_ROUND_UP(
  497. (tclk_prepare_clkzero - ths_prepare_ns)
  498. * ui_den, 2 * ui_num);
  499. /* trail count */
  500. tclk_trail_ns = max(mipi_config->tclk_trail, mipi_config->ths_trail);
  501. trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, 2 * ui_num);
  502. if (prepare_cnt > PREPARE_CNT_MAX ||
  503. exit_zero_cnt > EXIT_ZERO_CNT_MAX ||
  504. clk_zero_cnt > CLK_ZERO_CNT_MAX ||
  505. trail_cnt > TRAIL_CNT_MAX)
  506. DRM_DEBUG_DRIVER("Values crossing maximum limits, restricting to max values\n");
  507. if (prepare_cnt > PREPARE_CNT_MAX)
  508. prepare_cnt = PREPARE_CNT_MAX;
  509. if (exit_zero_cnt > EXIT_ZERO_CNT_MAX)
  510. exit_zero_cnt = EXIT_ZERO_CNT_MAX;
  511. if (clk_zero_cnt > CLK_ZERO_CNT_MAX)
  512. clk_zero_cnt = CLK_ZERO_CNT_MAX;
  513. if (trail_cnt > TRAIL_CNT_MAX)
  514. trail_cnt = TRAIL_CNT_MAX;
  515. /* B080 */
  516. intel_dsi->dphy_reg = exit_zero_cnt << 24 | trail_cnt << 16 |
  517. clk_zero_cnt << 8 | prepare_cnt;
  518. /*
  519. * LP to HS switch count = 4TLPX + PREP_COUNT * 2 + EXIT_ZERO_COUNT * 2
  520. * + 10UI + Extra Byte Count
  521. *
  522. * HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
  523. * Extra Byte Count is calculated according to number of lanes.
  524. * High Low Switch Count is the Max of LP to HS and
  525. * HS to LP switch count
  526. *
  527. */
  528. tlpx_ui = DIV_ROUND_UP(tlpx_ns * ui_den, ui_num);
  529. /* B044 */
  530. /* FIXME:
  531. * The comment above does not match with the code */
  532. lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * 2 +
  533. exit_zero_cnt * 2 + 10, 8);
  534. hs_to_lp_switch = DIV_ROUND_UP(mipi_config->ths_trail + 2 * tlpx_ui, 8);
  535. intel_dsi->hs_to_lp_count = max(lp_to_hs_switch, hs_to_lp_switch);
  536. intel_dsi->hs_to_lp_count += extra_byte_count;
  537. /* B088 */
  538. /* LP -> HS for clock lanes
  539. * LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
  540. * extra byte count
  541. * 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
  542. * 2(in UI) + extra byte count
  543. * In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
  544. * 8 + extra byte count
  545. */
  546. intel_dsi->clk_lp_to_hs_count =
  547. DIV_ROUND_UP(
  548. 4 * tlpx_ui + prepare_cnt * 2 +
  549. clk_zero_cnt * 2,
  550. 8);
  551. intel_dsi->clk_lp_to_hs_count += extra_byte_count;
  552. /* HS->LP for Clock Lanes
  553. * Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
  554. * Extra byte count
  555. * 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
  556. * In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
  557. * Extra byte count
  558. */
  559. intel_dsi->clk_hs_to_lp_count =
  560. DIV_ROUND_UP(2 * tlpx_ui + trail_cnt * 2 + 8,
  561. 8);
  562. intel_dsi->clk_hs_to_lp_count += extra_byte_count;
  563. DRM_DEBUG_KMS("Eot %s\n", intel_dsi->eotp_pkt ? "enabled" : "disabled");
  564. DRM_DEBUG_KMS("Clockstop %s\n", intel_dsi->clock_stop ?
  565. "disabled" : "enabled");
  566. DRM_DEBUG_KMS("Mode %s\n", intel_dsi->operation_mode ? "command" : "video");
  567. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
  568. DRM_DEBUG_KMS("Dual link: DSI_DUAL_LINK_FRONT_BACK\n");
  569. else if (intel_dsi->dual_link == DSI_DUAL_LINK_PIXEL_ALT)
  570. DRM_DEBUG_KMS("Dual link: DSI_DUAL_LINK_PIXEL_ALT\n");
  571. else
  572. DRM_DEBUG_KMS("Dual link: NONE\n");
  573. DRM_DEBUG_KMS("Pixel Format %d\n", intel_dsi->pixel_format);
  574. DRM_DEBUG_KMS("TLPX %d\n", intel_dsi->escape_clk_div);
  575. DRM_DEBUG_KMS("LP RX Timeout 0x%x\n", intel_dsi->lp_rx_timeout);
  576. DRM_DEBUG_KMS("Turnaround Timeout 0x%x\n", intel_dsi->turn_arnd_val);
  577. DRM_DEBUG_KMS("Init Count 0x%x\n", intel_dsi->init_count);
  578. DRM_DEBUG_KMS("HS to LP Count 0x%x\n", intel_dsi->hs_to_lp_count);
  579. DRM_DEBUG_KMS("LP Byte Clock %d\n", intel_dsi->lp_byte_clk);
  580. DRM_DEBUG_KMS("DBI BW Timer 0x%x\n", intel_dsi->bw_timer);
  581. DRM_DEBUG_KMS("LP to HS Clock Count 0x%x\n", intel_dsi->clk_lp_to_hs_count);
  582. DRM_DEBUG_KMS("HS to LP Clock Count 0x%x\n", intel_dsi->clk_hs_to_lp_count);
  583. DRM_DEBUG_KMS("BTA %s\n",
  584. intel_dsi->video_frmt_cfg_bits & DISABLE_VIDEO_BTA ?
  585. "disabled" : "enabled");
  586. /* delays in VBT are in unit of 100us, so need to convert
  587. * here in ms
  588. * Delay (100us) * 100 /1000 = Delay / 10 (ms) */
  589. intel_dsi->backlight_off_delay = pps->bl_disable_delay / 10;
  590. intel_dsi->backlight_on_delay = pps->bl_enable_delay / 10;
  591. intel_dsi->panel_on_delay = pps->panel_on_delay / 10;
  592. intel_dsi->panel_off_delay = pps->panel_off_delay / 10;
  593. intel_dsi->panel_pwr_cycle_delay = pps->panel_power_cycle_delay / 10;
  594. /* This is cheating a bit with the cleanup. */
  595. vbt_panel = devm_kzalloc(dev->dev, sizeof(*vbt_panel), GFP_KERNEL);
  596. if (!vbt_panel)
  597. return NULL;
  598. vbt_panel->intel_dsi = intel_dsi;
  599. drm_panel_init(&vbt_panel->panel);
  600. vbt_panel->panel.funcs = &vbt_panel_funcs;
  601. drm_panel_add(&vbt_panel->panel);
  602. /* a regular driver would get the device in probe */
  603. for_each_dsi_port(port, intel_dsi->ports) {
  604. mipi_dsi_attach(intel_dsi->dsi_hosts[port]->device);
  605. }
  606. return &vbt_panel->panel;
  607. }