tlb.hh revision 11395
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
4710687SAndreas.Sandberg@ARM.com#include "arch/generic/tlb.hh"
488229Snate@binkert.org#include "arch/x86/regs/segment.hh"
495124Sgblack@eecs.umich.edu#include "arch/x86/pagetable.hh"
508953Sgblack@eecs.umich.edu#include "base/trie.hh"
515236Sgblack@eecs.umich.edu#include "mem/mem_object.hh"
525086Sgblack@eecs.umich.edu#include "mem/request.hh"
536022Sgblack@eecs.umich.edu#include "params/X86TLB.hh"
548229Snate@binkert.org#include "sim/sim_object.hh"
555086Sgblack@eecs.umich.edu
565086Sgblack@eecs.umich.educlass ThreadContext;
575086Sgblack@eecs.umich.educlass Packet;
585086Sgblack@eecs.umich.edu
595086Sgblack@eecs.umich.edunamespace X86ISA
605086Sgblack@eecs.umich.edu{
615245Sgblack@eecs.umich.edu    class Walker;
625245Sgblack@eecs.umich.edu
635358Sgblack@eecs.umich.edu    class TLB : public BaseTLB
645086Sgblack@eecs.umich.edu    {
655124Sgblack@eecs.umich.edu      protected:
665895Sgblack@eecs.umich.edu        friend class Walker;
675236Sgblack@eecs.umich.edu
685360Sgblack@eecs.umich.edu        typedef std::list<TlbEntry *> EntryList;
695360Sgblack@eecs.umich.edu
705357Sgblack@eecs.umich.edu        uint32_t configAddress;
715237Sgblack@eecs.umich.edu
725124Sgblack@eecs.umich.edu      public:
735245Sgblack@eecs.umich.edu
745124Sgblack@eecs.umich.edu        typedef X86TLBParams Params;
755124Sgblack@eecs.umich.edu        TLB(const Params *p);
765086Sgblack@eecs.umich.edu
7711175Sandreas.hansson@arm.com        void takeOverFrom(BaseTLB *otlb) override {}
7810194SGeoffrey.Blake@arm.com
795124Sgblack@eecs.umich.edu        TlbEntry *lookup(Addr va, bool update_lru = true);
805124Sgblack@eecs.umich.edu
815357Sgblack@eecs.umich.edu        void setConfigAddress(uint32_t addr);
825357Sgblack@eecs.umich.edu
835360Sgblack@eecs.umich.edu      protected:
845360Sgblack@eecs.umich.edu
855360Sgblack@eecs.umich.edu        EntryList::iterator lookupIt(Addr va, bool update_lru = true);
865360Sgblack@eecs.umich.edu
878752Sgblack@eecs.umich.edu        Walker * walker;
885236Sgblack@eecs.umich.edu
897912Shestness@cs.utexas.edu      public:
907912Shestness@cs.utexas.edu        Walker *getWalker();
915236Sgblack@eecs.umich.edu
9211175Sandreas.hansson@arm.com        void flushAll() override;
935242Sgblack@eecs.umich.edu
949423SAndreas.Sandberg@arm.com        void flushNonGlobal();
955242Sgblack@eecs.umich.edu
9611175Sandreas.hansson@arm.com        void demapPage(Addr va, uint64_t asn) override;
975242Sgblack@eecs.umich.edu
985124Sgblack@eecs.umich.edu      protected:
999818Snilay@cs.wisc.edu        uint32_t size;
1005124Sgblack@eecs.umich.edu
10110905Sandreas.sandberg@arm.com        std::vector<TlbEntry> tlb;
1025124Sgblack@eecs.umich.edu
1035124Sgblack@eecs.umich.edu        EntryList freeList;
1045124Sgblack@eecs.umich.edu
1058953Sgblack@eecs.umich.edu        TlbEntryTrie trie;
1068953Sgblack@eecs.umich.edu        uint64_t lruSeq;
1078953Sgblack@eecs.umich.edu
1086141Sgblack@eecs.umich.edu        Fault translateInt(RequestPtr req, ThreadContext *tc);
1096141Sgblack@eecs.umich.edu
1105895Sgblack@eecs.umich.edu        Fault translate(RequestPtr req, ThreadContext *tc,
1116023Snate@binkert.org                Translation *translation, Mode mode,
1125895Sgblack@eecs.umich.edu                bool &delayedResponse, bool timing);
1135140Sgblack@eecs.umich.edu
1145124Sgblack@eecs.umich.edu      public:
1155245Sgblack@eecs.umich.edu
1168953Sgblack@eecs.umich.edu        void evictLRU();
1178953Sgblack@eecs.umich.edu
1188953Sgblack@eecs.umich.edu        uint64_t
1198953Sgblack@eecs.umich.edu        nextSeq()
1208953Sgblack@eecs.umich.edu        {
1218953Sgblack@eecs.umich.edu            return ++lruSeq;
1228953Sgblack@eecs.umich.edu        }
1238953Sgblack@eecs.umich.edu
1246023Snate@binkert.org        Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
1256022Sgblack@eecs.umich.edu        void translateTiming(RequestPtr req, ThreadContext *tc,
1266023Snate@binkert.org                Translation *translation, Mode mode);
1278888Sgeoffrey.blake@arm.com        /** Stub function for compilation support of CheckerCPU. x86 ISA does
1288888Sgeoffrey.blake@arm.com         *  not support Checker model at the moment
1298888Sgeoffrey.blake@arm.com         */
1308888Sgeoffrey.blake@arm.com        Fault translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode);
1315245Sgblack@eecs.umich.edu
1329738Sandreas@sandberg.pp.se        /**
1339738Sandreas@sandberg.pp.se         * Do post-translation physical address finalization.
1349738Sandreas@sandberg.pp.se         *
1359738Sandreas@sandberg.pp.se         * Some addresses, for example requests going to the APIC,
1369738Sandreas@sandberg.pp.se         * need post-translation updates. Such physical addresses are
1379738Sandreas@sandberg.pp.se         * remapped into a "magic" part of the physical address space
1389738Sandreas@sandberg.pp.se         * by this method.
1399738Sandreas@sandberg.pp.se         *
1409738Sandreas@sandberg.pp.se         * @param req Request to updated in-place.
1419738Sandreas@sandberg.pp.se         * @param tc Thread context that created the request.
1429738Sandreas@sandberg.pp.se         * @param mode Request type (read/write/execute).
1439738Sandreas@sandberg.pp.se         * @return A fault on failure, NoFault otherwise.
1449738Sandreas@sandberg.pp.se         */
1459738Sandreas@sandberg.pp.se        Fault finalizePhysical(RequestPtr req, ThreadContext *tc,
1469738Sandreas@sandberg.pp.se                               Mode mode) const;
1479738Sandreas@sandberg.pp.se
1486022Sgblack@eecs.umich.edu        TlbEntry * insert(Addr vpn, TlbEntry &entry);
1496022Sgblack@eecs.umich.edu
1505124Sgblack@eecs.umich.edu        // Checkpointing
15111168Sandreas.hansson@arm.com        void serialize(CheckpointOut &cp) const override;
15211168Sandreas.hansson@arm.com        void unserialize(CheckpointIn &cp) override;
1538864Snilay@cs.wisc.edu
1548922Swilliam.wang@arm.com        /**
1558922Swilliam.wang@arm.com         * Get the table walker master port. This is used for
1568922Swilliam.wang@arm.com         * migrating port connections during a CPU takeOverFrom()
1578922Swilliam.wang@arm.com         * call. For architectures that do not have a table walker,
1588922Swilliam.wang@arm.com         * NULL is returned, hence the use of a pointer rather than a
1598922Swilliam.wang@arm.com         * reference. For X86 this method will always return a valid
1608922Swilliam.wang@arm.com         * port pointer.
1618922Swilliam.wang@arm.com         *
1628922Swilliam.wang@arm.com         * @return A pointer to the walker master port
1638922Swilliam.wang@arm.com         */
16411175Sandreas.hansson@arm.com        BaseMasterPort *getMasterPort() override;
1655124Sgblack@eecs.umich.edu    };
1665086Sgblack@eecs.umich.edu}
1675086Sgblack@eecs.umich.edu
1684120Sgblack@eecs.umich.edu#endif // __ARCH_X86_TLB_HH__
169