2 * Precise Delay Loops for SuperH
4 * Copyright (C) 1999 Niibe Yutaka & Kaz Kojima
7 #include <linux/sched.h>
8 #include <linux/delay.h>
10 void __delay(unsigned long loops
)
14 * ST40-300 appears to have an issue with this code,
15 * normally taking two cycles each loop, as with all
16 * other SH variants. If however the branch and the
17 * delay slot straddle an 8 byte boundary, this increases
19 * This align directive ensures this doesn't occur.
32 inline void __const_udelay(unsigned long xloops
)
35 __asm__("dmulu.l %0, %2\n\t"
39 "r" (cpu_data
[raw_smp_processor_id()].loops_per_jiffy
* (HZ
/4))
44 void __udelay(unsigned long usecs
)
46 __const_udelay(usecs
* 0x000010c6); /* 2**32 / 1000000 */
49 void __ndelay(unsigned long nsecs
)
51 __const_udelay(nsecs
* 0x00000005);
This page took 0.033567 seconds and 6 git commands to generate.