Deleted Added
sdiff udiff text old ( 8902:75b524b64c28 ) new ( 10037:5cac77888310 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

--- 27 unchanged lines hidden (view full) ---

38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 */
42
43#ifndef __ARCH_ARM_PAGETABLE_H__
44#define __ARCH_ARM_PAGETABLE_H__
45
46#include "arch/arm/isa_traits.hh"
47#include "arch/arm/utility.hh"
48#include "arch/arm/vtophys.hh"
49#include "sim/serialize.hh"
50
51namespace ArmISA {
52
53struct VAddr

--- 12 unchanged lines hidden (view full) ---

66
67 void unserialize(Checkpoint *cp, const std::string &section)
68 {
69 panic("Need to implement PTE serialization\n");
70 }
71
72};
73
74// ITB/DTB table entry
75struct TlbEntry
76{
77 public:
78 enum MemoryType {
79 StronglyOrdered,
80 Device,
81 Normal
82 };
83 enum DomainType {
84 DomainNoAccess = 0,
85 DomainClient,
86 DomainReserved,
87 DomainManager
88 };
89
90 // Matching variables
91 Addr pfn;
92 Addr size; // Size of this entry, == Type of TLB Rec
93 Addr vpn; // Virtual Page Number
94 uint32_t asid; // Address Space Identifier
95 uint8_t N; // Number of bits in pagesize
96 bool global;
97 bool valid;
98
99 // Type of memory
100 bool nonCacheable; // Can we wrap this in mtype?
101 bool sNp; // Section descriptor
102
103 // Memory Attributes
104 MemoryType mtype;
105 uint8_t innerAttrs;
106 uint8_t outerAttrs;
107 bool shareable;
108 uint32_t attributes; // Memory attributes formatted for PAR
109
110
111 // Access permissions
112 bool xn; // Execute Never
113 uint8_t ap; // Access permissions bits
114 uint8_t domain; // Access Domain
115
116 //Construct an entry that maps to physical address addr for SE mode
117 TlbEntry(Addr _asn, Addr _vaddr, Addr _paddr)
118 {
119 pfn = _paddr >> PageShift;
120 size = PageBytes - 1;
121 asid = _asn;
122 global = false;
123 valid = true;
124
125 vpn = _vaddr >> PageShift;
126
127 nonCacheable = sNp = false;
128
129 xn = 0;
130 ap = 0; // ???
131 domain = DomainClient; //???
132 }
133
134 TlbEntry()
135 {}
136
137 void
138 updateVaddr(Addr new_vaddr)
139 {
140 vpn = new_vaddr >> PageShift;
141 }
142
143 Addr
144 pageStart()
145 {
146 return pfn << PageShift;
147 }
148
149 bool
150 match(Addr va, uint8_t cid)
151 {
152 Addr v = vpn << N;
153 if (valid && va >= v && va <= v + size && (global || cid == asid))
154 return true;
155 return false;
156 }
157
158 Addr
159 pAddr(Addr va)
160 {
161 return (pfn << N) | (va & size);
162 }
163
164 void
165 serialize(std::ostream &os)
166 {
167 SERIALIZE_SCALAR(pfn);
168 SERIALIZE_SCALAR(size);
169 SERIALIZE_SCALAR(vpn);
170 SERIALIZE_SCALAR(asid);
171 SERIALIZE_SCALAR(N);
172 SERIALIZE_SCALAR(global);
173 SERIALIZE_SCALAR(valid);
174 SERIALIZE_SCALAR(nonCacheable);
175 SERIALIZE_SCALAR(sNp);
176 SERIALIZE_ENUM(mtype);
177 SERIALIZE_SCALAR(innerAttrs);
178 SERIALIZE_SCALAR(outerAttrs);
179 SERIALIZE_SCALAR(shareable);
180 SERIALIZE_SCALAR(attributes);
181 SERIALIZE_SCALAR(xn);
182 SERIALIZE_SCALAR(ap);
183 SERIALIZE_SCALAR(domain);
184 }
185 void
186 unserialize(Checkpoint *cp, const std::string &section)
187 {
188 UNSERIALIZE_SCALAR(pfn);
189 UNSERIALIZE_SCALAR(size);
190 UNSERIALIZE_SCALAR(vpn);
191 UNSERIALIZE_SCALAR(asid);
192 UNSERIALIZE_SCALAR(N);
193 UNSERIALIZE_SCALAR(global);
194 UNSERIALIZE_SCALAR(valid);
195 UNSERIALIZE_SCALAR(nonCacheable);
196 UNSERIALIZE_SCALAR(sNp);
197 UNSERIALIZE_ENUM(mtype);
198 UNSERIALIZE_SCALAR(innerAttrs);
199 UNSERIALIZE_SCALAR(outerAttrs);
200 UNSERIALIZE_SCALAR(shareable);
201 UNSERIALIZE_SCALAR(attributes);
202 UNSERIALIZE_SCALAR(xn);
203 UNSERIALIZE_SCALAR(ap);
204 UNSERIALIZE_SCALAR(domain);
205 }
206
207};
208
209
210
211}
212#endif // __ARCH_ARM_PAGETABLE_H__
213