Re-write the Telechips I2C delay routine in assembler to stop the compiler optimising it away. Tested with EABI and non-EABI compilers.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26872 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rob Purchase 2010-06-16 21:03:57 +00:00
parent ff8e76e9e5
commit 6c94ce590d

View file

@ -27,9 +27,10 @@
/* Delay loop based on CPU frequency (FREQ>>22 is 7..45 for 32MHz..192MHz) */
static inline void delay_loop(void)
{
unsigned long x;
for (x = (unsigned)(FREQ>>22); x; x--)
asm volatile("nop");
asm volatile (" mov %[freq], %[freq], asr#22 \n\t"
"1: subs %[freq], %[freq], #1 \n\t"
" bne 1b"
: : [freq] "r" (cpu_frequency) : "memory");
}
#define DELAY delay_loop()