]> git.ipfire.org Git - thirdparty/kernel/linux.git/blob - arch/score/include/asm/tlb.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / arch / score / include / asm / tlb.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_SCORE_TLB_H
3 #define _ASM_SCORE_TLB_H
4
5 /*
6 * SCORE doesn't need any special per-pte or per-vma handling, except
7 * we need to flush cache for area to be unmapped.
8 */
9 #define tlb_start_vma(tlb, vma) do {} while (0)
10 #define tlb_end_vma(tlb, vma) do {} while (0)
11 #define __tlb_remove_tlb_entry(tlb, ptep, address) do {} while (0)
12 #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
13
14 extern void score7_FTLB_refill_Handler(void);
15
16 #include <asm-generic/tlb.h>
17
18 #endif /* _ASM_SCORE_TLB_H */