summaryrefslogtreecommitdiffstats
path: root/usrp2/top/u2plus
diff options
context:
space:
mode:
authorIan Buckley <ian.buckley@gmail.com>2010-11-10 09:45:12 -0800
committerMatt Ettus <matt@ettus.com>2010-11-11 12:13:52 -0800
commit4e5f4e137e70728116536ac19f1bf946fa890b7d (patch)
tree5edf0593f85b498dbbd6e84c2f9c8e219d405cec /usrp2/top/u2plus
parentddb380141841b56fa0720915db7f91f5a28f936c (diff)
downloaduhd-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/top/u2plus')
-rw-r--r--usrp2/top/u2plus/u2plus.v3
-rw-r--r--usrp2/top/u2plus/u2plus_core.v4
2 files changed, 5 insertions, 2 deletions
diff --git a/usrp2/top/u2plus/u2plus.v b/usrp2/top/u2plus/u2plus.v
index 5396ae6cd..d4a681731 100644
--- a/usrp2/top/u2plus/u2plus.v
+++ b/usrp2/top/u2plus/u2plus.v
@@ -486,7 +486,8 @@ module u2plus
.spiflash_mosi (flash_mosi)
);
- assign RAM_ZZ = 1;
+ // Drive low so that RAM does not sleep.
+ assign RAM_ZZ = 0;
// Byte Writes are qualified by the global write enable
// Always do 36bit operations to extram.
assign RAM_BWn = 4'b0000;
diff --git a/usrp2/top/u2plus/u2plus_core.v b/usrp2/top/u2plus/u2plus_core.v
index 9b177390a..081ffe4c6 100644
--- a/usrp2/top/u2plus/u2plus_core.v
+++ b/usrp2/top/u2plus/u2plus_core.v
@@ -164,7 +164,9 @@ module u2plus_core
wire [31:0] atr_lines;
wire [31:0] debug_rx, debug_mac, debug_mac0, debug_mac1, debug_tx_dsp, debug_txc,
- debug_serdes0, debug_serdes1, debug_serdes2, debug_rx_dsp, debug_udp;
+ debug_serdes0, debug_serdes1, debug_serdes2, debug_rx_dsp, debug_udp,
+ debug_extfifo;
+
wire [15:0] ser_rx_occ, ser_tx_occ, dsp_rx_occ, dsp_tx_occ, eth_rx_occ, eth_tx_occ, eth_rx_occ2;
wire ser_rx_full, ser_tx_full, dsp_rx_full, dsp_tx_full, eth_rx_full, eth_tx_full, eth_rx_full2;