ArmTLB.py (9165:f9e3dac185ba) ArmTLB.py (9258:baa17ba80e06)
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")
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 num_squash_per_cycle = Param.Unsigned(2,
51 "Number of outstanding walks that can be squashed per cycle")
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")
52
53class ArmTLB(SimObject):
54 type = 'ArmTLB'
55 cxx_class = 'ArmISA::TLB'
56 size = Param.Int(64, "TLB size")
57 walker = Param.ArmTableWalker(ArmTableWalker(), "HW Table walker")