mirror of https://gitee.com/openkylin/qemu.git
target-ppc: Extract 603e alias
Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
0446aecd56
commit
16a177333e
|
@ -7232,7 +7232,6 @@ enum {
|
|||
CPU_POWERPC_601_v2 = 0x00010002,
|
||||
CPU_POWERPC_602 = 0x00050100,
|
||||
CPU_POWERPC_603 = 0x00030100,
|
||||
#define CPU_POWERPC_603E CPU_POWERPC_603E_v41
|
||||
CPU_POWERPC_603E_v11 = 0x00060101,
|
||||
CPU_POWERPC_603E_v12 = 0x00060102,
|
||||
CPU_POWERPC_603E_v13 = 0x00060103,
|
||||
|
@ -8609,8 +8608,6 @@ static const ppc_def_t ppc_defs[] = {
|
|||
POWERPC_DEF("602", CPU_POWERPC_602, 602)
|
||||
/* PowerPC 603 */
|
||||
POWERPC_DEF("603", CPU_POWERPC_603, 603)
|
||||
/* PowerPC 603e (aka PID6) */
|
||||
POWERPC_DEF("603e", CPU_POWERPC_603E, 603E)
|
||||
/* PowerPC 603e v1.1 */
|
||||
POWERPC_DEF("603e_v1.1", CPU_POWERPC_603E_v11, 603E)
|
||||
/* PowerPC 603e v1.2 */
|
||||
|
@ -9082,6 +9079,7 @@ static const PowerPCCPUAlias ppc_cpu_aliases[] = {
|
|||
{ "PowerQUICC-II", "MPC82xx" },
|
||||
{ "e500", "e500v2_v22" },
|
||||
{ "Vanilla", "603" },
|
||||
{ "603e", "603e_v4.1" },
|
||||
{ "Stretch", "603e" },
|
||||
{ "Vaillant", "603e7v" },
|
||||
{ "Goldeneye", "603r" },
|
||||
|
|
Loading…
Reference in New Issue