intel_dsi.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. /*
  2. * Copyright © 2013 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: Jani Nikula <jani.nikula@intel.com>
  24. */
  25. #include <drm/drmP.h>
  26. #include <drm/drm_atomic_helper.h>
  27. #include <drm/drm_crtc.h>
  28. #include <drm/drm_edid.h>
  29. #include <drm/i915_drm.h>
  30. #include <drm/drm_mipi_dsi.h>
  31. #include <linux/slab.h>
  32. #include <linux/gpio/consumer.h>
  33. #include "i915_drv.h"
  34. #include "intel_drv.h"
  35. #include "intel_dsi.h"
  36. /* return pixels in terms of txbyteclkhs */
  37. static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count,
  38. u16 burst_mode_ratio)
  39. {
  40. return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio,
  41. 8 * 100), lane_count);
  42. }
  43. /* return pixels equvalent to txbyteclkhs */
  44. static u16 pixels_from_txbyteclkhs(u16 clk_hs, int bpp, int lane_count,
  45. u16 burst_mode_ratio)
  46. {
  47. return DIV_ROUND_UP((clk_hs * lane_count * 8 * 100),
  48. (bpp * burst_mode_ratio));
  49. }
  50. enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt)
  51. {
  52. /* It just so happens the VBT matches register contents. */
  53. switch (fmt) {
  54. case VID_MODE_FORMAT_RGB888:
  55. return MIPI_DSI_FMT_RGB888;
  56. case VID_MODE_FORMAT_RGB666:
  57. return MIPI_DSI_FMT_RGB666;
  58. case VID_MODE_FORMAT_RGB666_PACKED:
  59. return MIPI_DSI_FMT_RGB666_PACKED;
  60. case VID_MODE_FORMAT_RGB565:
  61. return MIPI_DSI_FMT_RGB565;
  62. default:
  63. MISSING_CASE(fmt);
  64. return MIPI_DSI_FMT_RGB666;
  65. }
  66. }
  67. void wait_for_dsi_fifo_empty(struct intel_dsi *intel_dsi, enum port port)
  68. {
  69. struct drm_encoder *encoder = &intel_dsi->base.base;
  70. struct drm_device *dev = encoder->dev;
  71. struct drm_i915_private *dev_priv = to_i915(dev);
  72. u32 mask;
  73. mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY |
  74. LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY;
  75. if (intel_wait_for_register(dev_priv,
  76. MIPI_GEN_FIFO_STAT(port), mask, mask,
  77. 100))
  78. DRM_ERROR("DPI FIFOs are not empty\n");
  79. }
  80. static void write_data(struct drm_i915_private *dev_priv,
  81. i915_reg_t reg,
  82. const u8 *data, u32 len)
  83. {
  84. u32 i, j;
  85. for (i = 0; i < len; i += 4) {
  86. u32 val = 0;
  87. for (j = 0; j < min_t(u32, len - i, 4); j++)
  88. val |= *data++ << 8 * j;
  89. I915_WRITE(reg, val);
  90. }
  91. }
  92. static void read_data(struct drm_i915_private *dev_priv,
  93. i915_reg_t reg,
  94. u8 *data, u32 len)
  95. {
  96. u32 i, j;
  97. for (i = 0; i < len; i += 4) {
  98. u32 val = I915_READ(reg);
  99. for (j = 0; j < min_t(u32, len - i, 4); j++)
  100. *data++ = val >> 8 * j;
  101. }
  102. }
  103. static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host,
  104. const struct mipi_dsi_msg *msg)
  105. {
  106. struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host);
  107. struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev;
  108. struct drm_i915_private *dev_priv = to_i915(dev);
  109. enum port port = intel_dsi_host->port;
  110. struct mipi_dsi_packet packet;
  111. ssize_t ret;
  112. const u8 *header, *data;
  113. i915_reg_t data_reg, ctrl_reg;
  114. u32 data_mask, ctrl_mask;
  115. ret = mipi_dsi_create_packet(&packet, msg);
  116. if (ret < 0)
  117. return ret;
  118. header = packet.header;
  119. data = packet.payload;
  120. if (msg->flags & MIPI_DSI_MSG_USE_LPM) {
  121. data_reg = MIPI_LP_GEN_DATA(port);
  122. data_mask = LP_DATA_FIFO_FULL;
  123. ctrl_reg = MIPI_LP_GEN_CTRL(port);
  124. ctrl_mask = LP_CTRL_FIFO_FULL;
  125. } else {
  126. data_reg = MIPI_HS_GEN_DATA(port);
  127. data_mask = HS_DATA_FIFO_FULL;
  128. ctrl_reg = MIPI_HS_GEN_CTRL(port);
  129. ctrl_mask = HS_CTRL_FIFO_FULL;
  130. }
  131. /* note: this is never true for reads */
  132. if (packet.payload_length) {
  133. if (intel_wait_for_register(dev_priv,
  134. MIPI_GEN_FIFO_STAT(port),
  135. data_mask, 0,
  136. 50))
  137. DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n");
  138. write_data(dev_priv, data_reg, packet.payload,
  139. packet.payload_length);
  140. }
  141. if (msg->rx_len) {
  142. I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL);
  143. }
  144. if (intel_wait_for_register(dev_priv,
  145. MIPI_GEN_FIFO_STAT(port),
  146. ctrl_mask, 0,
  147. 50)) {
  148. DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
  149. }
  150. I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]);
  151. /* ->rx_len is set only for reads */
  152. if (msg->rx_len) {
  153. data_mask = GEN_READ_DATA_AVAIL;
  154. if (intel_wait_for_register(dev_priv,
  155. MIPI_INTR_STAT(port),
  156. data_mask, data_mask,
  157. 50))
  158. DRM_ERROR("Timeout waiting for read data.\n");
  159. read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
  160. }
  161. /* XXX: fix for reads and writes */
  162. return 4 + packet.payload_length;
  163. }
  164. static int intel_dsi_host_attach(struct mipi_dsi_host *host,
  165. struct mipi_dsi_device *dsi)
  166. {
  167. return 0;
  168. }
  169. static int intel_dsi_host_detach(struct mipi_dsi_host *host,
  170. struct mipi_dsi_device *dsi)
  171. {
  172. return 0;
  173. }
  174. static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
  175. .attach = intel_dsi_host_attach,
  176. .detach = intel_dsi_host_detach,
  177. .transfer = intel_dsi_host_transfer,
  178. };
  179. static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
  180. enum port port)
  181. {
  182. struct intel_dsi_host *host;
  183. struct mipi_dsi_device *device;
  184. host = kzalloc(sizeof(*host), GFP_KERNEL);
  185. if (!host)
  186. return NULL;
  187. host->base.ops = &intel_dsi_host_ops;
  188. host->intel_dsi = intel_dsi;
  189. host->port = port;
  190. /*
  191. * We should call mipi_dsi_host_register(&host->base) here, but we don't
  192. * have a host->dev, and we don't have OF stuff either. So just use the
  193. * dsi framework as a library and hope for the best. Create the dsi
  194. * devices by ourselves here too. Need to be careful though, because we
  195. * don't initialize any of the driver model devices here.
  196. */
  197. device = kzalloc(sizeof(*device), GFP_KERNEL);
  198. if (!device) {
  199. kfree(host);
  200. return NULL;
  201. }
  202. device->host = &host->base;
  203. host->device = device;
  204. return host;
  205. }
  206. /*
  207. * send a video mode command
  208. *
  209. * XXX: commands with data in MIPI_DPI_DATA?
  210. */
  211. static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
  212. enum port port)
  213. {
  214. struct drm_encoder *encoder = &intel_dsi->base.base;
  215. struct drm_device *dev = encoder->dev;
  216. struct drm_i915_private *dev_priv = to_i915(dev);
  217. u32 mask;
  218. /* XXX: pipe, hs */
  219. if (hs)
  220. cmd &= ~DPI_LP_MODE;
  221. else
  222. cmd |= DPI_LP_MODE;
  223. /* clear bit */
  224. I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
  225. /* XXX: old code skips write if control unchanged */
  226. if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
  227. DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
  228. I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
  229. mask = SPL_PKT_SENT_INTERRUPT;
  230. if (intel_wait_for_register(dev_priv,
  231. MIPI_INTR_STAT(port), mask, mask,
  232. 100))
  233. DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
  234. return 0;
  235. }
  236. static void band_gap_reset(struct drm_i915_private *dev_priv)
  237. {
  238. mutex_lock(&dev_priv->sb_lock);
  239. vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
  240. vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
  241. vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
  242. udelay(150);
  243. vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
  244. vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
  245. mutex_unlock(&dev_priv->sb_lock);
  246. }
  247. static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
  248. {
  249. return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
  250. }
  251. static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
  252. {
  253. return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
  254. }
  255. static bool intel_dsi_compute_config(struct intel_encoder *encoder,
  256. struct intel_crtc_state *pipe_config,
  257. struct drm_connector_state *conn_state)
  258. {
  259. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  260. struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
  261. base);
  262. struct intel_connector *intel_connector = intel_dsi->attached_connector;
  263. struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
  264. const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
  265. struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
  266. int ret;
  267. DRM_DEBUG_KMS("\n");
  268. if (fixed_mode) {
  269. intel_fixed_panel_mode(fixed_mode, adjusted_mode);
  270. if (HAS_GMCH_DISPLAY(dev_priv))
  271. intel_gmch_panel_fitting(crtc, pipe_config,
  272. conn_state->scaling_mode);
  273. else
  274. intel_pch_panel_fitting(crtc, pipe_config,
  275. conn_state->scaling_mode);
  276. }
  277. /* DSI uses short packets for sync events, so clear mode flags for DSI */
  278. adjusted_mode->flags = 0;
  279. if (IS_GEN9_LP(dev_priv)) {
  280. /* Dual link goes to DSI transcoder A. */
  281. if (intel_dsi->ports == BIT(PORT_C))
  282. pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
  283. else
  284. pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
  285. }
  286. ret = intel_compute_dsi_pll(encoder, pipe_config);
  287. if (ret)
  288. return false;
  289. pipe_config->clock_set = true;
  290. return true;
  291. }
  292. static bool glk_dsi_enable_io(struct intel_encoder *encoder)
  293. {
  294. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  295. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  296. enum port port;
  297. u32 tmp;
  298. bool cold_boot = false;
  299. /* Set the MIPI mode
  300. * If MIPI_Mode is off, then writing to LP_Wake bit is not reflecting.
  301. * Power ON MIPI IO first and then write into IO reset and LP wake bits
  302. */
  303. for_each_dsi_port(port, intel_dsi->ports) {
  304. tmp = I915_READ(MIPI_CTRL(port));
  305. I915_WRITE(MIPI_CTRL(port), tmp | GLK_MIPIIO_ENABLE);
  306. }
  307. /* Put the IO into reset */
  308. tmp = I915_READ(MIPI_CTRL(PORT_A));
  309. tmp &= ~GLK_MIPIIO_RESET_RELEASED;
  310. I915_WRITE(MIPI_CTRL(PORT_A), tmp);
  311. /* Program LP Wake */
  312. for_each_dsi_port(port, intel_dsi->ports) {
  313. tmp = I915_READ(MIPI_CTRL(port));
  314. if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
  315. tmp &= ~GLK_LP_WAKE;
  316. else
  317. tmp |= GLK_LP_WAKE;
  318. I915_WRITE(MIPI_CTRL(port), tmp);
  319. }
  320. /* Wait for Pwr ACK */
  321. for_each_dsi_port(port, intel_dsi->ports) {
  322. if (intel_wait_for_register(dev_priv,
  323. MIPI_CTRL(port), GLK_MIPIIO_PORT_POWERED,
  324. GLK_MIPIIO_PORT_POWERED, 20))
  325. DRM_ERROR("MIPIO port is powergated\n");
  326. }
  327. /* Check for cold boot scenario */
  328. for_each_dsi_port(port, intel_dsi->ports) {
  329. cold_boot |= !(I915_READ(MIPI_DEVICE_READY(port)) &
  330. DEVICE_READY);
  331. }
  332. return cold_boot;
  333. }
  334. static void glk_dsi_device_ready(struct intel_encoder *encoder)
  335. {
  336. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  337. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  338. enum port port;
  339. u32 val;
  340. /* Wait for MIPI PHY status bit to set */
  341. for_each_dsi_port(port, intel_dsi->ports) {
  342. if (intel_wait_for_register(dev_priv,
  343. MIPI_CTRL(port), GLK_PHY_STATUS_PORT_READY,
  344. GLK_PHY_STATUS_PORT_READY, 20))
  345. DRM_ERROR("PHY is not ON\n");
  346. }
  347. /* Get IO out of reset */
  348. val = I915_READ(MIPI_CTRL(PORT_A));
  349. I915_WRITE(MIPI_CTRL(PORT_A), val | GLK_MIPIIO_RESET_RELEASED);
  350. /* Get IO out of Low power state*/
  351. for_each_dsi_port(port, intel_dsi->ports) {
  352. if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY)) {
  353. val = I915_READ(MIPI_DEVICE_READY(port));
  354. val &= ~ULPS_STATE_MASK;
  355. val |= DEVICE_READY;
  356. I915_WRITE(MIPI_DEVICE_READY(port), val);
  357. usleep_range(10, 15);
  358. } else {
  359. /* Enter ULPS */
  360. val = I915_READ(MIPI_DEVICE_READY(port));
  361. val &= ~ULPS_STATE_MASK;
  362. val |= (ULPS_STATE_ENTER | DEVICE_READY);
  363. I915_WRITE(MIPI_DEVICE_READY(port), val);
  364. /* Wait for ULPS active */
  365. if (intel_wait_for_register(dev_priv,
  366. MIPI_CTRL(port), GLK_ULPS_NOT_ACTIVE, 0, 20))
  367. DRM_ERROR("ULPS not active\n");
  368. /* Exit ULPS */
  369. val = I915_READ(MIPI_DEVICE_READY(port));
  370. val &= ~ULPS_STATE_MASK;
  371. val |= (ULPS_STATE_EXIT | DEVICE_READY);
  372. I915_WRITE(MIPI_DEVICE_READY(port), val);
  373. /* Enter Normal Mode */
  374. val = I915_READ(MIPI_DEVICE_READY(port));
  375. val &= ~ULPS_STATE_MASK;
  376. val |= (ULPS_STATE_NORMAL_OPERATION | DEVICE_READY);
  377. I915_WRITE(MIPI_DEVICE_READY(port), val);
  378. val = I915_READ(MIPI_CTRL(port));
  379. val &= ~GLK_LP_WAKE;
  380. I915_WRITE(MIPI_CTRL(port), val);
  381. }
  382. }
  383. /* Wait for Stop state */
  384. for_each_dsi_port(port, intel_dsi->ports) {
  385. if (intel_wait_for_register(dev_priv,
  386. MIPI_CTRL(port), GLK_DATA_LANE_STOP_STATE,
  387. GLK_DATA_LANE_STOP_STATE, 20))
  388. DRM_ERROR("Date lane not in STOP state\n");
  389. }
  390. /* Wait for AFE LATCH */
  391. for_each_dsi_port(port, intel_dsi->ports) {
  392. if (intel_wait_for_register(dev_priv,
  393. BXT_MIPI_PORT_CTRL(port), AFE_LATCHOUT,
  394. AFE_LATCHOUT, 20))
  395. DRM_ERROR("D-PHY not entering LP-11 state\n");
  396. }
  397. }
  398. static void bxt_dsi_device_ready(struct intel_encoder *encoder)
  399. {
  400. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  401. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  402. enum port port;
  403. u32 val;
  404. DRM_DEBUG_KMS("\n");
  405. /* Enable MIPI PHY transparent latch */
  406. for_each_dsi_port(port, intel_dsi->ports) {
  407. val = I915_READ(BXT_MIPI_PORT_CTRL(port));
  408. I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
  409. usleep_range(2000, 2500);
  410. }
  411. /* Clear ULPS and set device ready */
  412. for_each_dsi_port(port, intel_dsi->ports) {
  413. val = I915_READ(MIPI_DEVICE_READY(port));
  414. val &= ~ULPS_STATE_MASK;
  415. I915_WRITE(MIPI_DEVICE_READY(port), val);
  416. usleep_range(2000, 2500);
  417. val |= DEVICE_READY;
  418. I915_WRITE(MIPI_DEVICE_READY(port), val);
  419. }
  420. }
  421. static void vlv_dsi_device_ready(struct intel_encoder *encoder)
  422. {
  423. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  424. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  425. enum port port;
  426. u32 val;
  427. DRM_DEBUG_KMS("\n");
  428. mutex_lock(&dev_priv->sb_lock);
  429. /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
  430. * needed everytime after power gate */
  431. vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
  432. mutex_unlock(&dev_priv->sb_lock);
  433. /* bandgap reset is needed after everytime we do power gate */
  434. band_gap_reset(dev_priv);
  435. for_each_dsi_port(port, intel_dsi->ports) {
  436. I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
  437. usleep_range(2500, 3000);
  438. /* Enable MIPI PHY transparent latch
  439. * Common bit for both MIPI Port A & MIPI Port C
  440. * No similar bit in MIPI Port C reg
  441. */
  442. val = I915_READ(MIPI_PORT_CTRL(PORT_A));
  443. I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
  444. usleep_range(1000, 1500);
  445. I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
  446. usleep_range(2500, 3000);
  447. I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
  448. usleep_range(2500, 3000);
  449. }
  450. }
  451. static void intel_dsi_device_ready(struct intel_encoder *encoder)
  452. {
  453. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  454. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
  455. vlv_dsi_device_ready(encoder);
  456. else if (IS_BROXTON(dev_priv))
  457. bxt_dsi_device_ready(encoder);
  458. else if (IS_GEMINILAKE(dev_priv))
  459. glk_dsi_device_ready(encoder);
  460. }
  461. static void glk_dsi_enter_low_power_mode(struct intel_encoder *encoder)
  462. {
  463. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  464. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  465. enum port port;
  466. u32 val;
  467. /* Enter ULPS */
  468. for_each_dsi_port(port, intel_dsi->ports) {
  469. val = I915_READ(MIPI_DEVICE_READY(port));
  470. val &= ~ULPS_STATE_MASK;
  471. val |= (ULPS_STATE_ENTER | DEVICE_READY);
  472. I915_WRITE(MIPI_DEVICE_READY(port), val);
  473. }
  474. /* Wait for MIPI PHY status bit to unset */
  475. for_each_dsi_port(port, intel_dsi->ports) {
  476. if (intel_wait_for_register(dev_priv,
  477. MIPI_CTRL(port),
  478. GLK_PHY_STATUS_PORT_READY, 0, 20))
  479. DRM_ERROR("PHY is not turning OFF\n");
  480. }
  481. /* Wait for Pwr ACK bit to unset */
  482. for_each_dsi_port(port, intel_dsi->ports) {
  483. if (intel_wait_for_register(dev_priv,
  484. MIPI_CTRL(port),
  485. GLK_MIPIIO_PORT_POWERED, 0, 20))
  486. DRM_ERROR("MIPI IO Port is not powergated\n");
  487. }
  488. }
  489. static void glk_dsi_disable_mipi_io(struct intel_encoder *encoder)
  490. {
  491. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  492. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  493. enum port port;
  494. u32 tmp;
  495. /* Put the IO into reset */
  496. tmp = I915_READ(MIPI_CTRL(PORT_A));
  497. tmp &= ~GLK_MIPIIO_RESET_RELEASED;
  498. I915_WRITE(MIPI_CTRL(PORT_A), tmp);
  499. /* Wait for MIPI PHY status bit to unset */
  500. for_each_dsi_port(port, intel_dsi->ports) {
  501. if (intel_wait_for_register(dev_priv,
  502. MIPI_CTRL(port),
  503. GLK_PHY_STATUS_PORT_READY, 0, 20))
  504. DRM_ERROR("PHY is not turning OFF\n");
  505. }
  506. /* Clear MIPI mode */
  507. for_each_dsi_port(port, intel_dsi->ports) {
  508. tmp = I915_READ(MIPI_CTRL(port));
  509. tmp &= ~GLK_MIPIIO_ENABLE;
  510. I915_WRITE(MIPI_CTRL(port), tmp);
  511. }
  512. }
  513. static void glk_dsi_clear_device_ready(struct intel_encoder *encoder)
  514. {
  515. glk_dsi_enter_low_power_mode(encoder);
  516. glk_dsi_disable_mipi_io(encoder);
  517. }
  518. static void vlv_dsi_clear_device_ready(struct intel_encoder *encoder)
  519. {
  520. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  521. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  522. enum port port;
  523. DRM_DEBUG_KMS("\n");
  524. for_each_dsi_port(port, intel_dsi->ports) {
  525. /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
  526. i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
  527. BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
  528. u32 val;
  529. I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
  530. ULPS_STATE_ENTER);
  531. usleep_range(2000, 2500);
  532. I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
  533. ULPS_STATE_EXIT);
  534. usleep_range(2000, 2500);
  535. I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
  536. ULPS_STATE_ENTER);
  537. usleep_range(2000, 2500);
  538. /*
  539. * On VLV/CHV, wait till Clock lanes are in LP-00 state for MIPI
  540. * Port A only. MIPI Port C has no similar bit for checking.
  541. */
  542. if ((IS_GEN9_LP(dev_priv) || port == PORT_A) &&
  543. intel_wait_for_register(dev_priv,
  544. port_ctrl, AFE_LATCHOUT, 0,
  545. 30))
  546. DRM_ERROR("DSI LP not going Low\n");
  547. /* Disable MIPI PHY transparent latch */
  548. val = I915_READ(port_ctrl);
  549. I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
  550. usleep_range(1000, 1500);
  551. I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
  552. usleep_range(2000, 2500);
  553. }
  554. }
  555. static void intel_dsi_port_enable(struct intel_encoder *encoder)
  556. {
  557. struct drm_device *dev = encoder->base.dev;
  558. struct drm_i915_private *dev_priv = to_i915(dev);
  559. struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
  560. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  561. enum port port;
  562. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
  563. u32 temp;
  564. if (IS_GEN9_LP(dev_priv)) {
  565. for_each_dsi_port(port, intel_dsi->ports) {
  566. temp = I915_READ(MIPI_CTRL(port));
  567. temp &= ~BXT_PIXEL_OVERLAP_CNT_MASK |
  568. intel_dsi->pixel_overlap <<
  569. BXT_PIXEL_OVERLAP_CNT_SHIFT;
  570. I915_WRITE(MIPI_CTRL(port), temp);
  571. }
  572. } else {
  573. temp = I915_READ(VLV_CHICKEN_3);
  574. temp &= ~PIXEL_OVERLAP_CNT_MASK |
  575. intel_dsi->pixel_overlap <<
  576. PIXEL_OVERLAP_CNT_SHIFT;
  577. I915_WRITE(VLV_CHICKEN_3, temp);
  578. }
  579. }
  580. for_each_dsi_port(port, intel_dsi->ports) {
  581. i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
  582. BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
  583. u32 temp;
  584. temp = I915_READ(port_ctrl);
  585. temp &= ~LANE_CONFIGURATION_MASK;
  586. temp &= ~DUAL_LINK_MODE_MASK;
  587. if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
  588. temp |= (intel_dsi->dual_link - 1)
  589. << DUAL_LINK_MODE_SHIFT;
  590. if (IS_BROXTON(dev_priv))
  591. temp |= LANE_CONFIGURATION_DUAL_LINK_A;
  592. else
  593. temp |= intel_crtc->pipe ?
  594. LANE_CONFIGURATION_DUAL_LINK_B :
  595. LANE_CONFIGURATION_DUAL_LINK_A;
  596. }
  597. /* assert ip_tg_enable signal */
  598. I915_WRITE(port_ctrl, temp | DPI_ENABLE);
  599. POSTING_READ(port_ctrl);
  600. }
  601. }
  602. static void intel_dsi_port_disable(struct intel_encoder *encoder)
  603. {
  604. struct drm_device *dev = encoder->base.dev;
  605. struct drm_i915_private *dev_priv = to_i915(dev);
  606. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  607. enum port port;
  608. for_each_dsi_port(port, intel_dsi->ports) {
  609. i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
  610. BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
  611. u32 temp;
  612. /* de-assert ip_tg_enable signal */
  613. temp = I915_READ(port_ctrl);
  614. I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
  615. POSTING_READ(port_ctrl);
  616. }
  617. }
  618. static void intel_dsi_prepare(struct intel_encoder *intel_encoder,
  619. struct intel_crtc_state *pipe_config);
  620. static void intel_dsi_unprepare(struct intel_encoder *encoder);
  621. static void intel_dsi_msleep(struct intel_dsi *intel_dsi, int msec)
  622. {
  623. struct drm_i915_private *dev_priv = to_i915(intel_dsi->base.base.dev);
  624. /* For v3 VBTs in vid-mode the delays are part of the VBT sequences */
  625. if (is_vid_mode(intel_dsi) && dev_priv->vbt.dsi.seq_version >= 3)
  626. return;
  627. msleep(msec);
  628. }
  629. /*
  630. * Panel enable/disable sequences from the VBT spec.
  631. *
  632. * Note the spec has AssertReset / DeassertReset swapped from their
  633. * usual naming. We use the normal names to avoid confusion (so below
  634. * they are swapped compared to the spec).
  635. *
  636. * Steps starting with MIPI refer to VBT sequences, note that for v2
  637. * VBTs several steps which have a VBT in v2 are expected to be handled
  638. * directly by the driver, by directly driving gpios for example.
  639. *
  640. * v2 video mode seq v3 video mode seq command mode seq
  641. * - power on - MIPIPanelPowerOn - power on
  642. * - wait t1+t2 - wait t1+t2
  643. * - MIPIDeassertResetPin - MIPIDeassertResetPin - MIPIDeassertResetPin
  644. * - io lines to lp-11 - io lines to lp-11 - io lines to lp-11
  645. * - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds
  646. * - MIPITearOn
  647. * - MIPIDisplayOn
  648. * - turn on DPI - turn on DPI - set pipe to dsr mode
  649. * - MIPIDisplayOn - MIPIDisplayOn
  650. * - wait t5 - wait t5
  651. * - backlight on - MIPIBacklightOn - backlight on
  652. * ... ... ... issue mem cmds ...
  653. * - backlight off - MIPIBacklightOff - backlight off
  654. * - wait t6 - wait t6
  655. * - MIPIDisplayOff
  656. * - turn off DPI - turn off DPI - disable pipe dsr mode
  657. * - MIPITearOff
  658. * - MIPIDisplayOff - MIPIDisplayOff
  659. * - io lines to lp-00 - io lines to lp-00 - io lines to lp-00
  660. * - MIPIAssertResetPin - MIPIAssertResetPin - MIPIAssertResetPin
  661. * - wait t3 - wait t3
  662. * - power off - MIPIPanelPowerOff - power off
  663. * - wait t4 - wait t4
  664. */
  665. static void intel_dsi_pre_enable(struct intel_encoder *encoder,
  666. struct intel_crtc_state *pipe_config,
  667. struct drm_connector_state *conn_state)
  668. {
  669. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  670. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  671. enum port port;
  672. u32 val;
  673. bool glk_cold_boot = false;
  674. DRM_DEBUG_KMS("\n");
  675. /*
  676. * The BIOS may leave the PLL in a wonky state where it doesn't
  677. * lock. It needs to be fully powered down to fix it.
  678. */
  679. intel_disable_dsi_pll(encoder);
  680. intel_enable_dsi_pll(encoder, pipe_config);
  681. if (IS_BROXTON(dev_priv)) {
  682. /* Add MIPI IO reset programming for modeset */
  683. val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
  684. I915_WRITE(BXT_P_CR_GT_DISP_PWRON,
  685. val | MIPIO_RST_CTRL);
  686. /* Power up DSI regulator */
  687. I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
  688. I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, 0);
  689. }
  690. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
  691. u32 val;
  692. /* Disable DPOunit clock gating, can stall pipe */
  693. val = I915_READ(DSPCLK_GATE_D);
  694. val |= DPOUNIT_CLOCK_GATE_DISABLE;
  695. I915_WRITE(DSPCLK_GATE_D, val);
  696. }
  697. if (!IS_GEMINILAKE(dev_priv))
  698. intel_dsi_prepare(encoder, pipe_config);
  699. /* Power on, try both CRC pmic gpio and VBT */
  700. if (intel_dsi->gpio_panel)
  701. gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
  702. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON);
  703. intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay);
  704. /* Deassert reset */
  705. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET);
  706. if (IS_GEMINILAKE(dev_priv)) {
  707. glk_cold_boot = glk_dsi_enable_io(encoder);
  708. /* Prepare port in cold boot(s3/s4) scenario */
  709. if (glk_cold_boot)
  710. intel_dsi_prepare(encoder, pipe_config);
  711. }
  712. /* Put device in ready state (LP-11) */
  713. intel_dsi_device_ready(encoder);
  714. /* Prepare port in normal boot scenario */
  715. if (IS_GEMINILAKE(dev_priv) && !glk_cold_boot)
  716. intel_dsi_prepare(encoder, pipe_config);
  717. /* Send initialization commands in LP mode */
  718. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_INIT_OTP);
  719. /* Enable port in pre-enable phase itself because as per hw team
  720. * recommendation, port should be enabled befor plane & pipe */
  721. if (is_cmd_mode(intel_dsi)) {
  722. for_each_dsi_port(port, intel_dsi->ports)
  723. I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
  724. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_ON);
  725. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON);
  726. } else {
  727. msleep(20); /* XXX */
  728. for_each_dsi_port(port, intel_dsi->ports)
  729. dpi_send_cmd(intel_dsi, TURN_ON, false, port);
  730. intel_dsi_msleep(intel_dsi, 100);
  731. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON);
  732. intel_dsi_port_enable(encoder);
  733. }
  734. intel_panel_enable_backlight(pipe_config, conn_state);
  735. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_ON);
  736. }
  737. /*
  738. * DSI port enable has to be done before pipe and plane enable, so we do it in
  739. * the pre_enable hook.
  740. */
  741. static void intel_dsi_enable_nop(struct intel_encoder *encoder,
  742. struct intel_crtc_state *pipe_config,
  743. struct drm_connector_state *conn_state)
  744. {
  745. DRM_DEBUG_KMS("\n");
  746. }
  747. /*
  748. * DSI port disable has to be done after pipe and plane disable, so we do it in
  749. * the post_disable hook.
  750. */
  751. static void intel_dsi_disable(struct intel_encoder *encoder,
  752. struct intel_crtc_state *old_crtc_state,
  753. struct drm_connector_state *old_conn_state)
  754. {
  755. struct drm_device *dev = encoder->base.dev;
  756. struct drm_i915_private *dev_priv = dev->dev_private;
  757. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  758. enum port port;
  759. DRM_DEBUG_KMS("\n");
  760. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_OFF);
  761. intel_panel_disable_backlight(old_conn_state);
  762. /*
  763. * Disable Device ready before the port shutdown in order
  764. * to avoid split screen
  765. */
  766. if (IS_BROXTON(dev_priv)) {
  767. for_each_dsi_port(port, intel_dsi->ports)
  768. I915_WRITE(MIPI_DEVICE_READY(port), 0);
  769. }
  770. /*
  771. * According to the spec we should send SHUTDOWN before
  772. * MIPI_SEQ_DISPLAY_OFF only for v3+ VBTs, but field testing
  773. * has shown that the v3 sequence works for v2 VBTs too
  774. */
  775. if (is_vid_mode(intel_dsi)) {
  776. /* Send Shutdown command to the panel in LP mode */
  777. for_each_dsi_port(port, intel_dsi->ports)
  778. dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
  779. msleep(10);
  780. }
  781. }
  782. static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
  783. {
  784. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  785. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv) ||
  786. IS_BROXTON(dev_priv))
  787. vlv_dsi_clear_device_ready(encoder);
  788. else if (IS_GEMINILAKE(dev_priv))
  789. glk_dsi_clear_device_ready(encoder);
  790. }
  791. static void intel_dsi_post_disable(struct intel_encoder *encoder,
  792. struct intel_crtc_state *pipe_config,
  793. struct drm_connector_state *conn_state)
  794. {
  795. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  796. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  797. enum port port;
  798. u32 val;
  799. DRM_DEBUG_KMS("\n");
  800. if (is_vid_mode(intel_dsi)) {
  801. for_each_dsi_port(port, intel_dsi->ports)
  802. wait_for_dsi_fifo_empty(intel_dsi, port);
  803. intel_dsi_port_disable(encoder);
  804. usleep_range(2000, 5000);
  805. }
  806. intel_dsi_unprepare(encoder);
  807. /*
  808. * if disable packets are sent before sending shutdown packet then in
  809. * some next enable sequence send turn on packet error is observed
  810. */
  811. if (is_cmd_mode(intel_dsi))
  812. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_OFF);
  813. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_OFF);
  814. /* Transition to LP-00 */
  815. intel_dsi_clear_device_ready(encoder);
  816. if (IS_BROXTON(dev_priv)) {
  817. /* Power down DSI regulator to save power */
  818. I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
  819. I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, HS_IO_CTRL_SELECT);
  820. /* Add MIPI IO reset programming for modeset */
  821. val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
  822. I915_WRITE(BXT_P_CR_GT_DISP_PWRON,
  823. val & ~MIPIO_RST_CTRL);
  824. }
  825. intel_disable_dsi_pll(encoder);
  826. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
  827. u32 val;
  828. val = I915_READ(DSPCLK_GATE_D);
  829. val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
  830. I915_WRITE(DSPCLK_GATE_D, val);
  831. }
  832. /* Assert reset */
  833. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_ASSERT_RESET);
  834. /* Power off, try both CRC pmic gpio and VBT */
  835. intel_dsi_msleep(intel_dsi, intel_dsi->panel_off_delay);
  836. intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_OFF);
  837. if (intel_dsi->gpio_panel)
  838. gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
  839. /*
  840. * FIXME As we do with eDP, just make a note of the time here
  841. * and perform the wait before the next panel power on.
  842. */
  843. intel_dsi_msleep(intel_dsi, intel_dsi->panel_pwr_cycle_delay);
  844. }
  845. static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
  846. enum pipe *pipe)
  847. {
  848. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  849. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  850. enum port port;
  851. bool active = false;
  852. DRM_DEBUG_KMS("\n");
  853. if (!intel_display_power_get_if_enabled(dev_priv,
  854. encoder->power_domain))
  855. return false;
  856. /*
  857. * On Broxton the PLL needs to be enabled with a valid divider
  858. * configuration, otherwise accessing DSI registers will hang the
  859. * machine. See BSpec North Display Engine registers/MIPI[BXT].
  860. */
  861. if (IS_GEN9_LP(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
  862. goto out_put_power;
  863. /* XXX: this only works for one DSI output */
  864. for_each_dsi_port(port, intel_dsi->ports) {
  865. i915_reg_t ctrl_reg = IS_GEN9_LP(dev_priv) ?
  866. BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
  867. bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
  868. /*
  869. * Due to some hardware limitations on VLV/CHV, the DPI enable
  870. * bit in port C control register does not get set. As a
  871. * workaround, check pipe B conf instead.
  872. */
  873. if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
  874. port == PORT_C)
  875. enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
  876. /* Try command mode if video mode not enabled */
  877. if (!enabled) {
  878. u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
  879. enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
  880. }
  881. if (!enabled)
  882. continue;
  883. if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
  884. continue;
  885. if (IS_GEN9_LP(dev_priv)) {
  886. u32 tmp = I915_READ(MIPI_CTRL(port));
  887. tmp &= BXT_PIPE_SELECT_MASK;
  888. tmp >>= BXT_PIPE_SELECT_SHIFT;
  889. if (WARN_ON(tmp > PIPE_C))
  890. continue;
  891. *pipe = tmp;
  892. } else {
  893. *pipe = port == PORT_A ? PIPE_A : PIPE_B;
  894. }
  895. active = true;
  896. break;
  897. }
  898. out_put_power:
  899. intel_display_power_put(dev_priv, encoder->power_domain);
  900. return active;
  901. }
  902. static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
  903. struct intel_crtc_state *pipe_config)
  904. {
  905. struct drm_device *dev = encoder->base.dev;
  906. struct drm_i915_private *dev_priv = to_i915(dev);
  907. struct drm_display_mode *adjusted_mode =
  908. &pipe_config->base.adjusted_mode;
  909. struct drm_display_mode *adjusted_mode_sw;
  910. struct intel_crtc *intel_crtc;
  911. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  912. unsigned int lane_count = intel_dsi->lane_count;
  913. unsigned int bpp, fmt;
  914. enum port port;
  915. u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
  916. u16 hfp_sw, hsync_sw, hbp_sw;
  917. u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
  918. crtc_hblank_start_sw, crtc_hblank_end_sw;
  919. /* FIXME: hw readout should not depend on SW state */
  920. intel_crtc = to_intel_crtc(encoder->base.crtc);
  921. adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode;
  922. /*
  923. * Atleast one port is active as encoder->get_config called only if
  924. * encoder->get_hw_state() returns true.
  925. */
  926. for_each_dsi_port(port, intel_dsi->ports) {
  927. if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
  928. break;
  929. }
  930. fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
  931. pipe_config->pipe_bpp =
  932. mipi_dsi_pixel_format_to_bpp(
  933. pixel_format_from_register_bits(fmt));
  934. bpp = pipe_config->pipe_bpp;
  935. /* In terms of pixels */
  936. adjusted_mode->crtc_hdisplay =
  937. I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
  938. adjusted_mode->crtc_vdisplay =
  939. I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
  940. adjusted_mode->crtc_vtotal =
  941. I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
  942. hactive = adjusted_mode->crtc_hdisplay;
  943. hfp = I915_READ(MIPI_HFP_COUNT(port));
  944. /*
  945. * Meaningful for video mode non-burst sync pulse mode only,
  946. * can be zero for non-burst sync events and burst modes
  947. */
  948. hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
  949. hbp = I915_READ(MIPI_HBP_COUNT(port));
  950. /* harizontal values are in terms of high speed byte clock */
  951. hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
  952. intel_dsi->burst_mode_ratio);
  953. hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
  954. intel_dsi->burst_mode_ratio);
  955. hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
  956. intel_dsi->burst_mode_ratio);
  957. if (intel_dsi->dual_link) {
  958. hfp *= 2;
  959. hsync *= 2;
  960. hbp *= 2;
  961. }
  962. /* vertical values are in terms of lines */
  963. vfp = I915_READ(MIPI_VFP_COUNT(port));
  964. vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
  965. vbp = I915_READ(MIPI_VBP_COUNT(port));
  966. adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
  967. adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
  968. adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
  969. adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
  970. adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
  971. adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
  972. adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
  973. adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
  974. adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
  975. /*
  976. * In BXT DSI there is no regs programmed with few horizontal timings
  977. * in Pixels but txbyteclkhs.. So retrieval process adds some
  978. * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
  979. * Actually here for the given adjusted_mode, we are calculating the
  980. * value programmed to the port and then back to the horizontal timing
  981. * param in pixels. This is the expected value, including roundup errors
  982. * And if that is same as retrieved value from port, then
  983. * (HW state) adjusted_mode's horizontal timings are corrected to
  984. * match with SW state to nullify the errors.
  985. */
  986. /* Calculating the value programmed to the Port register */
  987. hfp_sw = adjusted_mode_sw->crtc_hsync_start -
  988. adjusted_mode_sw->crtc_hdisplay;
  989. hsync_sw = adjusted_mode_sw->crtc_hsync_end -
  990. adjusted_mode_sw->crtc_hsync_start;
  991. hbp_sw = adjusted_mode_sw->crtc_htotal -
  992. adjusted_mode_sw->crtc_hsync_end;
  993. if (intel_dsi->dual_link) {
  994. hfp_sw /= 2;
  995. hsync_sw /= 2;
  996. hbp_sw /= 2;
  997. }
  998. hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
  999. intel_dsi->burst_mode_ratio);
  1000. hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
  1001. intel_dsi->burst_mode_ratio);
  1002. hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
  1003. intel_dsi->burst_mode_ratio);
  1004. /* Reverse calculating the adjusted mode parameters from port reg vals*/
  1005. hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
  1006. intel_dsi->burst_mode_ratio);
  1007. hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
  1008. intel_dsi->burst_mode_ratio);
  1009. hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
  1010. intel_dsi->burst_mode_ratio);
  1011. if (intel_dsi->dual_link) {
  1012. hfp_sw *= 2;
  1013. hsync_sw *= 2;
  1014. hbp_sw *= 2;
  1015. }
  1016. crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
  1017. hsync_sw + hbp_sw;
  1018. crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
  1019. crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
  1020. crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
  1021. crtc_hblank_end_sw = crtc_htotal_sw;
  1022. if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
  1023. adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
  1024. if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
  1025. adjusted_mode->crtc_hsync_start =
  1026. adjusted_mode_sw->crtc_hsync_start;
  1027. if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
  1028. adjusted_mode->crtc_hsync_end =
  1029. adjusted_mode_sw->crtc_hsync_end;
  1030. if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
  1031. adjusted_mode->crtc_hblank_start =
  1032. adjusted_mode_sw->crtc_hblank_start;
  1033. if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
  1034. adjusted_mode->crtc_hblank_end =
  1035. adjusted_mode_sw->crtc_hblank_end;
  1036. }
  1037. static void intel_dsi_get_config(struct intel_encoder *encoder,
  1038. struct intel_crtc_state *pipe_config)
  1039. {
  1040. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  1041. u32 pclk;
  1042. DRM_DEBUG_KMS("\n");
  1043. if (IS_GEN9_LP(dev_priv))
  1044. bxt_dsi_get_pipe_config(encoder, pipe_config);
  1045. pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
  1046. pipe_config);
  1047. if (!pclk)
  1048. return;
  1049. pipe_config->base.adjusted_mode.crtc_clock = pclk;
  1050. pipe_config->port_clock = pclk;
  1051. }
  1052. static enum drm_mode_status
  1053. intel_dsi_mode_valid(struct drm_connector *connector,
  1054. struct drm_display_mode *mode)
  1055. {
  1056. struct intel_connector *intel_connector = to_intel_connector(connector);
  1057. const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
  1058. int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
  1059. DRM_DEBUG_KMS("\n");
  1060. if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
  1061. DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
  1062. return MODE_NO_DBLESCAN;
  1063. }
  1064. if (fixed_mode) {
  1065. if (mode->hdisplay > fixed_mode->hdisplay)
  1066. return MODE_PANEL;
  1067. if (mode->vdisplay > fixed_mode->vdisplay)
  1068. return MODE_PANEL;
  1069. if (fixed_mode->clock > max_dotclk)
  1070. return MODE_CLOCK_HIGH;
  1071. }
  1072. return MODE_OK;
  1073. }
  1074. /* return txclkesc cycles in terms of divider and duration in us */
  1075. static u16 txclkesc(u32 divider, unsigned int us)
  1076. {
  1077. switch (divider) {
  1078. case ESCAPE_CLOCK_DIVIDER_1:
  1079. default:
  1080. return 20 * us;
  1081. case ESCAPE_CLOCK_DIVIDER_2:
  1082. return 10 * us;
  1083. case ESCAPE_CLOCK_DIVIDER_4:
  1084. return 5 * us;
  1085. }
  1086. }
  1087. static void set_dsi_timings(struct drm_encoder *encoder,
  1088. const struct drm_display_mode *adjusted_mode)
  1089. {
  1090. struct drm_device *dev = encoder->dev;
  1091. struct drm_i915_private *dev_priv = to_i915(dev);
  1092. struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
  1093. enum port port;
  1094. unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
  1095. unsigned int lane_count = intel_dsi->lane_count;
  1096. u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
  1097. hactive = adjusted_mode->crtc_hdisplay;
  1098. hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
  1099. hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
  1100. hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
  1101. if (intel_dsi->dual_link) {
  1102. hactive /= 2;
  1103. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
  1104. hactive += intel_dsi->pixel_overlap;
  1105. hfp /= 2;
  1106. hsync /= 2;
  1107. hbp /= 2;
  1108. }
  1109. vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
  1110. vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
  1111. vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
  1112. /* horizontal values are in terms of high speed byte clock */
  1113. hactive = txbyteclkhs(hactive, bpp, lane_count,
  1114. intel_dsi->burst_mode_ratio);
  1115. hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
  1116. hsync = txbyteclkhs(hsync, bpp, lane_count,
  1117. intel_dsi->burst_mode_ratio);
  1118. hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
  1119. for_each_dsi_port(port, intel_dsi->ports) {
  1120. if (IS_GEN9_LP(dev_priv)) {
  1121. /*
  1122. * Program hdisplay and vdisplay on MIPI transcoder.
  1123. * This is different from calculated hactive and
  1124. * vactive, as they are calculated per channel basis,
  1125. * whereas these values should be based on resolution.
  1126. */
  1127. I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
  1128. adjusted_mode->crtc_hdisplay);
  1129. I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
  1130. adjusted_mode->crtc_vdisplay);
  1131. I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
  1132. adjusted_mode->crtc_vtotal);
  1133. }
  1134. I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
  1135. I915_WRITE(MIPI_HFP_COUNT(port), hfp);
  1136. /* meaningful for video mode non-burst sync pulse mode only,
  1137. * can be zero for non-burst sync events and burst modes */
  1138. I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
  1139. I915_WRITE(MIPI_HBP_COUNT(port), hbp);
  1140. /* vertical values are in terms of lines */
  1141. I915_WRITE(MIPI_VFP_COUNT(port), vfp);
  1142. I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
  1143. I915_WRITE(MIPI_VBP_COUNT(port), vbp);
  1144. }
  1145. }
  1146. static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
  1147. {
  1148. switch (fmt) {
  1149. case MIPI_DSI_FMT_RGB888:
  1150. return VID_MODE_FORMAT_RGB888;
  1151. case MIPI_DSI_FMT_RGB666:
  1152. return VID_MODE_FORMAT_RGB666;
  1153. case MIPI_DSI_FMT_RGB666_PACKED:
  1154. return VID_MODE_FORMAT_RGB666_PACKED;
  1155. case MIPI_DSI_FMT_RGB565:
  1156. return VID_MODE_FORMAT_RGB565;
  1157. default:
  1158. MISSING_CASE(fmt);
  1159. return VID_MODE_FORMAT_RGB666;
  1160. }
  1161. }
  1162. static void intel_dsi_prepare(struct intel_encoder *intel_encoder,
  1163. struct intel_crtc_state *pipe_config)
  1164. {
  1165. struct drm_encoder *encoder = &intel_encoder->base;
  1166. struct drm_device *dev = encoder->dev;
  1167. struct drm_i915_private *dev_priv = to_i915(dev);
  1168. struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
  1169. struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
  1170. const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
  1171. enum port port;
  1172. unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
  1173. u32 val, tmp;
  1174. u16 mode_hdisplay;
  1175. DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
  1176. mode_hdisplay = adjusted_mode->crtc_hdisplay;
  1177. if (intel_dsi->dual_link) {
  1178. mode_hdisplay /= 2;
  1179. if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
  1180. mode_hdisplay += intel_dsi->pixel_overlap;
  1181. }
  1182. for_each_dsi_port(port, intel_dsi->ports) {
  1183. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
  1184. /*
  1185. * escape clock divider, 20MHz, shared for A and C.
  1186. * device ready must be off when doing this! txclkesc?
  1187. */
  1188. tmp = I915_READ(MIPI_CTRL(PORT_A));
  1189. tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
  1190. I915_WRITE(MIPI_CTRL(PORT_A), tmp |
  1191. ESCAPE_CLOCK_DIVIDER_1);
  1192. /* read request priority is per pipe */
  1193. tmp = I915_READ(MIPI_CTRL(port));
  1194. tmp &= ~READ_REQUEST_PRIORITY_MASK;
  1195. I915_WRITE(MIPI_CTRL(port), tmp |
  1196. READ_REQUEST_PRIORITY_HIGH);
  1197. } else if (IS_GEN9_LP(dev_priv)) {
  1198. enum pipe pipe = intel_crtc->pipe;
  1199. tmp = I915_READ(MIPI_CTRL(port));
  1200. tmp &= ~BXT_PIPE_SELECT_MASK;
  1201. tmp |= BXT_PIPE_SELECT(pipe);
  1202. I915_WRITE(MIPI_CTRL(port), tmp);
  1203. }
  1204. /* XXX: why here, why like this? handling in irq handler?! */
  1205. I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
  1206. I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
  1207. I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
  1208. I915_WRITE(MIPI_DPI_RESOLUTION(port),
  1209. adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
  1210. mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
  1211. }
  1212. set_dsi_timings(encoder, adjusted_mode);
  1213. val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
  1214. if (is_cmd_mode(intel_dsi)) {
  1215. val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
  1216. val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
  1217. } else {
  1218. val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
  1219. val |= pixel_format_to_reg(intel_dsi->pixel_format);
  1220. }
  1221. tmp = 0;
  1222. if (intel_dsi->eotp_pkt == 0)
  1223. tmp |= EOT_DISABLE;
  1224. if (intel_dsi->clock_stop)
  1225. tmp |= CLOCKSTOP;
  1226. if (IS_GEN9_LP(dev_priv)) {
  1227. tmp |= BXT_DPHY_DEFEATURE_EN;
  1228. if (!is_cmd_mode(intel_dsi))
  1229. tmp |= BXT_DEFEATURE_DPI_FIFO_CTR;
  1230. }
  1231. for_each_dsi_port(port, intel_dsi->ports) {
  1232. I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
  1233. /* timeouts for recovery. one frame IIUC. if counter expires,
  1234. * EOT and stop state. */
  1235. /*
  1236. * In burst mode, value greater than one DPI line Time in byte
  1237. * clock (txbyteclkhs) To timeout this timer 1+ of the above
  1238. * said value is recommended.
  1239. *
  1240. * In non-burst mode, Value greater than one DPI frame time in
  1241. * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
  1242. * said value is recommended.
  1243. *
  1244. * In DBI only mode, value greater than one DBI frame time in
  1245. * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
  1246. * said value is recommended.
  1247. */
  1248. if (is_vid_mode(intel_dsi) &&
  1249. intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
  1250. I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
  1251. txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
  1252. intel_dsi->lane_count,
  1253. intel_dsi->burst_mode_ratio) + 1);
  1254. } else {
  1255. I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
  1256. txbyteclkhs(adjusted_mode->crtc_vtotal *
  1257. adjusted_mode->crtc_htotal,
  1258. bpp, intel_dsi->lane_count,
  1259. intel_dsi->burst_mode_ratio) + 1);
  1260. }
  1261. I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
  1262. I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
  1263. intel_dsi->turn_arnd_val);
  1264. I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
  1265. intel_dsi->rst_timer_val);
  1266. /* dphy stuff */
  1267. /* in terms of low power clock */
  1268. I915_WRITE(MIPI_INIT_COUNT(port),
  1269. txclkesc(intel_dsi->escape_clk_div, 100));
  1270. if (IS_GEN9_LP(dev_priv) && (!intel_dsi->dual_link)) {
  1271. /*
  1272. * BXT spec says write MIPI_INIT_COUNT for
  1273. * both the ports, even if only one is
  1274. * getting used. So write the other port
  1275. * if not in dual link mode.
  1276. */
  1277. I915_WRITE(MIPI_INIT_COUNT(port ==
  1278. PORT_A ? PORT_C : PORT_A),
  1279. intel_dsi->init_count);
  1280. }
  1281. /* recovery disables */
  1282. I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
  1283. /* in terms of low power clock */
  1284. I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
  1285. /* in terms of txbyteclkhs. actual high to low switch +
  1286. * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
  1287. *
  1288. * XXX: write MIPI_STOP_STATE_STALL?
  1289. */
  1290. I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
  1291. intel_dsi->hs_to_lp_count);
  1292. /* XXX: low power clock equivalence in terms of byte clock.
  1293. * the number of byte clocks occupied in one low power clock.
  1294. * based on txbyteclkhs and txclkesc.
  1295. * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
  1296. * ) / 105.???
  1297. */
  1298. I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
  1299. if (IS_GEMINILAKE(dev_priv)) {
  1300. I915_WRITE(MIPI_TLPX_TIME_COUNT(port),
  1301. intel_dsi->lp_byte_clk);
  1302. /* Shadow of DPHY reg */
  1303. I915_WRITE(MIPI_CLK_LANE_TIMING(port),
  1304. intel_dsi->dphy_reg);
  1305. }
  1306. /* the bw essential for transmitting 16 long packets containing
  1307. * 252 bytes meant for dcs write memory command is programmed in
  1308. * this register in terms of byte clocks. based on dsi transfer
  1309. * rate and the number of lanes configured the time taken to
  1310. * transmit 16 long packets in a dsi stream varies. */
  1311. I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
  1312. I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
  1313. intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
  1314. intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
  1315. if (is_vid_mode(intel_dsi))
  1316. /* Some panels might have resolution which is not a
  1317. * multiple of 64 like 1366 x 768. Enable RANDOM
  1318. * resolution support for such panels by default */
  1319. I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
  1320. intel_dsi->video_frmt_cfg_bits |
  1321. intel_dsi->video_mode_format |
  1322. IP_TG_CONFIG |
  1323. RANDOM_DPI_DISPLAY_RESOLUTION);
  1324. }
  1325. }
  1326. static void intel_dsi_unprepare(struct intel_encoder *encoder)
  1327. {
  1328. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  1329. struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
  1330. enum port port;
  1331. u32 val;
  1332. if (!IS_GEMINILAKE(dev_priv)) {
  1333. for_each_dsi_port(port, intel_dsi->ports) {
  1334. /* Panel commands can be sent when clock is in LP11 */
  1335. I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
  1336. intel_dsi_reset_clocks(encoder, port);
  1337. I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
  1338. val = I915_READ(MIPI_DSI_FUNC_PRG(port));
  1339. val &= ~VID_MODE_FORMAT_MASK;
  1340. I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
  1341. I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
  1342. }
  1343. }
  1344. }
  1345. static int intel_dsi_get_modes(struct drm_connector *connector)
  1346. {
  1347. struct intel_connector *intel_connector = to_intel_connector(connector);
  1348. struct drm_display_mode *mode;
  1349. DRM_DEBUG_KMS("\n");
  1350. if (!intel_connector->panel.fixed_mode) {
  1351. DRM_DEBUG_KMS("no fixed mode\n");
  1352. return 0;
  1353. }
  1354. mode = drm_mode_duplicate(connector->dev,
  1355. intel_connector->panel.fixed_mode);
  1356. if (!mode) {
  1357. DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
  1358. return 0;
  1359. }
  1360. drm_mode_probed_add(connector, mode);
  1361. return 1;
  1362. }
  1363. static void intel_dsi_connector_destroy(struct drm_connector *connector)
  1364. {
  1365. struct intel_connector *intel_connector = to_intel_connector(connector);
  1366. DRM_DEBUG_KMS("\n");
  1367. intel_panel_fini(&intel_connector->panel);
  1368. drm_connector_cleanup(connector);
  1369. kfree(connector);
  1370. }
  1371. static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
  1372. {
  1373. struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
  1374. /* dispose of the gpios */
  1375. if (intel_dsi->gpio_panel)
  1376. gpiod_put(intel_dsi->gpio_panel);
  1377. intel_encoder_destroy(encoder);
  1378. }
  1379. static const struct drm_encoder_funcs intel_dsi_funcs = {
  1380. .destroy = intel_dsi_encoder_destroy,
  1381. };
  1382. static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
  1383. .get_modes = intel_dsi_get_modes,
  1384. .mode_valid = intel_dsi_mode_valid,
  1385. .atomic_check = intel_digital_connector_atomic_check,
  1386. };
  1387. static const struct drm_connector_funcs intel_dsi_connector_funcs = {
  1388. .late_register = intel_connector_register,
  1389. .early_unregister = intel_connector_unregister,
  1390. .destroy = intel_dsi_connector_destroy,
  1391. .fill_modes = drm_helper_probe_single_connector_modes,
  1392. .atomic_get_property = intel_digital_connector_atomic_get_property,
  1393. .atomic_set_property = intel_digital_connector_atomic_set_property,
  1394. .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
  1395. .atomic_duplicate_state = intel_digital_connector_duplicate_state,
  1396. };
  1397. static void intel_dsi_add_properties(struct intel_connector *connector)
  1398. {
  1399. struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
  1400. if (connector->panel.fixed_mode) {
  1401. u32 allowed_scalers;
  1402. allowed_scalers = BIT(DRM_MODE_SCALE_ASPECT) | BIT(DRM_MODE_SCALE_FULLSCREEN);
  1403. if (!HAS_GMCH_DISPLAY(dev_priv))
  1404. allowed_scalers |= BIT(DRM_MODE_SCALE_CENTER);
  1405. drm_connector_attach_scaling_mode_property(&connector->base,
  1406. allowed_scalers);
  1407. connector->base.state->scaling_mode = DRM_MODE_SCALE_ASPECT;
  1408. }
  1409. }
  1410. void intel_dsi_init(struct drm_i915_private *dev_priv)
  1411. {
  1412. struct drm_device *dev = &dev_priv->drm;
  1413. struct intel_dsi *intel_dsi;
  1414. struct intel_encoder *intel_encoder;
  1415. struct drm_encoder *encoder;
  1416. struct intel_connector *intel_connector;
  1417. struct drm_connector *connector;
  1418. struct drm_display_mode *scan, *fixed_mode = NULL;
  1419. enum port port;
  1420. DRM_DEBUG_KMS("\n");
  1421. /* There is no detection method for MIPI so rely on VBT */
  1422. if (!intel_bios_is_dsi_present(dev_priv, &port))
  1423. return;
  1424. if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
  1425. dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
  1426. } else if (IS_GEN9_LP(dev_priv)) {
  1427. dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
  1428. } else {
  1429. DRM_ERROR("Unsupported Mipi device to reg base");
  1430. return;
  1431. }
  1432. intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
  1433. if (!intel_dsi)
  1434. return;
  1435. intel_connector = intel_connector_alloc();
  1436. if (!intel_connector) {
  1437. kfree(intel_dsi);
  1438. return;
  1439. }
  1440. intel_encoder = &intel_dsi->base;
  1441. encoder = &intel_encoder->base;
  1442. intel_dsi->attached_connector = intel_connector;
  1443. connector = &intel_connector->base;
  1444. drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
  1445. "DSI %c", port_name(port));
  1446. intel_encoder->compute_config = intel_dsi_compute_config;
  1447. intel_encoder->pre_enable = intel_dsi_pre_enable;
  1448. intel_encoder->enable = intel_dsi_enable_nop;
  1449. intel_encoder->disable = intel_dsi_disable;
  1450. intel_encoder->post_disable = intel_dsi_post_disable;
  1451. intel_encoder->get_hw_state = intel_dsi_get_hw_state;
  1452. intel_encoder->get_config = intel_dsi_get_config;
  1453. intel_connector->get_hw_state = intel_connector_get_hw_state;
  1454. intel_encoder->port = port;
  1455. /*
  1456. * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
  1457. * port C. BXT isn't limited like this.
  1458. */
  1459. if (IS_GEN9_LP(dev_priv))
  1460. intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
  1461. else if (port == PORT_A)
  1462. intel_encoder->crtc_mask = BIT(PIPE_A);
  1463. else
  1464. intel_encoder->crtc_mask = BIT(PIPE_B);
  1465. if (dev_priv->vbt.dsi.config->dual_link) {
  1466. intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
  1467. switch (dev_priv->vbt.dsi.config->dl_dcs_backlight_ports) {
  1468. case DL_DCS_PORT_A:
  1469. intel_dsi->dcs_backlight_ports = BIT(PORT_A);
  1470. break;
  1471. case DL_DCS_PORT_C:
  1472. intel_dsi->dcs_backlight_ports = BIT(PORT_C);
  1473. break;
  1474. default:
  1475. case DL_DCS_PORT_A_AND_C:
  1476. intel_dsi->dcs_backlight_ports = BIT(PORT_A) | BIT(PORT_C);
  1477. break;
  1478. }
  1479. switch (dev_priv->vbt.dsi.config->dl_dcs_cabc_ports) {
  1480. case DL_DCS_PORT_A:
  1481. intel_dsi->dcs_cabc_ports = BIT(PORT_A);
  1482. break;
  1483. case DL_DCS_PORT_C:
  1484. intel_dsi->dcs_cabc_ports = BIT(PORT_C);
  1485. break;
  1486. default:
  1487. case DL_DCS_PORT_A_AND_C:
  1488. intel_dsi->dcs_cabc_ports = BIT(PORT_A) | BIT(PORT_C);
  1489. break;
  1490. }
  1491. } else {
  1492. intel_dsi->ports = BIT(port);
  1493. intel_dsi->dcs_backlight_ports = BIT(port);
  1494. intel_dsi->dcs_cabc_ports = BIT(port);
  1495. }
  1496. if (!dev_priv->vbt.dsi.config->cabc_supported)
  1497. intel_dsi->dcs_cabc_ports = 0;
  1498. /* Create a DSI host (and a device) for each port. */
  1499. for_each_dsi_port(port, intel_dsi->ports) {
  1500. struct intel_dsi_host *host;
  1501. host = intel_dsi_host_init(intel_dsi, port);
  1502. if (!host)
  1503. goto err;
  1504. intel_dsi->dsi_hosts[port] = host;
  1505. }
  1506. if (!intel_dsi_vbt_init(intel_dsi, MIPI_DSI_GENERIC_PANEL_ID)) {
  1507. DRM_DEBUG_KMS("no device found\n");
  1508. goto err;
  1509. }
  1510. /*
  1511. * In case of BYT with CRC PMIC, we need to use GPIO for
  1512. * Panel control.
  1513. */
  1514. if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
  1515. (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC)) {
  1516. intel_dsi->gpio_panel =
  1517. gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
  1518. if (IS_ERR(intel_dsi->gpio_panel)) {
  1519. DRM_ERROR("Failed to own gpio for panel control\n");
  1520. intel_dsi->gpio_panel = NULL;
  1521. }
  1522. }
  1523. intel_encoder->type = INTEL_OUTPUT_DSI;
  1524. intel_encoder->power_domain = POWER_DOMAIN_PORT_DSI;
  1525. intel_encoder->cloneable = 0;
  1526. drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
  1527. DRM_MODE_CONNECTOR_DSI);
  1528. drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
  1529. connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
  1530. connector->interlace_allowed = false;
  1531. connector->doublescan_allowed = false;
  1532. intel_connector_attach_encoder(intel_connector, intel_encoder);
  1533. mutex_lock(&dev->mode_config.mutex);
  1534. intel_dsi_vbt_get_modes(intel_dsi);
  1535. list_for_each_entry(scan, &connector->probed_modes, head) {
  1536. if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
  1537. fixed_mode = drm_mode_duplicate(dev, scan);
  1538. break;
  1539. }
  1540. }
  1541. mutex_unlock(&dev->mode_config.mutex);
  1542. if (!fixed_mode) {
  1543. DRM_DEBUG_KMS("no fixed mode\n");
  1544. goto err;
  1545. }
  1546. connector->display_info.width_mm = fixed_mode->width_mm;
  1547. connector->display_info.height_mm = fixed_mode->height_mm;
  1548. intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
  1549. intel_panel_setup_backlight(connector, INVALID_PIPE);
  1550. intel_dsi_add_properties(intel_connector);
  1551. return;
  1552. err:
  1553. drm_encoder_cleanup(&intel_encoder->base);
  1554. kfree(intel_dsi);
  1555. kfree(intel_connector);
  1556. }