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

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

32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Nathan Binkert
41 * Steve Reinhardt
42 * Ali Saidi
43 */
44
45#ifndef __ARCH_ARM_PAGETABLE_H__
46#define __ARCH_ARM_PAGETABLE_H__
47
48#include "arch/arm/isa_traits.hh"
49#include "arch/arm/utility.hh"
50#include "arch/arm/vtophys.hh"

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

68
69 void unserialize(Checkpoint *cp, const std::string &section)
70 {
71 panic("Need to implement PTE serialization\n");
72 }
73
74};
75
76// ITB/DTB table entry
77struct TlbEntry
78{
79 Addr tag; // virtual page number tag
80 Addr ppn; // physical page number
81 uint8_t asn; // address space number
82 bool valid; // valid page table entry
83
84
85 //Construct an entry that maps to physical address addr.
86 TlbEntry(Addr _asn, Addr _vaddr, Addr _paddr)
87 {
88 tag = _vaddr >> PageShift;
89 ppn = _paddr >> PageShift;
90 asn = _asn;
91 valid = true;
92 }
93
94 TlbEntry()
95 {}
96
97 void
98 updateVaddr(Addr new_vaddr)
99 {
100 tag = new_vaddr >> PageShift;
101 }
102
103 Addr
104 pageStart()
105 {
106 return ppn << PageShift;
107 }
108
109 void serialize(std::ostream &os) { panic("Need to Implement\n"); }
110 void unserialize(Checkpoint *cp, const std::string &section)
111 { panic("Need to Implement\n");}
112};
113
114
115
116};
117#endif // __ARCH_ARM_PAGETABLE_H__
118