Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | .. Copyright (c) 2014 The Chromium OS Authors. |
| 3 | .. sectionauthor:: Simon Glass <sjg@chromium.org> |
| 4 | |
| 5 | Sandbox |
| 6 | ======= |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 7 | |
| 8 | Native Execution of U-Boot |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 9 | -------------------------- |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 10 | |
| 11 | The 'sandbox' architecture is designed to allow U-Boot to run under Linux on |
| 12 | almost any hardware. To achieve this it builds U-Boot (so far as possible) |
| 13 | as a normal C application with a main() and normal C libraries. |
| 14 | |
| 15 | All of U-Boot's architecture-specific code therefore cannot be built as part |
| 16 | of the sandbox U-Boot. The purpose of running U-Boot under Linux is to test |
| 17 | all the generic code, not specific to any one architecture. The idea is to |
| 18 | create unit tests which we can run to test this upper level code. |
| 19 | |
| 20 | CONFIG_SANDBOX is defined when building a native board. |
| 21 | |
Simon Glass | 9b250ac | 2014-09-23 13:05:59 -0600 | [diff] [blame] | 22 | The board name is 'sandbox' but the vendor name is unset, so there is a |
| 23 | single board in board/sandbox. |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 24 | |
| 25 | CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian |
| 26 | machines. |
| 27 | |
Mario Six | c6b89f3 | 2018-02-12 08:05:57 +0100 | [diff] [blame] | 28 | There are two versions of the sandbox: One using 32-bit-wide integers, and one |
| 29 | using 64-bit-wide integers. The 32-bit version can be build and run on either |
| 30 | 32 or 64-bit hosts by either selecting or deselecting CONFIG_SANDBOX_32BIT; by |
| 31 | default, the sandbox it built for a 32-bit host. The sandbox using 64-bit-wide |
| 32 | integers can only be built on 64-bit hosts. |
Bin Meng | 226b50b | 2017-08-01 16:33:34 -0700 | [diff] [blame] | 33 | |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 34 | Note that standalone/API support is not available at present. |
| 35 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 36 | |
Simon Glass | a1f49ab | 2020-03-18 09:42:39 -0600 | [diff] [blame] | 37 | Prerequisites |
| 38 | ------------- |
| 39 | |
| 40 | Here are some packages that are worth installing if you are doing sandbox or |
| 41 | tools development in U-Boot: |
| 42 | |
| 43 | python3-pytest lzma lzma-alone lz4 python3 python3-virtualenv |
| 44 | libssl1.0-dev |
| 45 | |
| 46 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 47 | Basic Operation |
| 48 | --------------- |
| 49 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 50 | To run sandbox U-Boot use something like:: |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 51 | |
Jagannadha Sutradharudu Teki | 6b1978f | 2014-08-31 21:19:43 +0530 | [diff] [blame] | 52 | make sandbox_defconfig all |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 53 | ./u-boot |
| 54 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 55 | Note: If you get errors about 'sdl-config: Command not found' you may need to |
Simon Glass | 96d0cd4 | 2020-02-03 07:36:12 -0700 | [diff] [blame] | 56 | install libsdl2.0-dev or similar to get SDL support. Alternatively you can |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 57 | build sandbox without SDL (i.e. no display/keyboard support) by removing |
| 58 | the CONFIG_SANDBOX_SDL line in include/configs/sandbox.h or using:: |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 59 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 60 | make sandbox_defconfig all NO_SDL=1 |
| 61 | ./u-boot |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 62 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 63 | U-Boot will start on your computer, showing a sandbox emulation of the serial |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 64 | console:: |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 65 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 66 | U-Boot 2014.04 (Mar 20 2014 - 19:06:00) |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 67 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 68 | DRAM: 128 MiB |
| 69 | Using default environment |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 70 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 71 | In: serial |
| 72 | Out: lcd |
| 73 | Err: lcd |
| 74 | => |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 75 | |
| 76 | You can issue commands as your would normally. If the command you want is |
| 77 | not supported you can add it to include/configs/sandbox.h. |
| 78 | |
| 79 | To exit, type 'reset' or press Ctrl-C. |
| 80 | |
| 81 | |
| 82 | Console / LCD support |
| 83 | --------------------- |
| 84 | |
| 85 | Assuming that CONFIG_SANDBOX_SDL is defined when building, you can run the |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 86 | sandbox with LCD and keyboard emulation, using something like:: |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 87 | |
| 88 | ./u-boot -d u-boot.dtb -l |
| 89 | |
| 90 | This will start U-Boot with a window showing the contents of the LCD. If |
| 91 | that window has the focus then you will be able to type commands as you |
| 92 | would on the console. You can adjust the display settings in the device |
| 93 | tree file - see arch/sandbox/dts/sandbox.dts. |
| 94 | |
| 95 | |
| 96 | Command-line Options |
| 97 | -------------------- |
| 98 | |
| 99 | Various options are available, mostly for test purposes. Use -h to see |
| 100 | available options. Some of these are described below. |
| 101 | |
| 102 | The terminal is normally in what is called 'raw-with-sigs' mode. This means |
| 103 | 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 | |
| 106 | Other options are 'raw' (so Ctrl-C is handled within U-Boot) and 'cooked' |
| 107 | (where the terminal is in cooked mode and cursor keys will not work, Ctrl-C |
| 108 | will exit). |
| 109 | |
| 110 | As mentioned above, -l causes the LCD emulation window to be shown. |
| 111 | |
| 112 | A device tree binary file can be provided with -d. If you edit the source |
| 113 | (it is stored at arch/sandbox/dts/sandbox.dts) you must rebuild U-Boot to |
| 114 | recreate the binary file. |
| 115 | |
Simon Glass | 189882c | 2019-09-25 08:56:07 -0600 | [diff] [blame] | 116 | To use the default device tree, use -D. To use the test device tree, use -T. |
| 117 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 118 | To execute commands directly, use the -c option. You can specify a single |
| 119 | command, or multiple commands separated by a semicolon, as is normal in |
Trevor Woerner | 1f154a6 | 2018-04-30 19:13:05 -0400 | [diff] [blame] | 120 | U-Boot. Be careful with quoting as the shell will normally process and |
| 121 | swallow quotes. When -c is used, U-Boot exits after the command is complete, |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 122 | but you can force it to go to interactive mode instead with -i. |
| 123 | |
| 124 | |
| 125 | Memory Emulation |
| 126 | ---------------- |
| 127 | |
| 128 | Memory emulation is supported, with the size set by CONFIG_SYS_SDRAM_SIZE. |
| 129 | The -m option can be used to read memory from a file on start-up and write |
| 130 | it when shutting down. This allows preserving of memory contents across |
| 131 | test runs. You can tell U-Boot to remove the memory file after it is read |
| 132 | (on start-up) with the --rm_memory option. |
| 133 | |
| 134 | To access U-Boot's emulated memory within the code, use map_sysmem(). This |
| 135 | function is used throughout U-Boot to ensure that emulated memory is used |
| 136 | rather than the U-Boot application memory. This provides memory starting |
| 137 | at 0 and extending to the size of the emulation. |
| 138 | |
| 139 | |
| 140 | Storing State |
| 141 | ------------- |
| 142 | |
| 143 | With sandbox you can write drivers which emulate the operation of drivers on |
| 144 | real devices. Some of these drivers may want to record state which is |
| 145 | preserved across U-Boot runs. This is particularly useful for testing. For |
| 146 | example, the contents of a SPI flash chip should not disappear just because |
| 147 | U-Boot exits. |
| 148 | |
| 149 | State is stored in a device tree file in a simple format which is driver- |
| 150 | specific. You then use the -s option to specify the state file. Use -r to |
| 151 | make U-Boot read the state on start-up (otherwise it starts empty) and -w |
| 152 | to write it on exit (otherwise the stored state is left unchanged and any |
| 153 | changes U-Boot made will be lost). You can also use -n to tell U-Boot to |
| 154 | ignore any problems with missing state. This is useful when first running |
| 155 | since the state file will be empty. |
| 156 | |
| 157 | The device tree file has one node for each driver - the driver can store |
| 158 | whatever properties it likes in there. See 'Writing Sandbox Drivers' below |
| 159 | for more details on how to get drivers to read and write their state. |
| 160 | |
| 161 | |
| 162 | Running and Booting |
| 163 | ------------------- |
| 164 | |
| 165 | Since there is no machine architecture, sandbox U-Boot cannot actually boot |
| 166 | a kernel, but it does support the bootm command. Filesystems, memory |
| 167 | commands, hashing, FIT images, verified boot and many other features are |
| 168 | supported. |
| 169 | |
| 170 | When 'bootm' runs a kernel, sandbox will exit, as U-Boot does on a real |
| 171 | machine. Of course in this case, no kernel is run. |
| 172 | |
| 173 | It is also possible to tell U-Boot that it has jumped from a temporary |
| 174 | previous U-Boot binary, with the -j option. That binary is automatically |
| 175 | removed by the U-Boot that gets the -j option. This allows you to write |
| 176 | tests which emulate the action of chain-loading U-Boot, typically used in |
| 177 | a situation where a second 'updatable' U-Boot is stored on your board. It |
| 178 | is very risky to overwrite or upgrade the only U-Boot on a board, since a |
| 179 | power or other failure will brick the board and require return to the |
| 180 | manufacturer in the case of a consumer device. |
| 181 | |
| 182 | |
| 183 | Supported Drivers |
| 184 | ----------------- |
| 185 | |
| 186 | U-Boot sandbox supports these emulations: |
| 187 | |
| 188 | - Block devices |
| 189 | - Chrome OS EC |
| 190 | - GPIO |
| 191 | - Host filesystem (access files on the host from within U-Boot) |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 192 | - I2C |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 193 | - Keyboard (Chrome OS) |
| 194 | - LCD |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 195 | - Network |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 196 | - Serial (for console only) |
| 197 | - Sound (incomplete - see sandbox_sdl_sound_init() for details) |
| 198 | - SPI |
| 199 | - SPI flash |
| 200 | - TPM (Trusted Platform Module) |
| 201 | |
Trevor Woerner | 1f154a6 | 2018-04-30 19:13:05 -0400 | [diff] [blame] | 202 | A wide range of commands are implemented. Filesystems which use a block |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 203 | device are supported. |
| 204 | |
Simon Glass | 89b199c | 2016-05-14 18:49:27 -0600 | [diff] [blame] | 205 | Also sandbox supports driver model (CONFIG_DM) and associated commands. |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 206 | |
| 207 | |
Simon Glass | 969c8f4 | 2018-09-18 18:43:28 -0600 | [diff] [blame] | 208 | Sandbox Variants |
| 209 | ---------------- |
| 210 | |
| 211 | There are unfortunately quite a few variants at present: |
| 212 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 213 | sandbox: |
| 214 | should be used for most tests |
| 215 | sandbox64: |
| 216 | special build that forces a 64-bit host |
| 217 | sandbox_flattree: |
| 218 | builds with dev_read\_...() functions defined as inline. |
| 219 | We need this build so that we can test those inline functions, and we |
| 220 | cannot build with both the inline functions and the non-inline functions |
| 221 | since they are named the same. |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 222 | sandbox_spl: |
| 223 | builds sandbox with SPL support, so you can run spl/u-boot-spl |
| 224 | and it will start up and then load ./u-boot. It is also possible to |
| 225 | run ./u-boot directly. |
Simon Glass | 969c8f4 | 2018-09-18 18:43:28 -0600 | [diff] [blame] | 226 | |
Tom Rini | ee8da59 | 2019-10-11 16:28:47 -0400 | [diff] [blame] | 227 | Of these sandbox_spl can probably be removed since it is a superset of sandbox. |
Simon Glass | 969c8f4 | 2018-09-18 18:43:28 -0600 | [diff] [blame] | 228 | |
| 229 | Most of the config options should be identical between these variants. |
| 230 | |
| 231 | |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 232 | Linux RAW Networking Bridge |
| 233 | --------------------------- |
| 234 | |
| 235 | The sandbox_eth_raw driver bridges traffic between the bottom of the network |
| 236 | stack and the RAW sockets API in Linux. This allows much of the U-Boot network |
| 237 | functionality to be tested in sandbox against real network traffic. |
| 238 | |
| 239 | For Ethernet network adapters, the bridge utilizes the RAW AF_PACKET API. This |
| 240 | is needed to get access to the lowest level of the network stack in Linux. This |
| 241 | means that all of the Ethernet frame is included. This allows the U-Boot network |
| 242 | stack to be fully used. In other words, nothing about the Linux network stack is |
| 243 | involved in forming the packets that end up on the wire. To receive the |
| 244 | responses to packets sent from U-Boot the network interface has to be set to |
| 245 | promiscuous mode so that the network card won't filter out packets not destined |
| 246 | for its configured (on Linux) MAC address. |
| 247 | |
| 248 | The RAW sockets Ethernet API requires elevated privileges in Linux. You can |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 249 | either run as root, or you can add the capability needed like so:: |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 250 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 251 | sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 252 | |
| 253 | The default device tree for sandbox includes an entry for eth0 on the sandbox |
| 254 | host machine whose alias is "eth1". The following are a few examples of network |
| 255 | operations being tested on the eth0 interface. |
| 256 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 257 | .. code-block:: none |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 258 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 259 | sudo /path/to/u-boot -D |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 260 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 261 | DHCP |
| 262 | .... |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 263 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 264 | setenv autoload no |
| 265 | setenv ethrotate no |
| 266 | setenv ethact eth1 |
| 267 | dhcp |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 268 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 269 | PING |
| 270 | .... |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 271 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 272 | setenv autoload no |
| 273 | setenv ethrotate no |
| 274 | setenv ethact eth1 |
| 275 | dhcp |
| 276 | ping $gatewayip |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 277 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 278 | TFTP |
| 279 | .... |
| 280 | |
| 281 | setenv autoload no |
| 282 | setenv ethrotate no |
| 283 | setenv ethact eth1 |
| 284 | dhcp |
| 285 | setenv serverip WWW.XXX.YYY.ZZZ |
| 286 | tftpboot u-boot.bin |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 287 | |
Trevor Woerner | 1f154a6 | 2018-04-30 19:13:05 -0400 | [diff] [blame] | 288 | The bridge also supports (to a lesser extent) the localhost interface, 'lo'. |
Joe Hershberger | 22f6852 | 2015-03-22 17:09:23 -0500 | [diff] [blame] | 289 | |
| 290 | The 'lo' interface cannot use the RAW AF_PACKET API because the lo interface |
| 291 | doesn't support Ethernet-level traffic. It is a higher-level interface that is |
| 292 | expected only to be used at the AF_INET level of the API. As such, the most raw |
| 293 | we can get on that interface is the RAW AF_INET API on UDP. This allows us to |
| 294 | set the IP_HDRINCL option to include everything except the Ethernet header in |
| 295 | the packets we send and receive. |
| 296 | |
| 297 | Because only UDP is supported, ICMP traffic will not work, so expect that ping |
| 298 | commands will time out. |
| 299 | |
| 300 | The default device tree for sandbox includes an entry for lo on the sandbox |
| 301 | host machine whose alias is "eth5". The following is an example of a network |
| 302 | operation being tested on the lo interface. |
| 303 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 304 | .. code-block:: none |
Joe Hershberger | 22f6852 | 2015-03-22 17:09:23 -0500 | [diff] [blame] | 305 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 306 | TFTP |
| 307 | .... |
| 308 | |
| 309 | setenv ethrotate no |
| 310 | setenv ethact eth5 |
| 311 | tftpboot u-boot.bin |
Joe Hershberger | 22f6852 | 2015-03-22 17:09:23 -0500 | [diff] [blame] | 312 | |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 313 | |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 314 | SPI Emulation |
| 315 | ------------- |
| 316 | |
| 317 | Sandbox supports SPI and SPI flash emulation. |
| 318 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 319 | This is controlled by the spi_sf argument, the format of which is:: |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 320 | |
| 321 | bus:cs:device:file |
| 322 | |
| 323 | bus - SPI bus number |
| 324 | cs - SPI chip select number |
| 325 | device - SPI device emulation name |
| 326 | file - File on disk containing the data |
| 327 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 328 | For example:: |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 329 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 330 | dd if=/dev/zero of=spi.bin bs=1M count=4 |
| 331 | ./u-boot --spi_sf 0:0:M25P16:spi.bin |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 332 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 333 | With this setup you can issue SPI flash commands as normal:: |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 334 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 335 | =>sf probe |
| 336 | SF: Detected M25P16 with page size 64 KiB, total 2 MiB |
| 337 | =>sf read 0 0 10000 |
| 338 | SF: 65536 bytes @ 0x0 Read: OK |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 339 | |
| 340 | Since this is a full SPI emulation (rather than just flash), you can |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 341 | also use low-level SPI commands:: |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 342 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 343 | =>sspi 0:0 32 9f |
| 344 | FF202015 |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 345 | |
| 346 | This is issuing a READ_ID command and getting back 20 (ST Micro) part |
| 347 | 0x2015 (the M25P16). |
| 348 | |
| 349 | Drivers are connected to a particular bus/cs using sandbox's state |
| 350 | structure (see the 'spi' member). A set of operations must be provided |
| 351 | for each driver. |
| 352 | |
| 353 | |
| 354 | Configuration settings for the curious are: |
| 355 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 356 | CONFIG_SANDBOX_SPI_MAX_BUS: |
| 357 | The maximum number of SPI buses supported by the driver (default 1). |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 358 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 359 | CONFIG_SANDBOX_SPI_MAX_CS: |
| 360 | The maximum number of chip selects supported by the driver (default 10). |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 361 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 362 | CONFIG_SPI_IDLE_VAL: |
| 363 | The idle value on the SPI bus |
Mike Frysinger | ffdb20b | 2013-12-03 16:43:27 -0700 | [diff] [blame] | 364 | |
| 365 | |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 366 | Block Device Emulation |
| 367 | ---------------------- |
| 368 | |
| 369 | U-Boot can use raw disk images for block device emulation. To e.g. list |
| 370 | the contents of the root directory on the second partion of the image |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 371 | "disk.raw", you can use the following commands:: |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 372 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 373 | =>host bind 0 ./disk.raw |
| 374 | =>ls host 0:2 |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 375 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 376 | A disk image can be created using the following commands:: |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 377 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 378 | $> truncate -s 1200M ./disk.raw |
| 379 | $> echo -e "label: gpt\n,64M,U\n,,L" | /usr/sbin/sgdisk ./disk.raw |
| 380 | $> lodev=`sudo losetup -P -f --show ./disk.raw` |
| 381 | $> sudo mkfs.vfat -n EFI -v ${lodev}p1 |
| 382 | $> sudo mkfs.ext4 -L ROOT -v ${lodev}p2 |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 383 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 384 | or utilize the device described in test/py/make_test_disk.py:: |
Alison Chaiken | bf6d76b | 2017-09-09 23:47:12 -0700 | [diff] [blame] | 385 | |
| 386 | #!/usr/bin/python |
| 387 | import make_test_disk |
| 388 | make_test_disk.makeDisk() |
Stefan BrĂ¼ns | 2945eb7 | 2016-08-11 22:52:03 +0200 | [diff] [blame] | 389 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 390 | Writing Sandbox Drivers |
| 391 | ----------------------- |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 392 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 393 | Generally you should put your driver in a file containing the word 'sandbox' |
| 394 | and put it in the same directory as other drivers of its type. You can then |
| 395 | implement the same hooks as the other drivers. |
| 396 | |
| 397 | To access U-Boot's emulated memory, use map_sysmem() as mentioned above. |
| 398 | |
| 399 | If your driver needs to store configuration or state (such as SPI flash |
| 400 | contents or emulated chip registers), you can use the device tree as |
| 401 | described above. Define handlers for this with the SANDBOX_STATE_IO macro. |
| 402 | See arch/sandbox/include/asm/state.h for documentation. In short you provide |
| 403 | a node name, compatible string and functions to read and write the state. |
| 404 | Since writing the state can expand the device tree, you may need to use |
| 405 | state_setprop() which does this automatically and avoids running out of |
| 406 | space. See existing code for examples. |
| 407 | |
| 408 | |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 409 | Debugging the init sequence |
| 410 | --------------------------- |
| 411 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 412 | If you get a failure in the initcall sequence, like this:: |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 413 | |
| 414 | initcall sequence 0000560775957c80 failed at call 0000000000048134 (err=-96) |
| 415 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 416 | Then you use can use grep to see which init call failed, e.g.:: |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 417 | |
| 418 | $ grep 0000000000048134 u-boot.map |
| 419 | stdio_add_devices |
| 420 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 421 | Of course another option is to run it with a debugger such as gdb:: |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 422 | |
| 423 | $ gdb u-boot |
| 424 | ... |
| 425 | (gdb) br initcall.h:41 |
| 426 | Breakpoint 1 at 0x4db9d: initcall.h:41. (2 locations) |
| 427 | |
| 428 | Note that two locations are reported, since this function is used in both |
| 429 | board_init_f() and board_init_r(). |
| 430 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 431 | .. code-block:: none |
| 432 | |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 433 | (gdb) r |
| 434 | Starting program: /tmp/b/sandbox/u-boot |
| 435 | [Thread debugging using libthread_db enabled] |
| 436 | Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". |
| 437 | |
| 438 | U-Boot 2018.09-00264-ge0c2ba9814-dirty (Sep 22 2018 - 12:21:46 -0600) |
| 439 | |
| 440 | DRAM: 128 MiB |
| 441 | MMC: |
| 442 | |
| 443 | Breakpoint 1, initcall_run_list (init_sequence=0x5555559619e0 <init_sequence_f>) |
| 444 | at /scratch/sglass/cosarm/src/third_party/u-boot/files/include/initcall.h:41 |
| 445 | 41 printf("initcall sequence %p failed at call %p (err=%d)\n", |
| 446 | (gdb) print *init_fnc_ptr |
| 447 | $1 = (const init_fnc_t) 0x55555559c114 <stdio_add_devices> |
| 448 | (gdb) |
| 449 | |
| 450 | |
| 451 | This approach can be used on normal boards as well as sandbox. |
| 452 | |
| 453 | |
Simon Glass | e8a7b30 | 2019-05-18 11:59:47 -0600 | [diff] [blame] | 454 | SDL_CONFIG |
| 455 | ---------- |
| 456 | |
| 457 | If sdl-config is on a different path from the default, set the SDL_CONFIG |
| 458 | environment variable to the correct pathname before building U-Boot. |
| 459 | |
| 460 | |
Simon Glass | 80b7cb8 | 2019-05-18 11:59:50 -0600 | [diff] [blame] | 461 | Using valgrind / memcheck |
| 462 | ------------------------- |
| 463 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 464 | It is possible to run U-Boot under valgrind to check memory allocations:: |
Simon Glass | 80b7cb8 | 2019-05-18 11:59:50 -0600 | [diff] [blame] | 465 | |
| 466 | valgrind u-boot |
| 467 | |
| 468 | If you are running sandbox SPL or TPL, then valgrind will not by default |
| 469 | notice when U-Boot jumps from TPL to SPL, or from SPL to U-Boot proper. To |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 470 | fix this, use:: |
Simon Glass | 80b7cb8 | 2019-05-18 11:59:50 -0600 | [diff] [blame] | 471 | |
| 472 | valgrind --trace-children=yes u-boot |
| 473 | |
| 474 | |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 475 | Testing |
| 476 | ------- |
| 477 | |
| 478 | U-Boot sandbox can be used to run various tests, mostly in the test/ |
| 479 | directory. These include: |
| 480 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 481 | command_ut: |
| 482 | Unit tests for command parsing and handling |
| 483 | compression: |
| 484 | Unit tests for U-Boot's compression algorithms, useful for |
| 485 | security checking. It supports gzip, bzip2, lzma and lzo. |
| 486 | driver model: |
| 487 | Run this pytest:: |
| 488 | |
| 489 | ./test/py/test.py --bd sandbox --build -k ut_dm -v |
| 490 | |
| 491 | image: |
| 492 | Unit tests for images: |
| 493 | test/image/test-imagetools.sh - multi-file images |
| 494 | test/image/test-fit.py - FIT images |
| 495 | tracing: |
| 496 | test/trace/test-trace.sh tests the tracing system (see README.trace) |
| 497 | verified boot: |
| 498 | See test/vboot/vboot_test.sh for this |
Simon Glass | 75b3c3a | 2014-03-22 17:12:59 -0600 | [diff] [blame] | 499 | |
| 500 | If you change or enhance any of the above subsystems, you shold write or |
| 501 | expand a test and include it with your patch series submission. Test |
| 502 | coverage in U-Boot is limited, as we need to work to improve it. |
| 503 | |
| 504 | Note that many of these tests are implemented as commands which you can |
| 505 | run natively on your board if desired (and enabled). |
| 506 | |
Simon Glass | 9946d55 | 2018-11-15 18:43:59 -0700 | [diff] [blame] | 507 | To run all tests use "make check". |
| 508 | |
Simon Glass | 189882c | 2019-09-25 08:56:07 -0600 | [diff] [blame] | 509 | To run a single test in an existing sandbox build, you can use -T to use the |
| 510 | test device tree, and -c to select the test: |
| 511 | |
| 512 | /tmp/b/sandbox/u-boot -T -c "ut dm pci_busdev" |
| 513 | |
| 514 | This runs dm_test_pci_busdev() which is in test/dm/pci.c |
| 515 | |
Simon Glass | 9946d55 | 2018-11-15 18:43:59 -0700 | [diff] [blame] | 516 | |
| 517 | Memory Map |
| 518 | ---------- |
| 519 | |
| 520 | Sandbox has its own emulated memory starting at 0. Here are some of the things |
| 521 | that are mapped into that memory: |
| 522 | |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 523 | ======= ======================== =============================== |
| 524 | Addr Config Usage |
| 525 | ======= ======================== =============================== |
Simon Glass | 9946d55 | 2018-11-15 18:43:59 -0700 | [diff] [blame] | 526 | 0 CONFIG_SYS_FDT_LOAD_ADDR Device tree |
| 527 | e000 CONFIG_BLOBLIST_ADDR Blob list |
| 528 | 10000 CONFIG_MALLOC_F_ADDR Early memory allocation |
Simon Glass | a1396cd | 2019-04-08 13:20:44 -0600 | [diff] [blame] | 529 | f0000 CONFIG_PRE_CON_BUF_ADDR Pre-console buffer |
| 530 | 100000 CONFIG_TRACE_EARLY_ADDR Early trace buffer (if enabled) |
Bin Meng | 49116e6 | 2019-07-18 00:34:33 -0700 | [diff] [blame] | 531 | ======= ======================== =============================== |