1 /* SPDX-License-Identifier: GPL-2.0+ */
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
12 #include <dm/uclass-id.h>
13 #include <linux/list.h>
15 /** Log levels supported, ranging from most to least important */
17 LOGL_EMERG = 0, /*U-Boot is unstable */
18 LOGL_ALERT, /* Action must be taken immediately */
19 LOGL_CRIT, /* Critical conditions */
20 LOGL_ERR, /* Error that prevents something from working */
21 LOGL_WARNING, /* Warning may prevent optimial operation */
22 LOGL_NOTICE, /* Normal but significant condition, printf() */
23 LOGL_INFO, /* General information message */
24 LOGL_DEBUG, /* Basic debug-level message */
25 LOGL_DEBUG_CONTENT, /* Debug message showing full message content */
26 LOGL_DEBUG_IO, /* Debug message showing hardware I/O access */
31 LOGL_FIRST = LOGL_EMERG,
32 LOGL_MAX = LOGL_DEBUG_IO,
36 * Log categories supported. Most of these correspond to uclasses (i.e.
37 * enum uclass_id) but there are also some more generic categories
40 LOGC_FIRST = 0, /* First part mirrors UCLASS_... */
42 LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */
43 LOGC_ARCH, /* Related to arch-specific code */
44 LOGC_BOARD, /* Related to board-specific code */
45 LOGC_CORE, /* Related to core features (non-driver-model) */
46 LOGC_DM, /* Core driver-model */
47 LOGC_DT, /* Device-tree */
48 LOGC_EFI, /* EFI implementation */
49 LOGC_ALLOC, /* Memory allocation */
51 LOGC_COUNT, /* Number of log categories */
52 LOGC_END, /* Sentinel value for a list of log categories */
55 /* Helper to cast a uclass ID to a log category */
56 static inline int log_uc_cat(enum uclass_id id)
58 return (enum log_category_t)id;
62 * _log() - Internal function to emit a new log record
64 * @cat: Category of log record (indicating which subsystem generated it)
65 * @level: Level of log record (indicating its severity)
66 * @file: File name of file where log record was generated
67 * @line: Line number in file where log record was generated
68 * @func: Function where log record was generated
69 * @fmt: printf() format string for log record
70 * @...: Optional parameters, according to the format string @fmt
71 * @return 0 if log record was emitted, -ve on error
73 int _log(enum log_category_t cat, enum log_level_t level, const char *file,
74 int line, const char *func, const char *fmt, ...);
76 /* Define this at the top of a file to add a prefix to debug messages */
78 #define pr_fmt(fmt) fmt
81 /* Use a default category if this file does not supply one */
83 #define LOG_CATEGORY LOGC_NONE
87 * This header may be including when CONFIG_LOG is disabled, in which case
88 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
90 #if CONFIG_IS_ENABLED(LOG)
91 #define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
92 #define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
93 #define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
94 #define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
95 #define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
96 #define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
97 #define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
98 #define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
100 #define _LOG_MAX_LEVEL LOGL_INFO
101 #define log_err(_fmt...)
102 #define log_warning(_fmt...)
103 #define log_notice(_fmt...)
104 #define log_info(_fmt...)
105 #define log_debug(_fmt...)
106 #define log_content(_fmt...)
107 #define log_io(_fmt...)
110 /* Emit a log record if the level is less that the maximum */
111 #define log(_cat, _level, _fmt, _args...) ({ \
113 if (_l <= _LOG_MAX_LEVEL) \
114 _log((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
116 pr_fmt(_fmt), ##_args); \
125 #ifdef CONFIG_SPL_BUILD
131 #if !_DEBUG && CONFIG_IS_ENABLED(LOG)
133 #define debug_cond(cond, fmt, args...) \
136 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
142 * Output a debug text when condition "cond" is met. The "cond" should be
143 * computed by a preprocessor in the best case, allowing for the best
146 #define debug_cond(cond, fmt, args...) \
149 printf(pr_fmt(fmt), ##args); \
154 /* Show a message if DEBUG is defined in a file */
155 #define debug(fmt, args...) \
156 debug_cond(_DEBUG, fmt, ##args)
158 /* Show a message if not in SPL */
159 #define warn_non_spl(fmt, args...) \
160 debug_cond(!_SPL_BUILD, fmt, ##args)
163 * An assertion is run-time check done in debug mode only. If DEBUG is not
164 * defined then it is skipped. If DEBUG is defined and the assertion fails,
165 * then it calls panic*( which may or may not reset/halt U-Boot (see
166 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
167 * before release, and after release it is hoped that they don't matter. But
168 * in any case these failing assertions cannot be fixed with a reset (which
169 * may just do the same assertion again).
171 void __assert_fail(const char *assertion, const char *file, unsigned int line,
172 const char *function);
174 ({ if (!(x) && _DEBUG) \
175 __assert_fail(#x, __FILE__, __LINE__, __func__); })
177 #ifdef CONFIG_LOG_ERROR_RETURN
178 #define log_ret(_ret) ({ \
179 int __ret = (_ret); \
181 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
184 #define log_msg_ret(_msg, _ret) ({ \
185 int __ret = (_ret); \
187 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
192 #define log_ret(_ret) (_ret)
193 #define log_msg_ret(_msg, _ret) (_ret)
197 * struct log_rec - a single log record
199 * Holds information about a single record in the log
201 * Members marked as 'not allocated' are stored as pointers and the caller is
202 * responsible for making sure that the data pointed to is not overwritten.
203 * Memebers marked as 'allocated' are allocated (e.g. via strdup()) by the log
206 * @cat: Category, representing a uclass or part of U-Boot
207 * @level: Severity level, less severe is higher
208 * @file: Name of file where the log record was generated (not allocated)
209 * @line: Line number where the log record was generated
210 * @func: Function where the log record was generated (not allocated)
211 * @msg: Log message (allocated)
214 enum log_category_t cat;
215 enum log_level_t level;
225 * struct log_driver - a driver which accepts and processes log records
227 * @name: Name of driver
232 * emit() - emit a log record
234 * Called by the log system to pass a log record to a particular driver
235 * for processing. The filter is checked before calling this function.
237 int (*emit)(struct log_device *ldev, struct log_rec *rec);
241 * struct log_device - an instance of a log driver
243 * Since drivers are set up at build-time we need to have a separate device for
244 * the run-time aspects of drivers (currently just a list of filters to apply
245 * to records send to this device).
247 * @next_filter_num: Seqence number of next filter filter added (0=no filters
248 * yet). This increments with each new filter on the device, but never
250 * @drv: Pointer to driver for this device
251 * @filter_head: List of filters for this device
252 * @sibling_node: Next device in the list of all devices
256 struct log_driver *drv;
257 struct list_head filter_head;
258 struct list_head sibling_node;
262 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
265 enum log_filter_flags {
266 LOGFF_HAS_CAT = 1 << 0, /* Filter has a category list */
270 * struct log_filter - criterial to filter out log messages
272 * @filter_num: Sequence number of this filter. This is returned when adding a
273 * new filter, and must be provided when removing a previously added
275 * @flags: Flags for this filter (LOGFF_...)
276 * @cat_list: List of categories to allow (terminated by LOGC_none). If empty
277 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
279 * @max_level: Maximum log level to allow
280 * @file_list: List of files to allow, separated by comma. If NULL then all
281 * files are permitted
282 * @sibling_node: Next filter in the list of filters for this log device
287 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
288 enum log_level_t max_level;
289 const char *file_list;
290 struct list_head sibling_node;
293 #define LOG_DRIVER(_name) \
294 ll_entry_declare(struct log_driver, _name, log_driver)
297 * log_get_cat_name() - Get the name of a category
299 * @cat: Category to look up
300 * @return category name (which may be a uclass driver name) if found, or
301 * "<invalid>" if invalid, or "<missing>" if not found
303 const char *log_get_cat_name(enum log_category_t cat);
306 * log_get_cat_by_name() - Look up a category by name
308 * @name: Name to look up
309 * @return category ID, or LOGC_NONE if not found
311 enum log_category_t log_get_cat_by_name(const char *name);
314 * log_get_level_name() - Get the name of a log level
316 * @level: Log level to look up
317 * @return log level name (in ALL CAPS)
319 const char *log_get_level_name(enum log_level_t level);
322 * log_get_level_by_name() - Look up a log level by name
324 * @name: Name to look up
325 * @return log level ID, or LOGL_NONE if not found
327 enum log_level_t log_get_level_by_name(const char *name);
329 /* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
339 LOGF_DEFAULT = (1 << LOGF_FUNC) | (1 << LOGF_MSG),
343 /* Handle the 'log test' command */
344 int do_log_test(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
347 * log_add_filter() - Add a new filter to a log device
349 * @drv_name: Driver name to add the filter to (since each driver only has a
351 * @cat_list: List of categories to allow (terminated by LOGC_none). If empty
352 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
354 * @max_level: Maximum log level to allow
355 * @file_list: List of files to allow, separated by comma. If NULL then all
356 * files are permitted
357 * @return the sequence number of the new filter (>=0) if the filter was added,
358 * or a -ve value on error
360 int log_add_filter(const char *drv_name, enum log_category_t cat_list[],
361 enum log_level_t max_level, const char *file_list);
364 * log_remove_filter() - Remove a filter from a log device
366 * @drv_name: Driver name to remove the filter from (since each driver only has
368 * @filter_num: Filter number to remove (as returned by log_add_filter())
369 * @return 0 if the filter was removed, -ENOENT if either the driver or the
370 * filter number was not found
372 int log_remove_filter(const char *drv_name, int filter_num);
374 #if CONFIG_IS_ENABLED(LOG)
376 * log_init() - Set up the log system ready for use
378 * @return 0 if OK, -ENOMEM if out of memory
382 static inline int log_init(void)