intel_dsi_panel_vbt.c 23 KB

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