diff options
author | Bernhard Beschow | 2022-10-18 23:01:44 +0200 |
---|---|---|
committer | Daniel Henrique Barboza | 2022-10-29 11:34:34 +0200 |
commit | 63e4bf8e84721231ea447b0e4afcb0a4378763c2 (patch) | |
tree | 6e7411b951b268420394d07fd0c0743ea19a04f6 /docs | |
parent | hw/sd/sdhci: Rename ESDHC_* defines to USDHC_* (diff) | |
download | qemu-63e4bf8e84721231ea447b0e4afcb0a4378763c2.tar.gz qemu-63e4bf8e84721231ea447b0e4afcb0a4378763c2.tar.xz qemu-63e4bf8e84721231ea447b0e4afcb0a4378763c2.zip |
hw/ppc/e500: Implement pflash handling
Allows e500 boards to have their root file system reside on flash using
only builtin devices located in the eLBC memory region.
Note that the flash memory area is only created when a -pflash argument is
given, and that the size is determined by the given file. The idea is to
put users into control.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20221018210146.193159-6-shentey@gmail.com>
[danielhb: use memory_region_size() in mmio_size]
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/system/ppc/ppce500.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/system/ppc/ppce500.rst b/docs/system/ppc/ppce500.rst index 7b5eb3c4ee..fa40e57d18 100644 --- a/docs/system/ppc/ppce500.rst +++ b/docs/system/ppc/ppce500.rst @@ -165,3 +165,18 @@ if “-device eTSEC” is given to QEMU: .. code-block:: bash -netdev tap,ifname=tap0,script=no,downscript=no,id=net0 -device eTSEC,netdev=net0 + +Root file system on flash drive +------------------------------- + +Rather than using a root file system on ram disk, it is possible to have it on +CFI flash. Given an ext2 image whose size must be a power of two, it can be used +as follows: + +.. code-block:: bash + + $ qemu-system-ppc64 -M ppce500 -cpu e500mc -smp 4 -m 2G \ + -display none -serial stdio \ + -kernel vmlinux \ + -drive if=pflash,file=/path/to/rootfs.ext2,format=raw \ + -append "rootwait root=/dev/mtdblock0" |