[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 09/58] PPC: MPIC: Remove read functionality for WO r
From: |
Alexander Graf |
Subject: |
[Qemu-devel] [PATCH 09/58] PPC: MPIC: Remove read functionality for WO registers |
Date: |
Wed, 14 Sep 2011 10:42:33 +0200 |
The IPI dispatch registers are write only according to every MPIC
spec I have found. So instead of pretending you could read back something
from them, better not handle them at all.
Reported-by: Elie Richa <address@hidden>
Signed-off-by: Alexander Graf <address@hidden>
---
hw/openpic.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/hw/openpic.c b/hw/openpic.c
index 31ad175..dfec52e 100644
--- a/hw/openpic.c
+++ b/hw/openpic.c
@@ -952,13 +952,6 @@ static uint32_t openpic_cpu_read_internal(void *opaque,
target_phys_addr_t addr,
case 0xB0: /* PEOI */
retval = 0;
break;
-#if MAX_IPI > 0
- case 0x40: /* IDE */
- case 0x50:
- idx = (addr - 0x40) >> 4;
- retval = read_IRQreg(opp, opp->irq_ipi0 + idx, IRQ_IDE);
- break;
-#endif
default:
break;
}
--
1.6.0.2
- [Qemu-devel] [PATCH 06/58] PPC: Extend MPIC MMIO range, (continued)
- [Qemu-devel] [PATCH 06/58] PPC: Extend MPIC MMIO range, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 04/58] PPC: Move openpic to target specific code compilation, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 15/58] PPC: bamboo: Move host fdt copy to target, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 12/58] PPC: E500: create multiple envs, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 03/58] spapr: make irq customizable via qdev, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 30/58] MPC8544DS: Generate CPU nodes on init, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 21/58] PPC: KVM: Add stubs for kvm helper functions, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 22/58] PPC: E500: Update freqs for all CPUs, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 09/58] PPC: MPIC: Remove read functionality for WO registers,
Alexander Graf <=
- [Qemu-devel] [PATCH 39/58] pseries: More complete WIMG validation in H_ENTER code, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 32/58] PPC: Add new target config for pseries, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 05/58] PPC: Add CPU local MMIO regions to MPIC, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 42/58] pseries: use macro for firmware filename, Alexander Graf, 2011/09/14
- [Qemu-devel] [PATCH 33/58] KVM: update kernel headers, Alexander Graf, 2011/09/14