intel_dsi.c 41.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright © 2013 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Author: Jani Nikula <jani.nikula@intel.com>
 */

#include <drm/drmP.h>
27
#include <drm/drm_atomic_helper.h>
28 29 30
#include <drm/drm_crtc.h>
#include <drm/drm_edid.h>
#include <drm/i915_drm.h>
31
#include <drm/drm_panel.h>
32
#include <drm/drm_mipi_dsi.h>
33
#include <linux/slab.h>
34
#include <linux/gpio/consumer.h>
35 36 37 38
#include "i915_drv.h"
#include "intel_drv.h"
#include "intel_dsi.h"

39 40 41 42
static const struct {
	u16 panel_id;
	struct drm_panel * (*init)(struct intel_dsi *intel_dsi, u16 panel_id);
} intel_dsi_drivers[] = {
43 44
	{
		.panel_id = MIPI_DSI_GENERIC_PANEL_ID,
45
		.init = vbt_panel_init,
46
	},
47 48
};

49 50 51 52 53 54 55 56
/* return pixels equvalent to txbyteclkhs */
static u16 pixels_from_txbyteclkhs(u16 clk_hs, int bpp, int lane_count,
			u16 burst_mode_ratio)
{
	return DIV_ROUND_UP((clk_hs * lane_count * 8 * 100),
						(bpp * burst_mode_ratio));
}

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt)
{
	/* It just so happens the VBT matches register contents. */
	switch (fmt) {
	case VID_MODE_FORMAT_RGB888:
		return MIPI_DSI_FMT_RGB888;
	case VID_MODE_FORMAT_RGB666:
		return MIPI_DSI_FMT_RGB666;
	case VID_MODE_FORMAT_RGB666_PACKED:
		return MIPI_DSI_FMT_RGB666_PACKED;
	case VID_MODE_FORMAT_RGB565:
		return MIPI_DSI_FMT_RGB565;
	default:
		MISSING_CASE(fmt);
		return MIPI_DSI_FMT_RGB666;
	}
}

75
static void wait_for_dsi_fifo_empty(struct intel_dsi *intel_dsi, enum port port)
76 77 78 79 80 81 82 83 84 85 86 87 88
{
	struct drm_encoder *encoder = &intel_dsi->base.base;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 mask;

	mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY |
		LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY;

	if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & mask) == mask, 100))
		DRM_ERROR("DPI FIFOs are not empty\n");
}

89 90
static void write_data(struct drm_i915_private *dev_priv,
		       i915_reg_t reg,
91 92 93 94 95 96 97 98 99 100 101 102 103 104
		       const u8 *data, u32 len)
{
	u32 i, j;

	for (i = 0; i < len; i += 4) {
		u32 val = 0;

		for (j = 0; j < min_t(u32, len - i, 4); j++)
			val |= *data++ << 8 * j;

		I915_WRITE(reg, val);
	}
}

105 106
static void read_data(struct drm_i915_private *dev_priv,
		      i915_reg_t reg,
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
		      u8 *data, u32 len)
{
	u32 i, j;

	for (i = 0; i < len; i += 4) {
		u32 val = I915_READ(reg);

		for (j = 0; j < min_t(u32, len - i, 4); j++)
			*data++ = val >> 8 * j;
	}
}

static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host,
				       const struct mipi_dsi_msg *msg)
{
	struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host);
	struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	enum port port = intel_dsi_host->port;
	struct mipi_dsi_packet packet;
	ssize_t ret;
	const u8 *header, *data;
129 130
	i915_reg_t data_reg, ctrl_reg;
	u32 data_mask, ctrl_mask;
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234

	ret = mipi_dsi_create_packet(&packet, msg);
	if (ret < 0)
		return ret;

	header = packet.header;
	data = packet.payload;

	if (msg->flags & MIPI_DSI_MSG_USE_LPM) {
		data_reg = MIPI_LP_GEN_DATA(port);
		data_mask = LP_DATA_FIFO_FULL;
		ctrl_reg = MIPI_LP_GEN_CTRL(port);
		ctrl_mask = LP_CTRL_FIFO_FULL;
	} else {
		data_reg = MIPI_HS_GEN_DATA(port);
		data_mask = HS_DATA_FIFO_FULL;
		ctrl_reg = MIPI_HS_GEN_CTRL(port);
		ctrl_mask = HS_CTRL_FIFO_FULL;
	}

	/* note: this is never true for reads */
	if (packet.payload_length) {

		if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & data_mask) == 0, 50))
			DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n");

		write_data(dev_priv, data_reg, packet.payload,
			   packet.payload_length);
	}

	if (msg->rx_len) {
		I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL);
	}

	if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & ctrl_mask) == 0, 50)) {
		DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n");
	}

	I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]);

	/* ->rx_len is set only for reads */
	if (msg->rx_len) {
		data_mask = GEN_READ_DATA_AVAIL;
		if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50))
			DRM_ERROR("Timeout waiting for read data.\n");

		read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len);
	}

	/* XXX: fix for reads and writes */
	return 4 + packet.payload_length;
}

static int intel_dsi_host_attach(struct mipi_dsi_host *host,
				 struct mipi_dsi_device *dsi)
{
	return 0;
}

static int intel_dsi_host_detach(struct mipi_dsi_host *host,
				 struct mipi_dsi_device *dsi)
{
	return 0;
}

static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
	.attach = intel_dsi_host_attach,
	.detach = intel_dsi_host_detach,
	.transfer = intel_dsi_host_transfer,
};

static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
						  enum port port)
{
	struct intel_dsi_host *host;
	struct mipi_dsi_device *device;

	host = kzalloc(sizeof(*host), GFP_KERNEL);
	if (!host)
		return NULL;

	host->base.ops = &intel_dsi_host_ops;
	host->intel_dsi = intel_dsi;
	host->port = port;

	/*
	 * We should call mipi_dsi_host_register(&host->base) here, but we don't
	 * have a host->dev, and we don't have OF stuff either. So just use the
	 * dsi framework as a library and hope for the best. Create the dsi
	 * devices by ourselves here too. Need to be careful though, because we
	 * don't initialize any of the driver model devices here.
	 */
	device = kzalloc(sizeof(*device), GFP_KERNEL);
	if (!device) {
		kfree(host);
		return NULL;
	}

	device->host = &host->base;
	host->device = device;

	return host;
}

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
/*
 * send a video mode command
 *
 * XXX: commands with data in MIPI_DPI_DATA?
 */
static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
			enum port port)
{
	struct drm_encoder *encoder = &intel_dsi->base.base;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 mask;

	/* XXX: pipe, hs */
	if (hs)
		cmd &= ~DPI_LP_MODE;
	else
		cmd |= DPI_LP_MODE;

	/* clear bit */
	I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT);

	/* XXX: old code skips write if control unchanged */
	if (cmd == I915_READ(MIPI_DPI_CONTROL(port)))
		DRM_ERROR("Same special packet %02x twice in a row.\n", cmd);

	I915_WRITE(MIPI_DPI_CONTROL(port), cmd);

	mask = SPL_PKT_SENT_INTERRUPT;
	if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100))
		DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd);

	return 0;
}

270
static void band_gap_reset(struct drm_i915_private *dev_priv)
S
Shobhit Kumar 已提交
271
{
V
Ville Syrjälä 已提交
272
	mutex_lock(&dev_priv->sb_lock);
S
Shobhit Kumar 已提交
273

274 275 276 277 278 279
	vlv_flisdsi_write(dev_priv, 0x08, 0x0001);
	vlv_flisdsi_write(dev_priv, 0x0F, 0x0005);
	vlv_flisdsi_write(dev_priv, 0x0F, 0x0025);
	udelay(150);
	vlv_flisdsi_write(dev_priv, 0x0F, 0x0000);
	vlv_flisdsi_write(dev_priv, 0x08, 0x0000);
S
Shobhit Kumar 已提交
280

V
Ville Syrjälä 已提交
281
	mutex_unlock(&dev_priv->sb_lock);
S
Shobhit Kumar 已提交
282 283
}

284 285
static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
{
286
	return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE;
287 288 289 290
}

static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
{
291
	return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE;
292 293 294
}

static bool intel_dsi_compute_config(struct intel_encoder *encoder,
295
				     struct intel_crtc_state *pipe_config)
296
{
J
Jani Nikula 已提交
297
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
298 299 300
	struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
						   base);
	struct intel_connector *intel_connector = intel_dsi->attached_connector;
V
Ville Syrjälä 已提交
301 302
	struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
	const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
303
	struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
304
	int ret;
305 306 307

	DRM_DEBUG_KMS("\n");

308 309
	pipe_config->has_dsi_encoder = true;

V
Ville Syrjälä 已提交
310
	if (fixed_mode) {
311 312
		intel_fixed_panel_mode(fixed_mode, adjusted_mode);

V
Ville Syrjälä 已提交
313 314 315 316 317 318 319 320
		if (HAS_GMCH_DISPLAY(dev_priv))
			intel_gmch_panel_fitting(crtc, pipe_config,
						 intel_connector->panel.fitting_mode);
		else
			intel_pch_panel_fitting(crtc, pipe_config,
						intel_connector->panel.fitting_mode);
	}

321 322 323
	/* DSI uses short packets for sync events, so clear mode flags for DSI */
	adjusted_mode->flags = 0;

J
Jani Nikula 已提交
324 325 326 327 328 329 330 331
	if (IS_BROXTON(dev_priv)) {
		/* Dual link goes to DSI transcoder A. */
		if (intel_dsi->ports == BIT(PORT_C))
			pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
		else
			pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
	}

332 333 334 335
	ret = intel_compute_dsi_pll(encoder, pipe_config);
	if (ret)
		return false;

336 337
	pipe_config->clock_set = true;

338 339 340
	return true;
}

S
Shashank Sharma 已提交
341
static void bxt_dsi_device_ready(struct intel_encoder *encoder)
342
{
S
Shashank Sharma 已提交
343
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
344
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
345
	enum port port;
S
Shashank Sharma 已提交
346
	u32 val;
347

S
Shashank Sharma 已提交
348
	DRM_DEBUG_KMS("\n");
349

S
Shashank Sharma 已提交
350
	/* Exit Low power state in 4 steps*/
351
	for_each_dsi_port(port, intel_dsi->ports) {
352

S
Shashank Sharma 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
		/* 1. Enable MIPI PHY transparent latch */
		val = I915_READ(BXT_MIPI_PORT_CTRL(port));
		I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD);
		usleep_range(2000, 2500);

		/* 2. Enter ULPS */
		val = I915_READ(MIPI_DEVICE_READY(port));
		val &= ~ULPS_STATE_MASK;
		val |= (ULPS_STATE_ENTER | DEVICE_READY);
		I915_WRITE(MIPI_DEVICE_READY(port), val);
		usleep_range(2, 3);

		/* 3. Exit ULPS */
		val = I915_READ(MIPI_DEVICE_READY(port));
		val &= ~ULPS_STATE_MASK;
		val |= (ULPS_STATE_EXIT | DEVICE_READY);
		I915_WRITE(MIPI_DEVICE_READY(port), val);
		usleep_range(1000, 1500);
371

S
Shashank Sharma 已提交
372 373 374 375 376
		/* Clear ULPS and set device ready */
		val = I915_READ(MIPI_DEVICE_READY(port));
		val &= ~ULPS_STATE_MASK;
		val |= DEVICE_READY;
		I915_WRITE(MIPI_DEVICE_READY(port), val);
377
	}
378 379
}

