intel_dsi.c 55 KB

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