guest-loader.rst 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ..
  2. Copyright (c) 2020, Linaro
  3. Guest Loader
  4. ------------
  5. The guest loader is similar to the ``generic-loader`` although it is
  6. aimed at a particular use case of loading hypervisor guests. This is
  7. useful for debugging hypervisors without having to jump through the
  8. hoops of firmware and boot-loaders.
  9. The guest loader does two things:
  10. - load blobs (kernels and initial ram disks) into memory
  11. - sets platform FDT data so hypervisors can find and boot them
  12. This is what is typically done by a boot-loader like grub using its
  13. multi-boot capability. A typical example would look like:
  14. .. parsed-literal::
  15. |qemu_system| -kernel ~/xen.git/xen/xen \
  16. -append "dom0_mem=1G,max:1G loglvl=all guest_loglvl=all" \
  17. -device guest-loader,addr=0x42000000,kernel=Image,bootargs="root=/dev/sda2 ro console=hvc0 earlyprintk=xen" \
  18. -device guest-loader,addr=0x47000000,initrd=rootfs.cpio
  19. In the above example the Xen hypervisor is loaded by the -kernel
  20. parameter and passed its boot arguments via -append. The Dom0 guest
  21. is loaded into the areas of memory. Each blob will get
  22. ``/chosen/module@<addr>`` entry in the FDT to indicate its location and
  23. size. Additional information can be passed with by using additional
  24. arguments.
  25. Currently the only supported machines which use FDT data to boot are
  26. the ARM and RiscV ``virt`` machines.
  27. Arguments
  28. ^^^^^^^^^
  29. The full syntax of the guest-loader is::
  30. -device guest-loader,addr=<addr>[,kernel=<file>,[bootargs=<args>]][,initrd=<file>]
  31. ``addr=<addr>``
  32. This is mandatory and indicates the start address of the blob.
  33. ``kernel|initrd=<file>``
  34. Indicates the filename of the kernel or initrd blob. Both blobs will
  35. have the "multiboot,module" compatibility string as well as
  36. "multiboot,kernel" or "multiboot,ramdisk" as appropriate.
  37. ``bootargs=<args>``
  38. This is an optional field for kernel blobs which will pass command
  39. like via the ``/chosen/module@<addr>/bootargs`` node.