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