tlb-fa.S 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/arch/arm/mm/tlb-fa.S
  4. *
  5. * Copyright (C) 2005 Faraday Corp.
  6. * Copyright (C) 2008-2009 Paulius Zaleckas <[email protected]>
  7. *
  8. * Based on tlb-v4wbi.S:
  9. * Copyright (C) 1997-2002 Russell King
  10. *
  11. * ARM architecture version 4, Faraday variation.
  12. * This assume an unified TLBs, with a write buffer, and branch target buffer (BTB)
  13. *
  14. * Processors: FA520 FA526 FA626
  15. */
  16. #include <linux/linkage.h>
  17. #include <linux/init.h>
  18. #include <asm/assembler.h>
  19. #include <asm/asm-offsets.h>
  20. #include <asm/tlbflush.h>
  21. #include "proc-macros.S"
  22. /*
  23. * flush_user_tlb_range(start, end, mm)
  24. *
  25. * Invalidate a range of TLB entries in the specified address space.
  26. *
  27. * - start - range start address
  28. * - end - range end address
  29. * - mm - mm_struct describing address space
  30. */
  31. .align 4
  32. ENTRY(fa_flush_user_tlb_range)
  33. vma_vm_mm ip, r2
  34. act_mm r3 @ get current->active_mm
  35. eors r3, ip, r3 @ == mm ?
  36. retne lr @ no, we dont do anything
  37. mov r3, #0
  38. mcr p15, 0, r3, c7, c10, 4 @ drain WB
  39. bic r0, r0, #0x0ff
  40. bic r0, r0, #0xf00
  41. 1: mcr p15, 0, r0, c8, c7, 1 @ invalidate UTLB entry
  42. add r0, r0, #PAGE_SZ
  43. cmp r0, r1
  44. blo 1b
  45. mcr p15, 0, r3, c7, c10, 4 @ data write barrier
  46. ret lr
  47. ENTRY(fa_flush_kern_tlb_range)
  48. mov r3, #0
  49. mcr p15, 0, r3, c7, c10, 4 @ drain WB
  50. bic r0, r0, #0x0ff
  51. bic r0, r0, #0xf00
  52. 1: mcr p15, 0, r0, c8, c7, 1 @ invalidate UTLB entry
  53. add r0, r0, #PAGE_SZ
  54. cmp r0, r1
  55. blo 1b
  56. mcr p15, 0, r3, c7, c10, 4 @ data write barrier
  57. mcr p15, 0, r3, c7, c5, 4 @ prefetch flush (isb)
  58. ret lr
  59. __INITDATA
  60. /* define struct cpu_tlb_fns (see <asm/tlbflush.h> and proc-macros.S) */
  61. define_tlb_functions fa, fa_tlb_flags