mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
PPC: Extend MPIC MMIO range
The MPIC exports a page for each CPU that it controls. To support more than one CPU, we need to also reserve the MMIO space according to the amount of CPUs we want to support. Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
704c7e5d0f
commit
bc59d9c916
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ enum {
|
|||
#define MPIC_MSI_REG_START 0x11C00
|
||||
#define MPIC_MSI_REG_SIZE 0x100
|
||||
#define MPIC_CPU_REG_START 0x20000
|
||||
#define MPIC_CPU_REG_SIZE 0x100
|
||||
#define MPIC_CPU_REG_SIZE 0x100 + ((MAX_CPU - 1) * 0x1000)
|
||||
|
||||
enum mpic_ide_bits {
|
||||
IDR_EP = 0,
|
||||
|
|
Loading…
Reference in a new issue