S
Shashank Sharma 已提交
380
static void vlv_dsi_device_ready(struct intel_encoder *encoder)
381
{
382
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
383 384
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
	enum port port;
385 386
	u32 val;

387 388
	DRM_DEBUG_KMS("\n");

V
Ville Syrjälä 已提交
389
	mutex_lock(&dev_priv->sb_lock);
390 391 392
	/* program rcomp for compliance, reduce from 50 ohms to 45 ohms
	 * needed everytime after power gate */
	vlv_flisdsi_write(dev_priv, 0x04, 0x0004);
V
Ville Syrjälä 已提交
393
	mutex_unlock(&dev_priv->sb_lock);
394 395 396 397

	/* bandgap reset is needed after everytime we do power gate */
	band_gap_reset(dev_priv);

398
	for_each_dsi_port(port, intel_dsi->ports) {
399

400 401
		I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER);
		usleep_range(2500, 3000);
402

403 404 405 406
		/* Enable MIPI PHY transparent latch
		 * Common bit for both MIPI Port A & MIPI Port C
		 * No similar bit in MIPI Port C reg
		 */
407
		val = I915_READ(MIPI_PORT_CTRL(PORT_A));
408
		I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD);
409
		usleep_range(1000, 1500);
410

411 412 413 414 415 416
		I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT);
		usleep_range(2500, 3000);

		I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY);
		usleep_range(2500, 3000);
	}
417 418
}

S
Shashank Sharma 已提交
419 420 421 422
static void intel_dsi_device_ready(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;

423
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
S
Shashank Sharma 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437
		vlv_dsi_device_ready(encoder);
	else if (IS_BROXTON(dev))
		bxt_dsi_device_ready(encoder);
}

static void intel_dsi_port_enable(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
	enum port port;

	if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
438 439
		u32 temp;

S
Shashank Sharma 已提交
440 441 442 443 444 445 446 447
		temp = I915_READ(VLV_CHICKEN_3);
		temp &= ~PIXEL_OVERLAP_CNT_MASK |
					intel_dsi->pixel_overlap <<
					PIXEL_OVERLAP_CNT_SHIFT;
		I915_WRITE(VLV_CHICKEN_3, temp);
	}

	for_each_dsi_port(port, intel_dsi->ports) {
448 449 450
		i915_reg_t port_ctrl = IS_BROXTON(dev) ?
			BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
		u32 temp;
S
Shashank Sharma 已提交
451 452 453 454 455 456

		temp = I915_READ(port_ctrl);

		temp &= ~LANE_CONFIGURATION_MASK;
		temp &= ~DUAL_LINK_MODE_MASK;

457
		if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
S
Shashank Sharma 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
			temp |= (intel_dsi->dual_link - 1)
						<< DUAL_LINK_MODE_SHIFT;
			temp |= intel_crtc->pipe ?
					LANE_CONFIGURATION_DUAL_LINK_B :
					LANE_CONFIGURATION_DUAL_LINK_A;
		}
		/* assert ip_tg_enable signal */
		I915_WRITE(port_ctrl, temp | DPI_ENABLE);
		POSTING_READ(port_ctrl);
	}
}

static void intel_dsi_port_disable(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
	enum port port;

	for_each_dsi_port(port, intel_dsi->ports) {
478 479 480 481
		i915_reg_t port_ctrl = IS_BROXTON(dev) ?
			BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
		u32 temp;

S
Shashank Sharma 已提交
482
		/* de-assert ip_tg_enable signal */
483 484 485
		temp = I915_READ(port_ctrl);
		I915_WRITE(port_ctrl, temp & ~DPI_ENABLE);
		POSTING_READ(port_ctrl);
S
Shashank Sharma 已提交
486 487 488
	}
}

489 490 491 492 493
static void intel_dsi_enable(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
494
	enum port port;
495 496

	DRM_DEBUG_KMS("\n");
497

498 499 500 501
	if (is_cmd_mode(intel_dsi)) {
		for_each_dsi_port(port, intel_dsi->ports)
			I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4);
	} else {
502
		msleep(20); /* XXX */
503
		for_each_dsi_port(port, intel_dsi->ports)
504
			dpi_send_cmd(intel_dsi, TURN_ON, false, port);
505 506
		msleep(100);

507
		drm_panel_enable(intel_dsi->panel);
508

509 510
		for_each_dsi_port(port, intel_dsi->ports)
			wait_for_dsi_fifo_empty(intel_dsi, port);
511

512
		intel_dsi_port_enable(encoder);
513
	}
514 515

	intel_panel_enable_backlight(intel_dsi->attached_connector);
516 517
}

518 519
static void intel_dsi_prepare(struct intel_encoder *intel_encoder);

520 521
static void intel_dsi_pre_enable(struct intel_encoder *encoder)
{
522 523
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
524
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
525
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
526
	enum port port;
527
	u32 tmp;
528 529 530

	DRM_DEBUG_KMS("\n");

531 532 533 534 535
	/*
	 * The BIOS may leave the PLL in a wonky state where it doesn't
	 * lock. It needs to be fully powered down to fix it.
	 */
	intel_disable_dsi_pll(encoder);
536
	intel_enable_dsi_pll(encoder, crtc->config);
537

538
	intel_dsi_prepare(encoder);
539

540 541 542 543 544 545
	/* Panel Enable over CRC PMIC */
	if (intel_dsi->gpio_panel)
		gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1);

	msleep(intel_dsi->panel_on_delay);

546
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
547
		/* Disable DPOunit clock gating, can stall pipe */
S
Shashank Sharma 已提交
548 549 550 551
		tmp = I915_READ(DSPCLK_GATE_D);
		tmp |= DPOUNIT_CLOCK_GATE_DISABLE;
		I915_WRITE(DSPCLK_GATE_D, tmp);
	}
552 553 554

	/* put device in ready state */
	intel_dsi_device_ready(encoder);
555

556
	drm_panel_prepare(intel_dsi->panel);
557

558 559
	for_each_dsi_port(port, intel_dsi->ports)
		wait_for_dsi_fifo_empty(intel_dsi, port);
560

561 562 563 564 565 566 567 568 569 570 571 572 573
	/* Enable port in pre-enable phase itself because as per hw team
	 * recommendation, port should be enabled befor plane & pipe */
	intel_dsi_enable(encoder);
}

static void intel_dsi_enable_nop(struct intel_encoder *encoder)
{
	DRM_DEBUG_KMS("\n");

	/* for DSI port enable has to be done before pipe
	 * and plane enable, so port enable is done in
	 * pre_enable phase itself unlike other encoders
	 */
574 575
}

