diff options
author | Paolo Bonzini | 2015-03-31 14:12:25 +0200 |
---|---|---|
committer | Paolo Bonzini | 2015-06-05 17:36:39 +0200 |
commit | f809c605122df291bbb9004dc487bde0969134b5 (patch) | |
tree | 331072482a3c138d893993c0a22c91261fc43a05 /include/hw/pci-host/q35.h | |
parent | hw/i386: add a separate region that tracks the SMRAME bit (diff) | |
download | qemu-f809c605122df291bbb9004dc487bde0969134b5.tar.gz qemu-f809c605122df291bbb9004dc487bde0969134b5.tar.xz qemu-f809c605122df291bbb9004dc487bde0969134b5.zip |
target-i386: use memory API to implement SMRAM
Remove cpu_smm_register and cpu_smm_update. Instead, each CPU
address space gets an extra region which is an alias of
/machine/smram. This extra region is enabled or disabled
as the CPU enters/exits SMM.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/pci-host/q35.h')
-rw-r--r-- | include/hw/pci-host/q35.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/pci-host/q35.h b/include/hw/pci-host/q35.h index 4c9eacc587..17adeaaafd 100644 --- a/include/hw/pci-host/q35.h +++ b/include/hw/pci-host/q35.h @@ -55,7 +55,6 @@ typedef struct MCHPCIState { MemoryRegion smram_region; MemoryRegion smram, low_smram; PcPciInfo pci_info; - uint8_t smm_enabled; ram_addr_t below_4g_mem_size; ram_addr_t above_4g_mem_size; uint64_t pci_hole64_size; |