system.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.system.h 1.14 08/20/01 14:34:41 paulus
  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. #else
  56. #define _get_L2CR() 0
  57. #define _set_L2CR(val) do { } while(0)
  58. #endif
  59. extern void via_cuda_init(void);
  60. extern void pmac_nvram_init(void);
  61. extern void read_rtc_time(void);
  62. extern void pmac_find_display(void);
  63. extern void giveup_fpu(struct task_struct *);
  64. extern void enable_kernel_fp(void);
  65. extern void giveup_altivec(struct task_struct *);
  66. extern void load_up_altivec(struct task_struct *);
  67. extern void cvt_fd(float *from, double *to, unsigned long *fpscr);
  68. extern void cvt_df(double *from, float *to, unsigned long *fpscr);
  69. extern int call_rtas(const char *, int, int, unsigned long *, ...);
  70. extern int abs(int);
  71. extern void cacheable_memzero(void *p, unsigned int nb);
  72. struct device_node;
  73. extern void note_scsi_host(struct device_node *, void *);
  74. struct task_struct;
  75. #define prepare_to_switch() do { } while(0)
  76. #define switch_to(prev,next,last) _switch_to((prev),(next),&(last))
  77. extern void _switch_to(struct task_struct *, struct task_struct *,
  78.        struct task_struct **);
  79. struct thread_struct;
  80. extern struct task_struct *_switch(struct thread_struct *prev,
  81.    struct thread_struct *next);
  82. extern unsigned int rtas_data;
  83. struct pt_regs;
  84. extern void dump_regs(struct pt_regs *);
  85. #ifndef CONFIG_SMP
  86. #define cli() __cli()
  87. #define sti() __sti()
  88. #define save_flags(flags) __save_flags(flags)
  89. #define restore_flags(flags) __restore_flags(flags)
  90. #define save_and_cli(flags) __save_and_cli(flags)
  91. #else /* CONFIG_SMP */
  92. extern void __global_cli(void);
  93. extern void __global_sti(void);
  94. extern unsigned long __global_save_flags(void);
  95. extern void __global_restore_flags(unsigned long);
  96. #define cli() __global_cli()
  97. #define sti() __global_sti()
  98. #define save_flags(x) ((x)=__global_save_flags())
  99. #define restore_flags(x) __global_restore_flags(x)
  100. #endif /* !CONFIG_SMP */
  101. #define local_irq_disable() __cli()
  102. #define local_irq_enable() __sti()
  103. #define local_irq_save(flags) __save_and_cli(flags)
  104. #define local_irq_restore(flags) __restore_flags(flags)
  105. #endif /* __KERNEL__ */
  106. #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
  107. static __inline__ unsigned long
  108. xchg_u32(volatile void *p, unsigned long val)
  109. {
  110. unsigned long prev;
  111. __asm__ __volatile__ ("n
  112. 1: lwarx %0,0,%2 n
  113. stwcx. %3,0,%2 n
  114. bne- 1b"
  115. : "=&r" (prev), "=m" (*(volatile unsigned long *)p)
  116. : "r" (p), "r" (val), "m" (*(volatile unsigned long *)p)
  117. : "cc", "memory");
  118. return prev;
  119. }
  120. /*
  121.  * This function doesn't exist, so you'll get a linker error
  122.  * if something tries to do an invalid xchg().
  123.  */
  124. extern void __xchg_called_with_bad_pointer(void);
  125. #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
  126. #define tas(ptr) (xchg((ptr),1))
  127. static inline unsigned long __xchg(unsigned long x, void * ptr, int size)
  128. {
  129. switch (size) {
  130. case 4:
  131. return (unsigned long )xchg_u32(ptr, x);
  132. #if 0 /* xchg_u64 doesn't exist on 32-bit PPC */
  133. case 8:
  134. return (unsigned long )xchg_u64(ptr, x);
  135. #endif /* 0 */
  136. }
  137. __xchg_called_with_bad_pointer();
  138. return x;
  139. }
  140. extern inline void * xchg_ptr(void * m, void * val)
  141. {
  142. return (void *) xchg_u32(m, (unsigned long) val);
  143. }
  144. #define __HAVE_ARCH_CMPXCHG 1
  145. static __inline__ unsigned long
  146. __cmpxchg_u32(volatile int *p, int old, int new)
  147. {
  148. int prev;
  149. __asm__ __volatile__ ("n
  150. 1: lwarx %0,0,%2 n
  151. cmpw 0,%0,%3 n
  152. bne 2f n
  153. stwcx. %4,0,%2 n
  154. bne- 1bn"
  155. #ifdef CONFIG_SMP
  156. " syncn"
  157. #endif /* CONFIG_SMP */
  158. "2:"
  159. : "=&r" (prev), "=m" (*p)
  160. : "r" (p), "r" (old), "r" (new), "m" (*p)
  161. : "cc", "memory");
  162. return prev;
  163. }
  164. /* This function doesn't exist, so you'll get a linker error
  165.    if something tries to do an invalid cmpxchg().  */
  166. extern void __cmpxchg_called_with_bad_pointer(void);
  167. static __inline__ unsigned long
  168. __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
  169. {
  170. switch (size) {
  171. case 4:
  172. return __cmpxchg_u32(ptr, old, new);
  173. #if 0 /* we don't have __cmpxchg_u64 on 32-bit PPC */
  174. case 8:
  175. return __cmpxchg_u64(ptr, old, new);
  176. #endif /* 0 */
  177. }
  178. __cmpxchg_called_with_bad_pointer();
  179. return old;
  180. }
  181. #define cmpxchg(ptr,o,n)  
  182.   ({  
  183.      __typeof__(*(ptr)) _o_ = (o);  
  184.      __typeof__(*(ptr)) _n_ = (n);  
  185.      (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_,  
  186.     (unsigned long)_n_, sizeof(*(ptr))); 
  187.   })
  188. #endif /* __PPC_SYSTEM_H */