2004-11-20 Ralf Corsepius <ralf.corsepius@rtems.org>

* powerpc/shared/include/cpuIdent.c,
	powerpc/shared/include/cpuIdent.h: Add 603le.
	(Submitted by Thomas.Doerfler <Thomas.Doerfler@imd-systems.de>
	as part of the patch attached to PR 703).
This commit is contained in:
Ralf Corsepius
2004-11-20 04:32:41 +00:00
parent b25dcbd6b6
commit 56c4caeca6
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2004-11-20 Ralf Corsepius <ralf.corsepius@rtems.org>
* powerpc/shared/include/cpuIdent.c,
powerpc/shared/include/cpuIdent.h: Add 603le.
(Submitted by Thomas.Doerfler <Thomas.Doerfler@imd-systems.de>
as part of the patch attached to PR 703).
2004-11-10 Richard Campbell <richard.campbell@oarcorp.com>
* configure.ac, mpc6xx/exceptions/raw_exception.c,

View File

@@ -37,6 +37,7 @@ char *get_ppc_cpu_type_name(ppc_cpu_id_t cpu)
case PPC_750: return "MPC750";
case PPC_7400: return "MPC7400";
case PPC_7455: return "MPC7455";
case PPC_603le: return "MPC603le";
case PPC_604e: return "MPC604e";
case PPC_604r: return "MPC604r";
case PPC_620: return "MPC620";
@@ -59,11 +60,12 @@ ppc_cpu_id_t get_ppc_cpu_type()
case PPC_5XX:
case PPC_603:
case PPC_603ev:
case PPC_603le:
case PPC_604:
case PPC_604r:
case PPC_750:
case PPC_7400:
case PPC_7455:
case PPC_7455:
case PPC_604e:
case PPC_620:
case PPC_860:

View File

@@ -37,6 +37,7 @@ typedef enum
PPC_8260 = 0x81,
PPC_8240 = PPC_8260,
PPC_8245 = 0x8081,
PPC_603le = 0x8082, /* 603le core, in MGT5100 and MPC5200 */
PPC_UNKNOWN = 0xffff
} ppc_cpu_id_t;