Commit c0bc0bd5 authored by Jordan Lazare's avatar Jordan Lazare Committed by Alex Deucher

drm/amd/display: Less log spam

Signed-off-by: default avatarJordan Lazare <Jordan.Lazare@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Reviewed-by: default avatarCharlene Liu <Charlene.Liu@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 1fbd2cfc
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
static const struct dc_log_type_info log_type_info_tbl[] = { static const struct dc_log_type_info log_type_info_tbl[] = {
{LOG_ERROR, "Error"}, {LOG_ERROR, "Error"},
{LOG_WARNING, "Warning"}, {LOG_WARNING, "Warning"},
{LOG_DEBUG, "Debug"},
{LOG_DC, "DC_Interface"}, {LOG_DC, "DC_Interface"},
{LOG_SURFACE, "Surface"}, {LOG_SURFACE, "Surface"},
{LOG_HW_HOTPLUG, "HW_Hotplug"}, {LOG_HW_HOTPLUG, "HW_Hotplug"},
...@@ -80,12 +81,13 @@ static const struct dc_log_type_info log_type_info_tbl[] = { ...@@ -80,12 +81,13 @@ static const struct dc_log_type_info log_type_info_tbl[] = {
(1 << LOG_SYNC) | \ (1 << LOG_SYNC) | \
(1 << LOG_BANDWIDTH_VALIDATION) | \ (1 << LOG_BANDWIDTH_VALIDATION) | \
(1 << LOG_MST) | \ (1 << LOG_MST) | \
(1 << LOG_BIOS) | \
(1 << LOG_DETECTION_EDID_PARSER) | \ (1 << LOG_DETECTION_EDID_PARSER) | \
(1 << LOG_DETECTION_DP_CAPS) | \ (1 << LOG_DETECTION_DP_CAPS) | \
(1 << LOG_BACKLIGHT)) | \ (1 << LOG_BACKLIGHT)) | \
(1 << LOG_I2C_AUX) | \ (1 << LOG_I2C_AUX) | \
(1 << LOG_IF_TRACE) /* | \ (1 << LOG_IF_TRACE) /* | \
(1 << LOG_DEBUG) | \
(1 << LOG_BIOS) | \
(1 << LOG_SURFACE) | \ (1 << LOG_SURFACE) | \
(1 << LOG_SCALER) | \ (1 << LOG_SCALER) | \
(1 << LOG_DML) | \ (1 << LOG_DML) | \
......
...@@ -3299,7 +3299,7 @@ static enum bp_result patch_bios_image_from_ext_display_connection_info( ...@@ -3299,7 +3299,7 @@ static enum bp_result patch_bios_image_from_ext_display_connection_info(
opm_object, opm_object,
&ext_display_connection_info_tbl) != BP_RESULT_OK) { &ext_display_connection_info_tbl) != BP_RESULT_OK) {
dm_logger_write(bp->base.ctx->logger, LOG_BIOS, dm_logger_write(bp->base.ctx->logger, LOG_WARNING,
"%s: Failed to read Connection Info Table", __func__); "%s: Failed to read Connection Info Table", __func__);
return BP_RESULT_UNSUPPORTED; return BP_RESULT_UNSUPPORTED;
} }
......
...@@ -773,8 +773,8 @@ void dce_aud_wall_dto_setup( ...@@ -773,8 +773,8 @@ void dce_aud_wall_dto_setup(
crtc_info->calculated_pixel_clock, crtc_info->calculated_pixel_clock,
&clock_info); &clock_info);
dm_logger_write(audio->ctx->logger, LOG_HW_SET_MODE,\ dm_logger_write(audio->ctx->logger, LOG_HW_AUDIO,\
"\n************************%s:Input::requested_pixel_clock = %d"\ "\n%s:Input::requested_pixel_clock = %d"\
"calculated_pixel_clock =%d\n"\ "calculated_pixel_clock =%d\n"\
"audio_dto_module = %d audio_dto_phase =%d \n\n", __func__,\ "audio_dto_module = %d audio_dto_phase =%d \n\n", __func__,\
crtc_info->requested_pixel_clock,\ crtc_info->requested_pixel_clock,\
......
...@@ -1093,8 +1093,8 @@ static void dce110_se_setup_hdmi_audio( ...@@ -1093,8 +1093,8 @@ static void dce110_se_setup_hdmi_audio(
crtc_info->requested_pixel_clock, crtc_info->requested_pixel_clock,
crtc_info->calculated_pixel_clock, crtc_info->calculated_pixel_clock,
&audio_clock_info)) { &audio_clock_info)) {
dm_logger_write(enc->ctx->logger, LOG_HW_SET_MODE, dm_logger_write(enc->ctx->logger, LOG_HW_AUDIO,
"\n*********************%s:Input::requested_pixel_clock = %d"\ "\n%s:Input::requested_pixel_clock = %d"\
"calculated_pixel_clock = %d \n", __func__,\ "calculated_pixel_clock = %d \n", __func__,\
crtc_info->requested_pixel_clock,\ crtc_info->requested_pixel_clock,\
crtc_info->calculated_pixel_clock); crtc_info->calculated_pixel_clock);
......
...@@ -35,6 +35,7 @@ struct dal_logger; ...@@ -35,6 +35,7 @@ struct dal_logger;
enum dc_log_type { enum dc_log_type {
LOG_ERROR = 0, LOG_ERROR = 0,
LOG_WARNING, LOG_WARNING,
LOG_DEBUG,
LOG_DC, LOG_DC,
LOG_SURFACE, LOG_SURFACE,
LOG_HW_HOTPLUG, LOG_HW_HOTPLUG,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment