Sequencer.py (10518:30e3715c9405) Sequencer.py (10519:7a3ad4b09ce4)
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

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

68 "max requests (incl. prefetches) outstanding")
69 deadlock_threshold = Param.Cycles(500000,
70 "max outstanding cycles for a request before deadlock/livelock declared")
71 using_network_tester = Param.Bool(False, "")
72
73class DMASequencer(MemObject):
74 type = 'DMASequencer'
75 cxx_header = "mem/ruby/system/DMASequencer.hh"
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

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

68 "max requests (incl. prefetches) outstanding")
69 deadlock_threshold = Param.Cycles(500000,
70 "max outstanding cycles for a request before deadlock/livelock declared")
71 using_network_tester = Param.Bool(False, "")
72
73class DMASequencer(MemObject):
74 type = 'DMASequencer'
75 cxx_header = "mem/ruby/system/DMASequencer.hh"
76 version = Param.Int(0, "")
77
76
77 version = Param.Int(0, "")
78 slave = SlavePort("Device slave port")
78 slave = SlavePort("Device slave port")
79
80 using_ruby_tester = Param.Bool(False, "")
79 using_ruby_tester = Param.Bool(False, "")
81 access_phys_mem = Param.Bool(True,
82 "should the dma atomically update phys_mem")
83 ruby_system = Param.RubySystem(Parent.any, "")
84 system = Param.System(Parent.any, "system object")
80 ruby_system = Param.RubySystem(Parent.any, "")
81 system = Param.System(Parent.any, "system object")