blob: 892b936e14d438e91bbc1af1a165d8bec2f06194 [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
Jani Nikula7f6a6a42015-01-16 14:27:19 +020049static void wait_for_dsi_fifo_empty(struct intel_dsi *intel_dsi, enum port port)
Jani Nikula3b1808b2015-01-16 14:27:18 +020050{
51 struct drm_encoder *encoder = &intel_dsi->base.base;
52 struct drm_device *dev = encoder->dev;
53 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula3b1808b2015-01-16 14:27:18 +020054 u32 mask;
55
56 mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY |
57 LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY;
58
59 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & mask) == mask, 100))
60 DRM_ERROR("DPI FIFOs are not empty\n");
61}
62
Jani Nikula7e9804f2015-01-16 14:27:23 +020063static void write_data(struct drm_i915_private *dev_priv, u32 reg,
64 const u8 *data, u32 len)
65{
66 u32 i, j;
67
68 for (i = 0; i < len; i += 4) {
69 u32 val = 0;
70
71 for (j = 0; j < min_t(u32, len - i, 4); j++)
72 val |= *data++ << 8 * j;
73
74 I915_WRITE(reg, val);
75 }
76}
77
78static void read_data(struct drm_i915_private *dev_priv, u32 reg,
79 u8 *data, u32 len)
80{
81 u32 i, j;
82
83 for (i = 0; i < len; i += 4) {
84 u32 val = I915_READ(reg);
85
86 for (j = 0; j < min_t(u32, len - i, 4); j++)
87 *data++ = val >> 8 * j;
88 }
89}
90
91static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host,
92 const struct mipi_dsi_msg *msg)
93{
94 struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host);
95 struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev;
96 struct drm_i915_private *dev_priv = dev->dev_private;
97 enum port port = intel_dsi_host->port;
98 struct mipi_dsi_packet packet;
99 ssize_t ret;
100 const u8 *header, *data;
101 u32 data_reg, data_mask, ctrl_reg, ctrl_mask;
102
103 ret = mipi_dsi_create_packet(&packet, msg);
104 if (ret < 0)
105 return ret;
106
107 header = packet.header;
108 data = packet.payload;
109
110 if (msg->flags & MIPI_DSI_MSG_USE_LPM) {
111 data_reg = MIPI_LP_GEN_DATA(port);
112 data_mask = LP_DATA_FIFO_FULL;
113 ctrl_reg = MIPI_LP_GEN_CTRL(port);
114 ctrl_mask = LP_CTRL_FIFO_FULL;
115 } else {
116 data_reg = MIPI_HS_GEN_DATA(port);
117 data_mask = HS_DATA_FIFO_FULL;
118 ctrl_reg = MIPI_HS_GEN_CTRL(port);
119 ctrl_mask = HS_CTRL_FIFO_FULL;
120 }
121
122 /* note: this is never true for reads */
123 if (packet.payload_length) {
124
125 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & data_mask) == 0, 50))
126 DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n");
127
128 write_data(dev_priv, data_reg, packet.payload,
129 packet.payload_length);
130 }
131
132 if (msg->rx_len) {
133 I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL);
134 }
135
136 if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & ctrl_mask) == 0, 50)) {
137 DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
138 }
139
140 I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]);
141
142 /* ->rx_len is set only for reads */
143 if (msg->rx_len) {
144 data_mask = GEN_READ_DATA_AVAIL;
145 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50))
146 DRM_ERROR("Timeout waiting for read data.\n");
147
148 read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
149 }
150
151 /* XXX: fix for reads and writes */
152 return 4 + packet.payload_length;
153}
154
155static int intel_dsi_host_attach(struct mipi_dsi_host *host,
156 struct mipi_dsi_device *dsi)
157{
158 return 0;
159}
160
161static int intel_dsi_host_detach(struct mipi_dsi_host *host,
162 struct mipi_dsi_device *dsi)
163{
164 return 0;
165}
166
167static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
168 .attach = intel_dsi_host_attach,
169 .detach = intel_dsi_host_detach,
170 .transfer = intel_dsi_host_transfer,
171};
172
173static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
174 enum port port)
175{
176 struct intel_dsi_host *host;
177 struct mipi_dsi_device *device;
178
179 host = kzalloc(sizeof(*host), GFP_KERNEL);
180 if (!host)
181 return NULL;
182
183 host->base.ops = &intel_dsi_host_ops;
184 host->intel_dsi = intel_dsi;
185 host->port = port;
186
187 /*
188 * We should call mipi_dsi_host_register(&host->base) here, but we don't
189 * have a host->dev, and we don't have OF stuff either. So just use the
190 * dsi framework as a library and hope for the best. Create the dsi
191 * devices by ourselves here too. Need to be careful though, because we
192 * don't initialize any of the driver model devices here.
193 */
194 device = kzalloc(sizeof(*device), GFP_KERNEL);
195 if (!device) {
196 kfree(host);
197 return NULL;
198 }
199
200 device->host = &host->base;
201 host->device = device;
202
203 return host;
204}
205
Jani Nikulaa2581a92015-01-16 14:27:26 +0200206/*
207 * send a video mode command
208 *
209 * XXX: commands with data in MIPI_DPI_DATA?
210 */
211static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
212 enum port port)
213{
214 struct drm_encoder *encoder = &intel_dsi->base.base;
215 struct drm_device *dev = encoder->dev;
216 struct drm_i915_private *dev_priv = dev->dev_private;
217 u32 mask;
218
219 /* XXX: pipe, hs */
220 if (hs)
221 cmd &= ~DPI_LP_MODE;
222 else
223 cmd |= DPI_LP_MODE;
224
225 /* clear bit */
226 I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);
227
228 /* XXX: old code skips write if control unchanged */
229 if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
230 DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);
231
232 I915_WRITE(MIPI_DPI_CONTROL(port), cmd);
233
234 mask = SPL_PKT_SENT_INTERRUPT;
235 if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100))
236 DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);
237
238 return 0;
239}
240
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530241static void band_gap_reset(struct drm_i915_private *dev_priv)
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300242{
Ville Syrjäläa5805162015-05-26 20:42:30 +0300243 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300244
Shobhit Kumare9fe51c2013-12-10 12:14:55 +0530245 vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
246 vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
247 vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
248 udelay(150);
249 vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
250 vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300251
Ville Syrjäläa5805162015-05-26 20:42:30 +0300252 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300253}
254
Jani Nikula4e646492013-08-27 15:12:20 +0300255static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
256{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530257 return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300258}
259
260static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
261{
Shobhit Kumardfba2e22014-04-14 11:18:24 +0530262 return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
Jani Nikula4e646492013-08-27 15:12:20 +0300263}
264
265static void intel_dsi_hot_plug(struct intel_encoder *encoder)
266{
267 DRM_DEBUG_KMS("\n");
268}
269
270static bool intel_dsi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200271 struct intel_crtc_state *config)
Jani Nikula4e646492013-08-27 15:12:20 +0300272{
273 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
274 base);
275 struct intel_connector *intel_connector = intel_dsi->attached_connector;
276 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200277 struct drm_display_mode *adjusted_mode = &config->base.adjusted_mode;
Jani Nikula4e646492013-08-27 15:12:20 +0300278
279 DRM_DEBUG_KMS("\n");
280
281 if (fixed_mode)
282 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
283
Shobhit Kumarf573de52014-07-30 20:32:37 +0530284 /* DSI uses short packets for sync events, so clear mode flags for DSI */
285 adjusted_mode->flags = 0;
286
Jani Nikula4e646492013-08-27 15:12:20 +0300287 return true;
288}
289
Gaurav K Singh5505a242014-12-04 10:58:47 +0530290static void intel_dsi_port_enable(struct intel_encoder *encoder)
291{
292 struct drm_device *dev = encoder->base.dev;
293 struct drm_i915_private *dev_priv = dev->dev_private;
294 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
295 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh369602d2014-12-05 14:09:28 +0530296 enum port port;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530297 u32 temp;
298
Gaurav K Singha9da9bc2014-12-05 14:13:41 +0530299 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
300 temp = I915_READ(VLV_CHICKEN_3);
301 temp &= ~PIXEL_OVERLAP_CNT_MASK |
302 intel_dsi->pixel_overlap <<
303 PIXEL_OVERLAP_CNT_SHIFT;
304 I915_WRITE(VLV_CHICKEN_3, temp);
305 }
306
Gaurav K Singh369602d2014-12-05 14:09:28 +0530307 for_each_dsi_port(port, intel_dsi->ports) {
308 temp = I915_READ(MIPI_PORT_CTRL(port));
309 temp &= ~LANE_CONFIGURATION_MASK;
310 temp &= ~DUAL_LINK_MODE_MASK;
311
312 if (intel_dsi->ports == ((1 << PORT_A) | (1 << PORT_C))) {
313 temp |= (intel_dsi->dual_link - 1)
314 << DUAL_LINK_MODE_SHIFT;
315 temp |= intel_crtc->pipe ?
316 LANE_CONFIGURATION_DUAL_LINK_B :
317 LANE_CONFIGURATION_DUAL_LINK_A;
318 }
319 /* assert ip_tg_enable signal */
320 I915_WRITE(MIPI_PORT_CTRL(port), temp | DPI_ENABLE);
321 POSTING_READ(MIPI_PORT_CTRL(port));
322 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530323}
324
325static void intel_dsi_port_disable(struct intel_encoder *encoder)
326{
327 struct drm_device *dev = encoder->base.dev;
328 struct drm_i915_private *dev_priv = dev->dev_private;
Gaurav K Singh369602d2014-12-05 14:09:28 +0530329 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
330 enum port port;
Gaurav K Singh5505a242014-12-04 10:58:47 +0530331 u32 temp;
332
Gaurav K Singh369602d2014-12-05 14:09:28 +0530333 for_each_dsi_port(port, intel_dsi->ports) {
334 /* de-assert ip_tg_enable signal */
335 temp = I915_READ(MIPI_PORT_CTRL(port));
336 I915_WRITE(MIPI_PORT_CTRL(port), temp & ~DPI_ENABLE);
337 POSTING_READ(MIPI_PORT_CTRL(port));
338 }
Gaurav K Singh5505a242014-12-04 10:58:47 +0530339}
340
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530341static void intel_dsi_device_ready(struct intel_encoder *encoder)
342{
343 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530344 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
345 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530346 u32 val;
347
348 DRM_DEBUG_KMS("\n");
349
Ville Syrjäläa5805162015-05-26 20:42:30 +0300350 mutex_lock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530351 /* program rcomp for compliance, reduce from 50 ohms to 45 ohms
352 * needed everytime after power gate */
353 vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
Ville Syrjäläa5805162015-05-26 20:42:30 +0300354 mutex_unlock(&dev_priv->sb_lock);
Shobhit Kumar2095f9f2014-04-09 13:59:30 +0530355
356 /* bandgap reset is needed after everytime we do power gate */
357 band_gap_reset(dev_priv);
358
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530359 for_each_dsi_port(port, intel_dsi->ports) {
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530360
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530361 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
362 usleep_range(2500, 3000);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530363
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530364 /* Enable MIPI PHY transparent latch
365 * Common bit for both MIPI Port A & MIPI Port C
366 * No similar bit in MIPI Port C reg
367 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530368 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singhbf344e82014-12-07 16:13:54 +0530369 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530370 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530371
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530372 I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
373 usleep_range(2500, 3000);
374
375 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
376 usleep_range(2500, 3000);
377 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530378}
Jani Nikula4e646492013-08-27 15:12:20 +0300379
380static void intel_dsi_enable(struct intel_encoder *encoder)
381{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530382 struct drm_device *dev = encoder->base.dev;
383 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300384 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikula4934b652015-01-22 15:01:35 +0200385 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300386
387 DRM_DEBUG_KMS("\n");
388
Jani Nikula4934b652015-01-22 15:01:35 +0200389 if (is_cmd_mode(intel_dsi)) {
390 for_each_dsi_port(port, intel_dsi->ports)
391 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
392 } else {
Jani Nikula4e646492013-08-27 15:12:20 +0300393 msleep(20); /* XXX */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200394 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200395 dpi_send_cmd(intel_dsi, TURN_ON, false, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300396 msleep(100);
397
Jani Nikula593e0622015-01-23 15:30:56 +0200398 drm_panel_enable(intel_dsi->panel);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530399
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200400 for_each_dsi_port(port, intel_dsi->ports)
401 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530402
Gaurav K Singh5505a242014-12-04 10:58:47 +0530403 intel_dsi_port_enable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300404 }
Shobhit Kumarb029e662015-06-26 14:32:10 +0530405
406 intel_panel_enable_backlight(intel_dsi->attached_connector);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530407}
Jani Nikula4e646492013-08-27 15:12:20 +0300408
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530409static void intel_dsi_pre_enable(struct intel_encoder *encoder)
410{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530411 struct drm_device *dev = encoder->base.dev;
412 struct drm_i915_private *dev_priv = dev->dev_private;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530413 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530414 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
415 enum pipe pipe = intel_crtc->pipe;
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200416 enum port port;
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530417 u32 tmp;
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530418
419 DRM_DEBUG_KMS("\n");
420
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530421 /* Panel Enable over CRC PMIC */
422 if (intel_dsi->gpio_panel)
423 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);
424
425 msleep(intel_dsi->panel_on_delay);
426
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530427 /* Disable DPOunit clock gating, can stall pipe
428 * and we need DPLL REFA always enabled */
429 tmp = I915_READ(DPLL(pipe));
430 tmp |= DPLL_REFA_CLK_ENABLE_VLV;
431 I915_WRITE(DPLL(pipe), tmp);
432
Shobhit Kumarf573de52014-07-30 20:32:37 +0530433 /* update the hw state for DPLL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200434 intel_crtc->config->dpll_hw_state.dpll = DPLL_INTEGRATED_CLOCK_VLV |
Daniel Vetter7f3de832014-07-30 22:34:27 +0200435 DPLL_REFA_CLK_ENABLE_VLV;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530436
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530437 tmp = I915_READ(DSPCLK_GATE_D);
438 tmp |= DPOUNIT_CLOCK_GATE_DISABLE;
439 I915_WRITE(DSPCLK_GATE_D, tmp);
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530440
441 /* put device in ready state */
442 intel_dsi_device_ready(encoder);
443
Jani Nikula593e0622015-01-23 15:30:56 +0200444 drm_panel_prepare(intel_dsi->panel);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530445
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200446 for_each_dsi_port(port, intel_dsi->ports)
447 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530448
Shobhit Kumar2634fd72014-04-09 13:59:31 +0530449 /* Enable port in pre-enable phase itself because as per hw team
450 * recommendation, port should be enabled befor plane & pipe */
451 intel_dsi_enable(encoder);
452}
453
454static void intel_dsi_enable_nop(struct intel_encoder *encoder)
455{
456 DRM_DEBUG_KMS("\n");
457
458 /* for DSI port enable has to be done before pipe
459 * and plane enable, so port enable is done in
460 * pre_enable phase itself unlike other encoders
461 */
Jani Nikula4e646492013-08-27 15:12:20 +0300462}
463
Imre Deakc315faf2014-05-27 19:00:09 +0300464static void intel_dsi_pre_disable(struct intel_encoder *encoder)
465{
466 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Jani Nikulaf03e4172015-01-16 14:27:16 +0200467 enum port port;
Imre Deakc315faf2014-05-27 19:00:09 +0300468
469 DRM_DEBUG_KMS("\n");
470
Shobhit Kumarb029e662015-06-26 14:32:10 +0530471 intel_panel_disable_backlight(intel_dsi->attached_connector);
472
Imre Deakc315faf2014-05-27 19:00:09 +0300473 if (is_vid_mode(intel_dsi)) {
474 /* Send Shutdown command to the panel in LP mode */
Jani Nikulaf03e4172015-01-16 14:27:16 +0200475 for_each_dsi_port(port, intel_dsi->ports)
Jani Nikulaa2581a92015-01-16 14:27:26 +0200476 dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
Imre Deakc315faf2014-05-27 19:00:09 +0300477 msleep(10);
478 }
479}
480
Jani Nikula4e646492013-08-27 15:12:20 +0300481static void intel_dsi_disable(struct intel_encoder *encoder)
482{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530483 struct drm_device *dev = encoder->base.dev;
484 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula4e646492013-08-27 15:12:20 +0300485 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530486 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300487 u32 temp;
488
489 DRM_DEBUG_KMS("\n");
490
Jani Nikula4e646492013-08-27 15:12:20 +0300491 if (is_vid_mode(intel_dsi)) {
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200492 for_each_dsi_port(port, intel_dsi->ports)
493 wait_for_dsi_fifo_empty(intel_dsi, port);
Shobhit Kumar13813082014-07-12 17:17:22 +0530494
Gaurav K Singh5505a242014-12-04 10:58:47 +0530495 intel_dsi_port_disable(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300496 msleep(2);
497 }
498
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530499 for_each_dsi_port(port, intel_dsi->ports) {
500 /* Panel commands can be sent when clock is in LP11 */
501 I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530502
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530503 temp = I915_READ(MIPI_CTRL(port));
504 temp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
505 I915_WRITE(MIPI_CTRL(port), temp |
506 intel_dsi->escape_clk_div <<
507 ESCAPE_CLOCK_DIVIDER_SHIFT);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530508
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530509 I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530510
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530511 temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
512 temp &= ~VID_MODE_FORMAT_MASK;
513 I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
Shobhit Kumar339023e2014-04-09 13:59:34 +0530514
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530515 I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
516 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530517 /* if disable packets are sent before sending shutdown packet then in
518 * some next enable sequence send turn on packet error is observed */
Jani Nikula593e0622015-01-23 15:30:56 +0200519 drm_panel_disable(intel_dsi->panel);
Shobhit Kumar13813082014-07-12 17:17:22 +0530520
Jani Nikula7f6a6a42015-01-16 14:27:19 +0200521 for_each_dsi_port(port, intel_dsi->ports)
522 wait_for_dsi_fifo_empty(intel_dsi, port);
Jani Nikula4e646492013-08-27 15:12:20 +0300523}
524
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530525static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300526{
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530527 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530528 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
529 enum port port;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530530 u32 val;
531
Jani Nikula4e646492013-08-27 15:12:20 +0300532 DRM_DEBUG_KMS("\n");
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530533 for_each_dsi_port(port, intel_dsi->ports) {
ymohanmabe4fc042013-08-27 23:40:56 +0300534
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530535 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
536 ULPS_STATE_ENTER);
537 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530538
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530539 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
540 ULPS_STATE_EXIT);
541 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530542
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530543 I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
544 ULPS_STATE_ENTER);
545 usleep_range(2000, 2500);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530546
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530547 /* Wait till Clock lanes are in LP-00 state for MIPI Port A
548 * only. MIPI Port C has no similar bit for checking
549 */
550 if (wait_for(((I915_READ(MIPI_PORT_CTRL(PORT_A)) & AFE_LATCHOUT)
551 == 0x00000), 30))
552 DRM_ERROR("DSI LP not going Low\n");
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530553
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530554 /* Disable MIPI PHY transparent latch
555 * Common bit for both MIPI Port A & MIPI Port C
556 */
Shobhit Kumar4ba7d932015-02-05 17:08:45 +0530557 val = I915_READ(MIPI_PORT_CTRL(PORT_A));
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530558 I915_WRITE(MIPI_PORT_CTRL(PORT_A), val & ~LP_OUTPUT_HOLD);
559 usleep_range(1000, 1500);
Shobhit Kumaraceb3652014-07-03 16:35:41 +0530560
Gaurav K Singh384f02a2014-12-05 14:22:44 +0530561 I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
562 usleep_range(2000, 2500);
563 }
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530564
ymohanmabe4fc042013-08-27 23:40:56 +0300565 vlv_disable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300566}
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530567
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530568static void intel_dsi_post_disable(struct intel_encoder *encoder)
569{
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530570 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530571 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530572 u32 val;
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530573
574 DRM_DEBUG_KMS("\n");
575
Imre Deakc315faf2014-05-27 19:00:09 +0300576 intel_dsi_disable(encoder);
577
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530578 intel_dsi_clear_device_ready(encoder);
579
Shobhit Kumar20e5bf62014-04-09 13:59:32 +0530580 val = I915_READ(DSPCLK_GATE_D);
581 val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
582 I915_WRITE(DSPCLK_GATE_D, val);
583
Jani Nikula593e0622015-01-23 15:30:56 +0200584 drm_panel_unprepare(intel_dsi->panel);
Shobhit Kumardf38e652014-04-14 11:18:26 +0530585
586 msleep(intel_dsi->panel_off_delay);
587 msleep(intel_dsi->panel_pwr_cycle_delay);
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530588
589 /* Panel Disable over CRC PMIC */
590 if (intel_dsi->gpio_panel)
591 gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
Shobhit Kumar1dbd7cb2013-12-11 17:52:05 +0530592}
Jani Nikula4e646492013-08-27 15:12:20 +0300593
594static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
595 enum pipe *pipe)
596{
597 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530598 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
599 struct drm_device *dev = encoder->base.dev;
Imre Deak6d129be2014-03-05 16:20:54 +0200600 enum intel_display_power_domain power_domain;
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530601 u32 dpi_enabled, func;
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200602 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +0300603
604 DRM_DEBUG_KMS("\n");
605
Imre Deak6d129be2014-03-05 16:20:54 +0200606 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200607 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200608 return false;
609
Jani Nikula4e646492013-08-27 15:12:20 +0300610 /* XXX: this only works for one DSI output */
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530611 for_each_dsi_port(port, intel_dsi->ports) {
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200612 func = I915_READ(MIPI_DSI_FUNC_PRG(port));
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530613 dpi_enabled = I915_READ(MIPI_PORT_CTRL(port)) &
614 DPI_ENABLE;
Jani Nikula4e646492013-08-27 15:12:20 +0300615
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530616 /* Due to some hardware limitations on BYT, MIPI Port C DPI
617 * Enable bit does not get set. To check whether DSI Port C
618 * was enabled in BIOS, check the Pipe B enable bit
619 */
620 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
621 (port == PORT_C))
622 dpi_enabled = I915_READ(PIPECONF(PIPE_B)) &
623 PIPECONF_ENABLE;
624
625 if (dpi_enabled || (func & CMD_MODE_DATA_WIDTH_MASK)) {
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200626 if (I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY) {
Gaurav K Singhc0beefd2014-12-09 10:59:20 +0530627 *pipe = port == PORT_A ? PIPE_A : PIPE_B;
Jani Nikula4e646492013-08-27 15:12:20 +0300628 return true;
629 }
630 }
631 }
632
633 return false;
634}
635
636static void intel_dsi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200637 struct intel_crtc_state *pipe_config)
Jani Nikula4e646492013-08-27 15:12:20 +0300638{
Shobhit Kumarf573de52014-07-30 20:32:37 +0530639 u32 pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300640 DRM_DEBUG_KMS("\n");
641
Shobhit Kumarf573de52014-07-30 20:32:37 +0530642 /*
643 * DPLL_MD is not used in case of DSI, reading will get some default value
644 * set dpll_md = 0
645 */
646 pipe_config->dpll_hw_state.dpll_md = 0;
647
648 pclk = vlv_get_dsi_pclk(encoder, pipe_config->pipe_bpp);
649 if (!pclk)
650 return;
651
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200652 pipe_config->base.adjusted_mode.crtc_clock = pclk;
Shobhit Kumarf573de52014-07-30 20:32:37 +0530653 pipe_config->port_clock = pclk;
Jani Nikula4e646492013-08-27 15:12:20 +0300654}
655
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000656static enum drm_mode_status
657intel_dsi_mode_valid(struct drm_connector *connector,
658 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +0300659{
660 struct intel_connector *intel_connector = to_intel_connector(connector);
661 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
Jani Nikula4e646492013-08-27 15:12:20 +0300662
663 DRM_DEBUG_KMS("\n");
664
665 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
666 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
667 return MODE_NO_DBLESCAN;
668 }
669
670 if (fixed_mode) {
671 if (mode->hdisplay > fixed_mode->hdisplay)
672 return MODE_PANEL;
673 if (mode->vdisplay > fixed_mode->vdisplay)
674 return MODE_PANEL;
675 }
676
Jani Nikula36d21f42015-01-16 14:27:20 +0200677 return MODE_OK;
Jani Nikula4e646492013-08-27 15:12:20 +0300678}
679
680/* return txclkesc cycles in terms of divider and duration in us */
681static u16 txclkesc(u32 divider, unsigned int us)
682{
683 switch (divider) {
684 case ESCAPE_CLOCK_DIVIDER_1:
685 default:
686 return 20 * us;
687 case ESCAPE_CLOCK_DIVIDER_2:
688 return 10 * us;
689 case ESCAPE_CLOCK_DIVIDER_4:
690 return 5 * us;
691 }
692}
693
694/* return pixels in terms of txbyteclkhs */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530695static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count,
696 u16 burst_mode_ratio)
Jani Nikula4e646492013-08-27 15:12:20 +0300697{
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530698 return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio,
Daniel Vetter7f3de832014-07-30 22:34:27 +0200699 8 * 100), lane_count);
Jani Nikula4e646492013-08-27 15:12:20 +0300700}
701
702static void set_dsi_timings(struct drm_encoder *encoder,
703 const struct drm_display_mode *mode)
704{
705 struct drm_device *dev = encoder->dev;
706 struct drm_i915_private *dev_priv = dev->dev_private;
707 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
708 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
Gaurav K Singhaa102d22014-12-04 10:58:54 +0530709 enum port port;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200710 unsigned int bpp = intel_crtc->config->pipe_bpp;
Jani Nikula4e646492013-08-27 15:12:20 +0300711 unsigned int lane_count = intel_dsi->lane_count;
712
713 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
714
715 hactive = mode->hdisplay;
716 hfp = mode->hsync_start - mode->hdisplay;
717 hsync = mode->hsync_end - mode->hsync_start;
718 hbp = mode->htotal - mode->hsync_end;
719
Gaurav K Singhaa102d22014-12-04 10:58:54 +0530720 if (intel_dsi->dual_link) {
721 hactive /= 2;
722 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
723 hactive += intel_dsi->pixel_overlap;
724 hfp /= 2;
725 hsync /= 2;
726 hbp /= 2;
727 }
728
Jani Nikula4e646492013-08-27 15:12:20 +0300729 vfp = mode->vsync_start - mode->vdisplay;
730 vsync = mode->vsync_end - mode->vsync_start;
731 vbp = mode->vtotal - mode->vsync_end;
732
733 /* horizontal values are in terms of high speed byte clock */
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530734 hactive = txbyteclkhs(hactive, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +0200735 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530736 hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
737 hsync = txbyteclkhs(hsync, bpp, lane_count,
Daniel Vetter7f3de832014-07-30 22:34:27 +0200738 intel_dsi->burst_mode_ratio);
Shobhit Kumar7f0c8602014-07-30 20:34:57 +0530739 hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
Jani Nikula4e646492013-08-27 15:12:20 +0300740
Gaurav K Singhaa102d22014-12-04 10:58:54 +0530741 for_each_dsi_port(port, intel_dsi->ports) {
742 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
743 I915_WRITE(MIPI_HFP_COUNT(port), hfp);
Jani Nikula4e646492013-08-27 15:12:20 +0300744
Gaurav K Singhaa102d22014-12-04 10:58:54 +0530745 /* meaningful for video mode non-burst sync pulse mode only,
746 * can be zero for non-burst sync events and burst modes */
747 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
748 I915_WRITE(MIPI_HBP_COUNT(port), hbp);
Jani Nikula4e646492013-08-27 15:12:20 +0300749
Gaurav K Singhaa102d22014-12-04 10:58:54 +0530750 /* vertical values are in terms of lines */
751 I915_WRITE(MIPI_VFP_COUNT(port), vfp);
752 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
753 I915_WRITE(MIPI_VBP_COUNT(port), vbp);
754 }
Jani Nikula4e646492013-08-27 15:12:20 +0300755}
756
Daniel Vetter07e4fb92014-04-24 23:54:59 +0200757static void intel_dsi_prepare(struct intel_encoder *intel_encoder)
Jani Nikula4e646492013-08-27 15:12:20 +0300758{
759 struct drm_encoder *encoder = &intel_encoder->base;
760 struct drm_device *dev = encoder->dev;
761 struct drm_i915_private *dev_priv = dev->dev_private;
762 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
763 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
764 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200765 &intel_crtc->config->base.adjusted_mode;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530766 enum port port;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200767 unsigned int bpp = intel_crtc->config->pipe_bpp;
Jani Nikula4e646492013-08-27 15:12:20 +0300768 u32 val, tmp;
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530769 u16 mode_hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +0300770
Jani Nikulae7d7cad2014-11-14 16:54:21 +0200771 DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
Jani Nikula4e646492013-08-27 15:12:20 +0300772
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530773 mode_hdisplay = adjusted_mode->hdisplay;
Jani Nikula4e646492013-08-27 15:12:20 +0300774
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530775 if (intel_dsi->dual_link) {
776 mode_hdisplay /= 2;
777 if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
778 mode_hdisplay += intel_dsi->pixel_overlap;
779 }
Jani Nikula4e646492013-08-27 15:12:20 +0300780
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530781 for_each_dsi_port(port, intel_dsi->ports) {
782 /* escape clock divider, 20MHz, shared for A and C.
783 * device ready must be off when doing this! txclkesc? */
784 tmp = I915_READ(MIPI_CTRL(PORT_A));
785 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
786 I915_WRITE(MIPI_CTRL(PORT_A), tmp | ESCAPE_CLOCK_DIVIDER_1);
Jani Nikula4e646492013-08-27 15:12:20 +0300787
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530788 /* read request priority is per pipe */
789 tmp = I915_READ(MIPI_CTRL(port));
790 tmp &= ~READ_REQUEST_PRIORITY_MASK;
791 I915_WRITE(MIPI_CTRL(port), tmp | READ_REQUEST_PRIORITY_HIGH);
Jani Nikula4e646492013-08-27 15:12:20 +0300792
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530793 /* XXX: why here, why like this? handling in irq handler?! */
794 I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
795 I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);
796
797 I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);
798
799 I915_WRITE(MIPI_DPI_RESOLUTION(port),
800 adjusted_mode->vdisplay << VERTICAL_ADDRESS_SHIFT |
801 mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
802 }
Jani Nikula4e646492013-08-27 15:12:20 +0300803
804 set_dsi_timings(encoder, adjusted_mode);
805
806 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
807 if (is_cmd_mode(intel_dsi)) {
808 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
809 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
810 } else {
811 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
812
813 /* XXX: cross-check bpp vs. pixel format? */
814 val |= intel_dsi->pixel_format;
815 }
Jani Nikula4e646492013-08-27 15:12:20 +0300816
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530817 tmp = 0;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +0530818 if (intel_dsi->eotp_pkt == 0)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530819 tmp |= EOT_DISABLE;
Shobhit Kumarf1c79f12014-04-09 13:59:33 +0530820 if (intel_dsi->clock_stop)
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530821 tmp |= CLOCKSTOP;
Jani Nikula4e646492013-08-27 15:12:20 +0300822
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530823 for_each_dsi_port(port, intel_dsi->ports) {
824 I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);
Jani Nikula4e646492013-08-27 15:12:20 +0300825
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530826 /* timeouts for recovery. one frame IIUC. if counter expires,
827 * EOT and stop state. */
Shobhit Kumarcf4dbd22014-04-14 11:18:25 +0530828
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530829 /*
830 * In burst mode, value greater than one DPI line Time in byte
831 * clock (txbyteclkhs) To timeout this timer 1+ of the above
832 * said value is recommended.
833 *
834 * In non-burst mode, Value greater than one DPI frame time in
835 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
836 * said value is recommended.
837 *
838 * In DBI only mode, value greater than one DBI frame time in
839 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
840 * said value is recommended.
841 */
Jani Nikula4e646492013-08-27 15:12:20 +0300842
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530843 if (is_vid_mode(intel_dsi) &&
844 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
845 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
846 txbyteclkhs(adjusted_mode->htotal, bpp,
847 intel_dsi->lane_count,
848 intel_dsi->burst_mode_ratio) + 1);
849 } else {
850 I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
851 txbyteclkhs(adjusted_mode->vtotal *
852 adjusted_mode->htotal,
853 bpp, intel_dsi->lane_count,
854 intel_dsi->burst_mode_ratio) + 1);
855 }
856 I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
857 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
858 intel_dsi->turn_arnd_val);
859 I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
860 intel_dsi->rst_timer_val);
Jani Nikula4e646492013-08-27 15:12:20 +0300861
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530862 /* dphy stuff */
Jani Nikula4e646492013-08-27 15:12:20 +0300863
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530864 /* in terms of low power clock */
865 I915_WRITE(MIPI_INIT_COUNT(port),
866 txclkesc(intel_dsi->escape_clk_div, 100));
Jani Nikula4e646492013-08-27 15:12:20 +0300867
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530868
869 /* recovery disables */
Shobhit Kumar87c54d02015-02-03 12:17:35 +0530870 I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
Gaurav K Singh24ee0e62014-12-05 14:24:21 +0530871
872 /* in terms of low power clock */
873 I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
874
875 /* in terms of txbyteclkhs. actual high to low switch +
876 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
877 *
878 * XXX: write MIPI_STOP_STATE_STALL?
879 */
880 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
881 intel_dsi->hs_to_lp_count);
882
883 /* XXX: low power clock equivalence in terms of byte clock.
884 * the number of byte clocks occupied in one low power clock.
885 * based on txbyteclkhs and txclkesc.
886 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
887 * ) / 105.???
888 */
889 I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);
890
891 /* the bw essential for transmitting 16 long packets containing
892 * 252 bytes meant for dcs write memory command is programmed in
893 * this register in terms of byte clocks. based on dsi transfer
894 * rate and the number of lanes configured the time taken to
895 * transmit 16 long packets in a dsi stream varies. */
896 I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);
897
898 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
899 intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
900 intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
901
902 if (is_vid_mode(intel_dsi))
903 /* Some panels might have resolution which is not a
904 * multiple of 64 like 1366 x 768. Enable RANDOM
905 * resolution support for such panels by default */
906 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
907 intel_dsi->video_frmt_cfg_bits |
908 intel_dsi->video_mode_format |
909 IP_TG_CONFIG |
910 RANDOM_DPI_DISPLAY_RESOLUTION);
911 }
Jani Nikula4e646492013-08-27 15:12:20 +0300912}
913
Daniel Vetter07e4fb92014-04-24 23:54:59 +0200914static void intel_dsi_pre_pll_enable(struct intel_encoder *encoder)
915{
916 DRM_DEBUG_KMS("\n");
917
918 intel_dsi_prepare(encoder);
919
920 vlv_enable_dsi_pll(encoder);
921}
922
Jani Nikula4e646492013-08-27 15:12:20 +0300923static enum drm_connector_status
924intel_dsi_detect(struct drm_connector *connector, bool force)
925{
Jani Nikula36d21f42015-01-16 14:27:20 +0200926 return connector_status_connected;
Jani Nikula4e646492013-08-27 15:12:20 +0300927}
928
929static int intel_dsi_get_modes(struct drm_connector *connector)
930{
931 struct intel_connector *intel_connector = to_intel_connector(connector);
932 struct drm_display_mode *mode;
933
934 DRM_DEBUG_KMS("\n");
935
936 if (!intel_connector->panel.fixed_mode) {
937 DRM_DEBUG_KMS("no fixed mode\n");
938 return 0;
939 }
940
941 mode = drm_mode_duplicate(connector->dev,
942 intel_connector->panel.fixed_mode);
943 if (!mode) {
944 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
945 return 0;
946 }
947
948 drm_mode_probed_add(connector, mode);
949 return 1;
950}
951
Jani Nikula593e0622015-01-23 15:30:56 +0200952static void intel_dsi_connector_destroy(struct drm_connector *connector)
Jani Nikula4e646492013-08-27 15:12:20 +0300953{
954 struct intel_connector *intel_connector = to_intel_connector(connector);
955
956 DRM_DEBUG_KMS("\n");
957 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +0300958 drm_connector_cleanup(connector);
959 kfree(connector);
960}
961
Jani Nikula593e0622015-01-23 15:30:56 +0200962static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
963{
964 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
965
966 if (intel_dsi->panel) {
967 drm_panel_detach(intel_dsi->panel);
968 /* XXX: Logically this call belongs in the panel driver. */
969 drm_panel_remove(intel_dsi->panel);
970 }
Shobhit Kumarfc45e822015-06-26 14:32:09 +0530971
972 /* dispose of the gpios */
973 if (intel_dsi->gpio_panel)
974 gpiod_put(intel_dsi->gpio_panel);
975
Jani Nikula593e0622015-01-23 15:30:56 +0200976 intel_encoder_destroy(encoder);
977}
978
Jani Nikula4e646492013-08-27 15:12:20 +0300979static const struct drm_encoder_funcs intel_dsi_funcs = {
Jani Nikula593e0622015-01-23 15:30:56 +0200980 .destroy = intel_dsi_encoder_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +0300981};
982
983static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
984 .get_modes = intel_dsi_get_modes,
985 .mode_valid = intel_dsi_mode_valid,
986 .best_encoder = intel_best_encoder,
987};
988
989static const struct drm_connector_funcs intel_dsi_connector_funcs = {
990 .dpms = intel_connector_dpms,
991 .detect = intel_dsi_detect,
Jani Nikula593e0622015-01-23 15:30:56 +0200992 .destroy = intel_dsi_connector_destroy,
Jani Nikula4e646492013-08-27 15:12:20 +0300993 .fill_modes = drm_helper_probe_single_connector_modes,
Matt Roper2545e4a2015-01-22 16:51:27 -0800994 .atomic_get_property = intel_connector_atomic_get_property,
Matt Roperc6f95f22015-01-22 16:50:32 -0800995 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +0200996 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jani Nikula4e646492013-08-27 15:12:20 +0300997};
998
Damien Lespiau4328633d2014-05-28 12:30:56 +0100999void intel_dsi_init(struct drm_device *dev)
Jani Nikula4e646492013-08-27 15:12:20 +03001000{
1001 struct intel_dsi *intel_dsi;
1002 struct intel_encoder *intel_encoder;
1003 struct drm_encoder *encoder;
1004 struct intel_connector *intel_connector;
1005 struct drm_connector *connector;
Jani Nikula593e0622015-01-23 15:30:56 +02001006 struct drm_display_mode *scan, *fixed_mode = NULL;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301007 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula7e9804f2015-01-16 14:27:23 +02001008 enum port port;
Jani Nikula4e646492013-08-27 15:12:20 +03001009 unsigned int i;
1010
1011 DRM_DEBUG_KMS("\n");
1012
Shobhit Kumar3e6bd012014-05-27 19:33:59 +05301013 /* There is no detection method for MIPI so rely on VBT */
1014 if (!dev_priv->vbt.has_mipi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001015 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001016
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301017 if (IS_VALLEYVIEW(dev)) {
1018 dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
1019 } else {
1020 DRM_ERROR("Unsupported Mipi device to reg base");
Christoph Jaeger868d6652014-06-13 21:51:22 +02001021 return;
Shashank Sharmab6fdd0f2014-05-19 20:54:03 +05301022 }
1023
Jani Nikula4e646492013-08-27 15:12:20 +03001024 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
1025 if (!intel_dsi)
Damien Lespiau4328633d2014-05-28 12:30:56 +01001026 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001027
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001028 intel_connector = intel_connector_alloc();
Jani Nikula4e646492013-08-27 15:12:20 +03001029 if (!intel_connector) {
1030 kfree(intel_dsi);
Damien Lespiau4328633d2014-05-28 12:30:56 +01001031 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001032 }
1033
1034 intel_encoder = &intel_dsi->base;
1035 encoder = &intel_encoder->base;
1036 intel_dsi->attached_connector = intel_connector;
1037
Jani Nikula4e646492013-08-27 15:12:20 +03001038 connector = &intel_connector->base;
1039
1040 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI);
1041
1042 /* XXX: very likely not all of these are needed */
1043 intel_encoder->hot_plug = intel_dsi_hot_plug;
1044 intel_encoder->compute_config = intel_dsi_compute_config;
1045 intel_encoder->pre_pll_enable = intel_dsi_pre_pll_enable;
1046 intel_encoder->pre_enable = intel_dsi_pre_enable;
Shobhit Kumar2634fd72014-04-09 13:59:31 +05301047 intel_encoder->enable = intel_dsi_enable_nop;
Imre Deakc315faf2014-05-27 19:00:09 +03001048 intel_encoder->disable = intel_dsi_pre_disable;
Jani Nikula4e646492013-08-27 15:12:20 +03001049 intel_encoder->post_disable = intel_dsi_post_disable;
1050 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
1051 intel_encoder->get_config = intel_dsi_get_config;
1052
1053 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001054 intel_connector->unregister = intel_connector_unregister;
Jani Nikula4e646492013-08-27 15:12:20 +03001055
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001056 /* Pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI port C */
Jani Nikula7e9804f2015-01-16 14:27:23 +02001057 if (dev_priv->vbt.dsi.config->dual_link) {
1058 /* XXX: does dual link work on either pipe? */
1059 intel_encoder->crtc_mask = (1 << PIPE_A);
1060 intel_dsi->ports = ((1 << PORT_A) | (1 << PORT_C));
1061 } else if (dev_priv->vbt.dsi.port == DVO_PORT_MIPIA) {
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001062 intel_encoder->crtc_mask = (1 << PIPE_A);
Jani Nikula17af40a2014-11-14 16:54:22 +02001063 intel_dsi->ports = (1 << PORT_A);
1064 } else if (dev_priv->vbt.dsi.port == DVO_PORT_MIPIC) {
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001065 intel_encoder->crtc_mask = (1 << PIPE_B);
Jani Nikula17af40a2014-11-14 16:54:22 +02001066 intel_dsi->ports = (1 << PORT_C);
1067 }
Jani Nikulae7d7cad2014-11-14 16:54:21 +02001068
Jani Nikula7e9804f2015-01-16 14:27:23 +02001069 /* Create a DSI host (and a device) for each port. */
1070 for_each_dsi_port(port, intel_dsi->ports) {
1071 struct intel_dsi_host *host;
1072
1073 host = intel_dsi_host_init(intel_dsi, port);
1074 if (!host)
1075 goto err;
1076
1077 intel_dsi->dsi_hosts[port] = host;
1078 }
1079
Jani Nikula593e0622015-01-23 15:30:56 +02001080 for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
1081 intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
1082 intel_dsi_drivers[i].panel_id);
1083 if (intel_dsi->panel)
Jani Nikula4e646492013-08-27 15:12:20 +03001084 break;
1085 }
1086
Jani Nikula593e0622015-01-23 15:30:56 +02001087 if (!intel_dsi->panel) {
Jani Nikula4e646492013-08-27 15:12:20 +03001088 DRM_DEBUG_KMS("no device found\n");
1089 goto err;
1090 }
1091
Shobhit Kumarfc45e822015-06-26 14:32:09 +05301092 /*
1093 * In case of BYT with CRC PMIC, we need to use GPIO for
1094 * Panel control.
1095 */
1096 if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) {
1097 intel_dsi->gpio_panel =
1098 gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);
1099
1100 if (IS_ERR(intel_dsi->gpio_panel)) {
1101 DRM_ERROR("Failed to own gpio for panel control\n");
1102 intel_dsi->gpio_panel = NULL;
1103 }
1104 }
1105
Jani Nikula4e646492013-08-27 15:12:20 +03001106 intel_encoder->type = INTEL_OUTPUT_DSI;
Ville Syrjäläbc079e82014-03-03 16:15:28 +02001107 intel_encoder->cloneable = 0;
Jani Nikula4e646492013-08-27 15:12:20 +03001108 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
1109 DRM_MODE_CONNECTOR_DSI);
1110
1111 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
1112
1113 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
1114 connector->interlace_allowed = false;
1115 connector->doublescan_allowed = false;
1116
1117 intel_connector_attach_encoder(intel_connector, intel_encoder);
1118
Thomas Wood34ea3d32014-05-29 16:57:41 +01001119 drm_connector_register(connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001120
Jani Nikula593e0622015-01-23 15:30:56 +02001121 drm_panel_attach(intel_dsi->panel, connector);
1122
1123 mutex_lock(&dev->mode_config.mutex);
1124 drm_panel_get_modes(intel_dsi->panel);
1125 list_for_each_entry(scan, &connector->probed_modes, head) {
1126 if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
1127 fixed_mode = drm_mode_duplicate(dev, scan);
1128 break;
1129 }
1130 }
1131 mutex_unlock(&dev->mode_config.mutex);
1132
Jani Nikula4e646492013-08-27 15:12:20 +03001133 if (!fixed_mode) {
1134 DRM_DEBUG_KMS("no fixed mode\n");
1135 goto err;
1136 }
1137
Vandana Kannan4b6ed682014-02-11 14:26:36 +05301138 intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
Shobhit Kumarb029e662015-06-26 14:32:10 +05301139 intel_panel_setup_backlight(connector, INVALID_PIPE);
Jani Nikula4e646492013-08-27 15:12:20 +03001140
Damien Lespiau4328633d2014-05-28 12:30:56 +01001141 return;
Jani Nikula4e646492013-08-27 15:12:20 +03001142
1143err:
1144 drm_encoder_cleanup(&intel_encoder->base);
1145 kfree(intel_dsi);
1146 kfree(intel_connector);
Jani Nikula4e646492013-08-27 15:12:20 +03001147}