processor.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /*
  2. * include/asm-sh/processor.h
  3. *
  4. * Copyright (C) 1999, 2000 Niibe Yutaka
  5. * Copyright (C) 2002, 2003 Paul Mundt
  6. */
  7. #ifndef __ASM_SH_PROCESSOR_H
  8. #define __ASM_SH_PROCESSOR_H
  9. #ifdef __KERNEL__
  10. #include <linux/compiler.h>
  11. #include <asm/page.h>
  12. #include <asm/types.h>
  13. #include <asm/cache.h>
  14. #include <asm/ptrace.h>
  15. #include <asm/cpu-features.h>
  16. /*
  17. * Default implementation of macro that returns current
  18. * instruction pointer ("program counter").
  19. */
  20. #define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n1:":"=z" (pc)); pc; })
  21. /* Core Processor Version Register */
  22. #define CCN_PVR 0xff000030
  23. #define CCN_CVR 0xff000040
  24. #define CCN_PRR 0xff000044
  25. /*
  26. * CPU type and hardware bug flags. Kept separately for each CPU.
  27. *
  28. * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
  29. * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
  30. * for parsing the subtype in get_cpu_subtype().
  31. */
  32. enum cpu_type {
  33. /* SH-2 types */
  34. CPU_SH7604, CPU_SH7619,
  35. /* SH-2A types */
  36. CPU_SH7206,
  37. /* SH-3 types */
  38. CPU_SH7705, CPU_SH7706, CPU_SH7707,
  39. CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
  40. CPU_SH7709, CPU_SH7709A, CPU_SH7710,
  41. CPU_SH7729, CPU_SH7300,
  42. /* SH-4 types */
  43. CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
  44. CPU_SH7760, CPU_ST40RA, CPU_ST40GX1, CPU_SH4_202, CPU_SH4_501,
  45. CPU_SH73180, CPU_SH7343, CPU_SH7770, CPU_SH7780, CPU_SH7781,
  46. /* Unknown subtype */
  47. CPU_SH_NONE
  48. };
  49. struct sh_cpuinfo {
  50. unsigned int type;
  51. unsigned long loops_per_jiffy;
  52. struct cache_info icache; /* Primary I-cache */
  53. struct cache_info dcache; /* Primary D-cache */
  54. struct cache_info scache; /* Secondary cache */
  55. unsigned long flags;
  56. } __attribute__ ((aligned(SMP_CACHE_BYTES)));
  57. extern struct sh_cpuinfo boot_cpu_data;
  58. #ifdef CONFIG_SMP
  59. extern struct sh_cpuinfo cpu_data[];
  60. #define current_cpu_data cpu_data[smp_processor_id()]
  61. #else
  62. #define cpu_data (&boot_cpu_data)
  63. #define current_cpu_data boot_cpu_data
  64. #endif
  65. /*
  66. * User space process size: 2GB.
  67. *
  68. * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
  69. */
  70. #define TASK_SIZE 0x7c000000UL
  71. /* This decides where the kernel will search for a free chunk of vm
  72. * space during mmap's.
  73. */
  74. #define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
  75. /*
  76. * Bit of SR register
  77. *
  78. * FD-bit:
  79. * When it's set, it means the processor doesn't have right to use FPU,
  80. * and it results exception when the floating operation is executed.
  81. *
  82. * IMASK-bit:
  83. * Interrupt level mask
  84. */
  85. #define SR_FD 0x00008000
  86. #define SR_DSP 0x00001000
  87. #define SR_IMASK 0x000000f0
  88. /*
  89. * FPU structure and data
  90. */
  91. struct sh_fpu_hard_struct {
  92. unsigned long fp_regs[16];
  93. unsigned long xfp_regs[16];
  94. unsigned long fpscr;
  95. unsigned long fpul;
  96. long status; /* software status information */
  97. };
  98. /* Dummy fpu emulator */
  99. struct sh_fpu_soft_struct {
  100. unsigned long fp_regs[16];
  101. unsigned long xfp_regs[16];
  102. unsigned long fpscr;
  103. unsigned long fpul;
  104. unsigned char lookahead;
  105. unsigned long entry_pc;
  106. };
  107. union sh_fpu_union {
  108. struct sh_fpu_hard_struct hard;
  109. struct sh_fpu_soft_struct soft;
  110. };
  111. struct thread_struct {
  112. unsigned long sp;
  113. unsigned long pc;
  114. unsigned long trap_no, error_code;
  115. unsigned long address;
  116. /* Hardware debugging registers may come here */
  117. unsigned long ubc_pc;
  118. /* floating point info */
  119. union sh_fpu_union fpu;
  120. };
  121. typedef struct {
  122. unsigned long seg;
  123. } mm_segment_t;
  124. /* Count of active tasks with UBC settings */
  125. extern int ubc_usercnt;
  126. #define INIT_THREAD { \
  127. sizeof(init_stack) + (long) &init_stack, /* sp */ \
  128. 0, /* pc */ \
  129. 0, 0, \
  130. 0, \
  131. 0, \
  132. {{{0,}},} /* fpu state */ \
  133. }
  134. /*
  135. * Do necessary setup to start up a newly executed thread.
  136. */
  137. #define start_thread(regs, new_pc, new_sp) \
  138. set_fs(USER_DS); \
  139. regs->pr = 0; \
  140. regs->sr = SR_FD; /* User mode. */ \
  141. regs->pc = new_pc; \
  142. regs->regs[15] = new_sp
  143. /* Forward declaration, a strange C thing */
  144. struct task_struct;
  145. struct mm_struct;
  146. /* Free all resources held by a thread. */
  147. extern void release_thread(struct task_struct *);
  148. /* Prepare to copy thread state - unlazy all lazy status */
  149. #define prepare_to_copy(tsk) do { } while (0)
  150. /*
  151. * create a kernel thread without removing it from tasklists
  152. */
  153. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  154. /* Copy and release all segment info associated with a VM */
  155. #define copy_segments(p, mm) do { } while(0)
  156. #define release_segments(mm) do { } while(0)
  157. /*
  158. * FPU lazy state save handling.
  159. */
  160. static __inline__ void disable_fpu(void)
  161. {
  162. unsigned long __dummy;
  163. /* Set FD flag in SR */
  164. __asm__ __volatile__("stc sr, %0\n\t"
  165. "or %1, %0\n\t"
  166. "ldc %0, sr"
  167. : "=&r" (__dummy)
  168. : "r" (SR_FD));
  169. }
  170. static __inline__ void enable_fpu(void)
  171. {
  172. unsigned long __dummy;
  173. /* Clear out FD flag in SR */
  174. __asm__ __volatile__("stc sr, %0\n\t"
  175. "and %1, %0\n\t"
  176. "ldc %0, sr"
  177. : "=&r" (__dummy)
  178. : "r" (~SR_FD));
  179. }
  180. static __inline__ void release_fpu(struct pt_regs *regs)
  181. {
  182. regs->sr |= SR_FD;
  183. }
  184. static __inline__ void grab_fpu(struct pt_regs *regs)
  185. {
  186. regs->sr &= ~SR_FD;
  187. }
  188. #ifdef CONFIG_CPU_SH4
  189. extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
  190. #else
  191. #define save_fpu(tsk) do { } while (0)
  192. #endif
  193. #define unlazy_fpu(tsk, regs) do { \
  194. if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
  195. save_fpu(tsk, regs); \
  196. } \
  197. } while (0)
  198. #define clear_fpu(tsk, regs) do { \
  199. if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
  200. clear_tsk_thread_flag(tsk, TIF_USEDFPU); \
  201. release_fpu(regs); \
  202. } \
  203. } while (0)
  204. /* Double presision, NANS as NANS, rounding to nearest, no exceptions */
  205. #define FPSCR_INIT 0x00080000
  206. #define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
  207. #define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
  208. /*
  209. * Return saved PC of a blocked thread.
  210. */
  211. #define thread_saved_pc(tsk) (tsk->thread.pc)
  212. void show_trace(struct task_struct *tsk, unsigned long *sp,
  213. struct pt_regs *regs);
  214. extern unsigned long get_wchan(struct task_struct *p);
  215. #define KSTK_EIP(tsk) ((tsk)->thread.pc)
  216. #define KSTK_ESP(tsk) ((tsk)->thread.sp)
  217. #define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
  218. #define cpu_relax() barrier()
  219. #if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
  220. defined(CONFIG_CPU_SH4)
  221. #define PREFETCH_STRIDE L1_CACHE_BYTES
  222. #define ARCH_HAS_PREFETCH
  223. #define ARCH_HAS_PREFETCHW
  224. static inline void prefetch(void *x)
  225. {
  226. __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
  227. }
  228. #define prefetchw(x) prefetch(x)
  229. #endif
  230. #ifdef CONFIG_VSYSCALL
  231. extern int vsyscall_init(void);
  232. #else
  233. #define vsyscall_init() do { } while (0)
  234. #endif
  235. #endif /* __KERNEL__ */
  236. #endif /* __ASM_SH_PROCESSOR_H */