Controller.py (8436:5648986156db) Controller.py (9338:97b4a2be1e5b)
1# Copyright (c) 2009 Advanced Micro Devices, Inc.
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

28# Brad Beckmann
29
30from m5.params import *
31from m5.SimObject import SimObject
32
33class RubyController(SimObject):
34 type = 'RubyController'
35 cxx_class = 'AbstractController'
1# Copyright (c) 2009 Advanced Micro Devices, Inc.
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

28# Brad Beckmann
29
30from m5.params import *
31from m5.SimObject import SimObject
32
33class RubyController(SimObject):
34 type = 'RubyController'
35 cxx_class = 'AbstractController'
36 cxx_header = "mem/ruby/slicc_interface/AbstractController.hh"
36 abstract = True
37 version = Param.Int("")
38 cntrl_id = Param.Int("")
39 transitions_per_cycle = \
40 Param.Int(32, "no. of SLICC state machine transitions per cycle")
41 buffer_size = Param.Int(0, "max buffer size 0 means infinite")
42 recycle_latency = Param.Int(10, "")
43 number_of_TBEs = Param.Int(256, "")
44 ruby_system = Param.RubySystem("");
37 abstract = True
38 version = Param.Int("")
39 cntrl_id = Param.Int("")
40 transitions_per_cycle = \
41 Param.Int(32, "no. of SLICC state machine transitions per cycle")
42 buffer_size = Param.Int(0, "max buffer size 0 means infinite")
43 recycle_latency = Param.Int(10, "")
44 number_of_TBEs = Param.Int(256, "")
45 ruby_system = Param.RubySystem("");