summaryrefslogtreecommitdiffstats
path: root/usrp2/top/u1e/u1e.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-02-18 18:05:42 -0800
committerMatt Ettus <matt@ettus.com>2010-02-18 18:05:42 -0800
commitf3c61700fbeba30f420ef939a1cabdc42bd15fb7 (patch)
treee6ad2cb62bc9c821b84c9e03ee54d7f54b2843a9 /usrp2/top/u1e/u1e.v
parent7c31f8d25d563b9f2795914f8ea0f3e49b214c56 (diff)
downloaduhd-f3c61700fbeba30f420ef939a1cabdc42bd15fb7.tar.gz
uhd-f3c61700fbeba30f420ef939a1cabdc42bd15fb7.tar.bz2
uhd-f3c61700fbeba30f420ef939a1cabdc42bd15fb7.zip
Added I2C, UART, debug pins, misc wishbone stuff
Diffstat (limited to 'usrp2/top/u1e/u1e.v')
-rw-r--r--usrp2/top/u1e/u1e.v12
1 files changed, 10 insertions, 2 deletions
diff --git a/usrp2/top/u1e/u1e.v b/usrp2/top/u1e/u1e.v
index 8832d6e11..4ca9b5580 100644
--- a/usrp2/top/u1e/u1e.v
+++ b/usrp2/top/u1e/u1e.v
@@ -4,10 +4,14 @@
module u1e
(input CLK_FPGA_P, input CLK_FPGA_N, // Diff
output [2:0] debug_led, output [31:0] debug, output [1:0] debug_clk,
+ input [2:0] debug_pb, input [7:0] dip_sw, output FPGA_TXD, input FPGA_RXD,
// GPMC
input EM_CLK, inout [15:0] EM_D, input [10:1] EM_A, input [1:0] EM_NBE,
- input EM_WAIT0, input EM_NCS4, input EM_NCS6, input EM_NWE, input EM_NOE
+ input EM_WAIT0, input EM_NCS4, input EM_NCS6, input EM_NWE, input EM_NOE,
+
+ inout db_sda, inout db_scl, // I2C
+ output overo_gpio144, output overo_gpio145, output overo_gpio146, output overo_gpio147 // Fifo controls
);
// FPGA-specific pins connections
@@ -17,8 +21,12 @@ module u1e
clk_fpga_pin (.O(clk_fpga),.I(CLK_FPGA_P),.IB(CLK_FPGA_N));
u1e_core u1e_core(.clk_fpga(clk_fpga), .debug_led(debug_led), .debug(debug), .debug_clk(debug_clk),
+ .debug_pb(debug_pb), .dip_sw(dip_sw), .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD),
.EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE),
.EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS6(EM_NCS6),
- .EM_NWE(EM_NWE), .EM_NOE(EM_NOE) );
+ .EM_NWE(EM_NWE), .EM_NOE(EM_NOE),
+ .db_sda(db_sda), .db_scl(db_scl),
+ .tx_have_space(overo_gpio144), .tx_underrun(overo_gpio145),
+ .rx_have_data(overo_gpio_146), .rx_overrun(overo_gpio147) );
endmodule // u1e