diff options
author | Alexander Graf <agraf@suse.de> | 2014-10-01 16:00:49 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-11-04 23:26:12 +0100 |
commit | b88e77f49331f1187118b7ce2494ec169d3a865a (patch) | |
tree | f36415c20f485bb94f61fbb27888ad33e6542fb7 /hw/ppc/e500.h | |
parent | 228aa992fc5be408888c423b6a5b30daf18a96cf (diff) | |
download | qemu-b88e77f49331f1187118b7ce2494ec169d3a865a.zip qemu-b88e77f49331f1187118b7ce2494ec169d3a865a.tar.gz qemu-b88e77f49331f1187118b7ce2494ec169d3a865a.tar.bz2 |
PPC: E500: Instantiate MPC8XXX gpio controller on virt machine
With the e500 virt machine, we don't have to adhere to the exact hardware
layout of an mpc8544ds board. So there we can just add a qoriq compatible
GPIO controller into the system that we can add a power off hook to.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/ppc/e500.h')
-rw-r--r-- | hw/ppc/e500.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/e500.h b/hw/ppc/e500.h index 08b25fa..83c5b8b 100644 --- a/hw/ppc/e500.h +++ b/hw/ppc/e500.h @@ -11,6 +11,7 @@ typedef struct PPCE500Params { void (*fixup_devtree)(struct PPCE500Params *params, void *fdt); int mpic_version; + bool has_mpc8xxx_gpio; } PPCE500Params; void ppce500_init(MachineState *machine, PPCE500Params *params); |