diff options
author | Cédric Le Goater <clg@kaod.org> | 2018-06-11 19:12:10 +0200 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2018-06-12 10:44:36 +1000 |
commit | d61c2857037e6211667a52563742af798d4c0332 (patch) | |
tree | 08ae0ddeeb157ceafda95c8fe9b22ebf9f48976d /include/hw | |
parent | a4261be17213eea96673fac71bc89f5342422b76 (diff) | |
download | qemu-d61c2857037e6211667a52563742af798d4c0332.zip qemu-d61c2857037e6211667a52563742af798d4c0332.tar.gz qemu-d61c2857037e6211667a52563742af798d4c0332.tar.bz2 |
ppc/pnv: fix LPC HC firmware address space
A specific MemoryRegion is required for the LPC HC Firmware address
space.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/ppc/pnv_lpc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/ppc/pnv_lpc.h b/include/hw/ppc/pnv_lpc.h index 023b4f0..53fdd5b 100644 --- a/include/hw/ppc/pnv_lpc.h +++ b/include/hw/ppc/pnv_lpc.h @@ -38,6 +38,7 @@ typedef struct PnvLpcController { /* ISA IO and Memory space */ MemoryRegion isa_io; MemoryRegion isa_mem; + MemoryRegion isa_fw; /* Windows from OPB to ISA (aliases) */ MemoryRegion opb_isa_io; |