system.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.system.h 1.20 03/19/02 15:04:39 benh
  3.  */
  4. /*
  5.  * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
  6.  */
  7. #ifndef __PPC_SYSTEM_H
  8. #define __PPC_SYSTEM_H
  9. #include <linux/config.h>
  10. #include <linux/kdev_t.h>
  11. #include <asm/processor.h>
  12. #include <asm/atomic.h>
  13. #include <asm/hw_irq.h>
  14. /*
  15.  * Memory barrier.
  16.  * The sync instruction guarantees that all memory accesses initiated
  17.  * by this processor have been performed (with respect to all other
  18.  * mechanisms that access memory).  The eieio instruction is a barrier
  19.  * providing an ordering (separately) for (a) cacheable stores and (b)
  20.  * loads and stores to non-cacheable memory (e.g. I/O devices).
  21.  *
  22.  * mb() prevents loads and stores being reordered across this point.
  23.  * rmb() prevents loads being reordered across this point.
  24.  * wmb() prevents stores being reordered across this point.
  25.  *
  26.  * We can use the eieio instruction for wmb, but since it doesn't
  27.  * give any ordering guarantees about loads, we have to use the
  28.  * stronger but slower sync instruction for mb and rmb.
  29.  */
  30. #define mb()  __asm__ __volatile__ ("sync" : : : "memory")
  31. #define rmb()  __asm__ __volatile__ ("sync" : : : "memory")
  32. #define wmb()  __asm__ __volatile__ ("eieio" : : : "memory")
  33. #define set_mb(var, value) do { var = value; mb(); } while (0)
  34. #define set_wmb(var, value) do { var = value; wmb(); } while (0)
  35. #ifdef CONFIG_SMP
  36. #define smp_mb() mb()
  37. #define smp_rmb() rmb()
  38. #define smp_wmb() wmb()
  39. #else
  40. #define smp_mb() __asm__ __volatile__("": : :"memory")
  41. #define smp_rmb() __asm__ __volatile__("": : :"memory")
  42. #define smp_wmb() __asm__ __volatile__("": : :"memory")
  43. #endif /* CONFIG_SMP */
  44. #ifdef __KERNEL__
  45. extern void xmon_irq(int, void *, struct pt_regs *);
  46. extern void xmon(struct pt_regs *excp);
  47. extern void print_backtrace(unsigned long *);
  48. extern void show_regs(struct pt_regs * regs);
  49. extern void flush_instruction_cache(void);
  50. extern void hard_reset_now(void);
  51. extern void poweroff_now(void);
  52. #ifdef CONFIG_6xx
  53. extern long _get_L2CR(void);
  54. extern void _set_L2CR(unsigned long);
  55. extern long _get_L3CR(void);
  56. extern void _set_L3CR(unsigned long);
  57. #else
  58. #define _get_L2CR() 0L
  59. #define _set_L2CR(val) do { } while(0)
  60. #define _get_L3CR() 0L
  61. #define _set_L3CR(val) do { } while(0)
  62. #endif
  63. extern void via_cuda_init(void);
  64. extern void pmac_nvram_init(void);
  65. extern void read_rtc_time(void);
  66. extern void pmac_find_display(void);
  67. extern void giveup_fpu(struct task_struct *);
  68. extern void enable_kernel_fp(void);
  69. extern void giveup_altivec(struct task_struct *);
  70. extern void load_up_altivec(struct task_struct *);
  71. extern void cvt_fd(float *from, double *to, unsigned long *fpscr);
  72. extern void cvt_df(double *from, float *to, unsigned long *fpscr);
  73. extern int call_rtas(const char *, int, int, unsigned long *, ...);
  74. extern int abs(int);
  75. extern void cacheable_memzero(void *p, unsigned int nb);
  76. struct device_node;
  77. extern void note_scsi_host(struct device_node *, void *);
  78. struct task_struct;
  79. #define prepare_to_switch() do { } while(0)
  80. #define switch_to(prev,next,last) _switch_to((prev),(next),&(last))
  81. extern void _switch_to(struct task_struct *, struct task_struct *,
  82.        struct task_struct **);
  83. struct thread_struct;
  84. extern struct task_struct *_switch(struct thread_struct *prev,
  85.    struct thread_struct *next);
  86. extern unsigned int rtas_data;
  87. struct pt_regs;
  88. extern void dump_regs(struct pt_regs *);
  89. #ifndef CONFIG_SMP
  90. #define cli() __cli()
  91. #define sti() __sti()
  92. #define save_flags(flags) __save_flags(flags)
  93. #define restore_flags(flags) __restore_flags(flags)
  94. #define save_and_cli(flags) __save_and_cli(flags)
  95. #else /* CONFIG_SMP */
  96. extern void __global_cli(void);
  97. extern void __global_sti(void);
  98. extern unsigned long __global_save_flags(void);
  99. extern void __global_restore_flags(unsigned long);
  100. #define cli() __global_cli()
  101. #define sti() __global_sti()
  102. #define save_flags(x) ((x)=__global_save_flags())
  103. #define restore_flags(x) __global_restore_flags(x)
  104. #endif /* !CONFIG_SMP */
  105. #define local_irq_disable() __cli()
  106. #define local_irq_enable() __sti()
  107. #define local_irq_save(flags) __save_and_cli(flags)
  108. #define local_irq_restore(flags) __restore_flags(flags)
  109. static __inline__ unsigned long
  110. xchg_u32(volatile void *p, unsigned long val)
  111. {
  112. unsigned long prev;
  113. __asm__ __volatile__ ("n
  114. 1: lwarx %0,0,%2 n
  115. stwcx. %3,0,%2 n
  116. bne- 1b"
  117. : "=&r" (prev), "=m" (*(volatile unsigned long *)p)
  118. : "r" (p), "r" (val), "m" (*(volatile unsigned long *)p)
  119. : "cc", "memory");
  120. return prev;
  121. }
  122. /*
  123.  * This function doesn't exist, so you'll get a linker error
  124.  * if something tries to do an invalid xchg().
  125.  */
  126. extern void __xchg_called_with_bad_pointer(void);
  127. #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
  128. #define tas(ptr) (xchg((ptr),1))
  129. static inline unsigned long __xchg(unsigned long x, void * ptr, int size)
  130. {
  131. switch (size) {
  132. case 4:
  133. return (unsigned long )xchg_u32(ptr, x);
  134. #if 0 /* xchg_u64 doesn't exist on 32-bit PPC */
  135. case 8:
  136. return (unsigned long )xchg_u64(ptr, x);
  137. #endif /* 0 */
  138. }
  139. __xchg_called_with_bad_pointer();
  140. return x;
  141. }
  142. extern inline void * xchg_ptr(void * m, void * val)
  143. {
  144. return (void *) xchg_u32(m, (unsigned long) val);
  145. }
  146. #define __HAVE_ARCH_CMPXCHG 1
  147. static __inline__ unsigned long
  148. __cmpxchg_u32(volatile int *p, int old, int new)
  149. {
  150. int prev;
  151. __asm__ __volatile__ ("n
  152. 1: lwarx %0,0,%2 n
  153. cmpw 0,%0,%3 n
  154. bne 2f n
  155. stwcx. %4,0,%2 n
  156. bne- 1bn"
  157. #ifdef CONFIG_SMP
  158. " syncn"
  159. #endif /* CONFIG_SMP */
  160. "2:"
  161. : "=&r" (prev), "=m" (*p)
  162. : "r" (p), "r" (old), "r" (new), "m" (*p)
  163. : "cc", "memory");
  164. return prev;
  165. }
  166. /* This function doesn't exist, so you'll get a linker error
  167.    if something tries to do an invalid cmpxchg().  */
  168. extern void __cmpxchg_called_with_bad_pointer(void);
  169. static __inline__ unsigned long
  170. __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
  171. {
  172. switch (size) {
  173. case 4:
  174. return __cmpxchg_u32(ptr, old, new);
  175. #if 0 /* we don't have __cmpxchg_u64 on 32-bit PPC */
  176. case 8:
  177. return __cmpxchg_u64(ptr, old, new);
  178. #endif /* 0 */
  179. }
  180. __cmpxchg_called_with_bad_pointer();
  181. return old;
  182. }
  183. #define cmpxchg(ptr,o,n)  
  184.   ({  
  185.      __typeof__(*(ptr)) _o_ = (o);  
  186.      __typeof__(*(ptr)) _n_ = (n);  
  187.      (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_,  
  188.     (unsigned long)_n_, sizeof(*(ptr))); 
  189.   })
  190. #endif /* __KERNEL__ */
  191. #endif /* __PPC_SYSTEM_H */