576 577 578
static void intel_dsi_pre_disable(struct intel_encoder *encoder)
{
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
579
	enum port port;
580 581 582

	DRM_DEBUG_KMS("\n");

583 584
	intel_panel_disable_backlight(intel_dsi->attached_connector);

585 586
	if (is_vid_mode(intel_dsi)) {
		/* Send Shutdown command to the panel in LP mode */
587
		for_each_dsi_port(port, intel_dsi->ports)
588
			dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
589 590 591 592
		msleep(10);
	}
}

593 594
static void intel_dsi_disable(struct intel_encoder *encoder)
{
595 596
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
597
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
598
	enum port port;
599 600 601 602 603
	u32 temp;

	DRM_DEBUG_KMS("\n");

	if (is_vid_mode(intel_dsi)) {
604 605
		for_each_dsi_port(port, intel_dsi->ports)
			wait_for_dsi_fifo_empty(intel_dsi, port);
606

607
		intel_dsi_port_disable(encoder);
608 609 610
		msleep(2);
	}

611 612 613
	for_each_dsi_port(port, intel_dsi->ports) {
		/* Panel commands can be sent when clock is in LP11 */
		I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
614

615
		intel_dsi_reset_clocks(encoder, port);
616
		I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
617

618 619 620
		temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
		temp &= ~VID_MODE_FORMAT_MASK;
		I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp);
621

622 623
		I915_WRITE(MIPI_DEVICE_READY(port), 0x1);
	}
624 625
	/* if disable packets are sent before sending shutdown packet then in
	 * some next enable sequence send turn on packet error is observed */
626
	drm_panel_disable(intel_dsi->panel);
627

628 629
	for_each_dsi_port(port, intel_dsi->ports)
		wait_for_dsi_fifo_empty(intel_dsi, port);
630 631
}

632
static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
633
{
634
	struct drm_device *dev = encoder->base.dev;
635
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
636 637
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
	enum port port;
638

639
	DRM_DEBUG_KMS("\n");
640
	for_each_dsi_port(port, intel_dsi->ports) {
641 642 643 644
		/* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
		i915_reg_t port_ctrl = IS_BROXTON(dev) ?
			BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A);
		u32 val;
645

646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
		I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
							ULPS_STATE_ENTER);
		usleep_range(2000, 2500);

		I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
							ULPS_STATE_EXIT);
		usleep_range(2000, 2500);

		I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY |
							ULPS_STATE_ENTER);
		usleep_range(2000, 2500);

		/* Wait till Clock lanes are in LP-00 state for MIPI Port A
		 * only. MIPI Port C has no similar bit for checking
		 */
661 662
		if (wait_for(((I915_READ(port_ctrl) & AFE_LATCHOUT)
						== 0x00000), 30))
663 664
			DRM_ERROR("DSI LP not going Low\n");

665 666 667
		/* Disable MIPI PHY transparent latch */
		val = I915_READ(port_ctrl);
		I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD);
668 669 670 671 672
		usleep_range(1000, 1500);

		I915_WRITE(MIPI_DEVICE_READY(port), 0x00);
		usleep_range(2000, 2500);
	}
673

674
	intel_disable_dsi_pll(encoder);
675
}
676

677 678
static void intel_dsi_post_disable(struct intel_encoder *encoder)
{
679
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
680 681 682 683
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);

	DRM_DEBUG_KMS("\n");

684 685
	intel_dsi_disable(encoder);

686 687
	intel_dsi_clear_device_ready(encoder);

688 689 690 691 692 693 694
	if (!IS_BROXTON(dev_priv)) {
		u32 val;

		val = I915_READ(DSPCLK_GATE_D);
		val &= ~DPOUNIT_CLOCK_GATE_DISABLE;
		I915_WRITE(DSPCLK_GATE_D, val);
	}
695

696
	drm_panel_unprepare(intel_dsi->panel);
S
Shobhit Kumar 已提交
697 698

	msleep(intel_dsi->panel_off_delay);
699 700 701 702

	/* Panel Disable over CRC PMIC */
	if (intel_dsi->gpio_panel)
		gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0);
703 704 705 706 707 708

	/*
	 * FIXME As we do with eDP, just make a note of the time here
	 * and perform the wait before the next panel power on.
	 */
	msleep(intel_dsi->panel_pwr_cycle_delay);
709
}
710 711 712 713 714

static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
				   enum pipe *pipe)
{
	struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
715 716
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
	struct drm_device *dev = encoder->base.dev;
717
	enum intel_display_power_domain power_domain;
718
	enum port port;
719
	bool active = false;
720 721 722

	DRM_DEBUG_KMS("\n");

723
	power_domain = intel_display_port_power_domain(encoder);
724
	if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
725 726
		return false;

727 728 729 730 731 732 733 734
	/*
	 * On Broxton the PLL needs to be enabled with a valid divider
	 * configuration, otherwise accessing DSI registers will hang the
	 * machine. See BSpec North Display Engine registers/MIPI[BXT].
	 */
	if (IS_BROXTON(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv))
		goto out_put_power;

735
	/* XXX: this only works for one DSI output */
736
	for_each_dsi_port(port, intel_dsi->ports) {
737 738
		i915_reg_t ctrl_reg = IS_BROXTON(dev) ?
			BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port);
739
		bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE;
740

741 742 743 744
		/*
		 * Due to some hardware limitations on VLV/CHV, the DPI enable
		 * bit in port C control register does not get set. As a
		 * workaround, check pipe B conf instead.
745
		 */
746
		if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && port == PORT_C)
747
			enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
748

749 750 751 752
		/* Try command mode if video mode not enabled */
		if (!enabled) {
			u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port));
			enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
753
		}
754 755 756 757 758 759 760

		if (!enabled)
			continue;

		if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY))
			continue;

