blob: 4756ef63964840cc4855df8d04898fbbc2135cf2 [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 C4832aa12016-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 C130b62f2016-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
93 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & mask) == mask, 100))
94 DRM_ERROR("DPI FIFOs are not empty\n");
95}
96
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020097static void write_data(struct drm_i915_private *dev_priv,
98 i915_reg_t reg,
Jani Nikula7e9804f2015-01-16 14:27:23 +020099 const u8 *data, u32 len)
100{
101 u32 i, j;
102
103 for (i = 0; i < len; i += 4) {
104 u32 val = 0;
105
106 for (j = 0; j < min_t(u32, len - i, 4); j++)
107 val |= *data++ << 8 * j;
108
109 I915_WRITE(reg, val);
110 }
111}
112
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200113static void read_data(struct drm_i915_private *dev_priv,
114 i915_reg_t reg,
Jani Nikula7e9804f2015-01-16 14:27:23 +0200115 u8 *data, u32 len)
116{
117 u32 i, j;
118
119 for (i = 0; i < len; i += 4) {
120 u32 val = I915_READ(reg);
121
122 for (j = 0; j < min_t(u32, len - i, 4); j++)
123 *data++ = val >> 8 * j;
124 }
125}
126
127static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host,
128 const struct mipi_dsi_msg *msg)
129{
130 struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host);
131 struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev;
132 struct drm_i915_private *dev_priv = dev->dev_private;
133 enum port port = intel_dsi_host->port;
134 struct mipi_dsi_packet packet;
135 ssize_t ret;
136 const u8 *header, *data;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200137 i915_reg_t data_reg, ctrl_reg;
138 u32 data_mask, ctrl_mask;
Jani Nikula7e9804f2015-01-16 14:27:23 +0200139
140 ret = mipi_dsi_create_packet(&packet, msg);
141 if (ret < 0)
142 return ret;
143
144 header = packet.header;
145 data = packet.payload;
146
147 if (msg->flags & MIPI_DSI_MSG_USE_LPM) {
148 data_reg = MIPI_LP_GEN_DATA(port);
149 data_mask = LP_DATA_FIFO_FULL;
150 ctrl_reg = MIPI_LP_GEN_CTRL(port);
151 ctrl_mask = LP_CTRL_FIFO_FULL;
152 } else {
153 data_reg = MIPI_HS_GEN_DATA(port);
154 data_mask = HS_DATA_FIFO_FULL;
155 ctrl_reg = MIPI_HS_GEN_CTRL(port);
156 ctrl_mask = HS_CTRL_FIFO_FULL;
157 }
158
159 /* note: this is never true for reads */
160 if (packet.payload_length) {
161
162 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & data_mask) == 0, 50))
163 DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n");
164
165 write_data(dev_priv, data_reg, packet.payload,
166 packet.payload_length);
167 }
168
169 if (msg->rx_len) {
170 I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL);
171 }
172
173 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & ctrl_mask) == 0, 50)) {
174 DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
175 }
176
177 I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]);
178
179 /* ->rx_len is set only for reads */
180 if (msg->rx_len) {
181 data_mask = GEN_READ_DATA_AVAIL;
182 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50))
183 DRM_ERROR("Timeout waiting for read data.\n");
184
185 read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
186 }
187
188 /* XXX: fix for reads and writes */
189 return 4 + packet.payload_length;
190}
191
192static int intel_dsi_host_attach(struct mipi_dsi_host *host,
193 struct mipi_dsi_device *dsi)
194{
195 return 0;
196}
197
198static int intel_dsi_host_detach(struct mipi_dsi_host *host,
199 struct mipi_dsi_device *dsi)
200{
201 return 0;
202}
203
204static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
205 .attach = intel_dsi_host_attach,
206 .detach = intel_dsi_host_detach,
207 .transfer = intel_dsi_host_transfer,
208};
209
210static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
211 enum port port)
212{
213 struct intel_dsi_host *host;
214 struct mipi_dsi_device *device;
215
216 host = kzalloc(sizeof(*host), GFP_KERNEL);
217 if (!host)
218 return NULL;
219
220 host->base.ops = &intel_dsi_host_ops;
221 host->intel_dsi = intel_dsi;
222 host->port = port;
223
224 /*
225 * We should call mipi_dsi_host_register(&host->base) here, but we don't
226 * have a host->dev, and we don't have OF stuff either. So just use the
227 * dsi framework as a library and hope for the best. Create the dsi
228 * devices by ourselves here too. Need to be careful though, because we
229 * don't initialize any of the driver model devices here.
230 */
231 device = kzalloc(sizeof(*device), GFP_KERNEL);
232 if (!device) {
233 kfree(host);
234 return NULL;
235 }
236
237 device->host = &host->base;
238 host->device = device;
239
240 return host;
241}
242
Jani Nikulaa2581a92015-01-16 14:27:26 +0200243/*
244 * send a video mode command
245 *
246 * XXX: commands with data in MIPI_DPI_DATA?
247 */
248static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
249 enum port port)
250{
251 struct drm_encoder *encoder = &intel_dsi->base.base;
252 struct drm_device *dev = encoder->dev;
253 struct drm_i915_private *dev_priv = dev->dev_private;
254 u32 mask;
255
256 /* XXX: pipe, hs */
257 if (hs)
258 cmd &= ~DPI_LP_MODE;
259 else
260 cmd |= DPI_LP_MODE;
261
262 /* clear bit */
263 I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
264
265 /* XXX: old code skips write if control unchanged */
266 if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
267 DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
268
269 I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
270
271 mask = SPL_PKT_SENT_INTERRUPT;
272 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100))
273 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
274
275 return 0;
276}
277
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530278static void band_gap_reset(struct drm_i915_private *dev_priv)
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300279{
Ville Syrjäläa5805162015-05-26 20:42:30 +0300280 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300281
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530282 vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
283 vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
284 vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
285 udelay(150);
286 vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
287 vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300288
Ville Syrjäläa5805162015-05-26 20:42:30 +0300289 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300290}
291
Jani Nikula4e646492013-08-27 15:12:20 +0300292static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
293{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530294 return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300295}
296
297static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
298{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530299 return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300300}
301
Jani Nikula4e646492013-08-27 15:12:20 +0300302static bool intel_dsi_compute_config(struct intel_encoder *encoder,
Jani Nikulaa65347b2015-11-27 12:21:46 +0200303 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300304{
Jani Nikula4d1de972016-03-18 17:05:42 +0200305 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300306 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
307 base);
308 struct intel_connector *intel_connector = intel_dsi->attached_connector;
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300309 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
310 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Jani Nikulaa65347b2015-11-27 12:21:46 +0200311 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300312 int ret;
Jani Nikula4e646492013-08-27 15:12:20 +0300313
314 DRM_DEBUG_KMS("\n");
315
Jani Nikulaa65347b2015-11-27 12:21:46 +0200316 pipe_config->has_dsi_encoder = true;
317
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300318 if (fixed_mode) {
Jani Nikula4e646492013-08-27 15:12:20 +0300319 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
320
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300321 if (HAS_GMCH_DISPLAY(dev_priv))
322 intel_gmch_panel_fitting(crtc, pipe_config,
323 intel_connector->panel.fitting_mode);
324 else
325 intel_pch_panel_fitting(crtc, pipe_config,
326 intel_connector->panel.fitting_mode);
327 }
328
Shobhit Kumarf573de52014-07-30 20:32:37 +0530329 /* DSI uses short packets for sync events, so clear mode flags for DSI */
330 adjusted_mode->flags = 0;
331
Jani Nikula4d1de972016-03-18 17:05:42 +0200332 if (IS_BROXTON(dev_priv)) {
333 /* Dual link goes to DSI transcoder A. */
334 if (intel_dsi->ports == BIT(PORT_C))
335 pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
336 else
337 pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
338 }
339
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300340 ret = intel_compute_dsi_pll(encoder, pipe_config);
341 if (ret)
342 return false;
343
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300344 pipe_config->clock_set = true;
345
Jani Nikula4e646492013-08-27 15:12:20 +0300346 return true;
347}
348
Shashank Sharma37ab0812015-09-01 19:41:42 +0530349static void bxt_dsi_device_ready(struct intel_encoder *encoder)
Gaurav K Singh5505a242014-12-04 10:58:47 +0530350{
Shashank Sharma37ab0812015-09-01 19:41:42 +0530351 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530352 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530353 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530354 u32 val;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530355
Shashank Sharma37ab0812015-09-01 19:41:42 +0530356 DRM_DEBUG_KMS("\n");
Gaurav K Singha9da9bc2014-12-05 14:13:41 +0530357
Shashank Sharma37ab0812015-09-01 19:41:42 +0530358 /* Exit Low power state in 4 steps*/
Gaurav K Singh369602d2014-12-05 14:09:28 +0530359 for_each_dsi_port(port, intel_dsi->ports) {
Gaurav K Singh369602d2014-12-05 14:09:28 +0530360
Shashank Sharma37ab0812015-09-01 19:41:42 +0530361 /* 1. Enable MIPI PHY transparent latch */
362 val = I915_READ(BXT_MIPI_PORT_CTRL(port));
363 I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
364 usleep_range(2000, 2500);
365
366 /* 2. Enter ULPS */
367 val = I915_READ(MIPI_DEVICE_READY(port));
368 val &= ~ULPS_STATE_MASK;
369 val |= (ULPS_STATE_ENTER | DEVICE_READY);
370 I915_WRITE(MIPI_DEVICE_READY(port), val);
371 usleep_range(2, 3);
372
373 /* 3. Exit ULPS */
374 val = I915_READ(MIPI_DEVICE_READY(port));
375 val &= ~ULPS_STATE_MASK;
376 val |= (ULPS_STATE_EXIT | DEVICE_READY);
377 I915_WRITE(MIPI_DEVICE_READY(port), val);
378 usleep_range(1000, 1500);
379
380 /* Clear ULPS and set device ready */
381 val = I915_READ(MIPI_DEVICE_READY(port));
382 val &= ~ULPS_STATE_MASK;
383 val |= DEVICE_READY;
384 I915_WRITE(MIPI_DEVICE_READY(port), val);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530385 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530386}
387
Shashank Sharma37ab0812015-09-01 19:41:42 +0530388static void vlv_dsi_device_ready(struct intel_encoder *encoder)
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530389{
390 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530391 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
392 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530393 u32 val;
394
395 DRM_DEBUG_KMS("\n");
396
Ville Syrjäläa5805162015-05-26 20:42:30 +0300397 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530398 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
399 * needed everytime after power gate */
400 vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300401 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530402
403 /* bandgap reset is needed after everytime we do power gate */
404 band_gap_reset(dev_priv);
405
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530406 for_each_dsi_port(port, intel_dsi->ports) {
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530407
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530408 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
409 usleep_range(2500, 3000);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530410
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530411 /* Enable MIPI PHY transparent latch
412 * Common bit for both MIPI Port A & MIPI Port C
413 * No similar bit in MIPI Port C reg
414 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530415 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530416 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530417 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530418
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530419 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
420 usleep_range(2500, 3000);
421
422 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
423 usleep_range(2500, 3000);
424 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530425}
Jani Nikula4e646492013-08-27 15:12:20 +0300426
Shashank Sharma37ab0812015-09-01 19:41:42 +0530427static void intel_dsi_device_ready(struct intel_encoder *encoder)
428{
429 struct drm_device *dev = encoder->base.dev;
430
Wayne Boyer666a4532015-12-09 12:29:35 -0800431 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Shashank Sharma37ab0812015-09-01 19:41:42 +0530432 vlv_dsi_device_ready(encoder);
433 else if (IS_BROXTON(dev))
434 bxt_dsi_device_ready(encoder);
435}
436
437static void intel_dsi_port_enable(struct intel_encoder *encoder)
438{
439 struct drm_device *dev = encoder->base.dev;
440 struct drm_i915_private *dev_priv = dev->dev_private;
441 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
442 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
443 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530444
445 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200446 u32 temp;
447
Shashank Sharma37ab0812015-09-01 19:41:42 +0530448 temp = I915_READ(VLV_CHICKEN_3);
449 temp &= ~PIXEL_OVERLAP_CNT_MASK |
450 intel_dsi->pixel_overlap <<
451 PIXEL_OVERLAP_CNT_SHIFT;
452 I915_WRITE(VLV_CHICKEN_3, temp);
453 }
454
455 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200456 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
457 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
458 u32 temp;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530459
460 temp = I915_READ(port_ctrl);
461
462 temp &= ~LANE_CONFIGURATION_MASK;
463 temp &= ~DUAL_LINK_MODE_MASK;
464
Jani Nikula701d25b2016-03-18 17:05:43 +0200465 if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
Shashank Sharma37ab0812015-09-01 19:41:42 +0530466 temp |= (intel_dsi->dual_link - 1)
467 << DUAL_LINK_MODE_SHIFT;
468 temp |= intel_crtc->pipe ?
469 LANE_CONFIGURATION_DUAL_LINK_B :
470 LANE_CONFIGURATION_DUAL_LINK_A;
471 }
472 /* assert ip_tg_enable signal */
473 I915_WRITE(port_ctrl, temp | DPI_ENABLE);
474 POSTING_READ(port_ctrl);
475 }
476}
477
478static void intel_dsi_port_disable(struct intel_encoder *encoder)
479{
480 struct drm_device *dev = encoder->base.dev;
481 struct drm_i915_private *dev_priv = dev->dev_private;
482 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
483 enum port port;
Shashank Sharma37ab0812015-09-01 19:41:42 +0530484
485 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200486 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
487 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
488 u32 temp;
489
Shashank Sharma37ab0812015-09-01 19:41:42 +0530490 /* de-assert ip_tg_enable signal */
Shashank Sharmab389a452015-09-01 19:41:44 +0530491 temp = I915_READ(port_ctrl);
492 I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
493 POSTING_READ(port_ctrl);
Shashank Sharma37ab0812015-09-01 19:41:42 +0530494 }
495}
496
Jani Nikula4e646492013-08-27 15:12:20 +0300497static void intel_dsi_enable(struct intel_encoder *encoder)
498{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530499 struct drm_device *dev = encoder->base.dev;
500 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300501 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikula4934b652015-01-22 15:01:35 +0200502 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300503
504 DRM_DEBUG_KMS("\n");
505
Jani Nikula4934b652015-01-22 15:01:35 +0200506 if (is_cmd_mode(intel_dsi)) {
507 for_each_dsi_port(port, intel_dsi->ports)
508 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
509 } else {
Jani Nikula4e646492013-08-27 15:12:20 +0300510 msleep(20); /* XXX */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200511 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200512 dpi_send_cmd(intel_dsi, TURN_ON, false, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300513 msleep(100);
514
Jani Nikula593e0622015-01-23 15:30:56 +0200515 drm_panel_enable(intel_dsi->panel);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530516
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200517 for_each_dsi_port(port, intel_dsi->ports)
518 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530519
Gaurav K Singh5505a242014-12-04 10:58:47 +0530520 intel_dsi_port_enable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300521 }
Shobhit Kumarb029e662015-06-26 14:32:10 +0530522
523 intel_panel_enable_backlight(intel_dsi->attached_connector);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530524}
Jani Nikula4e646492013-08-27 15:12:20 +0300525
Jani Nikulae3488e72015-11-27 12:21:44 +0200526static void intel_dsi_prepare(struct intel_encoder *intel_encoder);
527
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530528static void intel_dsi_pre_enable(struct intel_encoder *encoder)
529{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530530 struct drm_device *dev = encoder->base.dev;
531 struct drm_i915_private *dev_priv = dev->dev_private;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530532 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300533 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200534 enum port port;
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530535 u32 tmp;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530536
537 DRM_DEBUG_KMS("\n");
538
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200539 /*
540 * The BIOS may leave the PLL in a wonky state where it doesn't
541 * lock. It needs to be fully powered down to fix it.
542 */
543 intel_disable_dsi_pll(encoder);
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300544 intel_enable_dsi_pll(encoder, crtc->config);
Ville Syrjäläf00b5682016-03-15 16:40:03 +0200545
Ramalingam C58d4d322016-02-03 18:20:46 +0530546 intel_dsi_prepare(encoder);
Jani Nikulae3488e72015-11-27 12:21:44 +0200547
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530548 /* Panel Enable over CRC PMIC */
549 if (intel_dsi->gpio_panel)
550 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
551
552 msleep(intel_dsi->panel_on_delay);
553
Wayne Boyer666a4532015-12-09 12:29:35 -0800554 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +0300555 /* Disable DPOunit clock gating, can stall pipe */
Shashank Sharma37ab0812015-09-01 19:41:42 +0530556 tmp = I915_READ(DSPCLK_GATE_D);
557 tmp |= DPOUNIT_CLOCK_GATE_DISABLE;
558 I915_WRITE(DSPCLK_GATE_D, tmp);
559 }
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530560
561 /* put device in ready state */
562 intel_dsi_device_ready(encoder);
563
Jani Nikula593e0622015-01-23 15:30:56 +0200564 drm_panel_prepare(intel_dsi->panel);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530565
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200566 for_each_dsi_port(port, intel_dsi->ports)
567 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530568
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530569 /* Enable port in pre-enable phase itself because as per hw team
570 * recommendation, port should be enabled befor plane & pipe */
571 intel_dsi_enable(encoder);
572}
573
574static void intel_dsi_enable_nop(struct intel_encoder *encoder)
575{
576 DRM_DEBUG_KMS("\n");
577
578 /* for DSI port enable has to be done before pipe
579 * and plane enable, so port enable is done in
580 * pre_enable phase itself unlike other encoders
581 */
Jani Nikula4e646492013-08-27 15:12:20 +0300582}
583
Imre Deakc315faf2014-05-27 19:00:09 +0300584static void intel_dsi_pre_disable(struct intel_encoder *encoder)
585{
586 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulaf03e4172015-01-16 14:27:16 +0200587 enum port port;
Imre Deakc315faf2014-05-27 19:00:09 +0300588
589 DRM_DEBUG_KMS("\n");
590
Shobhit Kumarb029e662015-06-26 14:32:10 +0530591 intel_panel_disable_backlight(intel_dsi->attached_connector);
592
Imre Deakc315faf2014-05-27 19:00:09 +0300593 if (is_vid_mode(intel_dsi)) {
594 /* Send Shutdown command to the panel in LP mode */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200595 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200596 dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
Imre Deakc315faf2014-05-27 19:00:09 +0300597 msleep(10);
598 }
599}
600
Jani Nikula4e646492013-08-27 15:12:20 +0300601static void intel_dsi_disable(struct intel_encoder *encoder)
602{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530603 struct drm_device *dev = encoder->base.dev;
604 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300605 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530606 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300607 u32 temp;
608
609 DRM_DEBUG_KMS("\n");
610
Jani Nikula4e646492013-08-27 15:12:20 +0300611 if (is_vid_mode(intel_dsi)) {
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200612 for_each_dsi_port(port, intel_dsi->ports)
613 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530614
Gaurav K Singh5505a242014-12-04 10:58:47 +0530615 intel_dsi_port_disable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300616 msleep(2);
617 }
618
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530619 for_each_dsi_port(port, intel_dsi->ports) {
620 /* Panel commands can be sent when clock is in LP11 */
621 I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530622
Shashank Sharmab389a452015-09-01 19:41:44 +0530623 intel_dsi_reset_clocks(encoder, port);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530624 I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530625
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530626 temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
627 temp &= ~VID_MODE_FORMAT_MASK;
628 I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530629
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530630 I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
631 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530632 /* if disable packets are sent before sending shutdown packet then in
633 * some next enable sequence send turn on packet error is observed */
Jani Nikula593e0622015-01-23 15:30:56 +0200634 drm_panel_disable(intel_dsi->panel);
Shobhit Kumar13813082014-07-12 17:17:22 +0530635
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200636 for_each_dsi_port(port, intel_dsi->ports)
637 wait_for_dsi_fifo_empty(intel_dsi, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300638}
639
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530640static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300641{
Shashank Sharmab389a452015-09-01 19:41:44 +0530642 struct drm_device *dev = encoder->base.dev;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530643 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530644 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
645 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530646
Jani Nikula4e646492013-08-27 15:12:20 +0300647 DRM_DEBUG_KMS("\n");
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530648 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200649 /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
650 i915_reg_t port_ctrl = IS_BROXTON(dev) ?
651 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
652 u32 val;
ymohanmabe4fc042013-08-27 23:40:56 +0300653
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530654 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
655 ULPS_STATE_ENTER);
656 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530657
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530658 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
659 ULPS_STATE_EXIT);
660 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530661
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 /* Wait till Clock lanes are in LP-00 state for MIPI Port A
667 * only. MIPI Port C has no similar bit for checking
668 */
Shashank Sharmab389a452015-09-01 19:41:44 +0530669 if (wait_for(((I915_READ(port_ctrl) & AFE_LATCHOUT)
670 == 0x00000), 30))
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530671 DRM_ERROR("DSI LP not going Low\n");
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530672
Shashank Sharmab389a452015-09-01 19:41:44 +0530673 /* Disable MIPI PHY transparent latch */
674 val = I915_READ(port_ctrl);
675 I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530676 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530677
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530678 I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
679 usleep_range(2000, 2500);
680 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530681
Shashank Sharmafe88fc62015-09-01 19:41:39 +0530682 intel_disable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300683}
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530684
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530685static void intel_dsi_post_disable(struct intel_encoder *encoder)
686{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530687 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530688 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
689
690 DRM_DEBUG_KMS("\n");
691
Imre Deakc315faf2014-05-27 19:00:09 +0300692 intel_dsi_disable(encoder);
693
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530694 intel_dsi_clear_device_ready(encoder);
695
Uma Shankard6e3af52016-02-18 13:49:26 +0200696 if (!IS_BROXTON(dev_priv)) {
697 u32 val;
698
699 val = I915_READ(DSPCLK_GATE_D);
700 val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
701 I915_WRITE(DSPCLK_GATE_D, val);
702 }
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530703
Jani Nikula593e0622015-01-23 15:30:56 +0200704 drm_panel_unprepare(intel_dsi->panel);
Shobhit Kumardf38e652014-04-14 11:18:26 +0530705
706 msleep(intel_dsi->panel_off_delay);
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530707
708 /* Panel Disable over CRC PMIC */
709 if (intel_dsi->gpio_panel)
710 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
Ville Syrjälä1d5c65e2016-04-18 19:17:51 +0300711
712 /*
713 * FIXME As we do with eDP, just make a note of the time here
714 * and perform the wait before the next panel power on.
715 */
716 msleep(intel_dsi->panel_pwr_cycle_delay);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530717}
Jani Nikula4e646492013-08-27 15:12:20 +0300718
719static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
720 enum pipe *pipe)
721{
722 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530723 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
724 struct drm_device *dev = encoder->base.dev;
Imre Deak6d129be2014-03-05 16:20:54 +0200725 enum intel_display_power_domain power_domain;
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200726 enum port port;
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200727 bool active = false;
Jani Nikula4e646492013-08-27 15:12:20 +0300728
729 DRM_DEBUG_KMS("\n");
730
Imre Deak6d129be2014-03-05 16:20:54 +0200731 power_domain = intel_display_port_power_domain(encoder);
Imre Deak3f3f42b2016-02-12 18:55:19 +0200732 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200733 return false;
734
Imre Deakdb18b6a2016-03-24 12:41:40 +0200735 /*
736 * On Broxton the PLL needs to be enabled with a valid divider
737 * configuration, otherwise accessing DSI registers will hang the
738 * machine. See BSpec North Display Engine registers/MIPI[BXT].
739 */
740 if (IS_BROXTON(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
741 goto out_put_power;
742
Jani Nikula4e646492013-08-27 15:12:20 +0300743 /* XXX: this only works for one DSI output */
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530744 for_each_dsi_port(port, intel_dsi->ports) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200745 i915_reg_t ctrl_reg = IS_BROXTON(dev) ?
746 BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200747 bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
Jani Nikula4e646492013-08-27 15:12:20 +0300748
Jani Nikulae6f57782016-04-15 15:47:31 +0300749 /*
750 * Due to some hardware limitations on VLV/CHV, the DPI enable
751 * bit in port C control register does not get set. As a
752 * workaround, check pipe B conf instead.
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530753 */
Jani Nikulae6f57782016-04-15 15:47:31 +0300754 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && port == PORT_C)
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200755 enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530756
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200757 /* Try command mode if video mode not enabled */
758 if (!enabled) {
759 u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
760 enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
Jani Nikula4e646492013-08-27 15:12:20 +0300761 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200762
763 if (!enabled)
764 continue;
765
766 if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
767 continue;
768
Jani Nikula6b93e9c2016-03-15 21:51:12 +0200769 if (IS_BROXTON(dev_priv)) {
770 u32 tmp = I915_READ(MIPI_CTRL(port));
771 tmp &= BXT_PIPE_SELECT_MASK;
772 tmp >>= BXT_PIPE_SELECT_SHIFT;
773
774 if (WARN_ON(tmp > PIPE_C))
775 continue;
776
777 *pipe = tmp;
778 } else {
779 *pipe = port == PORT_A ? PIPE_A : PIPE_B;
780 }
781
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200782 active = true;
783 break;
Jani Nikula4e646492013-08-27 15:12:20 +0300784 }
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200785
Imre Deakdb18b6a2016-03-24 12:41:40 +0200786out_put_power:
Imre Deak3f3f42b2016-02-12 18:55:19 +0200787 intel_display_power_put(dev_priv, power_domain);
Jani Nikula4e646492013-08-27 15:12:20 +0300788
Jani Nikula1dcec2f2016-03-15 21:51:11 +0200789 return active;
Jani Nikula4e646492013-08-27 15:12:20 +0300790}
791
Ramalingam C6f0e7532016-04-07 14:36:07 +0530792static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
793 struct intel_crtc_state *pipe_config)
794{
795 struct drm_device *dev = encoder->base.dev;
796 struct drm_i915_private *dev_priv = dev->dev_private;
797 struct drm_display_mode *adjusted_mode =
798 &pipe_config->base.adjusted_mode;
Ramalingam C4832aa12016-04-19 13:48:14 +0530799 struct drm_display_mode *adjusted_mode_sw;
800 struct intel_crtc *intel_crtc;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530801 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Ramalingam C130b62f2016-04-19 13:48:13 +0530802 unsigned int lane_count = intel_dsi->lane_count;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530803 unsigned int bpp, fmt;
804 enum port port;
Ramalingam C130b62f2016-04-19 13:48:13 +0530805 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
Ramalingam C4832aa12016-04-19 13:48:14 +0530806 u16 hfp_sw, hsync_sw, hbp_sw;
807 u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
808 crtc_hblank_start_sw, crtc_hblank_end_sw;
809
810 intel_crtc = to_intel_crtc(encoder->base.crtc);
811 adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530812
813 /*
814 * Atleast one port is active as encoder->get_config called only if
815 * encoder->get_hw_state() returns true.
816 */
817 for_each_dsi_port(port, intel_dsi->ports) {
818 if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
819 break;
820 }
821
822 fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
823 pipe_config->pipe_bpp =
824 mipi_dsi_pixel_format_to_bpp(
825 pixel_format_from_register_bits(fmt));
826 bpp = pipe_config->pipe_bpp;
827
828 /* In terms of pixels */
829 adjusted_mode->crtc_hdisplay =
830 I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
831 adjusted_mode->crtc_vdisplay =
832 I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
833 adjusted_mode->crtc_vtotal =
834 I915_READ(BXT_MIPI_TRANS_VTOTAL(port));
835
Ramalingam C130b62f2016-04-19 13:48:13 +0530836 hactive = adjusted_mode->crtc_hdisplay;
837 hfp = I915_READ(MIPI_HFP_COUNT(port));
838
Ramalingam C6f0e7532016-04-07 14:36:07 +0530839 /*
Ramalingam C130b62f2016-04-19 13:48:13 +0530840 * Meaningful for video mode non-burst sync pulse mode only,
841 * can be zero for non-burst sync events and burst modes
Ramalingam C6f0e7532016-04-07 14:36:07 +0530842 */
Ramalingam C130b62f2016-04-19 13:48:13 +0530843 hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
844 hbp = I915_READ(MIPI_HBP_COUNT(port));
845
846 /* harizontal values are in terms of high speed byte clock */
847 hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
848 intel_dsi->burst_mode_ratio);
849 hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
850 intel_dsi->burst_mode_ratio);
851 hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
852 intel_dsi->burst_mode_ratio);
853
854 if (intel_dsi->dual_link) {
855 hfp *= 2;
856 hsync *= 2;
857 hbp *= 2;
858 }
Ramalingam C6f0e7532016-04-07 14:36:07 +0530859
860 /* vertical values are in terms of lines */
861 vfp = I915_READ(MIPI_VFP_COUNT(port));
862 vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
863 vbp = I915_READ(MIPI_VBP_COUNT(port));
864
Ramalingam C130b62f2016-04-19 13:48:13 +0530865 adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
866 adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
867 adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530868 adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
Ramalingam C130b62f2016-04-19 13:48:13 +0530869 adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530870
Ramalingam C130b62f2016-04-19 13:48:13 +0530871 adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
872 adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530873 adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
874 adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
Ramalingam C6f0e7532016-04-07 14:36:07 +0530875
Ramalingam C4832aa12016-04-19 13:48:14 +0530876 /*
877 * In BXT DSI there is no regs programmed with few horizontal timings
878 * in Pixels but txbyteclkhs.. So retrieval process adds some
879 * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
880 * Actually here for the given adjusted_mode, we are calculating the
881 * value programmed to the port and then back to the horizontal timing
882 * param in pixels. This is the expected value, including roundup errors
883 * And if that is same as retrieved value from port, then
884 * (HW state) adjusted_mode's horizontal timings are corrected to
885 * match with SW state to nullify the errors.
886 */
887 /* Calculating the value programmed to the Port register */
888 hfp_sw = adjusted_mode_sw->crtc_hsync_start -
889 adjusted_mode_sw->crtc_hdisplay;
890 hsync_sw = adjusted_mode_sw->crtc_hsync_end -
891 adjusted_mode_sw->crtc_hsync_start;
892 hbp_sw = adjusted_mode_sw->crtc_htotal -
893 adjusted_mode_sw->crtc_hsync_end;
894
895 if (intel_dsi->dual_link) {
896 hfp_sw /= 2;
897 hsync_sw /= 2;
898 hbp_sw /= 2;
899 }
900
901 hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
902 intel_dsi->burst_mode_ratio);
903 hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
904 intel_dsi->burst_mode_ratio);
905 hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
906 intel_dsi->burst_mode_ratio);
907
908 /* Reverse calculating the adjusted mode parameters from port reg vals*/
909 hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
910 intel_dsi->burst_mode_ratio);
911 hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
912 intel_dsi->burst_mode_ratio);
913 hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
914 intel_dsi->burst_mode_ratio);
915
916 if (intel_dsi->dual_link) {
917 hfp_sw *= 2;
918 hsync_sw *= 2;
919 hbp_sw *= 2;
920 }
921
922 crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
923 hsync_sw + hbp_sw;
924 crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
925 crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
926 crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
927 crtc_hblank_end_sw = crtc_htotal_sw;
928
929 if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
930 adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
931
932 if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
933 adjusted_mode->crtc_hsync_start =
934 adjusted_mode_sw->crtc_hsync_start;
935
936 if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
937 adjusted_mode->crtc_hsync_end =
938 adjusted_mode_sw->crtc_hsync_end;
939
940 if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
941 adjusted_mode->crtc_hblank_start =
942 adjusted_mode_sw->crtc_hblank_start;
943
944 if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
945 adjusted_mode->crtc_hblank_end =
946 adjusted_mode_sw->crtc_hblank_end;
947}
Ramalingam C6f0e7532016-04-07 14:36:07 +0530948
Jani Nikula4e646492013-08-27 15:12:20 +0300949static void intel_dsi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200950 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300951{
Ramalingam C6f0e7532016-04-07 14:36:07 +0530952 struct drm_device *dev = encoder->base.dev;
Jani Nikulad7d85d82016-01-08 12:45:39 +0200953 u32 pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300954 DRM_DEBUG_KMS("\n");
955
Jani Nikulaa65347b2015-11-27 12:21:46 +0200956 pipe_config->has_dsi_encoder = true;
957
Ramalingam C6f0e7532016-04-07 14:36:07 +0530958 if (IS_BROXTON(dev))
959 bxt_dsi_get_pipe_config(encoder, pipe_config);
960
Ville Syrjälä47eacba2016-04-12 22:14:35 +0300961 pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
962 pipe_config);
Shobhit Kumarf573de52014-07-30 20:32:37 +0530963 if (!pclk)
964 return;
965
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200966 pipe_config->base.adjusted_mode.crtc_clock = pclk;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530967 pipe_config->port_clock = pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300968}
969
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000970static enum drm_mode_status
971intel_dsi_mode_valid(struct drm_connector *connector,
972 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +0300973{
974 struct intel_connector *intel_connector = to_intel_connector(connector);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +0300975 const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Mika Kahola759a1e92015-08-18 14:37:01 +0300976 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Jani Nikula4e646492013-08-27 15:12:20 +0300977
978 DRM_DEBUG_KMS("\n");
979
980 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
981 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
982 return MODE_NO_DBLESCAN;
983 }
984
985 if (fixed_mode) {
986 if (mode->hdisplay > fixed_mode->hdisplay)
987 return MODE_PANEL;
988 if (mode->vdisplay > fixed_mode->vdisplay)
989 return MODE_PANEL;
Mika Kahola759a1e92015-08-18 14:37:01 +0300990 if (fixed_mode->clock > max_dotclk)
991 return MODE_CLOCK_HIGH;
Jani Nikula4e646492013-08-27 15:12:20 +0300992 }
993
Jani Nikula36d21f42015-01-16 14:27:20 +0200994 return MODE_OK;
Jani Nikula4e646492013-08-27 15:12:20 +0300995}
996
997/* return txclkesc cycles in terms of divider and duration in us */
998static u16 txclkesc(u32 divider, unsigned int us)
999{
1000 switch (divider) {
1001 case ESCAPE_CLOCK_DIVIDER_1:
1002 default:
1003 return 20 * us;
1004 case ESCAPE_CLOCK_DIVIDER_2:
1005 return 10 * us;
1006 case ESCAPE_CLOCK_DIVIDER_4:
1007 return 5 * us;
1008 }
1009}
1010
Jani Nikula4e646492013-08-27 15:12:20 +03001011static void set_dsi_timings(struct drm_encoder *encoder,
Ville Syrjälä5e7234c2015-09-25 16:37:43 +03001012 const struct drm_display_mode *adjusted_mode)
Jani Nikula4e646492013-08-27 15:12:20 +03001013{
1014 struct drm_device *dev = encoder->dev;
1015 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +03001016 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301017 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001018 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001019 unsigned int lane_count = intel_dsi->lane_count;
1020
1021 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
1022
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001023 hactive = adjusted_mode->crtc_hdisplay;
1024 hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
1025 hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
1026 hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001027
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301028 if (intel_dsi->dual_link) {
1029 hactive /= 2;
1030 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1031 hactive += intel_dsi->pixel_overlap;
1032 hfp /= 2;
1033 hsync /= 2;
1034 hbp /= 2;
1035 }
1036
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001037 vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
1038 vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
1039 vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
Jani Nikula4e646492013-08-27 15:12:20 +03001040
1041 /* horizontal values are in terms of high speed byte clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301042 hactive = txbyteclkhs(hactive, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001043 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301044 hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
1045 hsync = txbyteclkhs(hsync, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +02001046 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +05301047 hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
Jani Nikula4e646492013-08-27 15:12:20 +03001048
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301049 for_each_dsi_port(port, intel_dsi->ports) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301050 if (IS_BROXTON(dev)) {
1051 /*
1052 * Program hdisplay and vdisplay on MIPI transcoder.
1053 * This is different from calculated hactive and
1054 * vactive, as they are calculated per channel basis,
1055 * whereas these values should be based on resolution.
1056 */
1057 I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001058 adjusted_mode->crtc_hdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301059 I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001060 adjusted_mode->crtc_vdisplay);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301061 I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001062 adjusted_mode->crtc_vtotal);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301063 }
1064
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301065 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
1066 I915_WRITE(MIPI_HFP_COUNT(port), hfp);
Jani Nikula4e646492013-08-27 15:12:20 +03001067
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301068 /* meaningful for video mode non-burst sync pulse mode only,
1069 * can be zero for non-burst sync events and burst modes */
1070 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
1071 I915_WRITE(MIPI_HBP_COUNT(port), hbp);
Jani Nikula4e646492013-08-27 15:12:20 +03001072
Gaurav K Singhaa102d22014-12-04 10:58:54 +05301073 /* vertical values are in terms of lines */
1074 I915_WRITE(MIPI_VFP_COUNT(port), vfp);
1075 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
1076 I915_WRITE(MIPI_VBP_COUNT(port), vbp);
1077 }
Jani Nikula4e646492013-08-27 15:12:20 +03001078}
1079
Jani Nikula1e78aa02016-03-16 12:21:40 +02001080static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
1081{
1082 switch (fmt) {
1083 case MIPI_DSI_FMT_RGB888:
1084 return VID_MODE_FORMAT_RGB888;
1085 case MIPI_DSI_FMT_RGB666:
1086 return VID_MODE_FORMAT_RGB666;
1087 case MIPI_DSI_FMT_RGB666_PACKED:
1088 return VID_MODE_FORMAT_RGB666_PACKED;
1089 case MIPI_DSI_FMT_RGB565:
1090 return VID_MODE_FORMAT_RGB565;
1091 default:
1092 MISSING_CASE(fmt);
1093 return VID_MODE_FORMAT_RGB666;
1094 }
1095}
1096
Daniel Vetter07e4fb92014-04-24 23:54:59 +02001097static void intel_dsi_prepare(struct intel_encoder *intel_encoder)
Jani Nikula4e646492013-08-27 15:12:20 +03001098{
1099 struct drm_encoder *encoder = &intel_encoder->base;
1100 struct drm_device *dev = encoder->dev;
1101 struct drm_i915_private *dev_priv = dev->dev_private;
1102 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
1103 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001104 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301105 enum port port;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001106 unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001107 u32 val, tmp;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301108 u16 mode_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001109
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001110 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
Jani Nikula4e646492013-08-27 15:12:20 +03001111
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001112 mode_hdisplay = adjusted_mode->crtc_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +03001113
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301114 if (intel_dsi->dual_link) {
1115 mode_hdisplay /= 2;
1116 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
1117 mode_hdisplay += intel_dsi->pixel_overlap;
1118 }
Jani Nikula4e646492013-08-27 15:12:20 +03001119
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301120 for_each_dsi_port(port, intel_dsi->ports) {
Wayne Boyer666a4532015-12-09 12:29:35 -08001121 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301122 /*
1123 * escape clock divider, 20MHz, shared for A and C.
1124 * device ready must be off when doing this! txclkesc?
1125 */
1126 tmp = I915_READ(MIPI_CTRL(PORT_A));
1127 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
1128 I915_WRITE(MIPI_CTRL(PORT_A), tmp |
1129 ESCAPE_CLOCK_DIVIDER_1);
Jani Nikula4e646492013-08-27 15:12:20 +03001130
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301131 /* read request priority is per pipe */
1132 tmp = I915_READ(MIPI_CTRL(port));
1133 tmp &= ~READ_REQUEST_PRIORITY_MASK;
1134 I915_WRITE(MIPI_CTRL(port), tmp |
1135 READ_REQUEST_PRIORITY_HIGH);
1136 } else if (IS_BROXTON(dev)) {
Deepak M56c48972015-12-09 20:14:04 +05301137 enum pipe pipe = intel_crtc->pipe;
1138
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301139 tmp = I915_READ(MIPI_CTRL(port));
1140 tmp &= ~BXT_PIPE_SELECT_MASK;
1141
Deepak M56c48972015-12-09 20:14:04 +05301142 tmp |= BXT_PIPE_SELECT(pipe);
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301143 I915_WRITE(MIPI_CTRL(port), tmp);
1144 }
Jani Nikula4e646492013-08-27 15:12:20 +03001145
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301146 /* XXX: why here, why like this? handling in irq handler?! */
1147 I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
1148 I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
1149
1150 I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
1151
1152 I915_WRITE(MIPI_DPI_RESOLUTION(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001153 adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301154 mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
1155 }
Jani Nikula4e646492013-08-27 15:12:20 +03001156
1157 set_dsi_timings(encoder, adjusted_mode);
1158
1159 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
1160 if (is_cmd_mode(intel_dsi)) {
1161 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
1162 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
1163 } else {
1164 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
Jani Nikula1e78aa02016-03-16 12:21:40 +02001165 val |= pixel_format_to_reg(intel_dsi->pixel_format);
Jani Nikula4e646492013-08-27 15:12:20 +03001166 }
Jani Nikula4e646492013-08-27 15:12:20 +03001167
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301168 tmp = 0;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301169 if (intel_dsi->eotp_pkt == 0)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301170 tmp |= EOT_DISABLE;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +05301171 if (intel_dsi->clock_stop)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301172 tmp |= CLOCKSTOP;
Jani Nikula4e646492013-08-27 15:12:20 +03001173
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301174 for_each_dsi_port(port, intel_dsi->ports) {
1175 I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
Jani Nikula4e646492013-08-27 15:12:20 +03001176
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301177 /* timeouts for recovery. one frame IIUC. if counter expires,
1178 * EOT and stop state. */
Shobhit Kumarcf4dbd22014-04-14 11:18:25 +05301179
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301180 /*
1181 * In burst mode, value greater than one DPI line Time in byte
1182 * clock (txbyteclkhs) To timeout this timer 1+ of the above
1183 * said value is recommended.
1184 *
1185 * In non-burst mode, Value greater than one DPI frame time in
1186 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1187 * said value is recommended.
1188 *
1189 * In DBI only mode, value greater than one DBI frame time in
1190 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
1191 * said value is recommended.
1192 */
Jani Nikula4e646492013-08-27 15:12:20 +03001193
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301194 if (is_vid_mode(intel_dsi) &&
1195 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
1196 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001197 txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001198 intel_dsi->lane_count,
1199 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301200 } else {
1201 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
Ville Syrjäläaad941d2015-09-25 16:38:56 +03001202 txbyteclkhs(adjusted_mode->crtc_vtotal *
1203 adjusted_mode->crtc_htotal,
Ville Syrjälä124abe02015-09-08 13:40:45 +03001204 bpp, intel_dsi->lane_count,
1205 intel_dsi->burst_mode_ratio) + 1);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301206 }
1207 I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
1208 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
1209 intel_dsi->turn_arnd_val);
1210 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
1211 intel_dsi->rst_timer_val);
Jani Nikula4e646492013-08-27 15:12:20 +03001212
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301213 /* dphy stuff */
Jani Nikula4e646492013-08-27 15:12:20 +03001214
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301215 /* in terms of low power clock */
1216 I915_WRITE(MIPI_INIT_COUNT(port),
1217 txclkesc(intel_dsi->escape_clk_div, 100));
Jani Nikula4e646492013-08-27 15:12:20 +03001218
Shashank Sharmad2e08c02015-09-01 19:41:40 +05301219 if (IS_BROXTON(dev) && (!intel_dsi->dual_link)) {
1220 /*
1221 * BXT spec says write MIPI_INIT_COUNT for
1222 * both the ports, even if only one is
1223 * getting used. So write the other port
1224 * if not in dual link mode.
1225 */
1226 I915_WRITE(MIPI_INIT_COUNT(port ==
1227 PORT_A ? PORT_C : PORT_A),
1228 intel_dsi->init_count);
1229 }
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301230
1231 /* recovery disables */
Shobhit Kumar87c54d02015-02-03 12:17:35 +05301232 I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +05301233
1234 /* in terms of low power clock */
1235 I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
1236
1237 /* in terms of txbyteclkhs. actual high to low switch +
1238 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
1239 *
1240 * XXX: write MIPI_STOP_STATE_STALL?
1241 */
1242 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
1243 intel_dsi->hs_to_lp_count);
1244
1245 /* XXX: low power clock equivalence in terms of byte clock.
1246 * the number of byte clocks occupied in one low power clock.
1247 * based on txbyteclkhs and txclkesc.
1248 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
1249 * ) / 105.???
1250 */
1251 I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
1252
1253 /* the bw essential for transmitting 16 long packets containing
1254 * 252 bytes meant for dcs write memory command is programmed in
1255 * this register in terms of byte clocks. based on dsi transfer
1256 * rate and the number of lanes configured the time taken to
1257 * transmit 16 long packets in a dsi stream varies. */
1258 I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
1259
1260 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
1261 intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
1262 intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
1263
1264 if (is_vid_mode(intel_dsi))
1265 /* Some panels might have resolution which is not a
1266 * multiple of 64 like 1366 x 768. Enable RANDOM
1267 * resolution support for such panels by default */
1268 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
1269 intel_dsi->video_frmt_cfg_bits |
1270 intel_dsi->video_mode_format |
1271 IP_TG_CONFIG |
1272 RANDOM_DPI_DISPLAY_RESOLUTION);
1273 }
Jani Nikula4e646492013-08-27 15:12:20 +03001274}
1275
1276static enum drm_connector_status
1277intel_dsi_detect(struct drm_connector *connector, bool force)
1278{
Jani Nikula36d21f42015-01-16 14:27:20 +02001279 return connector_status_connected;
Jani Nikula4e646492013-08-27 15:12:20 +03001280}
1281
1282static int intel_dsi_get_modes(struct drm_connector *connector)
1283{
1284 struct intel_connector *intel_connector = to_intel_connector(connector);
1285 struct drm_display_mode *mode;
1286
1287 DRM_DEBUG_KMS("\n");
1288
1289 if (!intel_connector->panel.fixed_mode) {
1290 DRM_DEBUG_KMS("no fixed mode\n");
1291 return 0;
1292 }
1293
1294 mode = drm_mode_duplicate(connector->dev,
1295 intel_connector->panel.fixed_mode);
1296 if (!mode) {
1297 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
1298 return 0;
1299 }
1300
1301 drm_mode_probed_add(connector, mode);
1302 return 1;
1303}
1304
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001305static int intel_dsi_set_property(struct drm_connector *connector,
1306 struct drm_property *property,
1307 uint64_t val)
1308{
1309 struct drm_device *dev = connector->dev;
1310 struct intel_connector *intel_connector = to_intel_connector(connector);
1311 struct drm_crtc *crtc;
1312 int ret;
1313
1314 ret = drm_object_property_set_value(&connector->base, property, val);
1315 if (ret)
1316 return ret;
1317
1318 if (property == dev->mode_config.scaling_mode_property) {
1319 if (val == DRM_MODE_SCALE_NONE) {
1320 DRM_DEBUG_KMS("no scaling not supported\n");
1321 return -EINVAL;
1322 }
Ville Syrjälä234126c2016-04-12 22:14:38 +03001323 if (HAS_GMCH_DISPLAY(dev) &&
1324 val == DRM_MODE_SCALE_CENTER) {
1325 DRM_DEBUG_KMS("centering not supported\n");
1326 return -EINVAL;
1327 }
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001328
1329 if (intel_connector->panel.fitting_mode == val)
1330 return 0;
1331
1332 intel_connector->panel.fitting_mode = val;
1333 }
1334
1335 crtc = intel_attached_encoder(connector)->base.crtc;
1336 if (crtc && crtc->state->enable) {
1337 /*
1338 * If the CRTC is enabled, the display will be changed
1339 * according to the new panel fitting mode.
1340 */
1341 intel_crtc_restore_mode(crtc);
1342 }
1343
1344 return 0;
1345}
1346
Jani Nikula593e0622015-01-23 15:30:56 +02001347static void intel_dsi_connector_destroy(struct drm_connector *connector)
Jani Nikula4e646492013-08-27 15:12:20 +03001348{
1349 struct intel_connector *intel_connector = to_intel_connector(connector);
1350
1351 DRM_DEBUG_KMS("\n");
1352 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +03001353 drm_connector_cleanup(connector);
1354 kfree(connector);
1355}
1356
Jani Nikula593e0622015-01-23 15:30:56 +02001357static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
1358{
1359 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
1360
1361 if (intel_dsi->panel) {
1362 drm_panel_detach(intel_dsi->panel);
1363 /* XXX: Logically this call belongs in the panel driver. */
1364 drm_panel_remove(intel_dsi->panel);
1365 }
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301366
1367 /* dispose of the gpios */
1368 if (intel_dsi->gpio_panel)
1369 gpiod_put(intel_dsi->gpio_panel);
1370
Jani Nikula593e0622015-01-23 15:30:56 +02001371 intel_encoder_destroy(encoder);
1372}
1373
Jani Nikula4e646492013-08-27 15:12:20 +03001374static const struct drm_encoder_funcs intel_dsi_funcs = {
Jani Nikula593e0622015-01-23 15:30:56 +02001375 .destroy = intel_dsi_encoder_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001376};
1377
1378static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
1379 .get_modes = intel_dsi_get_modes,
1380 .mode_valid = intel_dsi_mode_valid,
1381 .best_encoder = intel_best_encoder,
1382};
1383
1384static const struct drm_connector_funcs intel_dsi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001385 .dpms = drm_atomic_helper_connector_dpms,
Jani Nikula4e646492013-08-27 15:12:20 +03001386 .detect = intel_dsi_detect,
Jani Nikula593e0622015-01-23 15:30:56 +02001387 .destroy = intel_dsi_connector_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +03001388 .fill_modes = drm_helper_probe_single_connector_modes,
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001389 .set_property = intel_dsi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001390 .atomic_get_property = intel_connector_atomic_get_property,
Matt Roperc6f95f22015-01-22 16:50:32 -08001391 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001392 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jani Nikula4e646492013-08-27 15:12:20 +03001393};
1394
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001395static void intel_dsi_add_properties(struct intel_connector *connector)
1396{
1397 struct drm_device *dev = connector->base.dev;
1398
1399 if (connector->panel.fixed_mode) {
1400 drm_mode_create_scaling_mode_property(dev);
1401 drm_object_attach_property(&connector->base.base,
1402 dev->mode_config.scaling_mode_property,
1403 DRM_MODE_SCALE_ASPECT);
1404 connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
1405 }
1406}
1407
Damien Lespiau4328633d2014-05-28 12:30:56 +01001408void intel_dsi_init(struct drm_device *dev)
Jani Nikula4e646492013-08-27 15:12:20 +03001409{
1410 struct intel_dsi *intel_dsi;
1411 struct intel_encoder *intel_encoder;
1412 struct drm_encoder *encoder;
1413 struct intel_connector *intel_connector;
1414 struct drm_connector *connector;
Jani Nikula593e0622015-01-23 15:30:56 +02001415 struct drm_display_mode *scan, *fixed_mode = NULL;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301416 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula7e9804f2015-01-16 14:27:23 +02001417 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +03001418 unsigned int i;
1419
1420 DRM_DEBUG_KMS("\n");
1421
Shobhit Kumar3e6bd012014-05-27 19:33:59 +05301422 /* There is no detection method for MIPI so rely on VBT */
Jani Nikula7137aec2016-03-16 12:43:32 +02001423 if (!intel_bios_is_dsi_present(dev_priv, &port))
Damien Lespiau4328633d2014-05-28 12:30:56 +01001424 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001425
Wayne Boyer666a4532015-12-09 12:29:35 -08001426 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301427 dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
Shashank Sharmac6c794a2016-03-22 12:01:50 +02001428 } else if (IS_BROXTON(dev)) {
1429 dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301430 } else {
1431 DRM_ERROR("Unsupported Mipi device to reg base");
Christoph Jaeger868d6652014-06-13 21:51:22 +02001432 return;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301433 }
1434
Jani Nikula4e646492013-08-27 15:12:20 +03001435 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
1436 if (!intel_dsi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001437 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001438
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001439 intel_connector = intel_connector_alloc();
Jani Nikula4e646492013-08-27 15:12:20 +03001440 if (!intel_connector) {
1441 kfree(intel_dsi);
Damien Lespiau4328633d2014-05-28 12:30:56 +01001442 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001443 }
1444
1445 intel_encoder = &intel_dsi->base;
1446 encoder = &intel_encoder->base;
1447 intel_dsi->attached_connector = intel_connector;
1448
Jani Nikula4e646492013-08-27 15:12:20 +03001449 connector = &intel_connector->base;
1450
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001451 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
1452 NULL);
Jani Nikula4e646492013-08-27 15:12:20 +03001453
Jani Nikula4e646492013-08-27 15:12:20 +03001454 intel_encoder->compute_config = intel_dsi_compute_config;
Jani Nikula4e646492013-08-27 15:12:20 +03001455 intel_encoder->pre_enable = intel_dsi_pre_enable;
Shobhit Kumar2634fd72014-04-09 13:59:31 +05301456 intel_encoder->enable = intel_dsi_enable_nop;
Imre Deakc315faf2014-05-27 19:00:09 +03001457 intel_encoder->disable = intel_dsi_pre_disable;
Jani Nikula4e646492013-08-27 15:12:20 +03001458 intel_encoder->post_disable = intel_dsi_post_disable;
1459 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
1460 intel_encoder->get_config = intel_dsi_get_config;
1461
1462 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001463 intel_connector->unregister = intel_connector_unregister;
Jani Nikula4e646492013-08-27 15:12:20 +03001464
Jani Nikula2e85ab42016-03-18 17:05:44 +02001465 /*
1466 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
1467 * port C. BXT isn't limited like this.
1468 */
1469 if (IS_BROXTON(dev_priv))
1470 intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
1471 else if (port == PORT_A)
Jani Nikula701d25b2016-03-18 17:05:43 +02001472 intel_encoder->crtc_mask = BIT(PIPE_A);
Jani Nikula7137aec2016-03-16 12:43:32 +02001473 else
Jani Nikula701d25b2016-03-18 17:05:43 +02001474 intel_encoder->crtc_mask = BIT(PIPE_B);
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001475
Gaurav K Singh82425782015-08-03 15:45:32 +05301476 if (dev_priv->vbt.dsi.config->dual_link)
Jani Nikula701d25b2016-03-18 17:05:43 +02001477 intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
Jani Nikula7137aec2016-03-16 12:43:32 +02001478 else
Jani Nikula701d25b2016-03-18 17:05:43 +02001479 intel_dsi->ports = BIT(port);
Gaurav K Singh82425782015-08-03 15:45:32 +05301480
Jani Nikula7e9804f2015-01-16 14:27:23 +02001481 /* Create a DSI host (and a device) for each port. */
1482 for_each_dsi_port(port, intel_dsi->ports) {
1483 struct intel_dsi_host *host;
1484
1485 host = intel_dsi_host_init(intel_dsi, port);
1486 if (!host)
1487 goto err;
1488
1489 intel_dsi->dsi_hosts[port] = host;
1490 }
1491
Jani Nikula593e0622015-01-23 15:30:56 +02001492 for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
1493 intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
1494 intel_dsi_drivers[i].panel_id);
1495 if (intel_dsi->panel)
Jani Nikula4e646492013-08-27 15:12:20 +03001496 break;
1497 }
1498
Jani Nikula593e0622015-01-23 15:30:56 +02001499 if (!intel_dsi->panel) {
Jani Nikula4e646492013-08-27 15:12:20 +03001500 DRM_DEBUG_KMS("no device found\n");
1501 goto err;
1502 }
1503
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301504 /*
1505 * In case of BYT with CRC PMIC, we need to use GPIO for
1506 * Panel control.
1507 */
1508 if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) {
1509 intel_dsi->gpio_panel =
1510 gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
1511
1512 if (IS_ERR(intel_dsi->gpio_panel)) {
1513 DRM_ERROR("Failed to own gpio for panel control\n");
1514 intel_dsi->gpio_panel = NULL;
1515 }
1516 }
1517
Jani Nikula4e646492013-08-27 15:12:20 +03001518 intel_encoder->type = INTEL_OUTPUT_DSI;
Ville Syrjäläbc079e82014-03-03 16:15:28 +02001519 intel_encoder->cloneable = 0;
Jani Nikula4e646492013-08-27 15:12:20 +03001520 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
1521 DRM_MODE_CONNECTOR_DSI);
1522
1523 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
1524
1525 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
1526 connector->interlace_allowed = false;
1527 connector->doublescan_allowed = false;
1528
1529 intel_connector_attach_encoder(intel_connector, intel_encoder);
1530
Jani Nikula593e0622015-01-23 15:30:56 +02001531 drm_panel_attach(intel_dsi->panel, connector);
1532
1533 mutex_lock(&dev->mode_config.mutex);
1534 drm_panel_get_modes(intel_dsi->panel);
1535 list_for_each_entry(scan, &connector->probed_modes, head) {
1536 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
1537 fixed_mode = drm_mode_duplicate(dev, scan);
1538 break;
1539 }
1540 }
1541 mutex_unlock(&dev->mode_config.mutex);
1542
Jani Nikula4e646492013-08-27 15:12:20 +03001543 if (!fixed_mode) {
1544 DRM_DEBUG_KMS("no fixed mode\n");
1545 goto err;
1546 }
1547
Ville Syrjälä356d27b2016-05-31 12:08:34 +03001548 connector->display_info.width_mm = fixed_mode->width_mm;
1549 connector->display_info.height_mm = fixed_mode->height_mm;
1550
Vandana Kannan4b6ed682014-02-11 14:26:36 +05301551 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Ville Syrjäläf4ee2652016-04-12 22:14:37 +03001552
1553 intel_dsi_add_properties(intel_connector);
1554
1555 drm_connector_register(connector);
1556
Shobhit Kumarb029e662015-06-26 14:32:10 +05301557 intel_panel_setup_backlight(connector, INVALID_PIPE);
Jani Nikula4e646492013-08-27 15:12:20 +03001558
Damien Lespiau4328633d2014-05-28 12:30:56 +01001559 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001560
1561err:
1562 drm_encoder_cleanup(&intel_encoder->base);
1563 kfree(intel_dsi);
1564 kfree(intel_connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001565}