BaseCPU.py revision 9338
18839Sandreas.hansson@arm.com# Copyright (c) 2012 ARM Limited
28839Sandreas.hansson@arm.com# All rights reserved.
38839Sandreas.hansson@arm.com#
48839Sandreas.hansson@arm.com# The license below extends only to copyright in the software and shall
58839Sandreas.hansson@arm.com# not be construed as granting a license to any other intellectual
68839Sandreas.hansson@arm.com# property including but not limited to intellectual property relating
78839Sandreas.hansson@arm.com# to a hardware implementation of the functionality of the software
88839Sandreas.hansson@arm.com# licensed hereunder.  You may use the software subject to the license
98839Sandreas.hansson@arm.com# terms below provided that you ensure that this notice is replicated
108839Sandreas.hansson@arm.com# unmodified and in its entirety in all distributions of the software,
118839Sandreas.hansson@arm.com# modified or unmodified, in source code or in binary form.
128839Sandreas.hansson@arm.com#
135335Shines@cs.fsu.edu# Copyright (c) 2005-2008 The Regents of The University of Michigan
147897Shestness@cs.utexas.edu# Copyright (c) 2011 Regents of the University of California
154486Sbinkertn@umich.edu# All rights reserved.
164486Sbinkertn@umich.edu#
174486Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
184486Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
194486Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
204486Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
214486Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
224486Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
234486Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
244486Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
254486Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
264486Sbinkertn@umich.edu# this software without specific prior written permission.
274486Sbinkertn@umich.edu#
284486Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
294486Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
304486Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
314486Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
324486Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
334486Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
344486Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
354486Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
364486Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
374486Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
384486Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
394486Sbinkertn@umich.edu#
404486Sbinkertn@umich.edu# Authors: Nathan Binkert
417897Shestness@cs.utexas.edu#          Rick Strong
428839Sandreas.hansson@arm.com#          Andreas Hansson
434486Sbinkertn@umich.edu
446654Snate@binkert.orgimport sys
456654Snate@binkert.org
466654Snate@binkert.orgfrom m5.defines import buildEnv
473102SN/Afrom m5.params import *
483102SN/Afrom m5.proxy import *
496654Snate@binkert.org
509036Sandreas.hansson@arm.comfrom Bus import CoherentBus
514776Sgblack@eecs.umich.edufrom InstTracer import InstTracer
524776Sgblack@eecs.umich.edufrom ExeTracer import ExeTracer
536654Snate@binkert.orgfrom MemObject import MemObject
542667SN/A
554776Sgblack@eecs.umich.edudefault_tracer = ExeTracer()
564776Sgblack@eecs.umich.edu
576654Snate@binkert.orgif buildEnv['TARGET_ISA'] == 'alpha':
586023Snate@binkert.org    from AlphaTLB import AlphaDTB, AlphaITB
598745Sgblack@eecs.umich.edu    from AlphaInterrupts import AlphaInterrupts
606654Snate@binkert.orgelif buildEnv['TARGET_ISA'] == 'sparc':
616022Sgblack@eecs.umich.edu    from SparcTLB import SparcTLB
628745Sgblack@eecs.umich.edu    from SparcInterrupts import SparcInterrupts
636654Snate@binkert.orgelif buildEnv['TARGET_ISA'] == 'x86':
646022Sgblack@eecs.umich.edu    from X86TLB import X86TLB
658745Sgblack@eecs.umich.edu    from X86LocalApic import X86LocalApic
666654Snate@binkert.orgelif buildEnv['TARGET_ISA'] == 'mips':
676022Sgblack@eecs.umich.edu    from MipsTLB import MipsTLB
688745Sgblack@eecs.umich.edu    from MipsInterrupts import MipsInterrupts
696654Snate@binkert.orgelif buildEnv['TARGET_ISA'] == 'arm':
706116Snate@binkert.org    from ArmTLB import ArmTLB
718745Sgblack@eecs.umich.edu    from ArmInterrupts import ArmInterrupts
726691Stjones1@inf.ed.ac.ukelif buildEnv['TARGET_ISA'] == 'power':
736691Stjones1@inf.ed.ac.uk    from PowerTLB import PowerTLB
748745Sgblack@eecs.umich.edu    from PowerInterrupts import PowerInterrupts
754486Sbinkertn@umich.edu
765529Snate@binkert.orgclass BaseCPU(MemObject):
771366SN/A    type = 'BaseCPU'
781310SN/A    abstract = True
799338SAndreas.Sandberg@arm.com    cxx_header = "cpu/base.hh"
809254SAndreas.Sandberg@arm.com
819254SAndreas.Sandberg@arm.com    @classmethod
829254SAndreas.Sandberg@arm.com    def export_methods(cls, code):
839254SAndreas.Sandberg@arm.com        code('''
849254SAndreas.Sandberg@arm.com    void switchOut();
859254SAndreas.Sandberg@arm.com    void takeOverFrom(BaseCPU *cpu);
869254SAndreas.Sandberg@arm.com''')
879254SAndreas.Sandberg@arm.com
889254SAndreas.Sandberg@arm.com    def takeOverFrom(self, old_cpu):
899254SAndreas.Sandberg@arm.com        self._ccObject.takeOverFrom(old_cpu._ccObject)
909254SAndreas.Sandberg@arm.com
919254SAndreas.Sandberg@arm.com
922901SN/A    system = Param.System(Parent.any, "system object")
935712Shsul@eecs.umich.edu    cpu_id = Param.Int(-1, "CPU identifier")
945529Snate@binkert.org    numThreads = Param.Unsigned(1, "number of HW thread contexts")
955529Snate@binkert.org
965529Snate@binkert.org    function_trace = Param.Bool(False, "Enable function trace")
979161Sandreas.hansson@arm.com    function_trace_start = Param.Tick(0, "Tick to start function trace")
985529Snate@binkert.org
995821Ssaidi@eecs.umich.edu    checker = Param.BaseCPU(NULL, "checker CPU")
1003170SN/A
1015780Ssteve.reinhardt@amd.com    do_checkpoint_insts = Param.Bool(True,
1025780Ssteve.reinhardt@amd.com        "enable checkpoint pseudo instructions")
1035780Ssteve.reinhardt@amd.com    do_statistics_insts = Param.Bool(True,
1045780Ssteve.reinhardt@amd.com        "enable statistics pseudo instructions")
1055780Ssteve.reinhardt@amd.com
1068784Sgblack@eecs.umich.edu    profile = Param.Latency('0ns', "trace the kernel stack")
1078784Sgblack@eecs.umich.edu    do_quiesce = Param.Bool(True, "enable quiesce instructions")
1088784Sgblack@eecs.umich.edu
1098793Sgblack@eecs.umich.edu    workload = VectorParam.Process([], "processes to run")
1101310SN/A
1116654Snate@binkert.org    if buildEnv['TARGET_ISA'] == 'sparc':
1126022Sgblack@eecs.umich.edu        dtb = Param.SparcTLB(SparcTLB(), "Data TLB")
1136022Sgblack@eecs.umich.edu        itb = Param.SparcTLB(SparcTLB(), "Instruction TLB")
1148745Sgblack@eecs.umich.edu        interrupts = Param.SparcInterrupts(
1158863Snilay@cs.wisc.edu                NULL, "Interrupt Controller")
1166654Snate@binkert.org    elif buildEnv['TARGET_ISA'] == 'alpha':
1176023Snate@binkert.org        dtb = Param.AlphaTLB(AlphaDTB(), "Data TLB")
1186023Snate@binkert.org        itb = Param.AlphaTLB(AlphaITB(), "Instruction TLB")
1198745Sgblack@eecs.umich.edu        interrupts = Param.AlphaInterrupts(
1208863Snilay@cs.wisc.edu                NULL, "Interrupt Controller")
1216654Snate@binkert.org    elif buildEnv['TARGET_ISA'] == 'x86':
1226022Sgblack@eecs.umich.edu        dtb = Param.X86TLB(X86TLB(), "Data TLB")
1236022Sgblack@eecs.umich.edu        itb = Param.X86TLB(X86TLB(), "Instruction TLB")
1248863Snilay@cs.wisc.edu        interrupts = Param.X86LocalApic(NULL, "Interrupt Controller")
1256654Snate@binkert.org    elif buildEnv['TARGET_ISA'] == 'mips':
1266022Sgblack@eecs.umich.edu        dtb = Param.MipsTLB(MipsTLB(), "Data TLB")
1276022Sgblack@eecs.umich.edu        itb = Param.MipsTLB(MipsTLB(), "Instruction TLB")
1288745Sgblack@eecs.umich.edu        interrupts = Param.MipsInterrupts(
1298863Snilay@cs.wisc.edu                NULL, "Interrupt Controller")
1306654Snate@binkert.org    elif buildEnv['TARGET_ISA'] == 'arm':
1316116Snate@binkert.org        dtb = Param.ArmTLB(ArmTLB(), "Data TLB")
1326116Snate@binkert.org        itb = Param.ArmTLB(ArmTLB(), "Instruction TLB")
1338745Sgblack@eecs.umich.edu        interrupts = Param.ArmInterrupts(
1348863Snilay@cs.wisc.edu                NULL, "Interrupt Controller")
1356691Stjones1@inf.ed.ac.uk    elif buildEnv['TARGET_ISA'] == 'power':
1366691Stjones1@inf.ed.ac.uk        UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?")
1376691Stjones1@inf.ed.ac.uk        dtb = Param.PowerTLB(PowerTLB(), "Data TLB")
1386691Stjones1@inf.ed.ac.uk        itb = Param.PowerTLB(PowerTLB(), "Instruction TLB")
1398745Sgblack@eecs.umich.edu        interrupts = Param.PowerInterrupts(
1408863Snilay@cs.wisc.edu                NULL, "Interrupt Controller")
1414997Sgblack@eecs.umich.edu    else:
1424997Sgblack@eecs.umich.edu        print "Don't know what TLB to use for ISA %s" % \
1436654Snate@binkert.org            buildEnv['TARGET_ISA']
1444997Sgblack@eecs.umich.edu        sys.exit(1)
1454997Sgblack@eecs.umich.edu
1461310SN/A    max_insts_all_threads = Param.Counter(0,
1471310SN/A        "terminate when all threads have reached this inst count")
1481310SN/A    max_insts_any_thread = Param.Counter(0,
1491310SN/A        "terminate when any thread reaches this inst count")
1501310SN/A    max_loads_all_threads = Param.Counter(0,
1511310SN/A        "terminate when all threads have reached this load count")
1521310SN/A    max_loads_any_thread = Param.Counter(0,
1531310SN/A        "terminate when any thread reaches this load count")
1549180Sandreas.hansson@arm.com    progress_interval = Param.Frequency('0Hz',
1559180Sandreas.hansson@arm.com        "frequency to print out the progress message")
1561310SN/A
1571369SN/A    defer_registration = Param.Bool(False,
1581310SN/A        "defer registration with system (for sampling)")
1591634SN/A
1604776Sgblack@eecs.umich.edu    tracer = Param.InstTracer(default_tracer, "Instruction tracer")
1614776Sgblack@eecs.umich.edu
1628839Sandreas.hansson@arm.com    icache_port = MasterPort("Instruction Port")
1638839Sandreas.hansson@arm.com    dcache_port = MasterPort("Data Port")
1648707Sandreas.hansson@arm.com    _cached_ports = ['icache_port', 'dcache_port']
1658707Sandreas.hansson@arm.com
1668756Sgblack@eecs.umich.edu    if buildEnv['TARGET_ISA'] in ['x86', 'arm']:
1678707Sandreas.hansson@arm.com        _cached_ports += ["itb.walker.port", "dtb.walker.port"]
1687876Sgblack@eecs.umich.edu
1698839Sandreas.hansson@arm.com    _uncached_slave_ports = []
1708839Sandreas.hansson@arm.com    _uncached_master_ports = []
1718745Sgblack@eecs.umich.edu    if buildEnv['TARGET_ISA'] == 'x86':
1728839Sandreas.hansson@arm.com        _uncached_slave_ports += ["interrupts.pio", "interrupts.int_slave"]
1738839Sandreas.hansson@arm.com        _uncached_master_ports += ["interrupts.int_master"]
1742998SN/A
1758863Snilay@cs.wisc.edu    def createInterruptController(self):
1768863Snilay@cs.wisc.edu        if buildEnv['TARGET_ISA'] == 'sparc':
1778863Snilay@cs.wisc.edu            self.interrupts = SparcInterrupts()
1788863Snilay@cs.wisc.edu        elif buildEnv['TARGET_ISA'] == 'alpha':
1798863Snilay@cs.wisc.edu            self.interrupts = AlphaInterrupts()
1808863Snilay@cs.wisc.edu        elif buildEnv['TARGET_ISA'] == 'x86':
1818863Snilay@cs.wisc.edu            _localApic = X86LocalApic(pio_addr=0x2000000000000000)
1828863Snilay@cs.wisc.edu            self.interrupts = _localApic
1838863Snilay@cs.wisc.edu        elif buildEnv['TARGET_ISA'] == 'mips':
1848863Snilay@cs.wisc.edu            self.interrupts = MipsInterrupts()
1858863Snilay@cs.wisc.edu        elif buildEnv['TARGET_ISA'] == 'arm':
1868863Snilay@cs.wisc.edu            self.interrupts = ArmInterrupts()
1878863Snilay@cs.wisc.edu        elif buildEnv['TARGET_ISA'] == 'power':
1888863Snilay@cs.wisc.edu            self.interrupts = PowerInterrupts()
1898863Snilay@cs.wisc.edu        else:
1908863Snilay@cs.wisc.edu            print "Don't know what Interrupt Controller to use for ISA %s" % \
1918863Snilay@cs.wisc.edu                buildEnv['TARGET_ISA']
1928863Snilay@cs.wisc.edu            sys.exit(1)
1938863Snilay@cs.wisc.edu
1947876Sgblack@eecs.umich.edu    def connectCachedPorts(self, bus):
1957876Sgblack@eecs.umich.edu        for p in self._cached_ports:
1968839Sandreas.hansson@arm.com            exec('self.%s = bus.slave' % p)
1977404SAli.Saidi@ARM.com
1987876Sgblack@eecs.umich.edu    def connectUncachedPorts(self, bus):
1998839Sandreas.hansson@arm.com        for p in self._uncached_slave_ports:
2008839Sandreas.hansson@arm.com            exec('self.%s = bus.master' % p)
2018839Sandreas.hansson@arm.com        for p in self._uncached_master_ports:
2028839Sandreas.hansson@arm.com            exec('self.%s = bus.slave' % p)
2037876Sgblack@eecs.umich.edu
2047876Sgblack@eecs.umich.edu    def connectAllPorts(self, cached_bus, uncached_bus = None):
2057876Sgblack@eecs.umich.edu        self.connectCachedPorts(cached_bus)
2067876Sgblack@eecs.umich.edu        if not uncached_bus:
2077876Sgblack@eecs.umich.edu            uncached_bus = cached_bus
2087876Sgblack@eecs.umich.edu        self.connectUncachedPorts(uncached_bus)
2092998SN/A
2107868Sgblack@eecs.umich.edu    def addPrivateSplitL1Caches(self, ic, dc, iwc = None, dwc = None):
2112998SN/A        self.icache = ic
2122998SN/A        self.dcache = dc
2132998SN/A        self.icache_port = ic.cpu_side
2142998SN/A        self.dcache_port = dc.cpu_side
2157876Sgblack@eecs.umich.edu        self._cached_ports = ['icache.mem_side', 'dcache.mem_side']
2168796Sgblack@eecs.umich.edu        if buildEnv['TARGET_ISA'] in ['x86', 'arm']:
2178796Sgblack@eecs.umich.edu            if iwc and dwc:
2188796Sgblack@eecs.umich.edu                self.itb_walker_cache = iwc
2198796Sgblack@eecs.umich.edu                self.dtb_walker_cache = dwc
2208796Sgblack@eecs.umich.edu                self.itb.walker.port = iwc.cpu_side
2218796Sgblack@eecs.umich.edu                self.dtb.walker.port = dwc.cpu_side
2228796Sgblack@eecs.umich.edu                self._cached_ports += ["itb_walker_cache.mem_side", \
2238796Sgblack@eecs.umich.edu                                       "dtb_walker_cache.mem_side"]
2248796Sgblack@eecs.umich.edu            else:
2258796Sgblack@eecs.umich.edu                self._cached_ports += ["itb.walker.port", "dtb.walker.port"]
2268887Sgeoffrey.blake@arm.com
2278809Sgblack@eecs.umich.edu            # Checker doesn't need its own tlb caches because it does
2288809Sgblack@eecs.umich.edu            # functional accesses only
2298887Sgeoffrey.blake@arm.com            if self.checker != NULL:
2308809Sgblack@eecs.umich.edu                self._cached_ports += ["checker.itb.walker.port", \
2318809Sgblack@eecs.umich.edu                                       "checker.dtb.walker.port"]
2322998SN/A
2337868Sgblack@eecs.umich.edu    def addTwoLevelCacheHierarchy(self, ic, dc, l2c, iwc = None, dwc = None):
2347868Sgblack@eecs.umich.edu        self.addPrivateSplitL1Caches(ic, dc, iwc, dwc)
2359284Sandreas.hansson@arm.com        # Override the default bus clock of 1 GHz and uses the CPU
2369284Sandreas.hansson@arm.com        # clock for the L1-to-L2 bus, and also set a width of 32 bytes
2379284Sandreas.hansson@arm.com        # (256-bits), which is four times that of the default bus.
2389284Sandreas.hansson@arm.com        self.toL2Bus = CoherentBus(clock = Parent.clock, width = 32)
2397876Sgblack@eecs.umich.edu        self.connectCachedPorts(self.toL2Bus)
2402998SN/A        self.l2cache = l2c
2418839Sandreas.hansson@arm.com        self.toL2Bus.master = self.l2cache.cpu_side
2427876Sgblack@eecs.umich.edu        self._cached_ports = ['l2cache.mem_side']
2438887Sgeoffrey.blake@arm.com
2448887Sgeoffrey.blake@arm.com    def addCheckerCpu(self):
2458887Sgeoffrey.blake@arm.com        pass
246