blob: e1f4dde6f86f58d7f9b66069a503fbb0fe56fa4a [file] [log] [blame]
Bin Meng49116e62019-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 Glass744d9852011-10-10 08:22:14 +00007
8Native Execution of U-Boot
Bin Meng49116e62019-07-18 00:34:33 -07009--------------------------
Simon Glass744d9852011-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
20CONFIG_SANDBOX is defined when building a native board.
21
Simon Glass9b250ac2014-09-23 13:05:59 -060022The board name is 'sandbox' but the vendor name is unset, so there is a
23single board in board/sandbox.
Simon Glass744d9852011-10-10 08:22:14 +000024
25CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian
26machines.
27
Mario Sixc6b89f32018-02-12 08:05:57 +010028There are two versions of the sandbox: One using 32-bit-wide integers, and one
29using 64-bit-wide integers. The 32-bit version can be build and run on either
3032 or 64-bit hosts by either selecting or deselecting CONFIG_SANDBOX_32BIT; by
31default, the sandbox it built for a 32-bit host. The sandbox using 64-bit-wide
32integers can only be built on 64-bit hosts.
Bin Meng226b50b2017-08-01 16:33:34 -070033
Simon Glass744d9852011-10-10 08:22:14 +000034Note that standalone/API support is not available at present.
35
Simon Glass75b3c3a2014-03-22 17:12:59 -060036
37Basic Operation
38---------------
39
Bin Meng49116e62019-07-18 00:34:33 -070040To run sandbox U-Boot use something like::
Simon Glass75b3c3a2014-03-22 17:12:59 -060041
Jagannadha Sutradharudu Teki6b1978f2014-08-31 21:19:43 +053042 make sandbox_defconfig all
Simon Glass75b3c3a2014-03-22 17:12:59 -060043 ./u-boot
44
Bin Meng49116e62019-07-18 00:34:33 -070045Note: If you get errors about 'sdl-config: Command not found' you may need to
46install libsdl1.2-dev or similar to get SDL support. Alternatively you can
47build sandbox without SDL (i.e. no display/keyboard support) by removing
48the CONFIG_SANDBOX_SDL line in include/configs/sandbox.h or using::
Simon Glass75b3c3a2014-03-22 17:12:59 -060049
Bin Meng49116e62019-07-18 00:34:33 -070050 make sandbox_defconfig all NO_SDL=1
51 ./u-boot
Simon Glass75b3c3a2014-03-22 17:12:59 -060052
Simon Glass75b3c3a2014-03-22 17:12:59 -060053U-Boot will start on your computer, showing a sandbox emulation of the serial
Bin Meng49116e62019-07-18 00:34:33 -070054console::
Simon Glass75b3c3a2014-03-22 17:12:59 -060055
Bin Meng49116e62019-07-18 00:34:33 -070056 U-Boot 2014.04 (Mar 20 2014 - 19:06:00)
Simon Glass75b3c3a2014-03-22 17:12:59 -060057
Bin Meng49116e62019-07-18 00:34:33 -070058 DRAM: 128 MiB
59 Using default environment
Simon Glass75b3c3a2014-03-22 17:12:59 -060060
Bin Meng49116e62019-07-18 00:34:33 -070061 In: serial
62 Out: lcd
63 Err: lcd
64 =>
Simon Glass75b3c3a2014-03-22 17:12:59 -060065
66You can issue commands as your would normally. If the command you want is
67not supported you can add it to include/configs/sandbox.h.
68
69To exit, type 'reset' or press Ctrl-C.
70
71
72Console / LCD support
73---------------------
74
75Assuming that CONFIG_SANDBOX_SDL is defined when building, you can run the
Bin Meng49116e62019-07-18 00:34:33 -070076sandbox with LCD and keyboard emulation, using something like::
Simon Glass75b3c3a2014-03-22 17:12:59 -060077
78 ./u-boot -d u-boot.dtb -l
79
80This will start U-Boot with a window showing the contents of the LCD. If
81that window has the focus then you will be able to type commands as you
82would on the console. You can adjust the display settings in the device
83tree file - see arch/sandbox/dts/sandbox.dts.
84
85
86Command-line Options
87--------------------
88
89Various options are available, mostly for test purposes. Use -h to see
90available options. Some of these are described below.
91
92The terminal is normally in what is called 'raw-with-sigs' mode. This means
93that you can use arrow keys for command editing and history, but if you
94press Ctrl-C, U-Boot will exit instead of handling this as a keypress.
95
96Other options are 'raw' (so Ctrl-C is handled within U-Boot) and 'cooked'
97(where the terminal is in cooked mode and cursor keys will not work, Ctrl-C
98will exit).
99
100As mentioned above, -l causes the LCD emulation window to be shown.
101
102A device tree binary file can be provided with -d. If you edit the source
103(it is stored at arch/sandbox/dts/sandbox.dts) you must rebuild U-Boot to
104recreate the binary file.
105
Simon Glass189882c2019-09-25 08:56:07 -0600106To use the default device tree, use -D. To use the test device tree, use -T.
107
Simon Glass75b3c3a2014-03-22 17:12:59 -0600108To execute commands directly, use the -c option. You can specify a single
109command, or multiple commands separated by a semicolon, as is normal in
Trevor Woerner1f154a62018-04-30 19:13:05 -0400110U-Boot. Be careful with quoting as the shell will normally process and
111swallow quotes. When -c is used, U-Boot exits after the command is complete,
Simon Glass75b3c3a2014-03-22 17:12:59 -0600112but you can force it to go to interactive mode instead with -i.
113
114
115Memory Emulation
116----------------
117
118Memory emulation is supported, with the size set by CONFIG_SYS_SDRAM_SIZE.
119The -m option can be used to read memory from a file on start-up and write
120it when shutting down. This allows preserving of memory contents across
121test runs. You can tell U-Boot to remove the memory file after it is read
122(on start-up) with the --rm_memory option.
123
124To access U-Boot's emulated memory within the code, use map_sysmem(). This
125function is used throughout U-Boot to ensure that emulated memory is used
126rather than the U-Boot application memory. This provides memory starting
127at 0 and extending to the size of the emulation.
128
129
130Storing State
131-------------
132
133With sandbox you can write drivers which emulate the operation of drivers on
134real devices. Some of these drivers may want to record state which is
135preserved across U-Boot runs. This is particularly useful for testing. For
136example, the contents of a SPI flash chip should not disappear just because
137U-Boot exits.
138
139State is stored in a device tree file in a simple format which is driver-
140specific. You then use the -s option to specify the state file. Use -r to
141make U-Boot read the state on start-up (otherwise it starts empty) and -w
142to write it on exit (otherwise the stored state is left unchanged and any
143changes U-Boot made will be lost). You can also use -n to tell U-Boot to
144ignore any problems with missing state. This is useful when first running
145since the state file will be empty.
146
147The device tree file has one node for each driver - the driver can store
148whatever properties it likes in there. See 'Writing Sandbox Drivers' below
149for more details on how to get drivers to read and write their state.
150
151
152Running and Booting
153-------------------
154
155Since there is no machine architecture, sandbox U-Boot cannot actually boot
156a kernel, but it does support the bootm command. Filesystems, memory
157commands, hashing, FIT images, verified boot and many other features are
158supported.
159
160When 'bootm' runs a kernel, sandbox will exit, as U-Boot does on a real
161machine. Of course in this case, no kernel is run.
162
163It is also possible to tell U-Boot that it has jumped from a temporary
164previous U-Boot binary, with the -j option. That binary is automatically
165removed by the U-Boot that gets the -j option. This allows you to write
166tests which emulate the action of chain-loading U-Boot, typically used in
167a situation where a second 'updatable' U-Boot is stored on your board. It
168is very risky to overwrite or upgrade the only U-Boot on a board, since a
169power or other failure will brick the board and require return to the
170manufacturer in the case of a consumer device.
171
172
173Supported Drivers
174-----------------
175
176U-Boot sandbox supports these emulations:
177
178- Block devices
179- Chrome OS EC
180- GPIO
181- Host filesystem (access files on the host from within U-Boot)
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500182- I2C
Simon Glass75b3c3a2014-03-22 17:12:59 -0600183- Keyboard (Chrome OS)
184- LCD
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500185- Network
Simon Glass75b3c3a2014-03-22 17:12:59 -0600186- Serial (for console only)
187- Sound (incomplete - see sandbox_sdl_sound_init() for details)
188- SPI
189- SPI flash
190- TPM (Trusted Platform Module)
191
Trevor Woerner1f154a62018-04-30 19:13:05 -0400192A wide range of commands are implemented. Filesystems which use a block
Simon Glass75b3c3a2014-03-22 17:12:59 -0600193device are supported.
194
Simon Glass89b199c2016-05-14 18:49:27 -0600195Also sandbox supports driver model (CONFIG_DM) and associated commands.
Simon Glass744d9852011-10-10 08:22:14 +0000196
197
Simon Glass969c8f42018-09-18 18:43:28 -0600198Sandbox Variants
199----------------
200
201There are unfortunately quite a few variants at present:
202
Bin Meng49116e62019-07-18 00:34:33 -0700203sandbox:
204 should be used for most tests
205sandbox64:
206 special build that forces a 64-bit host
207sandbox_flattree:
208 builds with dev_read\_...() functions defined as inline.
209 We need this build so that we can test those inline functions, and we
210 cannot build with both the inline functions and the non-inline functions
211 since they are named the same.
Bin Meng49116e62019-07-18 00:34:33 -0700212sandbox_spl:
213 builds sandbox with SPL support, so you can run spl/u-boot-spl
214 and it will start up and then load ./u-boot. It is also possible to
215 run ./u-boot directly.
Simon Glass969c8f42018-09-18 18:43:28 -0600216
Tom Riniee8da592019-10-11 16:28:47 -0400217Of these sandbox_spl can probably be removed since it is a superset of sandbox.
Simon Glass969c8f42018-09-18 18:43:28 -0600218
219Most of the config options should be identical between these variants.
220
221
Joe Hershbergera346ca72015-03-22 17:09:21 -0500222Linux RAW Networking Bridge
223---------------------------
224
225The sandbox_eth_raw driver bridges traffic between the bottom of the network
226stack and the RAW sockets API in Linux. This allows much of the U-Boot network
227functionality to be tested in sandbox against real network traffic.
228
229For Ethernet network adapters, the bridge utilizes the RAW AF_PACKET API. This
230is needed to get access to the lowest level of the network stack in Linux. This
231means that all of the Ethernet frame is included. This allows the U-Boot network
232stack to be fully used. In other words, nothing about the Linux network stack is
233involved in forming the packets that end up on the wire. To receive the
234responses to packets sent from U-Boot the network interface has to be set to
235promiscuous mode so that the network card won't filter out packets not destined
236for its configured (on Linux) MAC address.
237
238The RAW sockets Ethernet API requires elevated privileges in Linux. You can
Bin Meng49116e62019-07-18 00:34:33 -0700239either run as root, or you can add the capability needed like so::
Joe Hershbergera346ca72015-03-22 17:09:21 -0500240
Bin Meng49116e62019-07-18 00:34:33 -0700241 sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot
Joe Hershbergera346ca72015-03-22 17:09:21 -0500242
243The default device tree for sandbox includes an entry for eth0 on the sandbox
244host machine whose alias is "eth1". The following are a few examples of network
245operations being tested on the eth0 interface.
246
Bin Meng49116e62019-07-18 00:34:33 -0700247.. code-block:: none
Joe Hershbergera346ca72015-03-22 17:09:21 -0500248
Bin Meng49116e62019-07-18 00:34:33 -0700249 sudo /path/to/u-boot -D
Joe Hershbergera346ca72015-03-22 17:09:21 -0500250
Bin Meng49116e62019-07-18 00:34:33 -0700251 DHCP
252 ....
Joe Hershbergera346ca72015-03-22 17:09:21 -0500253
Bin Meng49116e62019-07-18 00:34:33 -0700254 setenv autoload no
255 setenv ethrotate no
256 setenv ethact eth1
257 dhcp
Joe Hershbergera346ca72015-03-22 17:09:21 -0500258
Bin Meng49116e62019-07-18 00:34:33 -0700259 PING
260 ....
Joe Hershbergera346ca72015-03-22 17:09:21 -0500261
Bin Meng49116e62019-07-18 00:34:33 -0700262 setenv autoload no
263 setenv ethrotate no
264 setenv ethact eth1
265 dhcp
266 ping $gatewayip
Joe Hershbergera346ca72015-03-22 17:09:21 -0500267
Bin Meng49116e62019-07-18 00:34:33 -0700268 TFTP
269 ....
270
271 setenv autoload no
272 setenv ethrotate no
273 setenv ethact eth1
274 dhcp
275 setenv serverip WWW.XXX.YYY.ZZZ
276 tftpboot u-boot.bin
Joe Hershbergera346ca72015-03-22 17:09:21 -0500277
Trevor Woerner1f154a62018-04-30 19:13:05 -0400278The bridge also supports (to a lesser extent) the localhost interface, 'lo'.
Joe Hershberger22f68522015-03-22 17:09:23 -0500279
280The 'lo' interface cannot use the RAW AF_PACKET API because the lo interface
281doesn't support Ethernet-level traffic. It is a higher-level interface that is
282expected only to be used at the AF_INET level of the API. As such, the most raw
283we can get on that interface is the RAW AF_INET API on UDP. This allows us to
284set the IP_HDRINCL option to include everything except the Ethernet header in
285the packets we send and receive.
286
287Because only UDP is supported, ICMP traffic will not work, so expect that ping
288commands will time out.
289
290The default device tree for sandbox includes an entry for lo on the sandbox
291host machine whose alias is "eth5". The following is an example of a network
292operation being tested on the lo interface.
293
Bin Meng49116e62019-07-18 00:34:33 -0700294.. code-block:: none
Joe Hershberger22f68522015-03-22 17:09:23 -0500295
Bin Meng49116e62019-07-18 00:34:33 -0700296 TFTP
297 ....
298
299 setenv ethrotate no
300 setenv ethact eth5
301 tftpboot u-boot.bin
Joe Hershberger22f68522015-03-22 17:09:23 -0500302
Joe Hershbergera346ca72015-03-22 17:09:21 -0500303
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700304SPI Emulation
305-------------
306
307Sandbox supports SPI and SPI flash emulation.
308
Bin Meng49116e62019-07-18 00:34:33 -0700309This is controlled by the spi_sf argument, the format of which is::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700310
311 bus:cs:device:file
312
313 bus - SPI bus number
314 cs - SPI chip select number
315 device - SPI device emulation name
316 file - File on disk containing the data
317
Bin Meng49116e62019-07-18 00:34:33 -0700318For example::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700319
Bin Meng49116e62019-07-18 00:34:33 -0700320 dd if=/dev/zero of=spi.bin bs=1M count=4
321 ./u-boot --spi_sf 0:0:M25P16:spi.bin
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700322
Bin Meng49116e62019-07-18 00:34:33 -0700323With this setup you can issue SPI flash commands as normal::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700324
Bin Meng49116e62019-07-18 00:34:33 -0700325 =>sf probe
326 SF: Detected M25P16 with page size 64 KiB, total 2 MiB
327 =>sf read 0 0 10000
328 SF: 65536 bytes @ 0x0 Read: OK
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700329
330Since this is a full SPI emulation (rather than just flash), you can
Bin Meng49116e62019-07-18 00:34:33 -0700331also use low-level SPI commands::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700332
Bin Meng49116e62019-07-18 00:34:33 -0700333 =>sspi 0:0 32 9f
334 FF202015
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700335
336This is issuing a READ_ID command and getting back 20 (ST Micro) part
3370x2015 (the M25P16).
338
339Drivers are connected to a particular bus/cs using sandbox's state
340structure (see the 'spi' member). A set of operations must be provided
341for each driver.
342
343
344Configuration settings for the curious are:
345
Bin Meng49116e62019-07-18 00:34:33 -0700346CONFIG_SANDBOX_SPI_MAX_BUS:
347 The maximum number of SPI buses supported by the driver (default 1).
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700348
Bin Meng49116e62019-07-18 00:34:33 -0700349CONFIG_SANDBOX_SPI_MAX_CS:
350 The maximum number of chip selects supported by the driver (default 10).
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700351
Bin Meng49116e62019-07-18 00:34:33 -0700352CONFIG_SPI_IDLE_VAL:
353 The idle value on the SPI bus
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700354
355
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200356Block Device Emulation
357----------------------
358
359U-Boot can use raw disk images for block device emulation. To e.g. list
360the contents of the root directory on the second partion of the image
Bin Meng49116e62019-07-18 00:34:33 -0700361"disk.raw", you can use the following commands::
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200362
Bin Meng49116e62019-07-18 00:34:33 -0700363 =>host bind 0 ./disk.raw
364 =>ls host 0:2
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200365
Bin Meng49116e62019-07-18 00:34:33 -0700366A disk image can be created using the following commands::
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200367
Bin Meng49116e62019-07-18 00:34:33 -0700368 $> truncate -s 1200M ./disk.raw
369 $> echo -e "label: gpt\n,64M,U\n,,L" | /usr/sbin/sgdisk ./disk.raw
370 $> lodev=`sudo losetup -P -f --show ./disk.raw`
371 $> sudo mkfs.vfat -n EFI -v ${lodev}p1
372 $> sudo mkfs.ext4 -L ROOT -v ${lodev}p2
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200373
Bin Meng49116e62019-07-18 00:34:33 -0700374or utilize the device described in test/py/make_test_disk.py::
Alison Chaikenbf6d76b2017-09-09 23:47:12 -0700375
376 #!/usr/bin/python
377 import make_test_disk
378 make_test_disk.makeDisk()
Stefan BrĂ¼ns2945eb72016-08-11 22:52:03 +0200379
Simon Glass75b3c3a2014-03-22 17:12:59 -0600380Writing Sandbox Drivers
381-----------------------
Simon Glass744d9852011-10-10 08:22:14 +0000382
Simon Glass75b3c3a2014-03-22 17:12:59 -0600383Generally you should put your driver in a file containing the word 'sandbox'
384and put it in the same directory as other drivers of its type. You can then
385implement the same hooks as the other drivers.
386
387To access U-Boot's emulated memory, use map_sysmem() as mentioned above.
388
389If your driver needs to store configuration or state (such as SPI flash
390contents or emulated chip registers), you can use the device tree as
391described above. Define handlers for this with the SANDBOX_STATE_IO macro.
392See arch/sandbox/include/asm/state.h for documentation. In short you provide
393a node name, compatible string and functions to read and write the state.
394Since writing the state can expand the device tree, you may need to use
395state_setprop() which does this automatically and avoids running out of
396space. See existing code for examples.
397
398
Simon Glass001d1882019-04-08 13:20:41 -0600399Debugging the init sequence
400---------------------------
401
Bin Meng49116e62019-07-18 00:34:33 -0700402If you get a failure in the initcall sequence, like this::
Simon Glass001d1882019-04-08 13:20:41 -0600403
404 initcall sequence 0000560775957c80 failed at call 0000000000048134 (err=-96)
405
Bin Meng49116e62019-07-18 00:34:33 -0700406Then you use can use grep to see which init call failed, e.g.::
Simon Glass001d1882019-04-08 13:20:41 -0600407
408 $ grep 0000000000048134 u-boot.map
409 stdio_add_devices
410
Bin Meng49116e62019-07-18 00:34:33 -0700411Of course another option is to run it with a debugger such as gdb::
Simon Glass001d1882019-04-08 13:20:41 -0600412
413 $ gdb u-boot
414 ...
415 (gdb) br initcall.h:41
416 Breakpoint 1 at 0x4db9d: initcall.h:41. (2 locations)
417
418Note that two locations are reported, since this function is used in both
419board_init_f() and board_init_r().
420
Bin Meng49116e62019-07-18 00:34:33 -0700421.. code-block:: none
422
Simon Glass001d1882019-04-08 13:20:41 -0600423 (gdb) r
424 Starting program: /tmp/b/sandbox/u-boot
425 [Thread debugging using libthread_db enabled]
426 Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
427
428 U-Boot 2018.09-00264-ge0c2ba9814-dirty (Sep 22 2018 - 12:21:46 -0600)
429
430 DRAM: 128 MiB
431 MMC:
432
433 Breakpoint 1, initcall_run_list (init_sequence=0x5555559619e0 <init_sequence_f>)
434 at /scratch/sglass/cosarm/src/third_party/u-boot/files/include/initcall.h:41
435 41 printf("initcall sequence %p failed at call %p (err=%d)\n",
436 (gdb) print *init_fnc_ptr
437 $1 = (const init_fnc_t) 0x55555559c114 <stdio_add_devices>
438 (gdb)
439
440
441This approach can be used on normal boards as well as sandbox.
442
443
Simon Glasse8a7b302019-05-18 11:59:47 -0600444SDL_CONFIG
445----------
446
447If sdl-config is on a different path from the default, set the SDL_CONFIG
448environment variable to the correct pathname before building U-Boot.
449
450
Simon Glass80b7cb82019-05-18 11:59:50 -0600451Using valgrind / memcheck
452-------------------------
453
Bin Meng49116e62019-07-18 00:34:33 -0700454It is possible to run U-Boot under valgrind to check memory allocations::
Simon Glass80b7cb82019-05-18 11:59:50 -0600455
456 valgrind u-boot
457
458If you are running sandbox SPL or TPL, then valgrind will not by default
459notice when U-Boot jumps from TPL to SPL, or from SPL to U-Boot proper. To
Bin Meng49116e62019-07-18 00:34:33 -0700460fix this, use::
Simon Glass80b7cb82019-05-18 11:59:50 -0600461
462 valgrind --trace-children=yes u-boot
463
464
Simon Glass75b3c3a2014-03-22 17:12:59 -0600465Testing
466-------
467
468U-Boot sandbox can be used to run various tests, mostly in the test/
469directory. These include:
470
Bin Meng49116e62019-07-18 00:34:33 -0700471command_ut:
472 Unit tests for command parsing and handling
473compression:
474 Unit tests for U-Boot's compression algorithms, useful for
475 security checking. It supports gzip, bzip2, lzma and lzo.
476driver model:
477 Run this pytest::
478
479 ./test/py/test.py --bd sandbox --build -k ut_dm -v
480
481image:
482 Unit tests for images:
483 test/image/test-imagetools.sh - multi-file images
484 test/image/test-fit.py - FIT images
485tracing:
486 test/trace/test-trace.sh tests the tracing system (see README.trace)
487verified boot:
488 See test/vboot/vboot_test.sh for this
Simon Glass75b3c3a2014-03-22 17:12:59 -0600489
490If you change or enhance any of the above subsystems, you shold write or
491expand a test and include it with your patch series submission. Test
492coverage in U-Boot is limited, as we need to work to improve it.
493
494Note that many of these tests are implemented as commands which you can
495run natively on your board if desired (and enabled).
496
Simon Glass9946d552018-11-15 18:43:59 -0700497To run all tests use "make check".
498
Simon Glass189882c2019-09-25 08:56:07 -0600499To run a single test in an existing sandbox build, you can use -T to use the
500test device tree, and -c to select the test:
501
502 /tmp/b/sandbox/u-boot -T -c "ut dm pci_busdev"
503
504This runs dm_test_pci_busdev() which is in test/dm/pci.c
505
Simon Glass9946d552018-11-15 18:43:59 -0700506
507Memory Map
508----------
509
510Sandbox has its own emulated memory starting at 0. Here are some of the things
511that are mapped into that memory:
512
Bin Meng49116e62019-07-18 00:34:33 -0700513======= ======================== ===============================
514Addr Config Usage
515======= ======================== ===============================
Simon Glass9946d552018-11-15 18:43:59 -0700516 0 CONFIG_SYS_FDT_LOAD_ADDR Device tree
517 e000 CONFIG_BLOBLIST_ADDR Blob list
518 10000 CONFIG_MALLOC_F_ADDR Early memory allocation
Simon Glassa1396cd2019-04-08 13:20:44 -0600519 f0000 CONFIG_PRE_CON_BUF_ADDR Pre-console buffer
520 100000 CONFIG_TRACE_EARLY_ADDR Early trace buffer (if enabled)
Bin Meng49116e62019-07-18 00:34:33 -0700521======= ======================== ===============================