[Intel-gfx] [RFC 08/10] drm/i915: Add PPS delay values to debugfs.

Bob Paauwe bob.j.paauwe at intel.com
Mon Apr 13 13:51:09 PDT 2015


So that we verify which values are currently in use.

Signed-off-by: Bob Paauwe <bob.j.paauwe at intel.com>
---
 drivers/gpu/drm/i915/i915_debugfs.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index 2394924..a9b96fd 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -2641,8 +2641,19 @@ static void intel_dp_info(struct seq_file *m,
 	seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
 	seq_printf(m, "\taudio support: %s\n", intel_dp->has_audio ? "yes" :
 		   "no");
-	if (intel_encoder->type == INTEL_OUTPUT_EDP)
+	if (intel_encoder->type == INTEL_OUTPUT_EDP) {
+		seq_printf(m, "\tpanel power on delay: %d\n",
+			   intel_dp->pps_delays.t1_t3);
+		seq_printf(m, "\tpanel backlight on delay: %d\n",
+			   intel_dp->pps_delays.t8);
+		seq_printf(m, "\tpanel backlight off delay: %d\n",
+			   intel_dp->pps_delays.t9);
+		seq_printf(m, "\tpanel power off delay: %d\n",
+			   intel_dp->pps_delays.t10);
+		seq_printf(m, "\tpanel power cycle delay: %d\n",
+			   intel_dp->pps_delays.t11_t12);
 		intel_panel_info(m, &intel_connector->panel);
+	}
 }
 
 static void intel_hdmi_info(struct seq_file *m,
-- 
2.1.0



More information about the Intel-gfx mailing list