blob: d2d9ecbe0aacdf2514d3e4279962344fc5513228 [file] [log] [blame]
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001/*
2 * linux/arch/arm/mm/tlb-fa.S
3 *
4 * Copyright (C) 2005 Faraday Corp.
5 * Copyright (C) 2008-2009 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
6 *
7 * Based on tlb-v4wbi.S:
8 * Copyright (C) 1997-2002 Russell King
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * ARM architecture version 4, Faraday variation.
15 * This assume an unified TLBs, with a write buffer, and branch target buffer (BTB)
16 *
17 * Processors: FA520 FA526 FA626
18 */
19#include <linux/linkage.h>
20#include <linux/init.h>
Russell King6ebbf2c2014-06-30 16:29:12 +010021#include <asm/assembler.h>
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020022#include <asm/asm-offsets.h>
23#include <asm/tlbflush.h>
24#include "proc-macros.S"
25
26
27/*
28 * flush_user_tlb_range(start, end, mm)
29 *
30 * Invalidate a range of TLB entries in the specified address space.
31 *
32 * - start - range start address
33 * - end - range end address
34 * - mm - mm_struct describing address space
35 */
36 .align 4
37ENTRY(fa_flush_user_tlb_range)
38 vma_vm_mm ip, r2
39 act_mm r3 @ get current->active_mm
40 eors r3, ip, r3 @ == mm ?
Russell King6ebbf2c2014-06-30 16:29:12 +010041 retne lr @ no, we dont do anything
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020042 mov r3, #0
43 mcr p15, 0, r3, c7, c10, 4 @ drain WB
44 bic r0, r0, #0x0ff
45 bic r0, r0, #0xf00
461: mcr p15, 0, r0, c8, c7, 1 @ invalidate UTLB entry
47 add r0, r0, #PAGE_SZ
48 cmp r0, r1
49 blo 1b
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020050 mcr p15, 0, r3, c7, c10, 4 @ data write barrier
Russell King6ebbf2c2014-06-30 16:29:12 +010051 ret lr
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020052
53
54ENTRY(fa_flush_kern_tlb_range)
55 mov r3, #0
56 mcr p15, 0, r3, c7, c10, 4 @ drain WB
57 bic r0, r0, #0x0ff
58 bic r0, r0, #0xf00
591: mcr p15, 0, r0, c8, c7, 1 @ invalidate UTLB entry
60 add r0, r0, #PAGE_SZ
61 cmp r0, r1
62 blo 1b
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020063 mcr p15, 0, r3, c7, c10, 4 @ data write barrier
Russell King43488102011-07-05 09:01:13 +010064 mcr p15, 0, r3, c7, c5, 4 @ prefetch flush (isb)
Russell King6ebbf2c2014-06-30 16:29:12 +010065 ret lr
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020066
67 __INITDATA
68
Dave Martin27eebe42011-06-23 17:28:50 +010069 /* define struct cpu_tlb_fns (see <asm/tlbflush.h> and proc-macros.S) */
70 define_tlb_functions fa, fa_tlb_flags