summaryrefslogtreecommitdiff
path: root/firmware/target/arm/system-pp502x.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/system-pp502x.c')
-rw-r--r--firmware/target/arm/system-pp502x.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c
index 05d418bd88..5fb6b20c4c 100644
--- a/firmware/target/arm/system-pp502x.c
+++ b/firmware/target/arm/system-pp502x.c
@@ -209,7 +209,8 @@ static void init_cache(void)
209#endif /* !BOOTLOADER */ 209#endif /* !BOOTLOADER */
210 210
211/* We need this for Sansas since we boost the cpu in their bootloader */ 211/* We need this for Sansas since we boost the cpu in their bootloader */
212#if !defined(BOOTLOADER) || defined(SANSA_E200) || defined(SANSA_C200) 212#if !defined(BOOTLOADER) || defined(SANSA_E200) || defined(SANSA_C200) || \
213 defined(PHILIPS_SA9200)
213void scale_suspend_core(bool suspend) ICODE_ATTR; 214void scale_suspend_core(bool suspend) ICODE_ATTR;
214void scale_suspend_core(bool suspend) 215void scale_suspend_core(bool suspend)
215{ 216{
@@ -353,7 +354,7 @@ static void pp_set_cpu_frequency(long frequency)
353 corelock_unlock(&cpufreq_cl); 354 corelock_unlock(&cpufreq_cl);
354#endif 355#endif
355} 356}
356#endif /* !BOOTLOADER || SANSA_E200 || SANSA_C200 */ 357#endif /* !BOOTLOADER || SANSA_E200 || SANSA_C200 || PHILIPS_SA9200 */
357 358
358void system_init(void) 359void system_init(void)
359{ 360{
@@ -485,7 +486,7 @@ void system_init(void)
485#else /* BOOTLOADER */ 486#else /* BOOTLOADER */
486 if (CURRENT_CORE == CPU) 487 if (CURRENT_CORE == CPU)
487 { 488 {
488#if defined(SANSA_C200) || defined (SANSA_E200) 489#if defined(SANSA_C200) || defined(SANSA_E200) || defined(PHILIPS_SA9200)
489 pp_set_cpu_frequency(CPUFREQ_MAX); 490 pp_set_cpu_frequency(CPUFREQ_MAX);
490#endif 491#endif
491 } 492 }