113373Sgabeblack@google.com# Copyright 2018 Google, Inc.
213373Sgabeblack@google.com#
313373Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
413373Sgabeblack@google.com# modification, are permitted provided that the following conditions are
513373Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
613373Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
713373Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright
813373Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the
913373Sgabeblack@google.com# documentation and/or other materials provided with the distribution;
1013373Sgabeblack@google.com# neither the name of the copyright holders nor the names of its
1113373Sgabeblack@google.com# contributors may be used to endorse or promote products derived from
1213373Sgabeblack@google.com# this software without specific prior written permission.
1313373Sgabeblack@google.com#
1413373Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1513373Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1613373Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1713373Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1813373Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1913373Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2013373Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2113373Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2213373Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2313373Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2413373Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2513373Sgabeblack@google.com#
2613373Sgabeblack@google.com# Authors: Gabe Black
2713373Sgabeblack@google.com
2813373Sgabeblack@google.comfrom m5.params import *
2913373Sgabeblack@google.comfrom m5.SimObject import SimObject
3013373Sgabeblack@google.com
3113373Sgabeblack@google.comfrom SystemC import SystemC_ScModule
3213373Sgabeblack@google.com
3313373Sgabeblack@google.com# This class is a subclass of sc_module, and all the special magic which makes
3413373Sgabeblack@google.com# that work is handled in the base classes.
3513373Sgabeblack@google.comclass SystemC_Printer(SystemC_ScModule):
3613373Sgabeblack@google.com    type = 'SystemC_Printer'
3713373Sgabeblack@google.com    cxx_class = 'Printer'
3813373Sgabeblack@google.com    cxx_header = 'systemc_simple_object/printer.hh'
3913373Sgabeblack@google.com    # This parameter will be available in the SystemC_PrinterParams::create
4013373Sgabeblack@google.com    # function and can be passed to the c++ object's constructor, used to set
4113373Sgabeblack@google.com    # one of its member variables, as a parameter to one of its methods, etc.
4213373Sgabeblack@google.com    prefix = Param.String('', 'Prefix for each word')
4313373Sgabeblack@google.com
4413373Sgabeblack@google.com# This is a standard gem5 SimObject class with no special accomodation for the
4513373Sgabeblack@google.com# fact that one of its parameters is a systemc object.
4613373Sgabeblack@google.comclass Gem5_Feeder(SimObject):
4713373Sgabeblack@google.com    type = 'Gem5_Feeder'
4813373Sgabeblack@google.com    cxx_class = 'Feeder'
4913373Sgabeblack@google.com    cxx_header = 'systemc_simple_object/feeder.hh'
5013373Sgabeblack@google.com    # This parameter will be a pointer to an instance of the class above.
5113373Sgabeblack@google.com    printer = Param.SystemC_Printer('Printer for our words.')
5213373Sgabeblack@google.com    delay = Param.Latency('1ns', 'Time to wait between each word.')
5313373Sgabeblack@google.com    strings = VectorParam.String([], 'Words to print.')
54