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