tlb.hh revision 9818
14120Sgblack@eecs.umich.edu/*
24120Sgblack@eecs.umich.edu * Copyright (c) 2007 The Hewlett-Packard Development Company
34120Sgblack@eecs.umich.edu * All rights reserved.
44120Sgblack@eecs.umich.edu *
57087Snate@binkert.org * The license below extends only to copyright in the software and shall
67087Snate@binkert.org * not be construed as granting a license to any other intellectual
77087Snate@binkert.org * property including but not limited to intellectual property relating
87087Snate@binkert.org * to a hardware implementation of the functionality of the software
97087Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
107087Snate@binkert.org * terms below provided that you ensure that this notice is replicated
117087Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
127087Snate@binkert.org * modified or unmodified, in source code or in binary form.
134120Sgblack@eecs.umich.edu *
147087Snate@binkert.org * Redistribution and use in source and binary forms, with or without
157087Snate@binkert.org * modification, are permitted provided that the following conditions are
167087Snate@binkert.org * met: redistributions of source code must retain the above copyright
177087Snate@binkert.org * notice, this list of conditions and the following disclaimer;
187087Snate@binkert.org * redistributions in binary form must reproduce the above copyright
197087Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
207087Snate@binkert.org * documentation and/or other materials provided with the distribution;
217087Snate@binkert.org * neither the name of the copyright holders nor the names of its
224120Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
237087Snate@binkert.org * this software without specific prior written permission.
244120Sgblack@eecs.umich.edu *
254120Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
264120Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
274120Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
284120Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
294120Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
304120Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
314120Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
324120Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
334120Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
344120Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
354120Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
364120Sgblack@eecs.umich.edu *
374120Sgblack@eecs.umich.edu * Authors: Gabe Black
384120Sgblack@eecs.umich.edu */
394120Sgblack@eecs.umich.edu
404120Sgblack@eecs.umich.edu#ifndef __ARCH_X86_TLB_HH__
414120Sgblack@eecs.umich.edu#define __ARCH_X86_TLB_HH__
424120Sgblack@eecs.umich.edu
435124Sgblack@eecs.umich.edu#include <list>
448229Snate@binkert.org#include <string>
455237Sgblack@eecs.umich.edu#include <vector>
465124Sgblack@eecs.umich.edu
478229Snate@binkert.org#include "arch/x86/regs/segment.hh"
485124Sgblack@eecs.umich.edu#include "arch/x86/pagetable.hh"
498953Sgblack@eecs.umich.edu#include "base/trie.hh"
505236Sgblack@eecs.umich.edu#include "mem/mem_object.hh"
515086Sgblack@eecs.umich.edu#include "mem/request.hh"
526022Sgblack@eecs.umich.edu#include "params/X86TLB.hh"
537878Sgblack@eecs.umich.edu#include "sim/fault_fwd.hh"
548229Snate@binkert.org#include "sim/sim_object.hh"
555358Sgblack@eecs.umich.edu#include "sim/tlb.hh"
565086Sgblack@eecs.umich.edu
575086Sgblack@eecs.umich.educlass ThreadContext;
585086Sgblack@eecs.umich.educlass Packet;
595086Sgblack@eecs.umich.edu
605086Sgblack@eecs.umich.edunamespace X86ISA
615086Sgblack@eecs.umich.edu{
625245Sgblack@eecs.umich.edu    class Walker;
635245Sgblack@eecs.umich.edu
645358Sgblack@eecs.umich.edu    class TLB : public BaseTLB
655086Sgblack@eecs.umich.edu    {
665124Sgblack@eecs.umich.edu      protected:
675895Sgblack@eecs.umich.edu        friend class Walker;
685236Sgblack@eecs.umich.edu
695360Sgblack@eecs.umich.edu        typedef std::list<TlbEntry *> EntryList;
705360Sgblack@eecs.umich.edu
715357Sgblack@eecs.umich.edu        uint32_t configAddress;
725237Sgblack@eecs.umich.edu
735124Sgblack@eecs.umich.edu      public:
745245Sgblack@eecs.umich.edu
755124Sgblack@eecs.umich.edu        typedef X86TLBParams Params;
765124Sgblack@eecs.umich.edu        TLB(const Params *p);
775086Sgblack@eecs.umich.edu
785124Sgblack@eecs.umich.edu        TlbEntry *lookup(Addr va, bool update_lru = true);
795124Sgblack@eecs.umich.edu
805357Sgblack@eecs.umich.edu        void setConfigAddress(uint32_t addr);
815357Sgblack@eecs.umich.edu
825360Sgblack@eecs.umich.edu      protected:
835360Sgblack@eecs.umich.edu
845360Sgblack@eecs.umich.edu        EntryList::iterator lookupIt(Addr va, bool update_lru = true);
855360Sgblack@eecs.umich.edu
868752Sgblack@eecs.umich.edu        Walker * walker;
875236Sgblack@eecs.umich.edu
887912Shestness@cs.utexas.edu      public:
897912Shestness@cs.utexas.edu        Walker *getWalker();
905236Sgblack@eecs.umich.edu
919423SAndreas.Sandberg@arm.com        void flushAll();
925242Sgblack@eecs.umich.edu
939423SAndreas.Sandberg@arm.com        void flushNonGlobal();
945242Sgblack@eecs.umich.edu
955358Sgblack@eecs.umich.edu        void demapPage(Addr va, uint64_t asn);
965242Sgblack@eecs.umich.edu
975124Sgblack@eecs.umich.edu      protected:
989818Snilay@cs.wisc.edu        uint32_t size;
995124Sgblack@eecs.umich.edu
1005124Sgblack@eecs.umich.edu        TlbEntry * tlb;
1015124Sgblack@eecs.umich.edu
1025124Sgblack@eecs.umich.edu        EntryList freeList;
1035124Sgblack@eecs.umich.edu
1048953Sgblack@eecs.umich.edu        TlbEntryTrie trie;
1058953Sgblack@eecs.umich.edu        uint64_t lruSeq;
1068953Sgblack@eecs.umich.edu
1076141Sgblack@eecs.umich.edu        Fault translateInt(RequestPtr req, ThreadContext *tc);
1086141Sgblack@eecs.umich.edu
1095895Sgblack@eecs.umich.edu        Fault translate(RequestPtr req, ThreadContext *tc,
1106023Snate@binkert.org                Translation *translation, Mode mode,
1115895Sgblack@eecs.umich.edu                bool &delayedResponse, bool timing);
1125140Sgblack@eecs.umich.edu
1135124Sgblack@eecs.umich.edu      public:
1145245Sgblack@eecs.umich.edu
1158953Sgblack@eecs.umich.edu        void evictLRU();
1168953Sgblack@eecs.umich.edu
1178953Sgblack@eecs.umich.edu        uint64_t
1188953Sgblack@eecs.umich.edu        nextSeq()
1198953Sgblack@eecs.umich.edu        {
1208953Sgblack@eecs.umich.edu            return ++lruSeq;
1218953Sgblack@eecs.umich.edu        }
1228953Sgblack@eecs.umich.edu
1236023Snate@binkert.org        Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
1246022Sgblack@eecs.umich.edu        void translateTiming(RequestPtr req, ThreadContext *tc,
1256023Snate@binkert.org                Translation *translation, Mode mode);
1268888Sgeoffrey.blake@arm.com        /** Stub function for compilation support of CheckerCPU. x86 ISA does
1278888Sgeoffrey.blake@arm.com         *  not support Checker model at the moment
1288888Sgeoffrey.blake@arm.com         */
1298888Sgeoffrey.blake@arm.com        Fault translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode);
1305245Sgblack@eecs.umich.edu
1319738Sandreas@sandberg.pp.se        /**
1329738Sandreas@sandberg.pp.se         * Do post-translation physical address finalization.
1339738Sandreas@sandberg.pp.se         *
1349738Sandreas@sandberg.pp.se         * Some addresses, for example requests going to the APIC,
1359738Sandreas@sandberg.pp.se         * need post-translation updates. Such physical addresses are
1369738Sandreas@sandberg.pp.se         * remapped into a "magic" part of the physical address space
1379738Sandreas@sandberg.pp.se         * by this method.
1389738Sandreas@sandberg.pp.se         *
1399738Sandreas@sandberg.pp.se         * @param req Request to updated in-place.
1409738Sandreas@sandberg.pp.se         * @param tc Thread context that created the request.
1419738Sandreas@sandberg.pp.se         * @param mode Request type (read/write/execute).
1429738Sandreas@sandberg.pp.se         * @return A fault on failure, NoFault otherwise.
1439738Sandreas@sandberg.pp.se         */
1449738Sandreas@sandberg.pp.se        Fault finalizePhysical(RequestPtr req, ThreadContext *tc,
1459738Sandreas@sandberg.pp.se                               Mode mode) const;
1469738Sandreas@sandberg.pp.se
1476022Sgblack@eecs.umich.edu        TlbEntry * insert(Addr vpn, TlbEntry &entry);
1486022Sgblack@eecs.umich.edu
1495124Sgblack@eecs.umich.edu        // Checkpointing
1505124Sgblack@eecs.umich.edu        virtual void serialize(std::ostream &os);
1515124Sgblack@eecs.umich.edu        virtual void unserialize(Checkpoint *cp, const std::string &section);
1528864Snilay@cs.wisc.edu
1538922Swilliam.wang@arm.com        /**
1548922Swilliam.wang@arm.com         * Get the table walker master port. This is used for
1558922Swilliam.wang@arm.com         * migrating port connections during a CPU takeOverFrom()
1568922Swilliam.wang@arm.com         * call. For architectures that do not have a table walker,
1578922Swilliam.wang@arm.com         * NULL is returned, hence the use of a pointer rather than a
1588922Swilliam.wang@arm.com         * reference. For X86 this method will always return a valid
1598922Swilliam.wang@arm.com         * port pointer.
1608922Swilliam.wang@arm.com         *
1618922Swilliam.wang@arm.com         * @return A pointer to the walker master port
1628922Swilliam.wang@arm.com         */
1639294Sandreas.hansson@arm.com        virtual BaseMasterPort *getMasterPort();
1645124Sgblack@eecs.umich.edu    };
1655086Sgblack@eecs.umich.edu}
1665086Sgblack@eecs.umich.edu
1674120Sgblack@eecs.umich.edu#endif // __ARCH_X86_TLB_HH__
168