summaryrefslogtreecommitdiffstats
path: root/import/chips
diff options
context:
space:
mode:
Diffstat (limited to 'import/chips')
-rw-r--r--import/chips/p9/procedures/ppe/pk/kernel/pk_api.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/import/chips/p9/procedures/ppe/pk/kernel/pk_api.h b/import/chips/p9/procedures/ppe/pk/kernel/pk_api.h
index fdee0eef..c3308da9 100644
--- a/import/chips/p9/procedures/ppe/pk/kernel/pk_api.h
+++ b/import/chips/p9/procedures/ppe/pk/kernel/pk_api.h
@@ -335,11 +335,13 @@
#define PK_TIMEBASE_FREQUENCY_HZ __pk_timebase_frequency_hz
/// This is the unscaled timebase frequency in Hz.
-#ifdef APPCFG_USE_EXT_TIMEBASE
- #define PK_BASE_FREQ_HZ (uint32_t)25000000
-#else
- #define PK_BASE_FREQ_HZ (uint32_t)400000000
-#endif /* APPCFG_USE_EXT_TIMEBASE */
+#ifndef PK_BASE_FREQ_HZ
+ #ifdef APPCFG_USE_EXT_TIMEBASE
+ #define PK_BASE_FREQ_HZ (uint32_t)25000000
+ #else
+ #define PK_BASE_FREQ_HZ (uint32_t)400000000
+ #endif /* APPCFG_USE_EXT_TIMEBASE */
+#endif
#define PK_BASE_FREQ_KHZ (PK_BASE_FREQ_HZ / 1000)
#define PK_BASE_FREQ_MHZ (PK_BASE_FREQ_HZ / 1000000)
OpenPOWER on IntegriCloud