pagetable.hh revision 6019
15222Sksewell@umich.edu/*
25268Sksewell@umich.edu * Copyright (c) 2002-2005 The Regents of The University of Michigan
35254Sksewell@umich.edu * Copyright (c) 2007 MIPS Technologies, Inc.
45254Sksewell@umich.edu * All rights reserved.
55222Sksewell@umich.edu *
65254Sksewell@umich.edu * Redistribution and use in source and binary forms, with or without
75254Sksewell@umich.edu * modification, are permitted provided that the following conditions are
85254Sksewell@umich.edu * met: redistributions of source code must retain the above copyright
95254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer;
105254Sksewell@umich.edu * redistributions in binary form must reproduce the above copyright
115254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer in the
125254Sksewell@umich.edu * documentation and/or other materials provided with the distribution;
135254Sksewell@umich.edu * neither the name of the copyright holders nor the names of its
145254Sksewell@umich.edu * contributors may be used to endorse or promote products derived from
155254Sksewell@umich.edu * this software without specific prior written permission.
165222Sksewell@umich.edu *
175254Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185254Sksewell@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195254Sksewell@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205254Sksewell@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215254Sksewell@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225254Sksewell@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235254Sksewell@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245254Sksewell@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255254Sksewell@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265254Sksewell@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275254Sksewell@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285222Sksewell@umich.edu *
295268Sksewell@umich.edu * Authors: Nathan Binkert
305268Sksewell@umich.edu *          Steve Reinhardt
315268Sksewell@umich.edu *          Jaidev Patwardhan
325222Sksewell@umich.edu */
335222Sksewell@umich.edu
345222Sksewell@umich.edu#ifndef __ARCH_MIPS_PAGETABLE_H__
355222Sksewell@umich.edu#define __ARCH_MIPS_PAGETABLE_H__
365222Sksewell@umich.edu
375222Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
385222Sksewell@umich.edu#include "arch/mips/utility.hh"
395254Sksewell@umich.edu#include "arch/mips/vtophys.hh"
405222Sksewell@umich.edu#include "config/full_system.hh"
415222Sksewell@umich.edu
425222Sksewell@umich.edunamespace MipsISA {
435222Sksewell@umich.edu
445222Sksewell@umich.edu    struct VAddr
455222Sksewell@umich.edu    {
465222Sksewell@umich.edu        static const int ImplBits = 43;
475222Sksewell@umich.edu        static const Addr ImplMask = (ULL(1) << ImplBits) - 1;
485222Sksewell@umich.edu        static const Addr UnImplMask = ~ImplMask;
495222Sksewell@umich.edu
505222Sksewell@umich.edu        VAddr(Addr a) : addr(a) {}
515222Sksewell@umich.edu        Addr addr;
525222Sksewell@umich.edu        operator Addr() const { return addr; }
535222Sksewell@umich.edu        const VAddr &operator=(Addr a) { addr = a; return *this; }
545222Sksewell@umich.edu
555222Sksewell@umich.edu        Addr vpn() const { return (addr & ImplMask) >> PageShift; }
565222Sksewell@umich.edu        Addr page() const { return addr & Page_Mask; }
575222Sksewell@umich.edu        Addr offset() const { return addr & PageOffset; }
585222Sksewell@umich.edu
595222Sksewell@umich.edu        Addr level3() const
605222Sksewell@umich.edu        { return MipsISA::PteAddr(addr >> PageShift); }
615222Sksewell@umich.edu        Addr level2() const
625222Sksewell@umich.edu        { return MipsISA::PteAddr(addr >> NPtePageShift + PageShift); }
635222Sksewell@umich.edu        Addr level1() const
645222Sksewell@umich.edu        { return MipsISA::PteAddr(addr >> 2 * NPtePageShift + PageShift); }
655222Sksewell@umich.edu    };
665222Sksewell@umich.edu
675222Sksewell@umich.edu    // ITB/DTB page table entry
685222Sksewell@umich.edu    struct PTE
695222Sksewell@umich.edu    {
705222Sksewell@umich.edu      Addr Mask; // What parts of the VAddr (from bits 28..11) should be used in translation (includes Mask and MaskX from PageMask)
715222Sksewell@umich.edu      Addr VPN; // Virtual Page Number (/2) (Includes VPN2 + VPN2X .. bits 31..11 from EntryHi)
725222Sksewell@umich.edu      uint8_t asid; // Address Space ID (8 bits) // Lower 8 bits of EntryHi
735222Sksewell@umich.edu
745222Sksewell@umich.edu      bool G;    // Global Bit - Obtained by an *AND* of EntryLo0 and EntryLo1 G bit
755222Sksewell@umich.edu
765222Sksewell@umich.edu      /* Contents of Entry Lo0 */
775222Sksewell@umich.edu      Addr PFN0; // Physical Frame Number - Even
785222Sksewell@umich.edu      bool D0;   // Even entry Dirty Bit
795222Sksewell@umich.edu      bool V0;   // Even entry Valid Bit
805222Sksewell@umich.edu      uint8_t C0; // Cache Coherency Bits - Even
815222Sksewell@umich.edu
825222Sksewell@umich.edu      /* Contents of Entry Lo1 */
835222Sksewell@umich.edu      Addr PFN1; // Physical Frame Number - Odd
845222Sksewell@umich.edu      bool D1;   // Odd entry Dirty Bit
855222Sksewell@umich.edu      bool V1;   // Odd entry Valid Bit
865222Sksewell@umich.edu      uint8_t C1; // Cache Coherency Bits (3 bits)
875222Sksewell@umich.edu
885222Sksewell@umich.edu      /* The next few variables are put in as optimizations to reduce TLB lookup overheads */
895222Sksewell@umich.edu      /* For a given Mask, what is the address shift amount, and what is the OffsetMask */
905222Sksewell@umich.edu      int AddrShiftAmount;
915222Sksewell@umich.edu      int OffsetMask;
925222Sksewell@umich.edu
935222Sksewell@umich.edu      bool Valid() { return (V0 | V1);};
945222Sksewell@umich.edu        void serialize(std::ostream &os);
955222Sksewell@umich.edu        void unserialize(Checkpoint *cp, const std::string &section);
965222Sksewell@umich.edu    };
975222Sksewell@umich.edu
985222Sksewell@umich.edu};
995222Sksewell@umich.edu#endif // __ARCH_MIPS_PAGETABLE_H__
1005222Sksewell@umich.edu
101