summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-13 10:33:33 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-13 10:33:33 +0000
commit6ee4fb53c209e035b9fdabb18419a1d5ba2377aa (patch)
tree59d34c0a729514f0eb25994f75f80adf2eab869d /cpukit/score/cpu/powerpc/rtems/score/powerpc.h
parent2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6ee4fb53c209e035b9fdabb18419a1d5ba2377aa.tar.bz2
2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/powerpc.h: Remove PPC_LOW_POWER_MODE* (Unused).
Diffstat (limited to 'cpukit/score/cpu/powerpc/rtems/score/powerpc.h')
-rw-r--r--cpukit/score/cpu/powerpc/rtems/score/powerpc.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/cpukit/score/cpu/powerpc/rtems/score/powerpc.h b/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
index 2c0a2963de..f713a545c0 100644
--- a/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
+++ b/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
@@ -69,7 +69,6 @@ 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,
@@ -77,17 +76,6 @@ extern "C" {
*/
/*
- * 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.
@@ -331,14 +314,6 @@ extern "C" {
#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
* and disallow explicitly setting PPC_HAS_FPU?