1 /* SPDX-License-Identifier: GPL-2.0+ */
5 * Copyright (c) 2017 Google, Inc
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 optimial 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_COUNT: Number of log categories */
103 /** @LOGC_END: Sentinel value for lists of log categories */
105 /** @LOGC_CONT: Use same category as in previous call */
109 /* Helper to cast a uclass ID to a log category */
110 static inline int log_uc_cat(enum uclass_id id)
112 return (enum log_category_t)id;
116 * _log() - Internal function to emit a new log record
118 * @cat: Category of log record (indicating which subsystem generated it)
119 * @level: Level of log record (indicating its severity)
120 * @file: File name of file where log record was generated
121 * @line: Line number in file where log record was generated
122 * @func: Function where log record was generated
123 * @fmt: printf() format string for log record
124 * @...: Optional parameters, according to the format string @fmt
125 * Return: 0 if log record was emitted, -ve on error
127 int _log(enum log_category_t cat, enum log_level_t level, const char *file,
128 int line, const char *func, const char *fmt, ...)
129 __attribute__ ((format (__printf__, 6, 7)));
131 static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
132 const char *file, int line, const char *func,
133 const char *fmt, ...)
134 __attribute__ ((format (__printf__, 6, 7)));
136 static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
137 const char *file, int line, const char *func,
138 const char *fmt, ...)
143 /* Define this at the top of a file to add a prefix to debug messages */
145 #define pr_fmt(fmt) fmt
148 /* Use a default category if this file does not supply one */
150 #define LOG_CATEGORY LOGC_NONE
154 * This header may be including when CONFIG_LOG is disabled, in which case
155 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
157 #if CONFIG_IS_ENABLED(LOG)
158 #define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
159 #define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
160 #define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
161 #define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
162 #define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
163 #define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
164 #define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
165 #define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
167 #define _LOG_MAX_LEVEL LOGL_INFO
168 #define log_err(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
169 #define log_warning(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
170 #define log_notice(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
171 #define log_info(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
172 #define log_debug(_fmt, ...) debug(_fmt, ##__VA_ARGS__)
173 #define log_content(_fmt...) log_nop(LOG_CATEGORY, \
174 LOGL_DEBUG_CONTENT, ##_fmt)
175 #define log_io(_fmt...) log_nop(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
178 #if CONFIG_IS_ENABLED(LOG)
180 #define _LOG_DEBUG LOGL_FORCE_DEBUG
185 /* Emit a log record if the level is less that the maximum */
186 #define log(_cat, _level, _fmt, _args...) ({ \
188 if (CONFIG_IS_ENABLED(LOG) && \
189 (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL)) \
190 _log((enum log_category_t)(_cat), \
191 (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \
192 __LINE__, __func__, \
193 pr_fmt(_fmt), ##_args); \
196 #define log(_cat, _level, _fmt, _args...)
199 #define log_nop(_cat, _level, _fmt, _args...) ({ \
201 _log_nop((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
202 __func__, pr_fmt(_fmt), ##_args); \
211 #ifdef CONFIG_SPL_BUILD
217 #if !_DEBUG && CONFIG_IS_ENABLED(LOG)
219 #define debug_cond(cond, fmt, args...) \
222 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
228 * Output a debug text when condition "cond" is met. The "cond" should be
229 * computed by a preprocessor in the best case, allowing for the best
232 #define debug_cond(cond, fmt, args...) \
235 printf(pr_fmt(fmt), ##args); \
240 /* Show a message if DEBUG is defined in a file */
241 #define debug(fmt, args...) \
242 debug_cond(_DEBUG, fmt, ##args)
244 /* Show a message if not in SPL */
245 #define warn_non_spl(fmt, args...) \
246 debug_cond(!_SPL_BUILD, fmt, ##args)
249 * An assertion is run-time check done in debug mode only. If DEBUG is not
250 * defined then it is skipped. If DEBUG is defined and the assertion fails,
251 * then it calls panic*( which may or may not reset/halt U-Boot (see
252 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
253 * before release, and after release it is hoped that they don't matter. But
254 * in any case these failing assertions cannot be fixed with a reset (which
255 * may just do the same assertion again).
257 void __assert_fail(const char *assertion, const char *file, unsigned int line,
258 const char *function);
261 * assert() - assert expression is true
263 * If the expression x evaluates to false and _DEBUG evaluates to true, a panic
264 * message is written and the system stalls. The value of _DEBUG is set to true
265 * if DEBUG is defined before including common.h.
267 * The expression x is always executed irrespective of the value of _DEBUG.
269 * @x: expression to test
272 ({ if (!(x) && _DEBUG) \
273 __assert_fail(#x, __FILE__, __LINE__, __func__); })
276 * This one actually gets compiled in even without DEBUG. It doesn't include the
277 * full pathname as it may be huge. Only use this when the user should be
278 * warning, similar to BUG_ON() in linux.
280 * Return: true if assertion succeeded (condition is true), else false
282 #define assert_noisy(x) \
283 ({ bool _val = (x); \
285 __assert_fail(#x, "?", __LINE__, __func__); \
289 #if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN)
291 * Log an error return value, possibly with a message. Usage:
293 * return log_ret(fred_call());
297 * return log_msg_ret("fred failed", fred_call());
299 #define log_ret(_ret) ({ \
300 int __ret = (_ret); \
302 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
305 #define log_msg_ret(_msg, _ret) ({ \
306 int __ret = (_ret); \
308 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
313 /* Non-logging versions of the above which just return the error code */
314 #define log_ret(_ret) (_ret)
315 #define log_msg_ret(_msg, _ret) ((void)(_msg), _ret)
319 * struct log_rec - a single log record
321 * Holds information about a single record in the log
323 * Members marked as 'not allocated' are stored as pointers and the caller is
324 * responsible for making sure that the data pointed to is not overwritten.
325 * Memebers marked as 'allocated' are allocated (e.g. via strdup()) by the log
329 * a single u32 for cat, level, line and force_debug
331 * @cat: Category, representing a uclass or part of U-Boot
332 * @level: Severity level, less severe is higher
333 * @force_debug: Force output of debug
334 * @file: Name of file where the log record was generated (not allocated)
335 * @line: Line number where the log record was generated
336 * @func: Function where the log record was generated (not allocated)
337 * @msg: Log message (allocated)
340 enum log_category_t cat;
341 enum log_level_t level;
351 enum log_device_flags {
352 LOGDF_ENABLE = BIT(0), /* Device is enabled */
356 * struct log_driver - a driver which accepts and processes log records
358 * @name: Name of driver
359 * @emit: Method to call to emit a log record via this device
360 * @flags: Initial value for flags (use LOGDF_ENABLE to enable on start-up)
366 * @emit: emit a log record
368 * Called by the log system to pass a log record to a particular driver
369 * for processing. The filter is checked before calling this function.
371 int (*emit)(struct log_device *ldev, struct log_rec *rec);
372 unsigned short flags;
376 * struct log_device - an instance of a log driver
378 * Since drivers are set up at build-time we need to have a separate device for
379 * the run-time aspects of drivers (currently just a list of filters to apply
380 * to records send to this device).
382 * @next_filter_num: Seqence number of next filter filter added (0=no filters
383 * yet). This increments with each new filter on the device, but never
385 * @flags: Flags for this filter (enum log_device_flags)
386 * @drv: Pointer to driver for this device
387 * @filter_head: List of filters for this device
388 * @sibling_node: Next device in the list of all devices
391 unsigned short next_filter_num;
392 unsigned short flags;
393 struct log_driver *drv;
394 struct list_head filter_head;
395 struct list_head sibling_node;
399 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
403 * enum log_filter_flags - Flags which modify a filter
405 enum log_filter_flags {
406 /** @LOGFF_HAS_CAT: Filter has a category list */
407 LOGFF_HAS_CAT = 1 << 0,
408 /** @LOGFF_DENY: Filter denies matching messages */
410 /** @LOGFF_LEVEL_MIN: Filter's level is a minimum, not a maximum */
411 LOGFF_LEVEL_MIN = 1 << 2,
415 * struct log_filter - criterial to filter out log messages
417 * If a message matches all criteria, then it is allowed. If LOGFF_DENY is set,
418 * then it is denied instead.
420 * @filter_num: Sequence number of this filter. This is returned when adding a
421 * new filter, and must be provided when removing a previously added
423 * @flags: Flags for this filter (``LOGFF_...``)
424 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
425 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
427 * @level: Maximum (or minimum, if %LOGFF_MIN_LEVEL) log level to allow
428 * @file_list: List of files to allow, separated by comma. If NULL then all
429 * files are permitted
430 * @sibling_node: Next filter in the list of filters for this log device
435 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
436 enum log_level_t level;
437 const char *file_list;
438 struct list_head sibling_node;
441 #define LOG_DRIVER(_name) \
442 ll_entry_declare(struct log_driver, _name, log_driver)
444 /* Get a pointer to a given driver */
445 #define LOG_GET_DRIVER(__name) \
446 ll_entry_get(struct log_driver, __name, log_driver)
449 * log_get_cat_name() - Get the name of a category
451 * @cat: Category to look up
452 * Return: category name (which may be a uclass driver name) if found, or
453 * "<invalid>" if invalid, or "<missing>" if not found. All error
454 * responses begin with '<'.
456 const char *log_get_cat_name(enum log_category_t cat);
459 * log_get_cat_by_name() - Look up a category by name
461 * @name: Name to look up
462 * Return: Category, or %LOGC_NONE if not found
464 enum log_category_t log_get_cat_by_name(const char *name);
467 * log_get_level_name() - Get the name of a log level
469 * @level: Log level to look up
470 * Return: Log level name (in ALL CAPS)
472 const char *log_get_level_name(enum log_level_t level);
475 * log_get_level_by_name() - Look up a log level by name
477 * @name: Name to look up
478 * Return: Log level, or %LOGL_NONE if not found
480 enum log_level_t log_get_level_by_name(const char *name);
483 * log_device_find_by_name() - Look up a log device by its driver's name
485 * @drv_name: Name of the driver
486 * Return: the log device, or %NULL if not found
488 struct log_device *log_device_find_by_name(const char *drv_name);
491 * log_has_cat() - check if a log category exists within a list
493 * @cat_list: List of categories to check, at most %LOGF_MAX_CATEGORIES entries
494 * long, terminated by %LC_END if fewer
495 * @cat: Category to search for
497 * Return: ``true`` if @cat is in @cat_list, else ``false``
499 bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat);
502 * log_has_file() - check if a file is with a list
504 * @file_list: List of files to check, separated by comma
505 * @file: File to check for. This string is matched against the end of each
506 * file in the list, i.e. ignoring any preceding path. The list is
507 * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c
509 * Return: ``true`` if @file is in @file_list, else ``false``
511 bool log_has_file(const char *file_list, const char *file);
513 /* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
526 /* Handle the 'log test' command */
527 int do_log_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
530 * log_add_filter_flags() - Add a new filter to a log device, specifying flags
532 * @drv_name: Driver name to add the filter to (since each driver only has a
534 * @flags: Flags for this filter (``LOGFF_...``)
535 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
536 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
538 * @level: Maximum (or minimum, if %LOGFF_LEVEL_MIN) log level to allow
539 * @file_list: List of files to allow, separated by comma. If NULL then all
540 * files are permitted
542 * the sequence number of the new filter (>=0) if the filter was added, or a
545 int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[],
546 enum log_level_t level, const char *file_list,
550 * log_add_filter() - Add a new filter to a log device
552 * @drv_name: Driver name to add the filter to (since each driver only has a
554 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
555 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
557 * @max_level: Maximum log level to allow
558 * @file_list: List of files to allow, separated by comma. If %NULL then all
559 * files are permitted
561 * the sequence number of the new filter (>=0) if the filter was added, or a
564 static inline int log_add_filter(const char *drv_name,
565 enum log_category_t cat_list[],
566 enum log_level_t max_level,
567 const char *file_list)
569 return log_add_filter_flags(drv_name, cat_list, max_level, file_list,
574 * log_remove_filter() - Remove a filter from a log device
576 * @drv_name: Driver name to remove the filter from (since each driver only has
578 * @filter_num: Filter number to remove (as returned by log_add_filter())
580 * 0 if the filter was removed, -%ENOENT if either the driver or the filter
581 * number was not found
583 int log_remove_filter(const char *drv_name, int filter_num);
586 * log_device_set_enable() - Enable or disable a log device
588 * Devices are referenced by their driver, so use LOG_GET_DRIVER(name) to pass
589 * the driver to this function. For example if the driver is declared with
590 * LOG_DRIVER(wibble) then pass LOG_GET_DRIVER(wibble) here.
592 * @drv: Driver of device to enable
593 * @enable: true to enable, false to disable
594 * @return 0 if OK, -ENOENT if the driver was not found
596 int log_device_set_enable(struct log_driver *drv, bool enable);
598 #if CONFIG_IS_ENABLED(LOG)
600 * log_init() - Set up the log system ready for use
602 * Return: 0 if OK, -%ENOMEM if out of memory
606 static inline int log_init(void)
613 * log_get_default_format() - get default log format
615 * The default log format is configurable via
616 * %CONFIG_LOGF_FILE, %CONFIG_LOGF_LINE, and %CONFIG_LOGF_FUNC.
618 * Return: default log format
620 static inline int log_get_default_format(void)
622 return BIT(LOGF_MSG) |
623 (IS_ENABLED(CONFIG_LOGF_FILE) ? BIT(LOGF_FILE) : 0) |
624 (IS_ENABLED(CONFIG_LOGF_LINE) ? BIT(LOGF_LINE) : 0) |
625 (IS_ENABLED(CONFIG_LOGF_FUNC) ? BIT(LOGF_FUNC) : 0);