2 * Copyright © 2013 Intel Corporation
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:
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
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.
23 * Author: Jani Nikula <jani.nikula@intel.com>
26 #include <linux/slab.h>
28 #include <drm/drm_atomic_helper.h>
29 #include <drm/drm_crtc.h>
30 #include <drm/drm_edid.h>
31 #include <drm/drm_mipi_dsi.h>
34 #include "intel_atomic.h"
35 #include "intel_connector.h"
36 #include "intel_display_types.h"
37 #include "intel_dsi.h"
38 #include "intel_fifo_underrun.h"
39 #include "intel_panel.h"
40 #include "intel_sideband.h"
42 /* return pixels in terms of txbyteclkhs */
43 static u16
txbyteclkhs(u16 pixels
, int bpp
, int lane_count
,
46 return DIV_ROUND_UP(DIV_ROUND_UP(pixels
* bpp
* burst_mode_ratio
,
47 8 * 100), lane_count
);
50 /* return pixels equvalent to txbyteclkhs */
51 static u16
pixels_from_txbyteclkhs(u16 clk_hs
, int bpp
, int lane_count
,
54 return DIV_ROUND_UP((clk_hs
* lane_count
* 8 * 100),
55 (bpp
* burst_mode_ratio
));
58 enum mipi_dsi_pixel_format
pixel_format_from_register_bits(u32 fmt
)
60 /* It just so happens the VBT matches register contents. */
62 case VID_MODE_FORMAT_RGB888
:
63 return MIPI_DSI_FMT_RGB888
;
64 case VID_MODE_FORMAT_RGB666
:
65 return MIPI_DSI_FMT_RGB666
;
66 case VID_MODE_FORMAT_RGB666_PACKED
:
67 return MIPI_DSI_FMT_RGB666_PACKED
;
68 case VID_MODE_FORMAT_RGB565
:
69 return MIPI_DSI_FMT_RGB565
;
72 return MIPI_DSI_FMT_RGB666
;
76 void vlv_dsi_wait_for_fifo_empty(struct intel_dsi
*intel_dsi
, enum port port
)
78 struct drm_encoder
*encoder
= &intel_dsi
->base
.base
;
79 struct drm_device
*dev
= encoder
->dev
;
80 struct drm_i915_private
*dev_priv
= to_i915(dev
);
83 mask
= LP_CTRL_FIFO_EMPTY
| HS_CTRL_FIFO_EMPTY
|
84 LP_DATA_FIFO_EMPTY
| HS_DATA_FIFO_EMPTY
;
86 if (intel_de_wait_for_set(dev_priv
, MIPI_GEN_FIFO_STAT(port
),
88 DRM_ERROR("DPI FIFOs are not empty\n");
91 static void write_data(struct drm_i915_private
*dev_priv
,
93 const u8
*data
, u32 len
)
97 for (i
= 0; i
< len
; i
+= 4) {
100 for (j
= 0; j
< min_t(u32
, len
- i
, 4); j
++)
101 val
|= *data
++ << 8 * j
;
103 I915_WRITE(reg
, val
);
107 static void read_data(struct drm_i915_private
*dev_priv
,
113 for (i
= 0; i
< len
; i
+= 4) {
114 u32 val
= I915_READ(reg
);
116 for (j
= 0; j
< min_t(u32
, len
- i
, 4); j
++)
117 *data
++ = val
>> 8 * j
;
121 static ssize_t
intel_dsi_host_transfer(struct mipi_dsi_host
*host
,
122 const struct mipi_dsi_msg
*msg
)
124 struct intel_dsi_host
*intel_dsi_host
= to_intel_dsi_host(host
);
125 struct drm_device
*dev
= intel_dsi_host
->intel_dsi
->base
.base
.dev
;
126 struct drm_i915_private
*dev_priv
= to_i915(dev
);
127 enum port port
= intel_dsi_host
->port
;
128 struct mipi_dsi_packet packet
;
130 const u8
*header
, *data
;
131 i915_reg_t data_reg
, ctrl_reg
;
132 u32 data_mask
, ctrl_mask
;
134 ret
= mipi_dsi_create_packet(&packet
, msg
);
138 header
= packet
.header
;
139 data
= packet
.payload
;
141 if (msg
->flags
& MIPI_DSI_MSG_USE_LPM
) {
142 data_reg
= MIPI_LP_GEN_DATA(port
);
143 data_mask
= LP_DATA_FIFO_FULL
;
144 ctrl_reg
= MIPI_LP_GEN_CTRL(port
);
145 ctrl_mask
= LP_CTRL_FIFO_FULL
;
147 data_reg
= MIPI_HS_GEN_DATA(port
);
148 data_mask
= HS_DATA_FIFO_FULL
;
149 ctrl_reg
= MIPI_HS_GEN_CTRL(port
);
150 ctrl_mask
= HS_CTRL_FIFO_FULL
;
153 /* note: this is never true for reads */
154 if (packet
.payload_length
) {
155 if (intel_de_wait_for_clear(dev_priv
, MIPI_GEN_FIFO_STAT(port
),
157 DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n");
159 write_data(dev_priv
, data_reg
, packet
.payload
,
160 packet
.payload_length
);
164 I915_WRITE(MIPI_INTR_STAT(port
), GEN_READ_DATA_AVAIL
);
167 if (intel_de_wait_for_clear(dev_priv
, MIPI_GEN_FIFO_STAT(port
),
169 DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
172 I915_WRITE(ctrl_reg
, header
[2] << 16 | header
[1] << 8 | header
[0]);
174 /* ->rx_len is set only for reads */
176 data_mask
= GEN_READ_DATA_AVAIL
;
177 if (intel_de_wait_for_set(dev_priv
, MIPI_INTR_STAT(port
),
179 DRM_ERROR("Timeout waiting for read data.\n");
181 read_data(dev_priv
, data_reg
, msg
->rx_buf
, msg
->rx_len
);
184 /* XXX: fix for reads and writes */
185 return 4 + packet
.payload_length
;
188 static int intel_dsi_host_attach(struct mipi_dsi_host
*host
,
189 struct mipi_dsi_device
*dsi
)
194 static int intel_dsi_host_detach(struct mipi_dsi_host
*host
,
195 struct mipi_dsi_device
*dsi
)
200 static const struct mipi_dsi_host_ops intel_dsi_host_ops
= {
201 .attach
= intel_dsi_host_attach
,
202 .detach
= intel_dsi_host_detach
,
203 .transfer
= intel_dsi_host_transfer
,
207 * send a video mode command
209 * XXX: commands with data in MIPI_DPI_DATA?
211 static int dpi_send_cmd(struct intel_dsi
*intel_dsi
, u32 cmd
, bool hs
,
214 struct drm_encoder
*encoder
= &intel_dsi
->base
.base
;
215 struct drm_device
*dev
= encoder
->dev
;
216 struct drm_i915_private
*dev_priv
= to_i915(dev
);
226 I915_WRITE(MIPI_INTR_STAT(port
), SPL_PKT_SENT_INTERRUPT
);
228 /* XXX: old code skips write if control unchanged */
229 if (cmd
== I915_READ(MIPI_DPI_CONTROL(port
)))
230 DRM_DEBUG_KMS("Same special packet %02x twice in a row.\n", cmd
);
232 I915_WRITE(MIPI_DPI_CONTROL(port
), cmd
);
234 mask
= SPL_PKT_SENT_INTERRUPT
;
235 if (intel_de_wait_for_set(dev_priv
, MIPI_INTR_STAT(port
), mask
, 100))
236 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd
);
241 static void band_gap_reset(struct drm_i915_private
*dev_priv
)
243 vlv_flisdsi_get(dev_priv
);
245 vlv_flisdsi_write(dev_priv
, 0x08, 0x0001);
246 vlv_flisdsi_write(dev_priv
, 0x0F, 0x0005);
247 vlv_flisdsi_write(dev_priv
, 0x0F, 0x0025);
249 vlv_flisdsi_write(dev_priv
, 0x0F, 0x0000);
250 vlv_flisdsi_write(dev_priv
, 0x08, 0x0000);
252 vlv_flisdsi_put(dev_priv
);
255 static int intel_dsi_compute_config(struct intel_encoder
*encoder
,
256 struct intel_crtc_state
*pipe_config
,
257 struct drm_connector_state
*conn_state
)
259 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
260 struct intel_dsi
*intel_dsi
= container_of(encoder
, struct intel_dsi
,
262 struct intel_connector
*intel_connector
= intel_dsi
->attached_connector
;
263 struct intel_crtc
*crtc
= to_intel_crtc(pipe_config
->uapi
.crtc
);
264 const struct drm_display_mode
*fixed_mode
= intel_connector
->panel
.fixed_mode
;
265 struct drm_display_mode
*adjusted_mode
= &pipe_config
->hw
.adjusted_mode
;
269 pipe_config
->output_format
= INTEL_OUTPUT_FORMAT_RGB
;
272 intel_fixed_panel_mode(fixed_mode
, adjusted_mode
);
274 if (HAS_GMCH(dev_priv
))
275 intel_gmch_panel_fitting(crtc
, pipe_config
,
276 conn_state
->scaling_mode
);
278 intel_pch_panel_fitting(crtc
, pipe_config
,
279 conn_state
->scaling_mode
);
282 if (adjusted_mode
->flags
& DRM_MODE_FLAG_DBLSCAN
)
285 /* DSI uses short packets for sync events, so clear mode flags for DSI */
286 adjusted_mode
->flags
= 0;
288 if (intel_dsi
->pixel_format
== MIPI_DSI_FMT_RGB888
)
289 pipe_config
->pipe_bpp
= 24;
291 pipe_config
->pipe_bpp
= 18;
293 if (IS_GEN9_LP(dev_priv
)) {
294 /* Enable Frame time stamp based scanline reporting */
295 adjusted_mode
->private_flags
|=
296 I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP
;
298 /* Dual link goes to DSI transcoder A. */
299 if (intel_dsi
->ports
== BIT(PORT_C
))
300 pipe_config
->cpu_transcoder
= TRANSCODER_DSI_C
;
302 pipe_config
->cpu_transcoder
= TRANSCODER_DSI_A
;
304 ret
= bxt_dsi_pll_compute(encoder
, pipe_config
);
308 ret
= vlv_dsi_pll_compute(encoder
, pipe_config
);
313 pipe_config
->clock_set
= true;
318 static bool glk_dsi_enable_io(struct intel_encoder
*encoder
)
320 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
321 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
324 bool cold_boot
= false;
327 * If MIPI_Mode is off, then writing to LP_Wake bit is not reflecting.
328 * Power ON MIPI IO first and then write into IO reset and LP wake bits
330 for_each_dsi_port(port
, intel_dsi
->ports
) {
331 tmp
= I915_READ(MIPI_CTRL(port
));
332 I915_WRITE(MIPI_CTRL(port
), tmp
| GLK_MIPIIO_ENABLE
);
335 /* Put the IO into reset */
336 tmp
= I915_READ(MIPI_CTRL(PORT_A
));
337 tmp
&= ~GLK_MIPIIO_RESET_RELEASED
;
338 I915_WRITE(MIPI_CTRL(PORT_A
), tmp
);
340 /* Program LP Wake */
341 for_each_dsi_port(port
, intel_dsi
->ports
) {
342 tmp
= I915_READ(MIPI_CTRL(port
));
343 if (!(I915_READ(MIPI_DEVICE_READY(port
)) & DEVICE_READY
))
347 I915_WRITE(MIPI_CTRL(port
), tmp
);
350 /* Wait for Pwr ACK */
351 for_each_dsi_port(port
, intel_dsi
->ports
) {
352 if (intel_de_wait_for_set(dev_priv
, MIPI_CTRL(port
),
353 GLK_MIPIIO_PORT_POWERED
, 20))
354 DRM_ERROR("MIPIO port is powergated\n");
357 /* Check for cold boot scenario */
358 for_each_dsi_port(port
, intel_dsi
->ports
) {
360 !(I915_READ(MIPI_DEVICE_READY(port
)) & DEVICE_READY
);
366 static void glk_dsi_device_ready(struct intel_encoder
*encoder
)
368 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
369 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
373 /* Wait for MIPI PHY status bit to set */
374 for_each_dsi_port(port
, intel_dsi
->ports
) {
375 if (intel_de_wait_for_set(dev_priv
, MIPI_CTRL(port
),
376 GLK_PHY_STATUS_PORT_READY
, 20))
377 DRM_ERROR("PHY is not ON\n");
380 /* Get IO out of reset */
381 val
= I915_READ(MIPI_CTRL(PORT_A
));
382 I915_WRITE(MIPI_CTRL(PORT_A
), val
| GLK_MIPIIO_RESET_RELEASED
);
384 /* Get IO out of Low power state*/
385 for_each_dsi_port(port
, intel_dsi
->ports
) {
386 if (!(I915_READ(MIPI_DEVICE_READY(port
)) & DEVICE_READY
)) {
387 val
= I915_READ(MIPI_DEVICE_READY(port
));
388 val
&= ~ULPS_STATE_MASK
;
390 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
391 usleep_range(10, 15);
394 val
= I915_READ(MIPI_DEVICE_READY(port
));
395 val
&= ~ULPS_STATE_MASK
;
396 val
|= (ULPS_STATE_ENTER
| DEVICE_READY
);
397 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
399 /* Wait for ULPS active */
400 if (intel_de_wait_for_clear(dev_priv
, MIPI_CTRL(port
),
401 GLK_ULPS_NOT_ACTIVE
, 20))
402 DRM_ERROR("ULPS not active\n");
405 val
= I915_READ(MIPI_DEVICE_READY(port
));
406 val
&= ~ULPS_STATE_MASK
;
407 val
|= (ULPS_STATE_EXIT
| DEVICE_READY
);
408 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
410 /* Enter Normal Mode */
411 val
= I915_READ(MIPI_DEVICE_READY(port
));
412 val
&= ~ULPS_STATE_MASK
;
413 val
|= (ULPS_STATE_NORMAL_OPERATION
| DEVICE_READY
);
414 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
416 val
= I915_READ(MIPI_CTRL(port
));
418 I915_WRITE(MIPI_CTRL(port
), val
);
422 /* Wait for Stop state */
423 for_each_dsi_port(port
, intel_dsi
->ports
) {
424 if (intel_de_wait_for_set(dev_priv
, MIPI_CTRL(port
),
425 GLK_DATA_LANE_STOP_STATE
, 20))
426 DRM_ERROR("Date lane not in STOP state\n");
429 /* Wait for AFE LATCH */
430 for_each_dsi_port(port
, intel_dsi
->ports
) {
431 if (intel_de_wait_for_set(dev_priv
, BXT_MIPI_PORT_CTRL(port
),
433 DRM_ERROR("D-PHY not entering LP-11 state\n");
437 static void bxt_dsi_device_ready(struct intel_encoder
*encoder
)
439 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
440 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
446 /* Enable MIPI PHY transparent latch */
447 for_each_dsi_port(port
, intel_dsi
->ports
) {
448 val
= I915_READ(BXT_MIPI_PORT_CTRL(port
));
449 I915_WRITE(BXT_MIPI_PORT_CTRL(port
), val
| LP_OUTPUT_HOLD
);
450 usleep_range(2000, 2500);
453 /* Clear ULPS and set device ready */
454 for_each_dsi_port(port
, intel_dsi
->ports
) {
455 val
= I915_READ(MIPI_DEVICE_READY(port
));
456 val
&= ~ULPS_STATE_MASK
;
457 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
458 usleep_range(2000, 2500);
460 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
464 static void vlv_dsi_device_ready(struct intel_encoder
*encoder
)
466 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
467 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
473 vlv_flisdsi_get(dev_priv
);
474 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
475 * needed everytime after power gate */
476 vlv_flisdsi_write(dev_priv
, 0x04, 0x0004);
477 vlv_flisdsi_put(dev_priv
);
479 /* bandgap reset is needed after everytime we do power gate */
480 band_gap_reset(dev_priv
);
482 for_each_dsi_port(port
, intel_dsi
->ports
) {
484 I915_WRITE(MIPI_DEVICE_READY(port
), ULPS_STATE_ENTER
);
485 usleep_range(2500, 3000);
487 /* Enable MIPI PHY transparent latch
488 * Common bit for both MIPI Port A & MIPI Port C
489 * No similar bit in MIPI Port C reg
491 val
= I915_READ(MIPI_PORT_CTRL(PORT_A
));
492 I915_WRITE(MIPI_PORT_CTRL(PORT_A
), val
| LP_OUTPUT_HOLD
);
493 usleep_range(1000, 1500);
495 I915_WRITE(MIPI_DEVICE_READY(port
), ULPS_STATE_EXIT
);
496 usleep_range(2500, 3000);
498 I915_WRITE(MIPI_DEVICE_READY(port
), DEVICE_READY
);
499 usleep_range(2500, 3000);
503 static void intel_dsi_device_ready(struct intel_encoder
*encoder
)
505 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
507 if (IS_GEMINILAKE(dev_priv
))
508 glk_dsi_device_ready(encoder
);
509 else if (IS_GEN9_LP(dev_priv
))
510 bxt_dsi_device_ready(encoder
);
512 vlv_dsi_device_ready(encoder
);
515 static void glk_dsi_enter_low_power_mode(struct intel_encoder
*encoder
)
517 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
518 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
523 for_each_dsi_port(port
, intel_dsi
->ports
) {
524 val
= I915_READ(MIPI_DEVICE_READY(port
));
525 val
&= ~ULPS_STATE_MASK
;
526 val
|= (ULPS_STATE_ENTER
| DEVICE_READY
);
527 I915_WRITE(MIPI_DEVICE_READY(port
), val
);
530 /* Wait for MIPI PHY status bit to unset */
531 for_each_dsi_port(port
, intel_dsi
->ports
) {
532 if (intel_de_wait_for_clear(dev_priv
, MIPI_CTRL(port
),
533 GLK_PHY_STATUS_PORT_READY
, 20))
534 DRM_ERROR("PHY is not turning OFF\n");
537 /* Wait for Pwr ACK bit to unset */
538 for_each_dsi_port(port
, intel_dsi
->ports
) {
539 if (intel_de_wait_for_clear(dev_priv
, MIPI_CTRL(port
),
540 GLK_MIPIIO_PORT_POWERED
, 20))
541 DRM_ERROR("MIPI IO Port is not powergated\n");
545 static void glk_dsi_disable_mipi_io(struct intel_encoder
*encoder
)
547 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
548 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
552 /* Put the IO into reset */
553 tmp
= I915_READ(MIPI_CTRL(PORT_A
));
554 tmp
&= ~GLK_MIPIIO_RESET_RELEASED
;
555 I915_WRITE(MIPI_CTRL(PORT_A
), tmp
);
557 /* Wait for MIPI PHY status bit to unset */
558 for_each_dsi_port(port
, intel_dsi
->ports
) {
559 if (intel_de_wait_for_clear(dev_priv
, MIPI_CTRL(port
),
560 GLK_PHY_STATUS_PORT_READY
, 20))
561 DRM_ERROR("PHY is not turning OFF\n");
564 /* Clear MIPI mode */
565 for_each_dsi_port(port
, intel_dsi
->ports
) {
566 tmp
= I915_READ(MIPI_CTRL(port
));
567 tmp
&= ~GLK_MIPIIO_ENABLE
;
568 I915_WRITE(MIPI_CTRL(port
), tmp
);
572 static void glk_dsi_clear_device_ready(struct intel_encoder
*encoder
)
574 glk_dsi_enter_low_power_mode(encoder
);
575 glk_dsi_disable_mipi_io(encoder
);
578 static void vlv_dsi_clear_device_ready(struct intel_encoder
*encoder
)
580 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
581 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
585 for_each_dsi_port(port
, intel_dsi
->ports
) {
586 /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
587 i915_reg_t port_ctrl
= IS_GEN9_LP(dev_priv
) ?
588 BXT_MIPI_PORT_CTRL(port
) : MIPI_PORT_CTRL(PORT_A
);
591 I915_WRITE(MIPI_DEVICE_READY(port
), DEVICE_READY
|
593 usleep_range(2000, 2500);
595 I915_WRITE(MIPI_DEVICE_READY(port
), DEVICE_READY
|
597 usleep_range(2000, 2500);
599 I915_WRITE(MIPI_DEVICE_READY(port
), DEVICE_READY
|
601 usleep_range(2000, 2500);
604 * On VLV/CHV, wait till Clock lanes are in LP-00 state for MIPI
605 * Port A only. MIPI Port C has no similar bit for checking.
607 if ((IS_GEN9_LP(dev_priv
) || port
== PORT_A
) &&
608 intel_de_wait_for_clear(dev_priv
, port_ctrl
,
610 DRM_ERROR("DSI LP not going Low\n");
612 /* Disable MIPI PHY transparent latch */
613 val
= I915_READ(port_ctrl
);
614 I915_WRITE(port_ctrl
, val
& ~LP_OUTPUT_HOLD
);
615 usleep_range(1000, 1500);
617 I915_WRITE(MIPI_DEVICE_READY(port
), 0x00);
618 usleep_range(2000, 2500);
622 static void intel_dsi_port_enable(struct intel_encoder
*encoder
,
623 const struct intel_crtc_state
*crtc_state
)
625 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
626 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->uapi
.crtc
);
627 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
630 if (intel_dsi
->dual_link
== DSI_DUAL_LINK_FRONT_BACK
) {
632 if (IS_GEN9_LP(dev_priv
)) {
633 for_each_dsi_port(port
, intel_dsi
->ports
) {
634 temp
= I915_READ(MIPI_CTRL(port
));
635 temp
&= ~BXT_PIXEL_OVERLAP_CNT_MASK
|
636 intel_dsi
->pixel_overlap
<<
637 BXT_PIXEL_OVERLAP_CNT_SHIFT
;
638 I915_WRITE(MIPI_CTRL(port
), temp
);
641 temp
= I915_READ(VLV_CHICKEN_3
);
642 temp
&= ~PIXEL_OVERLAP_CNT_MASK
|
643 intel_dsi
->pixel_overlap
<<
644 PIXEL_OVERLAP_CNT_SHIFT
;
645 I915_WRITE(VLV_CHICKEN_3
, temp
);
649 for_each_dsi_port(port
, intel_dsi
->ports
) {
650 i915_reg_t port_ctrl
= IS_GEN9_LP(dev_priv
) ?
651 BXT_MIPI_PORT_CTRL(port
) : MIPI_PORT_CTRL(port
);
654 temp
= I915_READ(port_ctrl
);
656 temp
&= ~LANE_CONFIGURATION_MASK
;
657 temp
&= ~DUAL_LINK_MODE_MASK
;
659 if (intel_dsi
->ports
== (BIT(PORT_A
) | BIT(PORT_C
))) {
660 temp
|= (intel_dsi
->dual_link
- 1)
661 << DUAL_LINK_MODE_SHIFT
;
662 if (IS_BROXTON(dev_priv
))
663 temp
|= LANE_CONFIGURATION_DUAL_LINK_A
;
666 LANE_CONFIGURATION_DUAL_LINK_B
:
667 LANE_CONFIGURATION_DUAL_LINK_A
;
670 if (intel_dsi
->pixel_format
!= MIPI_DSI_FMT_RGB888
)
671 temp
|= DITHERING_ENABLE
;
673 /* assert ip_tg_enable signal */
674 I915_WRITE(port_ctrl
, temp
| DPI_ENABLE
);
675 POSTING_READ(port_ctrl
);
679 static void intel_dsi_port_disable(struct intel_encoder
*encoder
)
681 struct drm_device
*dev
= encoder
->base
.dev
;
682 struct drm_i915_private
*dev_priv
= to_i915(dev
);
683 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
686 for_each_dsi_port(port
, intel_dsi
->ports
) {
687 i915_reg_t port_ctrl
= IS_GEN9_LP(dev_priv
) ?
688 BXT_MIPI_PORT_CTRL(port
) : MIPI_PORT_CTRL(port
);
691 /* de-assert ip_tg_enable signal */
692 temp
= I915_READ(port_ctrl
);
693 I915_WRITE(port_ctrl
, temp
& ~DPI_ENABLE
);
694 POSTING_READ(port_ctrl
);
698 static void intel_dsi_prepare(struct intel_encoder
*intel_encoder
,
699 const struct intel_crtc_state
*pipe_config
);
700 static void intel_dsi_unprepare(struct intel_encoder
*encoder
);
703 * Panel enable/disable sequences from the VBT spec.
705 * Note the spec has AssertReset / DeassertReset swapped from their
706 * usual naming. We use the normal names to avoid confusion (so below
707 * they are swapped compared to the spec).
709 * Steps starting with MIPI refer to VBT sequences, note that for v2
710 * VBTs several steps which have a VBT in v2 are expected to be handled
711 * directly by the driver, by directly driving gpios for example.
713 * v2 video mode seq v3 video mode seq command mode seq
714 * - power on - MIPIPanelPowerOn - power on
715 * - wait t1+t2 - wait t1+t2
716 * - MIPIDeassertResetPin - MIPIDeassertResetPin - MIPIDeassertResetPin
717 * - io lines to lp-11 - io lines to lp-11 - io lines to lp-11
718 * - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds
721 * - turn on DPI - turn on DPI - set pipe to dsr mode
722 * - MIPIDisplayOn - MIPIDisplayOn
723 * - wait t5 - wait t5
724 * - backlight on - MIPIBacklightOn - backlight on
725 * ... ... ... issue mem cmds ...
726 * - backlight off - MIPIBacklightOff - backlight off
727 * - wait t6 - wait t6
729 * - turn off DPI - turn off DPI - disable pipe dsr mode
731 * - MIPIDisplayOff - MIPIDisplayOff
732 * - io lines to lp-00 - io lines to lp-00 - io lines to lp-00
733 * - MIPIAssertResetPin - MIPIAssertResetPin - MIPIAssertResetPin
734 * - wait t3 - wait t3
735 * - power off - MIPIPanelPowerOff - power off
736 * - wait t4 - wait t4
740 * DSI port enable has to be done before pipe and plane enable, so we do it in
741 * the pre_enable hook instead of the enable hook.
743 static void intel_dsi_pre_enable(struct intel_encoder
*encoder
,
744 const struct intel_crtc_state
*pipe_config
,
745 const struct drm_connector_state
*conn_state
)
747 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
748 struct drm_crtc
*crtc
= pipe_config
->uapi
.crtc
;
749 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
750 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
751 enum pipe pipe
= intel_crtc
->pipe
;
754 bool glk_cold_boot
= false;
758 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
761 * The BIOS may leave the PLL in a wonky state where it doesn't
762 * lock. It needs to be fully powered down to fix it.
764 if (IS_GEN9_LP(dev_priv
)) {
765 bxt_dsi_pll_disable(encoder
);
766 bxt_dsi_pll_enable(encoder
, pipe_config
);
768 vlv_dsi_pll_disable(encoder
);
769 vlv_dsi_pll_enable(encoder
, pipe_config
);
772 if (IS_BROXTON(dev_priv
)) {
773 /* Add MIPI IO reset programming for modeset */
774 val
= I915_READ(BXT_P_CR_GT_DISP_PWRON
);
775 I915_WRITE(BXT_P_CR_GT_DISP_PWRON
,
776 val
| MIPIO_RST_CTRL
);
778 /* Power up DSI regulator */
779 I915_WRITE(BXT_P_DSI_REGULATOR_CFG
, STAP_SELECT
);
780 I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL
, 0);
783 if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
786 /* Disable DPOunit clock gating, can stall pipe */
787 val
= I915_READ(DSPCLK_GATE_D
);
788 val
|= DPOUNIT_CLOCK_GATE_DISABLE
;
789 I915_WRITE(DSPCLK_GATE_D
, val
);
792 if (!IS_GEMINILAKE(dev_priv
))
793 intel_dsi_prepare(encoder
, pipe_config
);
795 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_POWER_ON
);
796 intel_dsi_msleep(intel_dsi
, intel_dsi
->panel_on_delay
);
799 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_DEASSERT_RESET
);
801 if (IS_GEMINILAKE(dev_priv
)) {
802 glk_cold_boot
= glk_dsi_enable_io(encoder
);
804 /* Prepare port in cold boot(s3/s4) scenario */
806 intel_dsi_prepare(encoder
, pipe_config
);
809 /* Put device in ready state (LP-11) */
810 intel_dsi_device_ready(encoder
);
812 /* Prepare port in normal boot scenario */
813 if (IS_GEMINILAKE(dev_priv
) && !glk_cold_boot
)
814 intel_dsi_prepare(encoder
, pipe_config
);
816 /* Send initialization commands in LP mode */
817 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_INIT_OTP
);
819 /* Enable port in pre-enable phase itself because as per hw team
820 * recommendation, port should be enabled befor plane & pipe */
821 if (is_cmd_mode(intel_dsi
)) {
822 for_each_dsi_port(port
, intel_dsi
->ports
)
823 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port
), 8 * 4);
824 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_TEAR_ON
);
825 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_DISPLAY_ON
);
827 msleep(20); /* XXX */
828 for_each_dsi_port(port
, intel_dsi
->ports
)
829 dpi_send_cmd(intel_dsi
, TURN_ON
, false, port
);
830 intel_dsi_msleep(intel_dsi
, 100);
832 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_DISPLAY_ON
);
834 intel_dsi_port_enable(encoder
, pipe_config
);
837 intel_panel_enable_backlight(pipe_config
, conn_state
);
838 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_BACKLIGHT_ON
);
842 * DSI port disable has to be done after pipe and plane disable, so we do it in
843 * the post_disable hook.
845 static void intel_dsi_disable(struct intel_encoder
*encoder
,
846 const struct intel_crtc_state
*old_crtc_state
,
847 const struct drm_connector_state
*old_conn_state
)
849 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
854 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_BACKLIGHT_OFF
);
855 intel_panel_disable_backlight(old_conn_state
);
858 * According to the spec we should send SHUTDOWN before
859 * MIPI_SEQ_DISPLAY_OFF only for v3+ VBTs, but field testing
860 * has shown that the v3 sequence works for v2 VBTs too
862 if (is_vid_mode(intel_dsi
)) {
863 /* Send Shutdown command to the panel in LP mode */
864 for_each_dsi_port(port
, intel_dsi
->ports
)
865 dpi_send_cmd(intel_dsi
, SHUTDOWN
, false, port
);
870 static void intel_dsi_clear_device_ready(struct intel_encoder
*encoder
)
872 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
874 if (IS_GEMINILAKE(dev_priv
))
875 glk_dsi_clear_device_ready(encoder
);
877 vlv_dsi_clear_device_ready(encoder
);
880 static void intel_dsi_post_disable(struct intel_encoder
*encoder
,
881 const struct intel_crtc_state
*old_crtc_state
,
882 const struct drm_connector_state
*old_conn_state
)
884 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
885 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
891 if (IS_GEN9_LP(dev_priv
)) {
892 intel_crtc_vblank_off(old_crtc_state
);
894 skl_scaler_disable(old_crtc_state
);
897 if (is_vid_mode(intel_dsi
)) {
898 for_each_dsi_port(port
, intel_dsi
->ports
)
899 vlv_dsi_wait_for_fifo_empty(intel_dsi
, port
);
901 intel_dsi_port_disable(encoder
);
902 usleep_range(2000, 5000);
905 intel_dsi_unprepare(encoder
);
908 * if disable packets are sent before sending shutdown packet then in
909 * some next enable sequence send turn on packet error is observed
911 if (is_cmd_mode(intel_dsi
))
912 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_TEAR_OFF
);
913 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_DISPLAY_OFF
);
915 /* Transition to LP-00 */
916 intel_dsi_clear_device_ready(encoder
);
918 if (IS_BROXTON(dev_priv
)) {
919 /* Power down DSI regulator to save power */
920 I915_WRITE(BXT_P_DSI_REGULATOR_CFG
, STAP_SELECT
);
921 I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL
, HS_IO_CTRL_SELECT
);
923 /* Add MIPI IO reset programming for modeset */
924 val
= I915_READ(BXT_P_CR_GT_DISP_PWRON
);
925 I915_WRITE(BXT_P_CR_GT_DISP_PWRON
,
926 val
& ~MIPIO_RST_CTRL
);
929 if (IS_GEN9_LP(dev_priv
)) {
930 bxt_dsi_pll_disable(encoder
);
934 vlv_dsi_pll_disable(encoder
);
936 val
= I915_READ(DSPCLK_GATE_D
);
937 val
&= ~DPOUNIT_CLOCK_GATE_DISABLE
;
938 I915_WRITE(DSPCLK_GATE_D
, val
);
942 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_ASSERT_RESET
);
944 intel_dsi_msleep(intel_dsi
, intel_dsi
->panel_off_delay
);
945 intel_dsi_vbt_exec_sequence(intel_dsi
, MIPI_SEQ_POWER_OFF
);
948 * FIXME As we do with eDP, just make a note of the time here
949 * and perform the wait before the next panel power on.
951 intel_dsi_msleep(intel_dsi
, intel_dsi
->panel_pwr_cycle_delay
);
954 static bool intel_dsi_get_hw_state(struct intel_encoder
*encoder
,
957 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
958 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
959 intel_wakeref_t wakeref
;
965 wakeref
= intel_display_power_get_if_enabled(dev_priv
,
966 encoder
->power_domain
);
971 * On Broxton the PLL needs to be enabled with a valid divider
972 * configuration, otherwise accessing DSI registers will hang the
973 * machine. See BSpec North Display Engine registers/MIPI[BXT].
975 if (IS_GEN9_LP(dev_priv
) && !bxt_dsi_pll_is_enabled(dev_priv
))
978 /* XXX: this only works for one DSI output */
979 for_each_dsi_port(port
, intel_dsi
->ports
) {
980 i915_reg_t ctrl_reg
= IS_GEN9_LP(dev_priv
) ?
981 BXT_MIPI_PORT_CTRL(port
) : MIPI_PORT_CTRL(port
);
982 bool enabled
= I915_READ(ctrl_reg
) & DPI_ENABLE
;
985 * Due to some hardware limitations on VLV/CHV, the DPI enable
986 * bit in port C control register does not get set. As a
987 * workaround, check pipe B conf instead.
989 if ((IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) &&
991 enabled
= I915_READ(PIPECONF(PIPE_B
)) & PIPECONF_ENABLE
;
993 /* Try command mode if video mode not enabled */
995 u32 tmp
= I915_READ(MIPI_DSI_FUNC_PRG(port
));
996 enabled
= tmp
& CMD_MODE_DATA_WIDTH_MASK
;
1002 if (!(I915_READ(MIPI_DEVICE_READY(port
)) & DEVICE_READY
))
1005 if (IS_GEN9_LP(dev_priv
)) {
1006 u32 tmp
= I915_READ(MIPI_CTRL(port
));
1007 tmp
&= BXT_PIPE_SELECT_MASK
;
1008 tmp
>>= BXT_PIPE_SELECT_SHIFT
;
1010 if (WARN_ON(tmp
> PIPE_C
))
1015 *pipe
= port
== PORT_A
? PIPE_A
: PIPE_B
;
1023 intel_display_power_put(dev_priv
, encoder
->power_domain
, wakeref
);
1028 static void bxt_dsi_get_pipe_config(struct intel_encoder
*encoder
,
1029 struct intel_crtc_state
*pipe_config
)
1031 struct drm_device
*dev
= encoder
->base
.dev
;
1032 struct drm_i915_private
*dev_priv
= to_i915(dev
);
1033 struct drm_display_mode
*adjusted_mode
=
1034 &pipe_config
->hw
.adjusted_mode
;
1035 struct drm_display_mode
*adjusted_mode_sw
;
1036 struct intel_crtc
*crtc
= to_intel_crtc(pipe_config
->uapi
.crtc
);
1037 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
1038 unsigned int lane_count
= intel_dsi
->lane_count
;
1039 unsigned int bpp
, fmt
;
1041 u16 hactive
, hfp
, hsync
, hbp
, vfp
, vsync
, vbp
;
1042 u16 hfp_sw
, hsync_sw
, hbp_sw
;
1043 u16 crtc_htotal_sw
, crtc_hsync_start_sw
, crtc_hsync_end_sw
,
1044 crtc_hblank_start_sw
, crtc_hblank_end_sw
;
1046 /* FIXME: hw readout should not depend on SW state */
1047 adjusted_mode_sw
= &crtc
->config
->hw
.adjusted_mode
;
1050 * Atleast one port is active as encoder->get_config called only if
1051 * encoder->get_hw_state() returns true.
1053 for_each_dsi_port(port
, intel_dsi
->ports
) {
1054 if (I915_READ(BXT_MIPI_PORT_CTRL(port
)) & DPI_ENABLE
)
1058 fmt
= I915_READ(MIPI_DSI_FUNC_PRG(port
)) & VID_MODE_FORMAT_MASK
;
1059 bpp
= mipi_dsi_pixel_format_to_bpp(
1060 pixel_format_from_register_bits(fmt
));
1062 pipe_config
->pipe_bpp
= bdw_get_pipemisc_bpp(crtc
);
1064 /* Enable Frame time stamo based scanline reporting */
1065 adjusted_mode
->private_flags
|=
1066 I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP
;
1068 /* In terms of pixels */
1069 adjusted_mode
->crtc_hdisplay
=
1070 I915_READ(BXT_MIPI_TRANS_HACTIVE(port
));
1071 adjusted_mode
->crtc_vdisplay
=
1072 I915_READ(BXT_MIPI_TRANS_VACTIVE(port
));
1073 adjusted_mode
->crtc_vtotal
=
1074 I915_READ(BXT_MIPI_TRANS_VTOTAL(port
));
1076 hactive
= adjusted_mode
->crtc_hdisplay
;
1077 hfp
= I915_READ(MIPI_HFP_COUNT(port
));
1080 * Meaningful for video mode non-burst sync pulse mode only,
1081 * can be zero for non-burst sync events and burst modes
1083 hsync
= I915_READ(MIPI_HSYNC_PADDING_COUNT(port
));
1084 hbp
= I915_READ(MIPI_HBP_COUNT(port
));
1086 /* harizontal values are in terms of high speed byte clock */
1087 hfp
= pixels_from_txbyteclkhs(hfp
, bpp
, lane_count
,
1088 intel_dsi
->burst_mode_ratio
);
1089 hsync
= pixels_from_txbyteclkhs(hsync
, bpp
, lane_count
,
1090 intel_dsi
->burst_mode_ratio
);
1091 hbp
= pixels_from_txbyteclkhs(hbp
, bpp
, lane_count
,
1092 intel_dsi
->burst_mode_ratio
);
1094 if (intel_dsi
->dual_link
) {
1100 /* vertical values are in terms of lines */
1101 vfp
= I915_READ(MIPI_VFP_COUNT(port
));
1102 vsync
= I915_READ(MIPI_VSYNC_PADDING_COUNT(port
));
1103 vbp
= I915_READ(MIPI_VBP_COUNT(port
));
1105 adjusted_mode
->crtc_htotal
= hactive
+ hfp
+ hsync
+ hbp
;
1106 adjusted_mode
->crtc_hsync_start
= hfp
+ adjusted_mode
->crtc_hdisplay
;
1107 adjusted_mode
->crtc_hsync_end
= hsync
+ adjusted_mode
->crtc_hsync_start
;
1108 adjusted_mode
->crtc_hblank_start
= adjusted_mode
->crtc_hdisplay
;
1109 adjusted_mode
->crtc_hblank_end
= adjusted_mode
->crtc_htotal
;
1111 adjusted_mode
->crtc_vsync_start
= vfp
+ adjusted_mode
->crtc_vdisplay
;
1112 adjusted_mode
->crtc_vsync_end
= vsync
+ adjusted_mode
->crtc_vsync_start
;
1113 adjusted_mode
->crtc_vblank_start
= adjusted_mode
->crtc_vdisplay
;
1114 adjusted_mode
->crtc_vblank_end
= adjusted_mode
->crtc_vtotal
;
1117 * In BXT DSI there is no regs programmed with few horizontal timings
1118 * in Pixels but txbyteclkhs.. So retrieval process adds some
1119 * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
1120 * Actually here for the given adjusted_mode, we are calculating the
1121 * value programmed to the port and then back to the horizontal timing
1122 * param in pixels. This is the expected value, including roundup errors
1123 * And if that is same as retrieved value from port, then
1124 * (HW state) adjusted_mode's horizontal timings are corrected to
1125 * match with SW state to nullify the errors.
1127 /* Calculating the value programmed to the Port register */
1128 hfp_sw
= adjusted_mode_sw
->crtc_hsync_start
-
1129 adjusted_mode_sw
->crtc_hdisplay
;
1130 hsync_sw
= adjusted_mode_sw
->crtc_hsync_end
-
1131 adjusted_mode_sw
->crtc_hsync_start
;
1132 hbp_sw
= adjusted_mode_sw
->crtc_htotal
-
1133 adjusted_mode_sw
->crtc_hsync_end
;
1135 if (intel_dsi
->dual_link
) {
1141 hfp_sw
= txbyteclkhs(hfp_sw
, bpp
, lane_count
,
1142 intel_dsi
->burst_mode_ratio
);
1143 hsync_sw
= txbyteclkhs(hsync_sw
, bpp
, lane_count
,
1144 intel_dsi
->burst_mode_ratio
);
1145 hbp_sw
= txbyteclkhs(hbp_sw
, bpp
, lane_count
,
1146 intel_dsi
->burst_mode_ratio
);
1148 /* Reverse calculating the adjusted mode parameters from port reg vals*/
1149 hfp_sw
= pixels_from_txbyteclkhs(hfp_sw
, bpp
, lane_count
,
1150 intel_dsi
->burst_mode_ratio
);
1151 hsync_sw
= pixels_from_txbyteclkhs(hsync_sw
, bpp
, lane_count
,
1152 intel_dsi
->burst_mode_ratio
);
1153 hbp_sw
= pixels_from_txbyteclkhs(hbp_sw
, bpp
, lane_count
,
1154 intel_dsi
->burst_mode_ratio
);
1156 if (intel_dsi
->dual_link
) {
1162 crtc_htotal_sw
= adjusted_mode_sw
->crtc_hdisplay
+ hfp_sw
+
1164 crtc_hsync_start_sw
= hfp_sw
+ adjusted_mode_sw
->crtc_hdisplay
;
1165 crtc_hsync_end_sw
= hsync_sw
+ crtc_hsync_start_sw
;
1166 crtc_hblank_start_sw
= adjusted_mode_sw
->crtc_hdisplay
;
1167 crtc_hblank_end_sw
= crtc_htotal_sw
;
1169 if (adjusted_mode
->crtc_htotal
== crtc_htotal_sw
)
1170 adjusted_mode
->crtc_htotal
= adjusted_mode_sw
->crtc_htotal
;
1172 if (adjusted_mode
->crtc_hsync_start
== crtc_hsync_start_sw
)
1173 adjusted_mode
->crtc_hsync_start
=
1174 adjusted_mode_sw
->crtc_hsync_start
;
1176 if (adjusted_mode
->crtc_hsync_end
== crtc_hsync_end_sw
)
1177 adjusted_mode
->crtc_hsync_end
=
1178 adjusted_mode_sw
->crtc_hsync_end
;
1180 if (adjusted_mode
->crtc_hblank_start
== crtc_hblank_start_sw
)
1181 adjusted_mode
->crtc_hblank_start
=
1182 adjusted_mode_sw
->crtc_hblank_start
;
1184 if (adjusted_mode
->crtc_hblank_end
== crtc_hblank_end_sw
)
1185 adjusted_mode
->crtc_hblank_end
=
1186 adjusted_mode_sw
->crtc_hblank_end
;
1189 static void intel_dsi_get_config(struct intel_encoder
*encoder
,
1190 struct intel_crtc_state
*pipe_config
)
1192 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
1194 DRM_DEBUG_KMS("\n");
1196 pipe_config
->output_types
|= BIT(INTEL_OUTPUT_DSI
);
1198 if (IS_GEN9_LP(dev_priv
)) {
1199 bxt_dsi_get_pipe_config(encoder
, pipe_config
);
1200 pclk
= bxt_dsi_get_pclk(encoder
, pipe_config
);
1202 pclk
= vlv_dsi_get_pclk(encoder
, pipe_config
);
1206 pipe_config
->hw
.adjusted_mode
.crtc_clock
= pclk
;
1207 pipe_config
->port_clock
= pclk
;
1211 /* return txclkesc cycles in terms of divider and duration in us */
1212 static u16
txclkesc(u32 divider
, unsigned int us
)
1215 case ESCAPE_CLOCK_DIVIDER_1
:
1218 case ESCAPE_CLOCK_DIVIDER_2
:
1220 case ESCAPE_CLOCK_DIVIDER_4
:
1225 static void set_dsi_timings(struct drm_encoder
*encoder
,
1226 const struct drm_display_mode
*adjusted_mode
)
1228 struct drm_device
*dev
= encoder
->dev
;
1229 struct drm_i915_private
*dev_priv
= to_i915(dev
);
1230 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(to_intel_encoder(encoder
));
1232 unsigned int bpp
= mipi_dsi_pixel_format_to_bpp(intel_dsi
->pixel_format
);
1233 unsigned int lane_count
= intel_dsi
->lane_count
;
1235 u16 hactive
, hfp
, hsync
, hbp
, vfp
, vsync
, vbp
;
1237 hactive
= adjusted_mode
->crtc_hdisplay
;
1238 hfp
= adjusted_mode
->crtc_hsync_start
- adjusted_mode
->crtc_hdisplay
;
1239 hsync
= adjusted_mode
->crtc_hsync_end
- adjusted_mode
->crtc_hsync_start
;
1240 hbp
= adjusted_mode
->crtc_htotal
- adjusted_mode
->crtc_hsync_end
;
1242 if (intel_dsi
->dual_link
) {
1244 if (intel_dsi
->dual_link
== DSI_DUAL_LINK_FRONT_BACK
)
1245 hactive
+= intel_dsi
->pixel_overlap
;
1251 vfp
= adjusted_mode
->crtc_vsync_start
- adjusted_mode
->crtc_vdisplay
;
1252 vsync
= adjusted_mode
->crtc_vsync_end
- adjusted_mode
->crtc_vsync_start
;
1253 vbp
= adjusted_mode
->crtc_vtotal
- adjusted_mode
->crtc_vsync_end
;
1255 /* horizontal values are in terms of high speed byte clock */
1256 hactive
= txbyteclkhs(hactive
, bpp
, lane_count
,
1257 intel_dsi
->burst_mode_ratio
);
1258 hfp
= txbyteclkhs(hfp
, bpp
, lane_count
, intel_dsi
->burst_mode_ratio
);
1259 hsync
= txbyteclkhs(hsync
, bpp
, lane_count
,
1260 intel_dsi
->burst_mode_ratio
);
1261 hbp
= txbyteclkhs(hbp
, bpp
, lane_count
, intel_dsi
->burst_mode_ratio
);
1263 for_each_dsi_port(port
, intel_dsi
->ports
) {
1264 if (IS_GEN9_LP(dev_priv
)) {
1266 * Program hdisplay and vdisplay on MIPI transcoder.
1267 * This is different from calculated hactive and
1268 * vactive, as they are calculated per channel basis,
1269 * whereas these values should be based on resolution.
1271 I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port
),
1272 adjusted_mode
->crtc_hdisplay
);
1273 I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port
),
1274 adjusted_mode
->crtc_vdisplay
);
1275 I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port
),
1276 adjusted_mode
->crtc_vtotal
);
1279 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port
), hactive
);
1280 I915_WRITE(MIPI_HFP_COUNT(port
), hfp
);
1282 /* meaningful for video mode non-burst sync pulse mode only,
1283 * can be zero for non-burst sync events and burst modes */
1284 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port
), hsync
);
1285 I915_WRITE(MIPI_HBP_COUNT(port
), hbp
);
1287 /* vertical values are in terms of lines */
1288 I915_WRITE(MIPI_VFP_COUNT(port
), vfp
);
1289 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port
), vsync
);
1290 I915_WRITE(MIPI_VBP_COUNT(port
), vbp
);
1294 static u32
pixel_format_to_reg(enum mipi_dsi_pixel_format fmt
)
1297 case MIPI_DSI_FMT_RGB888
:
1298 return VID_MODE_FORMAT_RGB888
;
1299 case MIPI_DSI_FMT_RGB666
:
1300 return VID_MODE_FORMAT_RGB666
;
1301 case MIPI_DSI_FMT_RGB666_PACKED
:
1302 return VID_MODE_FORMAT_RGB666_PACKED
;
1303 case MIPI_DSI_FMT_RGB565
:
1304 return VID_MODE_FORMAT_RGB565
;
1307 return VID_MODE_FORMAT_RGB666
;
1311 static void intel_dsi_prepare(struct intel_encoder
*intel_encoder
,
1312 const struct intel_crtc_state
*pipe_config
)
1314 struct drm_encoder
*encoder
= &intel_encoder
->base
;
1315 struct drm_device
*dev
= encoder
->dev
;
1316 struct drm_i915_private
*dev_priv
= to_i915(dev
);
1317 struct intel_crtc
*intel_crtc
= to_intel_crtc(pipe_config
->uapi
.crtc
);
1318 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(to_intel_encoder(encoder
));
1319 const struct drm_display_mode
*adjusted_mode
= &pipe_config
->hw
.adjusted_mode
;
1321 unsigned int bpp
= mipi_dsi_pixel_format_to_bpp(intel_dsi
->pixel_format
);
1325 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc
->pipe
));
1327 mode_hdisplay
= adjusted_mode
->crtc_hdisplay
;
1329 if (intel_dsi
->dual_link
) {
1331 if (intel_dsi
->dual_link
== DSI_DUAL_LINK_FRONT_BACK
)
1332 mode_hdisplay
+= intel_dsi
->pixel_overlap
;
1335 for_each_dsi_port(port
, intel_dsi
->ports
) {
1336 if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
1338 * escape clock divider, 20MHz, shared for A and C.
1339 * device ready must be off when doing this! txclkesc?
1341 tmp
= I915_READ(MIPI_CTRL(PORT_A
));
1342 tmp
&= ~ESCAPE_CLOCK_DIVIDER_MASK
;
1343 I915_WRITE(MIPI_CTRL(PORT_A
), tmp
|
1344 ESCAPE_CLOCK_DIVIDER_1
);
1346 /* read request priority is per pipe */
1347 tmp
= I915_READ(MIPI_CTRL(port
));
1348 tmp
&= ~READ_REQUEST_PRIORITY_MASK
;
1349 I915_WRITE(MIPI_CTRL(port
), tmp
|
1350 READ_REQUEST_PRIORITY_HIGH
);
1351 } else if (IS_GEN9_LP(dev_priv
)) {
1352 enum pipe pipe
= intel_crtc
->pipe
;
1354 tmp
= I915_READ(MIPI_CTRL(port
));
1355 tmp
&= ~BXT_PIPE_SELECT_MASK
;
1357 tmp
|= BXT_PIPE_SELECT(pipe
);
1358 I915_WRITE(MIPI_CTRL(port
), tmp
);
1361 /* XXX: why here, why like this? handling in irq handler?! */
1362 I915_WRITE(MIPI_INTR_STAT(port
), 0xffffffff);
1363 I915_WRITE(MIPI_INTR_EN(port
), 0xffffffff);
1365 I915_WRITE(MIPI_DPHY_PARAM(port
), intel_dsi
->dphy_reg
);
1367 I915_WRITE(MIPI_DPI_RESOLUTION(port
),
1368 adjusted_mode
->crtc_vdisplay
<< VERTICAL_ADDRESS_SHIFT
|
1369 mode_hdisplay
<< HORIZONTAL_ADDRESS_SHIFT
);
1372 set_dsi_timings(encoder
, adjusted_mode
);
1374 val
= intel_dsi
->lane_count
<< DATA_LANES_PRG_REG_SHIFT
;
1375 if (is_cmd_mode(intel_dsi
)) {
1376 val
|= intel_dsi
->channel
<< CMD_MODE_CHANNEL_NUMBER_SHIFT
;
1377 val
|= CMD_MODE_DATA_WIDTH_8_BIT
; /* XXX */
1379 val
|= intel_dsi
->channel
<< VID_MODE_CHANNEL_NUMBER_SHIFT
;
1380 val
|= pixel_format_to_reg(intel_dsi
->pixel_format
);
1384 if (intel_dsi
->eotp_pkt
== 0)
1386 if (intel_dsi
->clock_stop
)
1389 if (IS_GEN9_LP(dev_priv
)) {
1390 tmp
|= BXT_DPHY_DEFEATURE_EN
;
1391 if (!is_cmd_mode(intel_dsi
))
1392 tmp
|= BXT_DEFEATURE_DPI_FIFO_CTR
;
1395 for_each_dsi_port(port
, intel_dsi
->ports
) {
1396 I915_WRITE(MIPI_DSI_FUNC_PRG(port
), val
);
1398 /* timeouts for recovery. one frame IIUC. if counter expires,
1399 * EOT and stop state. */
1402 * In burst mode, value greater than one DPI line Time in byte
1403 * clock (txbyteclkhs) To timeout this timer 1+ of the above
1404 * said value is recommended.
1406 * In non-burst mode, Value greater than one DPI frame time in
1407 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1408 * said value is recommended.
1410 * In DBI only mode, value greater than one DBI frame time in
1411 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1412 * said value is recommended.
1415 if (is_vid_mode(intel_dsi
) &&
1416 intel_dsi
->video_mode_format
== VIDEO_MODE_BURST
) {
1417 I915_WRITE(MIPI_HS_TX_TIMEOUT(port
),
1418 txbyteclkhs(adjusted_mode
->crtc_htotal
, bpp
,
1419 intel_dsi
->lane_count
,
1420 intel_dsi
->burst_mode_ratio
) + 1);
1422 I915_WRITE(MIPI_HS_TX_TIMEOUT(port
),
1423 txbyteclkhs(adjusted_mode
->crtc_vtotal
*
1424 adjusted_mode
->crtc_htotal
,
1425 bpp
, intel_dsi
->lane_count
,
1426 intel_dsi
->burst_mode_ratio
) + 1);
1428 I915_WRITE(MIPI_LP_RX_TIMEOUT(port
), intel_dsi
->lp_rx_timeout
);
1429 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port
),
1430 intel_dsi
->turn_arnd_val
);
1431 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port
),
1432 intel_dsi
->rst_timer_val
);
1436 /* in terms of low power clock */
1437 I915_WRITE(MIPI_INIT_COUNT(port
),
1438 txclkesc(intel_dsi
->escape_clk_div
, 100));
1440 if (IS_GEN9_LP(dev_priv
) && (!intel_dsi
->dual_link
)) {
1442 * BXT spec says write MIPI_INIT_COUNT for
1443 * both the ports, even if only one is
1444 * getting used. So write the other port
1445 * if not in dual link mode.
1447 I915_WRITE(MIPI_INIT_COUNT(port
==
1448 PORT_A
? PORT_C
: PORT_A
),
1449 intel_dsi
->init_count
);
1452 /* recovery disables */
1453 I915_WRITE(MIPI_EOT_DISABLE(port
), tmp
);
1455 /* in terms of low power clock */
1456 I915_WRITE(MIPI_INIT_COUNT(port
), intel_dsi
->init_count
);
1458 /* in terms of txbyteclkhs. actual high to low switch +
1459 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
1461 * XXX: write MIPI_STOP_STATE_STALL?
1463 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port
),
1464 intel_dsi
->hs_to_lp_count
);
1466 /* XXX: low power clock equivalence in terms of byte clock.
1467 * the number of byte clocks occupied in one low power clock.
1468 * based on txbyteclkhs and txclkesc.
1469 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
1472 I915_WRITE(MIPI_LP_BYTECLK(port
), intel_dsi
->lp_byte_clk
);
1474 if (IS_GEMINILAKE(dev_priv
)) {
1475 I915_WRITE(MIPI_TLPX_TIME_COUNT(port
),
1476 intel_dsi
->lp_byte_clk
);
1477 /* Shadow of DPHY reg */
1478 I915_WRITE(MIPI_CLK_LANE_TIMING(port
),
1479 intel_dsi
->dphy_reg
);
1482 /* the bw essential for transmitting 16 long packets containing
1483 * 252 bytes meant for dcs write memory command is programmed in
1484 * this register in terms of byte clocks. based on dsi transfer
1485 * rate and the number of lanes configured the time taken to
1486 * transmit 16 long packets in a dsi stream varies. */
1487 I915_WRITE(MIPI_DBI_BW_CTRL(port
), intel_dsi
->bw_timer
);
1489 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port
),
1490 intel_dsi
->clk_lp_to_hs_count
<< LP_HS_SSW_CNT_SHIFT
|
1491 intel_dsi
->clk_hs_to_lp_count
<< HS_LP_PWR_SW_CNT_SHIFT
);
1493 if (is_vid_mode(intel_dsi
))
1494 /* Some panels might have resolution which is not a
1495 * multiple of 64 like 1366 x 768. Enable RANDOM
1496 * resolution support for such panels by default */
1497 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port
),
1498 intel_dsi
->video_frmt_cfg_bits
|
1499 intel_dsi
->video_mode_format
|
1501 RANDOM_DPI_DISPLAY_RESOLUTION
);
1505 static void intel_dsi_unprepare(struct intel_encoder
*encoder
)
1507 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
1508 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(encoder
);
1512 if (IS_GEMINILAKE(dev_priv
))
1515 for_each_dsi_port(port
, intel_dsi
->ports
) {
1516 /* Panel commands can be sent when clock is in LP11 */
1517 I915_WRITE(MIPI_DEVICE_READY(port
), 0x0);
1519 if (IS_GEN9_LP(dev_priv
))
1520 bxt_dsi_reset_clocks(encoder
, port
);
1522 vlv_dsi_reset_clocks(encoder
, port
);
1523 I915_WRITE(MIPI_EOT_DISABLE(port
), CLOCKSTOP
);
1525 val
= I915_READ(MIPI_DSI_FUNC_PRG(port
));
1526 val
&= ~VID_MODE_FORMAT_MASK
;
1527 I915_WRITE(MIPI_DSI_FUNC_PRG(port
), val
);
1529 I915_WRITE(MIPI_DEVICE_READY(port
), 0x1);
1533 static void intel_dsi_encoder_destroy(struct drm_encoder
*encoder
)
1535 struct intel_dsi
*intel_dsi
= enc_to_intel_dsi(to_intel_encoder(encoder
));
1537 intel_dsi_vbt_gpio_cleanup(intel_dsi
);
1538 intel_encoder_destroy(encoder
);
1541 static const struct drm_encoder_funcs intel_dsi_funcs
= {
1542 .destroy
= intel_dsi_encoder_destroy
,
1545 static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs
= {
1546 .get_modes
= intel_dsi_get_modes
,
1547 .mode_valid
= intel_dsi_mode_valid
,
1548 .atomic_check
= intel_digital_connector_atomic_check
,
1551 static const struct drm_connector_funcs intel_dsi_connector_funcs
= {
1552 .late_register
= intel_connector_register
,
1553 .early_unregister
= intel_connector_unregister
,
1554 .destroy
= intel_connector_destroy
,
1555 .fill_modes
= drm_helper_probe_single_connector_modes
,
1556 .atomic_get_property
= intel_digital_connector_atomic_get_property
,
1557 .atomic_set_property
= intel_digital_connector_atomic_set_property
,
1558 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
1559 .atomic_duplicate_state
= intel_digital_connector_duplicate_state
,
1562 static enum drm_panel_orientation
1563 vlv_dsi_get_hw_panel_orientation(struct intel_connector
*connector
)
1565 struct drm_i915_private
*dev_priv
= to_i915(connector
->base
.dev
);
1566 struct intel_encoder
*encoder
= connector
->encoder
;
1567 enum intel_display_power_domain power_domain
;
1568 enum drm_panel_orientation orientation
;
1569 struct intel_plane
*plane
;
1570 struct intel_crtc
*crtc
;
1571 intel_wakeref_t wakeref
;
1575 if (!encoder
->get_hw_state(encoder
, &pipe
))
1576 return DRM_MODE_PANEL_ORIENTATION_UNKNOWN
;
1578 crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
1579 plane
= to_intel_plane(crtc
->base
.primary
);
1581 power_domain
= POWER_DOMAIN_PIPE(pipe
);
1582 wakeref
= intel_display_power_get_if_enabled(dev_priv
, power_domain
);
1584 return DRM_MODE_PANEL_ORIENTATION_UNKNOWN
;
1586 val
= I915_READ(DSPCNTR(plane
->i9xx_plane
));
1588 if (!(val
& DISPLAY_PLANE_ENABLE
))
1589 orientation
= DRM_MODE_PANEL_ORIENTATION_UNKNOWN
;
1590 else if (val
& DISPPLANE_ROTATE_180
)
1591 orientation
= DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP
;
1593 orientation
= DRM_MODE_PANEL_ORIENTATION_NORMAL
;
1595 intel_display_power_put(dev_priv
, power_domain
, wakeref
);
1600 static enum drm_panel_orientation
1601 vlv_dsi_get_panel_orientation(struct intel_connector
*connector
)
1603 struct drm_i915_private
*dev_priv
= to_i915(connector
->base
.dev
);
1604 enum drm_panel_orientation orientation
;
1606 if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
1607 orientation
= vlv_dsi_get_hw_panel_orientation(connector
);
1608 if (orientation
!= DRM_MODE_PANEL_ORIENTATION_UNKNOWN
)
1612 return intel_dsi_get_panel_orientation(connector
);
1615 static void vlv_dsi_add_properties(struct intel_connector
*connector
)
1617 struct drm_i915_private
*dev_priv
= to_i915(connector
->base
.dev
);
1619 if (connector
->panel
.fixed_mode
) {
1620 u32 allowed_scalers
;
1622 allowed_scalers
= BIT(DRM_MODE_SCALE_ASPECT
) | BIT(DRM_MODE_SCALE_FULLSCREEN
);
1623 if (!HAS_GMCH(dev_priv
))
1624 allowed_scalers
|= BIT(DRM_MODE_SCALE_CENTER
);
1626 drm_connector_attach_scaling_mode_property(&connector
->base
,
1629 connector
->base
.state
->scaling_mode
= DRM_MODE_SCALE_ASPECT
;
1631 connector
->base
.display_info
.panel_orientation
=
1632 vlv_dsi_get_panel_orientation(connector
);
1633 drm_connector_init_panel_orientation_property(
1635 connector
->panel
.fixed_mode
->hdisplay
,
1636 connector
->panel
.fixed_mode
->vdisplay
);
1640 #define NS_KHZ_RATIO 1000000
1642 #define PREPARE_CNT_MAX 0x3F
1643 #define EXIT_ZERO_CNT_MAX 0x3F
1644 #define CLK_ZERO_CNT_MAX 0xFF
1645 #define TRAIL_CNT_MAX 0x1F
1647 static void vlv_dphy_param_init(struct intel_dsi
*intel_dsi
)
1649 struct drm_device
*dev
= intel_dsi
->base
.base
.dev
;
1650 struct drm_i915_private
*dev_priv
= to_i915(dev
);
1651 struct mipi_config
*mipi_config
= dev_priv
->vbt
.dsi
.config
;
1652 u32 tlpx_ns
, extra_byte_count
, tlpx_ui
;
1654 u32 prepare_cnt
, exit_zero_cnt
, clk_zero_cnt
, trail_cnt
;
1655 u32 ths_prepare_ns
, tclk_trail_ns
;
1656 u32 tclk_prepare_clkzero
, ths_prepare_hszero
;
1657 u32 lp_to_hs_switch
, hs_to_lp_switch
;
1660 tlpx_ns
= intel_dsi_tlpx_ns(intel_dsi
);
1662 switch (intel_dsi
->lane_count
) {
1665 extra_byte_count
= 2;
1668 extra_byte_count
= 4;
1672 extra_byte_count
= 3;
1677 ui_num
= NS_KHZ_RATIO
;
1678 ui_den
= intel_dsi_bitrate(intel_dsi
);
1680 tclk_prepare_clkzero
= mipi_config
->tclk_prepare_clkzero
;
1681 ths_prepare_hszero
= mipi_config
->ths_prepare_hszero
;
1685 * LP byte clock = TLPX/ (8UI)
1687 intel_dsi
->lp_byte_clk
= DIV_ROUND_UP(tlpx_ns
* ui_den
, 8 * ui_num
);
1689 /* DDR clock period = 2 * UI
1690 * UI(sec) = 1/(bitrate * 10^3) (bitrate is in KHZ)
1691 * UI(nsec) = 10^6 / bitrate
1692 * DDR clock period (nsec) = 2 * UI = (2 * 10^6)/ bitrate
1693 * DDR clock count = ns_value / DDR clock period
1695 * For GEMINILAKE dphy_param_reg will be programmed in terms of
1696 * HS byte clock count for other platform in HS ddr clock count
1698 mul
= IS_GEMINILAKE(dev_priv
) ? 8 : 2;
1699 ths_prepare_ns
= max(mipi_config
->ths_prepare
,
1700 mipi_config
->tclk_prepare
);
1703 prepare_cnt
= DIV_ROUND_UP(ths_prepare_ns
* ui_den
, ui_num
* mul
);
1705 if (prepare_cnt
> PREPARE_CNT_MAX
) {
1706 DRM_DEBUG_KMS("prepare count too high %u\n", prepare_cnt
);
1707 prepare_cnt
= PREPARE_CNT_MAX
;
1710 /* exit zero count */
1711 exit_zero_cnt
= DIV_ROUND_UP(
1712 (ths_prepare_hszero
- ths_prepare_ns
) * ui_den
,
1717 * Exit zero is unified val ths_zero and ths_exit
1718 * minimum value for ths_exit = 110ns
1719 * min (exit_zero_cnt * 2) = 110/UI
1720 * exit_zero_cnt = 55/UI
1722 if (exit_zero_cnt
< (55 * ui_den
/ ui_num
) && (55 * ui_den
) % ui_num
)
1725 if (exit_zero_cnt
> EXIT_ZERO_CNT_MAX
) {
1726 DRM_DEBUG_KMS("exit zero count too high %u\n", exit_zero_cnt
);
1727 exit_zero_cnt
= EXIT_ZERO_CNT_MAX
;
1730 /* clk zero count */
1731 clk_zero_cnt
= DIV_ROUND_UP(
1732 (tclk_prepare_clkzero
- ths_prepare_ns
)
1733 * ui_den
, ui_num
* mul
);
1735 if (clk_zero_cnt
> CLK_ZERO_CNT_MAX
) {
1736 DRM_DEBUG_KMS("clock zero count too high %u\n", clk_zero_cnt
);
1737 clk_zero_cnt
= CLK_ZERO_CNT_MAX
;
1741 tclk_trail_ns
= max(mipi_config
->tclk_trail
, mipi_config
->ths_trail
);
1742 trail_cnt
= DIV_ROUND_UP(tclk_trail_ns
* ui_den
, ui_num
* mul
);
1744 if (trail_cnt
> TRAIL_CNT_MAX
) {
1745 DRM_DEBUG_KMS("trail count too high %u\n", trail_cnt
);
1746 trail_cnt
= TRAIL_CNT_MAX
;
1750 intel_dsi
->dphy_reg
= exit_zero_cnt
<< 24 | trail_cnt
<< 16 |
1751 clk_zero_cnt
<< 8 | prepare_cnt
;
1754 * LP to HS switch count = 4TLPX + PREP_COUNT * mul + EXIT_ZERO_COUNT *
1755 * mul + 10UI + Extra Byte Count
1757 * HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
1758 * Extra Byte Count is calculated according to number of lanes.
1759 * High Low Switch Count is the Max of LP to HS and
1760 * HS to LP switch count
1763 tlpx_ui
= DIV_ROUND_UP(tlpx_ns
* ui_den
, ui_num
);
1767 * The comment above does not match with the code */
1768 lp_to_hs_switch
= DIV_ROUND_UP(4 * tlpx_ui
+ prepare_cnt
* mul
+
1769 exit_zero_cnt
* mul
+ 10, 8);
1771 hs_to_lp_switch
= DIV_ROUND_UP(mipi_config
->ths_trail
+ 2 * tlpx_ui
, 8);
1773 intel_dsi
->hs_to_lp_count
= max(lp_to_hs_switch
, hs_to_lp_switch
);
1774 intel_dsi
->hs_to_lp_count
+= extra_byte_count
;
1777 /* LP -> HS for clock lanes
1778 * LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
1780 * 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
1781 * 2(in UI) + extra byte count
1782 * In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
1783 * 8 + extra byte count
1785 intel_dsi
->clk_lp_to_hs_count
=
1787 4 * tlpx_ui
+ prepare_cnt
* 2 +
1791 intel_dsi
->clk_lp_to_hs_count
+= extra_byte_count
;
1793 /* HS->LP for Clock Lanes
1794 * Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
1796 * 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
1797 * In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
1800 intel_dsi
->clk_hs_to_lp_count
=
1801 DIV_ROUND_UP(2 * tlpx_ui
+ trail_cnt
* 2 + 8,
1803 intel_dsi
->clk_hs_to_lp_count
+= extra_byte_count
;
1805 intel_dsi_log_params(intel_dsi
);
1808 void vlv_dsi_init(struct drm_i915_private
*dev_priv
)
1810 struct drm_device
*dev
= &dev_priv
->drm
;
1811 struct intel_dsi
*intel_dsi
;
1812 struct intel_encoder
*intel_encoder
;
1813 struct drm_encoder
*encoder
;
1814 struct intel_connector
*intel_connector
;
1815 struct drm_connector
*connector
;
1816 struct drm_display_mode
*current_mode
, *fixed_mode
;
1820 DRM_DEBUG_KMS("\n");
1822 /* There is no detection method for MIPI so rely on VBT */
1823 if (!intel_bios_is_dsi_present(dev_priv
, &port
))
1826 if (IS_GEN9_LP(dev_priv
))
1827 dev_priv
->mipi_mmio_base
= BXT_MIPI_BASE
;
1829 dev_priv
->mipi_mmio_base
= VLV_MIPI_BASE
;
1831 intel_dsi
= kzalloc(sizeof(*intel_dsi
), GFP_KERNEL
);
1835 intel_connector
= intel_connector_alloc();
1836 if (!intel_connector
) {
1841 intel_encoder
= &intel_dsi
->base
;
1842 encoder
= &intel_encoder
->base
;
1843 intel_dsi
->attached_connector
= intel_connector
;
1845 connector
= &intel_connector
->base
;
1847 drm_encoder_init(dev
, encoder
, &intel_dsi_funcs
, DRM_MODE_ENCODER_DSI
,
1848 "DSI %c", port_name(port
));
1850 intel_encoder
->compute_config
= intel_dsi_compute_config
;
1851 intel_encoder
->pre_enable
= intel_dsi_pre_enable
;
1852 intel_encoder
->disable
= intel_dsi_disable
;
1853 intel_encoder
->post_disable
= intel_dsi_post_disable
;
1854 intel_encoder
->get_hw_state
= intel_dsi_get_hw_state
;
1855 intel_encoder
->get_config
= intel_dsi_get_config
;
1856 intel_encoder
->update_pipe
= intel_panel_update_backlight
;
1858 intel_connector
->get_hw_state
= intel_connector_get_hw_state
;
1860 intel_encoder
->port
= port
;
1861 intel_encoder
->type
= INTEL_OUTPUT_DSI
;
1862 intel_encoder
->power_domain
= POWER_DOMAIN_PORT_DSI
;
1863 intel_encoder
->cloneable
= 0;
1866 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
1867 * port C. BXT isn't limited like this.
1869 if (IS_GEN9_LP(dev_priv
))
1870 intel_encoder
->pipe_mask
= ~0;
1871 else if (port
== PORT_A
)
1872 intel_encoder
->pipe_mask
= BIT(PIPE_A
);
1874 intel_encoder
->pipe_mask
= BIT(PIPE_B
);
1876 if (dev_priv
->vbt
.dsi
.config
->dual_link
)
1877 intel_dsi
->ports
= BIT(PORT_A
) | BIT(PORT_C
);
1879 intel_dsi
->ports
= BIT(port
);
1881 intel_dsi
->dcs_backlight_ports
= dev_priv
->vbt
.dsi
.bl_ports
;
1882 intel_dsi
->dcs_cabc_ports
= dev_priv
->vbt
.dsi
.cabc_ports
;
1884 /* Create a DSI host (and a device) for each port. */
1885 for_each_dsi_port(port
, intel_dsi
->ports
) {
1886 struct intel_dsi_host
*host
;
1888 host
= intel_dsi_host_init(intel_dsi
, &intel_dsi_host_ops
,
1893 intel_dsi
->dsi_hosts
[port
] = host
;
1896 if (!intel_dsi_vbt_init(intel_dsi
, MIPI_DSI_GENERIC_PANEL_ID
)) {
1897 DRM_DEBUG_KMS("no device found\n");
1901 /* Use clock read-back from current hw-state for fastboot */
1902 current_mode
= intel_encoder_current_mode(intel_encoder
);
1904 DRM_DEBUG_KMS("Calculated pclk %d GOP %d\n",
1905 intel_dsi
->pclk
, current_mode
->clock
);
1906 if (intel_fuzzy_clock_check(intel_dsi
->pclk
,
1907 current_mode
->clock
)) {
1908 DRM_DEBUG_KMS("Using GOP pclk\n");
1909 intel_dsi
->pclk
= current_mode
->clock
;
1912 kfree(current_mode
);
1915 vlv_dphy_param_init(intel_dsi
);
1917 intel_dsi_vbt_gpio_init(intel_dsi
,
1918 intel_dsi_get_hw_state(intel_encoder
, &pipe
));
1920 drm_connector_init(dev
, connector
, &intel_dsi_connector_funcs
,
1921 DRM_MODE_CONNECTOR_DSI
);
1923 drm_connector_helper_add(connector
, &intel_dsi_connector_helper_funcs
);
1925 connector
->display_info
.subpixel_order
= SubPixelHorizontalRGB
; /*XXX*/
1926 connector
->interlace_allowed
= false;
1927 connector
->doublescan_allowed
= false;
1929 intel_connector_attach_encoder(intel_connector
, intel_encoder
);
1931 mutex_lock(&dev
->mode_config
.mutex
);
1932 fixed_mode
= intel_panel_vbt_fixed_mode(intel_connector
);
1933 mutex_unlock(&dev
->mode_config
.mutex
);
1936 DRM_DEBUG_KMS("no fixed mode\n");
1937 goto err_cleanup_connector
;
1940 intel_panel_init(&intel_connector
->panel
, fixed_mode
, NULL
);
1941 intel_panel_setup_backlight(connector
, INVALID_PIPE
);
1943 vlv_dsi_add_properties(intel_connector
);
1947 err_cleanup_connector
:
1948 drm_connector_cleanup(&intel_connector
->base
);
1950 drm_encoder_cleanup(&intel_encoder
->base
);
1952 kfree(intel_connector
);