mmu_context_nohash.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /*
  2. * This file contains the routines for handling the MMU on those
  3. * PowerPC implementations where the MMU is not using the hash
  4. * table, such as 8xx, 4xx, BookE's etc...
  5. *
  6. * Copyright 2008 Ben Herrenschmidt <benh@kernel.crashing.org>
  7. * IBM Corp.
  8. *
  9. * Derived from previous arch/powerpc/mm/mmu_context.c
  10. * and arch/powerpc/include/asm/mmu_context.h
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. *
  17. * TODO:
  18. *
  19. * - The global context lock will not scale very well
  20. * - The maps should be dynamically allocated to allow for processors
  21. * that support more PID bits at runtime
  22. * - Implement flush_tlb_mm() by making the context stale and picking
  23. * a new one
  24. * - More aggressively clear stale map bits and maybe find some way to
  25. * also clear mm->cpu_vm_mask bits when processes are migrated
  26. */
  27. #undef DEBUG
  28. #define DEBUG_STEAL_ONLY
  29. #undef DEBUG_MAP_CONSISTENCY
  30. /*#define DEBUG_CLAMP_LAST_CONTEXT 15 */
  31. #include <linux/kernel.h>
  32. #include <linux/mm.h>
  33. #include <linux/init.h>
  34. #include <linux/spinlock.h>
  35. #include <linux/bootmem.h>
  36. #include <linux/notifier.h>
  37. #include <linux/cpu.h>
  38. #include <asm/mmu_context.h>
  39. #include <asm/tlbflush.h>
  40. static unsigned int first_context, last_context;
  41. static unsigned int next_context, nr_free_contexts;
  42. static unsigned long *context_map;
  43. static unsigned long *stale_map[NR_CPUS];
  44. static struct mm_struct **context_mm;
  45. static spinlock_t context_lock = SPIN_LOCK_UNLOCKED;
  46. #define CTX_MAP_SIZE \
  47. (sizeof(unsigned long) * (last_context / BITS_PER_LONG + 1))
  48. /* Steal a context from a task that has one at the moment.
  49. *
  50. * This is used when we are running out of available PID numbers
  51. * on the processors.
  52. *
  53. * This isn't an LRU system, it just frees up each context in
  54. * turn (sort-of pseudo-random replacement :). This would be the
  55. * place to implement an LRU scheme if anyone was motivated to do it.
  56. * -- paulus
  57. *
  58. * For context stealing, we use a slightly different approach for
  59. * SMP and UP. Basically, the UP one is simpler and doesn't use
  60. * the stale map as we can just flush the local CPU
  61. * -- benh
  62. */
  63. #ifdef CONFIG_SMP
  64. static unsigned int steal_context_smp(unsigned int id)
  65. {
  66. struct mm_struct *mm;
  67. unsigned int cpu, max;
  68. again:
  69. max = last_context - first_context;
  70. /* Attempt to free next_context first and then loop until we manage */
  71. while (max--) {
  72. /* Pick up the victim mm */
  73. mm = context_mm[id];
  74. /* We have a candidate victim, check if it's active, on SMP
  75. * we cannot steal active contexts
  76. */
  77. if (mm->context.active) {
  78. id++;
  79. if (id > last_context)
  80. id = first_context;
  81. continue;
  82. }
  83. pr_debug("[%d] steal context %d from mm @%p\n",
  84. smp_processor_id(), id, mm);
  85. /* Mark this mm has having no context anymore */
  86. mm->context.id = MMU_NO_CONTEXT;
  87. /* Mark it stale on all CPUs that used this mm */
  88. for_each_cpu(cpu, mm_cpumask(mm))
  89. __set_bit(id, stale_map[cpu]);
  90. return id;
  91. }
  92. /* This will happen if you have more CPUs than available contexts,
  93. * all we can do here is wait a bit and try again
  94. */
  95. spin_unlock(&context_lock);
  96. cpu_relax();
  97. spin_lock(&context_lock);
  98. goto again;
  99. }
  100. #endif /* CONFIG_SMP */
  101. /* Note that this will also be called on SMP if all other CPUs are
  102. * offlined, which means that it may be called for cpu != 0. For
  103. * this to work, we somewhat assume that CPUs that are onlined
  104. * come up with a fully clean TLB (or are cleaned when offlined)
  105. */
  106. static unsigned int steal_context_up(unsigned int id)
  107. {
  108. struct mm_struct *mm;
  109. int cpu = smp_processor_id();
  110. /* Pick up the victim mm */
  111. mm = context_mm[id];
  112. pr_debug("[%d] steal context %d from mm @%p\n", cpu, id, mm);
  113. /* Mark this mm has having no context anymore */
  114. mm->context.id = MMU_NO_CONTEXT;
  115. /* Flush the TLB for that context */
  116. local_flush_tlb_mm(mm);
  117. /* XXX This clear should ultimately be part of local_flush_tlb_mm */
  118. __clear_bit(id, stale_map[cpu]);
  119. return id;
  120. }
  121. #ifdef DEBUG_MAP_CONSISTENCY
  122. static void context_check_map(void)
  123. {
  124. unsigned int id, nrf, nact;
  125. nrf = nact = 0;
  126. for (id = first_context; id <= last_context; id++) {
  127. int used = test_bit(id, context_map);
  128. if (!used)
  129. nrf++;
  130. if (used != (context_mm[id] != NULL))
  131. pr_err("MMU: Context %d is %s and MM is %p !\n",
  132. id, used ? "used" : "free", context_mm[id]);
  133. if (context_mm[id] != NULL)
  134. nact += context_mm[id]->context.active;
  135. }
  136. if (nrf != nr_free_contexts) {
  137. pr_err("MMU: Free context count out of sync ! (%d vs %d)\n",
  138. nr_free_contexts, nrf);
  139. nr_free_contexts = nrf;
  140. }
  141. if (nact > num_online_cpus())
  142. pr_err("MMU: More active contexts than CPUs ! (%d vs %d)\n",
  143. nact, num_online_cpus());
  144. if (first_context > 0 && !test_bit(0, context_map))
  145. pr_err("MMU: Context 0 has been freed !!!\n");
  146. }
  147. #else
  148. static void context_check_map(void) { }
  149. #endif
  150. void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next)
  151. {
  152. unsigned int id, cpu = smp_processor_id();
  153. unsigned long *map;
  154. /* No lockless fast path .. yet */
  155. spin_lock(&context_lock);
  156. #ifndef DEBUG_STEAL_ONLY
  157. pr_debug("[%d] activating context for mm @%p, active=%d, id=%d\n",
  158. cpu, next, next->context.active, next->context.id);
  159. #endif
  160. #ifdef CONFIG_SMP
  161. /* Mark us active and the previous one not anymore */
  162. next->context.active++;
  163. if (prev) {
  164. #ifndef DEBUG_STEAL_ONLY
  165. pr_debug(" old context %p active was: %d\n",
  166. prev, prev->context.active);
  167. #endif
  168. WARN_ON(prev->context.active < 1);
  169. prev->context.active--;
  170. }
  171. #endif /* CONFIG_SMP */
  172. /* If we already have a valid assigned context, skip all that */
  173. id = next->context.id;
  174. if (likely(id != MMU_NO_CONTEXT))
  175. goto ctxt_ok;
  176. /* We really don't have a context, let's try to acquire one */
  177. id = next_context;
  178. if (id > last_context)
  179. id = first_context;
  180. map = context_map;
  181. /* No more free contexts, let's try to steal one */
  182. if (nr_free_contexts == 0) {
  183. #ifdef CONFIG_SMP
  184. if (num_online_cpus() > 1) {
  185. id = steal_context_smp(id);
  186. goto stolen;
  187. }
  188. #endif /* CONFIG_SMP */
  189. id = steal_context_up(id);
  190. goto stolen;
  191. }
  192. nr_free_contexts--;
  193. /* We know there's at least one free context, try to find it */
  194. while (__test_and_set_bit(id, map)) {
  195. id = find_next_zero_bit(map, last_context+1, id);
  196. if (id > last_context)
  197. id = first_context;
  198. }
  199. stolen:
  200. next_context = id + 1;
  201. context_mm[id] = next;
  202. next->context.id = id;
  203. #ifndef DEBUG_STEAL_ONLY
  204. pr_debug("[%d] picked up new id %d, nrf is now %d\n",
  205. cpu, id, nr_free_contexts);
  206. #endif
  207. context_check_map();
  208. ctxt_ok:
  209. /* If that context got marked stale on this CPU, then flush the
  210. * local TLB for it and unmark it before we use it
  211. */
  212. if (test_bit(id, stale_map[cpu])) {
  213. pr_debug("[%d] flushing stale context %d for mm @%p !\n",
  214. cpu, id, next);
  215. local_flush_tlb_mm(next);
  216. /* XXX This clear should ultimately be part of local_flush_tlb_mm */
  217. __clear_bit(id, stale_map[cpu]);
  218. }
  219. /* Flick the MMU and release lock */
  220. set_context(id, next->pgd);
  221. spin_unlock(&context_lock);
  222. }
  223. /*
  224. * Set up the context for a new address space.
  225. */
  226. int init_new_context(struct task_struct *t, struct mm_struct *mm)
  227. {
  228. mm->context.id = MMU_NO_CONTEXT;
  229. mm->context.active = 0;
  230. return 0;
  231. }
  232. /*
  233. * We're finished using the context for an address space.
  234. */
  235. void destroy_context(struct mm_struct *mm)
  236. {
  237. unsigned int id;
  238. if (mm->context.id == MMU_NO_CONTEXT)
  239. return;
  240. WARN_ON(mm->context.active != 0);
  241. spin_lock(&context_lock);
  242. id = mm->context.id;
  243. if (id != MMU_NO_CONTEXT) {
  244. __clear_bit(id, context_map);
  245. mm->context.id = MMU_NO_CONTEXT;
  246. #ifdef DEBUG_MAP_CONSISTENCY
  247. mm->context.active = 0;
  248. context_mm[id] = NULL;
  249. #endif
  250. nr_free_contexts++;
  251. }
  252. spin_unlock(&context_lock);
  253. }
  254. #ifdef CONFIG_SMP
  255. static int __cpuinit mmu_context_cpu_notify(struct notifier_block *self,
  256. unsigned long action, void *hcpu)
  257. {
  258. unsigned int cpu = (unsigned int)(long)hcpu;
  259. /* We don't touch CPU 0 map, it's allocated at aboot and kept
  260. * around forever
  261. */
  262. if (cpu == 0)
  263. return NOTIFY_OK;
  264. switch (action) {
  265. case CPU_ONLINE:
  266. case CPU_ONLINE_FROZEN:
  267. pr_debug("MMU: Allocating stale context map for CPU %d\n", cpu);
  268. stale_map[cpu] = kzalloc(CTX_MAP_SIZE, GFP_KERNEL);
  269. break;
  270. #ifdef CONFIG_HOTPLUG_CPU
  271. case CPU_DEAD:
  272. case CPU_DEAD_FROZEN:
  273. pr_debug("MMU: Freeing stale context map for CPU %d\n", cpu);
  274. kfree(stale_map[cpu]);
  275. stale_map[cpu] = NULL;
  276. break;
  277. #endif
  278. }
  279. return NOTIFY_OK;
  280. }
  281. static struct notifier_block __cpuinitdata mmu_context_cpu_nb = {
  282. .notifier_call = mmu_context_cpu_notify,
  283. };
  284. #endif /* CONFIG_SMP */
  285. /*
  286. * Initialize the context management stuff.
  287. */
  288. void __init mmu_context_init(void)
  289. {
  290. /* Mark init_mm as being active on all possible CPUs since
  291. * we'll get called with prev == init_mm the first time
  292. * we schedule on a given CPU
  293. */
  294. init_mm.context.active = NR_CPUS;
  295. /*
  296. * The MPC8xx has only 16 contexts. We rotate through them on each
  297. * task switch. A better way would be to keep track of tasks that
  298. * own contexts, and implement an LRU usage. That way very active
  299. * tasks don't always have to pay the TLB reload overhead. The
  300. * kernel pages are mapped shared, so the kernel can run on behalf
  301. * of any task that makes a kernel entry. Shared does not mean they
  302. * are not protected, just that the ASID comparison is not performed.
  303. * -- Dan
  304. *
  305. * The IBM4xx has 256 contexts, so we can just rotate through these
  306. * as a way of "switching" contexts. If the TID of the TLB is zero,
  307. * the PID/TID comparison is disabled, so we can use a TID of zero
  308. * to represent all kernel pages as shared among all contexts.
  309. * -- Dan
  310. */
  311. if (mmu_has_feature(MMU_FTR_TYPE_8xx)) {
  312. first_context = 0;
  313. last_context = 15;
  314. } else {
  315. first_context = 1;
  316. last_context = 255;
  317. }
  318. #ifdef DEBUG_CLAMP_LAST_CONTEXT
  319. last_context = DEBUG_CLAMP_LAST_CONTEXT;
  320. #endif
  321. /*
  322. * Allocate the maps used by context management
  323. */
  324. context_map = alloc_bootmem(CTX_MAP_SIZE);
  325. context_mm = alloc_bootmem(sizeof(void *) * (last_context + 1));
  326. stale_map[0] = alloc_bootmem(CTX_MAP_SIZE);
  327. #ifdef CONFIG_SMP
  328. register_cpu_notifier(&mmu_context_cpu_nb);
  329. #endif
  330. printk(KERN_INFO
  331. "MMU: Allocated %zu bytes of context maps for %d contexts\n",
  332. 2 * CTX_MAP_SIZE + (sizeof(void *) * (last_context + 1)),
  333. last_context - first_context + 1);
  334. /*
  335. * Some processors have too few contexts to reserve one for
  336. * init_mm, and require using context 0 for a normal task.
  337. * Other processors reserve the use of context zero for the kernel.
  338. * This code assumes first_context < 32.
  339. */
  340. context_map[0] = (1 << first_context) - 1;
  341. next_context = first_context;
  342. nr_free_contexts = last_context - first_context + 1;
  343. }