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