|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/arm: improve dom0less documentation
commit 1c908181a6ba1a54e01fbc903391903928c02d2c
Author: Stefano Stabellini <sstabellini@xxxxxxxxxx>
AuthorDate: Wed May 1 16:30:06 2019 -0700
Commit: Julien Grall <julien.grall@xxxxxxx>
CommitDate: Fri Jun 14 18:48:05 2019 +0100
xen/arm: improve dom0less documentation
Improve Dom0-less documentation: include a complete configuration
example.
Signed-off-by: Stefano Stabellini <stefanos@xxxxxxxxxx>
Acked-by: Julien Grall <julien.grall@xxxxxxx>
---
docs/features/dom0less.pandoc | 64 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/docs/features/dom0less.pandoc b/docs/features/dom0less.pandoc
index 4e342b7957..e076e3739e 100644
--- a/docs/features/dom0less.pandoc
+++ b/docs/features/dom0less.pandoc
@@ -23,6 +23,70 @@ booted and the Xen tools to become available, domains
created by Xen
this way are started right away in parallel. Hence, their boot time is
typically much shorter.
+
+Configuration
+-------------
+
+### Loading binaries into memory ###
+
+U-Boot needs to load not just Xen, the device tree binary, the dom0 kernel and
+ramdisk. It also needs to load the kernel and ramdisk of any additional domains
+to boot. For example if this is the bootcmd for Xen and Dom0:
+
+ tftpb 0x1280000 xen.dtb
+ tftpb 0x0x80000 xen-Image
+ tftpb 0x1400000 xen.ub
+ tftpb 0x9000000 xen-rootfs.cpio.gz.u-boot
+
+ bootm 0x1400000 0x9000000 0x1280000
+
+If we want to add one DomU with Image-DomUÂ as the DomU kernel
+and ramdisk-DomU as DomU ramdisk:
+
+ tftpb 0x1280000 xen.dtb
+ tftpb 0x80000 xen-Image
+ tftpb 0x1400000 xen.ub
+ tftpb 0x9000000 xen-rootfs.cpio.gz.u-boot
+
+ tftpb 0x2000000 Image-DomU
+ tftpb 0x3000000 ramdisk-DomU
+
+ bootm 0x1400000 0x9000000 0x1280000
+
+
+### Device Tree configuration ###
+
+In addition to loading the necessary binaries, we also need to advertise
+the presence of the additional VM and its configuration. It is done via
+device tree adding a node under /chosen as follows:
+
+ domU1 {
+ Â Â compatible = "xen,domain";
+ Â Â memory = <0x20000>;
+ Â Â cpus = 1;
+ Â Â Â vpl011;
+
+ Â Â module@2000000 {
+ Â Â Â Â compatible = "multiboot,kernel", "multiboot,module";
+ Â Â Â Â reg = <0x2000000 0xffffff>;
+ Â Â Â Â bootargs = "console=ttyAMA0";
+ Â Â };
+
+ Â Â module@30000000 {
+ Â Â Â Â compatible = "multiboot,ramdisk", "multiboot,module";
+ Â Â Â Â reg = <0x3000000 0xffffff>;
+ Â Â };
+ };
+
+Where memory is the memory of the VM in KBs, cpus is the number of
+cpus. module@2000000 and module@3000000 advertise where the kernel and
+ramdisk are in memory.
+
+See docs/misc/arm/device-tree/booting.txt for more information.
+
+Limitations
+-----------
+
Domains started by Xen at boot time currently have the following
limitations:
--
generated by git-patchbot for /home/xen/git/xen.git#master
_______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |