processor.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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_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, CPU_SH7712,
  41. CPU_SH7720, CPU_SH7729,
  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. /* SH-4A types */
  46. CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SHX3,
  47. /* SH4AL-DSP types */
  48. CPU_SH7343, CPU_SH7722,
  49. /* Unknown subtype */
  50. CPU_SH_NONE
  51. };
  52. struct sh_cpuinfo {
  53. unsigned int type;
  54. unsigned long loops_per_jiffy;
  55. unsigned long asid_cache;
  56. struct cache_info icache; /* Primary I-cache */
  57. struct cache_info dcache; /* Primary D-cache */
  58. struct cache_info scache; /* Secondary cache */
  59. unsigned long flags;
  60. } __attribute__ ((aligned(SMP_CACHE_BYTES)));
  61. extern struct sh_cpuinfo cpu_data[];
  62. #define boot_cpu_data cpu_data[0]
  63. #define current_cpu_data cpu_data[smp_processor_id()]
  64. #define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
  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. /* Saved registers when thread is descheduled */
  113. unsigned long sp;
  114. unsigned long pc;
  115. /* Hardware debugging registers */
  116. unsigned long ubc_pc;
  117. /* floating point info */
  118. union sh_fpu_union fpu;
  119. };
  120. typedef struct {
  121. unsigned long seg;
  122. } mm_segment_t;
  123. /* Count of active tasks with UBC settings */
  124. extern int ubc_usercnt;
  125. #define INIT_THREAD { \
  126. .sp = sizeof(init_stack) + (long) &init_stack, \
  127. }
  128. /*
  129. * Do necessary setup to start up a newly executed thread.
  130. */
  131. #define start_thread(regs, new_pc, new_sp) \
  132. set_fs(USER_DS); \
  133. regs->pr = 0; \
  134. regs->sr = SR_FD; /* User mode. */ \
  135. regs->pc = new_pc; \
  136. regs->regs[15] = new_sp
  137. /* Forward declaration, a strange C thing */
  138. struct task_struct;
  139. struct mm_struct;
  140. /* Free all resources held by a thread. */
  141. extern void release_thread(struct task_struct *);
  142. /* Prepare to copy thread state - unlazy all lazy status */
  143. #define prepare_to_copy(tsk) do { } while (0)
  144. /*
  145. * create a kernel thread without removing it from tasklists
  146. */
  147. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  148. /* Copy and release all segment info associated with a VM */
  149. #define copy_segments(p, mm) do { } while(0)
  150. #define release_segments(mm) do { } while(0)
  151. /*
  152. * FPU lazy state save handling.
  153. */
  154. static __inline__ void disable_fpu(void)
  155. {
  156. unsigned long __dummy;
  157. /* Set FD flag in SR */
  158. __asm__ __volatile__("stc sr, %0\n\t"
  159. "or %1, %0\n\t"
  160. "ldc %0, sr"
  161. : "=&r" (__dummy)
  162. : "r" (SR_FD));
  163. }
  164. static __inline__ void enable_fpu(void)
  165. {
  166. unsigned long __dummy;
  167. /* Clear out FD flag in SR */
  168. __asm__ __volatile__("stc sr, %0\n\t"
  169. "and %1, %0\n\t"
  170. "ldc %0, sr"
  171. : "=&r" (__dummy)
  172. : "r" (~SR_FD));
  173. }
  174. static __inline__ void release_fpu(struct pt_regs *regs)
  175. {
  176. regs->sr |= SR_FD;
  177. }
  178. static __inline__ void grab_fpu(struct pt_regs *regs)
  179. {
  180. regs->sr &= ~SR_FD;
  181. }
  182. extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
  183. #define unlazy_fpu(tsk, regs) do { \
  184. if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
  185. save_fpu(tsk, regs); \
  186. } \
  187. } while (0)
  188. #define clear_fpu(tsk, regs) do { \
  189. if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
  190. clear_tsk_thread_flag(tsk, TIF_USEDFPU); \
  191. release_fpu(regs); \
  192. } \
  193. } while (0)
  194. /* Double presision, NANS as NANS, rounding to nearest, no exceptions */
  195. #define FPSCR_INIT 0x00080000
  196. #define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
  197. #define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
  198. /*
  199. * Return saved PC of a blocked thread.
  200. */
  201. #define thread_saved_pc(tsk) (tsk->thread.pc)
  202. void show_trace(struct task_struct *tsk, unsigned long *sp,
  203. struct pt_regs *regs);
  204. extern unsigned long get_wchan(struct task_struct *p);
  205. #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
  206. #define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
  207. #define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
  208. #define cpu_relax() barrier()
  209. #if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
  210. defined(CONFIG_CPU_SH4)
  211. #define PREFETCH_STRIDE L1_CACHE_BYTES
  212. #define ARCH_HAS_PREFETCH
  213. #define ARCH_HAS_PREFETCHW
  214. static inline void prefetch(void *x)
  215. {
  216. __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
  217. }
  218. #define prefetchw(x) prefetch(x)
  219. #endif
  220. #ifdef CONFIG_VSYSCALL
  221. extern int vsyscall_init(void);
  222. #else
  223. #define vsyscall_init() do { } while (0)
  224. #endif
  225. /* arch/sh/kernel/setup.c */
  226. const char *get_cpu_subtype(struct sh_cpuinfo *c);
  227. #endif /* __KERNEL__ */
  228. #endif /* __ASM_SH_PROCESSOR_H */