intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Vidya Srinivas <vidya.srinivas@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: jani.nikula@intel.com, Vidya Srinivas <vidya.srinivas@intel.com>
Subject: [PATCH 6/9] drm/i915/bxt: Fix BXT DSI disable sequence
Date: Wed,  8 Feb 2017 16:20:55 +0530	[thread overview]
Message-ID: <1486551058-22596-7-git-send-email-vidya.srinivas@intel.com> (raw)
In-Reply-To: <1486551058-22596-1-git-send-email-vidya.srinivas@intel.com>

From: Uma Shankar <uma.shankar@intel.com>

Fix BXT DSI disable sequence as per latest updates in BSpec.

Signed-off-by: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
---
 drivers/gpu/drm/i915/intel_dsi.c | 29 +++++++++++++++++++++++++----
 1 file changed, 25 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_dsi.c b/drivers/gpu/drm/i915/intel_dsi.c
index 538755b..808158f 100644
--- a/drivers/gpu/drm/i915/intel_dsi.c
+++ b/drivers/gpu/drm/i915/intel_dsi.c
@@ -632,8 +632,10 @@ static void intel_dsi_disable(struct intel_encoder *encoder)
 		for_each_dsi_port(port, intel_dsi->ports)
 			wait_for_dsi_fifo_empty(intel_dsi, port);
 
-		intel_dsi_port_disable(encoder);
-		msleep(2);
+		if (!IS_BROXTON(dev_priv)) {
+			intel_dsi_port_disable(encoder);
+			usleep_range(2000, 2500);
+		}
 	}
 
 	for_each_dsi_port(port, intel_dsi->ports) {
@@ -641,7 +643,11 @@ static void intel_dsi_disable(struct intel_encoder *encoder)
 		I915_WRITE(MIPI_DEVICE_READY(port), 0x0);
 
 		intel_dsi_reset_clocks(encoder, port);
-		I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP);
+		temp = 0;
+		if (intel_dsi->clock_stop) {
+			temp |= CLOCKSTOP;
+			I915_WRITE(MIPI_EOT_DISABLE(port), temp);
+		}
 
 		temp = I915_READ(MIPI_DSI_FUNC_PRG(port));
 		temp &= ~VID_MODE_FORMAT_MASK;
@@ -707,12 +713,25 @@ static void intel_dsi_post_disable(struct intel_encoder *encoder,
 	struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
 	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
 	u32 val;
+	enum port port;
 
 	DRM_DEBUG_KMS("\n");
 
 	intel_dsi_disable(encoder);
 
-	intel_dsi_clear_device_ready(encoder);
+	if (IS_BROXTON(dev_priv)) {
+		/*
+		 * Reset the DSI Device ready first for both ports
+		 * and then port control registers for both ports
+		 */
+		for_each_dsi_port(port, intel_dsi->ports)
+			I915_WRITE(MIPI_DEVICE_READY(port), 0);
+
+		for_each_dsi_port(port, intel_dsi->ports)
+			I915_WRITE(BXT_MIPI_PORT_CTRL(port), 0);
+	} else {
+		intel_dsi_clear_device_ready(encoder);
+	}
 
 	if (IS_BROXTON(dev_priv)) {
 		/* Power down DSI regulator to save power */
@@ -737,6 +756,8 @@ static void intel_dsi_post_disable(struct intel_encoder *encoder,
 
 	drm_panel_unprepare(intel_dsi->panel);
 
+	/* Disable Panel */
+	drm_panel_power_off(intel_dsi->panel);
 	msleep(intel_dsi->panel_off_delay);
 
 	/* Panel Disable over CRC PMIC */
-- 
1.9.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2017-02-08 10:39 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-08 10:50 [PATCH 0/9] Broxton DSI dual-link and sequence fixes Vidya Srinivas
2017-02-08 10:50 ` [PATCH 1/9] drm/i915: Check for platform specific GPIO config Vidya Srinivas
2017-02-15 18:05   ` Bob Paauwe
2017-02-08 10:50 ` [PATCH 2/9] drm/i915: Fix PLL 8x/3 divider for MIPI video mode Vidya Srinivas
2017-02-15 15:34   ` Jani Nikula
2017-02-08 10:50 ` [PATCH 3/9] drm: Add DSI panel power on/off sequence programming Vidya Srinivas
2017-02-08 10:50 ` [PATCH 4/9] drm/i915: Add DSI panel power on/off sequence callbacks Vidya Srinivas
2017-02-15 18:44   ` Bob Paauwe
2017-02-08 10:50 ` [PATCH 5/9] drm/i915/bxt: Fix BXT DSI ULPS sequence Vidya Srinivas
2017-02-15 18:11   ` Bob Paauwe
2017-02-16 15:23     ` Jani Nikula
2017-02-08 10:50 ` Vidya Srinivas [this message]
2017-02-15 18:24   ` [PATCH 6/9] drm/i915/bxt: Fix BXT DSI disable sequence Bob Paauwe
2017-02-20  9:39     ` Srinivas, Vidya
2017-02-08 10:50 ` [PATCH 7/9] drm/i915/bxt: Disable device ready before shutdown command Vidya Srinivas
2017-02-15 18:27   ` Bob Paauwe
2017-02-16 15:23     ` Jani Nikula
2017-02-08 10:50 ` [PATCH 8/9] drm/i915/bxt: Enable BXT DSI dual link Vidya Srinivas
2017-02-15 18:33   ` Bob Paauwe
2017-02-16 15:26     ` Jani Nikula
2017-02-20  9:49       ` Srinivas, Vidya
2017-02-20 11:00         ` Jani Nikula
2017-02-20 11:40           ` Hans de Goede
2017-02-20 11:55             ` Jani Nikula
2017-02-20 19:19             ` Jani Nikula
2017-02-21  6:21               ` Srinivas, Vidya
2017-02-21  7:30                 ` Hans de Goede
2017-02-08 10:50 ` [PATCH 9/9] drm/i915/bxt: Fix the DSI enable sequence Vidya Srinivas
2017-02-15 19:00   ` Bob Paauwe
2017-02-20  9:43     ` Srinivas, Vidya
2017-02-08 11:02 ` ✓ Fi.CI.BAT: success for Broxton DSI dual-link and sequence fixes Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1486551058-22596-7-git-send-email-vidya.srinivas@intel.com \
    --to=vidya.srinivas@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).