2 * linux/arch/m32r/lib/delay.c
4 * Copyright (c) 2002 Hitoshi Yamamoto, Hirokazu Takata
5 * Copyright (c) 2004 Hirokazu Takata
10 #include <linux/param.h>
12 #include <linux/sched.h>
13 #include <asm/current.h>
15 #endif /* CONFIG_SMP */
16 #include <asm/processor.h>
18 void __delay(unsigned long loops
)
20 #ifdef CONFIG_ISA_DUAL_ISSUE
21 __asm__
__volatile__ (
27 "cmpz %0 || addi %0, #-1 \n\t"
28 "bc 2f || cmpz %0 \n\t"
29 "bc 2f || addi %0, #-1 \n\t"
30 "cmpz %0 || addi %0, #-1 \n\t"
31 "bc 2f || cmpz %0 \n\t"
32 "bnc 1b || addi %0, #-1 \n\t"
40 __asm__
__volatile__ (
60 void __const_udelay(unsigned long xloops
)
62 #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
64 * loops [1] = (xloops >> 32) [sec] * loops_per_jiffy [1/jiffy]
66 * = (xloops >> 32) [sec] * (loops_per_jiffy * HZ) [1/sec]
67 * = (((xloops * loops_per_jiffy) >> 32) * HZ) [1]
70 * - '[]' depicts variable's dimension in the above equation.
71 * - "rac" instruction rounds the accumulator in word size.
73 __asm__
__volatile__ (
75 "mulwhi %0, %1 ; a0 \n\t"
76 "mulwu1 %0, %1 ; a1 \n\t"
77 "sadd ; a0 += (a1 >> 16) \n\t"
81 : "r" (current_cpu_data
.loops_per_jiffy
)
84 #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
87 * ull = (u64)xloops * (u64)current_cpu_data.loops_per_jiffy;
88 * xloops = (ull >> 32);
90 __asm__
__volatile__ (
91 "and3 r4, %0, #0xffff \n\t"
92 "and3 r5, %1, #0xffff \n\t"
94 "srl3 r6, %0, #16 \n\t"
98 "and3 r5, %0, #0xffff \n\t"
99 "srl3 r6, %1, #16 \n\t"
102 "srl3 r5, %0, #16 \n\t"
108 : "r" (current_cpu_data
.loops_per_jiffy
)
112 #error unknown isa configuration
114 __delay(xloops
* HZ
);
117 void __udelay(unsigned long usecs
)
119 __const_udelay(usecs
* 0x000010c7); /* 2**32 / 1000000 (rounded up) */
122 void __ndelay(unsigned long nsecs
)
124 __const_udelay(nsecs
* 0x00005); /* 2**32 / 1000000000 (rounded up) */