Network.py revision 9465
16876Ssteve.reinhardt@amd.com# Copyright (c) 2009 Advanced Micro Devices, Inc. 26876Ssteve.reinhardt@amd.com# All rights reserved. 36876Ssteve.reinhardt@amd.com# 46876Ssteve.reinhardt@amd.com# Redistribution and use in source and binary forms, with or without 56876Ssteve.reinhardt@amd.com# modification, are permitted provided that the following conditions are 66876Ssteve.reinhardt@amd.com# met: redistributions of source code must retain the above copyright 76876Ssteve.reinhardt@amd.com# notice, this list of conditions and the following disclaimer; 86876Ssteve.reinhardt@amd.com# redistributions in binary form must reproduce the above copyright 96876Ssteve.reinhardt@amd.com# notice, this list of conditions and the following disclaimer in the 106876Ssteve.reinhardt@amd.com# documentation and/or other materials provided with the distribution; 116876Ssteve.reinhardt@amd.com# neither the name of the copyright holders nor the names of its 126876Ssteve.reinhardt@amd.com# contributors may be used to endorse or promote products derived from 136876Ssteve.reinhardt@amd.com# this software without specific prior written permission. 146876Ssteve.reinhardt@amd.com# 156876Ssteve.reinhardt@amd.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 166876Ssteve.reinhardt@amd.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 176876Ssteve.reinhardt@amd.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 186876Ssteve.reinhardt@amd.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 196876Ssteve.reinhardt@amd.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 206876Ssteve.reinhardt@amd.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 216876Ssteve.reinhardt@amd.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 226876Ssteve.reinhardt@amd.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 236876Ssteve.reinhardt@amd.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 246876Ssteve.reinhardt@amd.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 256876Ssteve.reinhardt@amd.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 266876Ssteve.reinhardt@amd.com# 276876Ssteve.reinhardt@amd.com# Authors: Steve Reinhardt 286876Ssteve.reinhardt@amd.com# Brad Beckmann 296876Ssteve.reinhardt@amd.com 306876Ssteve.reinhardt@amd.comfrom m5.params import * 316876Ssteve.reinhardt@amd.comfrom m5.SimObject import SimObject 329465Snilay@cs.wisc.edufrom ClockedObject import ClockedObject 338257SBrad.Beckmann@amd.comfrom BasicLink import BasicLink 346879Ssteve.reinhardt@amd.com 356876Ssteve.reinhardt@amd.comclass Topology(SimObject): 366876Ssteve.reinhardt@amd.com type = 'Topology' 379338SAndreas.Sandberg@arm.com cxx_header = "mem/ruby/network/Topology.hh" 387540SBrad.Beckmann@amd.com description = Param.String("Not Specified", 397540SBrad.Beckmann@amd.com "the name of the imported topology module") 408257SBrad.Beckmann@amd.com ext_links = VectorParam.BasicExtLink("Links to external nodes") 418257SBrad.Beckmann@amd.com int_links = VectorParam.BasicIntLink("Links between internal nodes") 428257SBrad.Beckmann@amd.com routers = VectorParam.BasicRouter("Network routers") 436876Ssteve.reinhardt@amd.com print_config = Param.Bool(False, 446876Ssteve.reinhardt@amd.com "display topology config in the stats file") 456876Ssteve.reinhardt@amd.com 469465Snilay@cs.wisc.educlass RubyNetwork(ClockedObject): 476876Ssteve.reinhardt@amd.com type = 'RubyNetwork' 486876Ssteve.reinhardt@amd.com cxx_class = 'Network' 499338SAndreas.Sandberg@arm.com cxx_header = "mem/ruby/network/Network.hh" 506876Ssteve.reinhardt@amd.com abstract = True 516876Ssteve.reinhardt@amd.com number_of_virtual_networks = Param.Int(10, ""); 526876Ssteve.reinhardt@amd.com topology = Param.Topology(""); 536876Ssteve.reinhardt@amd.com control_msg_size = Param.Int(8, ""); 548436SBrad.Beckmann@amd.com ruby_system = Param.RubySystem(""); 55