processor.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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. struct hardwall_task {
  69. /* Which hardwall is this task tied to? (or NULL if none) */
  70. struct hardwall_info *info;
  71. /* Chains this task into the list at info->task_head. */
  72. struct list_head list;
  73. };
  74. #ifdef __tilepro__
  75. #define HARDWALL_TYPES 1 /* udn */
  76. #else
  77. #define HARDWALL_TYPES 3 /* udn, idn, and ipi */
  78. #endif
  79. #endif
  80. struct thread_struct {
  81. /* kernel stack pointer */
  82. unsigned long ksp;
  83. /* kernel PC */
  84. unsigned long pc;
  85. /* starting user stack pointer (for page migration) */
  86. unsigned long usp0;
  87. /* pid of process that created this one */
  88. pid_t creator_pid;
  89. #if CHIP_HAS_TILE_DMA()
  90. /* DMA info for suspended threads (byte == 0 means no DMA state) */
  91. struct tile_dma_state tile_dma_state;
  92. #endif
  93. /* User EX_CONTEXT registers */
  94. unsigned long ex_context[2];
  95. /* User SYSTEM_SAVE registers */
  96. unsigned long system_save[4];
  97. /* User interrupt mask */
  98. unsigned long long interrupt_mask;
  99. /* User interrupt-control 0 state */
  100. unsigned long intctrl_0;
  101. #if CHIP_HAS_PROC_STATUS_SPR()
  102. /* Any other miscellaneous processor state bits */
  103. unsigned long proc_status;
  104. #endif
  105. #if !CHIP_HAS_FIXED_INTVEC_BASE()
  106. /* Interrupt base for PL0 interrupts */
  107. unsigned long interrupt_vector_base;
  108. #endif
  109. #if CHIP_HAS_TILE_RTF_HWM()
  110. /* Tile cache retry fifo high-water mark */
  111. unsigned long tile_rtf_hwm;
  112. #endif
  113. #if CHIP_HAS_DSTREAM_PF()
  114. /* Data stream prefetch control */
  115. unsigned long dstream_pf;
  116. #endif
  117. #ifdef CONFIG_HARDWALL
  118. /* Hardwall information for various resources. */
  119. struct hardwall_task hardwall[HARDWALL_TYPES];
  120. #endif
  121. #if CHIP_HAS_TILE_DMA()
  122. /* Async DMA TLB fault information */
  123. struct async_tlb dma_async_tlb;
  124. #endif
  125. #if CHIP_HAS_SN_PROC()
  126. /* Was static network processor when we were switched out? */
  127. int sn_proc_running;
  128. /* Async SNI TLB fault information */
  129. struct async_tlb sn_async_tlb;
  130. #endif
  131. };
  132. #endif /* !__ASSEMBLY__ */
  133. /*
  134. * Start with "sp" this many bytes below the top of the kernel stack.
  135. * This preserves the invariant that a called function may write to *sp.
  136. */
  137. #define STACK_TOP_DELTA 8
  138. /*
  139. * When entering the kernel via a fault, start with the top of the
  140. * pt_regs structure this many bytes below the top of the page.
  141. * This aligns the pt_regs structure optimally for cache-line access.
  142. */
  143. #ifdef __tilegx__
  144. #define KSTK_PTREGS_GAP 48
  145. #else
  146. #define KSTK_PTREGS_GAP 56
  147. #endif
  148. #ifndef __ASSEMBLY__
  149. #ifdef __tilegx__
  150. #define TASK_SIZE_MAX (MEM_LOW_END + 1)
  151. #else
  152. #define TASK_SIZE_MAX PAGE_OFFSET
  153. #endif
  154. /* TASK_SIZE and related variables are always checked in "current" context. */
  155. #ifdef CONFIG_COMPAT
  156. #define COMPAT_TASK_SIZE (1UL << 31)
  157. #define TASK_SIZE ((current_thread_info()->status & TS_COMPAT) ?\
  158. COMPAT_TASK_SIZE : TASK_SIZE_MAX)
  159. #else
  160. #define TASK_SIZE TASK_SIZE_MAX
  161. #endif
  162. /* We provide a minimal "vdso" a la x86; just the sigreturn code for now. */
  163. #define VDSO_BASE (TASK_SIZE - PAGE_SIZE)
  164. #define STACK_TOP VDSO_BASE
  165. /* STACK_TOP_MAX is used temporarily in execve and should not check COMPAT. */
  166. #define STACK_TOP_MAX TASK_SIZE_MAX
  167. /*
  168. * This decides where the kernel will search for a free chunk of vm
  169. * space during mmap's, if it is using bottom-up mapping.
  170. */
  171. #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
  172. #define HAVE_ARCH_PICK_MMAP_LAYOUT
  173. #define INIT_THREAD { \
  174. .ksp = (unsigned long)init_stack + THREAD_SIZE - STACK_TOP_DELTA, \
  175. .interrupt_mask = -1ULL \
  176. }
  177. /* Kernel stack top for the task that first boots on this cpu. */
  178. DECLARE_PER_CPU(unsigned long, boot_sp);
  179. /* PC to boot from on this cpu. */
  180. DECLARE_PER_CPU(unsigned long, boot_pc);
  181. /* Do necessary setup to start up a newly executed thread. */
  182. static inline void start_thread(struct pt_regs *regs,
  183. unsigned long pc, unsigned long usp)
  184. {
  185. regs->pc = pc;
  186. regs->sp = usp;
  187. }
  188. /* Free all resources held by a thread. */
  189. static inline void release_thread(struct task_struct *dead_task)
  190. {
  191. /* Nothing for now */
  192. }
  193. extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  194. extern int do_work_pending(struct pt_regs *regs, u32 flags);
  195. /*
  196. * Return saved (kernel) PC of a blocked thread.
  197. * Only used in a printk() in kernel/sched.c, so don't work too hard.
  198. */
  199. #define thread_saved_pc(t) ((t)->thread.pc)
  200. unsigned long get_wchan(struct task_struct *p);
  201. /* Return initial ksp value for given task. */
  202. #define task_ksp0(task) ((unsigned long)(task)->stack + THREAD_SIZE)
  203. /* Return some info about the user process TASK. */
  204. #define KSTK_TOP(task) (task_ksp0(task) - STACK_TOP_DELTA)
  205. #define task_pt_regs(task) \
  206. ((struct pt_regs *)(task_ksp0(task) - KSTK_PTREGS_GAP) - 1)
  207. #define task_sp(task) (task_pt_regs(task)->sp)
  208. #define task_pc(task) (task_pt_regs(task)->pc)
  209. /* Aliases for pc and sp (used in fs/proc/array.c) */
  210. #define KSTK_EIP(task) task_pc(task)
  211. #define KSTK_ESP(task) task_sp(task)
  212. /* Standard format for printing registers and other word-size data. */
  213. #ifdef __tilegx__
  214. # define REGFMT "0x%016lx"
  215. #else
  216. # define REGFMT "0x%08lx"
  217. #endif
  218. /*
  219. * Do some slow action (e.g. read a slow SPR).
  220. * Note that this must also have compiler-barrier semantics since
  221. * it may be used in a busy loop reading memory.
  222. */
  223. static inline void cpu_relax(void)
  224. {
  225. __insn_mfspr(SPR_PASS);
  226. barrier();
  227. }
  228. /* Info on this processor (see fs/proc/cpuinfo.c) */
  229. struct seq_operations;
  230. extern const struct seq_operations cpuinfo_op;
  231. /* Provide information about the chip model. */
  232. extern char chip_model[64];
  233. /* Data on which physical memory controller corresponds to which NUMA node. */
  234. extern int node_controller[];
  235. #if CHIP_HAS_CBOX_HOME_MAP()
  236. /* Does the heap allocator return hash-for-home pages by default? */
  237. extern int hash_default;
  238. /* Should kernel stack pages be hash-for-home? */
  239. extern int kstack_hash;
  240. /* Does MAP_ANONYMOUS return hash-for-home pages by default? */
  241. #define uheap_hash hash_default
  242. #else
  243. #define hash_default 0
  244. #define kstack_hash 0
  245. #define uheap_hash 0
  246. #endif
  247. /* Are we using huge pages in the TLB for kernel data? */
  248. extern int kdata_huge;
  249. /* Support standard Linux prefetching. */
  250. #define ARCH_HAS_PREFETCH
  251. #define prefetch(x) __builtin_prefetch(x)
  252. #define PREFETCH_STRIDE CHIP_L2_LINE_SIZE()
  253. /* Bring a value into the L1D, faulting the TLB if necessary. */
  254. #ifdef __tilegx__
  255. #define prefetch_L1(x) __insn_prefetch_l1_fault((void *)(x))
  256. #else
  257. #define prefetch_L1(x) __insn_prefetch_L1((void *)(x))
  258. #endif
  259. #else /* __ASSEMBLY__ */
  260. /* Do some slow action (e.g. read a slow SPR). */
  261. #define CPU_RELAX mfspr zero, SPR_PASS
  262. #endif /* !__ASSEMBLY__ */
  263. /* Assembly code assumes that the PL is in the low bits. */
  264. #if SPR_EX_CONTEXT_1_1__PL_SHIFT != 0
  265. # error Fix assembly assumptions about PL
  266. #endif
  267. /* We sometimes use these macros for EX_CONTEXT_0_1 as well. */
  268. #if SPR_EX_CONTEXT_1_1__PL_SHIFT != SPR_EX_CONTEXT_0_1__PL_SHIFT || \
  269. SPR_EX_CONTEXT_1_1__PL_RMASK != SPR_EX_CONTEXT_0_1__PL_RMASK || \
  270. SPR_EX_CONTEXT_1_1__ICS_SHIFT != SPR_EX_CONTEXT_0_1__ICS_SHIFT || \
  271. SPR_EX_CONTEXT_1_1__ICS_RMASK != SPR_EX_CONTEXT_0_1__ICS_RMASK
  272. # error Fix assumptions that EX1 macros work for both PL0 and PL1
  273. #endif
  274. /* Allow pulling apart and recombining the PL and ICS bits in EX_CONTEXT. */
  275. #define EX1_PL(ex1) \
  276. (((ex1) >> SPR_EX_CONTEXT_1_1__PL_SHIFT) & SPR_EX_CONTEXT_1_1__PL_RMASK)
  277. #define EX1_ICS(ex1) \
  278. (((ex1) >> SPR_EX_CONTEXT_1_1__ICS_SHIFT) & SPR_EX_CONTEXT_1_1__ICS_RMASK)
  279. #define PL_ICS_EX1(pl, ics) \
  280. (((pl) << SPR_EX_CONTEXT_1_1__PL_SHIFT) | \
  281. ((ics) << SPR_EX_CONTEXT_1_1__ICS_SHIFT))
  282. /*
  283. * Provide symbolic constants for PLs.
  284. * Note that assembly code assumes that USER_PL is zero.
  285. */
  286. #define USER_PL 0
  287. #if CONFIG_KERNEL_PL == 2
  288. #define GUEST_PL 1
  289. #endif
  290. #define KERNEL_PL CONFIG_KERNEL_PL
  291. /* SYSTEM_SAVE_K_0 holds the current cpu number ORed with ksp0. */
  292. #define CPU_LOG_MASK_VALUE 12
  293. #define CPU_MASK_VALUE ((1 << CPU_LOG_MASK_VALUE) - 1)
  294. #if CONFIG_NR_CPUS > CPU_MASK_VALUE
  295. # error Too many cpus!
  296. #endif
  297. #define raw_smp_processor_id() \
  298. ((int)__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & CPU_MASK_VALUE)
  299. #define get_current_ksp0() \
  300. (__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & ~CPU_MASK_VALUE)
  301. #define next_current_ksp0(task) ({ \
  302. unsigned long __ksp0 = task_ksp0(task); \
  303. int __cpu = raw_smp_processor_id(); \
  304. BUG_ON(__ksp0 & CPU_MASK_VALUE); \
  305. __ksp0 | __cpu; \
  306. })
  307. #endif /* _ASM_TILE_PROCESSOR_H */