Controller.py (7019:a49fd5febdce) Controller.py (8257:7226aebb77b4)
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

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

30from m5.params import *
31from m5.SimObject import SimObject
32
33class RubyController(SimObject):
34 type = 'RubyController'
35 cxx_class = 'AbstractController'
36 abstract = True
37 version = Param.Int("")
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

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

30from m5.params import *
31from m5.SimObject import SimObject
32
33class RubyController(SimObject):
34 type = 'RubyController'
35 cxx_class = 'AbstractController'
36 abstract = True
37 version = Param.Int("")
38 cntrl_id = Param.Int("")
38 transitions_per_cycle = \
39 Param.Int(32, "no. of SLICC state machine transitions per cycle")
40 buffer_size = Param.Int(0, "max buffer size 0 means infinite")
41 recycle_latency = Param.Int(10, "")
42 number_of_TBEs = Param.Int(256, "")
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, "")