intel_dsi_panel_vbt.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  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 <linux/slab.h>
  31. #include <video/mipi_display.h>
  32. #include <asm/intel-mid.h>
  33. #include <video/mipi_display.h>
  34. #include "i915_drv.h"
  35. #include "intel_drv.h"
  36. #include "intel_dsi.h"
  37. #include "intel_dsi_cmd.h"
  38. #define MIPI_TRANSFER_MODE_SHIFT 0
  39. #define MIPI_VIRTUAL_CHANNEL_SHIFT 1
  40. #define MIPI_PORT_SHIFT 3
  41. #define PREPARE_CNT_MAX 0x3F
  42. #define EXIT_ZERO_CNT_MAX 0x3F
  43. #define CLK_ZERO_CNT_MAX 0xFF
  44. #define TRAIL_CNT_MAX 0x1F
  45. #define NS_KHZ_RATIO 1000000
  46. #define GPI0_NC_0_HV_DDI0_HPD 0x4130
  47. #define GPIO_NC_0_HV_DDI0_PAD 0x4138
  48. #define GPIO_NC_1_HV_DDI0_DDC_SDA 0x4120
  49. #define GPIO_NC_1_HV_DDI0_DDC_SDA_PAD 0x4128
  50. #define GPIO_NC_2_HV_DDI0_DDC_SCL 0x4110
  51. #define GPIO_NC_2_HV_DDI0_DDC_SCL_PAD 0x4118
  52. #define GPIO_NC_3_PANEL0_VDDEN 0x4140
  53. #define GPIO_NC_3_PANEL0_VDDEN_PAD 0x4148
  54. #define GPIO_NC_4_PANEL0_BLKEN 0x4150
  55. #define GPIO_NC_4_PANEL0_BLKEN_PAD 0x4158
  56. #define GPIO_NC_5_PANEL0_BLKCTL 0x4160
  57. #define GPIO_NC_5_PANEL0_BLKCTL_PAD 0x4168
  58. #define GPIO_NC_6_PCONF0 0x4180
  59. #define GPIO_NC_6_PAD 0x4188
  60. #define GPIO_NC_7_PCONF0 0x4190
  61. #define GPIO_NC_7_PAD 0x4198
  62. #define GPIO_NC_8_PCONF0 0x4170
  63. #define GPIO_NC_8_PAD 0x4178
  64. #define GPIO_NC_9_PCONF0 0x4100
  65. #define GPIO_NC_9_PAD 0x4108
  66. #define GPIO_NC_10_PCONF0 0x40E0
  67. #define GPIO_NC_10_PAD 0x40E8
  68. #define GPIO_NC_11_PCONF0 0x40F0
  69. #define GPIO_NC_11_PAD 0x40F8
  70. struct gpio_table {
  71. u16 function_reg;
  72. u16 pad_reg;
  73. u8 init;
  74. };
  75. static struct gpio_table gtable[] = {
  76. { GPI0_NC_0_HV_DDI0_HPD, GPIO_NC_0_HV_DDI0_PAD, 0 },
  77. { GPIO_NC_1_HV_DDI0_DDC_SDA, GPIO_NC_1_HV_DDI0_DDC_SDA_PAD, 0 },
  78. { GPIO_NC_2_HV_DDI0_DDC_SCL, GPIO_NC_2_HV_DDI0_DDC_SCL_PAD, 0 },
  79. { GPIO_NC_3_PANEL0_VDDEN, GPIO_NC_3_PANEL0_VDDEN_PAD, 0 },
  80. { GPIO_NC_4_PANEL0_BLKEN, GPIO_NC_4_PANEL0_BLKEN_PAD, 0 },
  81. { GPIO_NC_5_PANEL0_BLKCTL, GPIO_NC_5_PANEL0_BLKCTL_PAD, 0 },
  82. { GPIO_NC_6_PCONF0, GPIO_NC_6_PAD, 0 },
  83. { GPIO_NC_7_PCONF0, GPIO_NC_7_PAD, 0 },
  84. { GPIO_NC_8_PCONF0, GPIO_NC_8_PAD, 0 },
  85. { GPIO_NC_9_PCONF0, GPIO_NC_9_PAD, 0 },
  86. { GPIO_NC_10_PCONF0, GPIO_NC_10_PAD, 0},
  87. { GPIO_NC_11_PCONF0, GPIO_NC_11_PAD, 0}
  88. };
  89. static u8 *mipi_exec_send_packet(struct intel_dsi *intel_dsi, u8 *data)
  90. {
  91. u8 type, byte, mode, vc, port;
  92. u16 len;
  93. byte = *data++;
  94. mode = (byte >> MIPI_TRANSFER_MODE_SHIFT) & 0x1;
  95. vc = (byte >> MIPI_VIRTUAL_CHANNEL_SHIFT) & 0x3;
  96. port = (byte >> MIPI_PORT_SHIFT) & 0x3;
  97. /* LP or HS mode */
  98. intel_dsi->hs = mode;
  99. /* get packet type and increment the pointer */
  100. type = *data++;
  101. len = *((u16 *) data);
  102. data += 2;
  103. switch (type) {
  104. case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM:
  105. dsi_vc_generic_write_0(intel_dsi, vc);
  106. break;
  107. case MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM:
  108. dsi_vc_generic_write_1(intel_dsi, vc, *data);
  109. break;
  110. case MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM:
  111. dsi_vc_generic_write_2(intel_dsi, vc, *data, *(data + 1));
  112. break;
  113. case MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM:
  114. case MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM:
  115. case MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM:
  116. DRM_DEBUG_DRIVER("Generic Read not yet implemented or used\n");
  117. break;
  118. case MIPI_DSI_GENERIC_LONG_WRITE:
  119. dsi_vc_generic_write(intel_dsi, vc, data, len);
  120. break;
  121. case MIPI_DSI_DCS_SHORT_WRITE:
  122. dsi_vc_dcs_write_0(intel_dsi, vc, *data);
  123. break;
  124. case MIPI_DSI_DCS_SHORT_WRITE_PARAM:
  125. dsi_vc_dcs_write_1(intel_dsi, vc, *data, *(data + 1));
  126. break;
  127. case MIPI_DSI_DCS_READ:
  128. DRM_DEBUG_DRIVER("DCS Read not yet implemented or used\n");
  129. break;
  130. case MIPI_DSI_DCS_LONG_WRITE:
  131. dsi_vc_dcs_write(intel_dsi, vc, data, len);
  132. break;
  133. }
  134. data += len;
  135. return data;
  136. }
  137. static u8 *mipi_exec_delay(struct intel_dsi *intel_dsi, u8 *data)
  138. {
  139. u32 delay = *((u32 *) data);
  140. usleep_range(delay, delay + 10);
  141. data += 4;
  142. return data;
  143. }
  144. static u8 *mipi_exec_gpio(struct intel_dsi *intel_dsi, u8 *data)
  145. {
  146. u8 gpio, action;
  147. u16 function, pad;
  148. u32 val;
  149. struct drm_device *dev = intel_dsi->base.base.dev;
  150. struct drm_i915_private *dev_priv = dev->dev_private;
  151. gpio = *data++;
  152. /* pull up/down */
  153. action = *data++;
  154. function = gtable[gpio].function_reg;
  155. pad = gtable[gpio].pad_reg;
  156. mutex_lock(&dev_priv->dpio_lock);
  157. if (!gtable[gpio].init) {
  158. /* program the function */
  159. /* FIXME: remove constant below */
  160. vlv_gpio_nc_write(dev_priv, function, 0x2000CC00);
  161. gtable[gpio].init = 1;
  162. }
  163. val = 0x4 | action;
  164. /* pull up/down */
  165. vlv_gpio_nc_write(dev_priv, pad, val);
  166. mutex_unlock(&dev_priv->dpio_lock);
  167. return data;
  168. }
  169. typedef u8 * (*fn_mipi_elem_exec)(struct intel_dsi *intel_dsi, u8 *data);
  170. static const fn_mipi_elem_exec exec_elem[] = {
  171. NULL, /* reserved */
  172. mipi_exec_send_packet,
  173. mipi_exec_delay,
  174. mipi_exec_gpio,
  175. NULL, /* status read; later */
  176. };
  177. /*
  178. * MIPI Sequence from VBT #53 parsing logic
  179. * We have already separated each seqence during bios parsing
  180. * Following is generic execution function for any sequence
  181. */
  182. static const char * const seq_name[] = {
  183. "UNDEFINED",
  184. "MIPI_SEQ_ASSERT_RESET",
  185. "MIPI_SEQ_INIT_OTP",
  186. "MIPI_SEQ_DISPLAY_ON",
  187. "MIPI_SEQ_DISPLAY_OFF",
  188. "MIPI_SEQ_DEASSERT_RESET"
  189. };
  190. static void generic_exec_sequence(struct intel_dsi *intel_dsi, char *sequence)
  191. {
  192. u8 *data = sequence;
  193. fn_mipi_elem_exec mipi_elem_exec;
  194. int index;
  195. if (!sequence)
  196. return;
  197. DRM_DEBUG_DRIVER("Starting MIPI sequence - %s\n", seq_name[*data]);
  198. /* go to the first element of the sequence */
  199. data++;
  200. /* parse each byte till we reach end of sequence byte - 0x00 */
  201. while (1) {
  202. index = *data;
  203. mipi_elem_exec = exec_elem[index];
  204. if (!mipi_elem_exec) {
  205. DRM_ERROR("Unsupported MIPI element, skipping sequence execution\n");
  206. return;
  207. }
  208. /* goto element payload */
  209. data++;
  210. /* execute the element specific rotines */
  211. data = mipi_elem_exec(intel_dsi, data);
  212. /*
  213. * After processing the element, data should point to
  214. * next element or end of sequence
  215. * check if have we reached end of sequence
  216. */
  217. if (*data == 0x00)
  218. break;
  219. }
  220. }
  221. static bool generic_init(struct intel_dsi_device *dsi)
  222. {
  223. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  224. struct drm_device *dev = intel_dsi->base.base.dev;
  225. struct drm_i915_private *dev_priv = dev->dev_private;
  226. struct mipi_config *mipi_config = dev_priv->vbt.dsi.config;
  227. struct mipi_pps_data *pps = dev_priv->vbt.dsi.pps;
  228. struct drm_display_mode *mode = dev_priv->vbt.lfp_lvds_vbt_mode;
  229. u32 bits_per_pixel = 24;
  230. u32 tlpx_ns, extra_byte_count, bitrate, tlpx_ui;
  231. u32 ui_num, ui_den;
  232. u32 prepare_cnt, exit_zero_cnt, clk_zero_cnt, trail_cnt;
  233. u32 ths_prepare_ns, tclk_trail_ns;
  234. u32 tclk_prepare_clkzero, ths_prepare_hszero;
  235. u32 lp_to_hs_switch, hs_to_lp_switch;
  236. u32 pclk, computed_ddr;
  237. u16 burst_mode_ratio;
  238. DRM_DEBUG_KMS("\n");
  239. intel_dsi->eotp_pkt = mipi_config->eot_pkt_disabled ? 0 : 1;
  240. intel_dsi->clock_stop = mipi_config->enable_clk_stop ? 1 : 0;
  241. intel_dsi->lane_count = mipi_config->lane_cnt + 1;
  242. intel_dsi->pixel_format = mipi_config->videomode_color_format << 7;
  243. if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB666)
  244. bits_per_pixel = 18;
  245. else if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB565)
  246. bits_per_pixel = 16;
  247. intel_dsi->operation_mode = mipi_config->is_cmd_mode;
  248. intel_dsi->video_mode_format = mipi_config->video_transfer_mode;
  249. intel_dsi->escape_clk_div = mipi_config->byte_clk_sel;
  250. intel_dsi->lp_rx_timeout = mipi_config->lp_rx_timeout;
  251. intel_dsi->turn_arnd_val = mipi_config->turn_around_timeout;
  252. intel_dsi->rst_timer_val = mipi_config->device_reset_timer;
  253. intel_dsi->init_count = mipi_config->master_init_timer;
  254. intel_dsi->bw_timer = mipi_config->dbi_bw_timer;
  255. intel_dsi->video_frmt_cfg_bits =
  256. mipi_config->bta_enabled ? DISABLE_VIDEO_BTA : 0;
  257. pclk = mode->clock;
  258. /* Burst Mode Ratio
  259. * Target ddr frequency from VBT / non burst ddr freq
  260. * multiply by 100 to preserve remainder
  261. */
  262. if (intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
  263. if (mipi_config->target_burst_mode_freq) {
  264. computed_ddr =
  265. (pclk * bits_per_pixel) / intel_dsi->lane_count;
  266. if (mipi_config->target_burst_mode_freq <
  267. computed_ddr) {
  268. DRM_ERROR("Burst mode freq is less than computed\n");
  269. return false;
  270. }
  271. burst_mode_ratio = DIV_ROUND_UP(
  272. mipi_config->target_burst_mode_freq * 100,
  273. computed_ddr);
  274. pclk = DIV_ROUND_UP(pclk * burst_mode_ratio, 100);
  275. } else {
  276. DRM_ERROR("Burst mode target is not set\n");
  277. return false;
  278. }
  279. } else
  280. burst_mode_ratio = 100;
  281. intel_dsi->burst_mode_ratio = burst_mode_ratio;
  282. intel_dsi->pclk = pclk;
  283. bitrate = (pclk * bits_per_pixel) / intel_dsi->lane_count;
  284. switch (intel_dsi->escape_clk_div) {
  285. case 0:
  286. tlpx_ns = 50;
  287. break;
  288. case 1:
  289. tlpx_ns = 100;
  290. break;
  291. case 2:
  292. tlpx_ns = 200;
  293. break;
  294. default:
  295. tlpx_ns = 50;
  296. break;
  297. }
  298. switch (intel_dsi->lane_count) {
  299. case 1:
  300. case 2:
  301. extra_byte_count = 2;
  302. break;
  303. case 3:
  304. extra_byte_count = 4;
  305. break;
  306. case 4:
  307. default:
  308. extra_byte_count = 3;
  309. break;
  310. }
  311. /*
  312. * ui(s) = 1/f [f in hz]
  313. * ui(ns) = 10^9 / (f*10^6) [f in Mhz] -> 10^3/f(Mhz)
  314. */
  315. /* in Kbps */
  316. ui_num = NS_KHZ_RATIO;
  317. ui_den = bitrate;
  318. tclk_prepare_clkzero = mipi_config->tclk_prepare_clkzero;
  319. ths_prepare_hszero = mipi_config->ths_prepare_hszero;
  320. /*
  321. * B060
  322. * LP byte clock = TLPX/ (8UI)
  323. */
  324. intel_dsi->lp_byte_clk = DIV_ROUND_UP(tlpx_ns * ui_den, 8 * ui_num);
  325. /* count values in UI = (ns value) * (bitrate / (2 * 10^6))
  326. *
  327. * Since txddrclkhs_i is 2xUI, all the count values programmed in
  328. * DPHY param register are divided by 2
  329. *
  330. * prepare count
  331. */
  332. ths_prepare_ns = max(mipi_config->ths_prepare,
  333. mipi_config->tclk_prepare);
  334. prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * 2);
  335. /* exit zero count */
  336. exit_zero_cnt = DIV_ROUND_UP(
  337. (ths_prepare_hszero - ths_prepare_ns) * ui_den,
  338. ui_num * 2
  339. );
  340. /*
  341. * Exit zero is unified val ths_zero and ths_exit
  342. * minimum value for ths_exit = 110ns
  343. * min (exit_zero_cnt * 2) = 110/UI
  344. * exit_zero_cnt = 55/UI
  345. */
  346. if (exit_zero_cnt < (55 * ui_den / ui_num))
  347. if ((55 * ui_den) % ui_num)
  348. exit_zero_cnt += 1;
  349. /* clk zero count */
  350. clk_zero_cnt = DIV_ROUND_UP(
  351. (tclk_prepare_clkzero - ths_prepare_ns)
  352. * ui_den, 2 * ui_num);
  353. /* trail count */
  354. tclk_trail_ns = max(mipi_config->tclk_trail, mipi_config->ths_trail);
  355. trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, 2 * ui_num);
  356. if (prepare_cnt > PREPARE_CNT_MAX ||
  357. exit_zero_cnt > EXIT_ZERO_CNT_MAX ||
  358. clk_zero_cnt > CLK_ZERO_CNT_MAX ||
  359. trail_cnt > TRAIL_CNT_MAX)
  360. DRM_DEBUG_DRIVER("Values crossing maximum limits, restricting to max values\n");
  361. if (prepare_cnt > PREPARE_CNT_MAX)
  362. prepare_cnt = PREPARE_CNT_MAX;
  363. if (exit_zero_cnt > EXIT_ZERO_CNT_MAX)
  364. exit_zero_cnt = EXIT_ZERO_CNT_MAX;
  365. if (clk_zero_cnt > CLK_ZERO_CNT_MAX)
  366. clk_zero_cnt = CLK_ZERO_CNT_MAX;
  367. if (trail_cnt > TRAIL_CNT_MAX)
  368. trail_cnt = TRAIL_CNT_MAX;
  369. /* B080 */
  370. intel_dsi->dphy_reg = exit_zero_cnt << 24 | trail_cnt << 16 |
  371. clk_zero_cnt << 8 | prepare_cnt;
  372. /*
  373. * LP to HS switch count = 4TLPX + PREP_COUNT * 2 + EXIT_ZERO_COUNT * 2
  374. * + 10UI + Extra Byte Count
  375. *
  376. * HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
  377. * Extra Byte Count is calculated according to number of lanes.
  378. * High Low Switch Count is the Max of LP to HS and
  379. * HS to LP switch count
  380. *
  381. */
  382. tlpx_ui = DIV_ROUND_UP(tlpx_ns * ui_den, ui_num);
  383. /* B044 */
  384. /* FIXME:
  385. * The comment above does not match with the code */
  386. lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * 2 +
  387. exit_zero_cnt * 2 + 10, 8);
  388. hs_to_lp_switch = DIV_ROUND_UP(mipi_config->ths_trail + 2 * tlpx_ui, 8);
  389. intel_dsi->hs_to_lp_count = max(lp_to_hs_switch, hs_to_lp_switch);
  390. intel_dsi->hs_to_lp_count += extra_byte_count;
  391. /* B088 */
  392. /* LP -> HS for clock lanes
  393. * LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
  394. * extra byte count
  395. * 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
  396. * 2(in UI) + extra byte count
  397. * In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
  398. * 8 + extra byte count
  399. */
  400. intel_dsi->clk_lp_to_hs_count =
  401. DIV_ROUND_UP(
  402. 4 * tlpx_ui + prepare_cnt * 2 +
  403. clk_zero_cnt * 2,
  404. 8);
  405. intel_dsi->clk_lp_to_hs_count += extra_byte_count;
  406. /* HS->LP for Clock Lanes
  407. * Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
  408. * Extra byte count
  409. * 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
  410. * In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
  411. * Extra byte count
  412. */
  413. intel_dsi->clk_hs_to_lp_count =
  414. DIV_ROUND_UP(2 * tlpx_ui + trail_cnt * 2 + 8,
  415. 8);
  416. intel_dsi->clk_hs_to_lp_count += extra_byte_count;
  417. DRM_DEBUG_KMS("Eot %s\n", intel_dsi->eotp_pkt ? "enabled" : "disabled");
  418. DRM_DEBUG_KMS("Clockstop %s\n", intel_dsi->clock_stop ?
  419. "disabled" : "enabled");
  420. DRM_DEBUG_KMS("Mode %s\n", intel_dsi->operation_mode ? "command" : "video");
  421. DRM_DEBUG_KMS("Pixel Format %d\n", intel_dsi->pixel_format);
  422. DRM_DEBUG_KMS("TLPX %d\n", intel_dsi->escape_clk_div);
  423. DRM_DEBUG_KMS("LP RX Timeout 0x%x\n", intel_dsi->lp_rx_timeout);
  424. DRM_DEBUG_KMS("Turnaround Timeout 0x%x\n", intel_dsi->turn_arnd_val);
  425. DRM_DEBUG_KMS("Init Count 0x%x\n", intel_dsi->init_count);
  426. DRM_DEBUG_KMS("HS to LP Count 0x%x\n", intel_dsi->hs_to_lp_count);
  427. DRM_DEBUG_KMS("LP Byte Clock %d\n", intel_dsi->lp_byte_clk);
  428. DRM_DEBUG_KMS("DBI BW Timer 0x%x\n", intel_dsi->bw_timer);
  429. DRM_DEBUG_KMS("LP to HS Clock Count 0x%x\n", intel_dsi->clk_lp_to_hs_count);
  430. DRM_DEBUG_KMS("HS to LP Clock Count 0x%x\n", intel_dsi->clk_hs_to_lp_count);
  431. DRM_DEBUG_KMS("BTA %s\n",
  432. intel_dsi->video_frmt_cfg_bits & DISABLE_VIDEO_BTA ?
  433. "disabled" : "enabled");
  434. /* delays in VBT are in unit of 100us, so need to convert
  435. * here in ms
  436. * Delay (100us) * 100 /1000 = Delay / 10 (ms) */
  437. intel_dsi->backlight_off_delay = pps->bl_disable_delay / 10;
  438. intel_dsi->backlight_on_delay = pps->bl_enable_delay / 10;
  439. intel_dsi->panel_on_delay = pps->panel_on_delay / 10;
  440. intel_dsi->panel_off_delay = pps->panel_off_delay / 10;
  441. intel_dsi->panel_pwr_cycle_delay = pps->panel_power_cycle_delay / 10;
  442. return true;
  443. }
  444. static int generic_mode_valid(struct intel_dsi_device *dsi,
  445. struct drm_display_mode *mode)
  446. {
  447. return MODE_OK;
  448. }
  449. static bool generic_mode_fixup(struct intel_dsi_device *dsi,
  450. const struct drm_display_mode *mode,
  451. struct drm_display_mode *adjusted_mode) {
  452. return true;
  453. }
  454. static void generic_panel_reset(struct intel_dsi_device *dsi)
  455. {
  456. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  457. struct drm_device *dev = intel_dsi->base.base.dev;
  458. struct drm_i915_private *dev_priv = dev->dev_private;
  459. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_ASSERT_RESET];
  460. generic_exec_sequence(intel_dsi, sequence);
  461. }
  462. static void generic_disable_panel_power(struct intel_dsi_device *dsi)
  463. {
  464. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  465. struct drm_device *dev = intel_dsi->base.base.dev;
  466. struct drm_i915_private *dev_priv = dev->dev_private;
  467. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET];
  468. generic_exec_sequence(intel_dsi, sequence);
  469. }
  470. static void generic_send_otp_cmds(struct intel_dsi_device *dsi)
  471. {
  472. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  473. struct drm_device *dev = intel_dsi->base.base.dev;
  474. struct drm_i915_private *dev_priv = dev->dev_private;
  475. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP];
  476. generic_exec_sequence(intel_dsi, sequence);
  477. }
  478. static void generic_enable(struct intel_dsi_device *dsi)
  479. {
  480. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  481. struct drm_device *dev = intel_dsi->base.base.dev;
  482. struct drm_i915_private *dev_priv = dev->dev_private;
  483. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_ON];
  484. generic_exec_sequence(intel_dsi, sequence);
  485. }
  486. static void generic_disable(struct intel_dsi_device *dsi)
  487. {
  488. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  489. struct drm_device *dev = intel_dsi->base.base.dev;
  490. struct drm_i915_private *dev_priv = dev->dev_private;
  491. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_OFF];
  492. generic_exec_sequence(intel_dsi, sequence);
  493. }
  494. static enum drm_connector_status generic_detect(struct intel_dsi_device *dsi)
  495. {
  496. return connector_status_connected;
  497. }
  498. static bool generic_get_hw_state(struct intel_dsi_device *dev)
  499. {
  500. return true;
  501. }
  502. static struct drm_display_mode *generic_get_modes(struct intel_dsi_device *dsi)
  503. {
  504. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  505. struct drm_device *dev = intel_dsi->base.base.dev;
  506. struct drm_i915_private *dev_priv = dev->dev_private;
  507. dev_priv->vbt.lfp_lvds_vbt_mode->type |= DRM_MODE_TYPE_PREFERRED;
  508. return dev_priv->vbt.lfp_lvds_vbt_mode;
  509. }
  510. static void generic_destroy(struct intel_dsi_device *dsi) { }
  511. /* Callbacks. We might not need them all. */
  512. struct intel_dsi_dev_ops vbt_generic_dsi_display_ops = {
  513. .init = generic_init,
  514. .mode_valid = generic_mode_valid,
  515. .mode_fixup = generic_mode_fixup,
  516. .panel_reset = generic_panel_reset,
  517. .disable_panel_power = generic_disable_panel_power,
  518. .send_otp_cmds = generic_send_otp_cmds,
  519. .enable = generic_enable,
  520. .disable = generic_disable,
  521. .detect = generic_detect,
  522. .get_hw_state = generic_get_hw_state,
  523. .get_modes = generic_get_modes,
  524. .destroy = generic_destroy,
  525. };