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