> > > Subject: [PATCH v2 01/24] drm/i915/lt_phy: Dump missing PLL state > > parameters > > > > Dump missing PLL structure members ssc_enabled and tbt_mode in order > > to enhance debugging. > > > > v2: Drop addr_lsb and addr_msb printouts > > > > Signed-off-by: Mika Kahola <[email protected]> > > LGTM, > Reviewed-by : Suraj Kandpal <[email protected]> >
Reviewed-by: Suraj Kandpal <[email protected]> > > --- > > drivers/gpu/drm/i915/display/intel_lt_phy.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c > > b/drivers/gpu/drm/i915/display/intel_lt_phy.c > > index eced8493e566..f768804122c1 100644 > > --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c > > +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c > > @@ -2141,7 +2141,9 @@ void intel_lt_phy_dump_hw_state(struct > > intel_display *display, { > > int i, j; > > > > - drm_dbg_kms(display->drm, "lt_phy_pll_hw_state:\n"); > > + 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); > > + > > for (i = 0; i < 3; i++) { > > drm_dbg_kms(display->drm, "config[%d] = 0x%.4x,\n", > > i, hw_state->config[i]); > > -- > > 2.43.0
