Sequencer.py revision 8436
12SN/A# Copyright (c) 2009 Advanced Micro Devices, Inc. 21762SN/A# All rights reserved. 32SN/A# 42SN/A# Redistribution and use in source and binary forms, with or without 52SN/A# modification, are permitted provided that the following conditions are 62SN/A# met: redistributions of source code must retain the above copyright 72SN/A# notice, this list of conditions and the following disclaimer; 82SN/A# redistributions in binary form must reproduce the above copyright 92SN/A# notice, this list of conditions and the following disclaimer in the 102SN/A# documentation and/or other materials provided with the distribution; 112SN/A# neither the name of the copyright holders nor the names of its 122SN/A# contributors may be used to endorse or promote products derived from 132SN/A# this software without specific prior written permission. 142SN/A# 152SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 162SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 172SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 182SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 192SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 202SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 212SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 222SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 232SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 242SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 252SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 262SN/A# 272665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 282665Ssaidi@eecs.umich.edu# Brad Beckmann 292665Ssaidi@eecs.umich.edu 302665Ssaidi@eecs.umich.edufrom m5.params import * 312SN/Afrom m5.proxy import * 322SN/Afrom MemObject import MemObject 332623SN/A 342623SN/Aclass RubyPort(MemObject): 352SN/A type = 'RubyPort' 364182Sgblack@eecs.umich.edu abstract = True 371354SN/A port = VectorPort("M5 port") 381858SN/A version = Param.Int(0, "") 396658Snate@binkert.org pio_port = Port("Ruby_pio_port") 401717SN/A physmem = Param.PhysicalMemory("") 418541Sgblack@eecs.umich.edu physMemPort = Port("port to physical memory") 428229Snate@binkert.org using_ruby_tester = Param.Bool(False, "") 432683Sktlim@umich.edu using_network_tester = Param.Bool(False, "") 441354SN/A access_phys_mem = Param.Bool(True, 452387SN/A "should the rubyport atomically update phys_mem") 462387SN/A ruby_system = Param.RubySystem("") 472387SN/A 4856SN/Aclass RubySequencer(RubyPort): 495348Ssaidi@eecs.umich.edu type = 'RubySequencer' 502SN/A cxx_class = 'Sequencer' 512SN/A icache = Param.RubyCache("") 521858SN/A dcache = Param.RubyCache("") 532SN/A max_outstanding_requests = Param.Int(16, 543453Sgblack@eecs.umich.edu "max requests (incl. prefetches) outstanding") 553453Sgblack@eecs.umich.edu deadlock_threshold = Param.Int(500000, 563453Sgblack@eecs.umich.edu "max outstanding cycles for a request before deadlock/livelock declared") 573453Sgblack@eecs.umich.edu 583453Sgblack@eecs.umich.educlass DMASequencer(RubyPort): 592462SN/A type = 'DMASequencer' 602SN/A