diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:39 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:39 -0500 |
commit | 490dc30d9620891c54ddcd57c56adf092a71d79b (patch) | |
tree | 19d948e6fae6f9640569f12910be1050aff51339 /src/dev/Ethernet.py | |
parent | 4c06be60fce383be08aaaf21fc4059dcc0f8a23a (diff) | |
download | gem5-490dc30d9620891c54ddcd57c56adf092a71d79b.tar.xz |
dev: Make the ethernet devices use a non-zero clock
This patch changes the NS gige controller to have a non-clock, and
sets the default to 500 MHz. The blocks that could prevoiusly be
by-passed with a zero clock are now always present, and the user is
left with the option of setting a very high clock frequency to achieve
a similar performance.
Diffstat (limited to 'src/dev/Ethernet.py')
-rw-r--r-- | src/dev/Ethernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/Ethernet.py b/src/dev/Ethernet.py index a8b5555d9..191aad3a1 100644 --- a/src/dev/Ethernet.py +++ b/src/dev/Ethernet.py @@ -138,7 +138,7 @@ class EtherDevBase(EtherDevice): "Ethernet Hardware Address") # Override the default clock - clock = '0ns' + clock = '500MHz' dma_read_delay = Param.Latency('0us', "fixed delay for dma reads") dma_read_factor = Param.Latency('0us', "multiplier for dma reads") |