summaryrefslogtreecommitdiff
path: root/target-ppc/machine.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-16 10:44:14 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-16 10:44:14 +0000
commit2c9fade2001e6d0c66bfd4b2806f36a652a50000 (patch)
tree2568007dd5bc7ba65e6255f71b0c281f7c07b933 /target-ppc/machine.c
parent75dd595b2e5130b0d2b35c41ea476c640b6a5fe0 (diff)
downloadqemu-2c9fade2001e6d0c66bfd4b2806f36a652a50000.tar.gz
target-ppc: IBM PowerPC 440EP Bamboo reference board emulation
Since most IO devices are integrated into the 440EP chip, "Bamboo support" mostly entails implementing the -kernel, -initrd, and -append options. These options are implemented by loading the guest as if u-boot had done it, i.e. loading a flat device tree, updating it to hold initrd addresses, ram size, and command line, and passing the FDT address in r3. Since we use it with KVM, we enable the virtio block driver and include hooks necessary for KVM support. Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6067 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/machine.c')
-rw-r--r--target-ppc/machine.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/target-ppc/machine.c b/target-ppc/machine.c
index be0cbe1c26..ea2257b1c2 100644
--- a/target-ppc/machine.c
+++ b/target-ppc/machine.c
@@ -8,6 +8,7 @@ void register_machines(void)
qemu_register_machine(&prep_machine);
qemu_register_machine(&ref405ep_machine);
qemu_register_machine(&taihu_machine);
+ qemu_register_machine(&bamboo_machine);
}
void cpu_save(QEMUFile *f, void *opaque)