processor.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /*
  2. * include/asm-parisc/processor.h
  3. *
  4. * Copyright (C) 1994 Linus Torvalds
  5. * Copyright (C) 2001 Grant Grundler
  6. */
  7. #ifndef __ASM_PARISC_PROCESSOR_H
  8. #define __ASM_PARISC_PROCESSOR_H
  9. #ifndef __ASSEMBLY__
  10. #include <asm/prefetch.h> /* lockdep.h needs <linux/prefetch.h> */
  11. #include <linux/threads.h>
  12. #include <linux/spinlock_types.h>
  13. #include <asm/hardware.h>
  14. #include <asm/page.h>
  15. #include <asm/pdc.h>
  16. #include <asm/ptrace.h>
  17. #include <asm/types.h>
  18. #include <asm/system.h>
  19. #endif /* __ASSEMBLY__ */
  20. #define KERNEL_STACK_SIZE (4*PAGE_SIZE)
  21. /*
  22. * Default implementation of macro that returns current
  23. * instruction pointer ("program counter").
  24. */
  25. #ifdef CONFIG_PA20
  26. #define current_ia(x) __asm__("mfia %0" : "=r"(x))
  27. #else /* mfia added in pa2.0 */
  28. #define current_ia(x) __asm__("blr 0,%0\n\tnop" : "=r"(x))
  29. #endif
  30. #define current_text_addr() ({ void *pc; current_ia(pc); pc; })
  31. #define TASK_SIZE (current->thread.task_size)
  32. #define TASK_UNMAPPED_BASE (current->thread.map_base)
  33. #define DEFAULT_TASK_SIZE32 (0xFFF00000UL)
  34. #define DEFAULT_MAP_BASE32 (0x40000000UL)
  35. #ifdef __LP64__
  36. #define DEFAULT_TASK_SIZE (MAX_ADDRESS-0xf000000)
  37. #define DEFAULT_MAP_BASE (0x200000000UL)
  38. #else
  39. #define DEFAULT_TASK_SIZE DEFAULT_TASK_SIZE32
  40. #define DEFAULT_MAP_BASE DEFAULT_MAP_BASE32
  41. #endif
  42. #ifndef __ASSEMBLY__
  43. /*
  44. * Data detected about CPUs at boot time which is the same for all CPU's.
  45. * HP boxes are SMP - ie identical processors.
  46. *
  47. * FIXME: some CPU rev info may be processor specific...
  48. */
  49. struct system_cpuinfo_parisc {
  50. unsigned int cpu_count;
  51. unsigned int cpu_hz;
  52. unsigned int hversion;
  53. unsigned int sversion;
  54. enum cpu_type cpu_type;
  55. struct {
  56. struct pdc_model model;
  57. unsigned long versions;
  58. unsigned long cpuid;
  59. unsigned long capabilities;
  60. char sys_model_name[81]; /* PDC-ROM returnes this model name */
  61. } pdc;
  62. char *cpu_name; /* e.g. "PA7300LC (PCX-L2)" */
  63. char *family_name; /* e.g. "1.1e" */
  64. };
  65. /* Per CPU data structure - ie varies per CPU. */
  66. struct cpuinfo_parisc {
  67. unsigned long it_value; /* Interval Timer at last timer Intr */
  68. unsigned long it_delta; /* Interval delta (tic_10ms / HZ * 100) */
  69. unsigned long irq_count; /* number of IRQ's since boot */
  70. unsigned long irq_max_cr16; /* longest time to handle a single IRQ */
  71. unsigned long cpuid; /* aka slot_number or set to NO_PROC_ID */
  72. unsigned long hpa; /* Host Physical address */
  73. unsigned long txn_addr; /* MMIO addr of EIR or id_eid */
  74. #ifdef CONFIG_SMP
  75. spinlock_t lock; /* synchronization for ipi's */
  76. unsigned long pending_ipi; /* bitmap of type ipi_message_type */
  77. unsigned long ipi_count; /* number ipi Interrupts */
  78. #endif
  79. unsigned long bh_count; /* number of times bh was invoked */
  80. unsigned long prof_counter; /* per CPU profiling support */
  81. unsigned long prof_multiplier; /* per CPU profiling support */
  82. unsigned long fp_rev;
  83. unsigned long fp_model;
  84. unsigned int state;
  85. struct parisc_device *dev;
  86. unsigned long loops_per_jiffy;
  87. };
  88. extern struct system_cpuinfo_parisc boot_cpu_data;
  89. extern struct cpuinfo_parisc cpu_data[NR_CPUS];
  90. #define current_cpu_data cpu_data[smp_processor_id()]
  91. #define CPU_HVERSION ((boot_cpu_data.hversion >> 4) & 0x0FFF)
  92. typedef struct {
  93. int seg;
  94. } mm_segment_t;
  95. #define ARCH_MIN_TASKALIGN 8
  96. struct thread_struct {
  97. struct pt_regs regs;
  98. unsigned long task_size;
  99. unsigned long map_base;
  100. unsigned long flags;
  101. };
  102. /* Thread struct flags. */
  103. #define PARISC_UAC_NOPRINT (1UL << 0) /* see prctl and unaligned.c */
  104. #define PARISC_UAC_SIGBUS (1UL << 1)
  105. #define PARISC_KERNEL_DEATH (1UL << 31) /* see die_if_kernel()... */
  106. #define PARISC_UAC_SHIFT 0
  107. #define PARISC_UAC_MASK (PARISC_UAC_NOPRINT|PARISC_UAC_SIGBUS)
  108. #define SET_UNALIGN_CTL(task,value) \
  109. ({ \
  110. (task)->thread.flags = (((task)->thread.flags & ~PARISC_UAC_MASK) \
  111. | (((value) << PARISC_UAC_SHIFT) & \
  112. PARISC_UAC_MASK)); \
  113. 0; \
  114. })
  115. #define GET_UNALIGN_CTL(task,addr) \
  116. ({ \
  117. put_user(((task)->thread.flags & PARISC_UAC_MASK) \
  118. >> PARISC_UAC_SHIFT, (int __user *) (addr)); \
  119. })
  120. #define INIT_THREAD { \
  121. .regs = { .gr = { 0, }, \
  122. .fr = { 0, }, \
  123. .sr = { 0, }, \
  124. .iasq = { 0, }, \
  125. .iaoq = { 0, }, \
  126. .cr27 = 0, \
  127. }, \
  128. .task_size = DEFAULT_TASK_SIZE, \
  129. .map_base = DEFAULT_MAP_BASE, \
  130. .flags = 0 \
  131. }
  132. /*
  133. * Return saved PC of a blocked thread. This is used by ps mostly.
  134. */
  135. unsigned long thread_saved_pc(struct task_struct *t);
  136. void show_trace(struct task_struct *task, unsigned long *stack);
  137. /*
  138. * Start user thread in another space.
  139. *
  140. * Note that we set both the iaoq and r31 to the new pc. When
  141. * the kernel initially calls execve it will return through an
  142. * rfi path that will use the values in the iaoq. The execve
  143. * syscall path will return through the gateway page, and
  144. * that uses r31 to branch to.
  145. *
  146. * For ELF we clear r23, because the dynamic linker uses it to pass
  147. * the address of the finalizer function.
  148. *
  149. * We also initialize sr3 to an illegal value (illegal for our
  150. * implementation, not for the architecture).
  151. */
  152. typedef unsigned int elf_caddr_t;
  153. #define start_thread_som(regs, new_pc, new_sp) do { \
  154. unsigned long *sp = (unsigned long *)new_sp; \
  155. __u32 spaceid = (__u32)current->mm->context; \
  156. unsigned long pc = (unsigned long)new_pc; \
  157. /* offset pc for priv. level */ \
  158. pc |= 3; \
  159. \
  160. set_fs(USER_DS); \
  161. regs->iasq[0] = spaceid; \
  162. regs->iasq[1] = spaceid; \
  163. regs->iaoq[0] = pc; \
  164. regs->iaoq[1] = pc + 4; \
  165. regs->sr[2] = LINUX_GATEWAY_SPACE; \
  166. regs->sr[3] = 0xffff; \
  167. regs->sr[4] = spaceid; \
  168. regs->sr[5] = spaceid; \
  169. regs->sr[6] = spaceid; \
  170. regs->sr[7] = spaceid; \
  171. regs->gr[ 0] = USER_PSW; \
  172. regs->gr[30] = ((new_sp)+63)&~63; \
  173. regs->gr[31] = pc; \
  174. \
  175. get_user(regs->gr[26],&sp[0]); \
  176. get_user(regs->gr[25],&sp[-1]); \
  177. get_user(regs->gr[24],&sp[-2]); \
  178. get_user(regs->gr[23],&sp[-3]); \
  179. } while(0)
  180. /* The ELF abi wants things done a "wee bit" differently than
  181. * som does. Supporting this behavior here avoids
  182. * having our own version of create_elf_tables.
  183. *
  184. * Oh, and yes, that is not a typo, we are really passing argc in r25
  185. * and argv in r24 (rather than r26 and r25). This is because that's
  186. * where __libc_start_main wants them.
  187. *
  188. * Duplicated from dl-machine.h for the benefit of readers:
  189. *
  190. * Our initial stack layout is rather different from everyone else's
  191. * due to the unique PA-RISC ABI. As far as I know it looks like
  192. * this:
  193. ----------------------------------- (user startup code creates this frame)
  194. | 32 bytes of magic |
  195. |---------------------------------|
  196. | 32 bytes argument/sp save area |
  197. |---------------------------------| (bprm->p)
  198. | ELF auxiliary info |
  199. | (up to 28 words) |
  200. |---------------------------------|
  201. | NULL |
  202. |---------------------------------|
  203. | Environment pointers |
  204. |---------------------------------|
  205. | NULL |
  206. |---------------------------------|
  207. | Argument pointers |
  208. |---------------------------------| <- argv
  209. | argc (1 word) |
  210. |---------------------------------| <- bprm->exec (HACK!)
  211. | N bytes of slack |
  212. |---------------------------------|
  213. | filename passed to execve |
  214. |---------------------------------| (mm->env_end)
  215. | env strings |
  216. |---------------------------------| (mm->env_start, mm->arg_end)
  217. | arg strings |
  218. |---------------------------------|
  219. | additional faked arg strings if |
  220. | we're invoked via binfmt_script |
  221. |---------------------------------| (mm->arg_start)
  222. stack base is at TASK_SIZE - rlim_max.
  223. on downward growing arches, it looks like this:
  224. stack base at TASK_SIZE
  225. | filename passed to execve
  226. | env strings
  227. | arg strings
  228. | faked arg strings
  229. | slack
  230. | ELF
  231. | envps
  232. | argvs
  233. | argc
  234. * The pleasant part of this is that if we need to skip arguments we
  235. * can just decrement argc and move argv, because the stack pointer
  236. * is utterly unrelated to the location of the environment and
  237. * argument vectors.
  238. *
  239. * Note that the S/390 people took the easy way out and hacked their
  240. * GCC to make the stack grow downwards.
  241. *
  242. * Final Note: For entry from syscall, the W (wide) bit of the PSW
  243. * is stuffed into the lowest bit of the user sp (%r30), so we fill
  244. * it in here from the current->personality
  245. */
  246. #ifdef __LP64__
  247. #define USER_WIDE_MODE (!test_thread_flag(TIF_32BIT))
  248. #else
  249. #define USER_WIDE_MODE 0
  250. #endif
  251. #define start_thread(regs, new_pc, new_sp) do { \
  252. elf_addr_t *sp = (elf_addr_t *)new_sp; \
  253. __u32 spaceid = (__u32)current->mm->context; \
  254. elf_addr_t pc = (elf_addr_t)new_pc | 3; \
  255. elf_caddr_t *argv = (elf_caddr_t *)bprm->exec + 1; \
  256. \
  257. set_fs(USER_DS); \
  258. regs->iasq[0] = spaceid; \
  259. regs->iasq[1] = spaceid; \
  260. regs->iaoq[0] = pc; \
  261. regs->iaoq[1] = pc + 4; \
  262. regs->sr[2] = LINUX_GATEWAY_SPACE; \
  263. regs->sr[3] = 0xffff; \
  264. regs->sr[4] = spaceid; \
  265. regs->sr[5] = spaceid; \
  266. regs->sr[6] = spaceid; \
  267. regs->sr[7] = spaceid; \
  268. regs->gr[ 0] = USER_PSW | (USER_WIDE_MODE ? PSW_W : 0); \
  269. regs->fr[ 0] = 0LL; \
  270. regs->fr[ 1] = 0LL; \
  271. regs->fr[ 2] = 0LL; \
  272. regs->fr[ 3] = 0LL; \
  273. regs->gr[30] = (((unsigned long)sp + 63) &~ 63) | (USER_WIDE_MODE ? 1 : 0); \
  274. regs->gr[31] = pc; \
  275. \
  276. get_user(regs->gr[25], (argv - 1)); \
  277. regs->gr[24] = (long) argv; \
  278. regs->gr[23] = 0; \
  279. } while(0)
  280. struct task_struct;
  281. struct mm_struct;
  282. /* Free all resources held by a thread. */
  283. extern void release_thread(struct task_struct *);
  284. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  285. /* Prepare to copy thread state - unlazy all lazy status */
  286. #define prepare_to_copy(tsk) do { } while (0)
  287. extern void map_hpux_gateway_page(struct task_struct *tsk, struct mm_struct *mm);
  288. extern unsigned long get_wchan(struct task_struct *p);
  289. #define KSTK_EIP(tsk) ((tsk)->thread.regs.iaoq[0])
  290. #define KSTK_ESP(tsk) ((tsk)->thread.regs.gr[30])
  291. #define cpu_relax() barrier()
  292. /* Used as a macro to identify the combined VIPT/PIPT cached
  293. * CPUs which require a guarantee of coherency (no inequivalent
  294. * aliases with different data, whether clean or not) to operate */
  295. static inline int parisc_requires_coherency(void)
  296. {
  297. #ifdef CONFIG_PA8X00
  298. /* FIXME: also pa8900 - when we see one */
  299. return boot_cpu_data.cpu_type == mako;
  300. #else
  301. return 0;
  302. #endif
  303. }
  304. #endif /* __ASSEMBLY__ */
  305. #endif /* __ASM_PARISC_PROCESSOR_H */