context.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * linux/arch/arm/mm/context.c
  3. *
  4. * Copyright (C) 2002-2003 Deep Blue Solutions Ltd, all rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/sched.h>
  12. #include <linux/mm.h>
  13. #include <asm/mmu_context.h>
  14. #include <asm/tlbflush.h>
  15. static DEFINE_SPINLOCK(cpu_asid_lock);
  16. unsigned int cpu_last_asid = ASID_FIRST_VERSION;
  17. /*
  18. * We fork()ed a process, and we need a new context for the child
  19. * to run in. We reserve version 0 for initial tasks so we will
  20. * always allocate an ASID. The ASID 0 is reserved for the TTBR
  21. * register changing sequence.
  22. */
  23. void __init_new_context(struct task_struct *tsk, struct mm_struct *mm)
  24. {
  25. mm->context.id = 0;
  26. }
  27. void __new_context(struct mm_struct *mm)
  28. {
  29. unsigned int asid;
  30. spin_lock(&cpu_asid_lock);
  31. asid = ++cpu_last_asid;
  32. if (asid == 0)
  33. asid = cpu_last_asid = ASID_FIRST_VERSION;
  34. /*
  35. * If we've used up all our ASIDs, we need
  36. * to start a new version and flush the TLB.
  37. */
  38. if (unlikely((asid & ~ASID_MASK) == 0)) {
  39. asid = ++cpu_last_asid;
  40. /* set the reserved ASID before flushing the TLB */
  41. asm("mcr p15, 0, %0, c13, c0, 1 @ set reserved context ID\n"
  42. :
  43. : "r" (0));
  44. isb();
  45. flush_tlb_all();
  46. if (icache_is_vivt_asid_tagged()) {
  47. asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n"
  48. "mcr p15, 0, %0, c7, c5, 6 @ flush BTAC/BTB\n"
  49. :
  50. : "r" (0));
  51. dsb();
  52. }
  53. }
  54. spin_unlock(&cpu_asid_lock);
  55. mm->cpu_vm_mask = cpumask_of_cpu(smp_processor_id());
  56. mm->context.id = asid;
  57. }