blob: 7ce8482ab6db1b898c67863c94c083ff495b02c5 [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
86the top of the file, before any #includes.
87
88To actually get U-Boot to output this you need to also set the default logging
89level - e.g. set CONFIG_LOG_DEFAULT_LEVEL to 7 (LOGL_DEBUG) or more. Otherwise
90debug output is suppressed and will not be generated.
91
92
93Convenience functions
94---------------------
95
96A number of convenience functions are available to shorten the code needed
97for logging:
98
99* log_err(_fmt...)
100* log_warning(_fmt...)
101* log_notice(_fmt...)
102* log_info(_fmt...)
103* log_debug(_fmt...)
104* log_content(_fmt...)
105* log_io(_fmt...)
106
107With these the log level is implicit in the name. The category is set by
108LOG_CATEGORY, which you can only define once per file, above all #includes, e.g.
109
110.. code-block:: c
111
112 #define LOG_CATEGORY LOGC_ALLOC
113
114Remember that all uclasses IDs are log categories too.
115
116
117Log command
118-----------
119
120The 'log' command provides access to several features:
121
122* level - access the default log level
123* format - access the console log format
124* rec - output a log record
125* test - run tests
126
127Type 'help log' for details.
128
129
130Using DEBUG
131-----------
132
133U-Boot has traditionally used a #define called DEBUG to enable debugging on a
134file-by-file basis. The debug() macro compiles to a printf() statement if
135DEBUG is enabled, and an empty statement if not.
136
137With logging enabled, debug() statements are interpreted as logging output
138with a level of LOGL_DEBUG and a category of LOGC_NONE.
139
140The logging facilities are intended to replace DEBUG, but if DEBUG is defined
141at the top of a file, then it takes precedence. This means that debug()
142statements will result in output to the console and this output will not be
143logged.
144
145
146Logging destinations
147--------------------
148
149If logging information goes nowhere then it serves no purpose. U-Boot provides
150several possible determinations for logging information, all of which can be
151enabled or disabled independently:
152
153* console - goes to stdout
154* syslog - broadcast RFC 3164 messages to syslog servers on UDP port 514
155
156The syslog driver sends the value of environmental variable 'log_hostname' as
157HOSTNAME if available.
158
159
160Log format
161----------
162
163You can control the log format using the 'log format' command. The basic
164format is::
165
166 LEVEL.category,file.c:123-func() message
167
168In the above, file.c:123 is the filename where the log record was generated and
169func() is the function name. By default ('log format default') only the
170function name and message are displayed on the console. You can control which
171fields are present, but not the field order.
172
173
174Filters
175-------
176
177Filters are attached to log drivers to control what those drivers emit. Only
178records that pass through the filter make it to the driver.
179
180Filters can be based on several criteria:
181
182* maximum log level
183* in a set of categories
184* in a set of files
185
186If no filters are attached to a driver then a default filter is used, which
187limits output to records with a level less than CONFIG_MAX_LOG_LEVEL.
188
189
190Logging statements
191------------------
192
193The main logging function is:
194
195.. code-block:: c
196
197 log(category, level, format_string, ...)
198
199Also debug() and error() will generate log records - these use LOG_CATEGORY
200as the category, so you should #define this right at the top of the source
201file to ensure the category is correct.
202
203You can also define CONFIG_LOG_ERROR_RETURN to enable the log_ret() macro. This
204can be used whenever your function returns an error value:
205
206.. code-block:: c
207
208 return log_ret(uclass_first_device(UCLASS_MMC, &dev));
209
210This will write a log record when an error code is detected (a value < 0). This
211can make it easier to trace errors that are generated deep in the call stack.
212
213
214Code size
215---------
216
217Code size impact depends largely on what is enabled. The following numbers are
218generated by 'buildman -S' for snow, which is a Thumb-2 board (all units in
219bytes)::
220
221 This series: adds bss +20.0 data +4.0 rodata +4.0 text +44.0
222 CONFIG_LOG: bss -52.0 data +92.0 rodata -635.0 text +1048.0
223 CONFIG_LOG_MAX_LEVEL=7: bss +188.0 data +4.0 rodata +49183.0 text +98124.0
224
225The last option turns every debug() statement into a logging call, which
226bloats the code hugely. The advantage is that it is then possible to enable
227all logging within U-Boot.
228
229
230To Do
231-----
232
233There are lots of useful additions that could be made. None of the below is
234implemented! If you do one, please add a test in test/py/tests/test_log.py
235
236Convenience functions to support setting the category:
237
238* log_arch(level, format_string, ...) - category LOGC_ARCH
239* log_board(level, format_string, ...) - category LOGC_BOARD
240* log_core(level, format_string, ...) - category LOGC_CORE
241* log_dt(level, format_string, ...) - category LOGC_DT
242
243More logging destinations:
244
245* device - goes to a device (e.g. serial)
246* buffer - recorded in a memory buffer
247
248Convert debug() statements in the code to log() statements
249
250Support making printf() emit log statements at L_INFO level
251
252Convert error() statements in the code to log() statements
253
254Figure out what to do with BUG(), BUG_ON() and warn_non_spl()
255
256Figure out what to do with assert()
257
258Add a way to browse log records
259
260Add a way to record log records for browsing using an external tool
261
262Add commands to add and remove filters
263
264Add commands to add and remove log devices
265
266Allow sharing of printf format strings in log records to reduce storage size
267for large numbers of log records
268
269Add a command-line option to sandbox to set the default logging level
270
271Convert core driver model code to use logging
272
273Convert uclasses to use logging with the correct category
274
275Consider making log() calls emit an automatic newline, perhaps with a logn()
276function to avoid that
277
278Passing log records through to linux (e.g. via device tree /chosen)
279
280Provide a command to access the number of log records generated, and the
281number dropped due to them being generated before the log system was ready.
282
283Add a printf() format string pragma so that log statements are checked properly
284
285Enhance the log console driver to show level / category / file / line
286information
287
288Add a command to add new log records and delete existing records.
289
290Provide additional log() functions - e.g. logc() to specify the category