drm/amd/display: use macro for logs

Signed-off-by: Anthony Koo <Anthony.Koo@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Anthony Koo 2018-04-24 15:36:27 -04:00 committed by Alex Deucher
parent 66dec27a98
commit 5103c56885
2 changed files with 15 additions and 13 deletions

View File

@ -190,4 +190,13 @@ void context_clock_trace(
} \
} while (0)
#define DISPLAY_STATS_BEGIN(entry) \
dm_logger_open(dc->ctx->logger, &entry, LOG_DISPLAYSTATS)
#define DISPLAY_STATS(msg, ...) \
dm_logger_append(&log_entry, msg, ##__VA_ARGS__)
#define DISPLAY_STATS_END(entry) \
dm_logger_close(&entry)
#endif /* __DAL_LOGGER_INTERFACE_H__ */

View File

@ -178,19 +178,13 @@ void mod_stats_dump(struct mod_stats *mod_stats)
logger = dc->ctx->logger;
time = core_stats->time;
dm_logger_open(
dc->ctx->logger,
&log_entry,
LOG_DISPLAYSTATS);
DISPLAY_STATS_BEGIN(log_entry);
dm_logger_append(&log_entry, "==Display Caps==\n");
dm_logger_append(&log_entry, "\n");
DISPLAY_STATS("==Display Caps==\n");
dm_logger_append(&log_entry, "==Display Stats==\n");
dm_logger_append(&log_entry, "\n");
DISPLAY_STATS("==Display Stats==\n");
dm_logger_append(&log_entry,
"%10s %10s %10s %10s %10s"
DISPLAY_STATS("%10s %10s %10s %10s %10s"
" %11s %11s %17s %10s %14s"
" %10s %10s %10s %10s %10s"
" %10s %10s %10s %10s\n",
@ -203,8 +197,7 @@ void mod_stats_dump(struct mod_stats *mod_stats)
"vSyncTime4", "vSyncTime5", "flags");
for (int i = 0; i < core_stats->index && i < core_stats->entries; i++) {
dm_logger_append(&log_entry,
"%10u %10u %10u %10u %10u"
DISPLAY_STATS("%10u %10u %10u %10u %10u"
" %11u %11u %17u %10u %14u"
" %10u %10u %10u %10u %10u"
" %10u %10u %10u %10u\n",
@ -229,7 +222,7 @@ void mod_stats_dump(struct mod_stats *mod_stats)
time[i].flags);
}
dm_logger_close(&log_entry);
DISPLAY_STATS_END(log_entry);
}
void mod_stats_reset_data(struct mod_stats *mod_stats)