]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
doc: Add a description for bootmeth_qfw
authorSimon Glass <sjg@chromium.org>
Wed, 17 Jul 2024 08:30:56 +0000 (09:30 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 19 Jul 2024 11:54:54 +0000 (13:54 +0200)
Add documentation for the qfw bootmeth.

Fix up the compatible string to drop the 'extlinux' part, which is not
relevant to this bootmeth.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
boot/bootmeth_qfw.c
doc/develop/bootstd/index.rst
doc/develop/bootstd/overview.rst
doc/develop/bootstd/qfw.rst [new file with mode: 0644]

index dfaa944594e3856a9a0996fe5e4abddf1d219b0f..2f8e00cf35045a1069b798a85cc33c59b7ca0063 100644 (file)
@@ -88,7 +88,7 @@ static struct bootmeth_ops qfw_bootmeth_ops = {
 };
 
 static const struct udevice_id qfw_bootmeth_ids[] = {
-       { .compatible = "u-boot,qfw-extlinux" },
+       { .compatible = "u-boot,qfw-bootmeth" },
        { }
 };
 
index 5052afe448f4cf89b4d59a4bbf1c50a45242a611..f8fce7207ce34a8e1076515a905a86ddb346f5d5 100644 (file)
@@ -9,3 +9,4 @@ Standard Boot
    overview
    extlinux
    pxelinux
+   qfw
index 6afa1c2961584c09e1a69cf46e4218e4af8f6aa2..ef878963c9e1c35dd88a0b36de9a5fbd54479d35 100644 (file)
@@ -423,6 +423,7 @@ Bootmeth drivers are provided for booting from various media:
    - VBE
    - EFI boot using boot manager
    - Android bootflow (boot image v4)
+   - :doc:`QFW <qfw>`: QEMU firmware interface
 
 Each driver is controlled by a Kconfig option. If no bootmeth driver is
 selected by a compatible string in the devicetree, all available bootmeth
diff --git a/doc/develop/bootstd/qfw.rst b/doc/develop/bootstd/qfw.rst
new file mode 100644 (file)
index 0000000..70086ad
--- /dev/null
@@ -0,0 +1,20 @@
+.. SPDX-License-Identifier: GPL-2.0+:
+
+QFW Bootmeth
+============
+
+`QEMU <hhttps://www.qemu.org/>`_ is a system emulator which is able to boot
+Operating Systems. QEMU provides specific support for booting an OS image
+provided on the QEMU command line.
+
+When invoked on a bootdev for UCLASS_QFW, this bootmeth reads the kernel
+provided by the QEMU `-kernel` argument, the initial ramdisk provided by
+`-initrd` and the boot arguments (command line) provided by `-append` into
+memory ready for booting.
+
+When the bootflow is booted, the bootmeth tries the `booti` command first, then
+falls back to the `bootz` command. U-Boot's 'control' devicetree is passed
+through to the kernel.
+
+The compatible string "u-boot,qfw-bootmeth" is used for the driver. It is
+present if `CONFIG_QFW` is enabled.