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