intel_dsi_panel_vbt.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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. DRM_DEBUG_KMS("\n");
  237. intel_dsi->eotp_pkt = mipi_config->eot_pkt_disabled ? 0 : 1;
  238. intel_dsi->clock_stop = mipi_config->enable_clk_stop ? 1 : 0;
  239. intel_dsi->lane_count = mipi_config->lane_cnt + 1;
  240. intel_dsi->pixel_format = mipi_config->videomode_color_format << 7;
  241. if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB666)
  242. bits_per_pixel = 18;
  243. else if (intel_dsi->pixel_format == VID_MODE_FORMAT_RGB565)
  244. bits_per_pixel = 16;
  245. bitrate = (mode->clock * bits_per_pixel) / intel_dsi->lane_count;
  246. intel_dsi->operation_mode = mipi_config->is_cmd_mode;
  247. intel_dsi->video_mode_format = mipi_config->video_transfer_mode;
  248. intel_dsi->escape_clk_div = mipi_config->byte_clk_sel;
  249. intel_dsi->lp_rx_timeout = mipi_config->lp_rx_timeout;
  250. intel_dsi->turn_arnd_val = mipi_config->turn_around_timeout;
  251. intel_dsi->rst_timer_val = mipi_config->device_reset_timer;
  252. intel_dsi->init_count = mipi_config->master_init_timer;
  253. intel_dsi->bw_timer = mipi_config->dbi_bw_timer;
  254. intel_dsi->video_frmt_cfg_bits = mipi_config->bta_enabled ? DISABLE_VIDEO_BTA : 0;
  255. switch (intel_dsi->escape_clk_div) {
  256. case 0:
  257. tlpx_ns = 50;
  258. break;
  259. case 1:
  260. tlpx_ns = 100;
  261. break;
  262. case 2:
  263. tlpx_ns = 200;
  264. break;
  265. default:
  266. tlpx_ns = 50;
  267. break;
  268. }
  269. switch (intel_dsi->lane_count) {
  270. case 1:
  271. case 2:
  272. extra_byte_count = 2;
  273. break;
  274. case 3:
  275. extra_byte_count = 4;
  276. break;
  277. case 4:
  278. default:
  279. extra_byte_count = 3;
  280. break;
  281. }
  282. /*
  283. * ui(s) = 1/f [f in hz]
  284. * ui(ns) = 10^9 / (f*10^6) [f in Mhz] -> 10^3/f(Mhz)
  285. */
  286. /* in Kbps */
  287. ui_num = NS_KHZ_RATIO;
  288. ui_den = bitrate;
  289. tclk_prepare_clkzero = mipi_config->tclk_prepare_clkzero;
  290. ths_prepare_hszero = mipi_config->ths_prepare_hszero;
  291. /*
  292. * B060
  293. * LP byte clock = TLPX/ (8UI)
  294. */
  295. intel_dsi->lp_byte_clk = DIV_ROUND_UP(tlpx_ns * ui_den, 8 * ui_num);
  296. /* count values in UI = (ns value) * (bitrate / (2 * 10^6))
  297. *
  298. * Since txddrclkhs_i is 2xUI, all the count values programmed in
  299. * DPHY param register are divided by 2
  300. *
  301. * prepare count
  302. */
  303. ths_prepare_ns = max(mipi_config->ths_prepare, mipi_config->tclk_prepare);
  304. prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * 2);
  305. /* exit zero count */
  306. exit_zero_cnt = DIV_ROUND_UP(
  307. (ths_prepare_hszero - ths_prepare_ns) * ui_den,
  308. ui_num * 2
  309. );
  310. /*
  311. * Exit zero is unified val ths_zero and ths_exit
  312. * minimum value for ths_exit = 110ns
  313. * min (exit_zero_cnt * 2) = 110/UI
  314. * exit_zero_cnt = 55/UI
  315. */
  316. if (exit_zero_cnt < (55 * ui_den / ui_num))
  317. if ((55 * ui_den) % ui_num)
  318. exit_zero_cnt += 1;
  319. /* clk zero count */
  320. clk_zero_cnt = DIV_ROUND_UP(
  321. (tclk_prepare_clkzero - ths_prepare_ns)
  322. * ui_den, 2 * ui_num);
  323. /* trail count */
  324. tclk_trail_ns = max(mipi_config->tclk_trail, mipi_config->ths_trail);
  325. trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, 2 * ui_num);
  326. if (prepare_cnt > PREPARE_CNT_MAX ||
  327. exit_zero_cnt > EXIT_ZERO_CNT_MAX ||
  328. clk_zero_cnt > CLK_ZERO_CNT_MAX ||
  329. trail_cnt > TRAIL_CNT_MAX)
  330. DRM_DEBUG_DRIVER("Values crossing maximum limits, restricting to max values\n");
  331. if (prepare_cnt > PREPARE_CNT_MAX)
  332. prepare_cnt = PREPARE_CNT_MAX;
  333. if (exit_zero_cnt > EXIT_ZERO_CNT_MAX)
  334. exit_zero_cnt = EXIT_ZERO_CNT_MAX;
  335. if (clk_zero_cnt > CLK_ZERO_CNT_MAX)
  336. clk_zero_cnt = CLK_ZERO_CNT_MAX;
  337. if (trail_cnt > TRAIL_CNT_MAX)
  338. trail_cnt = TRAIL_CNT_MAX;
  339. /* B080 */
  340. intel_dsi->dphy_reg = exit_zero_cnt << 24 | trail_cnt << 16 |
  341. clk_zero_cnt << 8 | prepare_cnt;
  342. /*
  343. * LP to HS switch count = 4TLPX + PREP_COUNT * 2 + EXIT_ZERO_COUNT * 2
  344. * + 10UI + Extra Byte Count
  345. *
  346. * HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
  347. * Extra Byte Count is calculated according to number of lanes.
  348. * High Low Switch Count is the Max of LP to HS and
  349. * HS to LP switch count
  350. *
  351. */
  352. tlpx_ui = DIV_ROUND_UP(tlpx_ns * ui_den, ui_num);
  353. /* B044 */
  354. /* FIXME:
  355. * The comment above does not match with the code */
  356. lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * 2 +
  357. exit_zero_cnt * 2 + 10, 8);
  358. hs_to_lp_switch = DIV_ROUND_UP(mipi_config->ths_trail + 2 * tlpx_ui, 8);
  359. intel_dsi->hs_to_lp_count = max(lp_to_hs_switch, hs_to_lp_switch);
  360. intel_dsi->hs_to_lp_count += extra_byte_count;
  361. /* B088 */
  362. /* LP -> HS for clock lanes
  363. * LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
  364. * extra byte count
  365. * 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
  366. * 2(in UI) + extra byte count
  367. * In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
  368. * 8 + extra byte count
  369. */
  370. intel_dsi->clk_lp_to_hs_count =
  371. DIV_ROUND_UP(
  372. 4 * tlpx_ui + prepare_cnt * 2 +
  373. clk_zero_cnt * 2,
  374. 8);
  375. intel_dsi->clk_lp_to_hs_count += extra_byte_count;
  376. /* HS->LP for Clock Lanes
  377. * Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
  378. * Extra byte count
  379. * 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
  380. * In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
  381. * Extra byte count
  382. */
  383. intel_dsi->clk_hs_to_lp_count =
  384. DIV_ROUND_UP(2 * tlpx_ui + trail_cnt * 2 + 8,
  385. 8);
  386. intel_dsi->clk_hs_to_lp_count += extra_byte_count;
  387. DRM_DEBUG_KMS("Eot %s\n", intel_dsi->eotp_pkt ? "enabled" : "disabled");
  388. DRM_DEBUG_KMS("Clockstop %s\n", intel_dsi->clock_stop ?
  389. "disabled" : "enabled");
  390. DRM_DEBUG_KMS("Mode %s\n", intel_dsi->operation_mode ? "command" : "video");
  391. DRM_DEBUG_KMS("Pixel Format %d\n", intel_dsi->pixel_format);
  392. DRM_DEBUG_KMS("TLPX %d\n", intel_dsi->escape_clk_div);
  393. DRM_DEBUG_KMS("LP RX Timeout 0x%x\n", intel_dsi->lp_rx_timeout);
  394. DRM_DEBUG_KMS("Turnaround Timeout 0x%x\n", intel_dsi->turn_arnd_val);
  395. DRM_DEBUG_KMS("Init Count 0x%x\n", intel_dsi->init_count);
  396. DRM_DEBUG_KMS("HS to LP Count 0x%x\n", intel_dsi->hs_to_lp_count);
  397. DRM_DEBUG_KMS("LP Byte Clock %d\n", intel_dsi->lp_byte_clk);
  398. DRM_DEBUG_KMS("DBI BW Timer 0x%x\n", intel_dsi->bw_timer);
  399. DRM_DEBUG_KMS("LP to HS Clock Count 0x%x\n", intel_dsi->clk_lp_to_hs_count);
  400. DRM_DEBUG_KMS("HS to LP Clock Count 0x%x\n", intel_dsi->clk_hs_to_lp_count);
  401. DRM_DEBUG_KMS("BTA %s\n",
  402. intel_dsi->video_frmt_cfg_bits & DISABLE_VIDEO_BTA ?
  403. "disabled" : "enabled");
  404. /* delays in VBT are in unit of 100us, so need to convert
  405. * here in ms
  406. * Delay (100us) * 100 /1000 = Delay / 10 (ms) */
  407. intel_dsi->backlight_off_delay = pps->bl_disable_delay / 10;
  408. intel_dsi->backlight_on_delay = pps->bl_enable_delay / 10;
  409. intel_dsi->panel_on_delay = pps->panel_on_delay / 10;
  410. intel_dsi->panel_off_delay = pps->panel_off_delay / 10;
  411. intel_dsi->panel_pwr_cycle_delay = pps->panel_power_cycle_delay / 10;
  412. return true;
  413. }
  414. static int generic_mode_valid(struct intel_dsi_device *dsi,
  415. struct drm_display_mode *mode)
  416. {
  417. return MODE_OK;
  418. }
  419. static bool generic_mode_fixup(struct intel_dsi_device *dsi,
  420. const struct drm_display_mode *mode,
  421. struct drm_display_mode *adjusted_mode) {
  422. return true;
  423. }
  424. static void generic_panel_reset(struct intel_dsi_device *dsi)
  425. {
  426. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  427. struct drm_device *dev = intel_dsi->base.base.dev;
  428. struct drm_i915_private *dev_priv = dev->dev_private;
  429. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_ASSERT_RESET];
  430. generic_exec_sequence(intel_dsi, sequence);
  431. }
  432. static void generic_disable_panel_power(struct intel_dsi_device *dsi)
  433. {
  434. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  435. struct drm_device *dev = intel_dsi->base.base.dev;
  436. struct drm_i915_private *dev_priv = dev->dev_private;
  437. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET];
  438. generic_exec_sequence(intel_dsi, sequence);
  439. }
  440. static void generic_send_otp_cmds(struct intel_dsi_device *dsi)
  441. {
  442. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  443. struct drm_device *dev = intel_dsi->base.base.dev;
  444. struct drm_i915_private *dev_priv = dev->dev_private;
  445. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP];
  446. generic_exec_sequence(intel_dsi, sequence);
  447. }
  448. static void generic_enable(struct intel_dsi_device *dsi)
  449. {
  450. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  451. struct drm_device *dev = intel_dsi->base.base.dev;
  452. struct drm_i915_private *dev_priv = dev->dev_private;
  453. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_ON];
  454. generic_exec_sequence(intel_dsi, sequence);
  455. }
  456. static void generic_disable(struct intel_dsi_device *dsi)
  457. {
  458. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  459. struct drm_device *dev = intel_dsi->base.base.dev;
  460. struct drm_i915_private *dev_priv = dev->dev_private;
  461. char *sequence = dev_priv->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_OFF];
  462. generic_exec_sequence(intel_dsi, sequence);
  463. }
  464. static enum drm_connector_status generic_detect(struct intel_dsi_device *dsi)
  465. {
  466. return connector_status_connected;
  467. }
  468. static bool generic_get_hw_state(struct intel_dsi_device *dev)
  469. {
  470. return true;
  471. }
  472. static struct drm_display_mode *generic_get_modes(struct intel_dsi_device *dsi)
  473. {
  474. struct intel_dsi *intel_dsi = container_of(dsi, struct intel_dsi, dev);
  475. struct drm_device *dev = intel_dsi->base.base.dev;
  476. struct drm_i915_private *dev_priv = dev->dev_private;
  477. dev_priv->vbt.lfp_lvds_vbt_mode->type |= DRM_MODE_TYPE_PREFERRED;
  478. return dev_priv->vbt.lfp_lvds_vbt_mode;
  479. }
  480. static void generic_destroy(struct intel_dsi_device *dsi) { }
  481. /* Callbacks. We might not need them all. */
  482. struct intel_dsi_dev_ops vbt_generic_dsi_display_ops = {
  483. .init = generic_init,
  484. .mode_valid = generic_mode_valid,
  485. .mode_fixup = generic_mode_fixup,
  486. .panel_reset = generic_panel_reset,
  487. .disable_panel_power = generic_disable_panel_power,
  488. .send_otp_cmds = generic_send_otp_cmds,
  489. .enable = generic_enable,
  490. .disable = generic_disable,
  491. .detect = generic_detect,
  492. .get_hw_state = generic_get_hw_state,
  493. .get_modes = generic_get_modes,
  494. .destroy = generic_destroy,
  495. };