blob: 23902dee89e70d7bf897e6ecc3d9280bfe12bf4b [file] [log] [blame]
Bin Meng25a74562019-07-18 00:34:33 -07001.. SPDX-License-Identifier: GPL-2.0+ */
2.. Copyright (c) 2014 The Chromium OS Authors.
3.. sectionauthor:: Simon Glass <sjg@chromium.org>
4
5Sandbox
6=======
Simon Glassb4a905e2011-10-10 08:22:14 +00007
8Native Execution of U-Boot
Bin Meng25a74562019-07-18 00:34:33 -07009--------------------------
Simon Glassb4a905e2011-10-10 08:22:14 +000010
11The 'sandbox' architecture is designed to allow U-Boot to run under Linux on
12almost any hardware. To achieve this it builds U-Boot (so far as possible)
13as a normal C application with a main() and normal C libraries.
14
15All of U-Boot's architecture-specific code therefore cannot be built as part
16of the sandbox U-Boot. The purpose of running U-Boot under Linux is to test
17all the generic code, not specific to any one architecture. The idea is to
18create unit tests which we can run to test this upper level code.
19
Simon Glassa6404e72021-03-07 17:35:16 -070020Sandbox allows development of many types of new features in a traditional way,
21rather than needing to test each iteration on real hardware. Many U-Boot
22features were developed on sandbox, including the core driver model, most
23uclasses, verified boot, bloblist, logging and dozens of others. Sandbox has
24enabled many large-scale code refactors as well.
25
Simon Glassb4a905e2011-10-10 08:22:14 +000026CONFIG_SANDBOX is defined when building a native board.
27
Simon Glassdac64e02014-09-23 13:05:59 -060028The board name is 'sandbox' but the vendor name is unset, so there is a
29single board in board/sandbox.
Simon Glassb4a905e2011-10-10 08:22:14 +000030
31CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian
32machines.
33
Mario Six61efece2018-02-12 08:05:57 +010034There are two versions of the sandbox: One using 32-bit-wide integers, and one
35using 64-bit-wide integers. The 32-bit version can be build and run on either
3632 or 64-bit hosts by either selecting or deselecting CONFIG_SANDBOX_32BIT; by
37default, the sandbox it built for a 32-bit host. The sandbox using 64-bit-wide
38integers can only be built on 64-bit hosts.
Bin Mengf34b4de2017-08-01 16:33:34 -070039
Simon Glassb4a905e2011-10-10 08:22:14 +000040Note that standalone/API support is not available at present.
41
Simon Glassb4a905e2011-10-10 08:22:14 +000042
Simon Glass291ddc92020-03-18 09:42:39 -060043Prerequisites
44-------------
45
Simon Glass63479bd2022-10-29 19:47:18 -060046Install the dependencies noted in :doc:`../../build/gcc`.
Simon Glass291ddc92020-03-18 09:42:39 -060047
48
Simon Glass53552c92014-03-22 17:12:59 -060049Basic Operation
50---------------
51
Bin Meng25a74562019-07-18 00:34:33 -070052To run sandbox U-Boot use something like::
Simon Glass53552c92014-03-22 17:12:59 -060053
Jagannadha Sutradharudu Teki287314f2014-08-31 21:19:43 +053054 make sandbox_defconfig all
Simon Glass53552c92014-03-22 17:12:59 -060055 ./u-boot
56
Bin Meng25a74562019-07-18 00:34:33 -070057Note: If you get errors about 'sdl-config: Command not found' you may need to
Simon Glassb6f4c1c2020-02-03 07:36:12 -070058install libsdl2.0-dev or similar to get SDL support. Alternatively you can
Tom Riniea79bb72022-11-19 18:45:43 -050059build sandbox without SDL (i.e. no display/keyboard support) by disabling
60CONFIG_SANDBOX_SDL in the .config file.
Simon Glass53552c92014-03-22 17:12:59 -060061
Simon Glass53552c92014-03-22 17:12:59 -060062U-Boot will start on your computer, showing a sandbox emulation of the serial
Bin Meng25a74562019-07-18 00:34:33 -070063console::
Simon Glass53552c92014-03-22 17:12:59 -060064
Bin Meng25a74562019-07-18 00:34:33 -070065 U-Boot 2014.04 (Mar 20 2014 - 19:06:00)
Simon Glass53552c92014-03-22 17:12:59 -060066
Bin Meng25a74562019-07-18 00:34:33 -070067 DRAM: 128 MiB
68 Using default environment
Simon Glass53552c92014-03-22 17:12:59 -060069
Bin Meng25a74562019-07-18 00:34:33 -070070 In: serial
71 Out: lcd
72 Err: lcd
73 =>
Simon Glass53552c92014-03-22 17:12:59 -060074
75You can issue commands as your would normally. If the command you want is
76not supported you can add it to include/configs/sandbox.h.
77
Simon Glasse49dc352021-02-07 14:27:07 -070078To exit, type 'poweroff' or press Ctrl-C.
Simon Glass53552c92014-03-22 17:12:59 -060079
80
81Console / LCD support
82---------------------
83
Tom Riniea79bb72022-11-19 18:45:43 -050084Assuming that CONFIG_SANDBOX_SDL is enabled when building, you can run the
Bin Meng25a74562019-07-18 00:34:33 -070085sandbox with LCD and keyboard emulation, using something like::
Simon Glass53552c92014-03-22 17:12:59 -060086
87 ./u-boot -d u-boot.dtb -l
88
89This will start U-Boot with a window showing the contents of the LCD. If
90that window has the focus then you will be able to type commands as you
91would on the console. You can adjust the display settings in the device
92tree file - see arch/sandbox/dts/sandbox.dts.
93
94
95Command-line Options
96--------------------
97
98Various options are available, mostly for test purposes. Use -h to see
Heinrich Schuchardtd06d7742020-09-19 20:05:47 +020099available options. Some of these are described below:
Simon Glass53552c92014-03-22 17:12:59 -0600100
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100101-t, --terminal <arg>
102 The terminal is normally in what is called 'raw-with-sigs' mode. This means
Heinrich Schuchardtd06d7742020-09-19 20:05:47 +0200103 that you can use arrow keys for command editing and history, but if you
104 press Ctrl-C, U-Boot will exit instead of handling this as a keypress.
105 Other options are 'raw' (so Ctrl-C is handled within U-Boot) and 'cooked'
106 (where the terminal is in cooked mode and cursor keys will not work, Ctrl-C
107 will exit).
Simon Glass53552c92014-03-22 17:12:59 -0600108
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100109-l
110 Show the LCD emulation window.
Simon Glass53552c92014-03-22 17:12:59 -0600111
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100112-d <device_tree>
113 A device tree binary file can be provided with -d. If you edit the source
Heinrich Schuchardtd06d7742020-09-19 20:05:47 +0200114 (it is stored at arch/sandbox/dts/sandbox.dts) you must rebuild U-Boot to
115 recreate the binary file.
Simon Glass53552c92014-03-22 17:12:59 -0600116
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100117-D
118 To use the default device tree, use -D.
Simon Glass53552c92014-03-22 17:12:59 -0600119
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100120-T
121 To use the test device tree, use -T.
Simon Glass3c3968f2019-09-25 08:56:07 -0600122
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100123-c [<cmd>;]<cmd>
124 To execute commands directly, use the -c option. You can specify a single
Heinrich Schuchardtd06d7742020-09-19 20:05:47 +0200125 command, or multiple commands separated by a semicolon, as is normal in
126 U-Boot. Be careful with quoting as the shell will normally process and
127 swallow quotes. When -c is used, U-Boot exits after the command is complete,
128 but you can force it to go to interactive mode instead with -i.
Simon Glass53552c92014-03-22 17:12:59 -0600129
Heinrich Schuchardt1f0ee632020-12-30 18:10:24 +0100130-i
131 Go to interactive mode after executing the commands specified by -c.
Simon Glass53552c92014-03-22 17:12:59 -0600132
Heinrich Schuchardtc0d1a002020-12-30 18:07:48 +0100133Environment Variables
134---------------------
135
136UBOOT_SB_TIME_OFFSET
137 This environment variable stores the offset of the emulated real time clock
138 to the host's real time clock in seconds. The offset defaults to zero.
139
Simon Glass53552c92014-03-22 17:12:59 -0600140Memory Emulation
141----------------
142
Bin Mengc1c3c3c2022-05-18 00:09:17 +0800143Memory emulation is supported, with the size set by CONFIG_SANDBOX_RAM_SIZE_MB.
Simon Glass53552c92014-03-22 17:12:59 -0600144The -m option can be used to read memory from a file on start-up and write
145it when shutting down. This allows preserving of memory contents across
146test runs. You can tell U-Boot to remove the memory file after it is read
147(on start-up) with the --rm_memory option.
148
149To access U-Boot's emulated memory within the code, use map_sysmem(). This
150function is used throughout U-Boot to ensure that emulated memory is used
151rather than the U-Boot application memory. This provides memory starting
152at 0 and extending to the size of the emulation.
153
154
155Storing State
156-------------
157
158With sandbox you can write drivers which emulate the operation of drivers on
159real devices. Some of these drivers may want to record state which is
160preserved across U-Boot runs. This is particularly useful for testing. For
161example, the contents of a SPI flash chip should not disappear just because
162U-Boot exits.
163
164State is stored in a device tree file in a simple format which is driver-
165specific. You then use the -s option to specify the state file. Use -r to
166make U-Boot read the state on start-up (otherwise it starts empty) and -w
167to write it on exit (otherwise the stored state is left unchanged and any
168changes U-Boot made will be lost). You can also use -n to tell U-Boot to
169ignore any problems with missing state. This is useful when first running
170since the state file will be empty.
171
172The device tree file has one node for each driver - the driver can store
173whatever properties it likes in there. See 'Writing Sandbox Drivers' below
174for more details on how to get drivers to read and write their state.
175
176
177Running and Booting
178-------------------
179
180Since there is no machine architecture, sandbox U-Boot cannot actually boot
181a kernel, but it does support the bootm command. Filesystems, memory
182commands, hashing, FIT images, verified boot and many other features are
183supported.
184
185When 'bootm' runs a kernel, sandbox will exit, as U-Boot does on a real
186machine. Of course in this case, no kernel is run.
187
188It is also possible to tell U-Boot that it has jumped from a temporary
189previous U-Boot binary, with the -j option. That binary is automatically
190removed by the U-Boot that gets the -j option. This allows you to write
191tests which emulate the action of chain-loading U-Boot, typically used in
192a situation where a second 'updatable' U-Boot is stored on your board. It
193is very risky to overwrite or upgrade the only U-Boot on a board, since a
194power or other failure will brick the board and require return to the
195manufacturer in the case of a consumer device.
196
197
198Supported Drivers
199-----------------
200
201U-Boot sandbox supports these emulations:
202
Abdellatif El Khlifi4970d5b2023-08-04 14:33:41 +0100203- Arm FF-A
Simon Glass53552c92014-03-22 17:12:59 -0600204- Block devices
205- Chrome OS EC
206- GPIO
207- Host filesystem (access files on the host from within U-Boot)
Joe Hershberger6ab76992015-03-22 17:09:13 -0500208- I2C
Simon Glass53552c92014-03-22 17:12:59 -0600209- Keyboard (Chrome OS)
210- LCD
Joe Hershberger6ab76992015-03-22 17:09:13 -0500211- Network
Simon Glass53552c92014-03-22 17:12:59 -0600212- Serial (for console only)
213- Sound (incomplete - see sandbox_sdl_sound_init() for details)
214- SPI
215- SPI flash
216- TPM (Trusted Platform Module)
217
Trevor Woerner1991bc82018-04-30 19:13:05 -0400218A wide range of commands are implemented. Filesystems which use a block
Simon Glass53552c92014-03-22 17:12:59 -0600219device are supported.
220
Simon Glass0f7dc592016-05-14 18:49:27 -0600221Also sandbox supports driver model (CONFIG_DM) and associated commands.
Simon Glass53552c92014-03-22 17:12:59 -0600222
Simon Glassb4a905e2011-10-10 08:22:14 +0000223
Simon Glass80654872018-09-18 18:43:28 -0600224Sandbox Variants
225----------------
226
227There are unfortunately quite a few variants at present:
228
Bin Meng25a74562019-07-18 00:34:33 -0700229sandbox:
230 should be used for most tests
231sandbox64:
232 special build that forces a 64-bit host
233sandbox_flattree:
234 builds with dev_read\_...() functions defined as inline.
235 We need this build so that we can test those inline functions, and we
236 cannot build with both the inline functions and the non-inline functions
237 since they are named the same.
Bin Meng25a74562019-07-18 00:34:33 -0700238sandbox_spl:
239 builds sandbox with SPL support, so you can run spl/u-boot-spl
240 and it will start up and then load ./u-boot. It is also possible to
241 run ./u-boot directly.
Simon Glass80654872018-09-18 18:43:28 -0600242
Tom Rinif9fb9812019-10-11 16:28:47 -0400243Of these sandbox_spl can probably be removed since it is a superset of sandbox.
Simon Glass80654872018-09-18 18:43:28 -0600244
245Most of the config options should be identical between these variants.
246
247
Joe Hershberger586cbd12015-03-22 17:09:21 -0500248Linux RAW Networking Bridge
249---------------------------
250
251The sandbox_eth_raw driver bridges traffic between the bottom of the network
252stack and the RAW sockets API in Linux. This allows much of the U-Boot network
253functionality to be tested in sandbox against real network traffic.
254
255For Ethernet network adapters, the bridge utilizes the RAW AF_PACKET API. This
256is needed to get access to the lowest level of the network stack in Linux. This
257means that all of the Ethernet frame is included. This allows the U-Boot network
258stack to be fully used. In other words, nothing about the Linux network stack is
259involved in forming the packets that end up on the wire. To receive the
260responses to packets sent from U-Boot the network interface has to be set to
261promiscuous mode so that the network card won't filter out packets not destined
262for its configured (on Linux) MAC address.
263
264The RAW sockets Ethernet API requires elevated privileges in Linux. You can
Bin Meng25a74562019-07-18 00:34:33 -0700265either run as root, or you can add the capability needed like so::
Joe Hershberger586cbd12015-03-22 17:09:21 -0500266
Bin Meng25a74562019-07-18 00:34:33 -0700267 sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot
Joe Hershberger586cbd12015-03-22 17:09:21 -0500268
269The default device tree for sandbox includes an entry for eth0 on the sandbox
270host machine whose alias is "eth1". The following are a few examples of network
271operations being tested on the eth0 interface.
272
Bin Meng25a74562019-07-18 00:34:33 -0700273.. code-block:: none
Joe Hershberger586cbd12015-03-22 17:09:21 -0500274
Bin Meng25a74562019-07-18 00:34:33 -0700275 sudo /path/to/u-boot -D
Joe Hershberger586cbd12015-03-22 17:09:21 -0500276
Bin Meng25a74562019-07-18 00:34:33 -0700277 DHCP
278 ....
Joe Hershberger586cbd12015-03-22 17:09:21 -0500279
Bin Meng25a74562019-07-18 00:34:33 -0700280 setenv autoload no
281 setenv ethrotate no
282 setenv ethact eth1
283 dhcp
Joe Hershberger586cbd12015-03-22 17:09:21 -0500284
Bin Meng25a74562019-07-18 00:34:33 -0700285 PING
286 ....
Joe Hershberger586cbd12015-03-22 17:09:21 -0500287
Bin Meng25a74562019-07-18 00:34:33 -0700288 setenv autoload no
289 setenv ethrotate no
290 setenv ethact eth1
291 dhcp
292 ping $gatewayip
Joe Hershberger586cbd12015-03-22 17:09:21 -0500293
Bin Meng25a74562019-07-18 00:34:33 -0700294 TFTP
295 ....
296
297 setenv autoload no
298 setenv ethrotate no
299 setenv ethact eth1
300 dhcp
301 setenv serverip WWW.XXX.YYY.ZZZ
302 tftpboot u-boot.bin
Joe Hershberger586cbd12015-03-22 17:09:21 -0500303
Trevor Woerner1991bc82018-04-30 19:13:05 -0400304The bridge also supports (to a lesser extent) the localhost interface, 'lo'.
Joe Hershbergera8921922015-03-22 17:09:23 -0500305
306The 'lo' interface cannot use the RAW AF_PACKET API because the lo interface
307doesn't support Ethernet-level traffic. It is a higher-level interface that is
308expected only to be used at the AF_INET level of the API. As such, the most raw
309we can get on that interface is the RAW AF_INET API on UDP. This allows us to
310set the IP_HDRINCL option to include everything except the Ethernet header in
311the packets we send and receive.
312
313Because only UDP is supported, ICMP traffic will not work, so expect that ping
314commands will time out.
315
316The default device tree for sandbox includes an entry for lo on the sandbox
317host machine whose alias is "eth5". The following is an example of a network
318operation being tested on the lo interface.
319
Bin Meng25a74562019-07-18 00:34:33 -0700320.. code-block:: none
Joe Hershbergera8921922015-03-22 17:09:23 -0500321
Bin Meng25a74562019-07-18 00:34:33 -0700322 TFTP
323 ....
Joe Hershbergera8921922015-03-22 17:09:23 -0500324
Bin Meng25a74562019-07-18 00:34:33 -0700325 setenv ethrotate no
326 setenv ethact eth5
327 tftpboot u-boot.bin
328
Joe Hershberger586cbd12015-03-22 17:09:21 -0500329
Mike Frysingerb375ad92013-12-03 16:43:27 -0700330SPI Emulation
331-------------
332
333Sandbox supports SPI and SPI flash emulation.
334
AKASHI Takahiro8200d3a2020-04-27 15:46:45 +0900335The device can be enabled via a device tree, for example::
Mike Frysingerb375ad92013-12-03 16:43:27 -0700336
AKASHI Takahiro8200d3a2020-04-27 15:46:45 +0900337 spi@0 {
338 #address-cells = <1>;
339 #size-cells = <0>;
340 reg = <0 1>;
341 compatible = "sandbox,spi";
342 cs-gpios = <0>, <&gpio_a 0>;
343 spi.bin@0 {
344 reg = <0>;
345 compatible = "spansion,m25p16", "jedec,spi-nor";
346 spi-max-frequency = <40000000>;
347 sandbox,filename = "spi.bin";
348 };
349 };
Mike Frysingerb375ad92013-12-03 16:43:27 -0700350
AKASHI Takahiro8200d3a2020-04-27 15:46:45 +0900351The file must be created in advance::
Mike Frysingerb375ad92013-12-03 16:43:27 -0700352
AKASHI Takahiro8200d3a2020-04-27 15:46:45 +0900353 $ dd if=/dev/zero of=spi.bin bs=1M count=2
354 $ u-boot -T
Mike Frysingerb375ad92013-12-03 16:43:27 -0700355
AKASHI Takahiro8200d3a2020-04-27 15:46:45 +0900356Here, you can use "-T" or "-D" option to specify test.dtb or u-boot.dtb,
357respectively, or "-d <file>" for your own dtb.
Mike Frysingerb375ad92013-12-03 16:43:27 -0700358
Bin Meng25a74562019-07-18 00:34:33 -0700359With this setup you can issue SPI flash commands as normal::
Mike Frysingerb375ad92013-12-03 16:43:27 -0700360
Bin Meng25a74562019-07-18 00:34:33 -0700361 =>sf probe
362 SF: Detected M25P16 with page size 64 KiB, total 2 MiB
363 =>sf read 0 0 10000
364 SF: 65536 bytes @ 0x0 Read: OK
Mike Frysingerb375ad92013-12-03 16:43:27 -0700365
366Since this is a full SPI emulation (rather than just flash), you can
Bin Meng25a74562019-07-18 00:34:33 -0700367also use low-level SPI commands::
Mike Frysingerb375ad92013-12-03 16:43:27 -0700368
Bin Meng25a74562019-07-18 00:34:33 -0700369 =>sspi 0:0 32 9f
370 FF202015
Mike Frysingerb375ad92013-12-03 16:43:27 -0700371
372This is issuing a READ_ID command and getting back 20 (ST Micro) part
3730x2015 (the M25P16).
374
Simon Glass63479bd2022-10-29 19:47:18 -0600375.. _sandbox_blk:
Simon Glass53552c92014-03-22 17:12:59 -0600376
Stefan Brünsbe456312016-08-11 22:52:03 +0200377Block Device Emulation
378----------------------
379
380U-Boot can use raw disk images for block device emulation. To e.g. list
381the contents of the root directory on the second partion of the image
Bin Meng25a74562019-07-18 00:34:33 -0700382"disk.raw", you can use the following commands::
Stefan Brünsbe456312016-08-11 22:52:03 +0200383
Bin Meng25a74562019-07-18 00:34:33 -0700384 =>host bind 0 ./disk.raw
385 =>ls host 0:2
Stefan Brünsbe456312016-08-11 22:52:03 +0200386
Simon Glassb4d00772021-03-15 18:11:11 +1300387The device can be marked removeable with 'host bind -r'.
388
Bin Meng25a74562019-07-18 00:34:33 -0700389A disk image can be created using the following commands::
Stefan Brünsbe456312016-08-11 22:52:03 +0200390
Bin Meng25a74562019-07-18 00:34:33 -0700391 $> truncate -s 1200M ./disk.raw
Corentin Guillevic8ef10892023-03-24 14:43:36 +0100392 $> /usr/sbin/sgdisk --new=1:0:+64M --typecode=1:EF00 --new=2:0:0 --typecode=2:8300 disk.raw
Bin Meng25a74562019-07-18 00:34:33 -0700393 $> lodev=`sudo losetup -P -f --show ./disk.raw`
394 $> sudo mkfs.vfat -n EFI -v ${lodev}p1
395 $> sudo mkfs.ext4 -L ROOT -v ${lodev}p2
Stefan Brünsbe456312016-08-11 22:52:03 +0200396
Bin Meng25a74562019-07-18 00:34:33 -0700397or utilize the device described in test/py/make_test_disk.py::
Alison Chaikenbccb8b62017-09-09 23:47:12 -0700398
399 #!/usr/bin/python
400 import make_test_disk
401 make_test_disk.makeDisk()
Stefan Brünsbe456312016-08-11 22:52:03 +0200402
Simon Glass63479bd2022-10-29 19:47:18 -0600403For more technical details, see :doc:`block_impl`.
404
Simon Glass53552c92014-03-22 17:12:59 -0600405Writing Sandbox Drivers
406-----------------------
407
408Generally you should put your driver in a file containing the word 'sandbox'
409and put it in the same directory as other drivers of its type. You can then
410implement the same hooks as the other drivers.
411
412To access U-Boot's emulated memory, use map_sysmem() as mentioned above.
Mike Frysingerb375ad92013-12-03 16:43:27 -0700413
Simon Glass53552c92014-03-22 17:12:59 -0600414If your driver needs to store configuration or state (such as SPI flash
415contents or emulated chip registers), you can use the device tree as
416described above. Define handlers for this with the SANDBOX_STATE_IO macro.
417See arch/sandbox/include/asm/state.h for documentation. In short you provide
418a node name, compatible string and functions to read and write the state.
419Since writing the state can expand the device tree, you may need to use
420state_setprop() which does this automatically and avoids running out of
421space. See existing code for examples.
422
423
Simon Glassc86e6202022-04-30 00:56:54 -0600424VPL (Verifying Program Loader)
425------------------------------
426
427Sandbox provides an example build of vpl called `sandbox_vpl`. This can be run
428using::
429
430 /path/to/sandbox_vpl/tpl/u-boot-tpl -D
431
432It starts up TPL (first-stage init), then VPL, then runs SPL and finally U-Boot
433proper, following the normal flow for a verified boot. At present, no
434verification is actually implemented.
435
436
Simon Glass752707a2019-04-08 13:20:41 -0600437Debugging the init sequence
438---------------------------
439
Bin Meng25a74562019-07-18 00:34:33 -0700440If you get a failure in the initcall sequence, like this::
Simon Glass752707a2019-04-08 13:20:41 -0600441
442 initcall sequence 0000560775957c80 failed at call 0000000000048134 (err=-96)
443
Bin Meng25a74562019-07-18 00:34:33 -0700444Then you use can use grep to see which init call failed, e.g.::
Simon Glass752707a2019-04-08 13:20:41 -0600445
446 $ grep 0000000000048134 u-boot.map
447 stdio_add_devices
448
Bin Meng25a74562019-07-18 00:34:33 -0700449Of course another option is to run it with a debugger such as gdb::
Simon Glass752707a2019-04-08 13:20:41 -0600450
451 $ gdb u-boot
452 ...
453 (gdb) br initcall.h:41
454 Breakpoint 1 at 0x4db9d: initcall.h:41. (2 locations)
455
456Note that two locations are reported, since this function is used in both
457board_init_f() and board_init_r().
458
Bin Meng25a74562019-07-18 00:34:33 -0700459.. code-block:: none
460
Simon Glass752707a2019-04-08 13:20:41 -0600461 (gdb) r
462 Starting program: /tmp/b/sandbox/u-boot
463 [Thread debugging using libthread_db enabled]
464 Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
465
466 U-Boot 2018.09-00264-ge0c2ba9814-dirty (Sep 22 2018 - 12:21:46 -0600)
467
468 DRAM: 128 MiB
469 MMC:
470
471 Breakpoint 1, initcall_run_list (init_sequence=0x5555559619e0 <init_sequence_f>)
472 at /scratch/sglass/cosarm/src/third_party/u-boot/files/include/initcall.h:41
473 41 printf("initcall sequence %p failed at call %p (err=%d)\n",
474 (gdb) print *init_fnc_ptr
475 $1 = (const init_fnc_t) 0x55555559c114 <stdio_add_devices>
476 (gdb)
477
478
479This approach can be used on normal boards as well as sandbox.
480
Bin Meng07ddb872022-05-18 00:21:29 +0800481For debugging with GDB or LLDB, it is preferable to reduce the compiler
482optimization level (CONFIG_CC_OPTIMIZE_FOR_DEBUG=y) and to disable Link Time
483Optimization (CONFIG_LTO=n).
Simon Glass752707a2019-04-08 13:20:41 -0600484
Simon Glass73585b92019-05-18 11:59:47 -0600485SDL_CONFIG
486----------
487
488If sdl-config is on a different path from the default, set the SDL_CONFIG
489environment variable to the correct pathname before building U-Boot.
490
491
Simon Glass6c28e722019-05-18 11:59:50 -0600492Using valgrind / memcheck
493-------------------------
494
Bin Meng25a74562019-07-18 00:34:33 -0700495It is possible to run U-Boot under valgrind to check memory allocations::
Simon Glass6c28e722019-05-18 11:59:50 -0600496
Sean Andersonc474a952022-03-23 14:04:50 -0400497 valgrind ./u-boot
498
Sean Andersonfbd84172022-05-27 10:02:59 -0400499However, this does not give very useful results. The sandbox allocates a memory
500pool via mmap(). U-Boot's internal malloc() and free() work on this memory pool.
501Custom allocators and deallocators are invisible to valgrind by default. To
502expose U-Boot's malloc() and free() to valgrind, enable ``CONFIG_VALGRIND``.
503Enabling this option will inject placeholder assembler code which valgrind
504interprets. This is used to annotate sections of memory as safe or unsafe, and
505to inform valgrind about malloc()s and free()s. There are currently no standard
506placeholder assembly sequences for RISC-V, so this option cannot be enabled on
507that architecture.
508
509Malloc's bookkeeping information is marked as unsafe by default. However, this
510will generate many false positives when malloc itself accesses this information.
511These warnings can be suppressed with::
Sean Andersonc474a952022-03-23 14:04:50 -0400512
513 valgrind --suppressions=scripts/u-boot.supp ./u-boot
Simon Glass6c28e722019-05-18 11:59:50 -0600514
Sean Andersonfbd84172022-05-27 10:02:59 -0400515Additionally, you may experience false positives if U-Boot is using a smaller
516pointer size than your host architecture. This is because the pointers used by
517U-Boot will only contain 32 bits of addressing information. When interpreted as
51864-bit pointers, valgrind will think that they are not initialized properly. To
519fix this, enable ``CONFIG_SANDBOX64`` (such as via ``sandbox64_defconfig``)
520when running on a 64-bit host.
521
522Additional options
523^^^^^^^^^^^^^^^^^^
524
525The following valgrind options are useful in addition to the above examples:
526
527``--trace-childen=yes``
528 tells valgrind to keep tracking subprocesses, such
529 as when U-Boot jumps from TPL to SPL, or from SPL to U-Boot proper.
530
531``--track-origins=yes``
532 will (for a small overhead) tell valgrind to keep
533 track of who allocated some troublesome memory.
534
535``--error-limit``
536 will enable printing more than 1000 errors in a single session.
537
538``--vgdb=yes --vgdb-error=0``
539 will let you use GDB to attach like::
540
541 gdb -ex "target remote | vgdb" u-boot
542
543 This is very helpful for inspecting the program state when there is
544 an error.
545
546The following U-Boot option are also helpful:
547
548``-Tc 'ut all'``
549 lets U-Boot run unit tests automatically. Note
550 that not all unit tests will succeed in the default configuration.
551
552``-t cooked``
553 will keep the console in a sane state if you
554 terminate it early (instead of having to run tset).
555
556Future work
557^^^^^^^^^^^
558
559The biggest limitation to the current approach is that supressions don't
560"un-taint" uninitialized memory accesses. Currently, dlmalloc's bookkeeping
561information is marked as a "red zone." This means that all reads to that zone
562are marked as illegal by valgrind. This is fine for regular code, but dlmalloc
563really does need to access this area, so we suppress its violations. However, if
564dlmalloc then passes a result calculated from a "tainted" access, that result is
565still tainted. So the first accessor will raise a warning. This means that every
566construct like
567
568.. code-block::
569
570 foo = malloc(sizeof(*foo));
571 if (!foo)
572 return -ENOMEM;
573
574will raise a warning when we check the result of malloc. Whoops.
575
576There are at least four possible ways to address this:
577
578* Don't mark dlmalloc bookkeeping information as a red zone. This is the
579 simplest solution, but reduces the power of valgrind immensely, since we can
580 no longer determine that (e.g.) access past the end of an array is undefined.
581* Implement red zones properly. This would involve growing every allocation by a
582 fixed amount (16 bytes or so) and then using that extra space for a real red
583 zone that neither regular code nor dlmalloc needs to access. Unfortunately,
584 this would probably some fairly intensive surgery to dlmalloc to add/remove
585 the offset appropriately.
586* Mark bookkeeping information as valid before we use it in dlmalloc, and then
587 mark it invalid before returning. This would be the most correct, but it would
588 be very tricky to implement since there are so many code paths to mark. I
589 think it would be the most effort out of the three options here.
590* Use the host malloc and free instead of U-Boot's custom allocator. This will
591 eliminate the need to annotate dlmalloc. However, using a different allocator
592 for sandbox will mean that bugs in dlmalloc will only be tested when running
593 on read (or emulated) hardware.
Simon Glass6c28e722019-05-18 11:59:50 -0600594
Sean Andersonfbd84172022-05-27 10:02:59 -0400595Until one of the above options are implemented, it will remain difficult
596to sift through the massive amount of spurious warnings.
Simon Glass6c28e722019-05-18 11:59:50 -0600597
Simon Glass53552c92014-03-22 17:12:59 -0600598Testing
599-------
600
601U-Boot sandbox can be used to run various tests, mostly in the test/
Simon Glassa6404e72021-03-07 17:35:16 -0700602directory.
Simon Glass3c3968f2019-09-25 08:56:07 -0600603
Simon Glass63479bd2022-10-29 19:47:18 -0600604See :doc:`../../develop/tests_sandbox` for more information and
605:doc:`../../develop/testing` for information about testing generally.
Simon Glass3c3968f2019-09-25 08:56:07 -0600606
Simon Glass16ee0cd2018-11-15 18:43:59 -0700607
608Memory Map
609----------
610
611Sandbox has its own emulated memory starting at 0. Here are some of the things
612that are mapped into that memory:
613
Bin Meng25a74562019-07-18 00:34:33 -0700614======= ======================== ===============================
615Addr Config Usage
616======= ======================== ===============================
Simon Glass9f076ea2023-09-26 08:14:50 -0600617 100 CONFIG_SYS_FDT_LOAD_ADDR Device tree
618 b000 CONFIG_BLOBLIST_ADDR Blob list
Tom Rinifb52b942022-12-04 10:04:49 -0500619 10000 CFG_MALLOC_F_ADDR Early memory allocation
Simon Glasse6c3c2b2019-04-08 13:20:44 -0600620 f0000 CONFIG_PRE_CON_BUF_ADDR Pre-console buffer
Simon Glassee112092021-03-07 17:35:15 -0700621 100000 CONFIG_TRACE_EARLY_ADDR Early trace buffer (if enabled). Also used
622 as the SPL load buffer in spl_test_load().
Simon Glass72cc5382022-10-20 18:22:39 -0600623 200000 CONFIG_TEXT_BASE Load buffer for U-Boot (sandbox_spl only)
Bin Meng25a74562019-07-18 00:34:33 -0700624======= ======================== ===============================