tlb-pteaex.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * arch/sh/mm/tlb-pteaex.c
  3. *
  4. * TLB operations for SH-X3 CPUs featuring PTE ASID Extensions.
  5. *
  6. * Copyright (C) 2009 Paul Mundt
  7. *
  8. * This file is subject to the terms and conditions of the GNU General Public
  9. * License. See the file "COPYING" in the main directory of this archive
  10. * for more details.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/mm.h>
  14. #include <linux/io.h>
  15. #include <asm/system.h>
  16. #include <asm/mmu_context.h>
  17. #include <asm/cacheflush.h>
  18. void update_mmu_cache(struct vm_area_struct * vma,
  19. unsigned long address, pte_t pte)
  20. {
  21. unsigned long flags;
  22. unsigned long pteval;
  23. unsigned long vpn;
  24. /* Ptrace may call this routine. */
  25. if (vma && current->active_mm != vma->vm_mm)
  26. return;
  27. #ifndef CONFIG_CACHE_OFF
  28. {
  29. unsigned long pfn = pte_pfn(pte);
  30. if (pfn_valid(pfn)) {
  31. struct page *page = pfn_to_page(pfn);
  32. if (!test_bit(PG_mapped, &page->flags)) {
  33. unsigned long phys = pte_val(pte) & PTE_PHYS_MASK;
  34. __flush_wback_region((void *)P1SEGADDR(phys),
  35. PAGE_SIZE);
  36. __set_bit(PG_mapped, &page->flags);
  37. }
  38. }
  39. }
  40. #endif
  41. local_irq_save(flags);
  42. /* Set PTEH register */
  43. vpn = address & MMU_VPN_MASK;
  44. __raw_writel(vpn, MMU_PTEH);
  45. /* Set PTEAEX */
  46. __raw_writel(get_asid(), MMU_PTEAEX);
  47. pteval = pte.pte_low;
  48. /* Set PTEA register */
  49. #ifdef CONFIG_X2TLB
  50. /*
  51. * For the extended mode TLB this is trivial, only the ESZ and
  52. * EPR bits need to be written out to PTEA, with the remainder of
  53. * the protection bits (with the exception of the compat-mode SZ
  54. * and PR bits, which are cleared) being written out in PTEL.
  55. */
  56. __raw_writel(pte.pte_high, MMU_PTEA);
  57. #else
  58. /* TODO: make this look less hacky */
  59. __raw_writel(((pteval >> 28) & 0xe) | (pteval & 0x1), MMU_PTEA);
  60. #endif
  61. /* Set PTEL register */
  62. pteval &= _PAGE_FLAGS_HARDWARE_MASK; /* drop software flags */
  63. #ifdef CONFIG_CACHE_WRITETHROUGH
  64. pteval |= _PAGE_WT;
  65. #endif
  66. /* conveniently, we want all the software flags to be 0 anyway */
  67. __raw_writel(pteval, MMU_PTEL);
  68. /* Load the TLB */
  69. asm volatile("ldtlb": /* no output */ : /* no input */ : "memory");
  70. local_irq_restore(flags);
  71. }
  72. /*
  73. * While SH-X2 extended TLB mode splits out the memory-mapped I/UTLB
  74. * data arrays, SH-X3 cores with PTEAEX split out the memory-mapped
  75. * address arrays. In compat mode the second array is inaccessible, while
  76. * in extended mode, the legacy 8-bit ASID field in address array 1 has
  77. * undefined behaviour.
  78. */
  79. void __uses_jump_to_uncached local_flush_tlb_one(unsigned long asid,
  80. unsigned long page)
  81. {
  82. jump_to_uncached();
  83. __raw_writel(page, MMU_UTLB_ADDRESS_ARRAY | MMU_PAGE_ASSOC_BIT);
  84. __raw_writel(asid, MMU_UTLB_ADDRESS_ARRAY2 | MMU_PAGE_ASSOC_BIT);
  85. back_to_cached();
  86. }