tlb.hh revision 3804
1/* 2 * Copyright (c) 2006 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Ali Saidi 29 */ 30 31#ifndef __ARCH_SPARC_TLB_HH__ 32#define __ARCH_SPARC_TLB_HH__ 33 34#include "arch/sparc/tlb_map.hh" 35#include "base/misc.hh" 36#include "mem/request.hh" 37#include "sim/faults.hh" 38#include "sim/sim_object.hh" 39 40class ThreadContext; 41 42namespace SparcISA 43{ 44 45class TLB : public SimObject 46{ 47 protected: 48 TlbMap lookupTable;; 49 typedef TlbMap::iterator MapIter; 50 51 TlbEntry *tlb; 52 53 int size; 54 int usedEntries; 55 56 enum FaultTypes { 57 OtherFault = 0, 58 PrivViolation = 0x1, 59 SideEffect = 0x2, 60 AtomicToIo = 0x4, 61 IllegalAsi = 0x8, 62 LoadFromNfo = 0x10, 63 VaOutOfRange = 0x20, 64 VaOutOfRangeJmp = 0x40 65 }; 66 67 enum ContextType { 68 Primary = 0, 69 Secondary = 1, 70 Nucleus = 2 71 }; 72 73 74 /** lookup an entry in the TLB based on the partition id, and real bit if 75 * real is true or the partition id, and context id if real is false. 76 * @param va the virtual address not shifted (e.g. bottom 13 bits are 0) 77 * @param paritition_id partition this entry is for 78 * @param real is this a real->phys or virt->phys translation 79 * @param context_id if this is virt->phys what context 80 * @return A pointer to a tlb entry 81 */ 82 TlbEntry *lookup(Addr va, int partition_id, bool real, int context_id = 0); 83 84 /** Insert a PTE into the TLB. */ 85 void insert(Addr vpn, int partition_id, int context_id, bool real, 86 const PageTableEntry& PTE); 87 88 /** Given an entry id, read that tlb entries' tag. */ 89 uint64_t TagRead(int entry); 90 91 /** Give an entry id, read that tlb entries' tte */ 92 uint64_t TteRead(int entry); 93 94 /** Remove all entries from the TLB */ 95 void invalidateAll(); 96 97 /** Remove all non-locked entries from the tlb that match partition id. */ 98 void demapAll(int partition_id); 99 100 /** Remove all entries that match a given context/partition id. */ 101 void demapContext(int partition_id, int context_id); 102 103 /** Remve all entries that match a certain partition id, (contextid), and 104 * va). */ 105 void demapPage(Addr va, int partition_id, bool real, int context_id); 106 107 /** Checks if the virtual address provided is a valid one. */ 108 bool validVirtualAddress(Addr va, bool am); 109 110 void writeSfsr(ThreadContext *tc, int reg, bool write, ContextType ct, 111 bool se, FaultTypes ft, int asi); 112 113 void TLB::clearUsedBits(); 114 115 116 public: 117 TLB(const std::string &name, int size); 118 119 // Checkpointing 120 virtual void serialize(std::ostream &os); 121 virtual void unserialize(Checkpoint *cp, const std::string §ion); 122}; 123 124class ITB : public TLB 125{ 126 public: 127 ITB(const std::string &name, int size) : TLB(name, size) 128 { 129 } 130 131 Fault translate(RequestPtr &req, ThreadContext *tc); 132 private: 133 void writeSfsr(ThreadContext *tc, bool write, ContextType ct, 134 bool se, FaultTypes ft, int asi); 135}; 136 137class DTB : public TLB 138{ 139 public: 140 DTB(const std::string &name, int size) : TLB(name, size) 141 { 142 } 143 144 Fault translate(RequestPtr &req, ThreadContext *tc, bool write); 145 146 private: 147 void writeSfr(ThreadContext *tc, Addr a, bool write, ContextType ct, 148 bool se, FaultTypes ft, int asi); 149 150}; 151 152} 153 154#endif // __ARCH_SPARC_TLB_HH__ 155