summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2010-05-17 12:36:33 +0000
committerMarcin Bukat <marcin.bukat@gmail.com>2010-05-17 12:36:33 +0000
commit1a25eddaa74e99f65d20e6cfdd4e95a0fdaa2093 (patch)
tree40f39fa16e16a73ae433620e988d7cf596d9f435
parentcce9c17902b8af334bafe3482210580351569b72 (diff)
downloadrockbox-1a25eddaa74e99f65d20e6cfdd4e95a0fdaa2093.tar.gz
rockbox-1a25eddaa74e99f65d20e6cfdd4e95a0fdaa2093.zip
HD200 - decrease wait states for lcd when boosted
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26103 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/coldfire/mpio/hd200/system-hd200.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/coldfire/mpio/hd200/system-hd200.c b/firmware/target/coldfire/mpio/hd200/system-hd200.c
index f7e270e094..a11499b2f1 100644
--- a/firmware/target/coldfire/mpio/hd200/system-hd200.c
+++ b/firmware/target/coldfire/mpio/hd200/system-hd200.c
@@ -68,7 +68,7 @@ void cf_set_cpu_frequency(long frequency)
68 timers_adjust_prescale(CPUFREQ_DEFAULT_MULT, false); 68 timers_adjust_prescale(CPUFREQ_DEFAULT_MULT, false);
69 PLLCR = 0x0102c049 | (PLLCR & 0x70C00000); 69 PLLCR = 0x0102c049 | (PLLCR & 0x70C00000);
70 CSCR0 = 0x00001180; /* Flash: 4 wait states */ 70 CSCR0 = 0x00001180; /* Flash: 4 wait states */
71 CSCR3 = 0x00001180; /* LCD: 4 wait states */ 71 CSCR3 = 0x00000580; /* LCD: 4 wait states */
72 while(!(PLLCR & 0x80000000)) {}; /* Wait until the PLL has locked. 72 while(!(PLLCR & 0x80000000)) {}; /* Wait until the PLL has locked.
73 This may take up to 10ms! */ 73 This may take up to 10ms! */
74 timers_adjust_prescale(CPUFREQ_MAX_MULT, true); 74 timers_adjust_prescale(CPUFREQ_MAX_MULT, true);