2007-08-27 05:24:18 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Gabe Black
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SIM_TLB_HH__
|
|
|
|
#define __SIM_TLB_HH__
|
|
|
|
|
2007-08-27 05:33:57 +02:00
|
|
|
#include "base/misc.hh"
|
2007-08-27 05:24:18 +02:00
|
|
|
#include "mem/request.hh"
|
|
|
|
#include "sim/faults.hh"
|
2007-08-27 05:33:57 +02:00
|
|
|
#include "sim/sim_object.hh"
|
2007-08-27 05:24:18 +02:00
|
|
|
|
|
|
|
class ThreadContext;
|
|
|
|
class Packet;
|
|
|
|
|
2008-02-27 05:38:51 +01:00
|
|
|
class BaseTLB : public SimObject
|
2007-08-27 05:24:18 +02:00
|
|
|
{
|
2007-08-27 05:33:57 +02:00
|
|
|
protected:
|
2009-04-09 07:21:27 +02:00
|
|
|
BaseTLB(const Params *p)
|
|
|
|
: SimObject(p)
|
2007-08-27 05:24:18 +02:00
|
|
|
{}
|
2007-08-27 05:33:57 +02:00
|
|
|
|
2009-04-09 07:21:27 +02:00
|
|
|
public:
|
|
|
|
enum Mode { Read, Write, Execute };
|
|
|
|
|
2007-08-27 05:24:18 +02:00
|
|
|
public:
|
2008-02-27 05:38:51 +01:00
|
|
|
virtual void demapPage(Addr vaddr, uint64_t asn) = 0;
|
2009-02-25 19:16:15 +01:00
|
|
|
|
|
|
|
class Translation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Translation()
|
|
|
|
{}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The memory for this object may be dynamically allocated, and it may
|
|
|
|
* be responsible for cleaning itself up which will happen in this
|
|
|
|
* function. Once it's called, the object is no longer valid.
|
|
|
|
*/
|
2009-04-09 07:21:27 +02:00
|
|
|
virtual void finish(Fault fault, RequestPtr req, ThreadContext *tc,
|
|
|
|
Mode mode) = 0;
|
2009-02-25 19:16:15 +01:00
|
|
|
};
|
2008-02-27 05:38:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class GenericTLB : public BaseTLB
|
|
|
|
{
|
|
|
|
protected:
|
2009-04-09 07:21:27 +02:00
|
|
|
GenericTLB(const Params *p)
|
|
|
|
: BaseTLB(p)
|
2008-02-27 05:38:51 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
public:
|
|
|
|
void demapPage(Addr vaddr, uint64_t asn);
|
|
|
|
|
2009-04-09 07:21:27 +02:00
|
|
|
Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
|
2009-02-25 19:16:15 +01:00
|
|
|
void translateTiming(RequestPtr req, ThreadContext *tc,
|
2009-04-09 07:21:27 +02:00
|
|
|
Translation *translation, Mode mode);
|
2007-08-27 05:24:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ARCH_SPARC_TLB_HH__
|