2 * linux/arch/m32r/lib/delay.c
4 * Copyright (c) 2002 Hitoshi Yamamoto, Hirokazu Takata
5 * Copyright (c) 2004 Hirokazu Takata
10 #include <linux/config.h>
11 #include <linux/param.h>
13 #include <linux/sched.h>
14 #include <asm/current.h>
16 #endif /* CONFIG_SMP */
17 #include <asm/processor.h>
19 void __delay(unsigned long loops)
21 #ifdef CONFIG_ISA_DUAL_ISSUE
22 __asm__ __volatile__ (
28 "cmpz %0 || addi %0, #-1 \n\t"
29 "bc 2f || cmpz %0 \n\t"
30 "bc 2f || addi %0, #-1 \n\t"
31 "cmpz %0 || addi %0, #-1 \n\t"
32 "bc 2f || cmpz %0 \n\t"
33 "bnc 1b || addi %0, #-1 \n\t"
41 __asm__ __volatile__ (
61 void __const_udelay(unsigned long xloops)
63 #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
65 * loops [1] = (xloops >> 32) [sec] * loops_per_jiffy [1/jiffy]
67 * = (xloops >> 32) [sec] * (loops_per_jiffy * HZ) [1/sec]
68 * = (((xloops * loops_per_jiffy) >> 32) * HZ) [1]
71 * - '[]' depicts variable's dimension in the above equation.
72 * - "rac" instruction rounds the accumulator in word size.
74 __asm__ __volatile__ (
76 "mulwhi %0, %1 ; a0 \n\t"
77 "mulwu1 %0, %1 ; a1 \n\t"
78 "sadd ; a0 += (a1 >> 16) \n\t"
82 : "r" (current_cpu_data.loops_per_jiffy)
85 #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
88 * ull = (u64)xloops * (u64)current_cpu_data.loops_per_jiffy;
89 * xloops = (ull >> 32);
91 __asm__ __volatile__ (
92 "and3 r4, %0, #0xffff \n\t"
93 "and3 r5, %1, #0xffff \n\t"
95 "srl3 r6, %0, #16 \n\t"
99 "and3 r5, %0, #0xffff \n\t"
100 "srl3 r6, %1, #16 \n\t"
103 "srl3 r5, %0, #16 \n\t"
109 : "r" (current_cpu_data.loops_per_jiffy)
113 #error unknown isa configuration
115 __delay(xloops * HZ);
118 void __udelay(unsigned long usecs)
120 __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */
123 void __ndelay(unsigned long nsecs)
125 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */