pagetable.hh (7404:bfc74724914e) pagetable.hh (7436:b578349f9371)
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

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

128 uint8_t N; // Number of bits in pagesize
129 bool global;
130 bool valid;
131
132 // Type of memory
133 bool nonCacheable; // Can we wrap this in mtype?
134 bool sNp; // Section descriptor
135
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

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

128 uint8_t N; // Number of bits in pagesize
129 bool global;
130 bool valid;
131
132 // Type of memory
133 bool nonCacheable; // Can we wrap this in mtype?
134 bool sNp; // Section descriptor
135
136 // Memory Attributes
137 MemoryType mtype;
138 uint8_t innerAttrs;
139 uint8_t outerAttrs;
140 bool shareable;
141 uint32_t attributes; // Memory attributes formatted for PAR
142
143
136 // Access permissions
137 bool xn; // Execute Never
138 uint8_t ap:3; // Access permissions bits
139 uint8_t domain:4; // Access Domain
140
141 TlbRange range; // For fast TLB searching
142
143 //Construct an entry that maps to physical address addr for SE mode

--- 57 unchanged lines hidden ---
144 // Access permissions
145 bool xn; // Execute Never
146 uint8_t ap:3; // Access permissions bits
147 uint8_t domain:4; // Access Domain
148
149 TlbRange range; // For fast TLB searching
150
151 //Construct an entry that maps to physical address addr for SE mode

--- 57 unchanged lines hidden ---