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
This commit is contained in:
Fred Bauer 2010-11-18 16:37:56 +00:00
parent 8a2c480af7
commit 9b2e9472ea

View file

@ -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" );