blob: 9bbc1f4276cd86583f40255df120007710327988 [file] [log] [blame]
Jani Nikula4e646492013-08-27 15:12:20 +03001/*
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>
Matt Roperc6f95f22015-01-22 16:50:32 -080027#include <drm/drm_atomic_helper.h>
Jani Nikula4e646492013-08-27 15:12:20 +030028#include <drm/drm_crtc.h>
29#include <drm/drm_edid.h>
30#include <drm/i915_drm.h>
Jani Nikula593e0622015-01-23 15:30:56 +020031#include <drm/drm_panel.h>
Jani Nikula7e9804f2015-01-16 14:27:23 +020032#include <drm/drm_mipi_dsi.h>
Jani Nikula4e646492013-08-27 15:12:20 +030033#include <linux/slab.h>
Shobhit Kumarfc45e822015-06-26 14:32:09 +053034#include <linux/gpio/consumer.h>
Jani Nikula4e646492013-08-27 15:12:20 +030035#include "i915_drv.h"
36#include "intel_drv.h"
37#include "intel_dsi.h"
Jani Nikula4e646492013-08-27 15:12:20 +030038
Jani Nikula593e0622015-01-23 15:30:56 +020039static const struct {
40 u16 panel_id;
41 struct drm_panel * (*init)(struct intel_dsi *intel_dsi, u16 panel_id);
42} intel_dsi_drivers[] = {
Shobhit Kumar2ab8b452014-05-23 21:35:27 +053043 {
44 .panel_id = MIPI_DSI_GENERIC_PANEL_ID,
Jani Nikula593e0622015-01-23 15:30:56 +020045 .init = vbt_panel_init,
Shobhit Kumar2ab8b452014-05-23 21:35:27 +053046 },
Jani Nikula4e646492013-08-27 15:12:20 +030047};
48
Ramalingam C042ab0c2016-04-19 13:48:14 +053049/* 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
Ramalingam Ccefc4e12016-04-19 13:48:13 +053057/* 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
Ramalingam C43367ec2016-04-07 14:36:06 +053065enum 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
Jani Nikula7f6a6a42015-01-16 14:27:19 +020083static void wait_for_dsi_fifo_empty(struct intel_dsi *intel_dsi, enum port port)
Jani Nikula3b1808b2015-01-16 14:27:18 +020084{
85 struct drm_encoder *encoder = &intel_dsi->base.base;
86 struct drm_device *dev = encoder->dev;
87 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula3b1808b2015-01-16 14:27:18 +020088 u32 mask;
89
90 mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY |
91 LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY;
92
Chris Wilson9b6a2d72016-06-30 15:33:13 +010093 if (intel_wait_for_register(dev_priv,
94 MIPI_GEN_FIFO_STAT(port), mask, mask,
95 100))
Jani Nikula3b1808b2015-01-16 14:27:18 +020096 DRM_ERROR("DPI FIFOs are not empty\n");
97}
98
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020099static void write_data(struct drm_i915_private *dev_priv,
100 i915_reg_t reg,
Jani Nikula7e9804f2015-01-16 14:27:23 +0200101 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
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200115static void read_data(struct drm_i915_private *dev_priv,
116 i915_reg_t reg,
Jani Nikula7e9804f2015-01-16 14:27:23 +0200117 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;
134 struct drm_i915_private *dev_priv = dev->dev_private;
135 enum port port = intel_dsi_host->port;
136 struct mipi_dsi_packet packet;
137 ssize_t ret;
138 const u8 *header, *data;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200139 i915_reg_t data_reg, ctrl_reg;
140 u32 data_mask, ctrl_mask;
Jani Nikula7e9804f2015-01-16 14:27:23 +0200141
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) {
Chris Wilson8c6cea02016-06-30 15:33:14 +0100163 if (intel_wait_for_register(dev_priv,
164 MIPI_GEN_FIFO_STAT(port),
165 data_mask, 0,
166 50))
Jani Nikula7e9804f2015-01-16 14:27:23 +0200167 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
177 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & ctrl_mask) == 0, 50)) {
178 DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
179 }
180
181 I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]);
182
183 /* ->rx_len is set only for reads */
184 if (msg->rx_len) {
185 data_mask = GEN_READ_DATA_AVAIL;
186 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50))
187 DRM_ERROR("Timeout waiting for read data.\n");
188
189 read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
190 }
191
192 /* XXX: fix for reads and writes */
193 return 4 + packet.payload_length;
194}
195
196static int intel_dsi_host_attach(struct mipi_dsi_host *host,
197 struct mipi_dsi_device *dsi)
198{
199 return 0;
200}
201
202static int intel_dsi_host_detach(struct mipi_dsi_host *host,
203 struct mipi_dsi_device *dsi)
204{
205 return 0;
206}
207
208static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
209 .attach = intel_dsi_host_attach,
210 .detach = intel_dsi_host_detach,
211 .transfer = intel_dsi_host_transfer,
212};
213
214static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
215 enum port port)
216{
217 struct intel_dsi_host *host;
218 struct mipi_dsi_device *device;
219
220 host = kzalloc(sizeof(*host), GFP_KERNEL);
221 if (!host)
222 return NULL;
223
224 host->base.ops = &intel_dsi_host_ops;
225 host->intel_dsi = intel_dsi;
226 host->port = port;
227
228 /*
229 * We should call mipi_dsi_host_register(&host->base) here, but we don't
230 * have a host->dev, and we don't have OF stuff either. So just use the
231 * dsi framework as a library and hope for the best. Create the dsi
232 * devices by ourselves here too. Need to be careful though, because we
233 * don't initialize any of the driver model devices here.
234 */
235 device = kzalloc(sizeof(*device), GFP_KERNEL);
236 if (!device) {
237 kfree(host);
238 return NULL;
239 }
240
241 device->host = &host->base;
242 host->device = device;
243
244 return host;
245}
246
Jani Nikulaa2581a92015-01-16 14:27:26 +0200247/*
248 * send a video mode command
249 *
250 * XXX: commands with data in MIPI_DPI_DATA?
251 */
252static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
253 enum port port)
254{
255 struct drm_encoder *encoder = &intel_dsi->base.base;
256 struct drm_device *dev = encoder->dev;
257 struct drm_i915_private *dev_priv = dev->dev_private;
258 u32 mask;
259
260 /* XXX: pipe, hs */
261 if (hs)
262 cmd &= ~DPI_LP_MODE;
263 else
264 cmd |= DPI_LP_MODE;
265
266 /* clear bit */
267 I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
268
269 /* XXX: old code skips write if control unchanged */
270 if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
271 DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
272
273 I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
274
275 mask = SPL_PKT_SENT_INTERRUPT;
276 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100))
277 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
278
279 return 0;
280}
281
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530282static void band_gap_reset(struct drm_i915_private *dev_priv)
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300283{
Ville Syrjäläa5805162015-05-26 20:42:30 +0300284 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300285
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530286 vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
287 vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
288 vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
289 udelay(150);
290 vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
291 vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300292
Ville Syrjäläa5805162015-05-26 20:42:30 +0300293 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300294}
295
Jani Nikula4e646492013-08-27 15:12:20 +0300296static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
297{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530298 return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300299}
300
301static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
302{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530303 return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300304}
305
Jani Nikula4e646492013-08-27 15:12:20 +0300306static bool intel_dsi_compute_config(struct intel_encoder *encoder,
Jani Nikulaa65347b2015-11-27 12:21:46 +0200307 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300308{
Jani Nikula4d1de972016-03-18 17:05:42 +0200309 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300310 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
311 base);
312 struct intel_connector *intel_connector = intel_dsi->attached_connector;
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300313 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
314 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Jani Nikulaa65347b2015-11-27 12:21:46 +0200315 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300316 int ret;
Jani Nikula4e646492013-08-27 15:12:20 +0300317
318 DRM_DEBUG_KMS("\n");
319
Jani Nikulaa65347b2015-11-27 12:21:46 +0200320 pipe_config->has_dsi_encoder = true;
321
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300322 if (fixed_mode) {
Jani Nikula4e646492013-08-27 15:12:20 +0300323 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
324
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300325 if (HAS_GMCH_DISPLAY(dev_priv))
326 intel_gmch_panel_fitting(crtc, pipe_config,
327 intel_connector->panel.fitting_mode);
328 else
329 intel_pch_panel_fitting(crtc, pipe_config,
330 intel_connector->panel.fitting_mode);
331 }
332
Shobhit Kumarf573de52014-07-30 20:32:37 +0530333 /* DSI uses short packets for sync events, so clear mode flags for DSI */
334 adjusted_mode->flags = 0;
335
Jani Nikula4d1de972016-03-18 17:05:42 +0200336 if (IS_BROXTON(dev_priv)) {
337 /* Dual link goes to DSI transcoder A. */
338 if (intel_dsi->ports == BIT(PORT_C))
339 pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
340 else
341 pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
342 }
343
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300344 ret = intel_compute_dsi_pll(encoder, pipe_config);
345 if (ret)
346 return false;
347
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300348 pipe_config->clock_set = true;
349
Jani Nikula4e646492013-08-27 15:12:20 +0300350 return true;
351}
352
Shashank Sharma37ab0812015-09-01 19:41:42 +0530353static void bxt_dsi_device_ready(struct intel_encoder *encoder)
Gaurav K Singh5505a242014-12-04 10:58:47 +0530354{
Shashank Sharma37ab0812015-09-01 19:41:42 +0530355 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530356 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530357 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530358 u32 val;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530359
Shashank Sharma37ab0812015-09-01 19:41:42 +0530360 DRM_DEBUG_KMS("\n");
Gaurav K Singha9da9bc2014-12-05 14:13:41 +0530361
Shashank Sharma37ab0812015-09-01 19:41:42 +0530362 /* Exit Low power state in 4 steps*/
Gaurav K Singh369602d2014-12-05 14:09:28 +0530363 for_each_dsi_port(port, intel_dsi->ports) {
Gaurav K Singh369602d2014-12-05 14:09:28 +0530364
Shashank Sharma37ab0812015-09-01 19:41:42 +0530365 /* 1. Enable MIPI PHY transparent latch */
366 val = I915_READ(BXT_MIPI_PORT_CTRL(port));
367 I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
368 usleep_range(2000, 2500);
369
370 /* 2. Enter ULPS */
371 val = I915_READ(MIPI_DEVICE_READY(port));
372 val &= ~ULPS_STATE_MASK;
373 val |= (ULPS_STATE_ENTER | DEVICE_READY);
374 I915_WRITE(MIPI_DEVICE_READY(port), val);
375 usleep_range(2, 3);
376
377 /* 3. Exit ULPS */
378 val = I915_READ(MIPI_DEVICE_READY(port));
379 val &= ~ULPS_STATE_MASK;
380 val |= (ULPS_STATE_EXIT | DEVICE_READY);
381 I915_WRITE(MIPI_DEVICE_READY(port), val);
382 usleep_range(1000, 1500);
383
384 /* Clear ULPS and set device ready */
385 val = I915_READ(MIPI_DEVICE_READY(port));
386 val &= ~ULPS_STATE_MASK;
387 val |= DEVICE_READY;
388 I915_WRITE(MIPI_DEVICE_READY(port), val);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530389 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530390}
391
Shashank Sharma37ab0812015-09-01 19:41:42 +0530392static void vlv_dsi_device_ready(struct intel_encoder *encoder)
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530393{
394 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530395 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
396 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530397 u32 val;
398
399 DRM_DEBUG_KMS("\n");
400
Ville Syrjäläa5805162015-05-26 20:42:30 +0300401 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530402 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
403 * needed everytime after power gate */
404 vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300405 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530406
407 /* bandgap reset is needed after everytime we do power gate */
408 band_gap_reset(dev_priv);
409
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530410 for_each_dsi_port(port, intel_dsi->ports) {
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530411
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530412 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
413 usleep_range(2500, 3000);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530414
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530415 /* Enable MIPI PHY transparent latch
416 * Common bit for both MIPI Port A & MIPI Port C
417 * No similar bit in MIPI Port C reg
418 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530419 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530420 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530421 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530422
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530423 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
424 usleep_range(2500, 3000);
425
426 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
427 usleep_range(2500, 3000);
428 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530429}
Jani Nikula4e646492013-08-27 15:12:20 +0300430
Shashank Sharma37ab0812015-09-01 19:41:42 +0530431static void intel_dsi_device_ready(struct intel_encoder *encoder)
432{
433 struct drm_device *dev = encoder->base.dev;
434
Wayne Boyer666a4532015-12-09 12:29:35 -0800435 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Shashank Sharma37ab0812015-09-01 19:41:42 +0530436 vlv_dsi_device_ready(encoder);
437 else if (IS_BROXTON(dev))
438 bxt_dsi_device_ready(encoder);
439}
440
441static void intel_dsi_port_enable(struct intel_encoder *encoder)
442{
443 struct drm_device *dev = encoder->base.dev;
444 struct drm_i915_private *dev_priv = dev->dev_private;
445 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
446 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
447 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530448
449 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200450 u32 temp;
451
Shashank Sharma37ab0812015-09-01 19:41:42 +0530452 temp = I915_READ(VLV_CHICKEN_3);
453 temp &= ~PIXEL_OVERLAP_CNT_MASK |
454 intel_dsi->pixel_overlap <<
455 PIXEL_OVERLAP_CNT_SHIFT;
456 I915_WRITE(VLV_CHICKEN_3, temp);
457 }
458
459 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200460 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
461 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
462 u32 temp;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530463
464 temp = I915_READ(port_ctrl);
465
466 temp &= ~LANE_CONFIGURATION_MASK;
467 temp &= ~DUAL_LINK_MODE_MASK;
468
Jani Nikula701d25b2016-03-18 17:05:43 +0200469 if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530470 temp |= (intel_dsi->dual_link - 1)
471 << DUAL_LINK_MODE_SHIFT;
472 temp |= intel_crtc->pipe ?
473 LANE_CONFIGURATION_DUAL_LINK_B :
474 LANE_CONFIGURATION_DUAL_LINK_A;
475 }
476 /* assert ip_tg_enable signal */
477 I915_WRITE(port_ctrl, temp | DPI_ENABLE);
478 POSTING_READ(port_ctrl);
479 }
480}
481
482static void intel_dsi_port_disable(struct intel_encoder *encoder)
483{
484 struct drm_device *dev = encoder->base.dev;
485 struct drm_i915_private *dev_priv = dev->dev_private;
486 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
487 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530488
489 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200490 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
491 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
492 u32 temp;
493
Shashank Sharma37ab0812015-09-01 19:41:42 +0530494 /* de-assert ip_tg_enable signal */
Shashank Sharmab389a452015-09-01 19:41:44 +0530495 temp = I915_READ(port_ctrl);
496 I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
497 POSTING_READ(port_ctrl);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530498 }
499}
500
Jani Nikula4e646492013-08-27 15:12:20 +0300501static void intel_dsi_enable(struct intel_encoder *encoder)
502{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530503 struct drm_device *dev = encoder->base.dev;
504 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300505 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikula4934b652015-01-22 15:01:35 +0200506 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300507
508 DRM_DEBUG_KMS("\n");
509
Jani Nikula4934b652015-01-22 15:01:35 +0200510 if (is_cmd_mode(intel_dsi)) {
511 for_each_dsi_port(port, intel_dsi->ports)
512 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
513 } else {
Jani Nikula4e646492013-08-27 15:12:20 +0300514 msleep(20); /* XXX */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200515 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200516 dpi_send_cmd(intel_dsi, TURN_ON, false, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300517 msleep(100);
518
Jani Nikula593e0622015-01-23 15:30:56 +0200519 drm_panel_enable(intel_dsi->panel);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530520
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200521 for_each_dsi_port(port, intel_dsi->ports)
522 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530523
Gaurav K Singh5505a242014-12-04 10:58:47 +0530524 intel_dsi_port_enable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300525 }
Shobhit Kumarb029e662015-06-26 14:32:10 +0530526
527 intel_panel_enable_backlight(intel_dsi->attached_connector);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530528}
Jani Nikula4e646492013-08-27 15:12:20 +0300529
Jani Nikulae3488e72015-11-27 12:21:44 +0200530static void intel_dsi_prepare(struct intel_encoder *intel_encoder);
531
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530532static void intel_dsi_pre_enable(struct intel_encoder *encoder)
533{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530534 struct drm_device *dev = encoder->base.dev;
535 struct drm_i915_private *dev_priv = dev->dev_private;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530536 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300537 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200538 enum port port;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530539
540 DRM_DEBUG_KMS("\n");
541
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200542 /*
543 * The BIOS may leave the PLL in a wonky state where it doesn't
544 * lock. It needs to be fully powered down to fix it.
545 */
546 intel_disable_dsi_pll(encoder);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300547 intel_enable_dsi_pll(encoder, crtc->config);
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200548
Ramalingam C58d4d322016-02-03 18:20:46 +0530549 intel_dsi_prepare(encoder);
Jani Nikulae3488e72015-11-27 12:21:44 +0200550
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530551 /* Panel Enable over CRC PMIC */
552 if (intel_dsi->gpio_panel)
553 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
554
555 msleep(intel_dsi->panel_on_delay);
556
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300557 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
558 u32 val;
559
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300560 /* Disable DPOunit clock gating, can stall pipe */
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300561 val = I915_READ(DSPCLK_GATE_D);
562 val |= DPOUNIT_CLOCK_GATE_DISABLE;
563 I915_WRITE(DSPCLK_GATE_D, val);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530564 }
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530565
566 /* put device in ready state */
567 intel_dsi_device_ready(encoder);
568
Jani Nikula593e0622015-01-23 15:30:56 +0200569 drm_panel_prepare(intel_dsi->panel);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530570
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200571 for_each_dsi_port(port, intel_dsi->ports)
572 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530573
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530574 /* Enable port in pre-enable phase itself because as per hw team
575 * recommendation, port should be enabled befor plane & pipe */
576 intel_dsi_enable(encoder);
577}
578
579static void intel_dsi_enable_nop(struct intel_encoder *encoder)
580{
581 DRM_DEBUG_KMS("\n");
582
583 /* for DSI port enable has to be done before pipe
584 * and plane enable, so port enable is done in
585 * pre_enable phase itself unlike other encoders
586 */
Jani Nikula4e646492013-08-27 15:12:20 +0300587}
588
Imre Deakc315faf2014-05-27 19:00:09 +0300589static void intel_dsi_pre_disable(struct intel_encoder *encoder)
590{
591 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulaf03e4172015-01-16 14:27:16 +0200592 enum port port;
Imre Deakc315faf2014-05-27 19:00:09 +0300593
594 DRM_DEBUG_KMS("\n");
595
Shobhit Kumarb029e662015-06-26 14:32:10 +0530596 intel_panel_disable_backlight(intel_dsi->attached_connector);
597
Imre Deakc315faf2014-05-27 19:00:09 +0300598 if (is_vid_mode(intel_dsi)) {
599 /* Send Shutdown command to the panel in LP mode */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200600 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200601 dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
Imre Deakc315faf2014-05-27 19:00:09 +0300602 msleep(10);
603 }
604}
605
Jani Nikula4e646492013-08-27 15:12:20 +0300606static void intel_dsi_disable(struct intel_encoder *encoder)
607{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530608 struct drm_device *dev = encoder->base.dev;
609 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300610 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530611 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300612 u32 temp;
613
614 DRM_DEBUG_KMS("\n");
615
Jani Nikula4e646492013-08-27 15:12:20 +0300616 if (is_vid_mode(intel_dsi)) {
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200617 for_each_dsi_port(port, intel_dsi->ports)
618 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530619
Gaurav K Singh5505a242014-12-04 10:58:47 +0530620 intel_dsi_port_disable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300621 msleep(2);
622 }
623
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530624 for_each_dsi_port(port, intel_dsi->ports) {
625 /* Panel commands can be sent when clock is in LP11 */
626 I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530627
Shashank Sharmab389a452015-09-01 19:41:44 +0530628 intel_dsi_reset_clocks(encoder, port);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530629 I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530630
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530631 temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
632 temp &= ~VID_MODE_FORMAT_MASK;
633 I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530634
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530635 I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
636 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530637 /* if disable packets are sent before sending shutdown packet then in
638 * some next enable sequence send turn on packet error is observed */
Jani Nikula593e0622015-01-23 15:30:56 +0200639 drm_panel_disable(intel_dsi->panel);
Shobhit Kumar13813082014-07-12 17:17:22 +0530640
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200641 for_each_dsi_port(port, intel_dsi->ports)
642 wait_for_dsi_fifo_empty(intel_dsi, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300643}
644
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530645static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300646{
Shashank Sharmab389a452015-09-01 19:41:44 +0530647 struct drm_device *dev = encoder->base.dev;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530648 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530649 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
650 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530651
Jani Nikula4e646492013-08-27 15:12:20 +0300652 DRM_DEBUG_KMS("\n");
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530653 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200654 /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
655 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
656 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
657 u32 val;
ymohanmabe4fc042013-08-27 23:40:56 +0300658
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530659 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
660 ULPS_STATE_ENTER);
661 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530662
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530663 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
664 ULPS_STATE_EXIT);
665 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530666
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530667 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
668 ULPS_STATE_ENTER);
669 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530670
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530671 /* Wait till Clock lanes are in LP-00 state for MIPI Port A
672 * only. MIPI Port C has no similar bit for checking
673 */
Shashank Sharmab389a452015-09-01 19:41:44 +0530674 if (wait_for(((I915_READ(port_ctrl) & AFE_LATCHOUT)
675 == 0x00000), 30))
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530676 DRM_ERROR("DSI LP not going Low\n");
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530677
Shashank Sharmab389a452015-09-01 19:41:44 +0530678 /* Disable MIPI PHY transparent latch */
679 val = I915_READ(port_ctrl);
680 I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530681 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530682
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530683 I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
684 usleep_range(2000, 2500);
685 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530686
Shashank Sharmafe88fc62015-09-01 19:41:39 +0530687 intel_disable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300688}
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530689
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530690static void intel_dsi_post_disable(struct intel_encoder *encoder)
691{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530692 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530693 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
694
695 DRM_DEBUG_KMS("\n");
696
Imre Deakc315faf2014-05-27 19:00:09 +0300697 intel_dsi_disable(encoder);
698
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530699 intel_dsi_clear_device_ready(encoder);
700
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300701 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Uma Shankard6e3af52016-02-18 13:49:26 +0200702 u32 val;
703
704 val = I915_READ(DSPCLK_GATE_D);
705 val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
706 I915_WRITE(DSPCLK_GATE_D, val);
707 }
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530708
Jani Nikula593e0622015-01-23 15:30:56 +0200709 drm_panel_unprepare(intel_dsi->panel);
Shobhit Kumardf38e652014-04-14 11:18:26 +0530710
711 msleep(intel_dsi->panel_off_delay);
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530712
713 /* Panel Disable over CRC PMIC */
714 if (intel_dsi->gpio_panel)
715 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
Ville Syrjälä1d5c65e2016-04-18 19:17:51 +0300716
717 /*
718 * FIXME As we do with eDP, just make a note of the time here
719 * and perform the wait before the next panel power on.
720 */
721 msleep(intel_dsi->panel_pwr_cycle_delay);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530722}
Jani Nikula4e646492013-08-27 15:12:20 +0300723
724static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
725 enum pipe *pipe)
726{
727 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530728 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
729 struct drm_device *dev = encoder->base.dev;
Imre Deak6d129be2014-03-05 16:20:54 +0200730 enum intel_display_power_domain power_domain;
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200731 enum port port;
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200732 bool active = false;
Jani Nikula4e646492013-08-27 15:12:20 +0300733
734 DRM_DEBUG_KMS("\n");
735
Imre Deak6d129be2014-03-05 16:20:54 +0200736 power_domain = intel_display_port_power_domain(encoder);
Imre Deak3f3f42b2016-02-12 18:55:19 +0200737 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200738 return false;
739
Imre Deakdb18b6a2016-03-24 12:41:40 +0200740 /*
741 * On Broxton the PLL needs to be enabled with a valid divider
742 * configuration, otherwise accessing DSI registers will hang the
743 * machine. See BSpec North Display Engine registers/MIPI[BXT].
744 */
745 if (IS_BROXTON(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
746 goto out_put_power;
747
Jani Nikula4e646492013-08-27 15:12:20 +0300748 /* XXX: this only works for one DSI output */
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530749 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200750 i915_reg_t ctrl_reg = IS_BROXTON(dev) ?
751 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200752 bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
Jani Nikula4e646492013-08-27 15:12:20 +0300753
Jani Nikulae6f57782016-04-15 15:47:31 +0300754 /*
755 * Due to some hardware limitations on VLV/CHV, the DPI enable
756 * bit in port C control register does not get set. As a
757 * workaround, check pipe B conf instead.
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530758 */
Jani Nikulae6f57782016-04-15 15:47:31 +0300759 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && port == PORT_C)
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200760 enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530761
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200762 /* Try command mode if video mode not enabled */
763 if (!enabled) {
764 u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
765 enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
Jani Nikula4e646492013-08-27 15:12:20 +0300766 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200767
768 if (!enabled)
769 continue;
770
771 if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
772 continue;
773
Jani Nikula6b93e9c2016-03-15 21:51:12 +0200774 if (IS_BROXTON(dev_priv)) {
775 u32 tmp = I915_READ(MIPI_CTRL(port));
776 tmp &= BXT_PIPE_SELECT_MASK;
777 tmp >>= BXT_PIPE_SELECT_SHIFT;
778
779 if (WARN_ON(tmp > PIPE_C))
780 continue;
781
782 *pipe = tmp;
783 } else {
784 *pipe = port == PORT_A ? PIPE_A : PIPE_B;
785 }
786
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200787 active = true;
788 break;
Jani Nikula4e646492013-08-27 15:12:20 +0300789 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200790
Imre Deakdb18b6a2016-03-24 12:41:40 +0200791out_put_power:
Imre Deak3f3f42b2016-02-12 18:55:19 +0200792 intel_display_power_put(dev_priv, power_domain);
Jani Nikula4e646492013-08-27 15:12:20 +0300793
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200794 return active;
Jani Nikula4e646492013-08-27 15:12:20 +0300795}
796
Ramalingam C6f0e7532016-04-07 14:36:07 +0530797static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
798 struct intel_crtc_state *pipe_config)
799{
800 struct drm_device *dev = encoder->base.dev;
801 struct drm_i915_private *dev_priv = dev->dev_private;
802 struct drm_display_mode *adjusted_mode =
803 &pipe_config->base.adjusted_mode;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530804 struct drm_display_mode *adjusted_mode_sw;
805 struct intel_crtc *intel_crtc;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530806 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530807 unsigned int lane_count = intel_dsi->lane_count;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530808 unsigned int bpp, fmt;
809 enum port port;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530810 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530811 u16 hfp_sw, hsync_sw, hbp_sw;
812 u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
813 crtc_hblank_start_sw, crtc_hblank_end_sw;
814
815 intel_crtc = to_intel_crtc(encoder->base.crtc);
816 adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530817
818 /*
819 * Atleast one port is active as encoder->get_config called only if
820 * encoder->get_hw_state() returns true.
821 */
822 for_each_dsi_port(port, intel_dsi->ports) {
823 if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
824 break;
825 }
826
827 fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
828 pipe_config->pipe_bpp =
829 mipi_dsi_pixel_format_to_bpp(
830 pixel_format_from_register_bits(fmt));
831 bpp = pipe_config->pipe_bpp;
832
833 /* In terms of pixels */
834 adjusted_mode->crtc_hdisplay =
835 I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
836 adjusted_mode->crtc_vdisplay =
837 I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
838 adjusted_mode->crtc_vtotal =
839 I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
840
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530841 hactive = adjusted_mode->crtc_hdisplay;
842 hfp = I915_READ(MIPI_HFP_COUNT(port));
843
Ramalingam C6f0e7532016-04-07 14:36:07 +0530844 /*
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530845 * Meaningful for video mode non-burst sync pulse mode only,
846 * can be zero for non-burst sync events and burst modes
Ramalingam C6f0e7532016-04-07 14:36:07 +0530847 */
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530848 hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
849 hbp = I915_READ(MIPI_HBP_COUNT(port));
850
851 /* harizontal values are in terms of high speed byte clock */
852 hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
853 intel_dsi->burst_mode_ratio);
854 hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
855 intel_dsi->burst_mode_ratio);
856 hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
857 intel_dsi->burst_mode_ratio);
858
859 if (intel_dsi->dual_link) {
860 hfp *= 2;
861 hsync *= 2;
862 hbp *= 2;
863 }
Ramalingam C6f0e7532016-04-07 14:36:07 +0530864
865 /* vertical values are in terms of lines */
866 vfp = I915_READ(MIPI_VFP_COUNT(port));
867 vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
868 vbp = I915_READ(MIPI_VBP_COUNT(port));
869
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530870 adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
871 adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
872 adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530873 adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530874 adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530875
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530876 adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
877 adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530878 adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
879 adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530880
Ramalingam C042ab0c2016-04-19 13:48:14 +0530881 /*
882 * In BXT DSI there is no regs programmed with few horizontal timings
883 * in Pixels but txbyteclkhs.. So retrieval process adds some
884 * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
885 * Actually here for the given adjusted_mode, we are calculating the
886 * value programmed to the port and then back to the horizontal timing
887 * param in pixels. This is the expected value, including roundup errors
888 * And if that is same as retrieved value from port, then
889 * (HW state) adjusted_mode's horizontal timings are corrected to
890 * match with SW state to nullify the errors.
891 */
892 /* Calculating the value programmed to the Port register */
893 hfp_sw = adjusted_mode_sw->crtc_hsync_start -
894 adjusted_mode_sw->crtc_hdisplay;
895 hsync_sw = adjusted_mode_sw->crtc_hsync_end -
896 adjusted_mode_sw->crtc_hsync_start;
897 hbp_sw = adjusted_mode_sw->crtc_htotal -
898 adjusted_mode_sw->crtc_hsync_end;
899
900 if (intel_dsi->dual_link) {
901 hfp_sw /= 2;
902 hsync_sw /= 2;
903 hbp_sw /= 2;
904 }
905
906 hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
907 intel_dsi->burst_mode_ratio);
908 hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
909 intel_dsi->burst_mode_ratio);
910 hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
911 intel_dsi->burst_mode_ratio);
912
913 /* Reverse calculating the adjusted mode parameters from port reg vals*/
914 hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
915 intel_dsi->burst_mode_ratio);
916 hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
917 intel_dsi->burst_mode_ratio);
918 hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
919 intel_dsi->burst_mode_ratio);
920
921 if (intel_dsi->dual_link) {
922 hfp_sw *= 2;
923 hsync_sw *= 2;
924 hbp_sw *= 2;
925 }
926
927 crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
928 hsync_sw + hbp_sw;
929 crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
930 crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
931 crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
932 crtc_hblank_end_sw = crtc_htotal_sw;
933
934 if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
935 adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
936
937 if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
938 adjusted_mode->crtc_hsync_start =
939 adjusted_mode_sw->crtc_hsync_start;
940
941 if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
942 adjusted_mode->crtc_hsync_end =
943 adjusted_mode_sw->crtc_hsync_end;
944
945 if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
946 adjusted_mode->crtc_hblank_start =
947 adjusted_mode_sw->crtc_hblank_start;
948
949 if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
950 adjusted_mode->crtc_hblank_end =
951 adjusted_mode_sw->crtc_hblank_end;
952}
Ramalingam C6f0e7532016-04-07 14:36:07 +0530953
Jani Nikula4e646492013-08-27 15:12:20 +0300954static void intel_dsi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200955 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300956{
Ramalingam C6f0e7532016-04-07 14:36:07 +0530957 struct drm_device *dev = encoder->base.dev;
Jani Nikulad7d85d82016-01-08 12:45:39 +0200958 u32 pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300959 DRM_DEBUG_KMS("\n");
960
Jani Nikulaa65347b2015-11-27 12:21:46 +0200961 pipe_config->has_dsi_encoder = true;
962
Ramalingam C6f0e7532016-04-07 14:36:07 +0530963 if (IS_BROXTON(dev))
964 bxt_dsi_get_pipe_config(encoder, pipe_config);
965
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300966 pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
967 pipe_config);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530968 if (!pclk)
969 return;
970
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200971 pipe_config->base.adjusted_mode.crtc_clock = pclk;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530972 pipe_config->port_clock = pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300973}
974
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000975static enum drm_mode_status
976intel_dsi_mode_valid(struct drm_connector *connector,
977 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +0300978{
979 struct intel_connector *intel_connector = to_intel_connector(connector);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300980 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Mika Kahola759a1e92015-08-18 14:37:01 +0300981 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Jani Nikula4e646492013-08-27 15:12:20 +0300982
983 DRM_DEBUG_KMS("\n");
984
985 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
986 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
987 return MODE_NO_DBLESCAN;
988 }
989
990 if (fixed_mode) {
991 if (mode->hdisplay > fixed_mode->hdisplay)
992 return MODE_PANEL;
993 if (mode->vdisplay > fixed_mode->vdisplay)
994 return MODE_PANEL;
Mika Kahola759a1e92015-08-18 14:37:01 +0300995 if (fixed_mode->clock > max_dotclk)
996 return MODE_CLOCK_HIGH;
Jani Nikula4e646492013-08-27 15:12:20 +0300997 }
998
Jani Nikula36d21f42015-01-16 14:27:20 +0200999 return MODE_OK;
Jani Nikula4e646492013-08-27 15:12:20 +03001000}
1001
1002/* return txclkesc cycles in terms of divider and duration in us */
1003static u16 txclkesc(u32 divider, unsigned int us)
1004{
1005 switch (divider) {
1006 case ESCAPE_CLOCK_DIVIDER_1:
1007 default:
1008 return 20 * us;
1009 case ESCAPE_CLOCK_DIVIDER_2:
1010 return 10 * us;
1011 case ESCAPE_CLOCK_DIVIDER_4:
1012 return 5 * us;
1013 }
1014}
1015
Jani Nikula4e646492013-08-27 15:12:20 +03001016static void set_dsi_timings(struct drm_encoder *encoder,
Ville Syrjälä5e7234c2015-09-25 16:37:43 +03001017 const struct drm_display_mode *adjusted_mode)
Jani Nikula4e646492013-08-27 15:12:20 +03001018{
1019 struct drm_device *dev = encoder->dev;
1020 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +03001021 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301022 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001023 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001024 unsigned int lane_count = intel_dsi->lane_count;
1025
1026 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
1027
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001028 hactive = adjusted_mode->crtc_hdisplay;
1029 hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
1030 hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
1031 hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001032
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301033 if (intel_dsi->dual_link) {
1034 hactive /= 2;
1035 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1036 hactive += intel_dsi->pixel_overlap;
1037 hfp /= 2;
1038 hsync /= 2;
1039 hbp /= 2;
1040 }
1041
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001042 vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
1043 vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
1044 vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001045
1046 /* horizontal values are in terms of high speed byte clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301047 hactive = txbyteclkhs(hactive, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001048 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301049 hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
1050 hsync = txbyteclkhs(hsync, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001051 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301052 hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
Jani Nikula4e646492013-08-27 15:12:20 +03001053
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301054 for_each_dsi_port(port, intel_dsi->ports) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301055 if (IS_BROXTON(dev)) {
1056 /*
1057 * Program hdisplay and vdisplay on MIPI transcoder.
1058 * This is different from calculated hactive and
1059 * vactive, as they are calculated per channel basis,
1060 * whereas these values should be based on resolution.
1061 */
1062 I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001063 adjusted_mode->crtc_hdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301064 I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001065 adjusted_mode->crtc_vdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301066 I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001067 adjusted_mode->crtc_vtotal);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301068 }
1069
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301070 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
1071 I915_WRITE(MIPI_HFP_COUNT(port), hfp);
Jani Nikula4e646492013-08-27 15:12:20 +03001072
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301073 /* meaningful for video mode non-burst sync pulse mode only,
1074 * can be zero for non-burst sync events and burst modes */
1075 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
1076 I915_WRITE(MIPI_HBP_COUNT(port), hbp);
Jani Nikula4e646492013-08-27 15:12:20 +03001077
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301078 /* vertical values are in terms of lines */
1079 I915_WRITE(MIPI_VFP_COUNT(port), vfp);
1080 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
1081 I915_WRITE(MIPI_VBP_COUNT(port), vbp);
1082 }
Jani Nikula4e646492013-08-27 15:12:20 +03001083}
1084
Jani Nikula1e78aa02016-03-16 12:21:40 +02001085static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
1086{
1087 switch (fmt) {
1088 case MIPI_DSI_FMT_RGB888:
1089 return VID_MODE_FORMAT_RGB888;
1090 case MIPI_DSI_FMT_RGB666:
1091 return VID_MODE_FORMAT_RGB666;
1092 case MIPI_DSI_FMT_RGB666_PACKED:
1093 return VID_MODE_FORMAT_RGB666_PACKED;
1094 case MIPI_DSI_FMT_RGB565:
1095 return VID_MODE_FORMAT_RGB565;
1096 default:
1097 MISSING_CASE(fmt);
1098 return VID_MODE_FORMAT_RGB666;
1099 }
1100}
1101
Daniel Vetter07e4fb92014-04-24 23:54:59 +02001102static void intel_dsi_prepare(struct intel_encoder *intel_encoder)
Jani Nikula4e646492013-08-27 15:12:20 +03001103{
1104 struct drm_encoder *encoder = &intel_encoder->base;
1105 struct drm_device *dev = encoder->dev;
1106 struct drm_i915_private *dev_priv = dev->dev_private;
1107 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
1108 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001109 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301110 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001111 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001112 u32 val, tmp;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301113 u16 mode_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001114
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001115 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
Jani Nikula4e646492013-08-27 15:12:20 +03001116
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001117 mode_hdisplay = adjusted_mode->crtc_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001118
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301119 if (intel_dsi->dual_link) {
1120 mode_hdisplay /= 2;
1121 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1122 mode_hdisplay += intel_dsi->pixel_overlap;
1123 }
Jani Nikula4e646492013-08-27 15:12:20 +03001124
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301125 for_each_dsi_port(port, intel_dsi->ports) {
Wayne Boyer666a4532015-12-09 12:29:35 -08001126 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301127 /*
1128 * escape clock divider, 20MHz, shared for A and C.
1129 * device ready must be off when doing this! txclkesc?
1130 */
1131 tmp = I915_READ(MIPI_CTRL(PORT_A));
1132 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
1133 I915_WRITE(MIPI_CTRL(PORT_A), tmp |
1134 ESCAPE_CLOCK_DIVIDER_1);
Jani Nikula4e646492013-08-27 15:12:20 +03001135
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301136 /* read request priority is per pipe */
1137 tmp = I915_READ(MIPI_CTRL(port));
1138 tmp &= ~READ_REQUEST_PRIORITY_MASK;
1139 I915_WRITE(MIPI_CTRL(port), tmp |
1140 READ_REQUEST_PRIORITY_HIGH);
1141 } else if (IS_BROXTON(dev)) {
Deepak M56c48972015-12-09 20:14:04 +05301142 enum pipe pipe = intel_crtc->pipe;
1143
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301144 tmp = I915_READ(MIPI_CTRL(port));
1145 tmp &= ~BXT_PIPE_SELECT_MASK;
1146
Deepak M56c48972015-12-09 20:14:04 +05301147 tmp |= BXT_PIPE_SELECT(pipe);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301148 I915_WRITE(MIPI_CTRL(port), tmp);
1149 }
Jani Nikula4e646492013-08-27 15:12:20 +03001150
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301151 /* XXX: why here, why like this? handling in irq handler?! */
1152 I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
1153 I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
1154
1155 I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
1156
1157 I915_WRITE(MIPI_DPI_RESOLUTION(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001158 adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301159 mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
1160 }
Jani Nikula4e646492013-08-27 15:12:20 +03001161
1162 set_dsi_timings(encoder, adjusted_mode);
1163
1164 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
1165 if (is_cmd_mode(intel_dsi)) {
1166 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
1167 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
1168 } else {
1169 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001170 val |= pixel_format_to_reg(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001171 }
Jani Nikula4e646492013-08-27 15:12:20 +03001172
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301173 tmp = 0;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301174 if (intel_dsi->eotp_pkt == 0)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301175 tmp |= EOT_DISABLE;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301176 if (intel_dsi->clock_stop)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301177 tmp |= CLOCKSTOP;
Jani Nikula4e646492013-08-27 15:12:20 +03001178
Jani Nikulaf90e8c32016-06-03 17:57:05 +03001179 if (IS_BROXTON(dev_priv)) {
1180 tmp |= BXT_DPHY_DEFEATURE_EN;
1181 if (!is_cmd_mode(intel_dsi))
1182 tmp |= BXT_DEFEATURE_DPI_FIFO_CTR;
1183 }
1184
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301185 for_each_dsi_port(port, intel_dsi->ports) {
1186 I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
Jani Nikula4e646492013-08-27 15:12:20 +03001187
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301188 /* timeouts for recovery. one frame IIUC. if counter expires,
1189 * EOT and stop state. */
Shobhit Kumarcf4dbd22014-04-14 11:18:25 +05301190
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301191 /*
1192 * In burst mode, value greater than one DPI line Time in byte
1193 * clock (txbyteclkhs) To timeout this timer 1+ of the above
1194 * said value is recommended.
1195 *
1196 * In non-burst mode, Value greater than one DPI frame time in
1197 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1198 * said value is recommended.
1199 *
1200 * In DBI only mode, value greater than one DBI frame time in
1201 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1202 * said value is recommended.
1203 */
Jani Nikula4e646492013-08-27 15:12:20 +03001204
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301205 if (is_vid_mode(intel_dsi) &&
1206 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
1207 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001208 txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001209 intel_dsi->lane_count,
1210 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301211 } else {
1212 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001213 txbyteclkhs(adjusted_mode->crtc_vtotal *
1214 adjusted_mode->crtc_htotal,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001215 bpp, intel_dsi->lane_count,
1216 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301217 }
1218 I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
1219 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
1220 intel_dsi->turn_arnd_val);
1221 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
1222 intel_dsi->rst_timer_val);
Jani Nikula4e646492013-08-27 15:12:20 +03001223
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301224 /* dphy stuff */
Jani Nikula4e646492013-08-27 15:12:20 +03001225
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301226 /* in terms of low power clock */
1227 I915_WRITE(MIPI_INIT_COUNT(port),
1228 txclkesc(intel_dsi->escape_clk_div, 100));
Jani Nikula4e646492013-08-27 15:12:20 +03001229
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301230 if (IS_BROXTON(dev) && (!intel_dsi->dual_link)) {
1231 /*
1232 * BXT spec says write MIPI_INIT_COUNT for
1233 * both the ports, even if only one is
1234 * getting used. So write the other port
1235 * if not in dual link mode.
1236 */
1237 I915_WRITE(MIPI_INIT_COUNT(port ==
1238 PORT_A ? PORT_C : PORT_A),
1239 intel_dsi->init_count);
1240 }
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301241
1242 /* recovery disables */
Shobhit Kumar87c54d02015-02-03 12:17:35 +05301243 I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301244
1245 /* in terms of low power clock */
1246 I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
1247
1248 /* in terms of txbyteclkhs. actual high to low switch +
1249 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
1250 *
1251 * XXX: write MIPI_STOP_STATE_STALL?
1252 */
1253 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
1254 intel_dsi->hs_to_lp_count);
1255
1256 /* XXX: low power clock equivalence in terms of byte clock.
1257 * the number of byte clocks occupied in one low power clock.
1258 * based on txbyteclkhs and txclkesc.
1259 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
1260 * ) / 105.???
1261 */
1262 I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
1263
1264 /* the bw essential for transmitting 16 long packets containing
1265 * 252 bytes meant for dcs write memory command is programmed in
1266 * this register in terms of byte clocks. based on dsi transfer
1267 * rate and the number of lanes configured the time taken to
1268 * transmit 16 long packets in a dsi stream varies. */
1269 I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
1270
1271 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
1272 intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
1273 intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
1274
1275 if (is_vid_mode(intel_dsi))
1276 /* Some panels might have resolution which is not a
1277 * multiple of 64 like 1366 x 768. Enable RANDOM
1278 * resolution support for such panels by default */
1279 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
1280 intel_dsi->video_frmt_cfg_bits |
1281 intel_dsi->video_mode_format |
1282 IP_TG_CONFIG |
1283 RANDOM_DPI_DISPLAY_RESOLUTION);
1284 }
Jani Nikula4e646492013-08-27 15:12:20 +03001285}
1286
1287static enum drm_connector_status
1288intel_dsi_detect(struct drm_connector *connector, bool force)
1289{
Jani Nikula36d21f42015-01-16 14:27:20 +02001290 return connector_status_connected;
Jani Nikula4e646492013-08-27 15:12:20 +03001291}
1292
1293static int intel_dsi_get_modes(struct drm_connector *connector)
1294{
1295 struct intel_connector *intel_connector = to_intel_connector(connector);
1296 struct drm_display_mode *mode;
1297
1298 DRM_DEBUG_KMS("\n");
1299
1300 if (!intel_connector->panel.fixed_mode) {
1301 DRM_DEBUG_KMS("no fixed mode\n");
1302 return 0;
1303 }
1304
1305 mode = drm_mode_duplicate(connector->dev,
1306 intel_connector->panel.fixed_mode);
1307 if (!mode) {
1308 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
1309 return 0;
1310 }
1311
1312 drm_mode_probed_add(connector, mode);
1313 return 1;
1314}
1315
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001316static int intel_dsi_set_property(struct drm_connector *connector,
1317 struct drm_property *property,
1318 uint64_t val)
1319{
1320 struct drm_device *dev = connector->dev;
1321 struct intel_connector *intel_connector = to_intel_connector(connector);
1322 struct drm_crtc *crtc;
1323 int ret;
1324
1325 ret = drm_object_property_set_value(&connector->base, property, val);
1326 if (ret)
1327 return ret;
1328
1329 if (property == dev->mode_config.scaling_mode_property) {
1330 if (val == DRM_MODE_SCALE_NONE) {
1331 DRM_DEBUG_KMS("no scaling not supported\n");
1332 return -EINVAL;
1333 }
Ville Syrjälä234126c2016-04-12 22:14:38 +03001334 if (HAS_GMCH_DISPLAY(dev) &&
1335 val == DRM_MODE_SCALE_CENTER) {
1336 DRM_DEBUG_KMS("centering not supported\n");
1337 return -EINVAL;
1338 }
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001339
1340 if (intel_connector->panel.fitting_mode == val)
1341 return 0;
1342
1343 intel_connector->panel.fitting_mode = val;
1344 }
1345
1346 crtc = intel_attached_encoder(connector)->base.crtc;
1347 if (crtc && crtc->state->enable) {
1348 /*
1349 * If the CRTC is enabled, the display will be changed
1350 * according to the new panel fitting mode.
1351 */
1352 intel_crtc_restore_mode(crtc);
1353 }
1354
1355 return 0;
1356}
1357
Jani Nikula593e0622015-01-23 15:30:56 +02001358static void intel_dsi_connector_destroy(struct drm_connector *connector)
Jani Nikula4e646492013-08-27 15:12:20 +03001359{
1360 struct intel_connector *intel_connector = to_intel_connector(connector);
1361
1362 DRM_DEBUG_KMS("\n");
1363 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +03001364 drm_connector_cleanup(connector);
1365 kfree(connector);
1366}
1367
Jani Nikula593e0622015-01-23 15:30:56 +02001368static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
1369{
1370 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
1371
1372 if (intel_dsi->panel) {
1373 drm_panel_detach(intel_dsi->panel);
1374 /* XXX: Logically this call belongs in the panel driver. */
1375 drm_panel_remove(intel_dsi->panel);
1376 }
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301377
1378 /* dispose of the gpios */
1379 if (intel_dsi->gpio_panel)
1380 gpiod_put(intel_dsi->gpio_panel);
1381
Jani Nikula593e0622015-01-23 15:30:56 +02001382 intel_encoder_destroy(encoder);
1383}
1384
Jani Nikula4e646492013-08-27 15:12:20 +03001385static const struct drm_encoder_funcs intel_dsi_funcs = {
Jani Nikula593e0622015-01-23 15:30:56 +02001386 .destroy = intel_dsi_encoder_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001387};
1388
1389static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
1390 .get_modes = intel_dsi_get_modes,
1391 .mode_valid = intel_dsi_mode_valid,
Jani Nikula4e646492013-08-27 15:12:20 +03001392};
1393
1394static const struct drm_connector_funcs intel_dsi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001395 .dpms = drm_atomic_helper_connector_dpms,
Jani Nikula4e646492013-08-27 15:12:20 +03001396 .detect = intel_dsi_detect,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01001397 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01001398 .early_unregister = intel_connector_unregister,
Jani Nikula593e0622015-01-23 15:30:56 +02001399 .destroy = intel_dsi_connector_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001400 .fill_modes = drm_helper_probe_single_connector_modes,
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001401 .set_property = intel_dsi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001402 .atomic_get_property = intel_connector_atomic_get_property,
Matt Roperc6f95f22015-01-22 16:50:32 -08001403 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001404 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jani Nikula4e646492013-08-27 15:12:20 +03001405};
1406
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001407static void intel_dsi_add_properties(struct intel_connector *connector)
1408{
1409 struct drm_device *dev = connector->base.dev;
1410
1411 if (connector->panel.fixed_mode) {
1412 drm_mode_create_scaling_mode_property(dev);
1413 drm_object_attach_property(&connector->base.base,
1414 dev->mode_config.scaling_mode_property,
1415 DRM_MODE_SCALE_ASPECT);
1416 connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
1417 }
1418}
1419
Damien Lespiau4328633d2014-05-28 12:30:56 +01001420void intel_dsi_init(struct drm_device *dev)
Jani Nikula4e646492013-08-27 15:12:20 +03001421{
1422 struct intel_dsi *intel_dsi;
1423 struct intel_encoder *intel_encoder;
1424 struct drm_encoder *encoder;
1425 struct intel_connector *intel_connector;
1426 struct drm_connector *connector;
Jani Nikula593e0622015-01-23 15:30:56 +02001427 struct drm_display_mode *scan, *fixed_mode = NULL;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301428 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula7e9804f2015-01-16 14:27:23 +02001429 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +03001430 unsigned int i;
1431
1432 DRM_DEBUG_KMS("\n");
1433
Shobhit Kumar3e6bd012014-05-27 19:33:59 +05301434 /* There is no detection method for MIPI so rely on VBT */
Jani Nikula7137aec2016-03-16 12:43:32 +02001435 if (!intel_bios_is_dsi_present(dev_priv, &port))
Damien Lespiau4328633d2014-05-28 12:30:56 +01001436 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001437
Wayne Boyer666a4532015-12-09 12:29:35 -08001438 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301439 dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
Shashank Sharmac6c794a2016-03-22 12:01:50 +02001440 } else if (IS_BROXTON(dev)) {
1441 dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301442 } else {
1443 DRM_ERROR("Unsupported Mipi device to reg base");
Christoph Jaeger868d6652014-06-13 21:51:22 +02001444 return;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301445 }
1446
Jani Nikula4e646492013-08-27 15:12:20 +03001447 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
1448 if (!intel_dsi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001449 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001450
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001451 intel_connector = intel_connector_alloc();
Jani Nikula4e646492013-08-27 15:12:20 +03001452 if (!intel_connector) {
1453 kfree(intel_dsi);
Damien Lespiau4328633d2014-05-28 12:30:56 +01001454 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001455 }
1456
1457 intel_encoder = &intel_dsi->base;
1458 encoder = &intel_encoder->base;
1459 intel_dsi->attached_connector = intel_connector;
1460
Jani Nikula4e646492013-08-27 15:12:20 +03001461 connector = &intel_connector->base;
1462
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001463 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
Ville Syrjälä580d8ed2016-05-27 20:59:24 +03001464 "DSI %c", port_name(port));
Jani Nikula4e646492013-08-27 15:12:20 +03001465
Jani Nikula4e646492013-08-27 15:12:20 +03001466 intel_encoder->compute_config = intel_dsi_compute_config;
Jani Nikula4e646492013-08-27 15:12:20 +03001467 intel_encoder->pre_enable = intel_dsi_pre_enable;
Shobhit Kumar2634fd72014-04-09 13:59:31 +05301468 intel_encoder->enable = intel_dsi_enable_nop;
Imre Deakc315faf2014-05-27 19:00:09 +03001469 intel_encoder->disable = intel_dsi_pre_disable;
Jani Nikula4e646492013-08-27 15:12:20 +03001470 intel_encoder->post_disable = intel_dsi_post_disable;
1471 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
1472 intel_encoder->get_config = intel_dsi_get_config;
1473
1474 intel_connector->get_hw_state = intel_connector_get_hw_state;
1475
Jani Nikula2e85ab42016-03-18 17:05:44 +02001476 /*
1477 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
1478 * port C. BXT isn't limited like this.
1479 */
1480 if (IS_BROXTON(dev_priv))
1481 intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
1482 else if (port == PORT_A)
Jani Nikula701d25b2016-03-18 17:05:43 +02001483 intel_encoder->crtc_mask = BIT(PIPE_A);
Jani Nikula7137aec2016-03-16 12:43:32 +02001484 else
Jani Nikula701d25b2016-03-18 17:05:43 +02001485 intel_encoder->crtc_mask = BIT(PIPE_B);
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001486
Jani Nikula90198352016-04-26 16:14:25 +03001487 if (dev_priv->vbt.dsi.config->dual_link) {
Jani Nikula701d25b2016-03-18 17:05:43 +02001488 intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
Jani Nikula90198352016-04-26 16:14:25 +03001489
1490 switch (dev_priv->vbt.dsi.config->dl_dcs_backlight_ports) {
1491 case DL_DCS_PORT_A:
1492 intel_dsi->dcs_backlight_ports = BIT(PORT_A);
1493 break;
1494 case DL_DCS_PORT_C:
1495 intel_dsi->dcs_backlight_ports = BIT(PORT_C);
1496 break;
1497 default:
1498 case DL_DCS_PORT_A_AND_C:
1499 intel_dsi->dcs_backlight_ports = BIT(PORT_A) | BIT(PORT_C);
1500 break;
1501 }
Deepak M1ecc1c62016-04-26 16:14:26 +03001502
1503 switch (dev_priv->vbt.dsi.config->dl_dcs_cabc_ports) {
1504 case DL_DCS_PORT_A:
1505 intel_dsi->dcs_cabc_ports = BIT(PORT_A);
1506 break;
1507 case DL_DCS_PORT_C:
1508 intel_dsi->dcs_cabc_ports = BIT(PORT_C);
1509 break;
1510 default:
1511 case DL_DCS_PORT_A_AND_C:
1512 intel_dsi->dcs_cabc_ports = BIT(PORT_A) | BIT(PORT_C);
1513 break;
1514 }
Jani Nikula90198352016-04-26 16:14:25 +03001515 } else {
Jani Nikula701d25b2016-03-18 17:05:43 +02001516 intel_dsi->ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001517 intel_dsi->dcs_backlight_ports = BIT(port);
Deepak M1ecc1c62016-04-26 16:14:26 +03001518 intel_dsi->dcs_cabc_ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001519 }
Gaurav K Singh82425782015-08-03 15:45:32 +05301520
Deepak M1ecc1c62016-04-26 16:14:26 +03001521 if (!dev_priv->vbt.dsi.config->cabc_supported)
1522 intel_dsi->dcs_cabc_ports = 0;
1523
Jani Nikula7e9804f2015-01-16 14:27:23 +02001524 /* Create a DSI host (and a device) for each port. */
1525 for_each_dsi_port(port, intel_dsi->ports) {
1526 struct intel_dsi_host *host;
1527
1528 host = intel_dsi_host_init(intel_dsi, port);
1529 if (!host)
1530 goto err;
1531
1532 intel_dsi->dsi_hosts[port] = host;
1533 }
1534
Jani Nikula593e0622015-01-23 15:30:56 +02001535 for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
1536 intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
1537 intel_dsi_drivers[i].panel_id);
1538 if (intel_dsi->panel)
Jani Nikula4e646492013-08-27 15:12:20 +03001539 break;
1540 }
1541
Jani Nikula593e0622015-01-23 15:30:56 +02001542 if (!intel_dsi->panel) {
Jani Nikula4e646492013-08-27 15:12:20 +03001543 DRM_DEBUG_KMS("no device found\n");
1544 goto err;
1545 }
1546
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301547 /*
1548 * In case of BYT with CRC PMIC, we need to use GPIO for
1549 * Panel control.
1550 */
1551 if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) {
1552 intel_dsi->gpio_panel =
1553 gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
1554
1555 if (IS_ERR(intel_dsi->gpio_panel)) {
1556 DRM_ERROR("Failed to own gpio for panel control\n");
1557 intel_dsi->gpio_panel = NULL;
1558 }
1559 }
1560
Jani Nikula4e646492013-08-27 15:12:20 +03001561 intel_encoder->type = INTEL_OUTPUT_DSI;
Ville Syrjäläbc079e82014-03-03 16:15:28 +02001562 intel_encoder->cloneable = 0;
Jani Nikula4e646492013-08-27 15:12:20 +03001563 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
1564 DRM_MODE_CONNECTOR_DSI);
1565
1566 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
1567
1568 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
1569 connector->interlace_allowed = false;
1570 connector->doublescan_allowed = false;
1571
1572 intel_connector_attach_encoder(intel_connector, intel_encoder);
1573
Jani Nikula593e0622015-01-23 15:30:56 +02001574 drm_panel_attach(intel_dsi->panel, connector);
1575
1576 mutex_lock(&dev->mode_config.mutex);
1577 drm_panel_get_modes(intel_dsi->panel);
1578 list_for_each_entry(scan, &connector->probed_modes, head) {
1579 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
1580 fixed_mode = drm_mode_duplicate(dev, scan);
1581 break;
1582 }
1583 }
1584 mutex_unlock(&dev->mode_config.mutex);
1585
Jani Nikula4e646492013-08-27 15:12:20 +03001586 if (!fixed_mode) {
1587 DRM_DEBUG_KMS("no fixed mode\n");
1588 goto err;
1589 }
1590
Ville Syrjälädf457242016-05-31 12:08:34 +03001591 connector->display_info.width_mm = fixed_mode->width_mm;
1592 connector->display_info.height_mm = fixed_mode->height_mm;
1593
Vandana Kannan4b6ed682014-02-11 14:26:36 +05301594 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Chris Wilsonfda9ee92016-06-24 14:00:13 +01001595 intel_panel_setup_backlight(connector, INVALID_PIPE);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001596
1597 intel_dsi_add_properties(intel_connector);
1598
Damien Lespiau4328633d2014-05-28 12:30:56 +01001599 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001600
1601err:
1602 drm_encoder_cleanup(&intel_encoder->base);
1603 kfree(intel_dsi);
1604 kfree(intel_connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001605}