blob: 448d6dcc15296f1e0cef19f7451a8cdf1aa9c17e [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
Chris Wilson84c2aa92016-06-30 15:33:15 +0100177 if (intel_wait_for_register(dev_priv,
178 MIPI_GEN_FIFO_STAT(port),
179 ctrl_mask, 0,
180 50)) {
Jani Nikula7e9804f2015-01-16 14:27:23 +0200181 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;
189 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50))
190 DRM_ERROR("Timeout waiting for read data.\n");
191
192 read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
193 }
194
195 /* XXX: fix for reads and writes */
196 return 4 + packet.payload_length;
197}
198
199static int intel_dsi_host_attach(struct mipi_dsi_host *host,
200 struct mipi_dsi_device *dsi)
201{
202 return 0;
203}
204
205static int intel_dsi_host_detach(struct mipi_dsi_host *host,
206 struct mipi_dsi_device *dsi)
207{
208 return 0;
209}
210
211static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
212 .attach = intel_dsi_host_attach,
213 .detach = intel_dsi_host_detach,
214 .transfer = intel_dsi_host_transfer,
215};
216
217static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
218 enum port port)
219{
220 struct intel_dsi_host *host;
221 struct mipi_dsi_device *device;
222
223 host = kzalloc(sizeof(*host), GFP_KERNEL);
224 if (!host)
225 return NULL;
226
227 host->base.ops = &intel_dsi_host_ops;
228 host->intel_dsi = intel_dsi;
229 host->port = port;
230
231 /*
232 * We should call mipi_dsi_host_register(&host->base) here, but we don't
233 * have a host->dev, and we don't have OF stuff either. So just use the
234 * dsi framework as a library and hope for the best. Create the dsi
235 * devices by ourselves here too. Need to be careful though, because we
236 * don't initialize any of the driver model devices here.
237 */
238 device = kzalloc(sizeof(*device), GFP_KERNEL);
239 if (!device) {
240 kfree(host);
241 return NULL;
242 }
243
244 device->host = &host->base;
245 host->device = device;
246
247 return host;
248}
249
Jani Nikulaa2581a92015-01-16 14:27:26 +0200250/*
251 * send a video mode command
252 *
253 * XXX: commands with data in MIPI_DPI_DATA?
254 */
255static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
256 enum port port)
257{
258 struct drm_encoder *encoder = &intel_dsi->base.base;
259 struct drm_device *dev = encoder->dev;
260 struct drm_i915_private *dev_priv = dev->dev_private;
261 u32 mask;
262
263 /* XXX: pipe, hs */
264 if (hs)
265 cmd &= ~DPI_LP_MODE;
266 else
267 cmd |= DPI_LP_MODE;
268
269 /* clear bit */
270 I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
271
272 /* XXX: old code skips write if control unchanged */
273 if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
274 DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
275
276 I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
277
278 mask = SPL_PKT_SENT_INTERRUPT;
279 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100))
280 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
281
282 return 0;
283}
284
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530285static void band_gap_reset(struct drm_i915_private *dev_priv)
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300286{
Ville Syrjäläa5805162015-05-26 20:42:30 +0300287 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300288
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530289 vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
290 vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
291 vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
292 udelay(150);
293 vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
294 vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300295
Ville Syrjäläa5805162015-05-26 20:42:30 +0300296 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300297}
298
Jani Nikula4e646492013-08-27 15:12:20 +0300299static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
300{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530301 return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300302}
303
304static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
305{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530306 return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300307}
308
Jani Nikula4e646492013-08-27 15:12:20 +0300309static bool intel_dsi_compute_config(struct intel_encoder *encoder,
Jani Nikulaa65347b2015-11-27 12:21:46 +0200310 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300311{
Jani Nikula4d1de972016-03-18 17:05:42 +0200312 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300313 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
314 base);
315 struct intel_connector *intel_connector = intel_dsi->attached_connector;
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300316 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
317 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Jani Nikulaa65347b2015-11-27 12:21:46 +0200318 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300319 int ret;
Jani Nikula4e646492013-08-27 15:12:20 +0300320
321 DRM_DEBUG_KMS("\n");
322
Jani Nikulaa65347b2015-11-27 12:21:46 +0200323 pipe_config->has_dsi_encoder = true;
324
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300325 if (fixed_mode) {
Jani Nikula4e646492013-08-27 15:12:20 +0300326 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
327
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300328 if (HAS_GMCH_DISPLAY(dev_priv))
329 intel_gmch_panel_fitting(crtc, pipe_config,
330 intel_connector->panel.fitting_mode);
331 else
332 intel_pch_panel_fitting(crtc, pipe_config,
333 intel_connector->panel.fitting_mode);
334 }
335
Shobhit Kumarf573de52014-07-30 20:32:37 +0530336 /* DSI uses short packets for sync events, so clear mode flags for DSI */
337 adjusted_mode->flags = 0;
338
Jani Nikula4d1de972016-03-18 17:05:42 +0200339 if (IS_BROXTON(dev_priv)) {
340 /* Dual link goes to DSI transcoder A. */
341 if (intel_dsi->ports == BIT(PORT_C))
342 pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
343 else
344 pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
345 }
346
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300347 ret = intel_compute_dsi_pll(encoder, pipe_config);
348 if (ret)
349 return false;
350
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300351 pipe_config->clock_set = true;
352
Jani Nikula4e646492013-08-27 15:12:20 +0300353 return true;
354}
355
Shashank Sharma37ab0812015-09-01 19:41:42 +0530356static void bxt_dsi_device_ready(struct intel_encoder *encoder)
Gaurav K Singh5505a242014-12-04 10:58:47 +0530357{
Shashank Sharma37ab0812015-09-01 19:41:42 +0530358 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530359 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530360 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530361 u32 val;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530362
Shashank Sharma37ab0812015-09-01 19:41:42 +0530363 DRM_DEBUG_KMS("\n");
Gaurav K Singha9da9bc2014-12-05 14:13:41 +0530364
Shashank Sharma37ab0812015-09-01 19:41:42 +0530365 /* Exit Low power state in 4 steps*/
Gaurav K Singh369602d2014-12-05 14:09:28 +0530366 for_each_dsi_port(port, intel_dsi->ports) {
Gaurav K Singh369602d2014-12-05 14:09:28 +0530367
Shashank Sharma37ab0812015-09-01 19:41:42 +0530368 /* 1. Enable MIPI PHY transparent latch */
369 val = I915_READ(BXT_MIPI_PORT_CTRL(port));
370 I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
371 usleep_range(2000, 2500);
372
373 /* 2. Enter ULPS */
374 val = I915_READ(MIPI_DEVICE_READY(port));
375 val &= ~ULPS_STATE_MASK;
376 val |= (ULPS_STATE_ENTER | DEVICE_READY);
377 I915_WRITE(MIPI_DEVICE_READY(port), val);
378 usleep_range(2, 3);
379
380 /* 3. Exit ULPS */
381 val = I915_READ(MIPI_DEVICE_READY(port));
382 val &= ~ULPS_STATE_MASK;
383 val |= (ULPS_STATE_EXIT | DEVICE_READY);
384 I915_WRITE(MIPI_DEVICE_READY(port), val);
385 usleep_range(1000, 1500);
386
387 /* Clear ULPS and set device ready */
388 val = I915_READ(MIPI_DEVICE_READY(port));
389 val &= ~ULPS_STATE_MASK;
390 val |= DEVICE_READY;
391 I915_WRITE(MIPI_DEVICE_READY(port), val);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530392 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530393}
394
Shashank Sharma37ab0812015-09-01 19:41:42 +0530395static void vlv_dsi_device_ready(struct intel_encoder *encoder)
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530396{
397 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530398 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
399 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530400 u32 val;
401
402 DRM_DEBUG_KMS("\n");
403
Ville Syrjäläa5805162015-05-26 20:42:30 +0300404 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530405 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
406 * needed everytime after power gate */
407 vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300408 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530409
410 /* bandgap reset is needed after everytime we do power gate */
411 band_gap_reset(dev_priv);
412
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530413 for_each_dsi_port(port, intel_dsi->ports) {
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530414
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530415 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
416 usleep_range(2500, 3000);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530417
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530418 /* Enable MIPI PHY transparent latch
419 * Common bit for both MIPI Port A & MIPI Port C
420 * No similar bit in MIPI Port C reg
421 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530422 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530423 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530424 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530425
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530426 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
427 usleep_range(2500, 3000);
428
429 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
430 usleep_range(2500, 3000);
431 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530432}
Jani Nikula4e646492013-08-27 15:12:20 +0300433
Shashank Sharma37ab0812015-09-01 19:41:42 +0530434static void intel_dsi_device_ready(struct intel_encoder *encoder)
435{
436 struct drm_device *dev = encoder->base.dev;
437
Wayne Boyer666a4532015-12-09 12:29:35 -0800438 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Shashank Sharma37ab0812015-09-01 19:41:42 +0530439 vlv_dsi_device_ready(encoder);
440 else if (IS_BROXTON(dev))
441 bxt_dsi_device_ready(encoder);
442}
443
444static void intel_dsi_port_enable(struct intel_encoder *encoder)
445{
446 struct drm_device *dev = encoder->base.dev;
447 struct drm_i915_private *dev_priv = dev->dev_private;
448 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
449 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
450 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530451
452 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200453 u32 temp;
454
Shashank Sharma37ab0812015-09-01 19:41:42 +0530455 temp = I915_READ(VLV_CHICKEN_3);
456 temp &= ~PIXEL_OVERLAP_CNT_MASK |
457 intel_dsi->pixel_overlap <<
458 PIXEL_OVERLAP_CNT_SHIFT;
459 I915_WRITE(VLV_CHICKEN_3, temp);
460 }
461
462 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200463 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
464 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
465 u32 temp;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530466
467 temp = I915_READ(port_ctrl);
468
469 temp &= ~LANE_CONFIGURATION_MASK;
470 temp &= ~DUAL_LINK_MODE_MASK;
471
Jani Nikula701d25b2016-03-18 17:05:43 +0200472 if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530473 temp |= (intel_dsi->dual_link - 1)
474 << DUAL_LINK_MODE_SHIFT;
475 temp |= intel_crtc->pipe ?
476 LANE_CONFIGURATION_DUAL_LINK_B :
477 LANE_CONFIGURATION_DUAL_LINK_A;
478 }
479 /* assert ip_tg_enable signal */
480 I915_WRITE(port_ctrl, temp | DPI_ENABLE);
481 POSTING_READ(port_ctrl);
482 }
483}
484
485static void intel_dsi_port_disable(struct intel_encoder *encoder)
486{
487 struct drm_device *dev = encoder->base.dev;
488 struct drm_i915_private *dev_priv = dev->dev_private;
489 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
490 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530491
492 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200493 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
494 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
495 u32 temp;
496
Shashank Sharma37ab0812015-09-01 19:41:42 +0530497 /* de-assert ip_tg_enable signal */
Shashank Sharmab389a452015-09-01 19:41:44 +0530498 temp = I915_READ(port_ctrl);
499 I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
500 POSTING_READ(port_ctrl);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530501 }
502}
503
Jani Nikula4e646492013-08-27 15:12:20 +0300504static void intel_dsi_enable(struct intel_encoder *encoder)
505{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530506 struct drm_device *dev = encoder->base.dev;
507 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300508 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikula4934b652015-01-22 15:01:35 +0200509 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300510
511 DRM_DEBUG_KMS("\n");
512
Jani Nikula4934b652015-01-22 15:01:35 +0200513 if (is_cmd_mode(intel_dsi)) {
514 for_each_dsi_port(port, intel_dsi->ports)
515 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
516 } else {
Jani Nikula4e646492013-08-27 15:12:20 +0300517 msleep(20); /* XXX */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200518 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200519 dpi_send_cmd(intel_dsi, TURN_ON, false, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300520 msleep(100);
521
Jani Nikula593e0622015-01-23 15:30:56 +0200522 drm_panel_enable(intel_dsi->panel);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530523
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200524 for_each_dsi_port(port, intel_dsi->ports)
525 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530526
Gaurav K Singh5505a242014-12-04 10:58:47 +0530527 intel_dsi_port_enable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300528 }
Shobhit Kumarb029e662015-06-26 14:32:10 +0530529
530 intel_panel_enable_backlight(intel_dsi->attached_connector);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530531}
Jani Nikula4e646492013-08-27 15:12:20 +0300532
Jani Nikulae3488e72015-11-27 12:21:44 +0200533static void intel_dsi_prepare(struct intel_encoder *intel_encoder);
534
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530535static void intel_dsi_pre_enable(struct intel_encoder *encoder)
536{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530537 struct drm_device *dev = encoder->base.dev;
538 struct drm_i915_private *dev_priv = dev->dev_private;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530539 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300540 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200541 enum port port;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530542
543 DRM_DEBUG_KMS("\n");
544
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200545 /*
546 * The BIOS may leave the PLL in a wonky state where it doesn't
547 * lock. It needs to be fully powered down to fix it.
548 */
549 intel_disable_dsi_pll(encoder);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300550 intel_enable_dsi_pll(encoder, crtc->config);
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200551
Ramalingam C58d4d322016-02-03 18:20:46 +0530552 intel_dsi_prepare(encoder);
Jani Nikulae3488e72015-11-27 12:21:44 +0200553
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530554 /* Panel Enable over CRC PMIC */
555 if (intel_dsi->gpio_panel)
556 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
557
558 msleep(intel_dsi->panel_on_delay);
559
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300560 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
561 u32 val;
562
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300563 /* Disable DPOunit clock gating, can stall pipe */
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300564 val = I915_READ(DSPCLK_GATE_D);
565 val |= DPOUNIT_CLOCK_GATE_DISABLE;
566 I915_WRITE(DSPCLK_GATE_D, val);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530567 }
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530568
569 /* put device in ready state */
570 intel_dsi_device_ready(encoder);
571
Jani Nikula593e0622015-01-23 15:30:56 +0200572 drm_panel_prepare(intel_dsi->panel);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530573
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200574 for_each_dsi_port(port, intel_dsi->ports)
575 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530576
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530577 /* Enable port in pre-enable phase itself because as per hw team
578 * recommendation, port should be enabled befor plane & pipe */
579 intel_dsi_enable(encoder);
580}
581
582static void intel_dsi_enable_nop(struct intel_encoder *encoder)
583{
584 DRM_DEBUG_KMS("\n");
585
586 /* for DSI port enable has to be done before pipe
587 * and plane enable, so port enable is done in
588 * pre_enable phase itself unlike other encoders
589 */
Jani Nikula4e646492013-08-27 15:12:20 +0300590}
591
Imre Deakc315faf2014-05-27 19:00:09 +0300592static void intel_dsi_pre_disable(struct intel_encoder *encoder)
593{
594 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulaf03e4172015-01-16 14:27:16 +0200595 enum port port;
Imre Deakc315faf2014-05-27 19:00:09 +0300596
597 DRM_DEBUG_KMS("\n");
598
Shobhit Kumarb029e662015-06-26 14:32:10 +0530599 intel_panel_disable_backlight(intel_dsi->attached_connector);
600
Imre Deakc315faf2014-05-27 19:00:09 +0300601 if (is_vid_mode(intel_dsi)) {
602 /* Send Shutdown command to the panel in LP mode */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200603 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200604 dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
Imre Deakc315faf2014-05-27 19:00:09 +0300605 msleep(10);
606 }
607}
608
Jani Nikula4e646492013-08-27 15:12:20 +0300609static void intel_dsi_disable(struct intel_encoder *encoder)
610{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530611 struct drm_device *dev = encoder->base.dev;
612 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300613 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530614 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300615 u32 temp;
616
617 DRM_DEBUG_KMS("\n");
618
Jani Nikula4e646492013-08-27 15:12:20 +0300619 if (is_vid_mode(intel_dsi)) {
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200620 for_each_dsi_port(port, intel_dsi->ports)
621 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530622
Gaurav K Singh5505a242014-12-04 10:58:47 +0530623 intel_dsi_port_disable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300624 msleep(2);
625 }
626
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530627 for_each_dsi_port(port, intel_dsi->ports) {
628 /* Panel commands can be sent when clock is in LP11 */
629 I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530630
Shashank Sharmab389a452015-09-01 19:41:44 +0530631 intel_dsi_reset_clocks(encoder, port);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530632 I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530633
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530634 temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
635 temp &= ~VID_MODE_FORMAT_MASK;
636 I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530637
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530638 I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
639 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530640 /* if disable packets are sent before sending shutdown packet then in
641 * some next enable sequence send turn on packet error is observed */
Jani Nikula593e0622015-01-23 15:30:56 +0200642 drm_panel_disable(intel_dsi->panel);
Shobhit Kumar13813082014-07-12 17:17:22 +0530643
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200644 for_each_dsi_port(port, intel_dsi->ports)
645 wait_for_dsi_fifo_empty(intel_dsi, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300646}
647
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530648static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300649{
Shashank Sharmab389a452015-09-01 19:41:44 +0530650 struct drm_device *dev = encoder->base.dev;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530651 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530652 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
653 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530654
Jani Nikula4e646492013-08-27 15:12:20 +0300655 DRM_DEBUG_KMS("\n");
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530656 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200657 /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
658 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
659 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
660 u32 val;
ymohanmabe4fc042013-08-27 23:40:56 +0300661
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530662 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
663 ULPS_STATE_ENTER);
664 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530665
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530666 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
667 ULPS_STATE_EXIT);
668 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530669
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530670 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
671 ULPS_STATE_ENTER);
672 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530673
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530674 /* Wait till Clock lanes are in LP-00 state for MIPI Port A
675 * only. MIPI Port C has no similar bit for checking
676 */
Shashank Sharmab389a452015-09-01 19:41:44 +0530677 if (wait_for(((I915_READ(port_ctrl) & AFE_LATCHOUT)
678 == 0x00000), 30))
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530679 DRM_ERROR("DSI LP not going Low\n");
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530680
Shashank Sharmab389a452015-09-01 19:41:44 +0530681 /* Disable MIPI PHY transparent latch */
682 val = I915_READ(port_ctrl);
683 I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530684 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530685
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530686 I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
687 usleep_range(2000, 2500);
688 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530689
Shashank Sharmafe88fc62015-09-01 19:41:39 +0530690 intel_disable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300691}
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530692
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530693static void intel_dsi_post_disable(struct intel_encoder *encoder)
694{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530695 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530696 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
697
698 DRM_DEBUG_KMS("\n");
699
Imre Deakc315faf2014-05-27 19:00:09 +0300700 intel_dsi_disable(encoder);
701
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530702 intel_dsi_clear_device_ready(encoder);
703
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300704 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Uma Shankard6e3af52016-02-18 13:49:26 +0200705 u32 val;
706
707 val = I915_READ(DSPCLK_GATE_D);
708 val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
709 I915_WRITE(DSPCLK_GATE_D, val);
710 }
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530711
Jani Nikula593e0622015-01-23 15:30:56 +0200712 drm_panel_unprepare(intel_dsi->panel);
Shobhit Kumardf38e652014-04-14 11:18:26 +0530713
714 msleep(intel_dsi->panel_off_delay);
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530715
716 /* Panel Disable over CRC PMIC */
717 if (intel_dsi->gpio_panel)
718 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
Ville Syrjälä1d5c65e2016-04-18 19:17:51 +0300719
720 /*
721 * FIXME As we do with eDP, just make a note of the time here
722 * and perform the wait before the next panel power on.
723 */
724 msleep(intel_dsi->panel_pwr_cycle_delay);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530725}
Jani Nikula4e646492013-08-27 15:12:20 +0300726
727static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
728 enum pipe *pipe)
729{
730 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530731 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
732 struct drm_device *dev = encoder->base.dev;
Imre Deak6d129be2014-03-05 16:20:54 +0200733 enum intel_display_power_domain power_domain;
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200734 enum port port;
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200735 bool active = false;
Jani Nikula4e646492013-08-27 15:12:20 +0300736
737 DRM_DEBUG_KMS("\n");
738
Imre Deak6d129be2014-03-05 16:20:54 +0200739 power_domain = intel_display_port_power_domain(encoder);
Imre Deak3f3f42b2016-02-12 18:55:19 +0200740 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200741 return false;
742
Imre Deakdb18b6a2016-03-24 12:41:40 +0200743 /*
744 * On Broxton the PLL needs to be enabled with a valid divider
745 * configuration, otherwise accessing DSI registers will hang the
746 * machine. See BSpec North Display Engine registers/MIPI[BXT].
747 */
748 if (IS_BROXTON(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
749 goto out_put_power;
750
Jani Nikula4e646492013-08-27 15:12:20 +0300751 /* XXX: this only works for one DSI output */
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530752 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200753 i915_reg_t ctrl_reg = IS_BROXTON(dev) ?
754 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200755 bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
Jani Nikula4e646492013-08-27 15:12:20 +0300756
Jani Nikulae6f57782016-04-15 15:47:31 +0300757 /*
758 * Due to some hardware limitations on VLV/CHV, the DPI enable
759 * bit in port C control register does not get set. As a
760 * workaround, check pipe B conf instead.
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530761 */
Jani Nikulae6f57782016-04-15 15:47:31 +0300762 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && port == PORT_C)
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200763 enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530764
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200765 /* Try command mode if video mode not enabled */
766 if (!enabled) {
767 u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
768 enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
Jani Nikula4e646492013-08-27 15:12:20 +0300769 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200770
771 if (!enabled)
772 continue;
773
774 if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
775 continue;
776
Jani Nikula6b93e9c2016-03-15 21:51:12 +0200777 if (IS_BROXTON(dev_priv)) {
778 u32 tmp = I915_READ(MIPI_CTRL(port));
779 tmp &= BXT_PIPE_SELECT_MASK;
780 tmp >>= BXT_PIPE_SELECT_SHIFT;
781
782 if (WARN_ON(tmp > PIPE_C))
783 continue;
784
785 *pipe = tmp;
786 } else {
787 *pipe = port == PORT_A ? PIPE_A : PIPE_B;
788 }
789
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200790 active = true;
791 break;
Jani Nikula4e646492013-08-27 15:12:20 +0300792 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200793
Imre Deakdb18b6a2016-03-24 12:41:40 +0200794out_put_power:
Imre Deak3f3f42b2016-02-12 18:55:19 +0200795 intel_display_power_put(dev_priv, power_domain);
Jani Nikula4e646492013-08-27 15:12:20 +0300796
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200797 return active;
Jani Nikula4e646492013-08-27 15:12:20 +0300798}
799
Ramalingam C6f0e7532016-04-07 14:36:07 +0530800static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
801 struct intel_crtc_state *pipe_config)
802{
803 struct drm_device *dev = encoder->base.dev;
804 struct drm_i915_private *dev_priv = dev->dev_private;
805 struct drm_display_mode *adjusted_mode =
806 &pipe_config->base.adjusted_mode;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530807 struct drm_display_mode *adjusted_mode_sw;
808 struct intel_crtc *intel_crtc;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530809 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530810 unsigned int lane_count = intel_dsi->lane_count;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530811 unsigned int bpp, fmt;
812 enum port port;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530813 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530814 u16 hfp_sw, hsync_sw, hbp_sw;
815 u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
816 crtc_hblank_start_sw, crtc_hblank_end_sw;
817
818 intel_crtc = to_intel_crtc(encoder->base.crtc);
819 adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530820
821 /*
822 * Atleast one port is active as encoder->get_config called only if
823 * encoder->get_hw_state() returns true.
824 */
825 for_each_dsi_port(port, intel_dsi->ports) {
826 if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
827 break;
828 }
829
830 fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
831 pipe_config->pipe_bpp =
832 mipi_dsi_pixel_format_to_bpp(
833 pixel_format_from_register_bits(fmt));
834 bpp = pipe_config->pipe_bpp;
835
836 /* In terms of pixels */
837 adjusted_mode->crtc_hdisplay =
838 I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
839 adjusted_mode->crtc_vdisplay =
840 I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
841 adjusted_mode->crtc_vtotal =
842 I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
843
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530844 hactive = adjusted_mode->crtc_hdisplay;
845 hfp = I915_READ(MIPI_HFP_COUNT(port));
846
Ramalingam C6f0e7532016-04-07 14:36:07 +0530847 /*
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530848 * Meaningful for video mode non-burst sync pulse mode only,
849 * can be zero for non-burst sync events and burst modes
Ramalingam C6f0e7532016-04-07 14:36:07 +0530850 */
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530851 hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
852 hbp = I915_READ(MIPI_HBP_COUNT(port));
853
854 /* harizontal values are in terms of high speed byte clock */
855 hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
856 intel_dsi->burst_mode_ratio);
857 hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
858 intel_dsi->burst_mode_ratio);
859 hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
860 intel_dsi->burst_mode_ratio);
861
862 if (intel_dsi->dual_link) {
863 hfp *= 2;
864 hsync *= 2;
865 hbp *= 2;
866 }
Ramalingam C6f0e7532016-04-07 14:36:07 +0530867
868 /* vertical values are in terms of lines */
869 vfp = I915_READ(MIPI_VFP_COUNT(port));
870 vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
871 vbp = I915_READ(MIPI_VBP_COUNT(port));
872
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530873 adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
874 adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
875 adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530876 adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530877 adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530878
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530879 adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
880 adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530881 adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
882 adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530883
Ramalingam C042ab0c2016-04-19 13:48:14 +0530884 /*
885 * In BXT DSI there is no regs programmed with few horizontal timings
886 * in Pixels but txbyteclkhs.. So retrieval process adds some
887 * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
888 * Actually here for the given adjusted_mode, we are calculating the
889 * value programmed to the port and then back to the horizontal timing
890 * param in pixels. This is the expected value, including roundup errors
891 * And if that is same as retrieved value from port, then
892 * (HW state) adjusted_mode's horizontal timings are corrected to
893 * match with SW state to nullify the errors.
894 */
895 /* Calculating the value programmed to the Port register */
896 hfp_sw = adjusted_mode_sw->crtc_hsync_start -
897 adjusted_mode_sw->crtc_hdisplay;
898 hsync_sw = adjusted_mode_sw->crtc_hsync_end -
899 adjusted_mode_sw->crtc_hsync_start;
900 hbp_sw = adjusted_mode_sw->crtc_htotal -
901 adjusted_mode_sw->crtc_hsync_end;
902
903 if (intel_dsi->dual_link) {
904 hfp_sw /= 2;
905 hsync_sw /= 2;
906 hbp_sw /= 2;
907 }
908
909 hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
910 intel_dsi->burst_mode_ratio);
911 hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
912 intel_dsi->burst_mode_ratio);
913 hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
914 intel_dsi->burst_mode_ratio);
915
916 /* Reverse calculating the adjusted mode parameters from port reg vals*/
917 hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
918 intel_dsi->burst_mode_ratio);
919 hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
920 intel_dsi->burst_mode_ratio);
921 hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
922 intel_dsi->burst_mode_ratio);
923
924 if (intel_dsi->dual_link) {
925 hfp_sw *= 2;
926 hsync_sw *= 2;
927 hbp_sw *= 2;
928 }
929
930 crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
931 hsync_sw + hbp_sw;
932 crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
933 crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
934 crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
935 crtc_hblank_end_sw = crtc_htotal_sw;
936
937 if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
938 adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
939
940 if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
941 adjusted_mode->crtc_hsync_start =
942 adjusted_mode_sw->crtc_hsync_start;
943
944 if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
945 adjusted_mode->crtc_hsync_end =
946 adjusted_mode_sw->crtc_hsync_end;
947
948 if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
949 adjusted_mode->crtc_hblank_start =
950 adjusted_mode_sw->crtc_hblank_start;
951
952 if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
953 adjusted_mode->crtc_hblank_end =
954 adjusted_mode_sw->crtc_hblank_end;
955}
Ramalingam C6f0e7532016-04-07 14:36:07 +0530956
Jani Nikula4e646492013-08-27 15:12:20 +0300957static void intel_dsi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200958 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300959{
Ramalingam C6f0e7532016-04-07 14:36:07 +0530960 struct drm_device *dev = encoder->base.dev;
Jani Nikulad7d85d82016-01-08 12:45:39 +0200961 u32 pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300962 DRM_DEBUG_KMS("\n");
963
Jani Nikulaa65347b2015-11-27 12:21:46 +0200964 pipe_config->has_dsi_encoder = true;
965
Ramalingam C6f0e7532016-04-07 14:36:07 +0530966 if (IS_BROXTON(dev))
967 bxt_dsi_get_pipe_config(encoder, pipe_config);
968
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300969 pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
970 pipe_config);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530971 if (!pclk)
972 return;
973
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200974 pipe_config->base.adjusted_mode.crtc_clock = pclk;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530975 pipe_config->port_clock = pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300976}
977
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000978static enum drm_mode_status
979intel_dsi_mode_valid(struct drm_connector *connector,
980 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +0300981{
982 struct intel_connector *intel_connector = to_intel_connector(connector);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300983 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Mika Kahola759a1e92015-08-18 14:37:01 +0300984 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Jani Nikula4e646492013-08-27 15:12:20 +0300985
986 DRM_DEBUG_KMS("\n");
987
988 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
989 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
990 return MODE_NO_DBLESCAN;
991 }
992
993 if (fixed_mode) {
994 if (mode->hdisplay > fixed_mode->hdisplay)
995 return MODE_PANEL;
996 if (mode->vdisplay > fixed_mode->vdisplay)
997 return MODE_PANEL;
Mika Kahola759a1e92015-08-18 14:37:01 +0300998 if (fixed_mode->clock > max_dotclk)
999 return MODE_CLOCK_HIGH;
Jani Nikula4e646492013-08-27 15:12:20 +03001000 }
1001
Jani Nikula36d21f42015-01-16 14:27:20 +02001002 return MODE_OK;
Jani Nikula4e646492013-08-27 15:12:20 +03001003}
1004
1005/* return txclkesc cycles in terms of divider and duration in us */
1006static u16 txclkesc(u32 divider, unsigned int us)
1007{
1008 switch (divider) {
1009 case ESCAPE_CLOCK_DIVIDER_1:
1010 default:
1011 return 20 * us;
1012 case ESCAPE_CLOCK_DIVIDER_2:
1013 return 10 * us;
1014 case ESCAPE_CLOCK_DIVIDER_4:
1015 return 5 * us;
1016 }
1017}
1018
Jani Nikula4e646492013-08-27 15:12:20 +03001019static void set_dsi_timings(struct drm_encoder *encoder,
Ville Syrjälä5e7234c2015-09-25 16:37:43 +03001020 const struct drm_display_mode *adjusted_mode)
Jani Nikula4e646492013-08-27 15:12:20 +03001021{
1022 struct drm_device *dev = encoder->dev;
1023 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +03001024 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301025 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001026 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001027 unsigned int lane_count = intel_dsi->lane_count;
1028
1029 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
1030
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001031 hactive = adjusted_mode->crtc_hdisplay;
1032 hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
1033 hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
1034 hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001035
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301036 if (intel_dsi->dual_link) {
1037 hactive /= 2;
1038 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1039 hactive += intel_dsi->pixel_overlap;
1040 hfp /= 2;
1041 hsync /= 2;
1042 hbp /= 2;
1043 }
1044
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001045 vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
1046 vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
1047 vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001048
1049 /* horizontal values are in terms of high speed byte clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301050 hactive = txbyteclkhs(hactive, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001051 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301052 hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
1053 hsync = txbyteclkhs(hsync, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001054 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301055 hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
Jani Nikula4e646492013-08-27 15:12:20 +03001056
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301057 for_each_dsi_port(port, intel_dsi->ports) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301058 if (IS_BROXTON(dev)) {
1059 /*
1060 * Program hdisplay and vdisplay on MIPI transcoder.
1061 * This is different from calculated hactive and
1062 * vactive, as they are calculated per channel basis,
1063 * whereas these values should be based on resolution.
1064 */
1065 I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001066 adjusted_mode->crtc_hdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301067 I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001068 adjusted_mode->crtc_vdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301069 I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001070 adjusted_mode->crtc_vtotal);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301071 }
1072
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301073 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
1074 I915_WRITE(MIPI_HFP_COUNT(port), hfp);
Jani Nikula4e646492013-08-27 15:12:20 +03001075
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301076 /* meaningful for video mode non-burst sync pulse mode only,
1077 * can be zero for non-burst sync events and burst modes */
1078 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
1079 I915_WRITE(MIPI_HBP_COUNT(port), hbp);
Jani Nikula4e646492013-08-27 15:12:20 +03001080
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301081 /* vertical values are in terms of lines */
1082 I915_WRITE(MIPI_VFP_COUNT(port), vfp);
1083 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
1084 I915_WRITE(MIPI_VBP_COUNT(port), vbp);
1085 }
Jani Nikula4e646492013-08-27 15:12:20 +03001086}
1087
Jani Nikula1e78aa02016-03-16 12:21:40 +02001088static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
1089{
1090 switch (fmt) {
1091 case MIPI_DSI_FMT_RGB888:
1092 return VID_MODE_FORMAT_RGB888;
1093 case MIPI_DSI_FMT_RGB666:
1094 return VID_MODE_FORMAT_RGB666;
1095 case MIPI_DSI_FMT_RGB666_PACKED:
1096 return VID_MODE_FORMAT_RGB666_PACKED;
1097 case MIPI_DSI_FMT_RGB565:
1098 return VID_MODE_FORMAT_RGB565;
1099 default:
1100 MISSING_CASE(fmt);
1101 return VID_MODE_FORMAT_RGB666;
1102 }
1103}
1104
Daniel Vetter07e4fb92014-04-24 23:54:59 +02001105static void intel_dsi_prepare(struct intel_encoder *intel_encoder)
Jani Nikula4e646492013-08-27 15:12:20 +03001106{
1107 struct drm_encoder *encoder = &intel_encoder->base;
1108 struct drm_device *dev = encoder->dev;
1109 struct drm_i915_private *dev_priv = dev->dev_private;
1110 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
1111 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001112 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301113 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001114 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001115 u32 val, tmp;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301116 u16 mode_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001117
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001118 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
Jani Nikula4e646492013-08-27 15:12:20 +03001119
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001120 mode_hdisplay = adjusted_mode->crtc_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001121
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301122 if (intel_dsi->dual_link) {
1123 mode_hdisplay /= 2;
1124 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1125 mode_hdisplay += intel_dsi->pixel_overlap;
1126 }
Jani Nikula4e646492013-08-27 15:12:20 +03001127
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301128 for_each_dsi_port(port, intel_dsi->ports) {
Wayne Boyer666a4532015-12-09 12:29:35 -08001129 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301130 /*
1131 * escape clock divider, 20MHz, shared for A and C.
1132 * device ready must be off when doing this! txclkesc?
1133 */
1134 tmp = I915_READ(MIPI_CTRL(PORT_A));
1135 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
1136 I915_WRITE(MIPI_CTRL(PORT_A), tmp |
1137 ESCAPE_CLOCK_DIVIDER_1);
Jani Nikula4e646492013-08-27 15:12:20 +03001138
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301139 /* read request priority is per pipe */
1140 tmp = I915_READ(MIPI_CTRL(port));
1141 tmp &= ~READ_REQUEST_PRIORITY_MASK;
1142 I915_WRITE(MIPI_CTRL(port), tmp |
1143 READ_REQUEST_PRIORITY_HIGH);
1144 } else if (IS_BROXTON(dev)) {
Deepak M56c48972015-12-09 20:14:04 +05301145 enum pipe pipe = intel_crtc->pipe;
1146
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301147 tmp = I915_READ(MIPI_CTRL(port));
1148 tmp &= ~BXT_PIPE_SELECT_MASK;
1149
Deepak M56c48972015-12-09 20:14:04 +05301150 tmp |= BXT_PIPE_SELECT(pipe);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301151 I915_WRITE(MIPI_CTRL(port), tmp);
1152 }
Jani Nikula4e646492013-08-27 15:12:20 +03001153
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301154 /* XXX: why here, why like this? handling in irq handler?! */
1155 I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
1156 I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
1157
1158 I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
1159
1160 I915_WRITE(MIPI_DPI_RESOLUTION(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001161 adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301162 mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
1163 }
Jani Nikula4e646492013-08-27 15:12:20 +03001164
1165 set_dsi_timings(encoder, adjusted_mode);
1166
1167 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
1168 if (is_cmd_mode(intel_dsi)) {
1169 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
1170 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
1171 } else {
1172 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001173 val |= pixel_format_to_reg(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001174 }
Jani Nikula4e646492013-08-27 15:12:20 +03001175
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301176 tmp = 0;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301177 if (intel_dsi->eotp_pkt == 0)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301178 tmp |= EOT_DISABLE;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301179 if (intel_dsi->clock_stop)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301180 tmp |= CLOCKSTOP;
Jani Nikula4e646492013-08-27 15:12:20 +03001181
Jani Nikulaf90e8c32016-06-03 17:57:05 +03001182 if (IS_BROXTON(dev_priv)) {
1183 tmp |= BXT_DPHY_DEFEATURE_EN;
1184 if (!is_cmd_mode(intel_dsi))
1185 tmp |= BXT_DEFEATURE_DPI_FIFO_CTR;
1186 }
1187
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301188 for_each_dsi_port(port, intel_dsi->ports) {
1189 I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
Jani Nikula4e646492013-08-27 15:12:20 +03001190
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301191 /* timeouts for recovery. one frame IIUC. if counter expires,
1192 * EOT and stop state. */
Shobhit Kumarcf4dbd22014-04-14 11:18:25 +05301193
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301194 /*
1195 * In burst mode, value greater than one DPI line Time in byte
1196 * clock (txbyteclkhs) To timeout this timer 1+ of the above
1197 * said value is recommended.
1198 *
1199 * In non-burst mode, Value greater than one DPI frame time in
1200 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1201 * said value is recommended.
1202 *
1203 * In DBI only mode, value greater than one DBI frame time in
1204 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1205 * said value is recommended.
1206 */
Jani Nikula4e646492013-08-27 15:12:20 +03001207
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301208 if (is_vid_mode(intel_dsi) &&
1209 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
1210 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001211 txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001212 intel_dsi->lane_count,
1213 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301214 } else {
1215 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001216 txbyteclkhs(adjusted_mode->crtc_vtotal *
1217 adjusted_mode->crtc_htotal,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001218 bpp, intel_dsi->lane_count,
1219 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301220 }
1221 I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
1222 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
1223 intel_dsi->turn_arnd_val);
1224 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
1225 intel_dsi->rst_timer_val);
Jani Nikula4e646492013-08-27 15:12:20 +03001226
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301227 /* dphy stuff */
Jani Nikula4e646492013-08-27 15:12:20 +03001228
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301229 /* in terms of low power clock */
1230 I915_WRITE(MIPI_INIT_COUNT(port),
1231 txclkesc(intel_dsi->escape_clk_div, 100));
Jani Nikula4e646492013-08-27 15:12:20 +03001232
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301233 if (IS_BROXTON(dev) && (!intel_dsi->dual_link)) {
1234 /*
1235 * BXT spec says write MIPI_INIT_COUNT for
1236 * both the ports, even if only one is
1237 * getting used. So write the other port
1238 * if not in dual link mode.
1239 */
1240 I915_WRITE(MIPI_INIT_COUNT(port ==
1241 PORT_A ? PORT_C : PORT_A),
1242 intel_dsi->init_count);
1243 }
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301244
1245 /* recovery disables */
Shobhit Kumar87c54d02015-02-03 12:17:35 +05301246 I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301247
1248 /* in terms of low power clock */
1249 I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
1250
1251 /* in terms of txbyteclkhs. actual high to low switch +
1252 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
1253 *
1254 * XXX: write MIPI_STOP_STATE_STALL?
1255 */
1256 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
1257 intel_dsi->hs_to_lp_count);
1258
1259 /* XXX: low power clock equivalence in terms of byte clock.
1260 * the number of byte clocks occupied in one low power clock.
1261 * based on txbyteclkhs and txclkesc.
1262 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
1263 * ) / 105.???
1264 */
1265 I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
1266
1267 /* the bw essential for transmitting 16 long packets containing
1268 * 252 bytes meant for dcs write memory command is programmed in
1269 * this register in terms of byte clocks. based on dsi transfer
1270 * rate and the number of lanes configured the time taken to
1271 * transmit 16 long packets in a dsi stream varies. */
1272 I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
1273
1274 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
1275 intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
1276 intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
1277
1278 if (is_vid_mode(intel_dsi))
1279 /* Some panels might have resolution which is not a
1280 * multiple of 64 like 1366 x 768. Enable RANDOM
1281 * resolution support for such panels by default */
1282 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
1283 intel_dsi->video_frmt_cfg_bits |
1284 intel_dsi->video_mode_format |
1285 IP_TG_CONFIG |
1286 RANDOM_DPI_DISPLAY_RESOLUTION);
1287 }
Jani Nikula4e646492013-08-27 15:12:20 +03001288}
1289
1290static enum drm_connector_status
1291intel_dsi_detect(struct drm_connector *connector, bool force)
1292{
Jani Nikula36d21f42015-01-16 14:27:20 +02001293 return connector_status_connected;
Jani Nikula4e646492013-08-27 15:12:20 +03001294}
1295
1296static int intel_dsi_get_modes(struct drm_connector *connector)
1297{
1298 struct intel_connector *intel_connector = to_intel_connector(connector);
1299 struct drm_display_mode *mode;
1300
1301 DRM_DEBUG_KMS("\n");
1302
1303 if (!intel_connector->panel.fixed_mode) {
1304 DRM_DEBUG_KMS("no fixed mode\n");
1305 return 0;
1306 }
1307
1308 mode = drm_mode_duplicate(connector->dev,
1309 intel_connector->panel.fixed_mode);
1310 if (!mode) {
1311 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
1312 return 0;
1313 }
1314
1315 drm_mode_probed_add(connector, mode);
1316 return 1;
1317}
1318
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001319static int intel_dsi_set_property(struct drm_connector *connector,
1320 struct drm_property *property,
1321 uint64_t val)
1322{
1323 struct drm_device *dev = connector->dev;
1324 struct intel_connector *intel_connector = to_intel_connector(connector);
1325 struct drm_crtc *crtc;
1326 int ret;
1327
1328 ret = drm_object_property_set_value(&connector->base, property, val);
1329 if (ret)
1330 return ret;
1331
1332 if (property == dev->mode_config.scaling_mode_property) {
1333 if (val == DRM_MODE_SCALE_NONE) {
1334 DRM_DEBUG_KMS("no scaling not supported\n");
1335 return -EINVAL;
1336 }
Ville Syrjälä234126c2016-04-12 22:14:38 +03001337 if (HAS_GMCH_DISPLAY(dev) &&
1338 val == DRM_MODE_SCALE_CENTER) {
1339 DRM_DEBUG_KMS("centering not supported\n");
1340 return -EINVAL;
1341 }
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001342
1343 if (intel_connector->panel.fitting_mode == val)
1344 return 0;
1345
1346 intel_connector->panel.fitting_mode = val;
1347 }
1348
1349 crtc = intel_attached_encoder(connector)->base.crtc;
1350 if (crtc && crtc->state->enable) {
1351 /*
1352 * If the CRTC is enabled, the display will be changed
1353 * according to the new panel fitting mode.
1354 */
1355 intel_crtc_restore_mode(crtc);
1356 }
1357
1358 return 0;
1359}
1360
Jani Nikula593e0622015-01-23 15:30:56 +02001361static void intel_dsi_connector_destroy(struct drm_connector *connector)
Jani Nikula4e646492013-08-27 15:12:20 +03001362{
1363 struct intel_connector *intel_connector = to_intel_connector(connector);
1364
1365 DRM_DEBUG_KMS("\n");
1366 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +03001367 drm_connector_cleanup(connector);
1368 kfree(connector);
1369}
1370
Jani Nikula593e0622015-01-23 15:30:56 +02001371static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
1372{
1373 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
1374
1375 if (intel_dsi->panel) {
1376 drm_panel_detach(intel_dsi->panel);
1377 /* XXX: Logically this call belongs in the panel driver. */
1378 drm_panel_remove(intel_dsi->panel);
1379 }
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301380
1381 /* dispose of the gpios */
1382 if (intel_dsi->gpio_panel)
1383 gpiod_put(intel_dsi->gpio_panel);
1384
Jani Nikula593e0622015-01-23 15:30:56 +02001385 intel_encoder_destroy(encoder);
1386}
1387
Jani Nikula4e646492013-08-27 15:12:20 +03001388static const struct drm_encoder_funcs intel_dsi_funcs = {
Jani Nikula593e0622015-01-23 15:30:56 +02001389 .destroy = intel_dsi_encoder_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001390};
1391
1392static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
1393 .get_modes = intel_dsi_get_modes,
1394 .mode_valid = intel_dsi_mode_valid,
Jani Nikula4e646492013-08-27 15:12:20 +03001395};
1396
1397static const struct drm_connector_funcs intel_dsi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001398 .dpms = drm_atomic_helper_connector_dpms,
Jani Nikula4e646492013-08-27 15:12:20 +03001399 .detect = intel_dsi_detect,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01001400 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01001401 .early_unregister = intel_connector_unregister,
Jani Nikula593e0622015-01-23 15:30:56 +02001402 .destroy = intel_dsi_connector_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001403 .fill_modes = drm_helper_probe_single_connector_modes,
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001404 .set_property = intel_dsi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001405 .atomic_get_property = intel_connector_atomic_get_property,
Matt Roperc6f95f22015-01-22 16:50:32 -08001406 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001407 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jani Nikula4e646492013-08-27 15:12:20 +03001408};
1409
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001410static void intel_dsi_add_properties(struct intel_connector *connector)
1411{
1412 struct drm_device *dev = connector->base.dev;
1413
1414 if (connector->panel.fixed_mode) {
1415 drm_mode_create_scaling_mode_property(dev);
1416 drm_object_attach_property(&connector->base.base,
1417 dev->mode_config.scaling_mode_property,
1418 DRM_MODE_SCALE_ASPECT);
1419 connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
1420 }
1421}
1422
Damien Lespiau4328633d2014-05-28 12:30:56 +01001423void intel_dsi_init(struct drm_device *dev)
Jani Nikula4e646492013-08-27 15:12:20 +03001424{
1425 struct intel_dsi *intel_dsi;
1426 struct intel_encoder *intel_encoder;
1427 struct drm_encoder *encoder;
1428 struct intel_connector *intel_connector;
1429 struct drm_connector *connector;
Jani Nikula593e0622015-01-23 15:30:56 +02001430 struct drm_display_mode *scan, *fixed_mode = NULL;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301431 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula7e9804f2015-01-16 14:27:23 +02001432 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +03001433 unsigned int i;
1434
1435 DRM_DEBUG_KMS("\n");
1436
Shobhit Kumar3e6bd012014-05-27 19:33:59 +05301437 /* There is no detection method for MIPI so rely on VBT */
Jani Nikula7137aec2016-03-16 12:43:32 +02001438 if (!intel_bios_is_dsi_present(dev_priv, &port))
Damien Lespiau4328633d2014-05-28 12:30:56 +01001439 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001440
Wayne Boyer666a4532015-12-09 12:29:35 -08001441 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301442 dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
Shashank Sharmac6c794a2016-03-22 12:01:50 +02001443 } else if (IS_BROXTON(dev)) {
1444 dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301445 } else {
1446 DRM_ERROR("Unsupported Mipi device to reg base");
Christoph Jaeger868d6652014-06-13 21:51:22 +02001447 return;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301448 }
1449
Jani Nikula4e646492013-08-27 15:12:20 +03001450 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
1451 if (!intel_dsi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001452 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001453
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001454 intel_connector = intel_connector_alloc();
Jani Nikula4e646492013-08-27 15:12:20 +03001455 if (!intel_connector) {
1456 kfree(intel_dsi);
Damien Lespiau4328633d2014-05-28 12:30:56 +01001457 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001458 }
1459
1460 intel_encoder = &intel_dsi->base;
1461 encoder = &intel_encoder->base;
1462 intel_dsi->attached_connector = intel_connector;
1463
Jani Nikula4e646492013-08-27 15:12:20 +03001464 connector = &intel_connector->base;
1465
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001466 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
Ville Syrjälä580d8ed2016-05-27 20:59:24 +03001467 "DSI %c", port_name(port));
Jani Nikula4e646492013-08-27 15:12:20 +03001468
Jani Nikula4e646492013-08-27 15:12:20 +03001469 intel_encoder->compute_config = intel_dsi_compute_config;
Jani Nikula4e646492013-08-27 15:12:20 +03001470 intel_encoder->pre_enable = intel_dsi_pre_enable;
Shobhit Kumar2634fd72014-04-09 13:59:31 +05301471 intel_encoder->enable = intel_dsi_enable_nop;
Imre Deakc315faf2014-05-27 19:00:09 +03001472 intel_encoder->disable = intel_dsi_pre_disable;
Jani Nikula4e646492013-08-27 15:12:20 +03001473 intel_encoder->post_disable = intel_dsi_post_disable;
1474 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
1475 intel_encoder->get_config = intel_dsi_get_config;
1476
1477 intel_connector->get_hw_state = intel_connector_get_hw_state;
1478
Jani Nikula2e85ab42016-03-18 17:05:44 +02001479 /*
1480 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
1481 * port C. BXT isn't limited like this.
1482 */
1483 if (IS_BROXTON(dev_priv))
1484 intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
1485 else if (port == PORT_A)
Jani Nikula701d25b2016-03-18 17:05:43 +02001486 intel_encoder->crtc_mask = BIT(PIPE_A);
Jani Nikula7137aec2016-03-16 12:43:32 +02001487 else
Jani Nikula701d25b2016-03-18 17:05:43 +02001488 intel_encoder->crtc_mask = BIT(PIPE_B);
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001489
Jani Nikula90198352016-04-26 16:14:25 +03001490 if (dev_priv->vbt.dsi.config->dual_link) {
Jani Nikula701d25b2016-03-18 17:05:43 +02001491 intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
Jani Nikula90198352016-04-26 16:14:25 +03001492
1493 switch (dev_priv->vbt.dsi.config->dl_dcs_backlight_ports) {
1494 case DL_DCS_PORT_A:
1495 intel_dsi->dcs_backlight_ports = BIT(PORT_A);
1496 break;
1497 case DL_DCS_PORT_C:
1498 intel_dsi->dcs_backlight_ports = BIT(PORT_C);
1499 break;
1500 default:
1501 case DL_DCS_PORT_A_AND_C:
1502 intel_dsi->dcs_backlight_ports = BIT(PORT_A) | BIT(PORT_C);
1503 break;
1504 }
Deepak M1ecc1c62016-04-26 16:14:26 +03001505
1506 switch (dev_priv->vbt.dsi.config->dl_dcs_cabc_ports) {
1507 case DL_DCS_PORT_A:
1508 intel_dsi->dcs_cabc_ports = BIT(PORT_A);
1509 break;
1510 case DL_DCS_PORT_C:
1511 intel_dsi->dcs_cabc_ports = BIT(PORT_C);
1512 break;
1513 default:
1514 case DL_DCS_PORT_A_AND_C:
1515 intel_dsi->dcs_cabc_ports = BIT(PORT_A) | BIT(PORT_C);
1516 break;
1517 }
Jani Nikula90198352016-04-26 16:14:25 +03001518 } else {
Jani Nikula701d25b2016-03-18 17:05:43 +02001519 intel_dsi->ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001520 intel_dsi->dcs_backlight_ports = BIT(port);
Deepak M1ecc1c62016-04-26 16:14:26 +03001521 intel_dsi->dcs_cabc_ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001522 }
Gaurav K Singh82425782015-08-03 15:45:32 +05301523
Deepak M1ecc1c62016-04-26 16:14:26 +03001524 if (!dev_priv->vbt.dsi.config->cabc_supported)
1525 intel_dsi->dcs_cabc_ports = 0;
1526
Jani Nikula7e9804f2015-01-16 14:27:23 +02001527 /* Create a DSI host (and a device) for each port. */
1528 for_each_dsi_port(port, intel_dsi->ports) {
1529 struct intel_dsi_host *host;
1530
1531 host = intel_dsi_host_init(intel_dsi, port);
1532 if (!host)
1533 goto err;
1534
1535 intel_dsi->dsi_hosts[port] = host;
1536 }
1537
Jani Nikula593e0622015-01-23 15:30:56 +02001538 for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
1539 intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
1540 intel_dsi_drivers[i].panel_id);
1541 if (intel_dsi->panel)
Jani Nikula4e646492013-08-27 15:12:20 +03001542 break;
1543 }
1544
Jani Nikula593e0622015-01-23 15:30:56 +02001545 if (!intel_dsi->panel) {
Jani Nikula4e646492013-08-27 15:12:20 +03001546 DRM_DEBUG_KMS("no device found\n");
1547 goto err;
1548 }
1549
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301550 /*
1551 * In case of BYT with CRC PMIC, we need to use GPIO for
1552 * Panel control.
1553 */
1554 if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) {
1555 intel_dsi->gpio_panel =
1556 gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
1557
1558 if (IS_ERR(intel_dsi->gpio_panel)) {
1559 DRM_ERROR("Failed to own gpio for panel control\n");
1560 intel_dsi->gpio_panel = NULL;
1561 }
1562 }
1563
Jani Nikula4e646492013-08-27 15:12:20 +03001564 intel_encoder->type = INTEL_OUTPUT_DSI;
Ville Syrjäläbc079e82014-03-03 16:15:28 +02001565 intel_encoder->cloneable = 0;
Jani Nikula4e646492013-08-27 15:12:20 +03001566 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
1567 DRM_MODE_CONNECTOR_DSI);
1568
1569 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
1570
1571 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
1572 connector->interlace_allowed = false;
1573 connector->doublescan_allowed = false;
1574
1575 intel_connector_attach_encoder(intel_connector, intel_encoder);
1576
Jani Nikula593e0622015-01-23 15:30:56 +02001577 drm_panel_attach(intel_dsi->panel, connector);
1578
1579 mutex_lock(&dev->mode_config.mutex);
1580 drm_panel_get_modes(intel_dsi->panel);
1581 list_for_each_entry(scan, &connector->probed_modes, head) {
1582 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
1583 fixed_mode = drm_mode_duplicate(dev, scan);
1584 break;
1585 }
1586 }
1587 mutex_unlock(&dev->mode_config.mutex);
1588
Jani Nikula4e646492013-08-27 15:12:20 +03001589 if (!fixed_mode) {
1590 DRM_DEBUG_KMS("no fixed mode\n");
1591 goto err;
1592 }
1593
Ville Syrjälädf457242016-05-31 12:08:34 +03001594 connector->display_info.width_mm = fixed_mode->width_mm;
1595 connector->display_info.height_mm = fixed_mode->height_mm;
1596
Vandana Kannan4b6ed682014-02-11 14:26:36 +05301597 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Chris Wilsonfda9ee92016-06-24 14:00:13 +01001598 intel_panel_setup_backlight(connector, INVALID_PIPE);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001599
1600 intel_dsi_add_properties(intel_connector);
1601
Damien Lespiau4328633d2014-05-28 12:30:56 +01001602 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001603
1604err:
1605 drm_encoder_cleanup(&intel_encoder->base);
1606 kfree(intel_dsi);
1607 kfree(intel_connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001608}