Automated merge with ssh://m5sim.org//repo/m5

This commit is contained in:
Nathan Binkert 2009-04-21 16:04:55 -07:00
commit 4d001e43da
6 changed files with 65 additions and 130 deletions

View file

@ -32,23 +32,6 @@ from m5.SimObject import SimObject
from m5.params import * from m5.params import *
class ArmTLB(SimObject): class ArmTLB(SimObject):
abstract = True
type = 'ArmTLB' type = 'ArmTLB'
cxx_class = 'ArmISA::TLB' cxx_class = 'ArmISA::TLB'
size = Param.Int("TLB size") size = Param.Int(64, "TLB size")
class ArmDTB(ArmTLB):
type = 'ArmDTB'
cxx_class = 'ArmISA::DTB'
size = 64
class ArmITB(ArmTLB):
type = 'ArmITB'
cxx_class = 'ArmISA::ITB'
size = 64
class ArmUTB(ArmTLB):
type = 'ArmUTB'
cxx_class = 'ArmISA::UTB'
size = 64

View file

@ -0,0 +1,41 @@
/*
* Copyright (c) 2008 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 __ARCH_ARM_MICROCODE_ROM_HH__
#define __ARCH_ARM_MICROCODE_ROM_HH__
#include "sim/microcode_rom.hh"
namespace ArmISA
{
using ::MicrocodeRom;
}
#endif // __ARCH_ARM_MICROCODE_ROM_HH__

View file

@ -36,20 +36,17 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "arch/arm/faults.hh"
#include "arch/arm/pagetable.hh" #include "arch/arm/pagetable.hh"
#include "arch/arm/tlb.hh" #include "arch/arm/tlb.hh"
#include "arch/arm/faults.hh"
#include "arch/arm/utility.hh" #include "arch/arm/utility.hh"
#include "base/inifile.hh" #include "base/inifile.hh"
#include "base/str.hh" #include "base/str.hh"
#include "base/trace.hh" #include "base/trace.hh"
#include "cpu/thread_context.hh" #include "cpu/thread_context.hh"
#include "sim/process.hh"
#include "mem/page_table.hh" #include "mem/page_table.hh"
#include "params/ArmDTB.hh"
#include "params/ArmITB.hh"
#include "params/ArmTLB.hh" #include "params/ArmTLB.hh"
#include "params/ArmUTB.hh" #include "sim/process.hh"
using namespace std; using namespace std;
@ -279,7 +276,7 @@ TLB::regStats()
} }
Fault Fault
ITB::translateAtomic(RequestPtr req, ThreadContext *tc) TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
{ {
#if !FULL_SYSTEM #if !FULL_SYSTEM
Process * p = tc->getProcessPtr(); Process * p = tc->getProcessPtr();
@ -290,68 +287,18 @@ ITB::translateAtomic(RequestPtr req, ThreadContext *tc)
return NoFault; return NoFault;
#else #else
fatal("ITB translate not yet implemented\n"); fatal("translate atomic not yet implemented\n");
#endif #endif
} }
void void
ITB::translateTiming(RequestPtr req, ThreadContext *tc, TLB::translateTiming(RequestPtr req, ThreadContext *tc,
Translation *translation) Translation *translation, Mode mode)
{ {
assert(translation); assert(translation);
translation->finish(translateAtomic(req, tc), req, tc, false); translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
} }
Fault
DTB::translateAtomic(RequestPtr req, ThreadContext *tc, bool write)
{
#if !FULL_SYSTEM
Process * p = tc->getProcessPtr();
Fault fault = p->pTable->translate(req);
if(fault != NoFault)
return fault;
return NoFault;
#else
fatal("DTB translate not yet implemented\n");
#endif
}
void
DTB::translateTiming(RequestPtr req, ThreadContext *tc,
Translation *translation, bool write)
{
assert(translation);
translation->finish(translateAtomic(req, tc, write), req, tc, write);
}
///////////////////////////////////////////////////////////////////////
//
// Arm ITB
//
ITB::ITB(const Params *p)
: TLB(p)
{}
///////////////////////////////////////////////////////////////////////
//
// Arm DTB
//
DTB::DTB(const Params *p)
: TLB(p)
{}
///////////////////////////////////////////////////////////////////////
//
// Arm UTB
//
UTB::UTB(const Params *p)
: ITB(p), DTB(p)
{}
ArmISA::PTE & ArmISA::PTE &
TLB::index(bool advance) TLB::index(bool advance)
{ {
@ -363,20 +310,8 @@ TLB::index(bool advance)
return *pte; return *pte;
} }
ArmISA::ITB * ArmISA::TLB *
ArmITBParams::create() ArmTLBParams::create()
{ {
return new ArmISA::ITB(this); return new ArmISA::TLB(this);
}
ArmISA::DTB *
ArmDTBParams::create()
{
return new ArmISA::DTB(this);
}
ArmISA::UTB *
ArmUTBParams::create()
{
return new ArmISA::UTB(this);
} }

View file

@ -43,8 +43,7 @@
#include "arch/arm/pagetable.hh" #include "arch/arm/pagetable.hh"
#include "base/statistics.hh" #include "base/statistics.hh"
#include "mem/request.hh" #include "mem/request.hh"
#include "params/ArmDTB.hh" #include "params/ArmTLB.hh"
#include "params/ArmITB.hh"
#include "sim/faults.hh" #include "sim/faults.hh"
#include "sim/tlb.hh" #include "sim/tlb.hh"
@ -135,6 +134,10 @@ class TLB : public BaseTLB
static Fault checkCacheability(RequestPtr &req); static Fault checkCacheability(RequestPtr &req);
Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
void translateTiming(RequestPtr req, ThreadContext *tc,
Translation *translation, Mode mode);
// Checkpointing // Checkpointing
void serialize(std::ostream &os); void serialize(std::ostream &os);
void unserialize(Checkpoint *cp, const std::string &section); void unserialize(Checkpoint *cp, const std::string &section);
@ -142,36 +145,6 @@ class TLB : public BaseTLB
void regStats(); void regStats();
}; };
class ITB : public TLB /* namespace ArmISA */ }
{
public:
typedef ArmTLBParams Params;
ITB(const Params *p);
Fault translateAtomic(RequestPtr req, ThreadContext *tc);
void translateTiming(RequestPtr req, ThreadContext *tc,
Translation *translation);
};
class DTB : public TLB
{
public:
typedef ArmTLBParams Params;
DTB(const Params *p);
Fault translateAtomic(RequestPtr req, ThreadContext *tc, bool write);
void translateTiming(RequestPtr req, ThreadContext *tc,
Translation *translation, bool write);
};
class UTB : public ITB, public DTB
{
public:
typedef ArmTLBParams Params;
UTB(const Params *p);
};
}
#endif // __ARCH_ARM_TLB_HH__ #endif // __ARCH_ARM_TLB_HH__

