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

Linux/Unix编程

开发平台:

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