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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: system.h,v 1.86 2001/10/30 04:57:10 davem Exp $ */
  2. #include <linux/config.h>
  3. #ifndef __SPARC_SYSTEM_H
  4. #define __SPARC_SYSTEM_H
  5. #include <linux/kernel.h>
  6. #include <asm/segment.h>
  7. #ifdef __KERNEL__
  8. #include <asm/page.h>
  9. #include <asm/oplib.h>
  10. #include <asm/psr.h>
  11. #include <asm/ptrace.h>
  12. #include <asm/btfixup.h>
  13. #endif /* __KERNEL__ */
  14. #ifndef __ASSEMBLY__
  15. /*
  16.  * Sparc (general) CPU types
  17.  */
  18. enum sparc_cpu {
  19.   sun4        = 0x00,
  20.   sun4c       = 0x01,
  21.   sun4m       = 0x02,
  22.   sun4d       = 0x03,
  23.   sun4e       = 0x04,
  24.   sun4u       = 0x05, /* V8 ploos ploos */
  25.   sun_unknown = 0x06,
  26.   ap1000      = 0x07, /* almost a sun4m */
  27. };
  28. /* Really, userland should not be looking at any of this... */
  29. #ifdef __KERNEL__
  30. extern enum sparc_cpu sparc_cpu_model;
  31. #ifndef CONFIG_SUN4
  32. #define ARCH_SUN4C_SUN4 (sparc_cpu_model==sun4c)
  33. #define ARCH_SUN4 0
  34. #else
  35. #define ARCH_SUN4C_SUN4 1
  36. #define ARCH_SUN4 1
  37. #endif
  38. #define SUN4M_NCPUS            4              /* Architectural limit of sun4m. */
  39. extern unsigned long empty_bad_page;
  40. extern unsigned long empty_bad_page_table;
  41. extern unsigned long empty_zero_page;
  42. extern struct linux_romvec *romvec;
  43. #define halt() romvec->pv_halt()
  44. /* When a context switch happens we must flush all user windows so that
  45.  * the windows of the current process are flushed onto its stack. This
  46.  * way the windows are all clean for the next process and the stack
  47.  * frames are up to date.
  48.  */
  49. extern void flush_user_windows(void);
  50. extern void kill_user_windows(void);
  51. extern void synchronize_user_stack(void);
  52. extern void fpsave(unsigned long *fpregs, unsigned long *fsr,
  53.    void *fpqueue, unsigned long *fpqdepth);
  54. #ifdef CONFIG_SMP
  55. #define SWITCH_ENTER 
  56. if(prev->flags & PF_USEDFPU) { 
  57. put_psr(get_psr() | PSR_EF); 
  58. fpsave(&prev->thread.float_regs[0], &prev->thread.fsr, 
  59.        &prev->thread.fpqueue[0], &prev->thread.fpqdepth); 
  60. prev->flags &= ~PF_USEDFPU; 
  61. prev->thread.kregs->psr &= ~PSR_EF; 
  62. }
  63. #define SWITCH_DO_LAZY_FPU
  64. #else
  65. #define SWITCH_ENTER
  66. #define SWITCH_DO_LAZY_FPU if(last_task_used_math != next) next->thread.kregs->psr&=~PSR_EF;
  67. #endif
  68. /*
  69.  * Flush windows so that the VM switch which follows
  70.  * would not pull the stack from under us.
  71.  *
  72.  * SWITCH_ENTER and SWITH_DO_LAZY_FPU do not work yet (e.g. SMP does not work)
  73.  */
  74. #define prepare_to_switch() do { 
  75. __asm__ __volatile__( 
  76. ".globltflush_patch_switchnflush_patch_switch:nt" 
  77. "save %sp, -0x40, %sp; save %sp, -0x40, %sp; save %sp, -0x40, %spnt" 
  78. "save %sp, -0x40, %sp; save %sp, -0x40, %sp; save %sp, -0x40, %spnt" 
  79. "save %sp, -0x40, %spnt" 
  80. "restore; restore; restore; restore; restore; restore; restore"); 
  81. } while(0)
  82. /* Much care has gone into this code, do not touch it.
  83.  *
  84.  * We need to loadup regs l0/l1 for the newly forked child
  85.  * case because the trap return path relies on those registers
  86.  * holding certain values, gcc is told that they are clobbered.
  87.  * Gcc needs registers for 3 values in and 1 value out, so we
  88.  * clobber every non-fixed-usage register besides l2/l3/o4/o5.  -DaveM
  89.  *
  90.  * Hey Dave, that do not touch sign is too much of an incentive
  91.  * - Anton
  92.  */
  93. #define switch_to(prev, next, last) do {
  94. __label__ here;
  95. register unsigned long task_pc asm("o7");
  96. extern struct task_struct *current_set[NR_CPUS];
  97. SWITCH_ENTER
  98. SWITCH_DO_LAZY_FPU
  99. next->active_mm->cpu_vm_mask |= (1 << smp_processor_id());
  100. task_pc = ((unsigned long) &&here) - 0x8;
  101. __asm__ __volatile__(
  102. "mov %%g6, %%g3nt"
  103. "rd %%psr, %%g4nt"
  104. "std %%sp, [%%g6 + %4]nt"
  105. "rd %%wim, %%g5nt"
  106. "wr %%g4, 0x20, %%psrnt"
  107. "nopnt"
  108. "std %%g4, [%%g6 + %3]nt"
  109. "ldd [%2 + %3], %%g4nt"
  110. "mov %2, %%g6nt"
  111. ".globl patchme_store_new_currentn"
  112. "patchme_store_new_current:nt"
  113. "st %2, [%1]nt"
  114. "wr %%g4, 0x20, %%psrnt"
  115. "nopnt"
  116. "nopnt"
  117. "ldd [%%g6 + %4], %%spnt"
  118. "wr %%g5, 0x0, %%wimnt"
  119. "ldd [%%sp + 0x00], %%l0nt"
  120. "ldd [%%sp + 0x38], %%i6nt"
  121. "wr %%g4, 0x0, %%psrnt"
  122. "nopnt"
  123. "nopnt"
  124. "jmpl %%o7 + 0x8, %%g0nt"
  125. " mov %%g3, %0nt"
  126.         : "=&r" (last)
  127.         : "r" (&(current_set[hard_smp_processor_id()])), "r" (next),
  128.   "i" ((const unsigned long)(&((struct task_struct *)0)->thread.kpsr)),
  129.   "i" ((const unsigned long)(&((struct task_struct *)0)->thread.ksp)),
  130.   "r" (task_pc)
  131. : "g1", "g2", "g3", "g4", "g5", "g7", "l0", "l1",
  132. "l4", "l5", "l6", "l7", "i0", "i1", "i2", "i3", "i4", "i5", "o0", "o1", "o2",
  133. "o3");
  134. here:;  } while(0)
  135. /*
  136.  * Changing the IRQ level on the Sparc.
  137.  */
  138. extern __inline__ void setipl(unsigned long __orig_psr)
  139. {
  140. __asm__ __volatile__(
  141. "wr %0, 0x0, %%psrnt"
  142. "nop; nop; nopn"
  143. : /* no outputs */
  144. : "r" (__orig_psr)
  145. : "memory", "cc");
  146. }
  147. extern __inline__ void __cli(void)
  148. {
  149. unsigned long tmp;
  150. __asm__ __volatile__(
  151. "rd %%psr, %0nt"
  152. "nop; nop; nop;nt" /* Sun4m + Cypress + SMP bug */
  153. "or %0, %1, %0nt"
  154. "wr %0, 0x0, %%psrnt"
  155. "nop; nop; nopn"
  156. : "=r" (tmp)
  157. : "i" (PSR_PIL)
  158. : "memory");
  159. }
  160. extern __inline__ void __sti(void)
  161. {
  162. unsigned long tmp;
  163. __asm__ __volatile__(
  164. "rd %%psr, %0nt"
  165. "nop; nop; nop;nt" /* Sun4m + Cypress + SMP bug */
  166. "andn %0, %1, %0nt"
  167. "wr %0, 0x0, %%psrnt"
  168. "nop; nop; nopn"
  169. : "=r" (tmp)
  170. : "i" (PSR_PIL)
  171. : "memory");
  172. }
  173. extern __inline__ unsigned long getipl(void)
  174. {
  175. unsigned long retval;
  176. __asm__ __volatile__("rd %%psr, %0" : "=r" (retval));
  177. return retval;
  178. }
  179. extern __inline__ unsigned long swap_pil(unsigned long __new_psr)
  180. {
  181. unsigned long retval;
  182. __asm__ __volatile__(
  183. "rd %%psr, %0nt"
  184. "nop; nop; nop;nt" /* Sun4m + Cypress + SMP bug */
  185. "and %0, %2, %%g1nt"
  186. "and %1, %2, %%g2nt"
  187. "xorcc %%g1, %%g2, %%g0nt"
  188. "be 1fnt"
  189. " nopnt"
  190. "wr %0, %2, %%psrnt"
  191. "nop; nop; nop;n"
  192. "1:n"
  193. : "=r" (retval)
  194. : "r" (__new_psr), "i" (PSR_PIL)
  195. : "g1", "g2", "memory", "cc");
  196. return retval;
  197. }
  198. extern __inline__ unsigned long read_psr_and_cli(void)
  199. {
  200. unsigned long retval;
  201. __asm__ __volatile__(
  202. "rd %%psr, %0nt"
  203. "nop; nop; nop;nt" /* Sun4m + Cypress + SMP bug */
  204. "or %0, %1, %%g1nt"
  205. "wr %%g1, 0x0, %%psrnt"
  206. "nop; nop; nopnt"
  207. : "=r" (retval)
  208. : "i" (PSR_PIL)
  209. : "g1", "memory");
  210. return retval;
  211. }
  212. #define __save_flags(flags) ((flags) = getipl())
  213. #define __save_and_cli(flags) ((flags) = read_psr_and_cli())
  214. #define __restore_flags(flags) setipl((flags))
  215. #define local_irq_disable() __cli()
  216. #define local_irq_enable() __sti()
  217. #define local_irq_save(flags) __save_and_cli(flags)
  218. #define local_irq_restore(flags) __restore_flags(flags)
  219. #ifdef CONFIG_SMP
  220. extern unsigned char global_irq_holder;
  221. #define save_and_cli(flags)   do { save_flags(flags); cli(); } while(0)
  222. extern void __global_cli(void);
  223. extern void __global_sti(void);
  224. extern unsigned long __global_save_flags(void);
  225. extern void __global_restore_flags(unsigned long flags);
  226. #define cli() __global_cli()
  227. #define sti() __global_sti()
  228. #define save_flags(flags) ((flags)=__global_save_flags())
  229. #define restore_flags(flags) __global_restore_flags(flags)
  230. #else
  231. #define cli() __cli()
  232. #define sti() __sti()
  233. #define save_flags(x) __save_flags(x)
  234. #define restore_flags(x) __restore_flags(x)
  235. #define save_and_cli(x) __save_and_cli(x)
  236. #endif
  237. /* XXX Change this if we ever use a PSO mode kernel. */
  238. #define mb() __asm__ __volatile__ ("" : : : "memory")
  239. #define rmb() mb()
  240. #define wmb() mb()
  241. #define set_mb(__var, __value)  do { __var = __value; mb(); } while(0)
  242. #define set_wmb(__var, __value) set_mb(__var, __value)
  243. #define smp_mb() __asm__ __volatile__("":::"memory");
  244. #define smp_rmb() __asm__ __volatile__("":::"memory");
  245. #define smp_wmb() __asm__ __volatile__("":::"memory");
  246. #define nop() __asm__ __volatile__ ("nop");
  247. /* This has special calling conventions */
  248. #ifndef CONFIG_SMP
  249. BTFIXUPDEF_CALL(void, ___xchg32, void)
  250. #endif
  251. extern __inline__ unsigned long xchg_u32(__volatile__ unsigned long *m, unsigned long val)
  252. {
  253. #ifdef CONFIG_SMP
  254. __asm__ __volatile__("swap [%2], %0"
  255.      : "=&r" (val)
  256.      : "0" (val), "r" (m));
  257. return val;
  258. #else
  259. register unsigned long *ptr asm("g1");
  260. register unsigned long ret asm("g2");
  261. ptr = (unsigned long *) m;
  262. ret = val;
  263. /* Note: this is magic and the nop there is
  264.    really needed. */
  265. __asm__ __volatile__(
  266. "mov %%o7, %%g4nt"
  267. "call ___f____xchg32nt"
  268. " nopnt"
  269. : "=&r" (ret)
  270. : "0" (ret), "r" (ptr)
  271. : "g3", "g4", "g7", "memory", "cc");
  272. return ret;
  273. #endif
  274. }
  275. #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
  276. #define tas(ptr) (xchg((ptr),1))
  277. extern void __xchg_called_with_bad_pointer(void);
  278. static __inline__ unsigned long __xchg(unsigned long x, __volatile__ void * ptr, int size)
  279. {
  280. switch (size) {
  281. case 4:
  282. return xchg_u32(ptr, x);
  283. };
  284. __xchg_called_with_bad_pointer();
  285. return x;
  286. }
  287. extern void die_if_kernel(char *str, struct pt_regs *regs) __attribute__ ((noreturn));
  288. #endif /* __KERNEL__ */
  289. #endif /* __ASSEMBLY__ */
  290. #endif /* !(__SPARC_SYSTEM_H) */