1 /* SPDX-License-Identifier: GPL-2.0+ */
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
13 #include <linker_lists.h>
14 #include <dm/uclass-id.h>
15 #include <linux/bitops.h>
16 #include <linux/list.h>
21 * enum log_level_t - Log levels supported, ranging from most to least important
24 /** @LOGL_EMERG: U-Boot is unstable */
26 /** @LOGL_ALERT: Action must be taken immediately */
28 /** @LOGL_CRIT: Critical conditions */
30 /** @LOGL_ERR: Error that prevents something from working */
32 /** @LOGL_WARNING: Warning may prevent optimal operation */
34 /** @LOGL_NOTICE: Normal but significant condition, printf() */
36 /** @LOGL_INFO: General information message */
38 /** @LOGL_DEBUG: Basic debug-level message */
40 /** @LOGL_DEBUG_CONTENT: Debug message showing full message content */
42 /** @LOGL_DEBUG_IO: Debug message showing hardware I/O access */
45 /** @LOGL_COUNT: Total number of valid log levels */
47 /** @LOGL_NONE: Used to indicate that there is no valid log level */
50 /** @LOGL_LEVEL_MASK: Mask for valid log levels */
51 LOGL_LEVEL_MASK = 0xf,
52 /** @LOGL_FORCE_DEBUG: Mask to force output due to LOG_DEBUG */
53 LOGL_FORCE_DEBUG = 0x10,
55 /** @LOGL_FIRST: The first, most-important log level */
56 LOGL_FIRST = LOGL_EMERG,
57 /** @LOGL_MAX: The last, least-important log level */
58 LOGL_MAX = LOGL_DEBUG_IO,
59 /** @LOGL_CONT: Use same log level as in previous call */
64 * enum log_category_t - Log categories supported.
66 * Log categories between %LOGC_FIRST and %LOGC_NONE correspond to uclasses
67 * (i.e. &enum uclass_id), but there are also some more generic categories.
69 * Remember to update log_cat_name[] after adding a new category.
72 /** @LOGC_FIRST: First log category */
73 LOGC_FIRST = 0, /* First part mirrors UCLASS_... */
75 /** @LOGC_NONE: Default log category */
76 LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */
77 /** @LOGC_ARCH: Related to arch-specific code */
79 /** @LOGC_BOARD: Related to board-specific code */
81 /** @LOGC_CORE: Related to core features (non-driver-model) */
83 /** @LOGC_DM: Core driver-model */
85 /** @LOGC_DT: Device-tree */
87 /** @LOGC_EFI: EFI implementation */
89 /** @LOGC_ALLOC: Memory allocation */
91 /** @LOGC_SANDBOX: Related to the sandbox board */
93 /** @LOGC_BLOBLIST: Bloblist */
95 /** @LOGC_DEVRES: Device resources (``devres_...`` functions) */
97 /** @LOGC_ACPI: Advanced Configuration and Power Interface (ACPI) */
99 /** @LOGC_BOOT: Related to boot process / boot image processing */
101 /** @LOGC_EVENT: Related to event and event handling */
103 /** @LOGC_COUNT: Number of log categories */
105 /** @LOGC_END: Sentinel value for lists of log categories */
107 /** @LOGC_CONT: Use same category as in previous call */
111 /* Helper to cast a uclass ID to a log category */
112 static inline int log_uc_cat(enum uclass_id id)
114 return (enum log_category_t)id;
118 * _log() - Internal function to emit a new log record
120 * @cat: Category of log record (indicating which subsystem generated it)
121 * @level: Level of log record (indicating its severity)
122 * @file: File name of file where log record was generated
123 * @line: Line number in file where log record was generated
124 * @func: Function where log record was generated
125 * @fmt: printf() format string for log record
126 * @...: Optional parameters, according to the format string @fmt
127 * Return: 0 if log record was emitted, -ve on error
129 int _log(enum log_category_t cat, enum log_level_t level, const char *file,
130 int line, const char *func, const char *fmt, ...)
131 __attribute__ ((format (__printf__, 6, 7)));
133 static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
134 const char *file, int line, const char *func,
135 const char *fmt, ...)
136 __attribute__ ((format (__printf__, 6, 7)));
138 static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
139 const char *file, int line, const char *func,
140 const char *fmt, ...)
146 * _log_buffer - Internal function to print data buffer in hex and ascii form
148 * @cat: Category of log record (indicating which subsystem generated it)
149 * @level: Level of log record (indicating its severity)
150 * @file: File name of file where log record was generated
151 * @line: Line number in file where log record was generated
152 * @func: Function where log record was generated
153 * @addr: Starting address to display at start of line
154 * @data: pointer to data buffer
155 * @width: data value width. May be 1, 2, or 4.
156 * @count: number of values to display
157 * @linelen: Number of values to print per line; specify 0 for default length
159 int _log_buffer(enum log_category_t cat, enum log_level_t level,
160 const char *file, int line, const char *func, ulong addr,
161 const void *data, uint width, uint count, uint linelen);
163 /* Define this at the top of a file to add a prefix to debug messages */
165 #define pr_fmt(fmt) fmt
168 /* Use a default category if this file does not supply one */
170 #define LOG_CATEGORY LOGC_NONE
174 * This header may be including when CONFIG_LOG is disabled, in which case
175 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
177 #if CONFIG_IS_ENABLED(LOG)
178 #define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
180 #define _LOG_MAX_LEVEL LOGL_INFO
183 #define log_emer(_fmt...) log(LOG_CATEGORY, LOGL_EMERG, ##_fmt)
184 #define log_alert(_fmt...) log(LOG_CATEGORY, LOGL_ALERT, ##_fmt)
185 #define log_crit(_fmt...) log(LOG_CATEGORY, LOGL_CRIT, ##_fmt)
186 #define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
187 #define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
188 #define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
189 #define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
190 #define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
191 #define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
192 #define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
193 #define log_cont(_fmt...) log(LOGC_CONT, LOGL_CONT, ##_fmt)
196 #define _LOG_DEBUG LOGL_FORCE_DEBUG
204 #if CONFIG_IS_ENABLED(LOG)
206 /* Emit a log record if the level is less that the maximum */
207 #define log(_cat, _level, _fmt, _args...) ({ \
209 if (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL) \
210 _log((enum log_category_t)(_cat), \
211 (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \
212 __LINE__, __func__, \
213 pr_fmt(_fmt), ##_args); \
216 /* Emit a dump if the level is less that the maximum */
217 #define log_buffer(_cat, _level, _addr, _data, _width, _count, _linelen) ({ \
219 if (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL) \
220 _log_buffer((enum log_category_t)(_cat), \
221 (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \
222 __LINE__, __func__, _addr, _data, \
223 _width, _count, _linelen); \
227 /* Note: _LOG_DEBUG != 0 avoids a warning with clang */
228 #define log(_cat, _level, _fmt, _args...) ({ \
230 if (_LOG_DEBUG != 0 || _l <= LOGL_INFO || \
231 (_DEBUG && _l == LOGL_DEBUG)) \
232 printf(_fmt, ##_args); \
235 #define log_buffer(_cat, _level, _addr, _data, _width, _count, _linelen) ({ \
237 if (_LOG_DEBUG != 0 || _l <= LOGL_INFO || \
238 (_DEBUG && _l == LOGL_DEBUG)) \
239 print_buffer(_addr, _data, _width, _count, _linelen); \
243 #define log_nop(_cat, _level, _fmt, _args...) ({ \
245 _log_nop((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
246 __func__, pr_fmt(_fmt), ##_args); \
255 #ifdef CONFIG_SPL_BUILD
261 #if CONFIG_IS_ENABLED(LOG)
263 #define debug_cond(cond, fmt, args...) \
267 (enum log_level_t)(LOGL_FORCE_DEBUG | _LOG_DEBUG), \
274 * Output a debug text when condition "cond" is met. The "cond" should be
275 * computed by a preprocessor in the best case, allowing for the best
278 #define debug_cond(cond, fmt, args...) \
281 printf(pr_fmt(fmt), ##args); \
286 /* Show a message if DEBUG is defined in a file */
287 #define debug(fmt, args...) \
288 debug_cond(_DEBUG, fmt, ##args)
290 /* Show a message if not in SPL */
291 #define warn_non_spl(fmt, args...) \
292 debug_cond(!_SPL_BUILD, fmt, ##args)
295 * An assertion is run-time check done in debug mode only. If DEBUG is not
296 * defined then it is skipped. If DEBUG is defined and the assertion fails,
297 * then it calls panic*( which may or may not reset/halt U-Boot (see
298 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
299 * before release, and after release it is hoped that they don't matter. But
300 * in any case these failing assertions cannot be fixed with a reset (which
301 * may just do the same assertion again).
303 void __assert_fail(const char *assertion, const char *file, unsigned int line,
304 const char *function);
307 * assert() - assert expression is true
309 * If the expression x evaluates to false and _DEBUG evaluates to true, a panic
310 * message is written and the system stalls. The value of _DEBUG is set to true
311 * if DEBUG is defined before including common.h.
313 * The expression x is always executed irrespective of the value of _DEBUG.
315 * @x: expression to test
318 ({ if (!(x) && _DEBUG) \
319 __assert_fail(#x, __FILE__, __LINE__, __func__); })
322 * This one actually gets compiled in even without DEBUG. It doesn't include the
323 * full pathname as it may be huge. Only use this when the user should be
324 * warning, similar to BUG_ON() in linux.
326 * Return: true if assertion succeeded (condition is true), else false
328 #define assert_noisy(x) \
329 ({ bool _val = (x); \
331 __assert_fail(#x, "?", __LINE__, __func__); \
335 #if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN)
337 * Log an error return value, possibly with a message. Usage:
339 * return log_ret(fred_call());
343 * return log_msg_ret("fred failed", fred_call());
345 #define log_ret(_ret) ({ \
346 int __ret = (_ret); \
348 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
351 #define log_msg_ret(_msg, _ret) ({ \
352 int __ret = (_ret); \
354 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
360 * Similar to the above, but any non-zero value is consider an error, not just
361 * values less than 0.
363 #define log_retz(_ret) ({ \
364 int __ret = (_ret); \
366 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
369 #define log_msg_retz(_msg, _ret) ({ \
370 int __ret = (_ret); \
372 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
377 /* Non-logging versions of the above which just return the error code */
378 #define log_ret(_ret) (_ret)
379 #define log_msg_ret(_msg, _ret) ((void)(_msg), _ret)
380 #define log_retz(_ret) (_ret)
381 #define log_msg_retz(_msg, _ret) ((void)(_msg), _ret)
384 /** * enum log_rec_flags - Flags for a log record */
386 /** @LOGRECF_FORCE_DEBUG: Force output of debug record */
387 LOGRECF_FORCE_DEBUG = BIT(0),
388 /** @LOGRECF_CONT: Continuation of previous log record */
389 LOGRECF_CONT = BIT(1),
393 * struct log_rec - a single log record
395 * Holds information about a single record in the log
397 * Members marked as 'not allocated' are stored as pointers and the caller is
398 * responsible for making sure that the data pointed to is not overwritten.
399 * Members marked as 'allocated' are allocated (e.g. via strdup()) by the log
402 * TODO(sjg@chromium.org): Compress this struct down a bit to reduce space, e.g.
403 * a single u32 for cat, level, line and force_debug
405 * @cat: Category, representing a uclass or part of U-Boot
406 * @level: Severity level, less severe is higher
407 * @line: Line number where the log record was generated
408 * @flags: Flags for log record (enum log_rec_flags)
409 * @file: Name of file where the log record was generated (not allocated)
410 * @func: Function where the log record was generated (not allocated)
411 * @msg: Log message (allocated)
414 enum log_category_t cat;
415 enum log_level_t level;
425 enum log_device_flags {
426 LOGDF_ENABLE = BIT(0), /* Device is enabled */
430 * struct log_driver - a driver which accepts and processes log records
432 * @name: Name of driver
433 * @emit: Method to call to emit a log record via this device
434 * @flags: Initial value for flags (use LOGDF_ENABLE to enable on start-up)
440 * @emit: emit a log record
442 * Called by the log system to pass a log record to a particular driver
443 * for processing. The filter is checked before calling this function.
445 int (*emit)(struct log_device *ldev, struct log_rec *rec);
446 unsigned short flags;
450 * struct log_device - an instance of a log driver
452 * Since drivers are set up at build-time we need to have a separate device for
453 * the run-time aspects of drivers (currently just a list of filters to apply
454 * to records send to this device).
456 * @next_filter_num: Sequence number of next filter filter added (0=no filters
457 * yet). This increments with each new filter on the device, but never
459 * @flags: Flags for this filter (enum log_device_flags)
460 * @drv: Pointer to driver for this device
461 * @filter_head: List of filters for this device
462 * @sibling_node: Next device in the list of all devices
465 unsigned short next_filter_num;
466 unsigned short flags;
467 struct log_driver *drv;
468 struct list_head filter_head;
469 struct list_head sibling_node;
473 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
477 * enum log_filter_flags - Flags which modify a filter
479 enum log_filter_flags {
480 /** @LOGFF_HAS_CAT: Filter has a category list */
481 LOGFF_HAS_CAT = 1 << 0,
482 /** @LOGFF_DENY: Filter denies matching messages */
484 /** @LOGFF_LEVEL_MIN: Filter's level is a minimum, not a maximum */
485 LOGFF_LEVEL_MIN = 1 << 2,
489 * struct log_filter - criteria to filter out log messages
491 * If a message matches all criteria, then it is allowed. If LOGFF_DENY is set,
492 * then it is denied instead.
494 * @filter_num: Sequence number of this filter. This is returned when adding a
495 * new filter, and must be provided when removing a previously added
497 * @flags: Flags for this filter (``LOGFF_...``)
498 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
499 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
501 * @level: Maximum (or minimum, if %LOGFF_MIN_LEVEL) log level to allow
502 * @file_list: List of files to allow, separated by comma. If NULL then all
503 * files are permitted
504 * @sibling_node: Next filter in the list of filters for this log device
509 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
510 enum log_level_t level;
511 const char *file_list;
512 struct list_head sibling_node;
515 #define LOG_DRIVER(_name) \
516 ll_entry_declare(struct log_driver, _name, log_driver)
518 /* Get a pointer to a given driver */
519 #define LOG_GET_DRIVER(__name) \
520 ll_entry_get(struct log_driver, __name, log_driver)
523 * log_get_cat_name() - Get the name of a category
525 * @cat: Category to look up
526 * Return: category name (which may be a uclass driver name) if found, or
527 * "<invalid>" if invalid, or "<missing>" if not found. All error
528 * responses begin with '<'.
530 const char *log_get_cat_name(enum log_category_t cat);
533 * log_get_cat_by_name() - Look up a category by name
535 * @name: Name to look up
536 * Return: Category, or %LOGC_NONE if not found
538 enum log_category_t log_get_cat_by_name(const char *name);
541 * log_get_level_name() - Get the name of a log level
543 * @level: Log level to look up
544 * Return: Log level name (in ALL CAPS)
546 const char *log_get_level_name(enum log_level_t level);
549 * log_get_level_by_name() - Look up a log level by name
551 * @name: Name to look up
552 * Return: Log level, or %LOGL_NONE if not found
554 enum log_level_t log_get_level_by_name(const char *name);
557 * log_device_find_by_name() - Look up a log device by its driver's name
559 * @drv_name: Name of the driver
560 * Return: the log device, or %NULL if not found
562 struct log_device *log_device_find_by_name(const char *drv_name);
565 * log_has_cat() - check if a log category exists within a list
567 * @cat_list: List of categories to check, at most %LOGF_MAX_CATEGORIES entries
568 * long, terminated by %LC_END if fewer
569 * @cat: Category to search for
571 * Return: ``true`` if @cat is in @cat_list, else ``false``
573 bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat);
576 * log_has_file() - check if a file is with a list
578 * @file_list: List of files to check, separated by comma
579 * @file: File to check for. This string is matched against the end of each
580 * file in the list, i.e. ignoring any preceding path. The list is
581 * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c
583 * Return: ``true`` if @file is in @file_list, else ``false``
585 bool log_has_file(const char *file_list, const char *file);
587 /* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
600 /* Handle the 'log test' command */
601 int do_log_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
604 * log_add_filter_flags() - Add a new filter to a log device, specifying flags
606 * @drv_name: Driver name to add the filter to (since each driver only has a
608 * @flags: Flags for this filter (``LOGFF_...``)
609 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
610 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
612 * @level: Maximum (or minimum, if %LOGFF_LEVEL_MIN) log level to allow
613 * @file_list: List of files to allow, separated by comma. If NULL then all
614 * files are permitted
616 * the sequence number of the new filter (>=0) if the filter was added, or a
619 int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[],
620 enum log_level_t level, const char *file_list,
624 * log_add_filter() - Add a new filter to a log device
626 * @drv_name: Driver name to add the filter to (since each driver only has a
628 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
629 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
631 * @max_level: Maximum log level to allow
632 * @file_list: List of files to allow, separated by comma. If %NULL then all
633 * files are permitted
635 * the sequence number of the new filter (>=0) if the filter was added, or a
638 static inline int log_add_filter(const char *drv_name,
639 enum log_category_t cat_list[],
640 enum log_level_t max_level,
641 const char *file_list)
643 return log_add_filter_flags(drv_name, cat_list, max_level, file_list,
648 * log_remove_filter() - Remove a filter from a log device
650 * @drv_name: Driver name to remove the filter from (since each driver only has
652 * @filter_num: Filter number to remove (as returned by log_add_filter())
654 * 0 if the filter was removed, -%ENOENT if either the driver or the filter
655 * number was not found
657 int log_remove_filter(const char *drv_name, int filter_num);
660 * log_device_set_enable() - Enable or disable a log device
662 * Devices are referenced by their driver, so use LOG_GET_DRIVER(name) to pass
663 * the driver to this function. For example if the driver is declared with
664 * LOG_DRIVER(wibble) then pass LOG_GET_DRIVER(wibble) here.
666 * @drv: Driver of device to enable
667 * @enable: true to enable, false to disable
668 * Return: 0 if OK, -ENOENT if the driver was not found
670 int log_device_set_enable(struct log_driver *drv, bool enable);
672 #if CONFIG_IS_ENABLED(LOG)
674 * log_init() - Set up the log system ready for use
676 * Return: 0 if OK, -%ENOMEM if out of memory
680 static inline int log_init(void)
687 * log_get_default_format() - get default log format
689 * The default log format is configurable via
690 * %CONFIG_LOGF_FILE, %CONFIG_LOGF_LINE, and %CONFIG_LOGF_FUNC.
692 * Return: default log format
694 static inline int log_get_default_format(void)
696 return BIT(LOGF_MSG) |
697 (IS_ENABLED(CONFIG_LOGF_FILE) ? BIT(LOGF_FILE) : 0) |
698 (IS_ENABLED(CONFIG_LOGF_LINE) ? BIT(LOGF_LINE) : 0) |
699 (IS_ENABLED(CONFIG_LOGF_FUNC) ? BIT(LOGF_FUNC) : 0);