blob: f8804e1f414a20fa97f36f44e0758021454b2fb2 [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
Simon Glasse1b12e32021-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 Glass744d9852011-10-10 08:22:14 +000026CONFIG_SANDBOX is defined when building a native board.
27
Simon Glass9b250ac2014-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 Glass744d9852011-10-10 08:22:14 +000030
31CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian
32machines.
33
Mario Sixc6b89f32018-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 Meng226b50b2017-08-01 16:33:34 -070039
Simon Glass744d9852011-10-10 08:22:14 +000040Note that standalone/API support is not available at present.
41
Simon Glass75b3c3a2014-03-22 17:12:59 -060042
Simon Glassa1f49ab2020-03-18 09:42:39 -060043Prerequisites
44-------------
45
Simon Glass6a2626a2021-07-18 14:14:24 -060046Install the dependencies noted in :doc:`../build/gcc`.
Simon Glassa1f49ab2020-03-18 09:42:39 -060047
48
Simon Glass75b3c3a2014-03-22 17:12:59 -060049Basic Operation
50---------------
51
Bin Meng49116e62019-07-18 00:34:33 -070052To run sandbox U-Boot use something like::
Simon Glass75b3c3a2014-03-22 17:12:59 -060053
Jagannadha Sutradharudu Teki6b1978f2014-08-31 21:19:43 +053054 make sandbox_defconfig all
Simon Glass75b3c3a2014-03-22 17:12:59 -060055 ./u-boot
56
Bin Meng49116e62019-07-18 00:34:33 -070057Note: If you get errors about 'sdl-config: Command not found' you may need to
Simon Glass96d0cd42020-02-03 07:36:12 -070058install libsdl2.0-dev or similar to get SDL support. Alternatively you can
Bin Meng49116e62019-07-18 00:34:33 -070059build sandbox without SDL (i.e. no display/keyboard support) by removing
60the CONFIG_SANDBOX_SDL line in include/configs/sandbox.h or using::
Simon Glass75b3c3a2014-03-22 17:12:59 -060061
Bin Meng49116e62019-07-18 00:34:33 -070062 make sandbox_defconfig all NO_SDL=1
63 ./u-boot
Simon Glass75b3c3a2014-03-22 17:12:59 -060064
Simon Glass75b3c3a2014-03-22 17:12:59 -060065U-Boot will start on your computer, showing a sandbox emulation of the serial
Bin Meng49116e62019-07-18 00:34:33 -070066console::
Simon Glass75b3c3a2014-03-22 17:12:59 -060067
Bin Meng49116e62019-07-18 00:34:33 -070068 U-Boot 2014.04 (Mar 20 2014 - 19:06:00)
Simon Glass75b3c3a2014-03-22 17:12:59 -060069
Bin Meng49116e62019-07-18 00:34:33 -070070 DRAM: 128 MiB
71 Using default environment
Simon Glass75b3c3a2014-03-22 17:12:59 -060072
Bin Meng49116e62019-07-18 00:34:33 -070073 In: serial
74 Out: lcd
75 Err: lcd
76 =>
Simon Glass75b3c3a2014-03-22 17:12:59 -060077
78You can issue commands as your would normally. If the command you want is
79not supported you can add it to include/configs/sandbox.h.
80
Simon Glass2a8dc4c2021-02-07 14:27:07 -070081To exit, type 'poweroff' or press Ctrl-C.
Simon Glass75b3c3a2014-03-22 17:12:59 -060082
83
84Console / LCD support
85---------------------
86
87Assuming that CONFIG_SANDBOX_SDL is defined when building, you can run the
Bin Meng49116e62019-07-18 00:34:33 -070088sandbox with LCD and keyboard emulation, using something like::
Simon Glass75b3c3a2014-03-22 17:12:59 -060089
90 ./u-boot -d u-boot.dtb -l
91
92This will start U-Boot with a window showing the contents of the LCD. If
93that window has the focus then you will be able to type commands as you
94would on the console. You can adjust the display settings in the device
95tree file - see arch/sandbox/dts/sandbox.dts.
96
97
98Command-line Options
99--------------------
100
101Various options are available, mostly for test purposes. Use -h to see
Heinrich Schuchardt9c22adb2020-09-19 20:05:47 +0200102available options. Some of these are described below:
Simon Glass75b3c3a2014-03-22 17:12:59 -0600103
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100104-t, --terminal <arg>
105 The terminal is normally in what is called 'raw-with-sigs' mode. This means
Heinrich Schuchardt9c22adb2020-09-19 20:05:47 +0200106 that you can use arrow keys for command editing and history, but if you
107 press Ctrl-C, U-Boot will exit instead of handling this as a keypress.
108 Other options are 'raw' (so Ctrl-C is handled within U-Boot) and 'cooked'
109 (where the terminal is in cooked mode and cursor keys will not work, Ctrl-C
110 will exit).
Simon Glass75b3c3a2014-03-22 17:12:59 -0600111
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100112-l
113 Show the LCD emulation window.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600114
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100115-d <device_tree>
116 A device tree binary file can be provided with -d. If you edit the source
Heinrich Schuchardt9c22adb2020-09-19 20:05:47 +0200117 (it is stored at arch/sandbox/dts/sandbox.dts) you must rebuild U-Boot to
118 recreate the binary file.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600119
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100120-D
121 To use the default device tree, use -D.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600122
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100123-T
124 To use the test device tree, use -T.
Simon Glass189882c2019-09-25 08:56:07 -0600125
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100126-c [<cmd>;]<cmd>
127 To execute commands directly, use the -c option. You can specify a single
Heinrich Schuchardt9c22adb2020-09-19 20:05:47 +0200128 command, or multiple commands separated by a semicolon, as is normal in
129 U-Boot. Be careful with quoting as the shell will normally process and
130 swallow quotes. When -c is used, U-Boot exits after the command is complete,
131 but you can force it to go to interactive mode instead with -i.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600132
Heinrich Schuchardt3096ee82020-12-30 18:10:24 +0100133-i
134 Go to interactive mode after executing the commands specified by -c.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600135
Heinrich Schuchardt43db0752020-12-30 18:07:48 +0100136Environment Variables
137---------------------
138
139UBOOT_SB_TIME_OFFSET
140 This environment variable stores the offset of the emulated real time clock
141 to the host's real time clock in seconds. The offset defaults to zero.
142
Simon Glass75b3c3a2014-03-22 17:12:59 -0600143Memory Emulation
144----------------
145
146Memory emulation is supported, with the size set by CONFIG_SYS_SDRAM_SIZE.
147The -m option can be used to read memory from a file on start-up and write
148it when shutting down. This allows preserving of memory contents across
149test runs. You can tell U-Boot to remove the memory file after it is read
150(on start-up) with the --rm_memory option.
151
152To access U-Boot's emulated memory within the code, use map_sysmem(). This
153function is used throughout U-Boot to ensure that emulated memory is used
154rather than the U-Boot application memory. This provides memory starting
155at 0 and extending to the size of the emulation.
156
157
158Storing State
159-------------
160
161With sandbox you can write drivers which emulate the operation of drivers on
162real devices. Some of these drivers may want to record state which is
163preserved across U-Boot runs. This is particularly useful for testing. For
164example, the contents of a SPI flash chip should not disappear just because
165U-Boot exits.
166
167State is stored in a device tree file in a simple format which is driver-
168specific. You then use the -s option to specify the state file. Use -r to
169make U-Boot read the state on start-up (otherwise it starts empty) and -w
170to write it on exit (otherwise the stored state is left unchanged and any
171changes U-Boot made will be lost). You can also use -n to tell U-Boot to
172ignore any problems with missing state. This is useful when first running
173since the state file will be empty.
174
175The device tree file has one node for each driver - the driver can store
176whatever properties it likes in there. See 'Writing Sandbox Drivers' below
177for more details on how to get drivers to read and write their state.
178
179
180Running and Booting
181-------------------
182
183Since there is no machine architecture, sandbox U-Boot cannot actually boot
184a kernel, but it does support the bootm command. Filesystems, memory
185commands, hashing, FIT images, verified boot and many other features are
186supported.
187
188When 'bootm' runs a kernel, sandbox will exit, as U-Boot does on a real
189machine. Of course in this case, no kernel is run.
190
191It is also possible to tell U-Boot that it has jumped from a temporary
192previous U-Boot binary, with the -j option. That binary is automatically
193removed by the U-Boot that gets the -j option. This allows you to write
194tests which emulate the action of chain-loading U-Boot, typically used in
195a situation where a second 'updatable' U-Boot is stored on your board. It
196is very risky to overwrite or upgrade the only U-Boot on a board, since a
197power or other failure will brick the board and require return to the
198manufacturer in the case of a consumer device.
199
200
201Supported Drivers
202-----------------
203
204U-Boot sandbox supports these emulations:
205
206- Block devices
207- Chrome OS EC
208- GPIO
209- Host filesystem (access files on the host from within U-Boot)
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500210- I2C
Simon Glass75b3c3a2014-03-22 17:12:59 -0600211- Keyboard (Chrome OS)
212- LCD
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500213- Network
Simon Glass75b3c3a2014-03-22 17:12:59 -0600214- Serial (for console only)
215- Sound (incomplete - see sandbox_sdl_sound_init() for details)
216- SPI
217- SPI flash
218- TPM (Trusted Platform Module)
219
Trevor Woerner1f154a62018-04-30 19:13:05 -0400220A wide range of commands are implemented. Filesystems which use a block
Simon Glass75b3c3a2014-03-22 17:12:59 -0600221device are supported.
222
Simon Glass89b199c2016-05-14 18:49:27 -0600223Also sandbox supports driver model (CONFIG_DM) and associated commands.
Simon Glass744d9852011-10-10 08:22:14 +0000224
225
Simon Glass969c8f42018-09-18 18:43:28 -0600226Sandbox Variants
227----------------
228
229There are unfortunately quite a few variants at present:
230
Bin Meng49116e62019-07-18 00:34:33 -0700231sandbox:
232 should be used for most tests
233sandbox64:
234 special build that forces a 64-bit host
235sandbox_flattree:
236 builds with dev_read\_...() functions defined as inline.
237 We need this build so that we can test those inline functions, and we
238 cannot build with both the inline functions and the non-inline functions
239 since they are named the same.
Bin Meng49116e62019-07-18 00:34:33 -0700240sandbox_spl:
241 builds sandbox with SPL support, so you can run spl/u-boot-spl
242 and it will start up and then load ./u-boot. It is also possible to
243 run ./u-boot directly.
Simon Glass969c8f42018-09-18 18:43:28 -0600244
Tom Riniee8da592019-10-11 16:28:47 -0400245Of these sandbox_spl can probably be removed since it is a superset of sandbox.
Simon Glass969c8f42018-09-18 18:43:28 -0600246
247Most of the config options should be identical between these variants.
248
249
Joe Hershbergera346ca72015-03-22 17:09:21 -0500250Linux RAW Networking Bridge
251---------------------------
252
253The sandbox_eth_raw driver bridges traffic between the bottom of the network
254stack and the RAW sockets API in Linux. This allows much of the U-Boot network
255functionality to be tested in sandbox against real network traffic.
256
257For Ethernet network adapters, the bridge utilizes the RAW AF_PACKET API. This
258is needed to get access to the lowest level of the network stack in Linux. This
259means that all of the Ethernet frame is included. This allows the U-Boot network
260stack to be fully used. In other words, nothing about the Linux network stack is
261involved in forming the packets that end up on the wire. To receive the
262responses to packets sent from U-Boot the network interface has to be set to
263promiscuous mode so that the network card won't filter out packets not destined
264for its configured (on Linux) MAC address.
265
266The RAW sockets Ethernet API requires elevated privileges in Linux. You can
Bin Meng49116e62019-07-18 00:34:33 -0700267either run as root, or you can add the capability needed like so::
Joe Hershbergera346ca72015-03-22 17:09:21 -0500268
Bin Meng49116e62019-07-18 00:34:33 -0700269 sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot
Joe Hershbergera346ca72015-03-22 17:09:21 -0500270
271The default device tree for sandbox includes an entry for eth0 on the sandbox
272host machine whose alias is "eth1". The following are a few examples of network
273operations being tested on the eth0 interface.
274
Bin Meng49116e62019-07-18 00:34:33 -0700275.. code-block:: none
Joe Hershbergera346ca72015-03-22 17:09:21 -0500276
Bin Meng49116e62019-07-18 00:34:33 -0700277 sudo /path/to/u-boot -D
Joe Hershbergera346ca72015-03-22 17:09:21 -0500278
Bin Meng49116e62019-07-18 00:34:33 -0700279 DHCP
280 ....
Joe Hershbergera346ca72015-03-22 17:09:21 -0500281
Bin Meng49116e62019-07-18 00:34:33 -0700282 setenv autoload no
283 setenv ethrotate no
284 setenv ethact eth1
285 dhcp
Joe Hershbergera346ca72015-03-22 17:09:21 -0500286
Bin Meng49116e62019-07-18 00:34:33 -0700287 PING
288 ....
Joe Hershbergera346ca72015-03-22 17:09:21 -0500289
Bin Meng49116e62019-07-18 00:34:33 -0700290 setenv autoload no
291 setenv ethrotate no
292 setenv ethact eth1
293 dhcp
294 ping $gatewayip
Joe Hershbergera346ca72015-03-22 17:09:21 -0500295
Bin Meng49116e62019-07-18 00:34:33 -0700296 TFTP
297 ....
298
299 setenv autoload no
300 setenv ethrotate no
301 setenv ethact eth1
302 dhcp
303 setenv serverip WWW.XXX.YYY.ZZZ
304 tftpboot u-boot.bin
Joe Hershbergera346ca72015-03-22 17:09:21 -0500305
Trevor Woerner1f154a62018-04-30 19:13:05 -0400306The bridge also supports (to a lesser extent) the localhost interface, 'lo'.
Joe Hershberger22f68522015-03-22 17:09:23 -0500307
308The 'lo' interface cannot use the RAW AF_PACKET API because the lo interface
309doesn't support Ethernet-level traffic. It is a higher-level interface that is
310expected only to be used at the AF_INET level of the API. As such, the most raw
311we can get on that interface is the RAW AF_INET API on UDP. This allows us to
312set the IP_HDRINCL option to include everything except the Ethernet header in
313the packets we send and receive.
314
315Because only UDP is supported, ICMP traffic will not work, so expect that ping
316commands will time out.
317
318The default device tree for sandbox includes an entry for lo on the sandbox
319host machine whose alias is "eth5". The following is an example of a network
320operation being tested on the lo interface.
321
Bin Meng49116e62019-07-18 00:34:33 -0700322.. code-block:: none
Joe Hershberger22f68522015-03-22 17:09:23 -0500323
Bin Meng49116e62019-07-18 00:34:33 -0700324 TFTP
325 ....
326
327 setenv ethrotate no
328 setenv ethact eth5
329 tftpboot u-boot.bin
Joe Hershberger22f68522015-03-22 17:09:23 -0500330
Joe Hershbergera346ca72015-03-22 17:09:21 -0500331
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700332SPI Emulation
333-------------
334
335Sandbox supports SPI and SPI flash emulation.
336
AKASHI Takahiro5e61c4e2020-04-27 15:46:45 +0900337The device can be enabled via a device tree, for example::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700338
AKASHI Takahiro5e61c4e2020-04-27 15:46:45 +0900339 spi@0 {
340 #address-cells = <1>;
341 #size-cells = <0>;
342 reg = <0 1>;
343 compatible = "sandbox,spi";
344 cs-gpios = <0>, <&gpio_a 0>;
345 spi.bin@0 {
346 reg = <0>;
347 compatible = "spansion,m25p16", "jedec,spi-nor";
348 spi-max-frequency = <40000000>;
349 sandbox,filename = "spi.bin";
350 };
351 };
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700352
AKASHI Takahiro5e61c4e2020-04-27 15:46:45 +0900353The file must be created in advance::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700354
AKASHI Takahiro5e61c4e2020-04-27 15:46:45 +0900355 $ dd if=/dev/zero of=spi.bin bs=1M count=2
356 $ u-boot -T
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700357
AKASHI Takahiro5e61c4e2020-04-27 15:46:45 +0900358Here, you can use "-T" or "-D" option to specify test.dtb or u-boot.dtb,
359respectively, or "-d <file>" for your own dtb.
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700360
Bin Meng49116e62019-07-18 00:34:33 -0700361With this setup you can issue SPI flash commands as normal::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700362
Bin Meng49116e62019-07-18 00:34:33 -0700363 =>sf probe
364 SF: Detected M25P16 with page size 64 KiB, total 2 MiB
365 =>sf read 0 0 10000
366 SF: 65536 bytes @ 0x0 Read: OK
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700367
368Since this is a full SPI emulation (rather than just flash), you can
Bin Meng49116e62019-07-18 00:34:33 -0700369also use low-level SPI commands::
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700370
Bin Meng49116e62019-07-18 00:34:33 -0700371 =>sspi 0:0 32 9f
372 FF202015
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700373
374This is issuing a READ_ID command and getting back 20 (ST Micro) part
3750x2015 (the M25P16).
376
Mike Frysingerffdb20b2013-12-03 16:43:27 -0700377
Stefan Brüns2945eb72016-08-11 22:52:03 +0200378Block Device Emulation
379----------------------
380
381U-Boot can use raw disk images for block device emulation. To e.g. list
382the contents of the root directory on the second partion of the image
Bin Meng49116e62019-07-18 00:34:33 -0700383"disk.raw", you can use the following commands::
Stefan Brüns2945eb72016-08-11 22:52:03 +0200384
Bin Meng49116e62019-07-18 00:34:33 -0700385 =>host bind 0 ./disk.raw
386 =>ls host 0:2
Stefan Brüns2945eb72016-08-11 22:52:03 +0200387
Simon Glass17585512021-03-15 18:11:11 +1300388The device can be marked removeable with 'host bind -r'.
389
Bin Meng49116e62019-07-18 00:34:33 -0700390A disk image can be created using the following commands::
Stefan Brüns2945eb72016-08-11 22:52:03 +0200391
Bin Meng49116e62019-07-18 00:34:33 -0700392 $> truncate -s 1200M ./disk.raw
393 $> echo -e "label: gpt\n,64M,U\n,,L" | /usr/sbin/sgdisk ./disk.raw
394 $> lodev=`sudo losetup -P -f --show ./disk.raw`
395 $> sudo mkfs.vfat -n EFI -v ${lodev}p1
396 $> sudo mkfs.ext4 -L ROOT -v ${lodev}p2
Stefan Brüns2945eb72016-08-11 22:52:03 +0200397
Bin Meng49116e62019-07-18 00:34:33 -0700398or utilize the device described in test/py/make_test_disk.py::
Alison Chaikenbf6d76b2017-09-09 23:47:12 -0700399
400 #!/usr/bin/python
401 import make_test_disk
402 make_test_disk.makeDisk()
Stefan Brüns2945eb72016-08-11 22:52:03 +0200403
Simon Glass75b3c3a2014-03-22 17:12:59 -0600404Writing Sandbox Drivers
405-----------------------
Simon Glass744d9852011-10-10 08:22:14 +0000406
Simon Glass75b3c3a2014-03-22 17:12:59 -0600407Generally you should put your driver in a file containing the word 'sandbox'
408and put it in the same directory as other drivers of its type. You can then
409implement the same hooks as the other drivers.
410
411To access U-Boot's emulated memory, use map_sysmem() as mentioned above.
412
413If your driver needs to store configuration or state (such as SPI flash
414contents or emulated chip registers), you can use the device tree as
415described above. Define handlers for this with the SANDBOX_STATE_IO macro.
416See arch/sandbox/include/asm/state.h for documentation. In short you provide
417a node name, compatible string and functions to read and write the state.
418Since writing the state can expand the device tree, you may need to use
419state_setprop() which does this automatically and avoids running out of
420space. See existing code for examples.
421
422
Simon Glass001d1882019-04-08 13:20:41 -0600423Debugging the init sequence
424---------------------------
425
Bin Meng49116e62019-07-18 00:34:33 -0700426If you get a failure in the initcall sequence, like this::
Simon Glass001d1882019-04-08 13:20:41 -0600427
428 initcall sequence 0000560775957c80 failed at call 0000000000048134 (err=-96)
429
Bin Meng49116e62019-07-18 00:34:33 -0700430Then you use can use grep to see which init call failed, e.g.::
Simon Glass001d1882019-04-08 13:20:41 -0600431
432 $ grep 0000000000048134 u-boot.map
433 stdio_add_devices
434
Bin Meng49116e62019-07-18 00:34:33 -0700435Of course another option is to run it with a debugger such as gdb::
Simon Glass001d1882019-04-08 13:20:41 -0600436
437 $ gdb u-boot
438 ...
439 (gdb) br initcall.h:41
440 Breakpoint 1 at 0x4db9d: initcall.h:41. (2 locations)
441
442Note that two locations are reported, since this function is used in both
443board_init_f() and board_init_r().
444
Bin Meng49116e62019-07-18 00:34:33 -0700445.. code-block:: none
446
Simon Glass001d1882019-04-08 13:20:41 -0600447 (gdb) r
448 Starting program: /tmp/b/sandbox/u-boot
449 [Thread debugging using libthread_db enabled]
450 Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
451
452 U-Boot 2018.09-00264-ge0c2ba9814-dirty (Sep 22 2018 - 12:21:46 -0600)
453
454 DRAM: 128 MiB
455 MMC:
456
457 Breakpoint 1, initcall_run_list (init_sequence=0x5555559619e0 <init_sequence_f>)
458 at /scratch/sglass/cosarm/src/third_party/u-boot/files/include/initcall.h:41
459 41 printf("initcall sequence %p failed at call %p (err=%d)\n",
460 (gdb) print *init_fnc_ptr
461 $1 = (const init_fnc_t) 0x55555559c114 <stdio_add_devices>
462 (gdb)
463
464
465This approach can be used on normal boards as well as sandbox.
466
467
Simon Glasse8a7b302019-05-18 11:59:47 -0600468SDL_CONFIG
469----------
470
471If sdl-config is on a different path from the default, set the SDL_CONFIG
472environment variable to the correct pathname before building U-Boot.
473
474
Simon Glass80b7cb82019-05-18 11:59:50 -0600475Using valgrind / memcheck
476-------------------------
477
Bin Meng49116e62019-07-18 00:34:33 -0700478It is possible to run U-Boot under valgrind to check memory allocations::
Simon Glass80b7cb82019-05-18 11:59:50 -0600479
480 valgrind u-boot
481
482If you are running sandbox SPL or TPL, then valgrind will not by default
483notice when U-Boot jumps from TPL to SPL, or from SPL to U-Boot proper. To
Bin Meng49116e62019-07-18 00:34:33 -0700484fix this, use::
Simon Glass80b7cb82019-05-18 11:59:50 -0600485
486 valgrind --trace-children=yes u-boot
487
488
Simon Glass75b3c3a2014-03-22 17:12:59 -0600489Testing
490-------
491
492U-Boot sandbox can be used to run various tests, mostly in the test/
Simon Glasse1b12e32021-03-07 17:35:16 -0700493directory.
Simon Glass75b3c3a2014-03-22 17:12:59 -0600494
Simon Glasse1b12e32021-03-07 17:35:16 -0700495See :doc:`../develop/tests_sandbox` for more information and
496:doc:`../develop/testing` for information about testing generally.
Simon Glass189882c2019-09-25 08:56:07 -0600497
Simon Glass9946d552018-11-15 18:43:59 -0700498
499Memory Map
500----------
501
502Sandbox has its own emulated memory starting at 0. Here are some of the things
503that are mapped into that memory:
504
Bin Meng49116e62019-07-18 00:34:33 -0700505======= ======================== ===============================
506Addr Config Usage
507======= ======================== ===============================
Simon Glass9946d552018-11-15 18:43:59 -0700508 0 CONFIG_SYS_FDT_LOAD_ADDR Device tree
Simon Glassecc1ed92021-07-05 16:32:48 -0600509 c000 CONFIG_BLOBLIST_ADDR Blob list
Simon Glass9946d552018-11-15 18:43:59 -0700510 10000 CONFIG_MALLOC_F_ADDR Early memory allocation
Simon Glassa1396cd2019-04-08 13:20:44 -0600511 f0000 CONFIG_PRE_CON_BUF_ADDR Pre-console buffer
Simon Glass2e059e42021-03-07 17:35:15 -0700512 100000 CONFIG_TRACE_EARLY_ADDR Early trace buffer (if enabled). Also used
513 as the SPL load buffer in spl_test_load().
514 200000 CONFIG_SYS_TEXT_BASE Load buffer for U-Boot (sandbox_spl only)
Bin Meng49116e62019-07-18 00:34:33 -0700515======= ======================== ===============================