2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org>

* rtems/score/powerpc.h: Remove PPC_LOW_POWER_MODE* (Unused).
This commit is contained in:
Ralf Corsepius
2005-02-13 10:33:33 +00:00
parent 52a2b04d84
commit 6ee4fb53c2
2 changed files with 4 additions and 25 deletions
+4
View File
@@ -1,3 +1,7 @@
2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/powerpc.h: Remove PPC_LOW_POWER_MODE* (Unused).
2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/powerpc.h: Remove PPC_HAS_EVPR (Unused).
@@ -69,24 +69,12 @@ extern "C" {
*
* + PPC_INTERRUPT_MAX - 16
* + PPC_CACHE_ALIGNMENT - 32
* + PPC_LOW_POWER_MODE - PPC_LOW_POWER_MODE_NONE
* + PPC_HAS_EXCEPTION_PREFIX - 1
* + PPC_HAS_FPU - 1
* + PPC_HAS_DOUBLE - 1 if PPC_HAS_FPU,
* - 0 otherwise
*/
/*
* Define the low power mode models
*
* Standard: as defined for 603e
* Nap Mode: nap mode only (604)
* XXX 403GB, 603, 603e, 604, 821
*/
#define PPC_LOW_POWER_MODE_NONE 0
#define PPC_LOW_POWER_MODE_STANDARD 1
/*
* Figure out all CPU Model Feature Flags based upon compiler
* predefines.
@@ -120,9 +108,6 @@ extern "C" {
#define PPC_ALIGNMENT 4
#define PPC_CACHE_ALIGNMENT 16
/* Added by querbach@realtime.bc.ca */
#define PPC_LOW_POWER_MODE PPC_LOW_POWER_MODE_STANDARD
#elif defined(mpc505) || defined(mpc509)
/*
* Submitted by Sergei Organov <osv@Javad.RU> as a patch against
@@ -175,8 +160,6 @@ extern "C" {
#define PPC_ALIGNMENT 8
#define PPC_LOW_POWER_MODE PPC_LOW_POWER_MODE_STANDARD
#elif defined(mpc604)
/*
* Submitted with original port -- book checked only.
@@ -330,14 +313,6 @@ extern "C" {
#define PPC_HAS_EXCEPTION_PREFIX 1
#endif
/*
* If no low power mode model was specified, then assume there is none.
*/
#ifndef PPC_LOW_POWER_MODE
#define PPC_LOW_POWER_MODE PPC_LOW_POWER_MODE_NONE
#endif
/*
* Unless specified above, assume PPC_HAS_FPU to be a synonym for _SOFT_FLOAT.
* FIXME: Should we tie PPC_HAS_FPU to _SOFT_FLOAT, directly