[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 01/10] ppc: Drop PPC_EMULATE_32BITS_HYPV stub
From: |
David Gibson |
Subject: |
[PATCH v2 01/10] ppc: Drop PPC_EMULATE_32BITS_HYPV stub |
Date: |
Tue, 7 Jan 2020 15:48:18 +1100 |
The only effect of the PPC_EMULATE_32BITS_HYPV define is to change how
MSR_HVB is defined. This appears to be something to handle hypervisor mode
for 32-bit CPUs, but there's really no other code to handle this. The
MSR_THV bit, which it uses is implemented for no cpus we model.
It's unlikely anyone is going to implement this any time soon, so just drop
it.
Signed-off-by: David Gibson <address@hidden>
---
target/ppc/cpu.h | 7 -------
1 file changed, 7 deletions(-)
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
index 103bfe9dc2..2de9e2fa2b 100644
--- a/target/ppc/cpu.h
+++ b/target/ppc/cpu.h
@@ -26,8 +26,6 @@
#include "exec/cpu-defs.h"
#include "cpu-qom.h"
-/* #define PPC_EMULATE_32BITS_HYPV */
-
#define TCG_GUEST_DEFAULT_MO 0
#define TARGET_PAGE_BITS_64K 16
@@ -450,14 +448,9 @@ typedef struct ppc_v3_pate_t {
#define MSR_HVB (1ULL << MSR_SHV)
#define msr_hv msr_shv
#else
-#if defined(PPC_EMULATE_32BITS_HYPV)
-#define MSR_HVB (1ULL << MSR_THV)
-#define msr_hv msr_thv
-#else
#define MSR_HVB (0ULL)
#define msr_hv (0)
#endif
-#endif
/* DSISR */
#define DSISR_NOPTE 0x40000000
--
2.24.1
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, (continued)
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Cédric Le Goater, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Greg Kurz, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Greg Kurz, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, BALATON Zoltan, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, David Gibson, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Thomas Huth, 2020/01/08
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, David Gibson, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Greg Kurz, 2020/01/08
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Paul Mackerras, 2020/01/07
- Re: [PATCH v2 02/10] ppc: Remove stub of PPC970 HID4 implementation, Greg Kurz, 2020/01/08
- [PATCH v2 01/10] ppc: Drop PPC_EMULATE_32BITS_HYPV stub,
David Gibson <=
- [PATCH v2 03/10] target/ppc: Correct handling of real mode accesses with vhyp on hash MMU, David Gibson, 2020/01/06
- [PATCH v2 08/10] target/ppc: Streamline calculation of RMA limit from LPCR[RMLS], David Gibson, 2020/01/06
- [PATCH v2 06/10] target/ppc: Remove RMOR register from POWER9 & POWER10, David Gibson, 2020/01/06
- [PATCH v2 04/10] target/ppc: Introduce ppc_hash64_use_vrma() helper, David Gibson, 2020/01/06