blob: 598ac658e361d72304a524d2b09afe875c6c5c85 [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
Hans de Goede3870b892017-02-28 11:26:16 +020083void 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;
Chris Wilsonfac5e232016-07-04 11:34:36 +010087 struct drm_i915_private *dev_priv = to_i915(dev);
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;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100134 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula7e9804f2015-01-16 14:27:23 +0200135 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;
Chris Wilsone7615b32016-06-30 15:33:16 +0100189 if (intel_wait_for_register(dev_priv,
190 MIPI_INTR_STAT(port),
191 data_mask, data_mask,
192 50))
Jani Nikula7e9804f2015-01-16 14:27:23 +0200193 DRM_ERROR("Timeout waiting for read data.\n");
194
195 read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
196 }
197
198 /* XXX: fix for reads and writes */
199 return 4 + packet.payload_length;
200}
201
202static int intel_dsi_host_attach(struct mipi_dsi_host *host,
203 struct mipi_dsi_device *dsi)
204{
205 return 0;
206}
207
208static int intel_dsi_host_detach(struct mipi_dsi_host *host,
209 struct mipi_dsi_device *dsi)
210{
211 return 0;
212}
213
214static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
215 .attach = intel_dsi_host_attach,
216 .detach = intel_dsi_host_detach,
217 .transfer = intel_dsi_host_transfer,
218};
219
220static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
221 enum port port)
222{
223 struct intel_dsi_host *host;
224 struct mipi_dsi_device *device;
225
226 host = kzalloc(sizeof(*host), GFP_KERNEL);
227 if (!host)
228 return NULL;
229
230 host->base.ops = &intel_dsi_host_ops;
231 host->intel_dsi = intel_dsi;
232 host->port = port;
233
234 /*
235 * We should call mipi_dsi_host_register(&host->base) here, but we don't
236 * have a host->dev, and we don't have OF stuff either. So just use the
237 * dsi framework as a library and hope for the best. Create the dsi
238 * devices by ourselves here too. Need to be careful though, because we
239 * don't initialize any of the driver model devices here.
240 */
241 device = kzalloc(sizeof(*device), GFP_KERNEL);
242 if (!device) {
243 kfree(host);
244 return NULL;
245 }
246
247 device->host = &host->base;
248 host->device = device;
249
250 return host;
251}
252
Jani Nikulaa2581a92015-01-16 14:27:26 +0200253/*
254 * send a video mode command
255 *
256 * XXX: commands with data in MIPI_DPI_DATA?
257 */
258static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
259 enum port port)
260{
261 struct drm_encoder *encoder = &intel_dsi->base.base;
262 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100263 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikulaa2581a92015-01-16 14:27:26 +0200264 u32 mask;
265
266 /* XXX: pipe, hs */
267 if (hs)
268 cmd &= ~DPI_LP_MODE;
269 else
270 cmd |= DPI_LP_MODE;
271
272 /* clear bit */
273 I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
274
275 /* XXX: old code skips write if control unchanged */
276 if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
277 DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
278
279 I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
280
281 mask = SPL_PKT_SENT_INTERRUPT;
Chris Wilson2af05072016-06-30 15:33:17 +0100282 if (intel_wait_for_register(dev_priv,
283 MIPI_INTR_STAT(port), mask, mask,
284 100))
Jani Nikulaa2581a92015-01-16 14:27:26 +0200285 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
286
287 return 0;
288}
289
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530290static void band_gap_reset(struct drm_i915_private *dev_priv)
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300291{
Ville Syrjäläa5805162015-05-26 20:42:30 +0300292 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300293
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530294 vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
295 vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
296 vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
297 udelay(150);
298 vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
299 vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300300
Ville Syrjäläa5805162015-05-26 20:42:30 +0300301 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300302}
303
Jani Nikula4e646492013-08-27 15:12:20 +0300304static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
305{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530306 return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300307}
308
309static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
310{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530311 return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300312}
313
Jani Nikula4e646492013-08-27 15:12:20 +0300314static bool intel_dsi_compute_config(struct intel_encoder *encoder,
Maarten Lankhorst0a478c22016-08-09 17:04:05 +0200315 struct intel_crtc_state *pipe_config,
316 struct drm_connector_state *conn_state)
Jani Nikula4e646492013-08-27 15:12:20 +0300317{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100318 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikula4e646492013-08-27 15:12:20 +0300319 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
320 base);
321 struct intel_connector *intel_connector = intel_dsi->attached_connector;
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300322 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
323 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Jani Nikulaa65347b2015-11-27 12:21:46 +0200324 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300325 int ret;
Jani Nikula4e646492013-08-27 15:12:20 +0300326
327 DRM_DEBUG_KMS("\n");
328
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300329 if (fixed_mode) {
Jani Nikula4e646492013-08-27 15:12:20 +0300330 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
331
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300332 if (HAS_GMCH_DISPLAY(dev_priv))
333 intel_gmch_panel_fitting(crtc, pipe_config,
334 intel_connector->panel.fitting_mode);
335 else
336 intel_pch_panel_fitting(crtc, pipe_config,
337 intel_connector->panel.fitting_mode);
338 }
339
Shobhit Kumarf573de52014-07-30 20:32:37 +0530340 /* DSI uses short packets for sync events, so clear mode flags for DSI */
341 adjusted_mode->flags = 0;
342
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200343 if (IS_GEN9_LP(dev_priv)) {
Jani Nikula4d1de972016-03-18 17:05:42 +0200344 /* Dual link goes to DSI transcoder A. */
345 if (intel_dsi->ports == BIT(PORT_C))
346 pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
347 else
348 pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
349 }
350
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300351 ret = intel_compute_dsi_pll(encoder, pipe_config);
352 if (ret)
353 return false;
354
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300355 pipe_config->clock_set = true;
356
Jani Nikula4e646492013-08-27 15:12:20 +0300357 return true;
358}
359
Shashank Sharma37ab0812015-09-01 19:41:42 +0530360static void bxt_dsi_device_ready(struct intel_encoder *encoder)
Gaurav K Singh5505a242014-12-04 10:58:47 +0530361{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100362 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Gaurav K Singh5505a242014-12-04 10:58:47 +0530363 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530364 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530365 u32 val;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530366
Shashank Sharma37ab0812015-09-01 19:41:42 +0530367 DRM_DEBUG_KMS("\n");
Gaurav K Singha9da9bc2014-12-05 14:13:41 +0530368
Uma Shankareba4daf2017-02-08 16:20:54 +0530369 /* Enable MIPI PHY transparent latch */
Gaurav K Singh369602d2014-12-05 14:09:28 +0530370 for_each_dsi_port(port, intel_dsi->ports) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530371 val = I915_READ(BXT_MIPI_PORT_CTRL(port));
372 I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
373 usleep_range(2000, 2500);
Uma Shankareba4daf2017-02-08 16:20:54 +0530374 }
Shashank Sharma37ab0812015-09-01 19:41:42 +0530375
Uma Shankareba4daf2017-02-08 16:20:54 +0530376 /* Clear ULPS and set device ready */
377 for_each_dsi_port(port, intel_dsi->ports) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530378 val = I915_READ(MIPI_DEVICE_READY(port));
379 val &= ~ULPS_STATE_MASK;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530380 I915_WRITE(MIPI_DEVICE_READY(port), val);
Uma Shankareba4daf2017-02-08 16:20:54 +0530381 usleep_range(2000, 2500);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530382 val |= DEVICE_READY;
383 I915_WRITE(MIPI_DEVICE_READY(port), val);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530384 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530385}
386
Shashank Sharma37ab0812015-09-01 19:41:42 +0530387static void vlv_dsi_device_ready(struct intel_encoder *encoder)
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530388{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100389 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530390 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
391 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530392 u32 val;
393
394 DRM_DEBUG_KMS("\n");
395
Ville Syrjäläa5805162015-05-26 20:42:30 +0300396 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530397 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
398 * needed everytime after power gate */
399 vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300400 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530401
402 /* bandgap reset is needed after everytime we do power gate */
403 band_gap_reset(dev_priv);
404
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530405 for_each_dsi_port(port, intel_dsi->ports) {
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530406
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530407 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
408 usleep_range(2500, 3000);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530409
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530410 /* Enable MIPI PHY transparent latch
411 * Common bit for both MIPI Port A & MIPI Port C
412 * No similar bit in MIPI Port C reg
413 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530414 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530415 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530416 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530417
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530418 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
419 usleep_range(2500, 3000);
420
421 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
422 usleep_range(2500, 3000);
423 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530424}
Jani Nikula4e646492013-08-27 15:12:20 +0300425
Shashank Sharma37ab0812015-09-01 19:41:42 +0530426static void intel_dsi_device_ready(struct intel_encoder *encoder)
427{
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100428 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530429
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100430 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Shashank Sharma37ab0812015-09-01 19:41:42 +0530431 vlv_dsi_device_ready(encoder);
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200432 else if (IS_GEN9_LP(dev_priv))
Shashank Sharma37ab0812015-09-01 19:41:42 +0530433 bxt_dsi_device_ready(encoder);
434}
435
436static void intel_dsi_port_enable(struct intel_encoder *encoder)
437{
438 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100439 struct drm_i915_private *dev_priv = to_i915(dev);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530440 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
441 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
442 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530443
444 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200445 u32 temp;
Deepak M60438012017-02-14 18:46:16 +0530446 if (IS_GEN9_LP(dev_priv)) {
447 for_each_dsi_port(port, intel_dsi->ports) {
448 temp = I915_READ(MIPI_CTRL(port));
449 temp &= ~BXT_PIXEL_OVERLAP_CNT_MASK |
450 intel_dsi->pixel_overlap <<
451 BXT_PIXEL_OVERLAP_CNT_SHIFT;
452 I915_WRITE(MIPI_CTRL(port), temp);
453 }
454 } else {
455 temp = I915_READ(VLV_CHICKEN_3);
456 temp &= ~PIXEL_OVERLAP_CNT_MASK |
Shashank Sharma37ab0812015-09-01 19:41:42 +0530457 intel_dsi->pixel_overlap <<
458 PIXEL_OVERLAP_CNT_SHIFT;
Deepak M60438012017-02-14 18:46:16 +0530459 I915_WRITE(VLV_CHICKEN_3, temp);
460 }
Shashank Sharma37ab0812015-09-01 19:41:42 +0530461 }
462
463 for_each_dsi_port(port, intel_dsi->ports) {
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200464 i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200465 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
466 u32 temp;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530467
468 temp = I915_READ(port_ctrl);
469
470 temp &= ~LANE_CONFIGURATION_MASK;
471 temp &= ~DUAL_LINK_MODE_MASK;
472
Jani Nikula701d25b2016-03-18 17:05:43 +0200473 if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530474 temp |= (intel_dsi->dual_link - 1)
475 << DUAL_LINK_MODE_SHIFT;
Bob Paauwe812b1d22016-11-21 14:24:06 -0800476 if (IS_BROXTON(dev_priv))
477 temp |= LANE_CONFIGURATION_DUAL_LINK_A;
478 else
479 temp |= intel_crtc->pipe ?
Shashank Sharma37ab0812015-09-01 19:41:42 +0530480 LANE_CONFIGURATION_DUAL_LINK_B :
481 LANE_CONFIGURATION_DUAL_LINK_A;
482 }
483 /* assert ip_tg_enable signal */
484 I915_WRITE(port_ctrl, temp | DPI_ENABLE);
485 POSTING_READ(port_ctrl);
486 }
487}
488
489static void intel_dsi_port_disable(struct intel_encoder *encoder)
490{
491 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100492 struct drm_i915_private *dev_priv = to_i915(dev);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530493 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
494 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530495
496 for_each_dsi_port(port, intel_dsi->ports) {
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200497 i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200498 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
499 u32 temp;
500
Shashank Sharma37ab0812015-09-01 19:41:42 +0530501 /* de-assert ip_tg_enable signal */
Shashank Sharmab389a452015-09-01 19:41:44 +0530502 temp = I915_READ(port_ctrl);
503 I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
504 POSTING_READ(port_ctrl);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530505 }
506}
507
Jani Nikula4e646492013-08-27 15:12:20 +0300508static void intel_dsi_enable(struct intel_encoder *encoder)
509{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530510 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100511 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula4e646492013-08-27 15:12:20 +0300512 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikula4934b652015-01-22 15:01:35 +0200513 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300514
515 DRM_DEBUG_KMS("\n");
516
Jani Nikula4934b652015-01-22 15:01:35 +0200517 if (is_cmd_mode(intel_dsi)) {
518 for_each_dsi_port(port, intel_dsi->ports)
519 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
520 } else {
Jani Nikula4e646492013-08-27 15:12:20 +0300521 msleep(20); /* XXX */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200522 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200523 dpi_send_cmd(intel_dsi, TURN_ON, false, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300524 msleep(100);
525
Jani Nikula593e0622015-01-23 15:30:56 +0200526 drm_panel_enable(intel_dsi->panel);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530527
Gaurav K Singh5505a242014-12-04 10:58:47 +0530528 intel_dsi_port_enable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300529 }
Shobhit Kumarb029e662015-06-26 14:32:10 +0530530
531 intel_panel_enable_backlight(intel_dsi->attached_connector);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530532}
Jani Nikula4e646492013-08-27 15:12:20 +0300533
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +0200534static void intel_dsi_prepare(struct intel_encoder *intel_encoder,
535 struct intel_crtc_state *pipe_config);
Jani Nikulae3488e72015-11-27 12:21:44 +0200536
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200537static void intel_dsi_pre_enable(struct intel_encoder *encoder,
538 struct intel_crtc_state *pipe_config,
539 struct drm_connector_state *conn_state)
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530540{
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +0200541 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530542 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Uma Shankar1881a422017-01-25 19:43:23 +0530543 u32 val;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530544
545 DRM_DEBUG_KMS("\n");
546
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200547 /*
548 * The BIOS may leave the PLL in a wonky state where it doesn't
549 * lock. It needs to be fully powered down to fix it.
550 */
551 intel_disable_dsi_pll(encoder);
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +0200552 intel_enable_dsi_pll(encoder, pipe_config);
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200553
Uma Shankar1881a422017-01-25 19:43:23 +0530554 if (IS_BROXTON(dev_priv)) {
555 /* Add MIPI IO reset programming for modeset */
556 val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
557 I915_WRITE(BXT_P_CR_GT_DISP_PWRON,
558 val | MIPIO_RST_CTRL);
559
560 /* Power up DSI regulator */
561 I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
562 I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, 0);
563 }
564
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +0200565 intel_dsi_prepare(encoder, pipe_config);
Jani Nikulae3488e72015-11-27 12:21:44 +0200566
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530567 /* Panel Enable over CRC PMIC */
568 if (intel_dsi->gpio_panel)
569 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
570
571 msleep(intel_dsi->panel_on_delay);
572
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300573 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
574 u32 val;
575
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300576 /* Disable DPOunit clock gating, can stall pipe */
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300577 val = I915_READ(DSPCLK_GATE_D);
578 val |= DPOUNIT_CLOCK_GATE_DISABLE;
579 I915_WRITE(DSPCLK_GATE_D, val);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530580 }
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530581
582 /* put device in ready state */
583 intel_dsi_device_ready(encoder);
584
Jani Nikula593e0622015-01-23 15:30:56 +0200585 drm_panel_prepare(intel_dsi->panel);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530586
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530587 /* Enable port in pre-enable phase itself because as per hw team
588 * recommendation, port should be enabled befor plane & pipe */
589 intel_dsi_enable(encoder);
590}
591
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200592static void intel_dsi_enable_nop(struct intel_encoder *encoder,
593 struct intel_crtc_state *pipe_config,
594 struct drm_connector_state *conn_state)
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530595{
596 DRM_DEBUG_KMS("\n");
597
598 /* for DSI port enable has to be done before pipe
599 * and plane enable, so port enable is done in
600 * pre_enable phase itself unlike other encoders
601 */
Jani Nikula4e646492013-08-27 15:12:20 +0300602}
603
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200604static void intel_dsi_pre_disable(struct intel_encoder *encoder,
605 struct intel_crtc_state *old_crtc_state,
606 struct drm_connector_state *old_conn_state)
Imre Deakc315faf2014-05-27 19:00:09 +0300607{
Uma Shankarbbdf0b22017-02-08 16:20:56 +0530608 struct drm_device *dev = encoder->base.dev;
609 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakc315faf2014-05-27 19:00:09 +0300610 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulaf03e4172015-01-16 14:27:16 +0200611 enum port port;
Imre Deakc315faf2014-05-27 19:00:09 +0300612
613 DRM_DEBUG_KMS("\n");
614
Shobhit Kumarb029e662015-06-26 14:32:10 +0530615 intel_panel_disable_backlight(intel_dsi->attached_connector);
616
Uma Shankarbbdf0b22017-02-08 16:20:56 +0530617 /*
618 * Disable Device ready before the port shutdown in order
619 * to avoid split screen
620 */
621 if (IS_BROXTON(dev_priv)) {
622 for_each_dsi_port(port, intel_dsi->ports)
623 I915_WRITE(MIPI_DEVICE_READY(port), 0);
624 }
625
Imre Deakc315faf2014-05-27 19:00:09 +0300626 if (is_vid_mode(intel_dsi)) {
627 /* Send Shutdown command to the panel in LP mode */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200628 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200629 dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
Imre Deakc315faf2014-05-27 19:00:09 +0300630 msleep(10);
631 }
632}
633
Jani Nikula4e646492013-08-27 15:12:20 +0300634static void intel_dsi_disable(struct intel_encoder *encoder)
635{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530636 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100637 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula4e646492013-08-27 15:12:20 +0300638 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530639 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300640 u32 temp;
641
642 DRM_DEBUG_KMS("\n");
643
Jani Nikula4e646492013-08-27 15:12:20 +0300644 if (is_vid_mode(intel_dsi)) {
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200645 for_each_dsi_port(port, intel_dsi->ports)
646 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530647
Gaurav K Singh5505a242014-12-04 10:58:47 +0530648 intel_dsi_port_disable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300649 msleep(2);
650 }
651
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530652 for_each_dsi_port(port, intel_dsi->ports) {
653 /* Panel commands can be sent when clock is in LP11 */
654 I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530655
Shashank Sharmab389a452015-09-01 19:41:44 +0530656 intel_dsi_reset_clocks(encoder, port);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530657 I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530658
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530659 temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
660 temp &= ~VID_MODE_FORMAT_MASK;
661 I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530662
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530663 I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
664 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530665 /* if disable packets are sent before sending shutdown packet then in
666 * some next enable sequence send turn on packet error is observed */
Jani Nikula593e0622015-01-23 15:30:56 +0200667 drm_panel_disable(intel_dsi->panel);
Jani Nikula4e646492013-08-27 15:12:20 +0300668}
669
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530670static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300671{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100672 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530673 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
674 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530675
Jani Nikula4e646492013-08-27 15:12:20 +0300676 DRM_DEBUG_KMS("\n");
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530677 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200678 /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200679 i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ?
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200680 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
681 u32 val;
ymohanmabe4fc042013-08-27 23:40:56 +0300682
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530683 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
684 ULPS_STATE_ENTER);
685 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530686
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530687 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
688 ULPS_STATE_EXIT);
689 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530690
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530691 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
692 ULPS_STATE_ENTER);
693 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530694
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530695 /* Wait till Clock lanes are in LP-00 state for MIPI Port A
696 * only. MIPI Port C has no similar bit for checking
697 */
Chris Wilson0698cf62016-06-30 15:33:18 +0100698 if (intel_wait_for_register(dev_priv,
699 port_ctrl, AFE_LATCHOUT, 0,
700 30))
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530701 DRM_ERROR("DSI LP not going Low\n");
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530702
Shashank Sharmab389a452015-09-01 19:41:44 +0530703 /* Disable MIPI PHY transparent latch */
704 val = I915_READ(port_ctrl);
705 I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530706 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530707
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530708 I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
709 usleep_range(2000, 2500);
710 }
Jani Nikula4e646492013-08-27 15:12:20 +0300711}
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530712
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200713static void intel_dsi_post_disable(struct intel_encoder *encoder,
714 struct intel_crtc_state *pipe_config,
715 struct drm_connector_state *conn_state)
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530716{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100717 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530718 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Uma Shankar1881a422017-01-25 19:43:23 +0530719 u32 val;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530720
721 DRM_DEBUG_KMS("\n");
722
Imre Deakc315faf2014-05-27 19:00:09 +0300723 intel_dsi_disable(encoder);
724
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530725 intel_dsi_clear_device_ready(encoder);
726
Uma Shankar1881a422017-01-25 19:43:23 +0530727 if (IS_BROXTON(dev_priv)) {
728 /* Power down DSI regulator to save power */
729 I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
730 I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, HS_IO_CTRL_SELECT);
731
732 /* Add MIPI IO reset programming for modeset */
733 val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
734 I915_WRITE(BXT_P_CR_GT_DISP_PWRON,
735 val & ~MIPIO_RST_CTRL);
736 }
737
Hans de Goedee840fd32016-12-01 21:29:13 +0100738 intel_disable_dsi_pll(encoder);
739
Ville Syrjäläd1877c02016-04-18 19:18:25 +0300740 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Uma Shankard6e3af52016-02-18 13:49:26 +0200741 u32 val;
742
743 val = I915_READ(DSPCLK_GATE_D);
744 val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
745 I915_WRITE(DSPCLK_GATE_D, val);
746 }
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530747
Jani Nikula593e0622015-01-23 15:30:56 +0200748 drm_panel_unprepare(intel_dsi->panel);
Shobhit Kumardf38e652014-04-14 11:18:26 +0530749
750 msleep(intel_dsi->panel_off_delay);
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530751
752 /* Panel Disable over CRC PMIC */
753 if (intel_dsi->gpio_panel)
754 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
Ville Syrjälä1d5c65e2016-04-18 19:17:51 +0300755
756 /*
757 * FIXME As we do with eDP, just make a note of the time here
758 * and perform the wait before the next panel power on.
759 */
760 msleep(intel_dsi->panel_pwr_cycle_delay);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530761}
Jani Nikula4e646492013-08-27 15:12:20 +0300762
763static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
764 enum pipe *pipe)
765{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100766 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530767 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200768 enum port port;
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200769 bool active = false;
Jani Nikula4e646492013-08-27 15:12:20 +0300770
771 DRM_DEBUG_KMS("\n");
772
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200773 if (!intel_display_power_get_if_enabled(dev_priv,
774 encoder->power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200775 return false;
776
Imre Deakdb18b6a2016-03-24 12:41:40 +0200777 /*
778 * On Broxton the PLL needs to be enabled with a valid divider
779 * configuration, otherwise accessing DSI registers will hang the
780 * machine. See BSpec North Display Engine registers/MIPI[BXT].
781 */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200782 if (IS_GEN9_LP(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
Imre Deakdb18b6a2016-03-24 12:41:40 +0200783 goto out_put_power;
784
Jani Nikula4e646492013-08-27 15:12:20 +0300785 /* XXX: this only works for one DSI output */
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530786 for_each_dsi_port(port, intel_dsi->ports) {
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200787 i915_reg_t ctrl_reg = IS_GEN9_LP(dev_priv) ?
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200788 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200789 bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
Jani Nikula4e646492013-08-27 15:12:20 +0300790
Jani Nikulae6f57782016-04-15 15:47:31 +0300791 /*
792 * Due to some hardware limitations on VLV/CHV, the DPI enable
793 * bit in port C control register does not get set. As a
794 * workaround, check pipe B conf instead.
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530795 */
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100796 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
797 port == PORT_C)
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200798 enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530799
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200800 /* Try command mode if video mode not enabled */
801 if (!enabled) {
802 u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
803 enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
Jani Nikula4e646492013-08-27 15:12:20 +0300804 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200805
806 if (!enabled)
807 continue;
808
809 if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
810 continue;
811
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200812 if (IS_GEN9_LP(dev_priv)) {
Jani Nikula6b93e9c2016-03-15 21:51:12 +0200813 u32 tmp = I915_READ(MIPI_CTRL(port));
814 tmp &= BXT_PIPE_SELECT_MASK;
815 tmp >>= BXT_PIPE_SELECT_SHIFT;
816
817 if (WARN_ON(tmp > PIPE_C))
818 continue;
819
820 *pipe = tmp;
821 } else {
822 *pipe = port == PORT_A ? PIPE_A : PIPE_B;
823 }
824
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200825 active = true;
826 break;
Jani Nikula4e646492013-08-27 15:12:20 +0300827 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200828
Imre Deakdb18b6a2016-03-24 12:41:40 +0200829out_put_power:
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200830 intel_display_power_put(dev_priv, encoder->power_domain);
Jani Nikula4e646492013-08-27 15:12:20 +0300831
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200832 return active;
Jani Nikula4e646492013-08-27 15:12:20 +0300833}
834
Ramalingam C6f0e7532016-04-07 14:36:07 +0530835static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
836 struct intel_crtc_state *pipe_config)
837{
838 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100839 struct drm_i915_private *dev_priv = to_i915(dev);
Ramalingam C6f0e7532016-04-07 14:36:07 +0530840 struct drm_display_mode *adjusted_mode =
841 &pipe_config->base.adjusted_mode;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530842 struct drm_display_mode *adjusted_mode_sw;
843 struct intel_crtc *intel_crtc;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530844 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530845 unsigned int lane_count = intel_dsi->lane_count;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530846 unsigned int bpp, fmt;
847 enum port port;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530848 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
Ramalingam C042ab0c2016-04-19 13:48:14 +0530849 u16 hfp_sw, hsync_sw, hbp_sw;
850 u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
851 crtc_hblank_start_sw, crtc_hblank_end_sw;
852
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +0200853 /* FIXME: hw readout should not depend on SW state */
Ramalingam C042ab0c2016-04-19 13:48:14 +0530854 intel_crtc = to_intel_crtc(encoder->base.crtc);
855 adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530856
857 /*
858 * Atleast one port is active as encoder->get_config called only if
859 * encoder->get_hw_state() returns true.
860 */
861 for_each_dsi_port(port, intel_dsi->ports) {
862 if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
863 break;
864 }
865
866 fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
867 pipe_config->pipe_bpp =
868 mipi_dsi_pixel_format_to_bpp(
869 pixel_format_from_register_bits(fmt));
870 bpp = pipe_config->pipe_bpp;
871
872 /* In terms of pixels */
873 adjusted_mode->crtc_hdisplay =
874 I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
875 adjusted_mode->crtc_vdisplay =
876 I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
877 adjusted_mode->crtc_vtotal =
878 I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
879
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530880 hactive = adjusted_mode->crtc_hdisplay;
881 hfp = I915_READ(MIPI_HFP_COUNT(port));
882
Ramalingam C6f0e7532016-04-07 14:36:07 +0530883 /*
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530884 * Meaningful for video mode non-burst sync pulse mode only,
885 * can be zero for non-burst sync events and burst modes
Ramalingam C6f0e7532016-04-07 14:36:07 +0530886 */
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530887 hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
888 hbp = I915_READ(MIPI_HBP_COUNT(port));
889
890 /* harizontal values are in terms of high speed byte clock */
891 hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
892 intel_dsi->burst_mode_ratio);
893 hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
894 intel_dsi->burst_mode_ratio);
895 hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
896 intel_dsi->burst_mode_ratio);
897
898 if (intel_dsi->dual_link) {
899 hfp *= 2;
900 hsync *= 2;
901 hbp *= 2;
902 }
Ramalingam C6f0e7532016-04-07 14:36:07 +0530903
904 /* vertical values are in terms of lines */
905 vfp = I915_READ(MIPI_VFP_COUNT(port));
906 vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
907 vbp = I915_READ(MIPI_VBP_COUNT(port));
908
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530909 adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
910 adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
911 adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530912 adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530913 adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530914
Ramalingam Ccefc4e12016-04-19 13:48:13 +0530915 adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
916 adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530917 adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
918 adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530919
Ramalingam C042ab0c2016-04-19 13:48:14 +0530920 /*
921 * In BXT DSI there is no regs programmed with few horizontal timings
922 * in Pixels but txbyteclkhs.. So retrieval process adds some
923 * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
924 * Actually here for the given adjusted_mode, we are calculating the
925 * value programmed to the port and then back to the horizontal timing
926 * param in pixels. This is the expected value, including roundup errors
927 * And if that is same as retrieved value from port, then
928 * (HW state) adjusted_mode's horizontal timings are corrected to
929 * match with SW state to nullify the errors.
930 */
931 /* Calculating the value programmed to the Port register */
932 hfp_sw = adjusted_mode_sw->crtc_hsync_start -
933 adjusted_mode_sw->crtc_hdisplay;
934 hsync_sw = adjusted_mode_sw->crtc_hsync_end -
935 adjusted_mode_sw->crtc_hsync_start;
936 hbp_sw = adjusted_mode_sw->crtc_htotal -
937 adjusted_mode_sw->crtc_hsync_end;
938
939 if (intel_dsi->dual_link) {
940 hfp_sw /= 2;
941 hsync_sw /= 2;
942 hbp_sw /= 2;
943 }
944
945 hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
946 intel_dsi->burst_mode_ratio);
947 hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
948 intel_dsi->burst_mode_ratio);
949 hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
950 intel_dsi->burst_mode_ratio);
951
952 /* Reverse calculating the adjusted mode parameters from port reg vals*/
953 hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
954 intel_dsi->burst_mode_ratio);
955 hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
956 intel_dsi->burst_mode_ratio);
957 hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
958 intel_dsi->burst_mode_ratio);
959
960 if (intel_dsi->dual_link) {
961 hfp_sw *= 2;
962 hsync_sw *= 2;
963 hbp_sw *= 2;
964 }
965
966 crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
967 hsync_sw + hbp_sw;
968 crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
969 crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
970 crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
971 crtc_hblank_end_sw = crtc_htotal_sw;
972
973 if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
974 adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
975
976 if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
977 adjusted_mode->crtc_hsync_start =
978 adjusted_mode_sw->crtc_hsync_start;
979
980 if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
981 adjusted_mode->crtc_hsync_end =
982 adjusted_mode_sw->crtc_hsync_end;
983
984 if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
985 adjusted_mode->crtc_hblank_start =
986 adjusted_mode_sw->crtc_hblank_start;
987
988 if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
989 adjusted_mode->crtc_hblank_end =
990 adjusted_mode_sw->crtc_hblank_end;
991}
Ramalingam C6f0e7532016-04-07 14:36:07 +0530992
Jani Nikula4e646492013-08-27 15:12:20 +0300993static void intel_dsi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200994 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300995{
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100996 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jani Nikulad7d85d82016-01-08 12:45:39 +0200997 u32 pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300998 DRM_DEBUG_KMS("\n");
999
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001000 if (IS_GEN9_LP(dev_priv))
Ramalingam C6f0e7532016-04-07 14:36:07 +05301001 bxt_dsi_get_pipe_config(encoder, pipe_config);
1002
Ville Syrjälä47eacba2016-04-12 22:14:35 +03001003 pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
1004 pipe_config);
Shobhit Kumarf573de52014-07-30 20:32:37 +05301005 if (!pclk)
1006 return;
1007
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001008 pipe_config->base.adjusted_mode.crtc_clock = pclk;
Shobhit Kumarf573de52014-07-30 20:32:37 +05301009 pipe_config->port_clock = pclk;
Jani Nikula4e646492013-08-27 15:12:20 +03001010}
1011
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001012static enum drm_mode_status
1013intel_dsi_mode_valid(struct drm_connector *connector,
1014 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +03001015{
1016 struct intel_connector *intel_connector = to_intel_connector(connector);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001017 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Mika Kahola759a1e92015-08-18 14:37:01 +03001018 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Jani Nikula4e646492013-08-27 15:12:20 +03001019
1020 DRM_DEBUG_KMS("\n");
1021
1022 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
1023 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
1024 return MODE_NO_DBLESCAN;
1025 }
1026
1027 if (fixed_mode) {
1028 if (mode->hdisplay > fixed_mode->hdisplay)
1029 return MODE_PANEL;
1030 if (mode->vdisplay > fixed_mode->vdisplay)
1031 return MODE_PANEL;
Mika Kahola759a1e92015-08-18 14:37:01 +03001032 if (fixed_mode->clock > max_dotclk)
1033 return MODE_CLOCK_HIGH;
Jani Nikula4e646492013-08-27 15:12:20 +03001034 }
1035
Jani Nikula36d21f42015-01-16 14:27:20 +02001036 return MODE_OK;
Jani Nikula4e646492013-08-27 15:12:20 +03001037}
1038
1039/* return txclkesc cycles in terms of divider and duration in us */
1040static u16 txclkesc(u32 divider, unsigned int us)
1041{
1042 switch (divider) {
1043 case ESCAPE_CLOCK_DIVIDER_1:
1044 default:
1045 return 20 * us;
1046 case ESCAPE_CLOCK_DIVIDER_2:
1047 return 10 * us;
1048 case ESCAPE_CLOCK_DIVIDER_4:
1049 return 5 * us;
1050 }
1051}
1052
Jani Nikula4e646492013-08-27 15:12:20 +03001053static void set_dsi_timings(struct drm_encoder *encoder,
Ville Syrjälä5e7234c2015-09-25 16:37:43 +03001054 const struct drm_display_mode *adjusted_mode)
Jani Nikula4e646492013-08-27 15:12:20 +03001055{
1056 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001057 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula4e646492013-08-27 15:12:20 +03001058 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301059 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001060 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001061 unsigned int lane_count = intel_dsi->lane_count;
1062
1063 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
1064
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001065 hactive = adjusted_mode->crtc_hdisplay;
1066 hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
1067 hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
1068 hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001069
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301070 if (intel_dsi->dual_link) {
1071 hactive /= 2;
1072 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1073 hactive += intel_dsi->pixel_overlap;
1074 hfp /= 2;
1075 hsync /= 2;
1076 hbp /= 2;
1077 }
1078
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001079 vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
1080 vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
1081 vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001082
1083 /* horizontal values are in terms of high speed byte clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301084 hactive = txbyteclkhs(hactive, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001085 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301086 hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
1087 hsync = txbyteclkhs(hsync, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001088 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301089 hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
Jani Nikula4e646492013-08-27 15:12:20 +03001090
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301091 for_each_dsi_port(port, intel_dsi->ports) {
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001092 if (IS_GEN9_LP(dev_priv)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301093 /*
1094 * Program hdisplay and vdisplay on MIPI transcoder.
1095 * This is different from calculated hactive and
1096 * vactive, as they are calculated per channel basis,
1097 * whereas these values should be based on resolution.
1098 */
1099 I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001100 adjusted_mode->crtc_hdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301101 I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001102 adjusted_mode->crtc_vdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301103 I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001104 adjusted_mode->crtc_vtotal);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301105 }
1106
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301107 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
1108 I915_WRITE(MIPI_HFP_COUNT(port), hfp);
Jani Nikula4e646492013-08-27 15:12:20 +03001109
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301110 /* meaningful for video mode non-burst sync pulse mode only,
1111 * can be zero for non-burst sync events and burst modes */
1112 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
1113 I915_WRITE(MIPI_HBP_COUNT(port), hbp);
Jani Nikula4e646492013-08-27 15:12:20 +03001114
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301115 /* vertical values are in terms of lines */
1116 I915_WRITE(MIPI_VFP_COUNT(port), vfp);
1117 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
1118 I915_WRITE(MIPI_VBP_COUNT(port), vbp);
1119 }
Jani Nikula4e646492013-08-27 15:12:20 +03001120}
1121
Jani Nikula1e78aa02016-03-16 12:21:40 +02001122static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
1123{
1124 switch (fmt) {
1125 case MIPI_DSI_FMT_RGB888:
1126 return VID_MODE_FORMAT_RGB888;
1127 case MIPI_DSI_FMT_RGB666:
1128 return VID_MODE_FORMAT_RGB666;
1129 case MIPI_DSI_FMT_RGB666_PACKED:
1130 return VID_MODE_FORMAT_RGB666_PACKED;
1131 case MIPI_DSI_FMT_RGB565:
1132 return VID_MODE_FORMAT_RGB565;
1133 default:
1134 MISSING_CASE(fmt);
1135 return VID_MODE_FORMAT_RGB666;
1136 }
1137}
1138
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +02001139static void intel_dsi_prepare(struct intel_encoder *intel_encoder,
1140 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +03001141{
1142 struct drm_encoder *encoder = &intel_encoder->base;
1143 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001144 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +02001145 struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc);
Jani Nikula4e646492013-08-27 15:12:20 +03001146 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +02001147 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301148 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001149 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001150 u32 val, tmp;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301151 u16 mode_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001152
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001153 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
Jani Nikula4e646492013-08-27 15:12:20 +03001154
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001155 mode_hdisplay = adjusted_mode->crtc_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001156
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301157 if (intel_dsi->dual_link) {
1158 mode_hdisplay /= 2;
1159 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1160 mode_hdisplay += intel_dsi->pixel_overlap;
1161 }
Jani Nikula4e646492013-08-27 15:12:20 +03001162
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301163 for_each_dsi_port(port, intel_dsi->ports) {
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001164 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301165 /*
1166 * escape clock divider, 20MHz, shared for A and C.
1167 * device ready must be off when doing this! txclkesc?
1168 */
1169 tmp = I915_READ(MIPI_CTRL(PORT_A));
1170 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
1171 I915_WRITE(MIPI_CTRL(PORT_A), tmp |
1172 ESCAPE_CLOCK_DIVIDER_1);
Jani Nikula4e646492013-08-27 15:12:20 +03001173
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301174 /* read request priority is per pipe */
1175 tmp = I915_READ(MIPI_CTRL(port));
1176 tmp &= ~READ_REQUEST_PRIORITY_MASK;
1177 I915_WRITE(MIPI_CTRL(port), tmp |
1178 READ_REQUEST_PRIORITY_HIGH);
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001179 } else if (IS_GEN9_LP(dev_priv)) {
Deepak M56c48972015-12-09 20:14:04 +05301180 enum pipe pipe = intel_crtc->pipe;
1181
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301182 tmp = I915_READ(MIPI_CTRL(port));
1183 tmp &= ~BXT_PIPE_SELECT_MASK;
1184
Deepak M56c48972015-12-09 20:14:04 +05301185 tmp |= BXT_PIPE_SELECT(pipe);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301186 I915_WRITE(MIPI_CTRL(port), tmp);
1187 }
Jani Nikula4e646492013-08-27 15:12:20 +03001188
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301189 /* XXX: why here, why like this? handling in irq handler?! */
1190 I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
1191 I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
1192
1193 I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
1194
1195 I915_WRITE(MIPI_DPI_RESOLUTION(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001196 adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301197 mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
1198 }
Jani Nikula4e646492013-08-27 15:12:20 +03001199
1200 set_dsi_timings(encoder, adjusted_mode);
1201
1202 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
1203 if (is_cmd_mode(intel_dsi)) {
1204 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
1205 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
1206 } else {
1207 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001208 val |= pixel_format_to_reg(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001209 }
Jani Nikula4e646492013-08-27 15:12:20 +03001210
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301211 tmp = 0;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301212 if (intel_dsi->eotp_pkt == 0)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301213 tmp |= EOT_DISABLE;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301214 if (intel_dsi->clock_stop)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301215 tmp |= CLOCKSTOP;
Jani Nikula4e646492013-08-27 15:12:20 +03001216
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001217 if (IS_GEN9_LP(dev_priv)) {
Jani Nikulaf90e8c32016-06-03 17:57:05 +03001218 tmp |= BXT_DPHY_DEFEATURE_EN;
1219 if (!is_cmd_mode(intel_dsi))
1220 tmp |= BXT_DEFEATURE_DPI_FIFO_CTR;
1221 }
1222
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301223 for_each_dsi_port(port, intel_dsi->ports) {
1224 I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
Jani Nikula4e646492013-08-27 15:12:20 +03001225
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301226 /* timeouts for recovery. one frame IIUC. if counter expires,
1227 * EOT and stop state. */
Shobhit Kumarcf4dbd22014-04-14 11:18:25 +05301228
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301229 /*
1230 * In burst mode, value greater than one DPI line Time in byte
1231 * clock (txbyteclkhs) To timeout this timer 1+ of the above
1232 * said value is recommended.
1233 *
1234 * In non-burst mode, Value greater than one DPI frame time in
1235 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1236 * said value is recommended.
1237 *
1238 * In DBI only mode, value greater than one DBI frame time in
1239 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1240 * said value is recommended.
1241 */
Jani Nikula4e646492013-08-27 15:12:20 +03001242
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301243 if (is_vid_mode(intel_dsi) &&
1244 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
1245 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001246 txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001247 intel_dsi->lane_count,
1248 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301249 } else {
1250 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001251 txbyteclkhs(adjusted_mode->crtc_vtotal *
1252 adjusted_mode->crtc_htotal,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001253 bpp, intel_dsi->lane_count,
1254 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301255 }
1256 I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
1257 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
1258 intel_dsi->turn_arnd_val);
1259 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
1260 intel_dsi->rst_timer_val);
Jani Nikula4e646492013-08-27 15:12:20 +03001261
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301262 /* dphy stuff */
Jani Nikula4e646492013-08-27 15:12:20 +03001263
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301264 /* in terms of low power clock */
1265 I915_WRITE(MIPI_INIT_COUNT(port),
1266 txclkesc(intel_dsi->escape_clk_div, 100));
Jani Nikula4e646492013-08-27 15:12:20 +03001267
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001268 if (IS_GEN9_LP(dev_priv) && (!intel_dsi->dual_link)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301269 /*
1270 * BXT spec says write MIPI_INIT_COUNT for
1271 * both the ports, even if only one is
1272 * getting used. So write the other port
1273 * if not in dual link mode.
1274 */
1275 I915_WRITE(MIPI_INIT_COUNT(port ==
1276 PORT_A ? PORT_C : PORT_A),
1277 intel_dsi->init_count);
1278 }
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301279
1280 /* recovery disables */
Shobhit Kumar87c54d02015-02-03 12:17:35 +05301281 I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301282
1283 /* in terms of low power clock */
1284 I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
1285
1286 /* in terms of txbyteclkhs. actual high to low switch +
1287 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
1288 *
1289 * XXX: write MIPI_STOP_STATE_STALL?
1290 */
1291 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
1292 intel_dsi->hs_to_lp_count);
1293
1294 /* XXX: low power clock equivalence in terms of byte clock.
1295 * the number of byte clocks occupied in one low power clock.
1296 * based on txbyteclkhs and txclkesc.
1297 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
1298 * ) / 105.???
1299 */
1300 I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
1301
Deepak Mb426f982017-02-17 18:13:30 +05301302 if (IS_GEMINILAKE(dev_priv)) {
1303 I915_WRITE(MIPI_TLPX_TIME_COUNT(port),
1304 intel_dsi->lp_byte_clk);
1305 /* Shadow of DPHY reg */
1306 I915_WRITE(MIPI_CLK_LANE_TIMING(port),
1307 intel_dsi->dphy_reg);
1308 }
1309
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301310 /* the bw essential for transmitting 16 long packets containing
1311 * 252 bytes meant for dcs write memory command is programmed in
1312 * this register in terms of byte clocks. based on dsi transfer
1313 * rate and the number of lanes configured the time taken to
1314 * transmit 16 long packets in a dsi stream varies. */
1315 I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
1316
1317 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
1318 intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
1319 intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
1320
1321 if (is_vid_mode(intel_dsi))
1322 /* Some panels might have resolution which is not a
1323 * multiple of 64 like 1366 x 768. Enable RANDOM
1324 * resolution support for such panels by default */
1325 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
1326 intel_dsi->video_frmt_cfg_bits |
1327 intel_dsi->video_mode_format |
1328 IP_TG_CONFIG |
1329 RANDOM_DPI_DISPLAY_RESOLUTION);
1330 }
Jani Nikula4e646492013-08-27 15:12:20 +03001331}
1332
Jani Nikula4e646492013-08-27 15:12:20 +03001333static int intel_dsi_get_modes(struct drm_connector *connector)
1334{
1335 struct intel_connector *intel_connector = to_intel_connector(connector);
1336 struct drm_display_mode *mode;
1337
1338 DRM_DEBUG_KMS("\n");
1339
1340 if (!intel_connector->panel.fixed_mode) {
1341 DRM_DEBUG_KMS("no fixed mode\n");
1342 return 0;
1343 }
1344
1345 mode = drm_mode_duplicate(connector->dev,
1346 intel_connector->panel.fixed_mode);
1347 if (!mode) {
1348 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
1349 return 0;
1350 }
1351
1352 drm_mode_probed_add(connector, mode);
1353 return 1;
1354}
1355
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001356static int intel_dsi_set_property(struct drm_connector *connector,
1357 struct drm_property *property,
1358 uint64_t val)
1359{
1360 struct drm_device *dev = connector->dev;
1361 struct intel_connector *intel_connector = to_intel_connector(connector);
1362 struct drm_crtc *crtc;
1363 int ret;
1364
1365 ret = drm_object_property_set_value(&connector->base, property, val);
1366 if (ret)
1367 return ret;
1368
1369 if (property == dev->mode_config.scaling_mode_property) {
1370 if (val == DRM_MODE_SCALE_NONE) {
1371 DRM_DEBUG_KMS("no scaling not supported\n");
1372 return -EINVAL;
1373 }
Tvrtko Ursulin49cff962016-10-13 11:02:54 +01001374 if (HAS_GMCH_DISPLAY(to_i915(dev)) &&
Ville Syrjälä234126c2016-04-12 22:14:38 +03001375 val == DRM_MODE_SCALE_CENTER) {
1376 DRM_DEBUG_KMS("centering not supported\n");
1377 return -EINVAL;
1378 }
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001379
1380 if (intel_connector->panel.fitting_mode == val)
1381 return 0;
1382
1383 intel_connector->panel.fitting_mode = val;
1384 }
1385
Maarten Lankhorst5eff0ed2016-08-09 17:04:09 +02001386 crtc = connector->state->crtc;
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001387 if (crtc && crtc->state->enable) {
1388 /*
1389 * If the CRTC is enabled, the display will be changed
1390 * according to the new panel fitting mode.
1391 */
1392 intel_crtc_restore_mode(crtc);
1393 }
1394
1395 return 0;
1396}
1397
Jani Nikula593e0622015-01-23 15:30:56 +02001398static void intel_dsi_connector_destroy(struct drm_connector *connector)
Jani Nikula4e646492013-08-27 15:12:20 +03001399{
1400 struct intel_connector *intel_connector = to_intel_connector(connector);
1401
1402 DRM_DEBUG_KMS("\n");
1403 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +03001404 drm_connector_cleanup(connector);
1405 kfree(connector);
1406}
1407
Jani Nikula593e0622015-01-23 15:30:56 +02001408static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
1409{
1410 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
1411
1412 if (intel_dsi->panel) {
1413 drm_panel_detach(intel_dsi->panel);
1414 /* XXX: Logically this call belongs in the panel driver. */
1415 drm_panel_remove(intel_dsi->panel);
1416 }
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301417
1418 /* dispose of the gpios */
1419 if (intel_dsi->gpio_panel)
1420 gpiod_put(intel_dsi->gpio_panel);
1421
Jani Nikula593e0622015-01-23 15:30:56 +02001422 intel_encoder_destroy(encoder);
1423}
1424
Jani Nikula4e646492013-08-27 15:12:20 +03001425static const struct drm_encoder_funcs intel_dsi_funcs = {
Jani Nikula593e0622015-01-23 15:30:56 +02001426 .destroy = intel_dsi_encoder_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001427};
1428
1429static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
1430 .get_modes = intel_dsi_get_modes,
1431 .mode_valid = intel_dsi_mode_valid,
Jani Nikula4e646492013-08-27 15:12:20 +03001432};
1433
1434static const struct drm_connector_funcs intel_dsi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001435 .dpms = drm_atomic_helper_connector_dpms,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01001436 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01001437 .early_unregister = intel_connector_unregister,
Jani Nikula593e0622015-01-23 15:30:56 +02001438 .destroy = intel_dsi_connector_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001439 .fill_modes = drm_helper_probe_single_connector_modes,
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001440 .set_property = intel_dsi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001441 .atomic_get_property = intel_connector_atomic_get_property,
Matt Roperc6f95f22015-01-22 16:50:32 -08001442 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001443 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jani Nikula4e646492013-08-27 15:12:20 +03001444};
1445
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001446static void intel_dsi_add_properties(struct intel_connector *connector)
1447{
1448 struct drm_device *dev = connector->base.dev;
1449
1450 if (connector->panel.fixed_mode) {
1451 drm_mode_create_scaling_mode_property(dev);
1452 drm_object_attach_property(&connector->base.base,
1453 dev->mode_config.scaling_mode_property,
1454 DRM_MODE_SCALE_ASPECT);
1455 connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
1456 }
1457}
1458
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02001459void intel_dsi_init(struct drm_i915_private *dev_priv)
Jani Nikula4e646492013-08-27 15:12:20 +03001460{
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02001461 struct drm_device *dev = &dev_priv->drm;
Jani Nikula4e646492013-08-27 15:12:20 +03001462 struct intel_dsi *intel_dsi;
1463 struct intel_encoder *intel_encoder;
1464 struct drm_encoder *encoder;
1465 struct intel_connector *intel_connector;
1466 struct drm_connector *connector;
Jani Nikula593e0622015-01-23 15:30:56 +02001467 struct drm_display_mode *scan, *fixed_mode = NULL;
Jani Nikula7e9804f2015-01-16 14:27:23 +02001468 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +03001469 unsigned int i;
1470
1471 DRM_DEBUG_KMS("\n");
1472
Shobhit Kumar3e6bd012014-05-27 19:33:59 +05301473 /* There is no detection method for MIPI so rely on VBT */
Jani Nikula7137aec2016-03-16 12:43:32 +02001474 if (!intel_bios_is_dsi_present(dev_priv, &port))
Damien Lespiau4328633d2014-05-28 12:30:56 +01001475 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001476
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001477 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301478 dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001479 } else if (IS_GEN9_LP(dev_priv)) {
Shashank Sharmac6c794a2016-03-22 12:01:50 +02001480 dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301481 } else {
1482 DRM_ERROR("Unsupported Mipi device to reg base");
Christoph Jaeger868d6652014-06-13 21:51:22 +02001483 return;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301484 }
1485
Jani Nikula4e646492013-08-27 15:12:20 +03001486 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
1487 if (!intel_dsi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001488 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001489
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001490 intel_connector = intel_connector_alloc();
Jani Nikula4e646492013-08-27 15:12:20 +03001491 if (!intel_connector) {
1492 kfree(intel_dsi);
Damien Lespiau4328633d2014-05-28 12:30:56 +01001493 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001494 }
1495
1496 intel_encoder = &intel_dsi->base;
1497 encoder = &intel_encoder->base;
1498 intel_dsi->attached_connector = intel_connector;
1499
Jani Nikula4e646492013-08-27 15:12:20 +03001500 connector = &intel_connector->base;
1501
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001502 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
Ville Syrjälä580d8ed2016-05-27 20:59:24 +03001503 "DSI %c", port_name(port));
Jani Nikula4e646492013-08-27 15:12:20 +03001504
Jani Nikula4e646492013-08-27 15:12:20 +03001505 intel_encoder->compute_config = intel_dsi_compute_config;
Jani Nikula4e646492013-08-27 15:12:20 +03001506 intel_encoder->pre_enable = intel_dsi_pre_enable;
Shobhit Kumar2634fd72014-04-09 13:59:31 +05301507 intel_encoder->enable = intel_dsi_enable_nop;
Imre Deakc315faf2014-05-27 19:00:09 +03001508 intel_encoder->disable = intel_dsi_pre_disable;
Jani Nikula4e646492013-08-27 15:12:20 +03001509 intel_encoder->post_disable = intel_dsi_post_disable;
1510 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
1511 intel_encoder->get_config = intel_dsi_get_config;
1512
1513 intel_connector->get_hw_state = intel_connector_get_hw_state;
1514
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -07001515 intel_encoder->port = port;
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02001516
Jani Nikula2e85ab42016-03-18 17:05:44 +02001517 /*
1518 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
1519 * port C. BXT isn't limited like this.
1520 */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001521 if (IS_GEN9_LP(dev_priv))
Jani Nikula2e85ab42016-03-18 17:05:44 +02001522 intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
1523 else if (port == PORT_A)
Jani Nikula701d25b2016-03-18 17:05:43 +02001524 intel_encoder->crtc_mask = BIT(PIPE_A);
Jani Nikula7137aec2016-03-16 12:43:32 +02001525 else
Jani Nikula701d25b2016-03-18 17:05:43 +02001526 intel_encoder->crtc_mask = BIT(PIPE_B);
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001527
Jani Nikula90198352016-04-26 16:14:25 +03001528 if (dev_priv->vbt.dsi.config->dual_link) {
Jani Nikula701d25b2016-03-18 17:05:43 +02001529 intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
Jani Nikula90198352016-04-26 16:14:25 +03001530
1531 switch (dev_priv->vbt.dsi.config->dl_dcs_backlight_ports) {
1532 case DL_DCS_PORT_A:
1533 intel_dsi->dcs_backlight_ports = BIT(PORT_A);
1534 break;
1535 case DL_DCS_PORT_C:
1536 intel_dsi->dcs_backlight_ports = BIT(PORT_C);
1537 break;
1538 default:
1539 case DL_DCS_PORT_A_AND_C:
1540 intel_dsi->dcs_backlight_ports = BIT(PORT_A) | BIT(PORT_C);
1541 break;
1542 }
Deepak M1ecc1c62016-04-26 16:14:26 +03001543
1544 switch (dev_priv->vbt.dsi.config->dl_dcs_cabc_ports) {
1545 case DL_DCS_PORT_A:
1546 intel_dsi->dcs_cabc_ports = BIT(PORT_A);
1547 break;
1548 case DL_DCS_PORT_C:
1549 intel_dsi->dcs_cabc_ports = BIT(PORT_C);
1550 break;
1551 default:
1552 case DL_DCS_PORT_A_AND_C:
1553 intel_dsi->dcs_cabc_ports = BIT(PORT_A) | BIT(PORT_C);
1554 break;
1555 }
Jani Nikula90198352016-04-26 16:14:25 +03001556 } else {
Jani Nikula701d25b2016-03-18 17:05:43 +02001557 intel_dsi->ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001558 intel_dsi->dcs_backlight_ports = BIT(port);
Deepak M1ecc1c62016-04-26 16:14:26 +03001559 intel_dsi->dcs_cabc_ports = BIT(port);
Jani Nikula90198352016-04-26 16:14:25 +03001560 }
Gaurav K Singh82425782015-08-03 15:45:32 +05301561
Deepak M1ecc1c62016-04-26 16:14:26 +03001562 if (!dev_priv->vbt.dsi.config->cabc_supported)
1563 intel_dsi->dcs_cabc_ports = 0;
1564
Jani Nikula7e9804f2015-01-16 14:27:23 +02001565 /* Create a DSI host (and a device) for each port. */
1566 for_each_dsi_port(port, intel_dsi->ports) {
1567 struct intel_dsi_host *host;
1568
1569 host = intel_dsi_host_init(intel_dsi, port);
1570 if (!host)
1571 goto err;
1572
1573 intel_dsi->dsi_hosts[port] = host;
1574 }
1575
Jani Nikula593e0622015-01-23 15:30:56 +02001576 for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
1577 intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
1578 intel_dsi_drivers[i].panel_id);
1579 if (intel_dsi->panel)
Jani Nikula4e646492013-08-27 15:12:20 +03001580 break;
1581 }
1582
Jani Nikula593e0622015-01-23 15:30:56 +02001583 if (!intel_dsi->panel) {
Jani Nikula4e646492013-08-27 15:12:20 +03001584 DRM_DEBUG_KMS("no device found\n");
1585 goto err;
1586 }
1587
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301588 /*
1589 * In case of BYT with CRC PMIC, we need to use GPIO for
1590 * Panel control.
1591 */
Uma Shankar645a2f62017-02-08 16:20:50 +05301592 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
1593 (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC)) {
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301594 intel_dsi->gpio_panel =
1595 gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
1596
1597 if (IS_ERR(intel_dsi->gpio_panel)) {
1598 DRM_ERROR("Failed to own gpio for panel control\n");
1599 intel_dsi->gpio_panel = NULL;
1600 }
1601 }
1602
Jani Nikula4e646492013-08-27 15:12:20 +03001603 intel_encoder->type = INTEL_OUTPUT_DSI;
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +02001604 intel_encoder->power_domain = POWER_DOMAIN_PORT_DSI;
Ville Syrjäläbc079e82014-03-03 16:15:28 +02001605 intel_encoder->cloneable = 0;
Jani Nikula4e646492013-08-27 15:12:20 +03001606 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
1607 DRM_MODE_CONNECTOR_DSI);
1608
1609 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
1610
1611 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
1612 connector->interlace_allowed = false;
1613 connector->doublescan_allowed = false;
1614
1615 intel_connector_attach_encoder(intel_connector, intel_encoder);
1616
Jani Nikula593e0622015-01-23 15:30:56 +02001617 drm_panel_attach(intel_dsi->panel, connector);
1618
1619 mutex_lock(&dev->mode_config.mutex);
1620 drm_panel_get_modes(intel_dsi->panel);
1621 list_for_each_entry(scan, &connector->probed_modes, head) {
1622 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
1623 fixed_mode = drm_mode_duplicate(dev, scan);
1624 break;
1625 }
1626 }
1627 mutex_unlock(&dev->mode_config.mutex);
1628
Jani Nikula4e646492013-08-27 15:12:20 +03001629 if (!fixed_mode) {
1630 DRM_DEBUG_KMS("no fixed mode\n");
1631 goto err;
1632 }
1633
Ville Syrjälädf457242016-05-31 12:08:34 +03001634 connector->display_info.width_mm = fixed_mode->width_mm;
1635 connector->display_info.height_mm = fixed_mode->height_mm;
1636
Vandana Kannan4b6ed682014-02-11 14:26:36 +05301637 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Chris Wilsonfda9ee92016-06-24 14:00:13 +01001638 intel_panel_setup_backlight(connector, INVALID_PIPE);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001639
1640 intel_dsi_add_properties(intel_connector);
1641
Damien Lespiau4328633d2014-05-28 12:30:56 +01001642 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001643
1644err:
1645 drm_encoder_cleanup(&intel_encoder->base);
1646 kfree(intel_dsi);
1647 kfree(intel_connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001648}