1 | /*
|
---|
2 | * Copyright (c) 2003-2004 Jakub Jermar
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup mips32mm
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 |
|
---|
35 | #ifndef KERN_mips32_TLB_H_
|
---|
36 | #define KERN_mips32_TLB_H_
|
---|
37 |
|
---|
38 | #include <typedefs.h>
|
---|
39 | #include <arch/mm/asid.h>
|
---|
40 | #include <arch/exception.h>
|
---|
41 | #include <trace.h>
|
---|
42 |
|
---|
43 | #if defined(PROCESSOR_R4000)
|
---|
44 | #define TLB_ENTRY_COUNT 48
|
---|
45 | #define TLB_INDEX_BITS 6
|
---|
46 | #elif defined(PROCESSOR_4Kc)
|
---|
47 | #define TLB_ENTRY_COUNT 16
|
---|
48 | #define TLB_INDEX_BITS 4
|
---|
49 | #else
|
---|
50 | #error Please define TLB_ENTRY_COUNT for the target processor.
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | #define TLB_WIRED 0
|
---|
54 |
|
---|
55 | #define TLB_PAGE_MASK_4K (0x000 << 13)
|
---|
56 | #define TLB_PAGE_MASK_16K (0x003 << 13)
|
---|
57 | #define TLB_PAGE_MASK_64K (0x00f << 13)
|
---|
58 | #define TLB_PAGE_MASK_256K (0x03f << 13)
|
---|
59 | #define TLB_PAGE_MASK_1M (0x0ff << 13)
|
---|
60 | #define TLB_PAGE_MASK_4M (0x3ff << 13)
|
---|
61 | #define TLB_PAGE_MASK_16M (0xfff << 13)
|
---|
62 |
|
---|
63 | #define PAGE_UNCACHED 2
|
---|
64 | #define PAGE_CACHEABLE_EXC_WRITE 5
|
---|
65 |
|
---|
66 | typedef union {
|
---|
67 | struct {
|
---|
68 | #ifdef __BE__
|
---|
69 | unsigned : 2; /* zero */
|
---|
70 | unsigned pfn : 24; /* frame number */
|
---|
71 | unsigned c : 3; /* cache coherency attribute */
|
---|
72 | unsigned d : 1; /* dirty/write-protect bit */
|
---|
73 | unsigned v : 1; /* valid bit */
|
---|
74 | unsigned g : 1; /* global bit */
|
---|
75 | #else
|
---|
76 | unsigned g : 1; /* global bit */
|
---|
77 | unsigned v : 1; /* valid bit */
|
---|
78 | unsigned d : 1; /* dirty/write-protect bit */
|
---|
79 | unsigned c : 3; /* cache coherency attribute */
|
---|
80 | unsigned pfn : 24; /* frame number */
|
---|
81 | unsigned : 2; /* zero */
|
---|
82 | #endif
|
---|
83 | } __attribute__ ((packed));
|
---|
84 | uint32_t value;
|
---|
85 | } entry_lo_t;
|
---|
86 |
|
---|
87 | typedef union {
|
---|
88 | struct {
|
---|
89 | #ifdef __BE__
|
---|
90 | unsigned vpn2 : 19;
|
---|
91 | unsigned : 5;
|
---|
92 | unsigned asid : 8;
|
---|
93 | #else
|
---|
94 | unsigned asid : 8;
|
---|
95 | unsigned : 5;
|
---|
96 | unsigned vpn2 : 19;
|
---|
97 | #endif
|
---|
98 | } __attribute__ ((packed));
|
---|
99 | uint32_t value;
|
---|
100 | } entry_hi_t;
|
---|
101 |
|
---|
102 | typedef union {
|
---|
103 | struct {
|
---|
104 | #ifdef __BE__
|
---|
105 | unsigned : 7;
|
---|
106 | unsigned mask : 12;
|
---|
107 | unsigned : 13;
|
---|
108 | #else
|
---|
109 | unsigned : 13;
|
---|
110 | unsigned mask : 12;
|
---|
111 | unsigned : 7;
|
---|
112 | #endif
|
---|
113 | } __attribute__ ((packed));
|
---|
114 | uint32_t value;
|
---|
115 | } page_mask_t;
|
---|
116 |
|
---|
117 | typedef union {
|
---|
118 | struct {
|
---|
119 | #ifdef __BE__
|
---|
120 | unsigned p : 1;
|
---|
121 | unsigned : 32 - TLB_INDEX_BITS - 1;
|
---|
122 | unsigned index : TLB_INDEX_BITS;
|
---|
123 | #else
|
---|
124 | unsigned index : TLB_INDEX_BITS;
|
---|
125 | unsigned : 32 - TLB_INDEX_BITS - 1;
|
---|
126 | unsigned p : 1;
|
---|
127 | #endif
|
---|
128 | } __attribute__ ((packed));
|
---|
129 | uint32_t value;
|
---|
130 | } tlb_index_t;
|
---|
131 |
|
---|
132 | /** Probe TLB for Matching Entry
|
---|
133 | *
|
---|
134 | * Probe TLB for Matching Entry.
|
---|
135 | */
|
---|
136 | NO_TRACE static inline void tlbp(void)
|
---|
137 | {
|
---|
138 | asm volatile ("tlbp\n\t");
|
---|
139 | }
|
---|
140 |
|
---|
141 |
|
---|
142 | /** Read Indexed TLB Entry
|
---|
143 | *
|
---|
144 | * Read Indexed TLB Entry.
|
---|
145 | */
|
---|
146 | NO_TRACE static inline void tlbr(void)
|
---|
147 | {
|
---|
148 | asm volatile ("tlbr\n\t");
|
---|
149 | }
|
---|
150 |
|
---|
151 | /** Write Indexed TLB Entry
|
---|
152 | *
|
---|
153 | * Write Indexed TLB Entry.
|
---|
154 | */
|
---|
155 | NO_TRACE static inline void tlbwi(void)
|
---|
156 | {
|
---|
157 | asm volatile ("tlbwi\n\t");
|
---|
158 | }
|
---|
159 |
|
---|
160 | /** Write Random TLB Entry
|
---|
161 | *
|
---|
162 | * Write Random TLB Entry.
|
---|
163 | */
|
---|
164 | NO_TRACE static inline void tlbwr(void)
|
---|
165 | {
|
---|
166 | asm volatile ("tlbwr\n\t");
|
---|
167 | }
|
---|
168 |
|
---|
169 | #define tlb_invalidate(asid) tlb_invalidate_asid(asid)
|
---|
170 |
|
---|
171 | extern void tlb_invalid(istate_t *istate);
|
---|
172 | extern void tlb_refill(istate_t *istate);
|
---|
173 | extern void tlb_modified(istate_t *istate);
|
---|
174 | extern void tlb_prepare_entry_lo(entry_lo_t *lo, bool g, bool v, bool d, bool cacheable, uintptr_t pfn);
|
---|
175 | extern void tlb_prepare_entry_hi(entry_hi_t *hi, asid_t asid, uintptr_t addr);
|
---|
176 |
|
---|
177 | #endif
|
---|
178 |
|
---|
179 | /** @}
|
---|
180 | */
|
---|