summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/arm/as3525/system-as3525.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c
index ba817b4ad3..dc335dfaad 100644
--- a/firmware/target/arm/as3525/system-as3525.c
+++ b/firmware/target/arm/as3525/system-as3525.c
@@ -338,9 +338,9 @@ void set_cpu_frequency(long frequency)
338 /* Increasing frequency so boost voltage before change */ 338 /* Increasing frequency so boost voltage before change */
339 ascodec_write(AS3514_CVDD_DCDC3, (AS314_CP_DCDC3_SETTING | CVDD_1_20)); 339 ascodec_write(AS3514_CVDD_DCDC3, (AS314_CP_DCDC3_SETTING | CVDD_1_20));
340 340
341 /* Wait for voltage to be at least 1.20v before making fclk > 200 MHz */ 341 /* Some players run a bit low so use 1.175 volts instead of 1.20 */
342 while(adc_read(ADC_CVDD) < 480) /* 480 * .0025 = 1.20V */ 342 /* Wait for voltage to be at least 1.175v before making fclk > 200 MHz */
343 ; 343 while(adc_read(ADC_CVDD) < 470); /* 470 * .0025 = 1.175V */
344 344
345 asm volatile( 345 asm volatile(
346 "mrc p15, 0, r0, c1, c0 \n" 346 "mrc p15, 0, r0, c1, c0 \n"