diff options
| author | Fred Bauer <fred.w.bauer@gmail.com> | 2010-11-18 16:37:56 +0000 |
|---|---|---|
| committer | Fred Bauer <fred.w.bauer@gmail.com> | 2010-11-18 16:37:56 +0000 |
| commit | 9b2e9472eaff3b2e8c53ceeb952f4ee91254e940 (patch) | |
| tree | fab364410392cf0ae95703e3490e5068913f6dc6 | |
| parent | 8a2c480af7fd60c1f8c1f94c00676ae0d5e1e4a8 (diff) | |
| download | rockbox-9b2e9472eaff3b2e8c53ceeb952f4ee91254e940.zip rockbox-9b2e9472eaff3b2e8c53ceeb952f4ee91254e940.tar.gz rockbox-9b2e9472eaff3b2e8c53ceeb952f4ee91254e940.tar.bz2 rockbox-9b2e9472eaff3b2e8c53ceeb952f4ee91254e940.tar.xz | |
FS#11608: switch cpu to async operation in boosted mode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28616 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/as3525/system-as3525.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c index 01534ab..d805971 100644 --- a/firmware/target/arm/as3525/system-as3525.c +++ b/firmware/target/arm/as3525/system-as3525.c @@ -369,8 +369,8 @@ void set_cpu_frequency(long frequency) asm volatile( "mrc p15, 0, r0, c1, c0 \n" - "bic r0, r0, #3<<30 \n" /* clear bus bits */ - "orr r0, r0, #1<<30 \n" /* synchronous bus clocking */ + "orr r0, r0, #3<<30 \n" /* asynchronous bus clocking */ + /* synchronous bus clocking had issues on some players */ "mcr p15, 0, r0, c1, c0 \n" : : : "r0" ); |