README.sandbox 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2014 The Chromium OS Authors.
  4. */
  5. Native Execution of U-Boot
  6. ==========================
  7. The 'sandbox' architecture is designed to allow U-Boot to run under Linux on
  8. almost any hardware. To achieve this it builds U-Boot (so far as possible)
  9. as a normal C application with a main() and normal C libraries.
  10. All of U-Boot's architecture-specific code therefore cannot be built as part
  11. of the sandbox U-Boot. The purpose of running U-Boot under Linux is to test
  12. all the generic code, not specific to any one architecture. The idea is to
  13. create unit tests which we can run to test this upper level code.
  14. CONFIG_SANDBOX is defined when building a native board.
  15. The board name is 'sandbox' but the vendor name is unset, so there is a
  16. single board in board/sandbox.
  17. CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian
  18. machines.
  19. There are two versions of the sandbox: One using 32-bit-wide integers, and one
  20. using 64-bit-wide integers. The 32-bit version can be build and run on either
  21. 32 or 64-bit hosts by either selecting or deselecting CONFIG_SANDBOX_32BIT; by
  22. default, the sandbox it built for a 32-bit host. The sandbox using 64-bit-wide
  23. integers can only be built on 64-bit hosts.
  24. Note that standalone/API support is not available at present.
  25. Basic Operation
  26. ---------------
  27. To run sandbox U-Boot use something like:
  28. make sandbox_defconfig all
  29. ./u-boot
  30. Note:
  31. If you get errors about 'sdl-config: Command not found' you may need to
  32. install libsdl1.2-dev or similar to get SDL support. Alternatively you can
  33. build sandbox without SDL (i.e. no display/keyboard support) by removing
  34. the CONFIG_SANDBOX_SDL line in include/configs/sandbox.h or using:
  35. make sandbox_defconfig all NO_SDL=1
  36. ./u-boot
  37. U-Boot will start on your computer, showing a sandbox emulation of the serial
  38. console:
  39. U-Boot 2014.04 (Mar 20 2014 - 19:06:00)
  40. DRAM: 128 MiB
  41. Using default environment
  42. In: serial
  43. Out: lcd
  44. Err: lcd
  45. =>
  46. You can issue commands as your would normally. If the command you want is
  47. not supported you can add it to include/configs/sandbox.h.
  48. To exit, type 'reset' or press Ctrl-C.
  49. Console / LCD support
  50. ---------------------
  51. Assuming that CONFIG_SANDBOX_SDL is defined when building, you can run the
  52. sandbox with LCD and keyboard emulation, using something like:
  53. ./u-boot -d u-boot.dtb -l
  54. This will start U-Boot with a window showing the contents of the LCD. If
  55. that window has the focus then you will be able to type commands as you
  56. would on the console. You can adjust the display settings in the device
  57. tree file - see arch/sandbox/dts/sandbox.dts.
  58. Command-line Options
  59. --------------------
  60. Various options are available, mostly for test purposes. Use -h to see
  61. available options. Some of these are described below.
  62. The terminal is normally in what is called 'raw-with-sigs' mode. This means
  63. that you can use arrow keys for command editing and history, but if you
  64. press Ctrl-C, U-Boot will exit instead of handling this as a keypress.
  65. Other options are 'raw' (so Ctrl-C is handled within U-Boot) and 'cooked'
  66. (where the terminal is in cooked mode and cursor keys will not work, Ctrl-C
  67. will exit).
  68. As mentioned above, -l causes the LCD emulation window to be shown.
  69. A device tree binary file can be provided with -d. If you edit the source
  70. (it is stored at arch/sandbox/dts/sandbox.dts) you must rebuild U-Boot to
  71. recreate the binary file.
  72. To execute commands directly, use the -c option. You can specify a single
  73. command, or multiple commands separated by a semicolon, as is normal in
  74. U-Boot. Be careful with quoting as the shell will normally process and
  75. swallow quotes. When -c is used, U-Boot exits after the command is complete,
  76. but you can force it to go to interactive mode instead with -i.
  77. Memory Emulation
  78. ----------------
  79. Memory emulation is supported, with the size set by CONFIG_SYS_SDRAM_SIZE.
  80. The -m option can be used to read memory from a file on start-up and write
  81. it when shutting down. This allows preserving of memory contents across
  82. test runs. You can tell U-Boot to remove the memory file after it is read
  83. (on start-up) with the --rm_memory option.
  84. To access U-Boot's emulated memory within the code, use map_sysmem(). This
  85. function is used throughout U-Boot to ensure that emulated memory is used
  86. rather than the U-Boot application memory. This provides memory starting
  87. at 0 and extending to the size of the emulation.
  88. Storing State
  89. -------------
  90. With sandbox you can write drivers which emulate the operation of drivers on
  91. real devices. Some of these drivers may want to record state which is
  92. preserved across U-Boot runs. This is particularly useful for testing. For
  93. example, the contents of a SPI flash chip should not disappear just because
  94. U-Boot exits.
  95. State is stored in a device tree file in a simple format which is driver-
  96. specific. You then use the -s option to specify the state file. Use -r to
  97. make U-Boot read the state on start-up (otherwise it starts empty) and -w
  98. to write it on exit (otherwise the stored state is left unchanged and any
  99. changes U-Boot made will be lost). You can also use -n to tell U-Boot to
  100. ignore any problems with missing state. This is useful when first running
  101. since the state file will be empty.
  102. The device tree file has one node for each driver - the driver can store
  103. whatever properties it likes in there. See 'Writing Sandbox Drivers' below
  104. for more details on how to get drivers to read and write their state.
  105. Running and Booting
  106. -------------------
  107. Since there is no machine architecture, sandbox U-Boot cannot actually boot
  108. a kernel, but it does support the bootm command. Filesystems, memory
  109. commands, hashing, FIT images, verified boot and many other features are
  110. supported.
  111. When 'bootm' runs a kernel, sandbox will exit, as U-Boot does on a real
  112. machine. Of course in this case, no kernel is run.
  113. It is also possible to tell U-Boot that it has jumped from a temporary
  114. previous U-Boot binary, with the -j option. That binary is automatically
  115. removed by the U-Boot that gets the -j option. This allows you to write
  116. tests which emulate the action of chain-loading U-Boot, typically used in
  117. a situation where a second 'updatable' U-Boot is stored on your board. It
  118. is very risky to overwrite or upgrade the only U-Boot on a board, since a
  119. power or other failure will brick the board and require return to the
  120. manufacturer in the case of a consumer device.
  121. Supported Drivers
  122. -----------------
  123. U-Boot sandbox supports these emulations:
  124. - Block devices
  125. - Chrome OS EC
  126. - GPIO
  127. - Host filesystem (access files on the host from within U-Boot)
  128. - I2C
  129. - Keyboard (Chrome OS)
  130. - LCD
  131. - Network
  132. - Serial (for console only)
  133. - Sound (incomplete - see sandbox_sdl_sound_init() for details)
  134. - SPI
  135. - SPI flash
  136. - TPM (Trusted Platform Module)
  137. A wide range of commands are implemented. Filesystems which use a block
  138. device are supported.
  139. Also sandbox supports driver model (CONFIG_DM) and associated commands.
  140. Sandbox Variants
  141. ----------------
  142. There are unfortunately quite a few variants at present:
  143. sandbox - should be used for most tests
  144. sandbox64 - special build that forces a 64-bit host
  145. sandbox_flattree - builds with dev_read_...() functions defined as inline.
  146. We need this build so that we can test those inline functions, and we
  147. cannot build with both the inline functions and the non-inline functions
  148. since they are named the same.
  149. sandbox_noblk - builds without CONFIG_BLK, which means the legacy block
  150. drivers are used. We cannot use both the legacy and driver-model block
  151. drivers since they implement the same functions
  152. sandbox_spl - builds sandbox with SPL support, so you can run spl/u-boot-spl
  153. and it will start up and then load ./u-boot. It is also possible to
  154. run ./u-boot directly.
  155. Of these sandbox_noblk can be removed once CONFIG_BLK is used everwhere, and
  156. sandbox_spl can probably be removed since it is a superset of sandbox.
  157. Most of the config options should be identical between these variants.
  158. Linux RAW Networking Bridge
  159. ---------------------------
  160. The sandbox_eth_raw driver bridges traffic between the bottom of the network
  161. stack and the RAW sockets API in Linux. This allows much of the U-Boot network
  162. functionality to be tested in sandbox against real network traffic.
  163. For Ethernet network adapters, the bridge utilizes the RAW AF_PACKET API. This
  164. is needed to get access to the lowest level of the network stack in Linux. This
  165. means that all of the Ethernet frame is included. This allows the U-Boot network
  166. stack to be fully used. In other words, nothing about the Linux network stack is
  167. involved in forming the packets that end up on the wire. To receive the
  168. responses to packets sent from U-Boot the network interface has to be set to
  169. promiscuous mode so that the network card won't filter out packets not destined
  170. for its configured (on Linux) MAC address.
  171. The RAW sockets Ethernet API requires elevated privileges in Linux. You can
  172. either run as root, or you can add the capability needed like so:
  173. sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot
  174. The default device tree for sandbox includes an entry for eth0 on the sandbox
  175. host machine whose alias is "eth1". The following are a few examples of network
  176. operations being tested on the eth0 interface.
  177. sudo /path/to/u-boot -D
  178. DHCP
  179. ....
  180. set autoload no
  181. set ethact eth1
  182. dhcp
  183. PING
  184. ....
  185. set autoload no
  186. set ethact eth1
  187. dhcp
  188. ping $gatewayip
  189. TFTP
  190. ....
  191. set autoload no
  192. set ethact eth1
  193. dhcp
  194. set serverip WWW.XXX.YYY.ZZZ
  195. tftpboot u-boot.bin
  196. The bridge also supports (to a lesser extent) the localhost interface, 'lo'.
  197. The 'lo' interface cannot use the RAW AF_PACKET API because the lo interface
  198. doesn't support Ethernet-level traffic. It is a higher-level interface that is
  199. expected only to be used at the AF_INET level of the API. As such, the most raw
  200. we can get on that interface is the RAW AF_INET API on UDP. This allows us to
  201. set the IP_HDRINCL option to include everything except the Ethernet header in
  202. the packets we send and receive.
  203. Because only UDP is supported, ICMP traffic will not work, so expect that ping
  204. commands will time out.
  205. The default device tree for sandbox includes an entry for lo on the sandbox
  206. host machine whose alias is "eth5". The following is an example of a network
  207. operation being tested on the lo interface.
  208. TFTP
  209. ....
  210. set ethact eth5
  211. tftpboot u-boot.bin
  212. SPI Emulation
  213. -------------
  214. Sandbox supports SPI and SPI flash emulation.
  215. This is controlled by the spi_sf argument, the format of which is:
  216. bus:cs:device:file
  217. bus - SPI bus number
  218. cs - SPI chip select number
  219. device - SPI device emulation name
  220. file - File on disk containing the data
  221. For example:
  222. dd if=/dev/zero of=spi.bin bs=1M count=4
  223. ./u-boot --spi_sf 0:0:M25P16:spi.bin
  224. With this setup you can issue SPI flash commands as normal:
  225. =>sf probe
  226. SF: Detected M25P16 with page size 64 KiB, total 2 MiB
  227. =>sf read 0 0 10000
  228. SF: 65536 bytes @ 0x0 Read: OK
  229. =>
  230. Since this is a full SPI emulation (rather than just flash), you can
  231. also use low-level SPI commands:
  232. =>sspi 0:0 32 9f
  233. FF202015
  234. This is issuing a READ_ID command and getting back 20 (ST Micro) part
  235. 0x2015 (the M25P16).
  236. Drivers are connected to a particular bus/cs using sandbox's state
  237. structure (see the 'spi' member). A set of operations must be provided
  238. for each driver.
  239. Configuration settings for the curious are:
  240. CONFIG_SANDBOX_SPI_MAX_BUS
  241. The maximum number of SPI buses supported by the driver (default 1).
  242. CONFIG_SANDBOX_SPI_MAX_CS
  243. The maximum number of chip selects supported by the driver
  244. (default 10).
  245. CONFIG_SPI_IDLE_VAL
  246. The idle value on the SPI bus
  247. Block Device Emulation
  248. ----------------------
  249. U-Boot can use raw disk images for block device emulation. To e.g. list
  250. the contents of the root directory on the second partion of the image
  251. "disk.raw", you can use the following commands:
  252. =>host bind 0 ./disk.raw
  253. =>ls host 0:2
  254. A disk image can be created using the following commands:
  255. $> truncate -s 1200M ./disk.raw
  256. $> echo -e "label: gpt\n,64M,U\n,,L" | /usr/sbin/sgdisk ./disk.raw
  257. $> lodev=`sudo losetup -P -f --show ./disk.raw`
  258. $> sudo mkfs.vfat -n EFI -v ${lodev}p1
  259. $> sudo mkfs.ext4 -L ROOT -v ${lodev}p2
  260. or utilize the device described in test/py/make_test_disk.py:
  261. #!/usr/bin/python
  262. import make_test_disk
  263. make_test_disk.makeDisk()
  264. Writing Sandbox Drivers
  265. -----------------------
  266. Generally you should put your driver in a file containing the word 'sandbox'
  267. and put it in the same directory as other drivers of its type. You can then
  268. implement the same hooks as the other drivers.
  269. To access U-Boot's emulated memory, use map_sysmem() as mentioned above.
  270. If your driver needs to store configuration or state (such as SPI flash
  271. contents or emulated chip registers), you can use the device tree as
  272. described above. Define handlers for this with the SANDBOX_STATE_IO macro.
  273. See arch/sandbox/include/asm/state.h for documentation. In short you provide
  274. a node name, compatible string and functions to read and write the state.
  275. Since writing the state can expand the device tree, you may need to use
  276. state_setprop() which does this automatically and avoids running out of
  277. space. See existing code for examples.
  278. Testing
  279. -------
  280. U-Boot sandbox can be used to run various tests, mostly in the test/
  281. directory. These include:
  282. command_ut
  283. - Unit tests for command parsing and handling
  284. compression
  285. - Unit tests for U-Boot's compression algorithms, useful for
  286. security checking. It supports gzip, bzip2, lzma and lzo.
  287. driver model
  288. - Run this pytest
  289. ./test/py/test.py --bd sandbox --build -k ut_dm -v
  290. image
  291. - Unit tests for images:
  292. test/image/test-imagetools.sh - multi-file images
  293. test/image/test-fit.py - FIT images
  294. tracing
  295. - test/trace/test-trace.sh tests the tracing system (see README.trace)
  296. verified boot
  297. - See test/vboot/vboot_test.sh for this
  298. If you change or enhance any of the above subsystems, you shold write or
  299. expand a test and include it with your patch series submission. Test
  300. coverage in U-Boot is limited, as we need to work to improve it.
  301. Note that many of these tests are implemented as commands which you can
  302. run natively on your board if desired (and enabled).
  303. It would be useful to have a central script to run all of these.
  304. --
  305. Simon Glass <sjg@chromium.org>
  306. Updated 22-Mar-14