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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _M68K_SYSTEM_H
  2. #define _M68K_SYSTEM_H
  3. #include <linux/config.h> /* get configuration macros */
  4. #include <linux/linkage.h>
  5. #include <linux/kernel.h>
  6. #include <asm/segment.h>
  7. #include <asm/entry.h>
  8. #define prepare_to_switch() do { } while(0)
  9. /*
  10.  * switch_to(n) should switch tasks to task ptr, first checking that
  11.  * ptr isn't the current task, in which case it does nothing.  This
  12.  * also clears the TS-flag if the task we switched to has used the
  13.  * math co-processor latest.
  14.  */
  15. /*
  16.  * switch_to() saves the extra registers, that are not saved
  17.  * automatically by SAVE_SWITCH_STACK in resume(), ie. d0-d5 and
  18.  * a0-a1. Some of these are used by schedule() and its predecessors
  19.  * and so we might get see unexpected behaviors when a task returns
  20.  * with unexpected register values.
  21.  *
  22.  * syscall stores these registers itself and none of them are used
  23.  * by syscall after the function in the syscall has been called.
  24.  *
  25.  * Beware that resume now expects *next to be in d1 and the offset of
  26.  * tss to be in a1. This saves a few instructions as we no longer have
  27.  * to push them onto the stack and read them back right after.
  28.  *
  29.  * 02/17/96 - Jes Sorensen (jds@kom.auc.dk)
  30.  *
  31.  * Changed 96/09/19 by Andreas Schwab
  32.  * pass prev in a0, next in a1, offset of tss in d1, and whether
  33.  * the mm structures are shared in d2 (to avoid atc flushing).
  34.  */
  35. asmlinkage void resume(void);
  36. #define switch_to(prev,next,last) { 
  37.   register void *_prev __asm__ ("a0") = (prev); 
  38.   register void *_next __asm__ ("a1") = (next); 
  39.   register void *_last __asm__ ("d1"); 
  40.   __asm__ __volatile__("jbsr " SYMBOL_NAME_STR(resume) 
  41.        : "=d" (_last) : "a" (_prev), "a" (_next) 
  42.        : "d0", /* "d1", */ "d2", "d3", "d4", "d5", "a0", "a1"); 
  43.   (last) = _last; 
  44. }
  45. /* interrupt control.. */
  46. #if 0
  47. #define __sti() asm volatile ("andiw %0,%%sr": : "i" (ALLOWINT) : "memory")
  48. #else
  49. #include <asm/hardirq.h>
  50. #define __sti() ({       
  51. if (MACH_IS_Q40 || !local_irq_count(smp_processor_id()))              
  52. asm volatile ("andiw %0,%%sr": : "i" (ALLOWINT) : "memory");  
  53. })
  54. #endif
  55. #define __cli() asm volatile ("oriw  #0x0700,%%sr": : : "memory")
  56. #define __save_flags(x) asm volatile ("movew %%sr,%0":"=d" (x) : : "memory")
  57. #define __restore_flags(x) asm volatile ("movew %0,%%sr": :"d" (x) : "memory")
  58. /* For spinlocks etc */
  59. #define local_irq_save(x) ({ __save_flags(x); __cli(); })
  60. #define local_irq_restore(x) __restore_flags(x)
  61. #define local_irq_disable() __cli()
  62. #define local_irq_enable() __sti()
  63. #define cli() __cli()
  64. #define sti() __sti()
  65. #define save_flags(x) __save_flags(x)
  66. #define restore_flags(x) __restore_flags(x)
  67. #define save_and_cli(flags)   do { save_flags(flags); cli(); } while(0)
  68. /*
  69.  * Force strict CPU ordering.
  70.  * Not really required on m68k...
  71.  */
  72. #define nop() do { asm volatile ("nop"); barrier(); } while (0)
  73. #define mb() barrier()
  74. #define rmb() barrier()
  75. #define wmb() barrier()
  76. #define set_mb(var, value)    do { xchg(&var, value); } while (0)
  77. #define set_wmb(var, value)    do { var = value; wmb(); } while (0)
  78. #define smp_mb() barrier()
  79. #define smp_rmb() barrier()
  80. #define smp_wmb() barrier()
  81. #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
  82. #define tas(ptr) (xchg((ptr),1))
  83. struct __xchg_dummy { unsigned long a[100]; };
  84. #define __xg(x) ((volatile struct __xchg_dummy *)(x))
  85. #ifndef CONFIG_RMW_INSNS
  86. static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
  87. {
  88.   unsigned long tmp, flags;
  89.   save_flags(flags);
  90.   cli();
  91.   switch (size) {
  92.   case 1:
  93.     __asm__ __volatile__
  94.     ("moveb %2,%0nt"
  95.      "moveb %1,%2"
  96.     : "=&d" (tmp) : "d" (x), "m" (*__xg(ptr)) : "memory");
  97.     break;
  98.   case 2:
  99.     __asm__ __volatile__
  100.     ("movew %2,%0nt"
  101.      "movew %1,%2"
  102.     : "=&d" (tmp) : "d" (x), "m" (*__xg(ptr)) : "memory");
  103.     break;
  104.   case 4:
  105.     __asm__ __volatile__
  106.     ("movel %2,%0nt"
  107.      "movel %1,%2"
  108.     : "=&d" (tmp) : "d" (x), "m" (*__xg(ptr)) : "memory");
  109.     break;
  110.   }
  111.   restore_flags(flags);
  112.   return tmp;
  113. }
  114. #else
  115. static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
  116. {
  117. switch (size) {
  118.     case 1:
  119. __asm__ __volatile__
  120. ("moveb %2,%0nt"
  121.  "1:nt"
  122.  "casb %0,%1,%2nt"
  123.  "jne 1b"
  124.  : "=&d" (x) : "d" (x), "m" (*__xg(ptr)) : "memory");
  125. break;
  126.     case 2:
  127. __asm__ __volatile__
  128. ("movew %2,%0nt"
  129.  "1:nt"
  130.  "casw %0,%1,%2nt"
  131.  "jne 1b"
  132.  : "=&d" (x) : "d" (x), "m" (*__xg(ptr)) : "memory");
  133. break;
  134.     case 4:
  135. __asm__ __volatile__
  136. ("movel %2,%0nt"
  137.  "1:nt"
  138.  "casl %0,%1,%2nt"
  139.  "jne 1b"
  140.  : "=&d" (x) : "d" (x), "m" (*__xg(ptr)) : "memory");
  141. break;
  142. }
  143. return x;
  144. }
  145. #endif
  146. #endif /* _M68K_SYSTEM_H */