blob: cb0c708ca6654cd38d0d73f40e6f43135e34c01e [file] [log] [blame]
Vineet Guptacc562d22013-01-18 15:12:19 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _ASM_ARC_TLB_H
10#define _ASM_ARC_TLB_H
11
12#ifdef __KERNEL__
13
14#include <asm/pgtable.h>
15
16/* Masks for actual TLB "PD"s */
17#define PTE_BITS_IN_PD0 (_PAGE_GLOBAL | _PAGE_PRESENT)
18#define PTE_BITS_IN_PD1 (PAGE_MASK | _PAGE_CACHEABLE | \
Vineet Guptaa9505492013-05-21 15:25:11 +053019 _PAGE_U_EXECUTE | _PAGE_U_WRITE | _PAGE_U_READ | \
Vineet Guptacc562d22013-01-18 15:12:19 +053020 _PAGE_K_EXECUTE | _PAGE_K_WRITE | _PAGE_K_READ)
21
22#ifndef __ASSEMBLY__
23
Vineet Gupta8d56bec2013-04-05 18:38:31 +053024#define tlb_flush(tlb) \
25do { \
26 if (tlb->fullmm) \
27 flush_tlb_mm((tlb)->mm); \
28} while (0)
Vineet Guptad79e6782013-01-18 15:12:20 +053029
30/*
31 * This pair is called at time of munmap/exit to flush cache and TLB entries
32 * for mappings being torn down.
Vineet Gupta4102b532013-05-09 21:54:51 +053033 * 1) cache-flush part -implemented via tlb_start_vma( ) for VIPT aliasing D$
Vineet Gupta8d56bec2013-04-05 18:38:31 +053034 * 2) tlb-flush part - implemted via tlb_end_vma( ) flushes the TLB range
Vineet Guptad79e6782013-01-18 15:12:20 +053035 *
36 * Note, read http://lkml.org/lkml/2004/1/15/6
37 */
Vineet Gupta4102b532013-05-09 21:54:51 +053038#ifndef CONFIG_ARC_CACHE_VIPT_ALIASING
Vineet Guptad79e6782013-01-18 15:12:20 +053039#define tlb_start_vma(tlb, vma)
Vineet Gupta4102b532013-05-09 21:54:51 +053040#else
41#define tlb_start_vma(tlb, vma) \
42do { \
43 if (!tlb->fullmm) \
44 flush_cache_range(vma, vma->vm_start, vma->vm_end); \
45} while(0)
46#endif
Vineet Gupta8d56bec2013-04-05 18:38:31 +053047
48#define tlb_end_vma(tlb, vma) \
49do { \
50 if (!tlb->fullmm) \
51 flush_tlb_range(vma, vma->vm_start, vma->vm_end); \
52} while (0)
Vineet Guptad79e6782013-01-18 15:12:20 +053053
54#define __tlb_remove_tlb_entry(tlb, ptep, address)
55
Vineet Guptacc562d22013-01-18 15:12:19 +053056#include <linux/pagemap.h>
57#include <asm-generic/tlb.h>
58
59#ifdef CONFIG_ARC_DBG_TLB_PARANOIA
60void tlb_paranoid_check(unsigned int pid_sw, unsigned long address);
61#else
62#define tlb_paranoid_check(a, b)
63#endif
64
65void arc_mmu_init(void);
66extern char *arc_mmu_mumbojumbo(int cpu_id, char *buf, int len);
67void __init read_decode_mmu_bcr(void);
68
69#endif /* __ASSEMBLY__ */
70
71#endif /* __KERNEL__ */
72
73#endif /* _ASM_ARC_TLB_H */