ArmTLB.py (8839:eeb293859255) ArmTLB.py (9165:f9e3dac185ba)
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 min_backoff = Param.Tick(0, "Minimum backoff delay after failed send")
51 max_backoff = Param.Tick(100000, "Minimum backoff delay after failed send")
52
50
53
54class ArmTLB(SimObject):
55 type = 'ArmTLB'
56 cxx_class = 'ArmISA::TLB'
57 size = Param.Int(64, "TLB size")
58 walker = Param.ArmTableWalker(ArmTableWalker(), "HW Table walker")
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")