processor.h 11 KB

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