2006-11-23 07:42:57 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_SPARC_PAGETABLE_HH__
|
|
|
|
#define __ARCH_SPARC_PAGETABLE_HH__
|
|
|
|
|
|
|
|
#include "arch/sparc/isa_traits.hh"
|
2006-12-10 00:00:40 +01:00
|
|
|
#include "base/bitfield.hh"
|
2006-11-29 23:59:42 +01:00
|
|
|
#include "base/misc.hh"
|
2006-11-23 07:42:57 +01:00
|
|
|
#include "config/full_system.hh"
|
|
|
|
|
2006-11-29 23:59:42 +01:00
|
|
|
class Checkpoint;
|
|
|
|
|
2006-11-23 07:42:57 +01:00
|
|
|
namespace SparcISA
|
|
|
|
{
|
|
|
|
struct VAddr
|
|
|
|
{
|
|
|
|
VAddr(Addr a) { panic("not implemented yet."); }
|
|
|
|
};
|
|
|
|
|
2007-02-19 01:57:46 +01:00
|
|
|
class TteTag
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
uint64_t entry;
|
|
|
|
bool populated;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TteTag() : entry(0), populated(false) {}
|
|
|
|
TteTag(uint64_t e) : entry(e), populated(true) {}
|
|
|
|
const TteTag &operator=(uint64_t e) { populated = true;
|
|
|
|
entry = e; return *this; }
|
|
|
|
bool valid() const {assert(populated); return !bits(entry,62,62); }
|
|
|
|
Addr va() const {assert(populated); return bits(entry,41,0); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-11-23 07:42:57 +01:00
|
|
|
class PageTableEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum EntryType {
|
|
|
|
sun4v,
|
|
|
|
sun4u,
|
|
|
|
invalid
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint64_t entry;
|
|
|
|
EntryType type;
|
|
|
|
uint64_t entry4u;
|
|
|
|
bool populated;
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
PageTableEntry() : entry(0), type(invalid), populated(false) {}
|
|
|
|
|
|
|
|
PageTableEntry(uint64_t e, EntryType t = sun4u)
|
|
|
|
: entry(e), type(t), populated(true)
|
|
|
|
|
|
|
|
{
|
|
|
|
populate(entry, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void populate(uint64_t e, EntryType t = sun4u)
|
|
|
|
{
|
|
|
|
entry = e;
|
|
|
|
type = t;
|
|
|
|
populated = true;
|
|
|
|
|
|
|
|
// If we get a sun4v format TTE, turn it into a sun4u
|
|
|
|
if (type == sun4u)
|
|
|
|
entry4u = entry;
|
|
|
|
else {
|
2006-12-10 00:00:40 +01:00
|
|
|
entry4u = 0;
|
|
|
|
entry4u |= mbits(entry,63,63); //valid
|
|
|
|
entry4u |= bits(entry,1,0) << 61; //size[1:0]
|
|
|
|
entry4u |= bits(entry,62,62) << 60; //nfo
|
|
|
|
entry4u |= bits(entry,12,12) << 59; //ie
|
|
|
|
entry4u |= bits(entry,2,2) << 48; //size[2]
|
|
|
|
entry4u |= mbits(entry,39,13); //paddr
|
|
|
|
entry4u |= bits(entry,61,61) << 6;; // locked
|
|
|
|
entry4u |= bits(entry,10,10) << 5; //cp
|
|
|
|
entry4u |= bits(entry,9,9) << 4; //cv
|
|
|
|
entry4u |= bits(entry,11,11) << 3; //e
|
|
|
|
entry4u |= bits(entry,8,8) << 2; //p
|
|
|
|
entry4u |= bits(entry,6,6) << 1; //w
|
2006-11-23 07:42:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
{
|
|
|
|
populated = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pageSizes[6];
|
|
|
|
|
|
|
|
|
|
|
|
uint64_t operator()() const { assert(populated); return entry4u; }
|
|
|
|
const PageTableEntry &operator=(uint64_t e) { populated = true;
|
|
|
|
entry4u = e; return *this; }
|
|
|
|
|
|
|
|
const PageTableEntry &operator=(const PageTableEntry &e)
|
2007-02-19 01:57:46 +01:00
|
|
|
{ populated = true; entry4u = e.entry4u; type = e.type; return *this; }
|
2006-11-23 07:42:57 +01:00
|
|
|
|
2006-12-10 00:00:40 +01:00
|
|
|
bool valid() const { return bits(entry4u,63,63) && populated; }
|
2006-11-23 07:42:57 +01:00
|
|
|
uint8_t _size() const { assert(populated);
|
2006-12-10 00:00:40 +01:00
|
|
|
return bits(entry4u, 62,61) |
|
|
|
|
bits(entry4u, 48,48) << 2; }
|
|
|
|
Addr size() const { assert(_size() < 6); return pageSizes[_size()]; }
|
2007-02-19 01:57:46 +01:00
|
|
|
Addr sizeMask() const { assert(_size() < 6); return pageSizes[_size()]-1;}
|
2006-12-10 00:00:40 +01:00
|
|
|
bool ie() const { return bits(entry4u, 59,59); }
|
|
|
|
Addr pfn() const { assert(populated); return bits(entry4u,39,13); }
|
|
|
|
Addr paddr() const { assert(populated); return mbits(entry4u, 39,13);}
|
|
|
|
bool locked() const { assert(populated); return bits(entry4u,6,6); }
|
|
|
|
bool cv() const { assert(populated); return bits(entry4u,4,4); }
|
|
|
|
bool cp() const { assert(populated); return bits(entry4u,5,5); }
|
|
|
|
bool priv() const { assert(populated); return bits(entry4u,2,2); }
|
|
|
|
bool writable() const { assert(populated); return bits(entry4u,1,1); }
|
|
|
|
bool nofault() const { assert(populated); return bits(entry4u,60,60); }
|
|
|
|
bool sideffect() const { assert(populated); return bits(entry4u,3,3); }
|
2007-02-19 01:57:46 +01:00
|
|
|
Addr paddrMask() const { assert(populated);
|
|
|
|
return mbits(entry4u, 39,13) & ~sizeMask(); }
|
2006-11-23 07:42:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TlbRange {
|
|
|
|
Addr va;
|
|
|
|
Addr size;
|
|
|
|
int contextId;
|
|
|
|
int partitionId;
|
|
|
|
bool real;
|
|
|
|
|
|
|
|
inline bool operator<(const TlbRange &r2) const
|
|
|
|
{
|
|
|
|
if (real && !r2.real)
|
|
|
|
return true;
|
|
|
|
if (!real && r2.real)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!real && !r2.real) {
|
|
|
|
if (contextId < r2.contextId)
|
|
|
|
return true;
|
|
|
|
else if (contextId > r2.contextId)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (partitionId < r2.partitionId)
|
|
|
|
return true;
|
|
|
|
else if (partitionId > r2.partitionId)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (va < r2.va)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
inline bool operator==(const TlbRange &r2) const
|
|
|
|
{
|
|
|
|
return va == r2.va &&
|
|
|
|
size == r2.size &&
|
|
|
|
contextId == r2.contextId &&
|
|
|
|
partitionId == r2.partitionId &&
|
|
|
|
real == r2.real;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct TlbEntry {
|
|
|
|
TlbRange range;
|
|
|
|
PageTableEntry pte;
|
|
|
|
bool used;
|
|
|
|
bool valid;
|
|
|
|
|
|
|
|
void serialize(std::ostream &os);
|
|
|
|
void unserialize(Checkpoint *cp, const std::string §ion);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}; // namespace SparcISA
|
|
|
|
|
|
|
|
#endif // __ARCH_SPARC_PAGE_TABLE_HH__
|
|
|
|
|