]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/i915/lt_phy: Add xe3plpd .dump_hw_state hook
authorMika Kahola <mika.kahola@intel.com>
Thu, 12 Mar 2026 08:06:44 +0000 (08:06 +0000)
committerMika Kahola <mika.kahola@intel.com>
Tue, 24 Mar 2026 07:45:53 +0000 (09:45 +0200)
Add .dump_hw_state function pointer for xe3plpd platform
to support dpll framework. While at it, switch to use
drm_printer structure to print hw state information.

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Link: https://patch.msgid.link/20260312080657.2648265-12-mika.kahola@intel.com
drivers/gpu/drm/i915/display/intel_display.c
drivers/gpu/drm/i915/display/intel_dpll_mgr.c
drivers/gpu/drm/i915/display/intel_lt_phy.c
drivers/gpu/drm/i915/display/intel_lt_phy.h

index 882db77c0bbcda9a51c4ea0c31e6bf7d174952b9..dfc28af1ef889de66eb4b3cb4145b4ddffce6e9e 100644 (file)
@@ -5070,15 +5070,14 @@ pipe_config_lt_phy_pll_mismatch(struct drm_printer *p, bool fastset,
                                const struct intel_lt_phy_pll_state *a,
                                const struct intel_lt_phy_pll_state *b)
 {
-       struct intel_display *display = to_intel_display(crtc);
        char *chipname = "LTPHY";
 
        pipe_config_mismatch(p, fastset, crtc, name, chipname);
 
        drm_printf(p, "expected:\n");
-       intel_lt_phy_dump_hw_state(display, a);
+       intel_lt_phy_dump_hw_state(p, a);
        drm_printf(p, "found:\n");
-       intel_lt_phy_dump_hw_state(display, b);
+       intel_lt_phy_dump_hw_state(p, b);
 }
 
 bool
index b50f02303356c894e8fb74a6dbba9917ea7aad8b..26b78063dd9464ad64c4d224e108fbc054e7d68b 100644 (file)
@@ -4649,6 +4649,12 @@ static int xe3plpd_compute_dplls(struct intel_atomic_state *state,
                return xe3plpd_compute_non_tc_phy_dpll(state, crtc, encoder);
 }
 
+static void xe3plpd_dump_hw_state(struct drm_printer *p,
+                                 const struct intel_dpll_hw_state *dpll_hw_state)
+{
+       intel_lt_phy_dump_hw_state(p, &dpll_hw_state->ltpll);
+}
+
 __maybe_unused
 static const struct intel_dpll_mgr xe3plpd_pll_mgr = {
        .dpll_info = xe3plpd_plls,
@@ -4657,6 +4663,7 @@ static const struct intel_dpll_mgr xe3plpd_pll_mgr = {
        .put_dplls = icl_put_dplls,
        .update_active_dpll = icl_update_active_dpll,
        .update_ref_clks = icl_update_dpll_ref_clks,
+       .dump_hw_state = xe3plpd_dump_hw_state,
 };
 
 /**
index ed5cfd6641b19ae87ff41858dcf0ac35ddd26405..e9a0631a2012905f59cf950502d5ce4ed56965a4 100644 (file)
@@ -2165,23 +2165,23 @@ void intel_lt_phy_set_signal_levels(struct intel_encoder *encoder,
        intel_lt_phy_transaction_end(encoder, wakeref);
 }
 
-void intel_lt_phy_dump_hw_state(struct intel_display *display,
+void intel_lt_phy_dump_hw_state(struct drm_printer *p,
                                const struct intel_lt_phy_pll_state *hw_state)
 {
        int i, j;
 
-       drm_dbg_kms(display->drm, "lt_phy_pll_hw_state: ssc enabled: %d, tbt mode: %d\n",
-                   hw_state->ssc_enabled, hw_state->tbt_mode);
+       drm_printf(p, "lt_phy_pll_hw_state: ssc enabled: %d, tbt mode: %d\n",
+                  hw_state->ssc_enabled, hw_state->tbt_mode);
 
        for (i = 0; i < 3; i++) {
-               drm_dbg_kms(display->drm, "config[%d] = 0x%.4x,\n",
-                           i, hw_state->config[i]);
+               drm_printf(p, "config[%d] = 0x%.4x,\n",
+                          i, hw_state->config[i]);
        }
 
        for (i = 0; i <= 12; i++)
                for (j = 3; j >= 0; j--)
-                       drm_dbg_kms(display->drm, "vdr_data[%d][%d] = 0x%.4x,\n",
-                                   i, j, hw_state->data[i][j]);
+                       drm_printf(p, "vdr_data[%d][%d] = 0x%.4x,\n",
+                                  i, j, hw_state->data[i][j]);
 }
 
 bool
@@ -2336,7 +2336,7 @@ static void intel_lt_phy_pll_verify_clock(struct intel_display *display,
        drm_printf(&p, "PLL state %s (%s):\n",
                   pll_state_name,
                   is_precomputed_state ? "precomputed" : "computed");
-       intel_lt_phy_dump_hw_state(display, pll_state);
+       intel_lt_phy_dump_hw_state(&p, pll_state);
 }
 
 static void intel_lt_phy_pll_verify_params(struct intel_display *display,
index 61ec0e5d8888e1082c069f3705230881be8acb6c..b208bbd6f8caeb32aff14f1840ab07bcbaa8f095 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <linux/types.h>
 
+struct drm_printer;
 struct intel_atomic_state;
 struct intel_display;
 struct intel_encoder;
@@ -26,7 +27,7 @@ int intel_lt_phy_calc_port_clock(struct intel_display *display,
                                 const struct intel_lt_phy_pll_state *lt_state);
 void intel_lt_phy_set_signal_levels(struct intel_encoder *encoder,
                                    const struct intel_crtc_state *crtc_state);
-void intel_lt_phy_dump_hw_state(struct intel_display *display,
+void intel_lt_phy_dump_hw_state(struct drm_printer *p,
                                const struct intel_lt_phy_pll_state *hw_state);
 bool
 intel_lt_phy_pll_compare_hw_state(const struct intel_lt_phy_pll_state *a,