]> git.ipfire.org Git - thirdparty/u-boot.git/blame - common/log_console.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / common / log_console.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
c6d47535
SG
2/*
3 * Logging support
4 *
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
c6d47535
SG
7 */
8
d678a59d 9#include <common.h>
c6d47535 10#include <log.h>
401d1c4f 11#include <asm/global_data.h>
c6d47535 12
deca50fb
SG
13DECLARE_GLOBAL_DATA_PTR;
14
c6d47535
SG
15static int log_console_emit(struct log_device *ldev, struct log_rec *rec)
16{
deca50fb 17 int fmt = gd->log_fmt;
9ad7a6c2 18 bool add_space = false;
deca50fb
SG
19
20 /*
21 * The output format is designed to give someone a fighting chance of
22 * figuring out which field is which:
23 * - level is in CAPS
24 * - cat is lower case and ends with comma
25 * - file normally has a .c extension and ends with a colon
26 * - line is integer and ends with a -
27 * - function is an identifier and ends with ()
28 * - message has a space before it unless it is on its own
29 */
9ad7a6c2
SG
30 if (!(rec->flags & LOGRECF_CONT) && fmt != BIT(LOGF_MSG)) {
31 add_space = true;
32 if (fmt & BIT(LOGF_LEVEL))
33 printf("%s.", log_get_level_name(rec->level));
34 if (fmt & BIT(LOGF_CAT))
35 printf("%s,", log_get_cat_name(rec->cat));
36 if (fmt & BIT(LOGF_FILE))
37 printf("%s:", rec->file);
38 if (fmt & BIT(LOGF_LINE))
39 printf("%d-", rec->line);
f9ebfd7c
SG
40 if (fmt & BIT(LOGF_FUNC)) {
41 if (CONFIG_IS_ENABLED(USE_TINY_PRINTF)) {
42 printf("%s()", rec->func);
43 } else {
44 printf("%*s()", CONFIG_LOGF_FUNC_PAD,
45 rec->func);
46 }
47 }
9ad7a6c2 48 }
dde173a2 49 if (fmt & BIT(LOGF_MSG))
9ad7a6c2 50 printf("%s%s", add_space ? " " : "", rec->msg);
c6d47535
SG
51
52 return 0;
53}
54
55LOG_DRIVER(console) = {
56 .name = "console",
57 .emit = log_console_emit,
b4520300 58 .flags = LOGDF_ENABLE,
c6d47535 59};