761 762 763 764 765 766 767 768 769 770 771 772 773
		if (IS_BROXTON(dev_priv)) {
			u32 tmp = I915_READ(MIPI_CTRL(port));
			tmp &= BXT_PIPE_SELECT_MASK;
			tmp >>= BXT_PIPE_SELECT_SHIFT;

			if (WARN_ON(tmp > PIPE_C))
				continue;

			*pipe = tmp;
		} else {
			*pipe = port == PORT_A ? PIPE_A : PIPE_B;
		}

774 775
		active = true;
		break;
776
	}
777

778
out_put_power:
779
	intel_display_power_put(dev_priv, power_domain);
780

781
	return active;
782 783
}

784 785 786 787 788 789 790 791
static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
				 struct intel_crtc_state *pipe_config)
{
	struct drm_device *dev = encoder->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_display_mode *adjusted_mode =
					&pipe_config->base.adjusted_mode;
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
792
	unsigned int lane_count = intel_dsi->lane_count;
793 794
	unsigned int bpp, fmt;
	enum port port;
795
	u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819

	/*
	 * Atleast one port is active as encoder->get_config called only if
	 * encoder->get_hw_state() returns true.
	 */
	for_each_dsi_port(port, intel_dsi->ports) {
		if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
			break;
	}

	fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK;
	pipe_config->pipe_bpp =
			mipi_dsi_pixel_format_to_bpp(
				pixel_format_from_register_bits(fmt));
	bpp = pipe_config->pipe_bpp;

	/* In terms of pixels */
	adjusted_mode->crtc_hdisplay =
				I915_READ(BXT_MIPI_TRANS_HACTIVE(port));
	adjusted_mode->crtc_vdisplay =
				I915_READ(BXT_MIPI_TRANS_VACTIVE(port));
	adjusted_mode->crtc_vtotal =
				I915_READ(BXT_MIPI_TRANS_VTOTAL(port));

820 821 822
	hactive = adjusted_mode->crtc_hdisplay;
	hfp = I915_READ(MIPI_HFP_COUNT(port));

823
	/*
824 825
	 * Meaningful for video mode non-burst sync pulse mode only,
	 * can be zero for non-burst sync events and burst modes
826
	 */
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
	hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port));
	hbp = I915_READ(MIPI_HBP_COUNT(port));

	/* harizontal values are in terms of high speed byte clock */
	hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
						intel_dsi->burst_mode_ratio);
	hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
						intel_dsi->burst_mode_ratio);
	hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
						intel_dsi->burst_mode_ratio);

	if (intel_dsi->dual_link) {
		hfp *= 2;
		hsync *= 2;
		hbp *= 2;
	}
843 844 845 846 847 848

	/* vertical values are in terms of lines */
	vfp = I915_READ(MIPI_VFP_COUNT(port));
	vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port));
	vbp = I915_READ(MIPI_VBP_COUNT(port));

849 850 851
	adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
	adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
	adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
852
	adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
853
	adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
854

855 856
	adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
	adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
857 858 859 860 861
	adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
	adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
}


862
static void intel_dsi_get_config(struct intel_encoder *encoder,
863
				 struct intel_crtc_state *pipe_config)
864
{
865
	struct drm_device *dev = encoder->base.dev;
866
	u32 pclk;
867 868
	DRM_DEBUG_KMS("\n");

869 870
	pipe_config->has_dsi_encoder = true;

871 872 873
	if (IS_BROXTON(dev))
		bxt_dsi_get_pipe_config(encoder, pipe_config);

874 875
	pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp,
				  pipe_config);
876 877 878
	if (!pclk)
		return;

879
	pipe_config->base.adjusted_mode.crtc_clock = pclk;
880
	pipe_config->port_clock = pclk;
881 882
}

883 884 885
static enum drm_mode_status
intel_dsi_mode_valid(struct drm_connector *connector,
		     struct drm_display_mode *mode)
886 887
{
	struct intel_connector *intel_connector = to_intel_connector(connector);
V
Ville Syrjälä 已提交
888
	const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
M
Mika Kahola 已提交
889
	int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
890 891 892 893 894 895 896 897 898 899 900 901 902

	DRM_DEBUG_KMS("\n");

	if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
		DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
		return MODE_NO_DBLESCAN;
	}

	if (fixed_mode) {
		if (mode->hdisplay > fixed_mode->hdisplay)
			return MODE_PANEL;
		if (mode->vdisplay > fixed_mode->vdisplay)
			return MODE_PANEL;
M
Mika Kahola 已提交
903 904
		if (fixed_mode->clock > max_dotclk)
			return MODE_CLOCK_HIGH;
905 906
	}

907
	return MODE_OK;
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
}

/* return txclkesc cycles in terms of divider and duration in us */
static u16 txclkesc(u32 divider, unsigned int us)
{
	switch (divider) {
	case ESCAPE_CLOCK_DIVIDER_1:
	default:
		return 20 * us;
	case ESCAPE_CLOCK_DIVIDER_2:
		return 10 * us;
	case ESCAPE_CLOCK_DIVIDER_4:
		return 5 * us;
	}
}

/* return pixels in terms of txbyteclkhs */
925 926
static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count,
		       u16 burst_mode_ratio)
927
{
928
	return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio,
929
					 8 * 100), lane_count);
930 931 932
}

static void set_dsi_timings(struct drm_encoder *encoder,
933
			    const struct drm_display_mode *adjusted_mode)
934 935 936 937
{
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
938
	enum port port;
939
	unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
940 941 942 943
	unsigned int lane_count = intel_dsi->lane_count;

	u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;

944 945 946 947
	hactive = adjusted_mode->crtc_hdisplay;
	hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
	hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
	hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
948

949 950 951 952 953 954 955 956 957
	if (intel_dsi->dual_link) {
		hactive /= 2;
		if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
			hactive += intel_dsi->pixel_overlap;
		hfp /= 2;
		hsync /= 2;
		hbp /= 2;
	}

958 959 960
	vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
	vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
	vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
961 962

	/* horizontal values are in terms of high speed byte clock */
963
	hactive = txbyteclkhs(hactive, bpp, lane_count,
964
			      intel_dsi->burst_mode_ratio);
965 966
	hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
	hsync = txbyteclkhs(hsync, bpp, lane_count,
967
			    intel_dsi->burst_mode_ratio);
968
	hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
969

970
	for_each_dsi_port(port, intel_dsi->ports) {
971 972 973 974 975 976 977 978
		if (IS_BROXTON(dev)) {
			/*
			 * Program hdisplay and vdisplay on MIPI transcoder.
			 * This is different from calculated hactive and
			 * vactive, as they are calculated per channel basis,
			 * whereas these values should be based on resolution.
			 */
			I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port),
979
				   adjusted_mode->crtc_hdisplay);
980
			I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port),
