pagetable.hh revision 6378
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
446378Sgblack@eecs.umich.edustruct VAddr
456378Sgblack@eecs.umich.edu{
466378Sgblack@eecs.umich.edu    static const int ImplBits = 43;
476378Sgblack@eecs.umich.edu    static const Addr ImplMask = (ULL(1) << ImplBits) - 1;
486378Sgblack@eecs.umich.edu    static const Addr UnImplMask = ~ImplMask;
495222Sksewell@umich.edu
506378Sgblack@eecs.umich.edu    VAddr(Addr a) : addr(a) {}
516378Sgblack@eecs.umich.edu    Addr addr;
526378Sgblack@eecs.umich.edu    operator Addr() const { return addr; }
536378Sgblack@eecs.umich.edu    const VAddr &operator=(Addr a) { addr = a; return *this; }
545222Sksewell@umich.edu
556378Sgblack@eecs.umich.edu    Addr vpn() const { return (addr & ImplMask) >> PageShift; }
566378Sgblack@eecs.umich.edu    Addr page() const { return addr & Page_Mask; }
576378Sgblack@eecs.umich.edu    Addr offset() const { return addr & PageOffset; }
585222Sksewell@umich.edu
596378Sgblack@eecs.umich.edu    Addr level3() const
606378Sgblack@eecs.umich.edu    { return MipsISA::PteAddr(addr >> PageShift); }
616378Sgblack@eecs.umich.edu    Addr level2() const
626378Sgblack@eecs.umich.edu    { return MipsISA::PteAddr(addr >> (NPtePageShift + PageShift)); }
636378Sgblack@eecs.umich.edu    Addr level1() const
646378Sgblack@eecs.umich.edu    { return MipsISA::PteAddr(addr >> (2 * NPtePageShift + PageShift)); }
656378Sgblack@eecs.umich.edu};
665222Sksewell@umich.edu
676378Sgblack@eecs.umich.edu// ITB/DTB page table entry
686378Sgblack@eecs.umich.edustruct PTE
696378Sgblack@eecs.umich.edu{
706378Sgblack@eecs.umich.edu    Addr Mask;
716378Sgblack@eecs.umich.edu    Addr VPN;
726378Sgblack@eecs.umich.edu    uint8_t asid;
735222Sksewell@umich.edu
746378Sgblack@eecs.umich.edu    bool G;
755222Sksewell@umich.edu
766378Sgblack@eecs.umich.edu    /* Contents of Entry Lo0 */
776378Sgblack@eecs.umich.edu    Addr PFN0;  // Physical Frame Number - Even
786378Sgblack@eecs.umich.edu    bool D0;    // Even entry Dirty Bit
796378Sgblack@eecs.umich.edu    bool V0;    // Even entry Valid Bit
806378Sgblack@eecs.umich.edu    uint8_t C0; // Cache Coherency Bits - Even
815222Sksewell@umich.edu
826378Sgblack@eecs.umich.edu    /* Contents of Entry Lo1 */
836378Sgblack@eecs.umich.edu    Addr PFN1;  // Physical Frame Number - Odd
846378Sgblack@eecs.umich.edu    bool D1;    // Odd entry Dirty Bit
856378Sgblack@eecs.umich.edu    bool V1;    // Odd entry Valid Bit
866378Sgblack@eecs.umich.edu    uint8_t C1; // Cache Coherency Bits (3 bits)
875222Sksewell@umich.edu
886378Sgblack@eecs.umich.edu    /*
896378Sgblack@eecs.umich.edu     * The next few variables are put in as optimizations to reduce
906378Sgblack@eecs.umich.edu     * TLB lookup overheads. For a given Mask, what is the address shift
916378Sgblack@eecs.umich.edu     * amount, and what is the OffsetMask
926378Sgblack@eecs.umich.edu     */
936378Sgblack@eecs.umich.edu    int AddrShiftAmount;
946378Sgblack@eecs.umich.edu    int OffsetMask;
955222Sksewell@umich.edu
966378Sgblack@eecs.umich.edu    bool Valid() { return (V0 | V1); };
976378Sgblack@eecs.umich.edu    void serialize(std::ostream &os);
986378Sgblack@eecs.umich.edu    void unserialize(Checkpoint *cp, const std::string &section);
996378Sgblack@eecs.umich.edu};
1005222Sksewell@umich.edu
1015222Sksewell@umich.edu};
1025222Sksewell@umich.edu#endif // __ARCH_MIPS_PAGETABLE_H__
1035222Sksewell@umich.edu
104