mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
drm/i915: use the yesno helper for logging
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
1da7d7131c
commit
742f491d2c
3 changed files with 11 additions and 14 deletions
|
@ -1382,17 +1382,16 @@ static int ironlake_drpc_info(struct seq_file *m)
|
||||||
intel_runtime_pm_put(dev_priv);
|
intel_runtime_pm_put(dev_priv);
|
||||||
mutex_unlock(&dev->struct_mutex);
|
mutex_unlock(&dev->struct_mutex);
|
||||||
|
|
||||||
seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
|
seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN));
|
||||||
"yes" : "no");
|
|
||||||
seq_printf(m, "Boost freq: %d\n",
|
seq_printf(m, "Boost freq: %d\n",
|
||||||
(rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
|
(rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
|
||||||
MEMMODE_BOOST_FREQ_SHIFT);
|
MEMMODE_BOOST_FREQ_SHIFT);
|
||||||
seq_printf(m, "HW control enabled: %s\n",
|
seq_printf(m, "HW control enabled: %s\n",
|
||||||
rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
|
yesno(rgvmodectl & MEMMODE_HWIDLE_EN));
|
||||||
seq_printf(m, "SW control enabled: %s\n",
|
seq_printf(m, "SW control enabled: %s\n",
|
||||||
rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
|
yesno(rgvmodectl & MEMMODE_SWMODE_EN));
|
||||||
seq_printf(m, "Gated voltage change: %s\n",
|
seq_printf(m, "Gated voltage change: %s\n",
|
||||||
rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
|
yesno(rgvmodectl & MEMMODE_RCLK_GATE));
|
||||||
seq_printf(m, "Starting frequency: P%d\n",
|
seq_printf(m, "Starting frequency: P%d\n",
|
||||||
(rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
|
(rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
|
||||||
seq_printf(m, "Max P-state: P%d\n",
|
seq_printf(m, "Max P-state: P%d\n",
|
||||||
|
@ -1401,7 +1400,7 @@ static int ironlake_drpc_info(struct seq_file *m)
|
||||||
seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
|
seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
|
||||||
seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
|
seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
|
||||||
seq_printf(m, "Render standby enabled: %s\n",
|
seq_printf(m, "Render standby enabled: %s\n",
|
||||||
(rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
|
yesno(!(rstdbyctl & RCX_SW_EXIT)));
|
||||||
seq_puts(m, "Current RS state: ");
|
seq_puts(m, "Current RS state: ");
|
||||||
switch (rstdbyctl & RSX_STATUS_MASK) {
|
switch (rstdbyctl & RSX_STATUS_MASK) {
|
||||||
case RSX_STATUS_ON:
|
case RSX_STATUS_ON:
|
||||||
|
@ -2844,8 +2843,7 @@ static void intel_dp_info(struct seq_file *m,
|
||||||
struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
|
struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
|
||||||
|
|
||||||
seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
|
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" :
|
seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio));
|
||||||
"no");
|
|
||||||
if (intel_encoder->type == INTEL_OUTPUT_EDP)
|
if (intel_encoder->type == INTEL_OUTPUT_EDP)
|
||||||
intel_panel_info(m, &intel_connector->panel);
|
intel_panel_info(m, &intel_connector->panel);
|
||||||
}
|
}
|
||||||
|
@ -2856,8 +2854,7 @@ static void intel_hdmi_info(struct seq_file *m,
|
||||||
struct intel_encoder *intel_encoder = intel_connector->encoder;
|
struct intel_encoder *intel_encoder = intel_connector->encoder;
|
||||||
struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
|
struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
|
||||||
|
|
||||||
seq_printf(m, "\taudio support: %s\n", intel_hdmi->has_audio ? "yes" :
|
seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio));
|
||||||
"no");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void intel_lvds_info(struct seq_file *m,
|
static void intel_lvds_info(struct seq_file *m,
|
||||||
|
|
|
@ -4014,8 +4014,8 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp)
|
||||||
}
|
}
|
||||||
|
|
||||||
DRM_DEBUG_KMS("Display Port TPS3 support: source %s, sink %s\n",
|
DRM_DEBUG_KMS("Display Port TPS3 support: source %s, sink %s\n",
|
||||||
intel_dp_source_supports_hbr2(dev) ? "yes" : "no",
|
yesno(intel_dp_source_supports_hbr2(dev)),
|
||||||
drm_dp_tps3_supported(intel_dp->dpcd) ? "yes" : "no");
|
yesno(drm_dp_tps3_supported(intel_dp->dpcd)));
|
||||||
|
|
||||||
/* Intermediate frequency support */
|
/* Intermediate frequency support */
|
||||||
if (is_edp(intel_dp) &&
|
if (is_edp(intel_dp) &&
|
||||||
|
|
|
@ -5550,7 +5550,7 @@ static void cherryview_enable_rps(struct drm_device *dev)
|
||||||
/* RPS code assumes GPLL is used */
|
/* RPS code assumes GPLL is used */
|
||||||
WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
|
WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
|
||||||
|
|
||||||
DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
|
DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
|
||||||
DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
|
DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
|
||||||
|
|
||||||
dev_priv->rps.cur_freq = (val >> 8) & 0xff;
|
dev_priv->rps.cur_freq = (val >> 8) & 0xff;
|
||||||
|
@ -5640,7 +5640,7 @@ static void valleyview_enable_rps(struct drm_device *dev)
|
||||||
/* RPS code assumes GPLL is used */
|
/* RPS code assumes GPLL is used */
|
||||||
WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
|
WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
|
||||||
|
|
||||||
DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
|
DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
|
||||||
DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
|
DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
|
||||||
|
|
||||||
dev_priv->rps.cur_freq = (val >> 8) & 0xff;
|
dev_priv->rps.cur_freq = (val >> 8) & 0xff;
|
||||||
|
|
Loading…
Add table
Reference in a new issue