Bridge.py (4486:aaeb03a8a6e1) Bridge.py (4965:ad0e792a5c78)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
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

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

35 side_b = Port('Side B port')
36 req_size_a = Param.Int(16, "The number of requests to buffer")
37 req_size_b = Param.Int(16, "The number of requests to buffer")
38 resp_size_a = Param.Int(16, "The number of requests to buffer")
39 resp_size_b = Param.Int(16, "The number of requests to buffer")
40 delay = Param.Latency('0ns', "The latency of this bridge")
41 nack_delay = Param.Latency('0ns', "The latency of this bridge")
42 write_ack = Param.Bool(False, "Should this bridge ack writes")
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
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

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

35 side_b = Port('Side B port')
36 req_size_a = Param.Int(16, "The number of requests to buffer")
37 req_size_b = Param.Int(16, "The number of requests to buffer")
38 resp_size_a = Param.Int(16, "The number of requests to buffer")
39 resp_size_b = Param.Int(16, "The number of requests to buffer")
40 delay = Param.Latency('0ns', "The latency of this bridge")
41 nack_delay = Param.Latency('0ns', "The latency of this bridge")
42 write_ack = Param.Bool(False, "Should this bridge ack writes")
43 fix_partial_write_a = Param.Bool(False, "Should this bridge fixup partial block writes")
44 fix_partial_write_b = Param.Bool(False, "Should this bridge fixup partial block writes")
43 filter_ranges_a = VectorParam.AddrRange([],
44 "What addresses shouldn't be passed through the side of the bridge")
45 filter_ranges_b = VectorParam.AddrRange([],
46 "What addresses shouldn't be passed through the side of the bridge")