Index: firmware/system.c
===================================================================
--- firmware/system.c	(revision 12108)
+++ firmware/system.c	(working copy)
@@ -708,8 +708,8 @@
     /* Select 24MHz crystal as clock source? */
     outl((inl(0x60006020) & 0x0fffff0f) | 0x20000020, 0x60006020);
 
-    /* Clock frequency = (24/8)*postmult */
-    outl(0xaa020000 | 8 | (postmult << 8), 0x60006034);
+    /* Clock frequency = (24/24)*postmult */
+    outl(0xaa020000 | 24 | (postmult << 8), 0x60006034);
 
     /* Wait for PLL relock? */
     udelay(2000);
@@ -741,8 +741,8 @@
     /* Select 24MHz crystal as clock source? */
     outl((inl(0x60006020) & 0x0fffff0f) | 0x20000020, 0x60006020);
 
-    /* Clock frequency = (24/8)*25 = 75MHz */
-    outl(0xaa020000 | 8 | (25 << 8), 0x60006034);
+    /* Clock frequency = (24/24)*75 = 75MHz */
+    outl(0xaa020000 | 24 | (75 << 8), 0x60006034);
     /* Wait for PLL relock? */
     udelay(2000);
 
Index: firmware/export/system.h
===================================================================
--- firmware/export/system.h	(revision 12108)
+++ firmware/export/system.h	(working copy)
@@ -297,11 +297,11 @@
 
 #else
 
-#define CPUFREQ_DEFAULT_MULT 8
+#define CPUFREQ_DEFAULT_MULT 24
 #define CPUFREQ_DEFAULT 24000000
-#define CPUFREQ_NORMAL_MULT 10
-#define CPUFREQ_NORMAL 30000000
-#define CPUFREQ_MAX_MULT 25
+#define CPUFREQ_NORMAL_MULT 32
+#define CPUFREQ_NORMAL 32000000
+#define CPUFREQ_MAX_MULT 75
 #define CPUFREQ_MAX 75000000
 
 #endif
