1
0
Fork 0
forked from len0rd/rockbox

Adjust the iPod Nano 2G CPU clock freq again, this time to an exact value. Also add hardware defines for the 9th DMA channel we discovered on the S5L8701, and fix the µsec timer (there were missing braces).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23338 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sparmann 2009-10-24 23:27:13 +00:00
parent 4b7e5361d2
commit c9dd93e286
3 changed files with 15 additions and 8 deletions

View file

@ -24,9 +24,10 @@
#include "system-arm.h"
#include "mmu-target.h"
#define CPUFREQ_DEFAULT 32000000
#define CPUFREQ_NORMAL 48000000
#define CPUFREQ_MAX 192000000
#define CPUFREQ_SLEEP 32768
#define CPUFREQ_DEFAULT 47923200
#define CPUFREQ_NORMAL 47923200
#define CPUFREQ_MAX 191692800
#define inl(a) (*(volatile unsigned long *) (a))
#define outl(a,b) (*(volatile unsigned long *) (b) = (a))