[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH ppc-next v2 09/52] target-ppc: Extract 40x aliases
From: |
Andreas Färber |
Subject: |
[Qemu-devel] [PATCH ppc-next v2 09/52] target-ppc: Extract 40x aliases |
Date: |
Mon, 18 Feb 2013 10:16:08 +0100 |
Signed-off-by: Andreas Färber <address@hidden>
---
target-ppc/translate_init.c | 25 +++++++------------------
1 Datei geändert, 7 Zeilen hinzugefügt(+), 18 Zeilen entfernt(-)
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c
index 919431e..b70341c 100644
--- a/target-ppc/translate_init.c
+++ b/target-ppc/translate_init.c
@@ -6852,8 +6852,6 @@ enum {
CPU_POWERPC_XIPCHIP = xxx,
#endif
/* PowerPC 403 family */
- /* Generic PowerPC 403 */
-#define CPU_POWERPC_403 CPU_POWERPC_403GC
/* PowerPC 403 microcontrollers */
CPU_POWERPC_403GA = 0x00200011,
CPU_POWERPC_403GB = 0x00200100,
@@ -6863,8 +6861,6 @@ enum {
CPU_POWERPC_403GP = xxx,
#endif
/* PowerPC 405 family */
- /* Generic PowerPC 405 */
-#define CPU_POWERPC_405 CPU_POWERPC_405D4
/* PowerPC 405 cores */
#if 0
CPU_POWERPC_405A3 = xxx,
@@ -6906,7 +6902,6 @@ enum {
#endif
/* PowerPC 405 microcontrolers */
/* XXX: missing 0x200108a0 */
-#define CPU_POWERPC_405CR CPU_POWERPC_405CRc
CPU_POWERPC_405CRa = 0x40110041,
CPU_POWERPC_405CRb = 0x401100C5,
CPU_POWERPC_405CRc = 0x40110145,
@@ -6918,7 +6913,6 @@ enum {
#if 0
CPU_POWERPC_405FX = xxx,
#endif
-#define CPU_POWERPC_405GP CPU_POWERPC_405GPd
CPU_POWERPC_405GPa = 0x40110000,
CPU_POWERPC_405GPb = 0x40110040,
CPU_POWERPC_405GPc = 0x40110082,
@@ -6979,9 +6973,7 @@ enum {
#endif
/* Xilinx cores */
CPU_POWERPC_X2VP4 = 0x20010820,
-#define CPU_POWERPC_X2VP7 CPU_POWERPC_X2VP4
CPU_POWERPC_X2VP20 = 0x20010860,
-#define CPU_POWERPC_X2VP50 CPU_POWERPC_X2VP20
#if 0
CPU_POWERPC_ZL10310 = xxx,
#endif
@@ -7701,8 +7693,6 @@ static const ppc_def_t ppc_defs[] = {
POWERPC_DEF("Xipchip", CPU_POWERPC_XIPCHIP, 401)
#endif
/* PowerPC 403 family */
- /* Generic PowerPC 403 */
- POWERPC_DEF("403", CPU_POWERPC_403, 403)
/* PowerPC 403 microcontrolers */
/* PowerPC 403 GA */
POWERPC_DEF("403GA", CPU_POWERPC_403GA, 403)
@@ -7717,8 +7707,6 @@ static const ppc_def_t ppc_defs[] = {
POWERPC_DEF("403GP", CPU_POWERPC_403GP, 403)
#endif
/* PowerPC 405 family */
- /* Generic PowerPC 405 */
- POWERPC_DEF("405", CPU_POWERPC_405, 405)
/* PowerPC 405 cores */
#if defined (TODO)
/* PowerPC 405 A3 */
@@ -7773,8 +7761,6 @@ static const ppc_def_t ppc_defs[] = {
POWERPC_DEF("405F6", CPU_POWERPC_405F6, 405)
#endif
/* PowerPC 405 microcontrolers */
- /* PowerPC 405 CR */
- POWERPC_DEF("405CR", CPU_POWERPC_405CR, 405)
/* PowerPC 405 CRa */
POWERPC_DEF("405CRa", CPU_POWERPC_405CRa, 405)
/* PowerPC 405 CRb */
@@ -7793,8 +7779,6 @@ static const ppc_def_t ppc_defs[] = {
/* PowerPC 405 FX */
POWERPC_DEF("405FX", CPU_POWERPC_405FX, 405)
#endif
- /* PowerPC 405 GP */
- POWERPC_DEF("405GP", CPU_POWERPC_405GP, 405)
/* PowerPC 405 GPa */
POWERPC_DEF("405GPa", CPU_POWERPC_405GPa, 405)
/* PowerPC 405 GPb */
@@ -7880,9 +7864,7 @@ static const ppc_def_t ppc_defs[] = {
#endif
/* Xilinx PowerPC 405 cores */
POWERPC_DEF("x2vp4", CPU_POWERPC_X2VP4, 405)
- POWERPC_DEF("x2vp7", CPU_POWERPC_X2VP7, 405)
POWERPC_DEF("x2vp20", CPU_POWERPC_X2VP20, 405)
- POWERPC_DEF("x2vp50", CPU_POWERPC_X2VP50, 405)
#if defined (TODO)
/* Zarlink ZL10310 */
POWERPC_DEF("zl10310", CPU_POWERPC_ZL10310, 405)
@@ -9160,6 +9142,13 @@ typedef struct PowerPCCPUAlias {
} PowerPCCPUAlias;
static const PowerPCCPUAlias ppc_cpu_aliases[] = {
+ { "403", "403GC" },
+ { "405", "405D4" },
+ { "405CR", "405CRc" },
+ { "405GP", "405GPd" },
+ { "x2vp7", "x2vp4" },
+ { "x2vp50", "x2vp20" },
+
{ "RCPU", "MPC5xx" },
/* MPC5xx microcontrollers */
{ "MGT560", "MPC5xx" },
--
1.7.10.4
- [Qemu-devel] [PATCH ppc-next v2 02/52] target-ppc: Update error handling in ppc_cpu_realize(), (continued)
- [Qemu-devel] [PATCH ppc-next v2 02/52] target-ppc: Update error handling in ppc_cpu_realize(), Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 06/52] target-ppc: Make -cpu "ppc" an alias to "ppc32", Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 07/52] target-ppc: Extract MPC5xx aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 08/52] target-ppc: Extract MGT823/MPC8xx as aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 11/52] target-ppc: Turn "ppc32" and "ppc64" CPUs into aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 10/52] target-ppc: Extract 440 aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 05/52] target-ppc: Extract aliases from definitions list, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 12/52] target-ppc: Extract 74x7[A] aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 14/52] target-ppc: Extract 74x1 aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 17/52] target-ppc: Extract 7410 alias, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 09/52] target-ppc: Extract 40x aliases,
Andreas Färber <=
- [Qemu-devel] [PATCH ppc-next v2 13/52] target-ppc: Extract 74x5 as aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 16/52] target-ppc: Extract 7448 alias, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 04/52] target-ppc: Inline comma into POWERPC_DEF_SVR() macro, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 15/52] target-ppc: Extract 7450 alias, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 19/52] target-ppc: Extract 7x5 aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 35/52] target-ppc: Extract MPC52xx alias, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 36/52] target-ppc: Extract MPC5200/MPC5200B aliases, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 45/52] target-ppc: Register all types for TARGET_PPCEMB, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 47/52] target-ppc: Turn descriptive CPU family comments into device descriptions, Andreas Färber, 2013/02/18
- [Qemu-devel] [PATCH ppc-next v2 49/52] target-ppc: Update Coding Style for CPU models, Andreas Färber, 2013/02/18