summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-04-05 16:09:51 +0000
committerThomas Martitz <kugel@rockbox.org>2010-04-05 16:09:51 +0000
commit2149199b90b250e1579714c93604d22e04ecb091 (patch)
tree8a3644f96f9f5a555c64b7637864fc2e8aff8320
parentc06a23da79529cbb574940982e194e2b37d4c5f3 (diff)
downloadrockbox-2149199b90b250e1579714c93604d22e04ecb091.zip
rockbox-2149199b90b250e1579714c93604d22e04ecb091.tar.gz
rockbox-2149199b90b250e1579714c93604d22e04ecb091.tar.bz2
rockbox-2149199b90b250e1579714c93604d22e04ecb091.tar.xz
Fuzev2: Use 40MHz as unboosted frequency. The lcd speed and ui responsiveness is good at this freq.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25489 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config/sansafuzev2.h2
-rw-r--r--firmware/target/arm/as3525/clock-target.h6
2 files changed, 5 insertions, 3 deletions
diff --git a/firmware/export/config/sansafuzev2.h b/firmware/export/config/sansafuzev2.h
index 5db6bb9..73ac7ce 100644
--- a/firmware/export/config/sansafuzev2.h
+++ b/firmware/export/config/sansafuzev2.h
@@ -165,7 +165,7 @@
#define CURRENT_RECORD CURRENT_NORMAL
/* Define this to the CPU frequency */
-#define CPU_FREQ 240000000
+#define CPU_FREQ 40000000
/* Type of LCD */
#define CONFIG_LCD LCD_FUZE
diff --git a/firmware/target/arm/as3525/clock-target.h b/firmware/target/arm/as3525/clock-target.h
index 21a1057..c5ce54f 100644
--- a/firmware/target/arm/as3525/clock-target.h
+++ b/firmware/target/arm/as3525/clock-target.h
@@ -77,8 +77,10 @@
*/
#ifdef SANSA_FUZEV2
-/* XXX: display is noticeably slower at 24MHz */
-#define AS3525_DRAM_FREQ 60000000 /* Initial DRAM frequency */
+/* CPU_FREQ is defined in config/<target>.h
+ * display is noticeably slower at 24MHz
+ * 34285715 HZ works butter but 40MHz works even better*/
+#define AS3525_DRAM_FREQ CPU_FREQ /* Initial DRAM frequency */
#else
#define AS3525_DRAM_FREQ 24000000 /* Initial DRAM frequency */
#endif /* SANSA_FUZEV2 */