blob: e5101a3bc57ca7b0e949360cb1a853d8c0f91b6c [file] [log] [blame]
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +01001/*
2 * linux/arch/arm/mm/tlb-v7.S
3 *
4 * Copyright (C) 1997-2002 Russell King
5 * Modified for ARMv7 by Catalin Marinas
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * ARM architecture version 6 TLB handling functions.
12 * These assume a split I/D TLB.
13 */
Tim Abbott991da172009-04-27 14:02:22 -040014#include <linux/init.h>
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010015#include <linux/linkage.h>
Russell Kingf00ec482010-09-04 10:47:48 +010016#include <asm/assembler.h>
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010017#include <asm/asm-offsets.h>
18#include <asm/page.h>
19#include <asm/tlbflush.h>
20#include "proc-macros.S"
21
22/*
23 * v7wbi_flush_user_tlb_range(start, end, vma)
24 *
25 * Invalidate a range of TLB entries in the specified address space.
26 *
27 * - start - start address (may not be aligned)
28 * - end - end address (exclusive, may not be aligned)
29 * - vma - vma_struct describing address range
30 *
31 * It is assumed that:
32 * - the "Invalidate single entry" instruction will invalidate
33 * both the I and the D TLBs on Harvard-style TLBs
34 */
35ENTRY(v7wbi_flush_user_tlb_range)
36 vma_vm_mm r3, r2 @ get vma->vm_mm
37 mmid r3, r3 @ get vm_mm->context.id
Will Deacon6abdd492013-05-13 12:01:12 +010038 dsb ish
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010039 mov r0, r0, lsr #PAGE_SHIFT @ align address
40 mov r1, r1, lsr #PAGE_SHIFT
41 asid r3, r3 @ mask ASID
Will Deacon730a8122012-08-10 19:13:36 +010042#ifdef CONFIG_ARM_ERRATA_720789
43 ALT_SMP(W(mov) r3, #0 )
44 ALT_UP(W(nop) )
Will Deacon5a783cb2012-07-20 18:24:55 +010045#endif
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010046 orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA
47 mov r1, r1, lsl #PAGE_SHIFT
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +0100481:
Will Deacon5a783cb2012-07-20 18:24:55 +010049#ifdef CONFIG_ARM_ERRATA_720789
50 ALT_SMP(mcr p15, 0, r0, c8, c3, 3) @ TLB invalidate U MVA all ASID (shareable)
51#else
Russell Kingf00ec482010-09-04 10:47:48 +010052 ALT_SMP(mcr p15, 0, r0, c8, c3, 1) @ TLB invalidate U MVA (shareable)
Will Deacon5a783cb2012-07-20 18:24:55 +010053#endif
Russell Kingf00ec482010-09-04 10:47:48 +010054 ALT_UP(mcr p15, 0, r0, c8, c7, 1) @ TLB invalidate U MVA
55
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010056 add r0, r0, #PAGE_SZ
57 cmp r0, r1
58 blo 1b
Will Deacon6abdd492013-05-13 12:01:12 +010059 dsb ish
Russell King6ebbf2c2014-06-30 16:29:12 +010060 ret lr
Catalin Marinas93ed3972008-08-28 11:22:32 +010061ENDPROC(v7wbi_flush_user_tlb_range)
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010062
63/*
64 * v7wbi_flush_kern_tlb_range(start,end)
65 *
66 * Invalidate a range of kernel TLB entries
67 *
68 * - start - start address (may not be aligned)
69 * - end - end address (exclusive, may not be aligned)
70 */
71ENTRY(v7wbi_flush_kern_tlb_range)
Will Deacon6abdd492013-05-13 12:01:12 +010072 dsb ish
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010073 mov r0, r0, lsr #PAGE_SHIFT @ align address
74 mov r1, r1, lsr #PAGE_SHIFT
75 mov r0, r0, lsl #PAGE_SHIFT
76 mov r1, r1, lsl #PAGE_SHIFT
771:
Will Deacon5a783cb2012-07-20 18:24:55 +010078#ifdef CONFIG_ARM_ERRATA_720789
79 ALT_SMP(mcr p15, 0, r0, c8, c3, 3) @ TLB invalidate U MVA all ASID (shareable)
80#else
Russell Kingf00ec482010-09-04 10:47:48 +010081 ALT_SMP(mcr p15, 0, r0, c8, c3, 1) @ TLB invalidate U MVA (shareable)
Will Deacon5a783cb2012-07-20 18:24:55 +010082#endif
Russell Kingf00ec482010-09-04 10:47:48 +010083 ALT_UP(mcr p15, 0, r0, c8, c7, 1) @ TLB invalidate U MVA
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010084 add r0, r0, #PAGE_SZ
85 cmp r0, r1
86 blo 1b
Will Deacon6abdd492013-05-13 12:01:12 +010087 dsb ish
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010088 isb
Russell King6ebbf2c2014-06-30 16:29:12 +010089 ret lr
Catalin Marinas93ed3972008-08-28 11:22:32 +010090ENDPROC(v7wbi_flush_kern_tlb_range)
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010091
Tim Abbott991da172009-04-27 14:02:22 -040092 __INIT
Catalin Marinas2ccdd1e2007-05-18 11:25:31 +010093
Dave Martin2ba564b2011-06-23 17:31:16 +010094 /* define struct cpu_tlb_fns (see <asm/tlbflush.h> and proc-macros.S) */
95 define_tlb_functions v7wbi, v7wbi_tlb_flags_up, flags_smp=v7wbi_tlb_flags_smp