Blame view

kernel/linux-imx6_3.14.28/arch/alpha/lib/udelay.c 1.09 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  /*
   * Copyright (C) 1993, 2000 Linus Torvalds
   *
   * Delay routines, using a pre-computed "loops_per_jiffy" value.
   */
  
  #include <linux/module.h>
  #include <linux/sched.h> /* for udelay's use of smp_processor_id */
  #include <asm/param.h>
  #include <asm/smp.h>
  #include <linux/delay.h>
  
  /*
   * Use only for very small delays (< 1 msec). 
   *
   * The active part of our cycle counter is only 32-bits wide, and
   * we're treating the difference between two marks as signed.  On
   * a 1GHz box, that's about 2 seconds.
   */
  
  void
  __delay(int loops)
  {
  	int tmp;
  	__asm__ __volatile__(
  		"	rpcc %0
  "
  		"	addl %1,%0,%1
  "
  		"1:	rpcc %0
  "
  		"	subl %1,%0,%0
  "
  		"	bgt %0,1b"
  		: "=&r" (tmp), "=r" (loops) : "1"(loops));
  }
  
  #ifdef CONFIG_SMP
  #define LPJ	 cpu_data[smp_processor_id()].loops_per_jiffy
  #else
  #define LPJ	 loops_per_jiffy
  #endif
  
  void
  udelay(unsigned long usecs)
  {
  	usecs *= (((unsigned long)HZ << 32) / 1000000) * LPJ;
  	__delay((long)usecs >> 32);
  }
  EXPORT_SYMBOL(udelay);
  
  void
  ndelay(unsigned long nsecs)
  {
  	nsecs *= (((unsigned long)HZ << 32) / 1000000000) * LPJ;
  	__delay((long)nsecs >> 32);
  }
  EXPORT_SYMBOL(ndelay);