[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 03/28] PPC: Extend MPIC MMIO range
From: |
Alexander Graf |
Subject: |
[Qemu-devel] [PATCH 03/28] PPC: Extend MPIC MMIO range |
Date: |
Sat, 23 Jul 2011 12:49:47 +0200 |
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 <address@hidden>
---
hw/openpic.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hw/openpic.c b/hw/openpic.c
index 491bfee..ad45331 100644
--- a/hw/openpic.c
+++ b/hw/openpic.c
@@ -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,
--
1.6.0.2
- Re: [Qemu-devel] [PATCH 21/28] PPC: E500: Add PV spinning code, (continued)
[Qemu-devel] [PATCH 18/28] PPC: KVM: Add stubs for kvm helper functions, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 11/28] device tree: add nop_node, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 05/28] PPC: Set MPIC IDE for IPI to 0, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 28/28] PPC: E500: Bump CPU count to 15, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 25/28] device tree: give dt more size, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 03/28] PPC: Extend MPIC MMIO range,
Alexander Graf <=
[Qemu-devel] [PATCH 24/28] device tree: dont fail operations, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 04/28] PPC: Fix IPI support in MPIC, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 02/28] PPC: Add CPU local MMIO regions to MPIC, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 23/28] device tree: add add_subnode command, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 22/28] PPC: E500: Update cpu-release-addr property in cpu nodes, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 17/28] PPC: KVM: Remove kvmppc_read_host_property, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 07/28] PPC: MPIC: Fix CI bit definitions, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 27/28] MPC8544DS: Generate CPU nodes on init, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 10/28] PPC: E500: Generate IRQ lines for many CPUs, Alexander Graf, 2011/07/23
[Qemu-devel] [PATCH 16/28] PPC: bamboo: Use kvm api for freq and clock frequencies, Alexander Graf, 2011/07/23