intel_dsi.c 55 KB

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