blob: fe91719866a57fed68e5ddb53228e7fec61279b1 [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 | \
19 _PAGE_EXECUTE | _PAGE_WRITE | _PAGE_READ | \
20 _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.
33 * 1) cache-flush part -implemented via tlb_start_vma( ) can be NOP (for now)
34 * as we don't support aliasing configs in our VIPT D$.
Vineet Gupta8d56bec2013-04-05 18:38:31 +053035 * 2) tlb-flush part - implemted via tlb_end_vma( ) flushes the TLB range
Vineet Guptad79e6782013-01-18 15:12:20 +053036 *
37 * Note, read http://lkml.org/lkml/2004/1/15/6
38 */
39#define tlb_start_vma(tlb, vma)
Vineet Gupta8d56bec2013-04-05 18:38:31 +053040
41#define tlb_end_vma(tlb, vma) \
42do { \
43 if (!tlb->fullmm) \
44 flush_tlb_range(vma, vma->vm_start, vma->vm_end); \
45} while (0)
Vineet Guptad79e6782013-01-18 15:12:20 +053046
47#define __tlb_remove_tlb_entry(tlb, ptep, address)
48
Vineet Guptacc562d22013-01-18 15:12:19 +053049#include <linux/pagemap.h>
50#include <asm-generic/tlb.h>
51
52#ifdef CONFIG_ARC_DBG_TLB_PARANOIA
53void tlb_paranoid_check(unsigned int pid_sw, unsigned long address);
54#else
55#define tlb_paranoid_check(a, b)
56#endif
57
58void arc_mmu_init(void);
59extern char *arc_mmu_mumbojumbo(int cpu_id, char *buf, int len);
60void __init read_decode_mmu_bcr(void);
61
62#endif /* __ASSEMBLY__ */
63
64#endif /* __KERNEL__ */
65
66#endif /* _ASM_ARC_TLB_H */