Deleted Added
sdiff udiff text old ( 8839:eeb293859255 ) new ( 9165:f9e3dac185ba )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2009 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 33 unchanged lines hidden (view full) ---

42from m5.proxy import *
43from MemObject import MemObject
44
45class ArmTableWalker(MemObject):
46 type = 'ArmTableWalker'
47 cxx_class = 'ArmISA::TableWalker'
48 port = MasterPort("Port for TableWalker to do walk the translation with")
49 sys = Param.System(Parent.any, "system object parameter")
50
51class ArmTLB(SimObject):
52 type = 'ArmTLB'
53 cxx_class = 'ArmISA::TLB'
54 size = Param.Int(64, "TLB size")
55 walker = Param.ArmTableWalker(ArmTableWalker(), "HW Table walker")