Deleted Added
sdiff udiff text old ( 7404:bfc74724914e ) new ( 7436:b578349f9371 )
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

--- 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 // 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 ---