blob: 94ac729d9c3e4bef7fff2b3390c808fc0fe0b7a9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass0e98b0a2017-12-04 13:48:20 -07002/*
3 * Logging support
4 *
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
Simon Glass0e98b0a2017-12-04 13:48:20 -07007 */
8
9#ifndef __LOG_H
10#define __LOG_H
11
Simon Glass90526e92020-05-10 11:39:56 -060012#include <stdio.h>
Simon Glass09140112020-05-10 11:40:03 -060013#include <linker_lists.h>
Simon Glasse9c8d492017-12-04 13:48:24 -070014#include <dm/uclass-id.h>
Heinrich Schuchardt3c21d772020-06-17 21:52:44 +020015#include <linux/bitops.h>
Simon Glasse9c8d492017-12-04 13:48:24 -070016#include <linux/list.h>
17
Simon Glass09140112020-05-10 11:40:03 -060018struct cmd_tbl;
19
Simon Glasse9c8d492017-12-04 13:48:24 -070020/** Log levels supported, ranging from most to least important */
21enum log_level_t {
Simon Glass6fc7e932019-02-16 20:24:34 -070022 LOGL_EMERG = 0, /* U-Boot is unstable */
Simon Glasse9c8d492017-12-04 13:48:24 -070023 LOGL_ALERT, /* Action must be taken immediately */
24 LOGL_CRIT, /* Critical conditions */
25 LOGL_ERR, /* Error that prevents something from working */
26 LOGL_WARNING, /* Warning may prevent optimial operation */
27 LOGL_NOTICE, /* Normal but significant condition, printf() */
28 LOGL_INFO, /* General information message */
29 LOGL_DEBUG, /* Basic debug-level message */
30 LOGL_DEBUG_CONTENT, /* Debug message showing full message content */
31 LOGL_DEBUG_IO, /* Debug message showing hardware I/O access */
32
33 LOGL_COUNT,
Simon Glassf941c8d2017-12-28 13:14:16 -070034 LOGL_NONE,
35
Simon Glass52d3df72020-09-12 11:13:34 -060036 LOGL_LEVEL_MASK = 0xf, /* Mask for valid log levels */
37 LOGL_FORCE_DEBUG = 0x10, /* Mask to force output due to LOG_DEBUG */
38
Simon Glasse9c8d492017-12-04 13:48:24 -070039 LOGL_FIRST = LOGL_EMERG,
Simon Glassf941c8d2017-12-28 13:14:16 -070040 LOGL_MAX = LOGL_DEBUG_IO,
Heinrich Schuchardtd094a072020-10-17 14:31:58 +020041 LOGL_CONT = -1, /* Use same log level as in previous call */
Simon Glasse9c8d492017-12-04 13:48:24 -070042};
43
44/**
45 * Log categories supported. Most of these correspond to uclasses (i.e.
Simon Glass80212962020-09-27 18:46:13 -060046 * enum uclass_id) but there are also some more generic categories.
47 *
48 * Remember to update log_cat_name[] after adding a new category.
Simon Glasse9c8d492017-12-04 13:48:24 -070049 */
50enum log_category_t {
51 LOGC_FIRST = 0, /* First part mirrors UCLASS_... */
52
Simon Glass0bf96452018-10-01 12:22:32 -060053 LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */
54 LOGC_ARCH, /* Related to arch-specific code */
55 LOGC_BOARD, /* Related to board-specific code */
56 LOGC_CORE, /* Related to core features (non-driver-model) */
Simon Glassf941c8d2017-12-28 13:14:16 -070057 LOGC_DM, /* Core driver-model */
58 LOGC_DT, /* Device-tree */
Heinrich Schuchardtd8d89972018-03-23 21:12:17 +010059 LOGC_EFI, /* EFI implementation */
Simon Glassc3aed5d2018-10-01 11:55:13 -060060 LOGC_ALLOC, /* Memory allocation */
Simon Glassa5c13b62018-11-06 15:21:24 -070061 LOGC_SANDBOX, /* Related to the sandbox board */
Simon Glass9f407d42018-11-15 18:43:50 -070062 LOGC_BLOBLIST, /* Bloblist */
Simon Glasscce61fc2019-12-29 21:19:24 -070063 LOGC_DEVRES, /* Device resources (devres_... functions) */
Simon Glass7ca28502020-04-09 10:27:38 -060064 /* Advanced Configuration and Power Interface (ACPI) */
65 LOGC_ACPI,
Simon Glasse9c8d492017-12-04 13:48:24 -070066
Simon Glass0bf96452018-10-01 12:22:32 -060067 LOGC_COUNT, /* Number of log categories */
68 LOGC_END, /* Sentinel value for a list of log categories */
Heinrich Schuchardtd094a072020-10-17 14:31:58 +020069 LOGC_CONT = -1, /* Use same category as in previous call */
Simon Glasse9c8d492017-12-04 13:48:24 -070070};
71
72/* Helper to cast a uclass ID to a log category */
73static inline int log_uc_cat(enum uclass_id id)
74{
75 return (enum log_category_t)id;
76}
77
78/**
79 * _log() - Internal function to emit a new log record
80 *
81 * @cat: Category of log record (indicating which subsystem generated it)
82 * @level: Level of log record (indicating its severity)
83 * @file: File name of file where log record was generated
84 * @line: Line number in file where log record was generated
85 * @func: Function where log record was generated
86 * @fmt: printf() format string for log record
87 * @...: Optional parameters, according to the format string @fmt
88 * @return 0 if log record was emitted, -ve on error
89 */
90int _log(enum log_category_t cat, enum log_level_t level, const char *file,
Simon Glassed4e9332019-01-07 16:44:19 -070091 int line, const char *func, const char *fmt, ...)
92 __attribute__ ((format (__printf__, 6, 7)));
Simon Glasse9c8d492017-12-04 13:48:24 -070093
Simon Glassfd429482019-09-25 08:56:23 -060094static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
95 const char *file, int line, const char *func,
96 const char *fmt, ...)
97 __attribute__ ((format (__printf__, 6, 7)));
98
99static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
100 const char *file, int line, const char *func,
101 const char *fmt, ...)
102{
103 return 0;
104}
105
Simon Glasse9c8d492017-12-04 13:48:24 -0700106/* Define this at the top of a file to add a prefix to debug messages */
107#ifndef pr_fmt
108#define pr_fmt(fmt) fmt
109#endif
110
111/* Use a default category if this file does not supply one */
112#ifndef LOG_CATEGORY
113#define LOG_CATEGORY LOGC_NONE
114#endif
115
116/*
117 * This header may be including when CONFIG_LOG is disabled, in which case
118 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
119 */
120#if CONFIG_IS_ENABLED(LOG)
121#define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
Simon Glasscdd140a2018-10-01 11:55:06 -0600122#define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
123#define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
124#define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
125#define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
126#define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
127#define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
128#define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700129#else
130#define _LOG_MAX_LEVEL LOGL_INFO
Heinrich Schuchardt20fd2562020-02-26 21:48:17 +0100131#define log_err(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
132#define log_warning(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
133#define log_notice(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
134#define log_info(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
135#define log_debug(_fmt, ...) debug(_fmt, ##__VA_ARGS__)
Simon Glassfd429482019-09-25 08:56:23 -0600136#define log_content(_fmt...) log_nop(LOG_CATEGORY, \
137 LOGL_DEBUG_CONTENT, ##_fmt)
138#define log_io(_fmt...) log_nop(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700139#endif
140
Simon Glass4d8d3052018-11-15 18:43:49 -0700141#if CONFIG_IS_ENABLED(LOG)
Simon Glassf9811e82019-02-16 20:24:37 -0700142#ifdef LOG_DEBUG
Simon Glass52d3df72020-09-12 11:13:34 -0600143#define _LOG_DEBUG LOGL_FORCE_DEBUG
Simon Glassf9811e82019-02-16 20:24:37 -0700144#else
145#define _LOG_DEBUG 0
146#endif
Simon Glass4d8d3052018-11-15 18:43:49 -0700147
Simon Glasse9c8d492017-12-04 13:48:24 -0700148/* Emit a log record if the level is less that the maximum */
149#define log(_cat, _level, _fmt, _args...) ({ \
150 int _l = _level; \
Simon Glass52d3df72020-09-12 11:13:34 -0600151 if (CONFIG_IS_ENABLED(LOG) && \
152 (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL)) \
153 _log((enum log_category_t)(_cat), \
154 (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \
155 __LINE__, __func__, \
Simon Glasse9c8d492017-12-04 13:48:24 -0700156 pr_fmt(_fmt), ##_args); \
157 })
Simon Glass4d8d3052018-11-15 18:43:49 -0700158#else
159#define log(_cat, _level, _fmt, _args...)
160#endif
Simon Glasse9c8d492017-12-04 13:48:24 -0700161
Simon Glassfd429482019-09-25 08:56:23 -0600162#define log_nop(_cat, _level, _fmt, _args...) ({ \
163 int _l = _level; \
164 _log_nop((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
165 __func__, pr_fmt(_fmt), ##_args); \
166})
167
Simon Glass0e98b0a2017-12-04 13:48:20 -0700168#ifdef DEBUG
169#define _DEBUG 1
170#else
171#define _DEBUG 0
172#endif
173
174#ifdef CONFIG_SPL_BUILD
175#define _SPL_BUILD 1
176#else
177#define _SPL_BUILD 0
178#endif
179
Simon Glasse9c8d492017-12-04 13:48:24 -0700180#if !_DEBUG && CONFIG_IS_ENABLED(LOG)
181
182#define debug_cond(cond, fmt, args...) \
183 do { \
184 if (1) \
185 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
186 } while (0)
187
188#else /* _DEBUG */
189
Simon Glass0e98b0a2017-12-04 13:48:20 -0700190/*
191 * Output a debug text when condition "cond" is met. The "cond" should be
192 * computed by a preprocessor in the best case, allowing for the best
193 * optimization.
194 */
195#define debug_cond(cond, fmt, args...) \
196 do { \
197 if (cond) \
198 printf(pr_fmt(fmt), ##args); \
199 } while (0)
200
Simon Glasse9c8d492017-12-04 13:48:24 -0700201#endif /* _DEBUG */
202
Simon Glass0e98b0a2017-12-04 13:48:20 -0700203/* Show a message if DEBUG is defined in a file */
204#define debug(fmt, args...) \
205 debug_cond(_DEBUG, fmt, ##args)
206
207/* Show a message if not in SPL */
208#define warn_non_spl(fmt, args...) \
209 debug_cond(!_SPL_BUILD, fmt, ##args)
210
211/*
212 * An assertion is run-time check done in debug mode only. If DEBUG is not
213 * defined then it is skipped. If DEBUG is defined and the assertion fails,
214 * then it calls panic*( which may or may not reset/halt U-Boot (see
215 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
216 * before release, and after release it is hoped that they don't matter. But
217 * in any case these failing assertions cannot be fixed with a reset (which
218 * may just do the same assertion again).
219 */
220void __assert_fail(const char *assertion, const char *file, unsigned int line,
221 const char *function);
Heinrich Schuchardtb236f8c2019-07-27 20:21:06 +0200222
223/**
224 * assert() - assert expression is true
225 *
226 * If the expression x evaluates to false and _DEBUG evaluates to true, a panic
227 * message is written and the system stalls. The value of _DEBUG is set to true
228 * if DEBUG is defined before including common.h.
229 *
230 * The expression x is always executed irrespective of the value of _DEBUG.
231 *
232 * @x: expression to test
233 */
Simon Glass0e98b0a2017-12-04 13:48:20 -0700234#define assert(x) \
235 ({ if (!(x) && _DEBUG) \
236 __assert_fail(#x, __FILE__, __LINE__, __func__); })
237
Simon Glasscd01d2d2019-12-29 21:19:10 -0700238/*
239 * This one actually gets compiled in even without DEBUG. It doesn't include the
240 * full pathname as it may be huge. Only use this when the user should be
241 * warning, similar to BUG_ON() in linux.
242 *
243 * @return true if assertion succeeded (condition is true), else false
244 */
245#define assert_noisy(x) \
246 ({ bool _val = (x); \
247 if (!_val) \
248 __assert_fail(#x, "?", __LINE__, __func__); \
249 _val; \
250 })
251
Simon Glass4d8d3052018-11-15 18:43:49 -0700252#if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN)
253/*
254 * Log an error return value, possibly with a message. Usage:
255 *
256 * return log_ret(fred_call());
257 *
258 * or:
259 *
260 * return log_msg_ret("fred failed", fred_call());
261 */
Simon Glass3707c6e2017-12-28 13:14:23 -0700262#define log_ret(_ret) ({ \
263 int __ret = (_ret); \
264 if (__ret < 0) \
265 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
266 __ret; \
267 })
Simon Glassb616cef2018-06-11 13:07:14 -0600268#define log_msg_ret(_msg, _ret) ({ \
269 int __ret = (_ret); \
270 if (__ret < 0) \
271 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
272 __ret); \
273 __ret; \
274 })
Simon Glass3707c6e2017-12-28 13:14:23 -0700275#else
Simon Glass4d8d3052018-11-15 18:43:49 -0700276/* Non-logging versions of the above which just return the error code */
Simon Glass3707c6e2017-12-28 13:14:23 -0700277#define log_ret(_ret) (_ret)
Simon Glass4d8d3052018-11-15 18:43:49 -0700278#define log_msg_ret(_msg, _ret) ((void)(_msg), _ret)
Simon Glass3707c6e2017-12-28 13:14:23 -0700279#endif
280
Simon Glasse9c8d492017-12-04 13:48:24 -0700281/**
282 * struct log_rec - a single log record
283 *
284 * Holds information about a single record in the log
285 *
286 * Members marked as 'not allocated' are stored as pointers and the caller is
287 * responsible for making sure that the data pointed to is not overwritten.
288 * Memebers marked as 'allocated' are allocated (e.g. via strdup()) by the log
289 * system.
290 *
Simon Glass52d3df72020-09-12 11:13:34 -0600291 * TODO(sjg@chromium.org): Compress this struct down a bit to reduce space, e.g.
292 * a single u32 for cat, level, line and force_debug
293 *
Simon Glasse9c8d492017-12-04 13:48:24 -0700294 * @cat: Category, representing a uclass or part of U-Boot
295 * @level: Severity level, less severe is higher
Simon Glass52d3df72020-09-12 11:13:34 -0600296 * @force_debug: Force output of debug
Simon Glasse9c8d492017-12-04 13:48:24 -0700297 * @file: Name of file where the log record was generated (not allocated)
298 * @line: Line number where the log record was generated
299 * @func: Function where the log record was generated (not allocated)
300 * @msg: Log message (allocated)
301 */
302struct log_rec {
303 enum log_category_t cat;
304 enum log_level_t level;
Simon Glass52d3df72020-09-12 11:13:34 -0600305 bool force_debug;
Simon Glasse9c8d492017-12-04 13:48:24 -0700306 const char *file;
307 int line;
308 const char *func;
309 const char *msg;
310};
311
312struct log_device;
313
Simon Glassb4520302020-09-12 12:28:47 -0600314enum log_device_flags {
315 LOGDF_ENABLE = BIT(0), /* Device is enabled */
316};
317
Simon Glasse9c8d492017-12-04 13:48:24 -0700318/**
319 * struct log_driver - a driver which accepts and processes log records
320 *
321 * @name: Name of driver
Simon Glassb4520302020-09-12 12:28:47 -0600322 * @emit: Method to call to emit a log record via this device
323 * @flags: Initial value for flags (use LOGDF_ENABLE to enable on start-up)
Simon Glasse9c8d492017-12-04 13:48:24 -0700324 */
325struct log_driver {
326 const char *name;
327 /**
328 * emit() - emit a log record
329 *
330 * Called by the log system to pass a log record to a particular driver
331 * for processing. The filter is checked before calling this function.
332 */
333 int (*emit)(struct log_device *ldev, struct log_rec *rec);
Simon Glassb4520302020-09-12 12:28:47 -0600334 unsigned short flags;
Simon Glasse9c8d492017-12-04 13:48:24 -0700335};
336
337/**
338 * struct log_device - an instance of a log driver
339 *
340 * Since drivers are set up at build-time we need to have a separate device for
341 * the run-time aspects of drivers (currently just a list of filters to apply
342 * to records send to this device).
343 *
344 * @next_filter_num: Seqence number of next filter filter added (0=no filters
345 * yet). This increments with each new filter on the device, but never
346 * decrements
Simon Glassb4520302020-09-12 12:28:47 -0600347 * @flags: Flags for this filter (enum log_device_flags)
Simon Glasse9c8d492017-12-04 13:48:24 -0700348 * @drv: Pointer to driver for this device
349 * @filter_head: List of filters for this device
350 * @sibling_node: Next device in the list of all devices
351 */
352struct log_device {
Simon Glassb4520302020-09-12 12:28:47 -0600353 unsigned short next_filter_num;
354 unsigned short flags;
Simon Glasse9c8d492017-12-04 13:48:24 -0700355 struct log_driver *drv;
356 struct list_head filter_head;
357 struct list_head sibling_node;
358};
359
360enum {
361 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
362};
363
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400364/**
365 * enum log_filter_flags - Flags which modify a filter
366 */
Simon Glasse9c8d492017-12-04 13:48:24 -0700367enum log_filter_flags {
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400368 /** @LOGFF_HAS_CAT: Filter has a category list */
369 LOGFF_HAS_CAT = 1 << 0,
370 /** @LOGFF_DENY: Filter denies matching messages */
371 LOGFF_DENY = 1 << 1,
Sean Anderson40455a62020-10-27 19:55:30 -0400372 /** @LOGFF_LEVEL_MIN: Filter's level is a minimum, not a maximum */
373 LOGFF_LEVEL_MIN = 1 << 2,
Simon Glasse9c8d492017-12-04 13:48:24 -0700374};
375
376/**
377 * struct log_filter - criterial to filter out log messages
378 *
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400379 * If a message matches all criteria, then it is allowed. If LOGFF_DENY is set,
380 * then it is denied instead.
381 *
Simon Glasse9c8d492017-12-04 13:48:24 -0700382 * @filter_num: Sequence number of this filter. This is returned when adding a
383 * new filter, and must be provided when removing a previously added
384 * filter.
385 * @flags: Flags for this filter (LOGFF_...)
Sean Andersonb66a9242020-10-27 19:55:21 -0400386 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
Simon Glasse9c8d492017-12-04 13:48:24 -0700387 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
388 * can be provided
Sean Anderson40455a62020-10-27 19:55:30 -0400389 * @level: Maximum (or minimum, if LOGFF_MIN_LEVEL) log level to allow
Simon Glasse9c8d492017-12-04 13:48:24 -0700390 * @file_list: List of files to allow, separated by comma. If NULL then all
391 * files are permitted
392 * @sibling_node: Next filter in the list of filters for this log device
393 */
394struct log_filter {
395 int filter_num;
396 int flags;
397 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
Sean Anderson40455a62020-10-27 19:55:30 -0400398 enum log_level_t level;
Simon Glasse9c8d492017-12-04 13:48:24 -0700399 const char *file_list;
400 struct list_head sibling_node;
401};
402
403#define LOG_DRIVER(_name) \
404 ll_entry_declare(struct log_driver, _name, log_driver)
405
Simon Glass3d03ab62020-09-12 12:28:49 -0600406/* Get a pointer to a given driver */
407#define LOG_GET_DRIVER(__name) \
408 ll_entry_get(struct log_driver, __name, log_driver)
409
Simon Glassf941c8d2017-12-28 13:14:16 -0700410/**
411 * log_get_cat_name() - Get the name of a category
412 *
413 * @cat: Category to look up
Simon Glassc2e4e7e2018-06-12 00:04:55 -0600414 * @return category name (which may be a uclass driver name) if found, or
415 * "<invalid>" if invalid, or "<missing>" if not found
Simon Glassf941c8d2017-12-28 13:14:16 -0700416 */
417const char *log_get_cat_name(enum log_category_t cat);
418
419/**
420 * log_get_cat_by_name() - Look up a category by name
421 *
422 * @name: Name to look up
423 * @return category ID, or LOGC_NONE if not found
424 */
425enum log_category_t log_get_cat_by_name(const char *name);
426
427/**
428 * log_get_level_name() - Get the name of a log level
429 *
430 * @level: Log level to look up
431 * @return log level name (in ALL CAPS)
432 */
433const char *log_get_level_name(enum log_level_t level);
434
435/**
436 * log_get_level_by_name() - Look up a log level by name
437 *
438 * @name: Name to look up
439 * @return log level ID, or LOGL_NONE if not found
440 */
441enum log_level_t log_get_level_by_name(const char *name);
442
Sean Anderson3102c1d2020-10-27 19:55:24 -0400443/**
444 * log_device_find_by_name() - Look up a log device by its driver's name
445 *
446 * @drv_name: Name of the driver
447 * @return the log device, or NULL if not found
448 */
449struct log_device *log_device_find_by_name(const char *drv_name);
450
451/**
452 * log_has_cat() - check if a log category exists within a list
453 *
454 * @cat_list: List of categories to check, at most %LOGF_MAX_CATEGORIES entries
455 * long, terminated by %LC_END if fewer
456 * @cat: Category to search for
457 *
458 * Return: ``true`` if @cat is in @cat_list, else ``false``
459 */
460bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat);
461
462/**
463 * log_has_file() - check if a file is with a list
464 *
465 * @file_list: List of files to check, separated by comma
466 * @file: File to check for. This string is matched against the end of each
467 * file in the list, i.e. ignoring any preceding path. The list is
468 * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c
469 *
470 * Return: ``true`` if @file is in @file_list, else ``false``
471 */
472bool log_has_file(const char *file_list, const char *file);
473
Simon Glass3b73e8d2017-12-28 13:14:17 -0700474/* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
475enum log_fmt {
476 LOGF_CAT = 0,
477 LOGF_LEVEL,
478 LOGF_FILE,
479 LOGF_LINE,
480 LOGF_FUNC,
481 LOGF_MSG,
482
483 LOGF_COUNT,
Simon Glass3b73e8d2017-12-28 13:14:17 -0700484 LOGF_ALL = 0x3f,
485};
486
Simon Glassef11ed82017-12-04 13:48:27 -0700487/* Handle the 'log test' command */
Simon Glass09140112020-05-10 11:40:03 -0600488int do_log_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glassef11ed82017-12-04 13:48:27 -0700489
Simon Glasse9c8d492017-12-04 13:48:24 -0700490/**
Sean Andersona02f84e2020-10-27 19:55:25 -0400491 * log_add_filter_flags() - Add a new filter to a log device, specifying flags
492 *
493 * @drv_name: Driver name to add the filter to (since each driver only has a
494 * single device)
495 * @flags: Flags for this filter (LOGFF_...)
496 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
497 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
498 * can be provided
Sean Anderson40455a62020-10-27 19:55:30 -0400499 * @level: Maximum (or minimum, if LOGFF_LEVEL_MIN) log level to allow
Sean Andersona02f84e2020-10-27 19:55:25 -0400500 * @file_list: List of files to allow, separated by comma. If NULL then all
501 * files are permitted
502 * @return the sequence number of the new filter (>=0) if the filter was added,
503 * or a -ve value on error
504 */
505int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[],
Sean Anderson40455a62020-10-27 19:55:30 -0400506 enum log_level_t level, const char *file_list,
Sean Andersona02f84e2020-10-27 19:55:25 -0400507 int flags);
508
509/**
Simon Glasse9c8d492017-12-04 13:48:24 -0700510 * log_add_filter() - Add a new filter to a log device
511 *
512 * @drv_name: Driver name to add the filter to (since each driver only has a
513 * single device)
Sean Andersonb66a9242020-10-27 19:55:21 -0400514 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
Simon Glasse9c8d492017-12-04 13:48:24 -0700515 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
516 * can be provided
517 * @max_level: Maximum log level to allow
518 * @file_list: List of files to allow, separated by comma. If NULL then all
519 * files are permitted
520 * @return the sequence number of the new filter (>=0) if the filter was added,
521 * or a -ve value on error
522 */
Sean Andersona02f84e2020-10-27 19:55:25 -0400523static inline int log_add_filter(const char *drv_name,
524 enum log_category_t cat_list[],
525 enum log_level_t max_level,
526 const char *file_list)
527{
528 return log_add_filter_flags(drv_name, cat_list, max_level, file_list,
529 0);
530}
Simon Glasse9c8d492017-12-04 13:48:24 -0700531
532/**
533 * log_remove_filter() - Remove a filter from a log device
534 *
535 * @drv_name: Driver name to remove the filter from (since each driver only has
536 * a single device)
537 * @filter_num: Filter number to remove (as returned by log_add_filter())
538 * @return 0 if the filter was removed, -ENOENT if either the driver or the
539 * filter number was not found
540 */
541int log_remove_filter(const char *drv_name, int filter_num);
542
Simon Glass3d03ab62020-09-12 12:28:49 -0600543/**
544 * log_device_set_enable() - Enable or disable a log device
545 *
546 * Devices are referenced by their driver, so use LOG_GET_DRIVER(name) to pass
547 * the driver to this function. For example if the driver is declared with
548 * LOG_DRIVER(wibble) then pass LOG_GET_DRIVER(wibble) here.
549 *
550 * @drv: Driver of device to enable
551 * @enable: true to enable, false to disable
552 * @return 0 if OK, -ENOENT if the driver was not found
553 */
554int log_device_set_enable(struct log_driver *drv, bool enable);
555
Simon Glasse9c8d492017-12-04 13:48:24 -0700556#if CONFIG_IS_ENABLED(LOG)
557/**
558 * log_init() - Set up the log system ready for use
559 *
560 * @return 0 if OK, -ENOMEM if out of memory
561 */
562int log_init(void);
563#else
564static inline int log_init(void)
565{
566 return 0;
567}
568#endif
569
Heinrich Schuchardt3c21d772020-06-17 21:52:44 +0200570/**
571 * log_get_default_format() - get default log format
572 *
573 * The default log format is configurable via
574 * CONFIG_LOGF_FILE, CONFIG_LOGF_LINE, CONFIG_LOGF_FUNC.
575 *
576 * Return: default log format
577 */
578static inline int log_get_default_format(void)
579{
580 return BIT(LOGF_MSG) |
581 (IS_ENABLED(CONFIG_LOGF_FILE) ? BIT(LOGF_FILE) : 0) |
582 (IS_ENABLED(CONFIG_LOGF_LINE) ? BIT(LOGF_LINE) : 0) |
583 (IS_ENABLED(CONFIG_LOGF_FUNC) ? BIT(LOGF_FUNC) : 0);
584}
585
Simon Glass0e98b0a2017-12-04 13:48:20 -0700586#endif