981
				   adjusted_mode->crtc_vdisplay);
982
			I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port),
983
				   adjusted_mode->crtc_vtotal);
984 985
		}

986 987 988 989 990 991 992 993 994 995 996 997 998
		I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive);
		I915_WRITE(MIPI_HFP_COUNT(port), hfp);

		/* meaningful for video mode non-burst sync pulse mode only,
		 * can be zero for non-burst sync events and burst modes */
		I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync);
		I915_WRITE(MIPI_HBP_COUNT(port), hbp);

		/* vertical values are in terms of lines */
		I915_WRITE(MIPI_VFP_COUNT(port), vfp);
		I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync);
		I915_WRITE(MIPI_VBP_COUNT(port), vbp);
	}
999 1000
}

1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
{
	switch (fmt) {
	case MIPI_DSI_FMT_RGB888:
		return VID_MODE_FORMAT_RGB888;
	case MIPI_DSI_FMT_RGB666:
		return VID_MODE_FORMAT_RGB666;
	case MIPI_DSI_FMT_RGB666_PACKED:
		return VID_MODE_FORMAT_RGB666_PACKED;
	case MIPI_DSI_FMT_RGB565:
		return VID_MODE_FORMAT_RGB565;
	default:
		MISSING_CASE(fmt);
		return VID_MODE_FORMAT_RGB666;
	}
}

1018
static void intel_dsi_prepare(struct intel_encoder *intel_encoder)
1019 1020 1021 1022 1023 1024
{
	struct drm_encoder *encoder = &intel_encoder->base;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
1025
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1026
	enum port port;
1027
	unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
1028
	u32 val, tmp;
1029
	u16 mode_hdisplay;
1030

1031
	DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe));
1032

1033
	mode_hdisplay = adjusted_mode->crtc_hdisplay;
1034

1035 1036 1037 1038 1039
	if (intel_dsi->dual_link) {
		mode_hdisplay /= 2;
		if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
			mode_hdisplay += intel_dsi->pixel_overlap;
	}
1040

1041
	for_each_dsi_port(port, intel_dsi->ports) {
1042
		if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
			/*
			 * escape clock divider, 20MHz, shared for A and C.
			 * device ready must be off when doing this! txclkesc?
			 */
			tmp = I915_READ(MIPI_CTRL(PORT_A));
			tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
			I915_WRITE(MIPI_CTRL(PORT_A), tmp |
					ESCAPE_CLOCK_DIVIDER_1);

			/* read request priority is per pipe */
			tmp = I915_READ(MIPI_CTRL(port));
			tmp &= ~READ_REQUEST_PRIORITY_MASK;
			I915_WRITE(MIPI_CTRL(port), tmp |
					READ_REQUEST_PRIORITY_HIGH);
		} else if (IS_BROXTON(dev)) {
1058 1059
			enum pipe pipe = intel_crtc->pipe;

1060 1061 1062
			tmp = I915_READ(MIPI_CTRL(port));
			tmp &= ~BXT_PIPE_SELECT_MASK;

1063
			tmp |= BXT_PIPE_SELECT(pipe);
1064 1065
			I915_WRITE(MIPI_CTRL(port), tmp);
		}
1066 1067 1068 1069 1070 1071 1072 1073

		/* XXX: why here, why like this? handling in irq handler?! */
		I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff);
		I915_WRITE(MIPI_INTR_EN(port), 0xffffffff);

		I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg);

		I915_WRITE(MIPI_DPI_RESOLUTION(port),
1074
			adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT |
1075 1076
			mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
	}
1077 1078 1079 1080 1081 1082 1083 1084 1085

	set_dsi_timings(encoder, adjusted_mode);

	val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
	if (is_cmd_mode(intel_dsi)) {
		val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
		val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
	} else {
		val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
1086
		val |= pixel_format_to_reg(intel_dsi->pixel_format);
1087 1088
	}

1089 1090 1091 1092 1093
	tmp = 0;
	if (intel_dsi->eotp_pkt == 0)
		tmp |= EOT_DISABLE;
	if (intel_dsi->clock_stop)
		tmp |= CLOCKSTOP;
1094

1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
	for_each_dsi_port(port, intel_dsi->ports) {
		I915_WRITE(MIPI_DSI_FUNC_PRG(port), val);

		/* timeouts for recovery. one frame IIUC. if counter expires,
		 * EOT and stop state. */

		/*
		 * In burst mode, value greater than one DPI line Time in byte
		 * clock (txbyteclkhs) To timeout this timer 1+ of the above
		 * said value is recommended.
		 *
		 * In non-burst mode, Value greater than one DPI frame time in
		 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
		 * said value is recommended.
		 *
		 * In DBI only mode, value greater than one DBI frame time in
		 * byte clock(txbyteclkhs) To timeout this timer 1+ of the above
		 * said value is recommended.
		 */
1114

1115 1116 1117
		if (is_vid_mode(intel_dsi) &&
			intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
			I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
1118
				txbyteclkhs(adjusted_mode->crtc_htotal, bpp,
1119 1120
					    intel_dsi->lane_count,
					    intel_dsi->burst_mode_ratio) + 1);
1121 1122
		} else {
			I915_WRITE(MIPI_HS_TX_TIMEOUT(port),
1123 1124
				txbyteclkhs(adjusted_mode->crtc_vtotal *
					    adjusted_mode->crtc_htotal,
1125 1126
					    bpp, intel_dsi->lane_count,
					    intel_dsi->burst_mode_ratio) + 1);
1127 1128 1129 1130 1131 1132
		}
		I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout);
		I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port),
						intel_dsi->turn_arnd_val);
		I915_WRITE(MIPI_DEVICE_RESET_TIMER(port),
						intel_dsi->rst_timer_val);
1133

1134
		/* dphy stuff */
1135

1136 1137 1138
		/* in terms of low power clock */
		I915_WRITE(MIPI_INIT_COUNT(port),
				txclkesc(intel_dsi->escape_clk_div, 100));
1139

1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
		if (IS_BROXTON(dev) && (!intel_dsi->dual_link)) {
			/*
			 * BXT spec says write MIPI_INIT_COUNT for
			 * both the ports, even if only one is
			 * getting used. So write the other port
			 * if not in dual link mode.
			 */
			I915_WRITE(MIPI_INIT_COUNT(port ==
						PORT_A ? PORT_C : PORT_A),
					intel_dsi->init_count);
		}
1151

1152
		/* recovery disables */
1153
		I915_WRITE(MIPI_EOT_DISABLE(port), tmp);
1154

1155 1156
		/* in terms of low power clock */
		I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count);
1157

1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
		/* in terms of txbyteclkhs. actual high to low switch +
		 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
		 *
		 * XXX: write MIPI_STOP_STATE_STALL?
		 */
		I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port),
						intel_dsi->hs_to_lp_count);

		/* XXX: low power clock equivalence in terms of byte clock.
		 * the number of byte clocks occupied in one low power clock.
		 * based on txbyteclkhs and txclkesc.
		 * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
		 * ) / 105.???
		 */
		I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk);

		/* the bw essential for transmitting 16 long packets containing
		 * 252 bytes meant for dcs write memory command is programmed in
		 * this register in terms of byte clocks. based on dsi transfer
		 * rate and the number of lanes configured the time taken to
		 * transmit 16 long packets in a dsi stream varies. */
		I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer);

		I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port),
		intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT |
		intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);

		if (is_vid_mode(intel_dsi))
			/* Some panels might have resolution which is not a
			 * multiple of 64 like 1366 x 768. Enable RANDOM
			 * resolution support for such panels by default */
			I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port),
				intel_dsi->video_frmt_cfg_bits |
				intel_dsi->video_mode_format |
				IP_TG_CONFIG |
				RANDOM_DPI_DISPLAY_RESOLUTION);
	}
1195 1196 1197 1198 1199
}

static enum drm_connector_status
intel_dsi_detect(struct drm_connector *connector, bool force)
{
1200
	return connector_status_connected;
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
}

static int intel_dsi_get_modes(struct drm_connector *connector)
{
	struct intel_connector *intel_connector = to_intel_connector(connector);
	struct drm_display_mode *mode;

	DRM_DEBUG_KMS("\n");

	if (!intel_connector->panel.fixed_mode) {
		DRM_DEBUG_KMS("no fixed mode\n");
		return 0;
	}

	mode = drm_mode_duplicate(connector->dev,
				  intel_connector->panel.fixed_mode);
	if (!mode) {
		DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
		return 0;
	}

	drm_mode_probed_add(connector, mode);
	return 1;
}

V
Ville Syrjälä 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
static int intel_dsi_set_property(struct drm_connector *connector,
				  struct drm_property *property,
				  uint64_t val)
{
	struct drm_device *dev = connector->dev;
	struct intel_connector *intel_connector = to_intel_connector(connector);
	struct drm_crtc *crtc;
	int ret;

	ret = drm_object_property_set_value(&connector->base, property, val);
	if (ret)
		return ret;

	if (property == dev->mode_config.scaling_mode_property) {
		if (val == DRM_MODE_SCALE_NONE) {
			DRM_DEBUG_KMS("no scaling not supported\n");
			return -EINVAL;
		}
1244 1245 1246 1247 1248
		if (HAS_GMCH_DISPLAY(dev) &&
		    val == DRM_MODE_SCALE_CENTER) {
			DRM_DEBUG_KMS("centering not supported\n");
			return -EINVAL;
		}
V
Ville Syrjälä 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267

		if (intel_connector->panel.fitting_mode == val)
			return 0;

		intel_connector->panel.fitting_mode = val;
	}

	crtc = intel_attached_encoder(connector)->base.crtc;
	if (crtc && crtc->state->enable) {
		/*
		 * If the CRTC is enabled, the display will be changed
		 * according to the new panel fitting mode.
		 */
		intel_crtc_restore_mode(crtc);
	}

	return 0;
}

1268
static void intel_dsi_connector_destroy(struct drm_connector *connector)
1269 1270 1271 1272 1273 1274 1275 1276 1277
{
	struct intel_connector *intel_connector = to_intel_connector(connector);

	DRM_DEBUG_KMS("\n");
	intel_panel_fini(&intel_connector->panel);
	drm_connector_cleanup(connector);
	kfree(connector);
}

1278 1279 1280 1281 1282 1283 1284 1285 1286
static void intel_dsi_encoder_destroy(struct drm_encoder *encoder)
{
	struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);

	if (intel_dsi->panel) {
		drm_panel_detach(intel_dsi->panel);
		/* XXX: Logically this call belongs in the panel driver. */
		drm_panel_remove(intel_dsi->panel);
	}
1287 1288 1289 1290 1291

	/* dispose of the gpios */
	if (intel_dsi->gpio_panel)
		gpiod_put(intel_dsi->gpio_panel);

1292 1293 1294
	intel_encoder_destroy(encoder);
}

1295
static const struct drm_encoder_funcs intel_dsi_funcs = {
1296
	.destroy = intel_dsi_encoder_destroy,
1297 1298 1299 1300 1301 1302 1303 1304 1305
};

static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
	.get_modes = intel_dsi_get_modes,
	.mode_valid = intel_dsi_mode_valid,
	.best_encoder = intel_best_encoder,
};

