root / usrp2 / top / USRP2 / u2_core.v @ 0f439aa9
History | View | Annotate | Download (30.4 KB)
| 1 |
// |
|---|---|
| 2 |
// Copyright 2011 Ettus Research LLC |
| 3 |
// |
| 4 |
// This program is free software: you can redistribute it and/or modify |
| 5 |
// it under the terms of the GNU General Public License as published by |
| 6 |
// the Free Software Foundation, either version 3 of the License, or |
| 7 |
// (at your option) any later version. |
| 8 |
// |
| 9 |
// This program is distributed in the hope that it will be useful, |
| 10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 |
// GNU General Public License for more details. |
| 13 |
// |
| 14 |
// You should have received a copy of the GNU General Public License |
| 15 |
// along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 |
// |
| 17 |
|
| 18 |
// //////////////////////////////////////////////////////////////////////////////// |
| 19 |
// Module Name: u2_core |
| 20 |
// //////////////////////////////////////////////////////////////////////////////// |
| 21 |
|
| 22 |
module u2_core |
| 23 |
(// Clocks |
| 24 |
input dsp_clk, |
| 25 |
input wb_clk, |
| 26 |
output clock_ready, |
| 27 |
input clk_to_mac, |
| 28 |
input pps_in, |
| 29 |
|
| 30 |
// Misc, debug |
| 31 |
output [7:0] leds, |
| 32 |
output [31:0] debug, |
| 33 |
output [1:0] debug_clk, |
| 34 |
|
| 35 |
// Expansion |
| 36 |
input exp_time_in, |
| 37 |
output exp_time_out, |
| 38 |
|
| 39 |
// GMII |
| 40 |
// GMII-CTRL |
| 41 |
input GMII_COL, |
| 42 |
input GMII_CRS, |
| 43 |
|
| 44 |
// GMII-TX |
| 45 |
output [7:0] GMII_TXD, |
| 46 |
output GMII_TX_EN, |
| 47 |
output GMII_TX_ER, |
| 48 |
output GMII_GTX_CLK, |
| 49 |
input GMII_TX_CLK, // 100mbps clk |
| 50 |
|
| 51 |
// GMII-RX |
| 52 |
input [7:0] GMII_RXD, |
| 53 |
input GMII_RX_CLK, |
| 54 |
input GMII_RX_DV, |
| 55 |
input GMII_RX_ER, |
| 56 |
|
| 57 |
// GMII-Management |
| 58 |
inout MDIO, |
| 59 |
output MDC, |
| 60 |
input PHY_INTn, // open drain |
| 61 |
output PHY_RESETn, |
| 62 |
|
| 63 |
// SERDES |
| 64 |
output ser_enable, |
| 65 |
output ser_prbsen, |
| 66 |
output ser_loopen, |
| 67 |
output ser_rx_en, |
| 68 |
|
| 69 |
output ser_tx_clk, |
| 70 |
output [15:0] ser_t, |
| 71 |
output ser_tklsb, |
| 72 |
output ser_tkmsb, |
| 73 |
|
| 74 |
input ser_rx_clk, |
| 75 |
input [15:0] ser_r, |
| 76 |
input ser_rklsb, |
| 77 |
input ser_rkmsb, |
| 78 |
|
| 79 |
// CPLD interface |
| 80 |
output cpld_start, |
| 81 |
output cpld_mode, |
| 82 |
output cpld_done, |
| 83 |
input cpld_din, |
| 84 |
input cpld_clk, |
| 85 |
input cpld_detached, |
| 86 |
output cpld_misc, |
| 87 |
input cpld_init_b, |
| 88 |
input por, |
| 89 |
output config_success, |
| 90 |
|
| 91 |
// ADC |
| 92 |
input [13:0] adc_a, |
| 93 |
input adc_ovf_a, |
| 94 |
output adc_on_a, |
| 95 |
output adc_oe_a, |
| 96 |
|
| 97 |
input [13:0] adc_b, |
| 98 |
input adc_ovf_b, |
| 99 |
output adc_on_b, |
| 100 |
output adc_oe_b, |
| 101 |
|
| 102 |
// DAC |
| 103 |
output [15:0] dac_a, |
| 104 |
output [15:0] dac_b, |
| 105 |
|
| 106 |
// I2C |
| 107 |
input scl_pad_i, |
| 108 |
output scl_pad_o, |
| 109 |
output scl_pad_oen_o, |
| 110 |
input sda_pad_i, |
| 111 |
output sda_pad_o, |
| 112 |
output sda_pad_oen_o, |
| 113 |
|
| 114 |
// Clock Gen Control |
| 115 |
output [1:0] clk_en, |
| 116 |
output [1:0] clk_sel, |
| 117 |
input clk_func, // FIXME is an input to control the 9510 |
| 118 |
input clk_status, |
| 119 |
|
| 120 |
// Generic SPI |
| 121 |
output sclk, |
| 122 |
output mosi, |
| 123 |
input miso, |
| 124 |
output sen_clk, |
| 125 |
output sen_dac, |
| 126 |
output sen_tx_db, |
| 127 |
output sen_tx_adc, |
| 128 |
output sen_tx_dac, |
| 129 |
output sen_rx_db, |
| 130 |
output sen_rx_adc, |
| 131 |
output sen_rx_dac, |
| 132 |
|
| 133 |
// GPIO to DBoards |
| 134 |
inout [15:0] io_tx, |
| 135 |
inout [15:0] io_rx, |
| 136 |
|
| 137 |
// External RAM |
| 138 |
input [17:0] RAM_D_pi, |
| 139 |
output [17:0] RAM_D_po, |
| 140 |
output RAM_D_poe, |
| 141 |
output [18:0] RAM_A, |
| 142 |
output RAM_CE1n, |
| 143 |
output RAM_CENn, |
| 144 |
output RAM_WEn, |
| 145 |
output RAM_OEn, |
| 146 |
output RAM_LDn, |
| 147 |
|
| 148 |
// Debug stuff |
| 149 |
output uart_tx_o, |
| 150 |
input uart_rx_i, |
| 151 |
output uart_baud_o, |
| 152 |
input sim_mode, |
| 153 |
input [3:0] clock_divider |
| 154 |
); |
| 155 |
|
| 156 |
localparam SR_MISC = 0; // 7 regs |
| 157 |
localparam SR_SIMTIMER = 8; // 2 |
| 158 |
localparam SR_TIME64 = 10; // 6 |
| 159 |
localparam SR_BUF_POOL = 16; // 4 |
| 160 |
|
| 161 |
localparam SR_RX_FRONT = 24; // 5 |
| 162 |
localparam SR_RX_CTRL0 = 32; // 9 |
| 163 |
localparam SR_RX_DSP0 = 48; // 7 |
| 164 |
localparam SR_RX_CTRL1 = 80; // 9 |
| 165 |
localparam SR_RX_DSP1 = 96; // 7 |
| 166 |
|
| 167 |
localparam SR_TX_FRONT = 128; // ? |
| 168 |
localparam SR_TX_CTRL = 144; // 6 |
| 169 |
localparam SR_TX_DSP = 160; // 5 |
| 170 |
|
| 171 |
localparam SR_UDP_SM = 192; // 64 |
| 172 |
|
| 173 |
// FIFO Sizes, 9 = 512 lines, 10 = 1024, 11 = 2048 |
| 174 |
// all (most?) are 36 bits wide, so 9 is 1 BRAM, 10 is 2, 11 is 4 BRAMs |
| 175 |
// localparam DSP_TX_FIFOSIZE = 9; unused -- DSPTX uses extram fifo |
| 176 |
localparam DSP_RX_FIFOSIZE = 10; |
| 177 |
localparam ETH_TX_FIFOSIZE = 9; |
| 178 |
localparam ETH_RX_FIFOSIZE = 11; |
| 179 |
localparam SERDES_TX_FIFOSIZE = 9; |
| 180 |
localparam SERDES_RX_FIFOSIZE = 9; // RX currently doesn't use a fifo? |
| 181 |
|
| 182 |
wire [7:0] set_addr, set_addr_dsp; |
| 183 |
wire [31:0] set_data, set_data_dsp; |
| 184 |
wire set_stb, set_stb_dsp; |
| 185 |
|
| 186 |
wire ram_loader_done, ram_loader_rst; |
| 187 |
wire wb_rst; |
| 188 |
wire dsp_rst = wb_rst; |
| 189 |
|
| 190 |
wire [31:0] status; |
| 191 |
wire bus_error, spi_int, i2c_int, pps_int, onetime_int, periodic_int, buffer_int; |
| 192 |
wire proc_int, overrun0, overrun1, underrun; |
| 193 |
wire uart_tx_int, uart_rx_int; |
| 194 |
|
| 195 |
wire [31:0] debug_gpio_0, debug_gpio_1; |
| 196 |
|
| 197 |
wire [31:0] debug_rx, debug_mac, debug_mac0, debug_mac1, debug_tx_dsp, debug_txc, |
| 198 |
debug_serdes0, debug_serdes1, debug_serdes2, debug_rx_dsp, debug_udp, debug_extfifo, debug_extfifo2; |
| 199 |
|
| 200 |
wire [15:0] ser_rx_occ, ser_tx_occ, dsp_rx_occ, dsp_tx_occ, eth_rx_occ, eth_tx_occ, eth_rx_occ2; |
| 201 |
wire ser_rx_full, ser_tx_full, dsp_rx_full, dsp_tx_full, eth_rx_full, eth_tx_full, eth_rx_full2; |
| 202 |
wire ser_rx_empty, ser_tx_empty, dsp_rx_empty, dsp_tx_empty, eth_rx_empty, eth_tx_empty, eth_rx_empty2; |
| 203 |
|
| 204 |
wire serdes_link_up, good_sync; |
| 205 |
wire epoch; |
| 206 |
wire [31:0] irq; |
| 207 |
wire [63:0] vita_time, vita_time_pps; |
| 208 |
|
| 209 |
wire run_rx0, run_rx1, run_tx; |
| 210 |
reg run_rx0_d1, run_rx1_d1; |
| 211 |
|
| 212 |
// /////////////////////////////////////////////////////////////////////////////////////////////// |
| 213 |
// Wishbone Single Master INTERCON |
| 214 |
localparam dw = 32; // Data bus width |
| 215 |
localparam aw = 16; // Address bus width, for byte addressibility, 16 = 64K byte memory space |
| 216 |
localparam sw = 4; // Select width -- 32-bit data bus with 8-bit granularity. |
| 217 |
|
| 218 |
wire [dw-1:0] m0_dat_o, m0_dat_i; |
| 219 |
wire [dw-1:0] s0_dat_o, s1_dat_o, s0_dat_i, s1_dat_i, s2_dat_o, s3_dat_o, s2_dat_i, s3_dat_i, |
| 220 |
s4_dat_o, s5_dat_o, s4_dat_i, s5_dat_i, s6_dat_o, s7_dat_o, s6_dat_i, s7_dat_i, |
| 221 |
s8_dat_o, s9_dat_o, s8_dat_i, s9_dat_i, sa_dat_o, sa_dat_i, sb_dat_i, sb_dat_o, |
| 222 |
sc_dat_i, sc_dat_o, sd_dat_i, sd_dat_o, se_dat_i, se_dat_o, sf_dat_i, sf_dat_o; |
| 223 |
wire [aw-1:0] m0_adr,s0_adr,s1_adr,s2_adr,s3_adr,s4_adr,s5_adr,s6_adr,s7_adr,s8_adr,s9_adr,sa_adr,sb_adr,sc_adr, sd_adr, se_adr, sf_adr; |
| 224 |
wire [sw-1:0] m0_sel,s0_sel,s1_sel,s2_sel,s3_sel,s4_sel,s5_sel,s6_sel,s7_sel,s8_sel,s9_sel,sa_sel,sb_sel,sc_sel, sd_sel, se_sel, sf_sel; |
| 225 |
wire m0_ack,s0_ack,s1_ack,s2_ack,s3_ack,s4_ack,s5_ack,s6_ack,s7_ack,s8_ack,s9_ack,sa_ack,sb_ack,sc_ack, sd_ack, se_ack, sf_ack; |
| 226 |
wire m0_stb,s0_stb,s1_stb,s2_stb,s3_stb,s4_stb,s5_stb,s6_stb,s7_stb,s8_stb,s9_stb,sa_stb,sb_stb,sc_stb, sd_stb, se_stb, sf_stb; |
| 227 |
wire m0_cyc,s0_cyc,s1_cyc,s2_cyc,s3_cyc,s4_cyc,s5_cyc,s6_cyc,s7_cyc,s8_cyc,s9_cyc,sa_cyc,sb_cyc,sc_cyc, sd_cyc, se_cyc, sf_cyc; |
| 228 |
wire m0_err, m0_rty; |
| 229 |
wire m0_we,s0_we,s1_we,s2_we,s3_we,s4_we,s5_we,s6_we,s7_we,s8_we,s9_we,sa_we,sb_we,sc_we,sd_we,se_we,sf_we; |
| 230 |
|
| 231 |
wb_1master #(.decode_w(8), |
| 232 |
.s0_addr(8'b0000_0000),.s0_mask(8'b1100_0000), // Main RAM (0-16K) |
| 233 |
.s1_addr(8'b0100_0000),.s1_mask(8'b1111_0000), // Packet Router (16-20K) |
| 234 |
.s2_addr(8'b0101_0000),.s2_mask(8'b1111_1100), // SPI |
| 235 |
.s3_addr(8'b0101_0100),.s3_mask(8'b1111_1100), // I2C |
| 236 |
.s4_addr(8'b0101_1000),.s4_mask(8'b1111_1100), // GPIO |
| 237 |
.s5_addr(8'b0101_1100),.s5_mask(8'b1111_1100), // Readback |
| 238 |
.s6_addr(8'b0110_0000),.s6_mask(8'b1111_0000), // Ethernet MAC |
| 239 |
.s7_addr(8'b0111_0000),.s7_mask(8'b1111_0000), // 20K-24K, Settings Bus (only uses 1K) |
| 240 |
.s8_addr(8'b1000_0000),.s8_mask(8'b1111_1100), // PIC |
| 241 |
.s9_addr(8'b1000_0100),.s9_mask(8'b1111_1100), // Unused |
| 242 |
.sa_addr(8'b1000_1000),.sa_mask(8'b1111_1100), // UART |
| 243 |
.sb_addr(8'b1000_1100),.sb_mask(8'b1111_1100), // ATR |
| 244 |
.sc_addr(8'b1001_0000),.sc_mask(8'b1111_0000), // Unused |
| 245 |
.sd_addr(8'b1010_0000),.sd_mask(8'b1111_0000), // SD Card access |
| 246 |
.se_addr(8'b1011_0000),.se_mask(8'b1111_0000), // Unused |
| 247 |
.sf_addr(8'b1100_0000),.sf_mask(8'b1100_0000), // Unused |
| 248 |
.dw(dw),.aw(aw),.sw(sw)) wb_1master |
| 249 |
(.clk_i(wb_clk),.rst_i(wb_rst), |
| 250 |
.m0_dat_o(m0_dat_o),.m0_ack_o(m0_ack),.m0_err_o(m0_err),.m0_rty_o(m0_rty),.m0_dat_i(m0_dat_i), |
| 251 |
.m0_adr_i(m0_adr),.m0_sel_i(m0_sel),.m0_we_i(m0_we),.m0_cyc_i(m0_cyc),.m0_stb_i(m0_stb), |
| 252 |
.s0_dat_o(s0_dat_o),.s0_adr_o(s0_adr),.s0_sel_o(s0_sel),.s0_we_o (s0_we),.s0_cyc_o(s0_cyc),.s0_stb_o(s0_stb), |
| 253 |
.s0_dat_i(s0_dat_i),.s0_ack_i(s0_ack),.s0_err_i(0),.s0_rty_i(0), |
| 254 |
.s1_dat_o(s1_dat_o),.s1_adr_o(s1_adr),.s1_sel_o(s1_sel),.s1_we_o (s1_we),.s1_cyc_o(s1_cyc),.s1_stb_o(s1_stb), |
| 255 |
.s1_dat_i(s1_dat_i),.s1_ack_i(s1_ack),.s1_err_i(0),.s1_rty_i(0), |
| 256 |
.s2_dat_o(s2_dat_o),.s2_adr_o(s2_adr),.s2_sel_o(s2_sel),.s2_we_o (s2_we),.s2_cyc_o(s2_cyc),.s2_stb_o(s2_stb), |
| 257 |
.s2_dat_i(s2_dat_i),.s2_ack_i(s2_ack),.s2_err_i(0),.s2_rty_i(0), |
| 258 |
.s3_dat_o(s3_dat_o),.s3_adr_o(s3_adr),.s3_sel_o(s3_sel),.s3_we_o (s3_we),.s3_cyc_o(s3_cyc),.s3_stb_o(s3_stb), |
| 259 |
.s3_dat_i(s3_dat_i),.s3_ack_i(s3_ack),.s3_err_i(0),.s3_rty_i(0), |
| 260 |
.s4_dat_o(s4_dat_o),.s4_adr_o(s4_adr),.s4_sel_o(s4_sel),.s4_we_o (s4_we),.s4_cyc_o(s4_cyc),.s4_stb_o(s4_stb), |
| 261 |
.s4_dat_i(s4_dat_i),.s4_ack_i(s4_ack),.s4_err_i(0),.s4_rty_i(0), |
| 262 |
.s5_dat_o(s5_dat_o),.s5_adr_o(s5_adr),.s5_sel_o(s5_sel),.s5_we_o (s5_we),.s5_cyc_o(s5_cyc),.s5_stb_o(s5_stb), |
| 263 |
.s5_dat_i(s5_dat_i),.s5_ack_i(s5_ack),.s5_err_i(0),.s5_rty_i(0), |
| 264 |
.s6_dat_o(s6_dat_o),.s6_adr_o(s6_adr),.s6_sel_o(s6_sel),.s6_we_o (s6_we),.s6_cyc_o(s6_cyc),.s6_stb_o(s6_stb), |
| 265 |
.s6_dat_i(s6_dat_i),.s6_ack_i(s6_ack),.s6_err_i(0),.s6_rty_i(0), |
| 266 |
.s7_dat_o(s7_dat_o),.s7_adr_o(s7_adr),.s7_sel_o(s7_sel),.s7_we_o (s7_we),.s7_cyc_o(s7_cyc),.s7_stb_o(s7_stb), |
| 267 |
.s7_dat_i(s7_dat_i),.s7_ack_i(s7_ack),.s7_err_i(0),.s7_rty_i(0), |
| 268 |
.s8_dat_o(s8_dat_o),.s8_adr_o(s8_adr),.s8_sel_o(s8_sel),.s8_we_o (s8_we),.s8_cyc_o(s8_cyc),.s8_stb_o(s8_stb), |
| 269 |
.s8_dat_i(s8_dat_i),.s8_ack_i(s8_ack),.s8_err_i(0),.s8_rty_i(0), |
| 270 |
.s9_dat_o(s9_dat_o),.s9_adr_o(s9_adr),.s9_sel_o(s9_sel),.s9_we_o (s9_we),.s9_cyc_o(s9_cyc),.s9_stb_o(s9_stb), |
| 271 |
.s9_dat_i(s9_dat_i),.s9_ack_i(s9_ack),.s9_err_i(0),.s9_rty_i(0), |
| 272 |
.sa_dat_o(sa_dat_o),.sa_adr_o(sa_adr),.sa_sel_o(sa_sel),.sa_we_o(sa_we),.sa_cyc_o(sa_cyc),.sa_stb_o(sa_stb), |
| 273 |
.sa_dat_i(sa_dat_i),.sa_ack_i(sa_ack),.sa_err_i(0),.sa_rty_i(0), |
| 274 |
.sb_dat_o(sb_dat_o),.sb_adr_o(sb_adr),.sb_sel_o(sb_sel),.sb_we_o(sb_we),.sb_cyc_o(sb_cyc),.sb_stb_o(sb_stb), |
| 275 |
.sb_dat_i(sb_dat_i),.sb_ack_i(sb_ack),.sb_err_i(0),.sb_rty_i(0), |
| 276 |
.sc_dat_o(sc_dat_o),.sc_adr_o(sc_adr),.sc_sel_o(sc_sel),.sc_we_o(sc_we),.sc_cyc_o(sc_cyc),.sc_stb_o(sc_stb), |
| 277 |
.sc_dat_i(sc_dat_i),.sc_ack_i(sc_ack),.sc_err_i(0),.sc_rty_i(0), |
| 278 |
.sd_dat_o(sd_dat_o),.sd_adr_o(sd_adr),.sd_sel_o(sd_sel),.sd_we_o(sd_we),.sd_cyc_o(sd_cyc),.sd_stb_o(sd_stb), |
| 279 |
.sd_dat_i(sd_dat_i),.sd_ack_i(sd_ack),.sd_err_i(0),.sd_rty_i(0), |
| 280 |
.se_dat_o(se_dat_o),.se_adr_o(se_adr),.se_sel_o(se_sel),.se_we_o(se_we),.se_cyc_o(se_cyc),.se_stb_o(se_stb), |
| 281 |
.se_dat_i(se_dat_i),.se_ack_i(se_ack),.se_err_i(0),.se_rty_i(0), |
| 282 |
.sf_dat_o(sf_dat_o),.sf_adr_o(sf_adr),.sf_sel_o(sf_sel),.sf_we_o(sf_we),.sf_cyc_o(sf_cyc),.sf_stb_o(sf_stb), |
| 283 |
.sf_dat_i(sf_dat_i),.sf_ack_i(sf_ack),.sf_err_i(0),.sf_rty_i(0)); |
| 284 |
|
| 285 |
// //////////////////////////////////////////////////////////////////////////////////////// |
| 286 |
// Reset Controller |
| 287 |
system_control sysctrl (.wb_clk_i(wb_clk), // .por_i(por), |
| 288 |
.ram_loader_rst_o(ram_loader_rst), |
| 289 |
.wb_rst_o(wb_rst), |
| 290 |
.ram_loader_done_i(ram_loader_done)); |
| 291 |
|
| 292 |
assign config_success = ram_loader_done; |
| 293 |
reg takeover = 0; |
| 294 |
|
| 295 |
wire cpld_start_int, cpld_mode_int, cpld_done_int; |
| 296 |
|
| 297 |
always @(posedge wb_clk) |
| 298 |
if(ram_loader_done) |
| 299 |
takeover = 1; |
| 300 |
assign cpld_misc = ~takeover; |
| 301 |
|
| 302 |
wire sd_clk, sd_csn, sd_mosi, sd_miso; |
| 303 |
|
| 304 |
assign sd_miso = cpld_din; |
| 305 |
assign cpld_start = takeover ? sd_clk : cpld_start_int; |
| 306 |
assign cpld_mode = takeover ? sd_csn : cpld_mode_int; |
| 307 |
assign cpld_done = takeover ? sd_mosi : cpld_done_int; |
| 308 |
|
| 309 |
// /////////////////////////////////////////////////////////////////// |
| 310 |
// RAM Loader |
| 311 |
|
| 312 |
wire [31:0] ram_loader_dat; |
| 313 |
wire [15:0] ram_loader_adr; |
| 314 |
wire [3:0] ram_loader_sel; |
| 315 |
wire ram_loader_stb, ram_loader_we; |
| 316 |
ram_loader #(.AWIDTH(aw),.RAM_SIZE(16384)) |
| 317 |
ram_loader (.wb_clk(wb_clk),.dsp_clk(dsp_clk),.ram_loader_rst(ram_loader_rst), |
| 318 |
.wb_dat(ram_loader_dat),.wb_adr(ram_loader_adr), |
| 319 |
.wb_stb(ram_loader_stb),.wb_sel(ram_loader_sel), |
| 320 |
.wb_we(ram_loader_we), |
| 321 |
.ram_loader_done(ram_loader_done), |
| 322 |
// CPLD Interface |
| 323 |
.cpld_clk(cpld_clk), |
| 324 |
.cpld_din(cpld_din), |
| 325 |
.cpld_start(cpld_start_int), |
| 326 |
.cpld_mode(cpld_mode_int), |
| 327 |
.cpld_done(cpld_done_int), |
| 328 |
.cpld_detached(cpld_detached)); |
| 329 |
|
| 330 |
// ///////////////////////////////////////////////////////////////////////// |
| 331 |
// Processor |
| 332 |
|
| 333 |
assign bus_error = m0_err | m0_rty; |
| 334 |
|
| 335 |
wire [63:0] zpu_status; |
| 336 |
zpu_wb_top #(.dat_w(dw), .adr_w(aw), .sel_w(sw)) |
| 337 |
zpu_top0 (.clk(wb_clk), .rst(wb_rst), .enb(ram_loader_done), |
| 338 |
// Data Wishbone bus to system bus fabric |
| 339 |
.we_o(m0_we),.stb_o(m0_stb),.dat_o(m0_dat_i),.adr_o(m0_adr), |
| 340 |
.dat_i(m0_dat_o),.ack_i(m0_ack),.sel_o(m0_sel),.cyc_o(m0_cyc), |
| 341 |
// Interrupts and exceptions |
| 342 |
.zpu_status(zpu_status), .interrupt(proc_int & 1'b0)); |
| 343 |
|
| 344 |
// ///////////////////////////////////////////////////////////////////////// |
| 345 |
// Dual Ported RAM -- D-Port is Slave #0 on main Wishbone |
| 346 |
// I-port connects directly to processor and ram loader |
| 347 |
|
| 348 |
ram_harvard #(.AWIDTH(14),.RAM_SIZE(16384),.ICWIDTH(7),.DCWIDTH(6)) |
| 349 |
sys_ram(.wb_clk_i(wb_clk),.wb_rst_i(wb_rst), |
| 350 |
|
| 351 |
.ram_loader_adr_i(ram_loader_adr[13:0]), .ram_loader_dat_i(ram_loader_dat), |
| 352 |
.ram_loader_stb_i(ram_loader_stb), .ram_loader_sel_i(ram_loader_sel), |
| 353 |
.ram_loader_we_i(ram_loader_we), |
| 354 |
.ram_loader_done_i(ram_loader_done), |
| 355 |
|
| 356 |
.if_adr(16'b0), .if_data(), |
| 357 |
|
| 358 |
.dwb_adr_i(s0_adr[13:0]), .dwb_dat_i(s0_dat_o), .dwb_dat_o(s0_dat_i), |
| 359 |
.dwb_we_i(s0_we), .dwb_ack_o(s0_ack), .dwb_stb_i(s0_stb), .dwb_sel_i(s0_sel)); |
| 360 |
|
| 361 |
// ///////////////////////////////////////////////////////////////////////// |
| 362 |
// Buffer Pool, slave #1 |
| 363 |
wire rd0_ready_i, rd0_ready_o; |
| 364 |
wire rd1_ready_i, rd1_ready_o; |
| 365 |
wire rd2_ready_i, rd2_ready_o; |
| 366 |
wire rd3_ready_i, rd3_ready_o; |
| 367 |
wire [35:0] rd0_dat, rd1_dat, rd2_dat, rd3_dat; |
| 368 |
|
| 369 |
wire wr0_ready_i, wr0_ready_o; |
| 370 |
wire wr1_ready_i, wr1_ready_o; |
| 371 |
wire wr2_ready_i, wr2_ready_o; |
| 372 |
wire wr3_ready_i, wr3_ready_o; |
| 373 |
wire [35:0] wr0_dat, wr1_dat, wr2_dat, wr3_dat; |
| 374 |
|
| 375 |
wire [35:0] tx_err_data; |
| 376 |
wire tx_err_src_rdy, tx_err_dst_rdy; |
| 377 |
|
| 378 |
wire [31:0] router_debug; |
| 379 |
|
| 380 |
packet_router #(.BUF_SIZE(9), .UDP_BASE(SR_UDP_SM), .CTRL_BASE(SR_BUF_POOL)) packet_router |
| 381 |
(.wb_clk_i(wb_clk),.wb_rst_i(wb_rst), |
| 382 |
.wb_we_i(s1_we),.wb_stb_i(s1_stb),.wb_adr_i(s1_adr),.wb_dat_i(s1_dat_o), |
| 383 |
.wb_dat_o(s1_dat_i),.wb_ack_o(s1_ack),.wb_err_o(),.wb_rty_o(), |
| 384 |
|
| 385 |
.set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), |
| 386 |
|
| 387 |
.stream_clk(dsp_clk), .stream_rst(dsp_rst), .stream_clr(1'b0), |
| 388 |
|
| 389 |
.status(status), .sys_int_o(buffer_int), .debug(router_debug), |
| 390 |
|
| 391 |
.ser_inp_data(wr0_dat), .ser_inp_valid(wr0_ready_i), .ser_inp_ready(wr0_ready_o), |
| 392 |
.dsp0_inp_data(wr1_dat), .dsp0_inp_valid(wr1_ready_i), .dsp0_inp_ready(wr1_ready_o), |
| 393 |
.dsp1_inp_data(wr3_dat), .dsp1_inp_valid(wr3_ready_i), .dsp1_inp_ready(wr3_ready_o), |
| 394 |
.eth_inp_data(wr2_dat), .eth_inp_valid(wr2_ready_i), .eth_inp_ready(wr2_ready_o), |
| 395 |
.err_inp_data(tx_err_data), .err_inp_ready(tx_err_dst_rdy), .err_inp_valid(tx_err_src_rdy), |
| 396 |
|
| 397 |
.ser_out_data(rd0_dat), .ser_out_valid(rd0_ready_o), .ser_out_ready(rd0_ready_i), |
| 398 |
.dsp_out_data(rd1_dat), .dsp_out_valid(rd1_ready_o), .dsp_out_ready(rd1_ready_i), |
| 399 |
.eth_out_data(rd2_dat), .eth_out_valid(rd2_ready_o), .eth_out_ready(rd2_ready_i) |
| 400 |
); |
| 401 |
|
| 402 |
// ///////////////////////////////////////////////////////////////////////// |
| 403 |
// SPI -- Slave #2 |
| 404 |
spi_top shared_spi |
| 405 |
(.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),.wb_adr_i(s2_adr[4:0]),.wb_dat_i(s2_dat_o), |
| 406 |
.wb_dat_o(s2_dat_i),.wb_sel_i(s2_sel),.wb_we_i(s2_we),.wb_stb_i(s2_stb), |
| 407 |
.wb_cyc_i(s2_cyc),.wb_ack_o(s2_ack),.wb_err_o(),.wb_int_o(spi_int), |
| 408 |
.ss_pad_o({sen_tx_db,sen_tx_adc,sen_tx_dac,sen_rx_db,sen_rx_adc,sen_rx_dac,sen_dac,sen_clk}),
|
| 409 |
.sclk_pad_o(sclk),.mosi_pad_o(mosi),.miso_pad_i(miso) ); |
| 410 |
|
| 411 |
// ///////////////////////////////////////////////////////////////////////// |
| 412 |
// I2C -- Slave #3 |
| 413 |
i2c_master_top #(.ARST_LVL(1)) |
| 414 |
i2c (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),.arst_i(1'b0), |
| 415 |
.wb_adr_i(s3_adr[4:2]),.wb_dat_i(s3_dat_o[7:0]),.wb_dat_o(s3_dat_i[7:0]), |
| 416 |
.wb_we_i(s3_we),.wb_stb_i(s3_stb),.wb_cyc_i(s3_cyc), |
| 417 |
.wb_ack_o(s3_ack),.wb_inta_o(i2c_int), |
| 418 |
.scl_pad_i(scl_pad_i),.scl_pad_o(scl_pad_o),.scl_padoen_o(scl_pad_oen_o), |
| 419 |
.sda_pad_i(sda_pad_i),.sda_pad_o(sda_pad_o),.sda_padoen_o(sda_pad_oen_o) ); |
| 420 |
|
| 421 |
assign s3_dat_i[31:8] = 24'd0; |
| 422 |
|
| 423 |
// ///////////////////////////////////////////////////////////////////////// |
| 424 |
// GPIOs -- Slave #4 |
| 425 |
|
| 426 |
nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), |
| 427 |
.cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[4:0]),.we_i(s4_we), |
| 428 |
.dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), |
| 429 |
.rx(run_rx0_d1 | rx_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) );
|
| 430 |
|
| 431 |
// ///////////////////////////////////////////////////////////////////////// |
| 432 |
// Buffer Pool Status -- Slave #5 |
| 433 |
|
| 434 |
//compatibility number -> increment when the fpga has been sufficiently altered |
| 435 |
localparam compat_num = {16'd7, 16'd1}; //major, minor
|
| 436 |
|
| 437 |
wb_readback_mux buff_pool_status |
| 438 |
(.wb_clk_i(wb_clk), .wb_rst_i(wb_rst), .wb_stb_i(s5_stb), |
| 439 |
.wb_adr_i(s5_adr), .wb_dat_o(s5_dat_i), .wb_ack_o(s5_ack), |
| 440 |
|
| 441 |
.word00(32'b0),.word01(32'b0),.word02(32'b0),.word03(32'b0), |
| 442 |
.word04(32'b0),.word05(32'b0),.word06(32'b0),.word07(32'b0), |
| 443 |
.word08(status),.word09({sim_mode,27'b0,clock_divider[3:0]}),.word10(vita_time[63:32]),
|
| 444 |
.word11(vita_time[31:0]),.word12(compat_num),.word13(irq), |
| 445 |
.word14(vita_time_pps[63:32]),.word15(vita_time_pps[31:0]) |
| 446 |
); |
| 447 |
|
| 448 |
// ///////////////////////////////////////////////////////////////////////// |
| 449 |
// Ethernet MAC Slave #6 |
| 450 |
|
| 451 |
simple_gemac_wrapper #(.RXFIFOSIZE(ETH_RX_FIFOSIZE), |
| 452 |
.TXFIFOSIZE(ETH_TX_FIFOSIZE)) simple_gemac_wrapper |
| 453 |
(.clk125(clk_to_mac), .reset(wb_rst), |
| 454 |
.GMII_GTX_CLK(GMII_GTX_CLK), .GMII_TX_EN(GMII_TX_EN), |
| 455 |
.GMII_TX_ER(GMII_TX_ER), .GMII_TXD(GMII_TXD), |
| 456 |
.GMII_RX_CLK(GMII_RX_CLK), .GMII_RX_DV(GMII_RX_DV), |
| 457 |
.GMII_RX_ER(GMII_RX_ER), .GMII_RXD(GMII_RXD), |
| 458 |
.sys_clk(dsp_clk), |
| 459 |
.rx_f36_data(wr2_dat), .rx_f36_src_rdy(wr2_ready_i), .rx_f36_dst_rdy(wr2_ready_o), |
| 460 |
.tx_f36_data(rd2_dat), .tx_f36_src_rdy(rd2_ready_o), .tx_f36_dst_rdy(rd2_ready_i), |
| 461 |
.wb_clk(wb_clk), .wb_rst(wb_rst), .wb_stb(s6_stb), .wb_cyc(s6_cyc), .wb_ack(s6_ack), |
| 462 |
.wb_we(s6_we), .wb_adr(s6_adr), .wb_dat_i(s6_dat_o), .wb_dat_o(s6_dat_i), |
| 463 |
.mdio(MDIO), .mdc(MDC), |
| 464 |
.debug(debug_mac)); |
| 465 |
|
| 466 |
// ///////////////////////////////////////////////////////////////////////// |
| 467 |
// Settings Bus -- Slave #7 |
| 468 |
settings_bus settings_bus |
| 469 |
(.wb_clk(wb_clk),.wb_rst(wb_rst),.wb_adr_i(s7_adr),.wb_dat_i(s7_dat_o), |
| 470 |
.wb_stb_i(s7_stb),.wb_we_i(s7_we),.wb_ack_o(s7_ack), |
| 471 |
.strobe(set_stb),.addr(set_addr),.data(set_data)); |
| 472 |
|
| 473 |
assign s7_dat_i = 32'd0; |
| 474 |
|
| 475 |
settings_bus_crossclock settings_bus_crossclock |
| 476 |
(.clk_i(wb_clk), .rst_i(wb_rst), .set_stb_i(set_stb), .set_addr_i(set_addr), .set_data_i(set_data), |
| 477 |
.clk_o(dsp_clk), .rst_o(dsp_rst), .set_stb_o(set_stb_dsp), .set_addr_o(set_addr_dsp), .set_data_o(set_data_dsp)); |
| 478 |
|
| 479 |
// Output control lines |
| 480 |
wire [7:0] clock_outs, serdes_outs, adc_outs; |
| 481 |
assign {clock_ready, clk_en[1:0], clk_sel[1:0]} = clock_outs[4:0];
|
| 482 |
assign {ser_enable, ser_prbsen, ser_loopen, ser_rx_en} = serdes_outs[3:0];
|
| 483 |
assign {adc_oe_a, adc_on_a, adc_oe_b, adc_on_b } = adc_outs[3:0];
|
| 484 |
|
| 485 |
wire phy_reset; |
| 486 |
assign PHY_RESETn = ~phy_reset; |
| 487 |
|
| 488 |
setting_reg #(.my_addr(SR_MISC+0),.width(8)) sr_clk (.clk(wb_clk),.rst(wb_rst),.strobe(s7_ack),.addr(set_addr), |
| 489 |
.in(set_data),.out(clock_outs),.changed()); |
| 490 |
setting_reg #(.my_addr(SR_MISC+1),.width(8)) sr_ser (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), |
| 491 |
.in(set_data),.out(serdes_outs),.changed()); |
| 492 |
setting_reg #(.my_addr(SR_MISC+2),.width(8)) sr_adc (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), |
| 493 |
.in(set_data),.out(adc_outs),.changed()); |
| 494 |
setting_reg #(.my_addr(SR_MISC+4),.width(1)) sr_phy (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), |
| 495 |
.in(set_data),.out(phy_reset),.changed()); |
| 496 |
|
| 497 |
// ///////////////////////////////////////////////////////////////////////// |
| 498 |
// LEDS |
| 499 |
// register 8 determines whether leds are controlled by SW or not |
| 500 |
// 1 = controlled by HW, 0 = by SW |
| 501 |
// In Rev3 there are only 6 leds, and the highest one is on the ETH connector |
| 502 |
|
| 503 |
wire [7:0] led_src, led_sw; |
| 504 |
wire [7:0] led_hw = {run_tx, (run_rx0_d1 | run_rx1_d1), clk_status, serdes_link_up & good_sync, 1'b0};
|
| 505 |
|
| 506 |
setting_reg #(.my_addr(SR_MISC+3),.width(8)) sr_led (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), |
| 507 |
.in(set_data),.out(led_sw),.changed()); |
| 508 |
|
| 509 |
setting_reg #(.my_addr(SR_MISC+6),.width(8), .at_reset(8'b0001_1110)) |
| 510 |
sr_led_src (.clk(wb_clk),.rst(wb_rst), .strobe(set_stb),.addr(set_addr), .in(set_data),.out(led_src),.changed()); |
| 511 |
|
| 512 |
assign leds = (led_src & led_hw) | (~led_src & led_sw); |
| 513 |
|
| 514 |
// ///////////////////////////////////////////////////////////////////////// |
| 515 |
// Interrupt Controller, Slave #8 |
| 516 |
|
| 517 |
// Pass interrupts on dsp_clk to wb_clk. These need edge triggering in the pic |
| 518 |
wire underrun_wb, overrun_wb, pps_wb; |
| 519 |
|
| 520 |
oneshot_2clk underrun_1s (.clk_in(dsp_clk), .in(underrun), .clk_out(wb_clk), .out(underrun_wb)); |
| 521 |
oneshot_2clk overrun_1s (.clk_in(dsp_clk), .in(overrun0 | overrun1), .clk_out(wb_clk), .out(overrun_wb)); |
| 522 |
oneshot_2clk pps_1s (.clk_in(dsp_clk), .in(pps_int), .clk_out(wb_clk), .out(pps_wb)); |
| 523 |
|
| 524 |
assign irq= {{8'b0},
|
| 525 |
{8'b0},
|
| 526 |
{2'b0, good_sync, periodic_int, clk_status, serdes_link_up, uart_tx_int, uart_rx_int},
|
| 527 |
{pps_wb,overrun_wb,underrun_wb,PHY_INTn,i2c_int,spi_int,onetime_int,buffer_int}};
|
| 528 |
|
| 529 |
pic pic(.clk_i(wb_clk),.rst_i(wb_rst),.cyc_i(s8_cyc),.stb_i(s8_stb),.adr_i(s8_adr[4:2]), |
| 530 |
.we_i(s8_we),.dat_i(s8_dat_o),.dat_o(s8_dat_i),.ack_o(s8_ack),.int_o(proc_int), |
| 531 |
.irq(irq) ); |
| 532 |
|
| 533 |
// ///////////////////////////////////////////////////////////////////////// |
| 534 |
// Master Timer, Slave #9 |
| 535 |
|
| 536 |
// No longer used, replaced with simple_timer below |
| 537 |
assign s9_ack = 0; |
| 538 |
|
| 539 |
// ///////////////////////////////////////////////////////////////////////// |
| 540 |
// Simple Timer interrupts |
| 541 |
/* |
| 542 |
simple_timer #(.BASE(SR_SIMTIMER)) simple_timer |
| 543 |
(.clk(wb_clk), .reset(wb_rst), |
| 544 |
.set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), |
| 545 |
.onetime_int(onetime_int), .periodic_int(periodic_int)); |
| 546 |
*/ |
| 547 |
// ///////////////////////////////////////////////////////////////////////// |
| 548 |
// UART, Slave #10 |
| 549 |
|
| 550 |
simple_uart #(.TXDEPTH(3),.RXDEPTH(3)) uart // depth of 3 is 128 entries |
| 551 |
(.clk_i(wb_clk),.rst_i(wb_rst), |
| 552 |
.we_i(sa_we),.stb_i(sa_stb),.cyc_i(sa_cyc),.ack_o(sa_ack), |
| 553 |
.adr_i(sa_adr[4:2]),.dat_i(sa_dat_o),.dat_o(sa_dat_i), |
| 554 |
.rx_int_o(uart_rx_int),.tx_int_o(uart_tx_int), |
| 555 |
.tx_o(uart_tx_o),.rx_i(uart_rx_i),.baud_o(uart_baud_o)); |
| 556 |
|
| 557 |
// ///////////////////////////////////////////////////////////////////////// |
| 558 |
// ATR Controller, Slave #11 |
| 559 |
|
| 560 |
/* |
| 561 |
atr_controller atr_controller |
| 562 |
(.clk_i(wb_clk),.rst_i(wb_rst), |
| 563 |
.adr_i(sb_adr[5:0]),.sel_i(sb_sel),.dat_i(sb_dat_o),.dat_o(sb_dat_i), |
| 564 |
.we_i(sb_we),.stb_i(sb_stb),.cyc_i(sb_cyc),.ack_o(sb_ack), |
| 565 |
.run_rx(run_rx0_d1 | run_rx1_d1),.run_tx(run_tx),.ctrl_lines(atr_lines) ); |
| 566 |
*/ |
| 567 |
|
| 568 |
// ////////////////////////////////////////////////////////////////////////// |
| 569 |
// Time Sync, Slave #12 |
| 570 |
|
| 571 |
// No longer used, see time_64bit. Still need to handle mimo time, though |
| 572 |
assign sc_ack = 0; |
| 573 |
|
| 574 |
// ///////////////////////////////////////////////////////////////////////// |
| 575 |
// SD Card Reader / Writer, Slave #13 |
| 576 |
/* |
| 577 |
sd_spi_wb sd_spi_wb |
| 578 |
(.clk(wb_clk),.rst(wb_rst), |
| 579 |
.sd_clk(sd_clk),.sd_csn(sd_csn),.sd_mosi(sd_mosi),.sd_miso(sd_miso), |
| 580 |
.wb_cyc_i(sd_cyc),.wb_stb_i(sd_stb),.wb_we_i(sd_we), |
| 581 |
.wb_adr_i(sd_adr[3:2]),.wb_dat_i(sd_dat_o[7:0]),.wb_dat_o(sd_dat_i[7:0]), |
| 582 |
.wb_ack_o(sd_ack) ); |
| 583 |
|
| 584 |
assign sd_dat_i[31:8] = 0; |
| 585 |
*/ |
| 586 |
// ///////////////////////////////////////////////////////////////////////// |
| 587 |
// ADC Frontend |
| 588 |
wire [23:0] adc_i, adc_q; |
| 589 |
|
| 590 |
rx_frontend #(.BASE(SR_RX_FRONT)) rx_frontend |
| 591 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 592 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 593 |
.adc_a({adc_a,2'b00}),.adc_ovf_a(adc_ovf_a),
|
| 594 |
.adc_b({adc_b,2'b00}),.adc_ovf_b(adc_ovf_b),
|
| 595 |
.i_out(adc_i), .q_out(adc_q), .run(run_rx0_d1 | run_rx1_d1), .debug()); |
| 596 |
|
| 597 |
// ///////////////////////////////////////////////////////////////////////// |
| 598 |
// DSP RX 0 |
| 599 |
wire [31:0] sample_rx0; |
| 600 |
wire clear_rx0, strobe_rx0; |
| 601 |
|
| 602 |
always @(posedge dsp_clk) |
| 603 |
run_rx0_d1 <= run_rx0; |
| 604 |
|
| 605 |
dsp_core_rx #(.BASE(SR_RX_DSP0)) dsp_core_rx0 |
| 606 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 607 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 608 |
.adc_i(adc_i),.adc_ovf_i(adc_ovf_a),.adc_q(adc_q),.adc_ovf_q(adc_ovf_b), |
| 609 |
.sample(sample_rx0), .run(run_rx0_d1), .strobe(strobe_rx0), |
| 610 |
.debug() ); |
| 611 |
|
| 612 |
setting_reg #(.my_addr(SR_RX_CTRL0+3)) sr_clear_rx0 |
| 613 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 614 |
.strobe(set_stb_dsp),.addr(set_addr_dsp),.in(set_data_dsp), |
| 615 |
.out(),.changed(clear_rx0)); |
| 616 |
|
| 617 |
vita_rx_chain #(.BASE(SR_RX_CTRL0),.UNIT(0),.FIFOSIZE(DSP_RX_FIFOSIZE)) vita_rx_chain0 |
| 618 |
(.clk(dsp_clk), .reset(dsp_rst), .clear(clear_rx0), |
| 619 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 620 |
.vita_time(vita_time), .overrun(overrun0), |
| 621 |
.sample(sample_rx0), .run(run_rx0), .strobe(strobe_rx0), |
| 622 |
.rx_data_o(wr1_dat), .rx_src_rdy_o(wr1_ready_i), .rx_dst_rdy_i(wr1_ready_o), |
| 623 |
.debug() ); |
| 624 |
|
| 625 |
// ///////////////////////////////////////////////////////////////////////// |
| 626 |
// DSP RX 1 |
| 627 |
wire [31:0] sample_rx1; |
| 628 |
wire clear_rx1, strobe_rx1; |
| 629 |
|
| 630 |
always @(posedge dsp_clk) |
| 631 |
run_rx1_d1 <= run_rx1; |
| 632 |
|
| 633 |
dsp_core_rx #(.BASE(SR_RX_DSP1)) dsp_core_rx1 |
| 634 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 635 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 636 |
.adc_i(adc_i),.adc_ovf_i(adc_ovf_a),.adc_q(adc_q),.adc_ovf_q(adc_ovf_b), |
| 637 |
.sample(sample_rx1), .run(run_rx1_d1), .strobe(strobe_rx1), |
| 638 |
.debug() ); |
| 639 |
|
| 640 |
setting_reg #(.my_addr(SR_RX_CTRL1+3)) sr_clear_rx1 |
| 641 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 642 |
.strobe(set_stb_dsp),.addr(set_addr_dsp),.in(set_data_dsp), |
| 643 |
.out(),.changed(clear_rx1)); |
| 644 |
|
| 645 |
vita_rx_chain #(.BASE(SR_RX_CTRL1),.UNIT(2),.FIFOSIZE(DSP_RX_FIFOSIZE)) vita_rx_chain1 |
| 646 |
(.clk(dsp_clk), .reset(dsp_rst), .clear(clear_rx1), |
| 647 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 648 |
.vita_time(vita_time), .overrun(overrun1), |
| 649 |
.sample(sample_rx1), .run(run_rx1), .strobe(strobe_rx1), |
| 650 |
.rx_data_o(wr3_dat), .rx_src_rdy_o(wr3_ready_i), .rx_dst_rdy_i(wr3_ready_o), |
| 651 |
.debug() ); |
| 652 |
|
| 653 |
// /////////////////////////////////////////////////////////////////////////////////// |
| 654 |
// DSP TX |
| 655 |
|
| 656 |
wire [35:0] tx_data; |
| 657 |
wire tx_src_rdy, tx_dst_rdy; |
| 658 |
wire [31:0] debug_vt; |
| 659 |
wire clear_tx; |
| 660 |
|
| 661 |
setting_reg #(.my_addr(SR_TX_CTRL+1)) sr_clear_tx |
| 662 |
(.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), |
| 663 |
.in(set_data),.out(),.changed(clear_tx)); |
| 664 |
|
| 665 |
ext_fifo #(.EXT_WIDTH(18),.INT_WIDTH(36),.RAM_DEPTH(19),.FIFO_DEPTH(19)) |
| 666 |
ext_fifo_i1 |
| 667 |
(.int_clk(dsp_clk), |
| 668 |
.ext_clk(clk_to_mac), |
| 669 |
.rst(dsp_rst | clear_tx), |
| 670 |
.RAM_D_pi(RAM_D_pi), |
| 671 |
.RAM_D_po(RAM_D_po), |
| 672 |
.RAM_D_poe(RAM_D_poe), |
| 673 |
.RAM_A(RAM_A), |
| 674 |
.RAM_WEn(RAM_WEn), |
| 675 |
.RAM_CENn(RAM_CENn), |
| 676 |
.RAM_LDn(RAM_LDn), |
| 677 |
.RAM_OEn(RAM_OEn), |
| 678 |
.RAM_CE1n(RAM_CE1n), |
| 679 |
.datain(rd1_dat), |
| 680 |
.src_rdy_i(rd1_ready_o), |
| 681 |
.dst_rdy_o(rd1_ready_i), |
| 682 |
.dataout(tx_data), |
| 683 |
.src_rdy_o(tx_src_rdy), |
| 684 |
.dst_rdy_i(tx_dst_rdy), |
| 685 |
.debug(debug_extfifo), |
| 686 |
.debug2(debug_extfifo2) ); |
| 687 |
|
| 688 |
wire [23:0] tx_i, tx_q; |
| 689 |
|
| 690 |
vita_tx_chain #(.BASE_CTRL(SR_TX_CTRL), .BASE_DSP(SR_TX_DSP), |
| 691 |
.REPORT_ERROR(1), .DO_FLOW_CONTROL(1), |
| 692 |
.PROT_ENG_FLAGS(1), .USE_TRANS_HEADER(1), |
| 693 |
.DSP_NUMBER(0)) |
| 694 |
vita_tx_chain |
| 695 |
(.clk(dsp_clk), .reset(dsp_rst), |
| 696 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 697 |
.vita_time(vita_time), |
| 698 |
.tx_data_i(tx_data), .tx_src_rdy_i(tx_src_rdy), .tx_dst_rdy_o(tx_dst_rdy), |
| 699 |
.err_data_o(tx_err_data), .err_src_rdy_o(tx_err_src_rdy), .err_dst_rdy_i(tx_err_dst_rdy), |
| 700 |
.tx_i(tx_i),.tx_q(tx_q), |
| 701 |
.underrun(underrun), .run(run_tx), |
| 702 |
.debug(debug_vt)); |
| 703 |
|
| 704 |
tx_frontend #(.BASE(SR_TX_FRONT)) tx_frontend |
| 705 |
(.clk(dsp_clk), .rst(dsp_rst), |
| 706 |
.set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |
| 707 |
.tx_i(tx_i), .tx_q(tx_q), .run(1'b1), |
| 708 |
.dac_a(dac_a), .dac_b(dac_b)); |
| 709 |
|
| 710 |
// /////////////////////////////////////////////////////////////////////////////////// |
| 711 |
// SERDES |
| 712 |
|
| 713 |
serdes #(.TXFIFOSIZE(SERDES_TX_FIFOSIZE),.RXFIFOSIZE(SERDES_RX_FIFOSIZE)) serdes |
| 714 |
(.clk(dsp_clk),.rst(dsp_rst), |
| 715 |
.ser_tx_clk(ser_tx_clk),.ser_t(ser_t),.ser_tklsb(ser_tklsb),.ser_tkmsb(ser_tkmsb), |
| 716 |
.rd_dat_i(rd0_dat[31:0]),.rd_flags_i(rd0_dat[35:32]),.rd_ready_o(rd0_ready_i),.rd_ready_i(rd0_ready_o), |
| 717 |
.ser_rx_clk(ser_rx_clk),.ser_r(ser_r),.ser_rklsb(ser_rklsb),.ser_rkmsb(ser_rkmsb), |
| 718 |
.wr_dat_o(wr0_dat[31:0]),.wr_flags_o(wr0_dat[35:32]),.wr_ready_o(wr0_ready_i),.wr_ready_i(wr0_ready_o), |
| 719 |
.tx_occupied(ser_tx_occ),.tx_full(ser_tx_full),.tx_empty(ser_tx_empty), |
| 720 |
.rx_occupied(ser_rx_occ),.rx_full(ser_rx_full),.rx_empty(ser_rx_empty), |
| 721 |
.serdes_link_up(serdes_link_up),.debug0(debug_serdes0), .debug1(debug_serdes1) ); |
| 722 |
|
| 723 |
assign RAM_CLK = clk_to_mac; |
| 724 |
|
| 725 |
// ///////////////////////////////////////////////////////////////////////// |
| 726 |
// VITA Timing |
| 727 |
|
| 728 |
wire [31:0] debug_sync; |
| 729 |
|
| 730 |
time_64bit #(.TICKS_PER_SEC(32'd100000000),.BASE(SR_TIME64)) time_64bit |
| 731 |
(.clk(dsp_clk), .rst(dsp_rst), .set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), |
| 732 |
.pps(pps_in), .vita_time(vita_time), .vita_time_pps(vita_time_pps), .pps_int(pps_int), |
| 733 |
.exp_time_in(exp_time_in), .exp_time_out(exp_time_out), .good_sync(good_sync), .debug(debug_sync)); |
| 734 |
|
| 735 |
// ///////////////////////////////////////////////////////////////////////////////////////// |
| 736 |
// Debug Pins |
| 737 |
|
| 738 |
assign debug_clk = 2'b00; // {dsp_clk, clk_to_mac};
|
| 739 |
assign debug = 32'd0; |
| 740 |
assign debug_gpio_0 = 32'd0; |
| 741 |
assign debug_gpio_1 = 32'd0; |
| 742 |
|
| 743 |
endmodule // u2_core |