processor.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. #ifndef _ASM_TILE_PROCESSOR_H
  15. #define _ASM_TILE_PROCESSOR_H
  16. #ifndef __ASSEMBLY__
  17. /*
  18. * NOTE: we don't include <linux/ptrace.h> or <linux/percpu.h> as one
  19. * normally would, due to #include dependencies.
  20. */
  21. #include <linux/types.h>
  22. #include <asm/ptrace.h>
  23. #include <asm/percpu.h>
  24. #include <arch/chip.h>
  25. #include <arch/spr_def.h>
  26. struct task_struct;
  27. struct thread_struct;
  28. typedef struct {
  29. unsigned long seg;
  30. } mm_segment_t;
  31. /*
  32. * Default implementation of macro that returns current
  33. * instruction pointer ("program counter").
  34. */
  35. void *current_text_addr(void);
  36. #if CHIP_HAS_TILE_DMA()
  37. /* Capture the state of a suspended DMA. */
  38. struct tile_dma_state {
  39. int enabled;
  40. unsigned long src;
  41. unsigned long dest;
  42. unsigned long strides;
  43. unsigned long chunk_size;
  44. unsigned long src_chunk;
  45. unsigned long dest_chunk;
  46. unsigned long byte;
  47. unsigned long status;
  48. };
  49. /*
  50. * A mask of the DMA status register for selecting only the 'running'
  51. * and 'done' bits.
  52. */
  53. #define DMA_STATUS_MASK \
  54. (SPR_DMA_STATUS__RUNNING_MASK | SPR_DMA_STATUS__DONE_MASK)
  55. #endif
  56. /*
  57. * Track asynchronous TLB events (faults and access violations)
  58. * that occur while we are in kernel mode from DMA or the SN processor.
  59. */
  60. struct async_tlb {
  61. short fault_num; /* original fault number; 0 if none */
  62. char is_fault; /* was it a fault (vs an access violation) */
  63. char is_write; /* for fault: was it caused by a write? */
  64. unsigned long address; /* what address faulted? */
  65. };
  66. #ifdef CONFIG_HARDWALL
  67. struct hardwall_info;
  68. #endif
  69. struct thread_struct {
  70. /* kernel stack pointer */
  71. unsigned long ksp;
  72. /* kernel PC */
  73. unsigned long pc;
  74. /* starting user stack pointer (for page migration) */
  75. unsigned long usp0;
  76. /* pid of process that created this one */
  77. pid_t creator_pid;
  78. #if CHIP_HAS_TILE_DMA()
  79. /* DMA info for suspended threads (byte == 0 means no DMA state) */
  80. struct tile_dma_state tile_dma_state;
  81. #endif
  82. /* User EX_CONTEXT registers */
  83. unsigned long ex_context[2];
  84. /* User SYSTEM_SAVE registers */
  85. unsigned long system_save[4];
  86. /* User interrupt mask */
  87. unsigned long long interrupt_mask;
  88. /* User interrupt-control 0 state */
  89. unsigned long intctrl_0;
  90. #if CHIP_HAS_PROC_STATUS_SPR()
  91. /* Any other miscellaneous processor state bits */
  92. unsigned long proc_status;
  93. #endif
  94. #if !CHIP_HAS_FIXED_INTVEC_BASE()
  95. /* Interrupt base for PL0 interrupts */
  96. unsigned long interrupt_vector_base;
  97. #endif
  98. #if CHIP_HAS_TILE_RTF_HWM()
  99. /* Tile cache retry fifo high-water mark */
  100. unsigned long tile_rtf_hwm;
  101. #endif
  102. #if CHIP_HAS_DSTREAM_PF()
  103. /* Data stream prefetch control */
  104. unsigned long dstream_pf;
  105. #endif
  106. #ifdef CONFIG_HARDWALL
  107. /* Is this task tied to an activated hardwall? */
  108. struct hardwall_info *hardwall;
  109. /* Chains this task into the list at hardwall->list. */
  110. struct list_head hardwall_list;
  111. #endif
  112. #if CHIP_HAS_TILE_DMA()
  113. /* Async DMA TLB fault information */
  114. struct async_tlb dma_async_tlb;
  115. #endif
  116. #if CHIP_HAS_SN_PROC()
  117. /* Was static network processor when we were switched out? */
  118. int sn_proc_running;
  119. /* Async SNI TLB fault information */
  120. struct async_tlb sn_async_tlb;
  121. #endif
  122. };
  123. #endif /* !__ASSEMBLY__ */
  124. /*
  125. * Start with "sp" this many bytes below the top of the kernel stack.
  126. * This preserves the invariant that a called function may write to *sp.
  127. */
  128. #define STACK_TOP_DELTA 8
  129. /*
  130. * When entering the kernel via a fault, start with the top of the
  131. * pt_regs structure this many bytes below the top of the page.
  132. * This aligns the pt_regs structure optimally for cache-line access.
  133. */
  134. #ifdef __tilegx__
  135. #define KSTK_PTREGS_GAP 48
  136. #else
  137. #define KSTK_PTREGS_GAP 56
  138. #endif
  139. #ifndef __ASSEMBLY__
  140. #ifdef __tilegx__
  141. #define TASK_SIZE_MAX (MEM_LOW_END + 1)
  142. #else
  143. #define TASK_SIZE_MAX PAGE_OFFSET
  144. #endif
  145. /* TASK_SIZE and related variables are always checked in "current" context. */
  146. #ifdef CONFIG_COMPAT
  147. #define COMPAT_TASK_SIZE (1UL << 31)
  148. #define TASK_SIZE ((current_thread_info()->status & TS_COMPAT) ?\
  149. COMPAT_TASK_SIZE : TASK_SIZE_MAX)
  150. #else
  151. #define TASK_SIZE TASK_SIZE_MAX
  152. #endif
  153. /* We provide a minimal "vdso" a la x86; just the sigreturn code for now. */
  154. #define VDSO_BASE (TASK_SIZE - PAGE_SIZE)
  155. #define STACK_TOP VDSO_BASE
  156. /* STACK_TOP_MAX is used temporarily in execve and should not check COMPAT. */
  157. #define STACK_TOP_MAX TASK_SIZE_MAX
  158. /*
  159. * This decides where the kernel will search for a free chunk of vm
  160. * space during mmap's, if it is using bottom-up mapping.
  161. */
  162. #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
  163. #define HAVE_ARCH_PICK_MMAP_LAYOUT
  164. #define INIT_THREAD { \
  165. .ksp = (unsigned long)init_stack + THREAD_SIZE - STACK_TOP_DELTA, \
  166. .interrupt_mask = -1ULL \
  167. }
  168. /* Kernel stack top for the task that first boots on this cpu. */
  169. DECLARE_PER_CPU(unsigned long, boot_sp);
  170. /* PC to boot from on this cpu. */
  171. DECLARE_PER_CPU(unsigned long, boot_pc);
  172. /* Do necessary setup to start up a newly executed thread. */
  173. static inline void start_thread(struct pt_regs *regs,
  174. unsigned long pc, unsigned long usp)
  175. {
  176. regs->pc = pc;
  177. regs->sp = usp;
  178. }
  179. /* Free all resources held by a thread. */
  180. static inline void release_thread(struct task_struct *dead_task)
  181. {
  182. /* Nothing for now */
  183. }
  184. /* Prepare to copy thread state - unlazy all lazy status. */
  185. #define prepare_to_copy(tsk) do { } while (0)
  186. extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  187. extern int do_work_pending(struct pt_regs *regs, u32 flags);
  188. /*
  189. * Return saved (kernel) PC of a blocked thread.
  190. * Only used in a printk() in kernel/sched.c, so don't work too hard.
  191. */
  192. #define thread_saved_pc(t) ((t)->thread.pc)
  193. unsigned long get_wchan(struct task_struct *p);
  194. /* Return initial ksp value for given task. */
  195. #define task_ksp0(task) ((unsigned long)(task)->stack + THREAD_SIZE)
  196. /* Return some info about the user process TASK. */
  197. #define KSTK_TOP(task) (task_ksp0(task) - STACK_TOP_DELTA)
  198. #define task_pt_regs(task) \
  199. ((struct pt_regs *)(task_ksp0(task) - KSTK_PTREGS_GAP) - 1)
  200. #define task_sp(task) (task_pt_regs(task)->sp)
  201. #define task_pc(task) (task_pt_regs(task)->pc)
  202. /* Aliases for pc and sp (used in fs/proc/array.c) */
  203. #define KSTK_EIP(task) task_pc(task)
  204. #define KSTK_ESP(task) task_sp(task)
  205. /* Standard format for printing registers and other word-size data. */
  206. #ifdef __tilegx__
  207. # define REGFMT "0x%016lx"
  208. #else
  209. # define REGFMT "0x%08lx"
  210. #endif
  211. /*
  212. * Do some slow action (e.g. read a slow SPR).
  213. * Note that this must also have compiler-barrier semantics since
  214. * it may be used in a busy loop reading memory.
  215. */
  216. static inline void cpu_relax(void)
  217. {
  218. __insn_mfspr(SPR_PASS);
  219. barrier();
  220. }
  221. /* Info on this processor (see fs/proc/cpuinfo.c) */
  222. struct seq_operations;
  223. extern const struct seq_operations cpuinfo_op;
  224. /* Provide information about the chip model. */
  225. extern char chip_model[64];
  226. /* Data on which physical memory controller corresponds to which NUMA node. */
  227. extern int node_controller[];
  228. #if CHIP_HAS_CBOX_HOME_MAP()
  229. /* Does the heap allocator return hash-for-home pages by default? */
  230. extern int hash_default;
  231. /* Should kernel stack pages be hash-for-home? */
  232. extern int kstack_hash;
  233. /* Does MAP_ANONYMOUS return hash-for-home pages by default? */
  234. #define uheap_hash hash_default
  235. #else
  236. #define hash_default 0
  237. #define kstack_hash 0
  238. #define uheap_hash 0
  239. #endif
  240. /* Are we using huge pages in the TLB for kernel data? */
  241. extern int kdata_huge;
  242. /* Support standard Linux prefetching. */
  243. #define ARCH_HAS_PREFETCH
  244. #define prefetch(x) __builtin_prefetch(x)
  245. #define PREFETCH_STRIDE CHIP_L2_LINE_SIZE()
  246. /* Bring a value into the L1D, faulting the TLB if necessary. */
  247. #ifdef __tilegx__
  248. #define prefetch_L1(x) __insn_prefetch_l1_fault((void *)(x))
  249. #else
  250. #define prefetch_L1(x) __insn_prefetch_L1((void *)(x))
  251. #endif
  252. #else /* __ASSEMBLY__ */
  253. /* Do some slow action (e.g. read a slow SPR). */
  254. #define CPU_RELAX mfspr zero, SPR_PASS
  255. #endif /* !__ASSEMBLY__ */
  256. /* Assembly code assumes that the PL is in the low bits. */
  257. #if SPR_EX_CONTEXT_1_1__PL_SHIFT != 0
  258. # error Fix assembly assumptions about PL
  259. #endif
  260. /* We sometimes use these macros for EX_CONTEXT_0_1 as well. */
  261. #if SPR_EX_CONTEXT_1_1__PL_SHIFT != SPR_EX_CONTEXT_0_1__PL_SHIFT || \
  262. SPR_EX_CONTEXT_1_1__PL_RMASK != SPR_EX_CONTEXT_0_1__PL_RMASK || \
  263. SPR_EX_CONTEXT_1_1__ICS_SHIFT != SPR_EX_CONTEXT_0_1__ICS_SHIFT || \
  264. SPR_EX_CONTEXT_1_1__ICS_RMASK != SPR_EX_CONTEXT_0_1__ICS_RMASK
  265. # error Fix assumptions that EX1 macros work for both PL0 and PL1
  266. #endif
  267. /* Allow pulling apart and recombining the PL and ICS bits in EX_CONTEXT. */
  268. #define EX1_PL(ex1) \
  269. (((ex1) >> SPR_EX_CONTEXT_1_1__PL_SHIFT) & SPR_EX_CONTEXT_1_1__PL_RMASK)
  270. #define EX1_ICS(ex1) \
  271. (((ex1) >> SPR_EX_CONTEXT_1_1__ICS_SHIFT) & SPR_EX_CONTEXT_1_1__ICS_RMASK)
  272. #define PL_ICS_EX1(pl, ics) \
  273. (((pl) << SPR_EX_CONTEXT_1_1__PL_SHIFT) | \
  274. ((ics) << SPR_EX_CONTEXT_1_1__ICS_SHIFT))
  275. /*
  276. * Provide symbolic constants for PLs.
  277. * Note that assembly code assumes that USER_PL is zero.
  278. */
  279. #define USER_PL 0
  280. #if CONFIG_KERNEL_PL == 2
  281. #define GUEST_PL 1
  282. #endif
  283. #define KERNEL_PL CONFIG_KERNEL_PL
  284. /* SYSTEM_SAVE_K_0 holds the current cpu number ORed with ksp0. */
  285. #define CPU_LOG_MASK_VALUE 12
  286. #define CPU_MASK_VALUE ((1 << CPU_LOG_MASK_VALUE) - 1)
  287. #if CONFIG_NR_CPUS > CPU_MASK_VALUE
  288. # error Too many cpus!
  289. #endif
  290. #define raw_smp_processor_id() \
  291. ((int)__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & CPU_MASK_VALUE)
  292. #define get_current_ksp0() \
  293. (__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & ~CPU_MASK_VALUE)
  294. #define next_current_ksp0(task) ({ \
  295. unsigned long __ksp0 = task_ksp0(task); \
  296. int __cpu = raw_smp_processor_id(); \
  297. BUG_ON(__ksp0 & CPU_MASK_VALUE); \
  298. __ksp0 | __cpu; \
  299. })
  300. #endif /* _ASM_TILE_PROCESSOR_H */