blob: 1d793983a7d8053d9cddd9493dbe3e8d2e4f0ec0 [file] [log] [blame]
Sean Andersond0ed9b12022-03-22 16:59:09 -04001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright 2014 Broadcom Corporation.
3
4Semihosting
5===========
6
7Semihosting is ARM's way of having a real or virtual target communicate
8with a host or host debugger for basic operations such as file I/O,
9console I/O, etc. Please see `Arm's semihosting documentation
10<https://developer.arm.com/documentation/100863/latest/>`_ for more
11information.
12
Sean Andersoneeb54e82022-03-22 16:59:25 -040013Platform Support
14----------------
15
16Versatile Express
17^^^^^^^^^^^^^^^^^
18
Sean Andersond0ed9b12022-03-22 16:59:09 -040019For developing on armv8 virtual fastmodel platforms, semihosting is a
20valuable tool since it allows access to image/configuration files before
21eMMC or other NV media are available.
22
23There are two main ARM virtual Fixed Virtual Platform (FVP) models,
24`Versatile Express (VE) FVP and BASE FVP
25<http://www.arm.com/products/tools/models/fast-models/foundation-model.php>`_.
26The initial vexpress64 u-boot board created here runs on the VE virtual
27platform using the license-free Foundation_v8 simulator. Fortunately,
28the Foundation_v8 simulator also supports the BASE_FVP model which
29companies can purchase licenses for and contain much more functionality.
30So we can, in U-Boot, run either model by either using the VE FVP (default),
31or turning on ``CONFIG_BASE_FVP`` for the more full featured model.
32
33Rather than create a new armv8 board similar to ``armltd/vexpress64``, add
34semihosting calls to the existing one, enabled with ``CONFIG_SEMIHOSTING``
35and ``CONFIG_BASE_FVP`` both set. Also reuse the existing board config file
36vexpress_aemv8.h but differentiate the two models by the presence or
37absence of ``CONFIG_BASE_FVP``. This change is tested and works on both the
38Foundation and Base fastmodel simulators.
39
Sean Andersoneeb54e82022-03-22 16:59:25 -040040QEMU
41^^^^
42
43Another ARM emulator which supports semihosting is `QEMU
44<https://www.qemu.org/>`_. To enable semihosting, enable
45``CONFIG_SERIAL_PROBE_ALL`` when configuring U-Boot, and use
46``-semihosting`` when invoking QEMU. Adding ``-nographic`` can also be
47helpful. When using a semihosted serial console, QEMU will block waiting
48for input. This will cause the GUI to become unresponsive. To mitigate
49this, try adding ``-nographic``. For more information about building and
50running QEMU, refer to the :doc:`board documentation
51<../board/emulation/qemu-arm>`.
52
53OpenOCD
54^^^^^^^
55
56Any ARM platform can use semihosting with an attached debugger. One such
57debugger with good support for a variety of boards and JTAG adapters is
58`OpenOCD <https://openocd.org/>`_. Semihosting is not enabled by default,
59so you will need to enable it::
60
61 $ openocd -f <your board config> -c init -c halt -c \
62 'arm semihosting enable' -c resume
63
64Note that enabling semihosting can only be done after attaching to the
65board with ``init``, and must be done while the CPU is halted.
66
Sean Andersond0ed9b12022-03-22 16:59:09 -040067Loading files
68-------------
69
Sean Andersoneeb54e82022-03-22 16:59:25 -040070The semihosting code adds a "semihosting filesystem"::
Sean Andersond0ed9b12022-03-22 16:59:09 -040071
Sean Andersoneeb54e82022-03-22 16:59:25 -040072 load hostfs - <address> <image>
Sean Andersond0ed9b12022-03-22 16:59:09 -040073
74That will load an image from the host filesystem into RAM at the specified
Sean Andersoneeb54e82022-03-22 16:59:25 -040075address. If you are using U-Boot SPL, you can also use ``BOOT_DEVICE_SMH``
76which will load ``CONFIG_SPL_FS_LOAD_PAYLOAD_NAME``.
77
78Host console
79------------
80
81U-Boot can use the host's console instead of a physical serial device by
82enabling ``CONFIG_SERIAL_SEMIHOSTING``. If you don't have
83``CONFIG_DM_SERIAL`` enabled, make sure you disable any other serial
84drivers.
85
86Migrating from ``smhload``
87--------------------------
88
89If you were using the ``smhload`` command, you can migrate commands like::
90
91 smhload <file> <address> [<end var>]
92
93to a generic load command like::
94
95 load hostfs - <address> <file>
96
97The ``load`` command will set the ``filesize`` variable with the size of
98the file. The ``fdt chosen`` command has been updated to take a size
99instead of an end address. If you were adding the initramfs to your device
100tree like::
101
102 fdt chosen <address> <end var>
103
104you can now run::
105
106 fdt chosen <address> $filesize