X86TLB.py (9338:97b4a2be1e5b) X86TLB.py (9701:f02f3b6562d5)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

42from MemObject import MemObject
43
44class X86PagetableWalker(MemObject):
45 type = 'X86PagetableWalker'
46 cxx_class = 'X86ISA::Walker'
47 cxx_header = 'arch/x86/pagetable_walker.hh'
48 port = MasterPort("Port for the hardware table walker")
49 system = Param.System(Parent.any, "system object")
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

42from MemObject import MemObject
43
44class X86PagetableWalker(MemObject):
45 type = 'X86PagetableWalker'
46 cxx_class = 'X86ISA::Walker'
47 cxx_header = 'arch/x86/pagetable_walker.hh'
48 port = MasterPort("Port for the hardware table walker")
49 system = Param.System(Parent.any, "system object")
50 num_squash_per_cycle = Param.Unsigned(4,
51 "Number of outstanding walks that can be squashed per cycle")
50
51class X86TLB(BaseTLB):
52 type = 'X86TLB'
53 cxx_class = 'X86ISA::TLB'
54 cxx_header = 'arch/x86/tlb.hh'
55 size = Param.Int(64, "TLB size")
56 walker = Param.X86PagetableWalker(\
57 X86PagetableWalker(), "page table walker")
52
53class X86TLB(BaseTLB):
54 type = 'X86TLB'
55 cxx_class = 'X86ISA::TLB'
56 cxx_header = 'arch/x86/tlb.hh'
57 size = Param.Int(64, "TLB size")
58 walker = Param.X86PagetableWalker(\
59 X86PagetableWalker(), "page table walker")