diff options
author | Ian Buckley <ian.buckley@gmail.com> | 2010-11-10 09:45:12 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-11 12:13:52 -0800 |
commit | 4e5f4e137e70728116536ac19f1bf946fa890b7d (patch) | |
tree | 5edf0593f85b498dbbd6e84c2f9c8e219d405cec /usrp2/extramfifo/nobl_if.v | |
parent | ddb380141841b56fa0720915db7f91f5a28f936c (diff) | |
download | uhd-4e5f4e137e70728116536ac19f1bf946fa890b7d.tar.gz uhd-4e5f4e137e70728116536ac19f1bf946fa890b7d.tar.bz2 uhd-4e5f4e137e70728116536ac19f1bf946fa890b7d.zip |
1) u2p has added a new signal from the SRAM to the pinout, RAM_ZZ
which allows the SRAM to be placed in a sleep mode. This pin was
erroniously pulled high at the top level rendering the SRAM unusable.
2) Added declaration for extramfifo debug bus which had got deleted
at some point in the past
3) Created a debug bundle of signals from extsramfifo to help diagnose
problem 1)
4) u2p Rev1 PCB ommits control of any of the SRAM chip selects. Made a
code change so that control logic does not rely on the presence of this
pin and ensuring that the SRAM is always placed in READ mode in any idle cycles.
Diffstat (limited to 'usrp2/extramfifo/nobl_if.v')
-rw-r--r-- | usrp2/extramfifo/nobl_if.v | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usrp2/extramfifo/nobl_if.v b/usrp2/extramfifo/nobl_if.v index 391a841e8..7ff7eaa03 100644 --- a/usrp2/extramfifo/nobl_if.v +++ b/usrp2/extramfifo/nobl_if.v @@ -50,18 +50,21 @@ module nobl_if address_pipe1 <= 0; write_pipe1 <= 0; data_out_pipe1 <= 0; + RAM_WEn <= 1; + RAM_CE1n <= 1; + end else begin enable_pipe1 <= enable; - RAM_CE1n <= ~enable; // Creates IOB flob - + RAM_CE1n <= ~enable; // Creates IOB flop + RAM_WEn <= ~write; // Creates IOB flop if (enable) begin address_pipe1 <= address; write_pipe1 <= write; - RAM_WEn <= ~write; // Creates IOB flob +// RAM_WEn <= ~write; // Creates IOB flop if (write) |