blob: 28340a4aac739090a6ddd22fabf0606ed283e754 [file] [log] [blame]
Heinrich Schuchardta7813912020-05-31 10:46:12 +02001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright (c) 2017 Simon Glass <sjg@chromium.org>
3
4Logging in U-Boot
5=================
6
7Introduction
8------------
9
10U-Boot's internal operation involves many different steps and actions. From
11setting up the board to displaying a start-up screen to loading an Operating
12System, there are many component parts each with many actions.
13
14Most of the time this internal detail is not useful. Displaying it on the
15console would delay booting (U-Boot's primary purpose) and confuse users.
16
17But for digging into what is happening in a particular area, or for debugging
18a problem it is often useful to see what U-Boot is doing in more detail than
19is visible from the basic console output.
20
21U-Boot's logging feature aims to satisfy this goal for both users and
22developers.
23
24
25Logging levels
26--------------
27
28There are a number logging levels available, in increasing order of verbosity:
29
30* LOGL_EMERG - Printed before U-Boot halts
31* LOGL_ALERT - Indicates action must be taken immediate or U-Boot will crash
32* LOGL_CRIT - Indicates a critical error that will cause boot failure
33* LOGL_ERR - Indicates an error that may cause boot failure
34* LOGL_WARNING - Warning about an unexpected condition
35* LOGL_NOTE - Important information about progress
36* LOGL_INFO - Information about normal boot progress
37* LOGL_DEBUG - Debug information (useful for debugging a driver or subsystem)
38* LOGL_DEBUG_CONTENT - Debug message showing full message content
39* LOGL_DEBUG_IO - Debug message showing hardware I/O access
40
41
42Logging category
43----------------
44
45Logging can come from a wide variety of places within U-Boot. Each log message
46has a category which is intended to allow messages to be filtered according to
47their source.
48
49The following main categories are defined:
50
51* LOGC_NONE - Unknown category (e.g. a debug() statement)
52* UCLASS\_... - Related to a particular uclass (e.g. UCLASS_USB)
53* LOGC_ARCH - Related to architecture-specific code
54* LOGC_BOARD - Related to board-specific code
55* LOGC_CORE - Related to core driver-model support
56* LOGC_DT - Related to device tree control
57* LOGC_EFI - Related to EFI implementation
58
59
60Enabling logging
61----------------
62
63The following options are used to enable logging at compile time:
64
65* CONFIG_LOG - Enables the logging system
66* CONFIG_LOG_MAX_LEVEL - Max log level to build (anything higher is compiled
67 out)
68* CONFIG_LOG_CONSOLE - Enable writing log records to the console
69
70If CONFIG_LOG is not set, then no logging will be available.
71
72The above have SPL and TPL versions also, e.g. CONFIG_SPL_LOG_MAX_LEVEL and
73CONFIG_TPL_LOG_MAX_LEVEL.
74
75
76Temporary logging within a single file
77--------------------------------------
78
79Sometimes it is useful to turn on logging just in one file. You can use this
80
81.. code-block:: c
82
83 #define LOG_DEBUG
84
85to enable building in of all logging statements in a single file. Put it at
Simon Glass7ad1e0b2020-10-13 19:55:07 -060086the top of the file, before any #includes. This overrides any log-level setting
87in U-Boot, including CONFIG_LOG_DEFAULT_LEVEL, but just for that file.
Heinrich Schuchardta7813912020-05-31 10:46:12 +020088
89
90Convenience functions
91---------------------
92
93A number of convenience functions are available to shorten the code needed
94for logging:
95
96* log_err(_fmt...)
97* log_warning(_fmt...)
98* log_notice(_fmt...)
99* log_info(_fmt...)
100* log_debug(_fmt...)
101* log_content(_fmt...)
102* log_io(_fmt...)
103
104With these the log level is implicit in the name. The category is set by
105LOG_CATEGORY, which you can only define once per file, above all #includes, e.g.
106
107.. code-block:: c
108
109 #define LOG_CATEGORY LOGC_ALLOC
110
Simon Glass7ad1e0b2020-10-13 19:55:07 -0600111or
112
113.. code-block:: c
114
115 #define LOG_CATEGORY UCLASS_SPI
116
Heinrich Schuchardta7813912020-05-31 10:46:12 +0200117Remember that all uclasses IDs are log categories too.
118
119
120Log command
121-----------
122
123The 'log' command provides access to several features:
124
125* level - access the default log level
126* format - access the console log format
127* rec - output a log record
128* test - run tests
129
130Type 'help log' for details.
131
132
133Using DEBUG
134-----------
135
136U-Boot has traditionally used a #define called DEBUG to enable debugging on a
137file-by-file basis. The debug() macro compiles to a printf() statement if
138DEBUG is enabled, and an empty statement if not.
139
140With logging enabled, debug() statements are interpreted as logging output
141with a level of LOGL_DEBUG and a category of LOGC_NONE.
142
143The logging facilities are intended to replace DEBUG, but if DEBUG is defined
144at the top of a file, then it takes precedence. This means that debug()
145statements will result in output to the console and this output will not be
146logged.
147
148
149Logging destinations
150--------------------
151
152If logging information goes nowhere then it serves no purpose. U-Boot provides
153several possible determinations for logging information, all of which can be
154enabled or disabled independently:
155
156* console - goes to stdout
157* syslog - broadcast RFC 3164 messages to syslog servers on UDP port 514
158
159The syslog driver sends the value of environmental variable 'log_hostname' as
160HOSTNAME if available.
161
162
163Log format
164----------
165
166You can control the log format using the 'log format' command. The basic
167format is::
168
169 LEVEL.category,file.c:123-func() message
170
171In the above, file.c:123 is the filename where the log record was generated and
172func() is the function name. By default ('log format default') only the
173function name and message are displayed on the console. You can control which
174fields are present, but not the field order.
175
176
177Filters
178-------
179
180Filters are attached to log drivers to control what those drivers emit. Only
181records that pass through the filter make it to the driver.
182
183Filters can be based on several criteria:
184
185* maximum log level
186* in a set of categories
187* in a set of files
188
189If no filters are attached to a driver then a default filter is used, which
190limits output to records with a level less than CONFIG_MAX_LOG_LEVEL.
191
192
193Logging statements
194------------------
195
196The main logging function is:
197
198.. code-block:: c
199
200 log(category, level, format_string, ...)
201
202Also debug() and error() will generate log records - these use LOG_CATEGORY
203as the category, so you should #define this right at the top of the source
204file to ensure the category is correct.
205
206You can also define CONFIG_LOG_ERROR_RETURN to enable the log_ret() macro. This
207can be used whenever your function returns an error value:
208
209.. code-block:: c
210
211 return log_ret(uclass_first_device(UCLASS_MMC, &dev));
212
213This will write a log record when an error code is detected (a value < 0). This
214can make it easier to trace errors that are generated deep in the call stack.
215
216
217Code size
218---------
219
220Code size impact depends largely on what is enabled. The following numbers are
221generated by 'buildman -S' for snow, which is a Thumb-2 board (all units in
222bytes)::
223
224 This series: adds bss +20.0 data +4.0 rodata +4.0 text +44.0
225 CONFIG_LOG: bss -52.0 data +92.0 rodata -635.0 text +1048.0
226 CONFIG_LOG_MAX_LEVEL=7: bss +188.0 data +4.0 rodata +49183.0 text +98124.0
227
228The last option turns every debug() statement into a logging call, which
229bloats the code hugely. The advantage is that it is then possible to enable
230all logging within U-Boot.
231
232
233To Do
234-----
235
236There are lots of useful additions that could be made. None of the below is
237implemented! If you do one, please add a test in test/py/tests/test_log.py
238
239Convenience functions to support setting the category:
240
241* log_arch(level, format_string, ...) - category LOGC_ARCH
242* log_board(level, format_string, ...) - category LOGC_BOARD
243* log_core(level, format_string, ...) - category LOGC_CORE
244* log_dt(level, format_string, ...) - category LOGC_DT
245
246More logging destinations:
247
248* device - goes to a device (e.g. serial)
249* buffer - recorded in a memory buffer
250
251Convert debug() statements in the code to log() statements
252
253Support making printf() emit log statements at L_INFO level
254
255Convert error() statements in the code to log() statements
256
257Figure out what to do with BUG(), BUG_ON() and warn_non_spl()
258
259Figure out what to do with assert()
260
261Add a way to browse log records
262
263Add a way to record log records for browsing using an external tool
264
265Add commands to add and remove filters
266
267Add commands to add and remove log devices
268
269Allow sharing of printf format strings in log records to reduce storage size
270for large numbers of log records
271
272Add a command-line option to sandbox to set the default logging level
273
274Convert core driver model code to use logging
275
276Convert uclasses to use logging with the correct category
277
278Consider making log() calls emit an automatic newline, perhaps with a logn()
279function to avoid that
280
281Passing log records through to linux (e.g. via device tree /chosen)
282
283Provide a command to access the number of log records generated, and the
284number dropped due to them being generated before the log system was ready.
285
286Add a printf() format string pragma so that log statements are checked properly
287
288Enhance the log console driver to show level / category / file / line
289information
290
291Add a command to add new log records and delete existing records.
292
293Provide additional log() functions - e.g. logc() to specify the category