View file

@ -54,7 +54,7 @@ elif build_env['TARGET_ISA'] == 'mips':
if build_env['FULL_SYSTEM']: if build_env['FULL_SYSTEM']:
from MipsInterrupts import MipsInterrupts from MipsInterrupts import MipsInterrupts
elif build_env['TARGET_ISA'] == 'arm': elif build_env['TARGET_ISA'] == 'arm':
from ArmTLB import ArmDTB from ArmTLB import ArmTLB
if build_env['FULL_SYSTEM']: if build_env['FULL_SYSTEM']:
from ArmInterrupts import ArmInterrupts from ArmInterrupts import ArmInterrupts
@ -109,8 +109,8 @@ class BaseCPU(MemObject):
MipsInterrupts(), "Interrupt Controller") MipsInterrupts(), "Interrupt Controller")
elif build_env['TARGET_ISA'] == 'arm': elif build_env['TARGET_ISA'] == 'arm':
UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?") UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?")
dtb = Param.ArmTLB(ArmDTB(), "Data TLB") dtb = Param.ArmTLB(ArmTLB(), "Data TLB")
itb = Param.ArmTLB(ArmITB(), "Instruction TLB") itb = Param.ArmTLB(ArmTLB(), "Instruction TLB")
if build_env['FULL_SYSTEM']: if build_env['FULL_SYSTEM']:
interrupts = Param.ArmInterrupts( interrupts = Param.ArmInterrupts(
ArmInterrupts(), "Interrupt Controller") ArmInterrupts(), "Interrupt Controller")

View file

@ -35,7 +35,8 @@
#include <fstream> #include <fstream>
#include <string> #include <string>
#include "arch/kernel_stats.hh" #include "config/full_system.hh"
#include "arch/vtophys.hh" #include "arch/vtophys.hh"
#include "base/debug.hh" #include "base/debug.hh"
#include "cpu/base.hh" #include "cpu/base.hh"
@ -49,7 +50,9 @@
#include "sim/stat_control.hh" #include "sim/stat_control.hh"
#include "sim/stats.hh" #include "sim/stats.hh"
#include "sim/system.hh" #include "sim/system.hh"
#if FULL_SYSTEM #if FULL_SYSTEM
#include "arch/kernel_stats.hh"
#include "sim/vptr.hh" #include "sim/vptr.hh"
#endif #endif