static const struct drm_connector_funcs intel_dsi_connector_funcs = {
1306
	.dpms = drm_atomic_helper_connector_dpms,
1307
	.detect = intel_dsi_detect,
1308
	.destroy = intel_dsi_connector_destroy,
1309
	.fill_modes = drm_helper_probe_single_connector_modes,
V
Ville Syrjälä 已提交
1310
	.set_property = intel_dsi_set_property,
1311
	.atomic_get_property = intel_connector_atomic_get_property,
1312
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1313
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1314 1315
};

V
Ville Syrjälä 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
static void intel_dsi_add_properties(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;

	if (connector->panel.fixed_mode) {
		drm_mode_create_scaling_mode_property(dev);
		drm_object_attach_property(&connector->base.base,
					   dev->mode_config.scaling_mode_property,
					   DRM_MODE_SCALE_ASPECT);
		connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
	}
}

1329
void intel_dsi_init(struct drm_device *dev)
1330 1331 1332 1333 1334 1335
{
	struct intel_dsi *intel_dsi;
	struct intel_encoder *intel_encoder;
	struct drm_encoder *encoder;
	struct intel_connector *intel_connector;
	struct drm_connector *connector;
1336
	struct drm_display_mode *scan, *fixed_mode = NULL;
1337
	struct drm_i915_private *dev_priv = dev->dev_private;
1338
	enum port port;
1339 1340 1341 1342
	unsigned int i;

	DRM_DEBUG_KMS("\n");

1343
	/* There is no detection method for MIPI so rely on VBT */
1344
	if (!intel_bios_is_dsi_present(dev_priv, &port))
1345
		return;
1346

1347
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
1348
		dev_priv->mipi_mmio_base = VLV_MIPI_BASE;
1349 1350
	} else if (IS_BROXTON(dev)) {
		dev_priv->mipi_mmio_base = BXT_MIPI_BASE;
1351 1352 1353 1354
	} else {
		DRM_ERROR("Unsupported Mipi device to reg base");
		return;
	}
1355

1356 1357
	intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
	if (!intel_dsi)
1358
		return;
1359

1360
	intel_connector = intel_connector_alloc();
1361 1362
	if (!intel_connector) {
		kfree(intel_dsi);
1363
		return;
1364 1365 1366 1367 1368 1369 1370 1371
	}

	intel_encoder = &intel_dsi->base;
	encoder = &intel_encoder->base;
	intel_dsi->attached_connector = intel_connector;

	connector = &intel_connector->base;

1372 1373
	drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI,
			 NULL);
1374 1375 1376

	intel_encoder->compute_config = intel_dsi_compute_config;
	intel_encoder->pre_enable = intel_dsi_pre_enable;
1377
	intel_encoder->enable = intel_dsi_enable_nop;
1378
	intel_encoder->disable = intel_dsi_pre_disable;
1379 1380 1381 1382 1383
	intel_encoder->post_disable = intel_dsi_post_disable;
	intel_encoder->get_hw_state = intel_dsi_get_hw_state;
	intel_encoder->get_config = intel_dsi_get_config;

	intel_connector->get_hw_state = intel_connector_get_hw_state;
1384
	intel_connector->unregister = intel_connector_unregister;
1385

1386 1387 1388 1389 1390 1391 1392
	/*
	 * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
	 * port C. BXT isn't limited like this.
	 */
	if (IS_BROXTON(dev_priv))
		intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C);
	else if (port == PORT_A)
1393
		intel_encoder->crtc_mask = BIT(PIPE_A);
1394
	else
1395
		intel_encoder->crtc_mask = BIT(PIPE_B);
1396

1397
	if (dev_priv->vbt.dsi.config->dual_link)
1398
		intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
1399
	else
1400
		intel_dsi->ports = BIT(port);
1401

1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
	/* Create a DSI host (and a device) for each port. */
	for_each_dsi_port(port, intel_dsi->ports) {
		struct intel_dsi_host *host;

		host = intel_dsi_host_init(intel_dsi, port);
		if (!host)
			goto err;

		intel_dsi->dsi_hosts[port] = host;
	}

1413 1414 1415 1416
	for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) {
		intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi,
							     intel_dsi_drivers[i].panel_id);
		if (intel_dsi->panel)
1417 1418 1419
			break;
	}

1420
	if (!intel_dsi->panel) {
1421 1422 1423 1424
		DRM_DEBUG_KMS("no device found\n");
		goto err;
	}

1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
	/*
	 * In case of BYT with CRC PMIC, we need to use GPIO for
	 * Panel control.
	 */
	if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) {
		intel_dsi->gpio_panel =
			gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH);

		if (IS_ERR(intel_dsi->gpio_panel)) {
			DRM_ERROR("Failed to own gpio for panel control\n");
			intel_dsi->gpio_panel = NULL;
		}
	}

1439
	intel_encoder->type = INTEL_OUTPUT_DSI;
1440
	intel_encoder->cloneable = 0;
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
	drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
			   DRM_MODE_CONNECTOR_DSI);

	drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);

	connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
	connector->interlace_allowed = false;
	connector->doublescan_allowed = false;

	intel_connector_attach_encoder(intel_connector, intel_encoder);

1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
	drm_panel_attach(intel_dsi->panel, connector);

	mutex_lock(&dev->mode_config.mutex);
	drm_panel_get_modes(intel_dsi->panel);
	list_for_each_entry(scan, &connector->probed_modes, head) {
		if ((scan->type & DRM_MODE_TYPE_PREFERRED)) {
			fixed_mode = drm_mode_duplicate(dev, scan);
			break;
		}
	}
	mutex_unlock(&dev->mode_config.mutex);

1464 1465 1466 1467 1468
	if (!fixed_mode) {
		DRM_DEBUG_KMS("no fixed mode\n");
		goto err;
	}

1469
	intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
V
Ville Syrjälä 已提交
1470 1471 1472 1473 1474

	intel_dsi_add_properties(intel_connector);

	drm_connector_register(connector);

1475
	intel_panel_setup_backlight(connector, INVALID_PIPE);
1476

1477
	return;
1478 1479 1480 1481 1482 1483

err:
	drm_encoder_cleanup(&intel_encoder->base);
	kfree(intel_dsi);
	kfree(intel_connector);
}