summaryrefslogtreecommitdiffstats
path: root/serdes/serdes.v
diff options
context:
space:
mode:
authormatt <matt@221aa14e-8319-0410-a670-987f0aec2ac5>2008-10-08 05:53:22 +0000
committermatt <matt@221aa14e-8319-0410-a670-987f0aec2ac5>2008-10-08 05:53:22 +0000
commit898d5986f896627d0dd8973d89459a965c7f6806 (patch)
treefda68ac0bf35cc075af68c507435a32d704eb4b7 /serdes/serdes.v
parent8614511f0497a195386a6b7e03d25d040b7ea8ff (diff)
downloaduhd-898d5986f896627d0dd8973d89459a965c7f6806.tar.gz
uhd-898d5986f896627d0dd8973d89459a965c7f6806.tar.bz2
uhd-898d5986f896627d0dd8973d89459a965c7f6806.zip
added the basic wb<-->extram interface and a serdes interrupt to tell link status
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9746 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'serdes/serdes.v')
-rw-r--r--serdes/serdes.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/serdes/serdes.v b/serdes/serdes.v
index 81e9f2b43..8429b8fd9 100644
--- a/serdes/serdes.v
+++ b/serdes/serdes.v
@@ -16,6 +16,8 @@ module serdes
output [15:0] tx_occupied, output tx_full, output tx_empty,
output [15:0] rx_occupied, output rx_full, output rx_empty,
+
+ output serdes_link_up,
output [31:0] debug0,
output [31:0] debug1);
@@ -40,7 +42,7 @@ module serdes
.wr_ready_i(wr_ready_i),.wr_full_i(wr_full_i),
.fifo_space(fifo_space), .xon_rcvd(xon_rcvd), .xoff_rcvd(xoff_rcvd),
.fifo_occupied(rx_occupied),.fifo_full(rx_full),.fifo_empty(rx_empty),
- .debug(debug_rx) );
+ .serdes_link_up(serdes_link_up), .debug(debug_rx) );
serdes_fc_tx serdes_fc_tx
(.clk(clk),.rst(rst),