| 1 |
2 |
ZTEX |
/*!
|
| 2 |
|
|
memfifo -- implementation of EZ-USB slave FIFO's (input and output) a FIFO using the DDR3 SDRAM for ZTEX USB-FPGA Modules 2.13
|
| 3 |
|
|
Copyright (C) 2009-2014 ZTEX GmbH.
|
| 4 |
|
|
http://www.ztex.de
|
| 5 |
|
|
|
| 6 |
|
|
This program is free software; you can redistribute it and/or modify
|
| 7 |
|
|
it under the terms of the GNU General Public License version 3 as
|
| 8 |
|
|
published by the Free Software Foundation.
|
| 9 |
|
|
|
| 10 |
|
|
This program is distributed in the hope that it will be useful, but
|
| 11 |
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
| 13 |
|
|
General Public License for more details.
|
| 14 |
|
|
|
| 15 |
|
|
You should have received a copy of the GNU General Public License
|
| 16 |
|
|
along with this program; if not, see http://www.gnu.org/licenses/.
|
| 17 |
|
|
!*/
|
| 18 |
|
|
/*
|
| 19 |
|
|
Implements the EZ-USB Slave FIFO interface for both
|
| 20 |
|
|
directions. It also includes an scheduler (required if both
|
| 21 |
|
|
directions are used at the same time) and short packets (PKTEND).
|
| 22 |
|
|
*/
|
| 23 |
|
|
module ezusb_io #(
|
| 24 |
|
|
parameter CLKBUF_TYPE = "", // selects the clock preparation method (buffering, filtering, ...)
|
| 25 |
|
|
// "SPARTAN6" for Xilinx Spartan 6,
|
| 26 |
|
|
// "SERIES7" for Xilinx Series 7,
|
| 27 |
|
|
// all other values: no clock preparation
|
| 28 |
|
|
parameter OUTEP = 2, // EP for FPGA -> EZ-USB transfers
|
| 29 |
|
|
parameter INEP = 6 // EP for EZ-USB -> FPGA transfers
|
| 30 |
|
|
) (
|
| 31 |
|
|
output ifclk, // buffered output of the interface clock
|
| 32 |
|
|
// this is the clock for the user logic
|
| 33 |
|
|
input reset, // asynchronous reset input
|
| 34 |
|
|
output reset_out, // synchronous reset output
|
| 35 |
|
|
|
| 36 |
|
|
// FPGA pins that are connected directly to EZ-USB.
|
| 37 |
|
|
input ifclk_in, // interface clock IFCLK
|
| 38 |
|
|
inout [15:0] fd, // 16 bit data bus
|
| 39 |
|
|
output reg SLWR, PKTEND, // SLWR (slave write) and PKTEND (packet end) flags
|
| 40 |
|
|
output SLRD, SLOE, // SLRD (slave read) and SLOE (slave output enable) flags
|
| 41 |
|
|
output [1:0] FIFOADDR, // FIFOADDR pins select the endpoint
|
| 42 |
|
|
input EMPTY_FLAG, FULL_FLAG, // EMPTY and FULL flag of the slave FIFO interface
|
| 43 |
|
|
|
| 44 |
|
|
// Signals for FPGA -> EZ-USB transfer. The are controlled by user logic.
|
| 45 |
|
|
input [15:0] DI, // data written to EZ-USB
|
| 46 |
|
|
input DI_valid, // 1 indicates valid data; DI and DI_valid must be hold if DI_ready is 0
|
| 47 |
|
|
output DI_ready, // 1 if new data are accepted
|
| 48 |
|
|
input DI_enable, // setting to 0 disables FPGA -> EZ-USB transfers
|
| 49 |
|
|
input [15:0] pktend_timeout, // timeout in multiples of 65536 clocks before a short packet committed
|
| 50 |
|
|
// setting to 0 disables this feature
|
| 51 |
|
|
|
| 52 |
|
|
// Signals for EZ-USB -> FPGA transfer. They are controlled by user logic.
|
| 53 |
|
|
output reg [15:0] DO, // data read from EZ-USB
|
| 54 |
|
|
output reg DO_valid, // 1 indicates valid data
|
| 55 |
|
|
input DO_ready, // setting to 1 enables writing new data to DO in next clock
|
| 56 |
|
|
// DO and DO_valid are hold if DO_ready is 0
|
| 57 |
|
|
// set to 0 to disable data reads
|
| 58 |
|
|
// debug output
|
| 59 |
|
|
output [3:0] status
|
| 60 |
|
|
);
|
| 61 |
|
|
|
| 62 |
|
|
wire locked;
|
| 63 |
|
|
|
| 64 |
|
|
generate
|
| 65 |
|
|
if ( CLKBUF_TYPE == "SPARTAN6")
|
| 66 |
|
|
begin
|
| 67 |
|
|
IBUFG ifclkin_buf (
|
| 68 |
|
|
.I(ifclk_in),
|
| 69 |
|
|
.O(ifclk)
|
| 70 |
|
|
);
|
| 71 |
|
|
assign locked = 1'b1;
|
| 72 |
|
|
end else if ( CLKBUF_TYPE == "SERIES7")
|
| 73 |
|
|
begin
|
| 74 |
|
|
wire ifclk_inbuf, ifclk_fbin, ifclk_fbout, ifclk_out;
|
| 75 |
|
|
|
| 76 |
|
|
IBUFG ifclkin_buf (
|
| 77 |
|
|
.I(ifclk_in),
|
| 78 |
|
|
.O(ifclk_inbuf)
|
| 79 |
|
|
);
|
| 80 |
|
|
|
| 81 |
|
|
BUFG ifclk_fb_buf (
|
| 82 |
|
|
.I(ifclk_fbout),
|
| 83 |
|
|
.O(ifclk_fbin)
|
| 84 |
|
|
);
|
| 85 |
|
|
|
| 86 |
|
|
BUFG ifclk_out_buf (
|
| 87 |
|
|
.I(ifclk_out),
|
| 88 |
|
|
.O(ifclk)
|
| 89 |
|
|
);
|
| 90 |
|
|
|
| 91 |
|
|
MMCME2_BASE #(
|
| 92 |
|
|
.BANDWIDTH("OPTIMIZED"),
|
| 93 |
|
|
.CLKFBOUT_MULT_F(20.0),
|
| 94 |
|
|
.CLKFBOUT_PHASE(0.0),
|
| 95 |
|
|
.CLKIN1_PERIOD(0.0),
|
| 96 |
|
|
.CLKOUT0_DIVIDE_F(20.0),
|
| 97 |
|
|
.CLKOUT1_DIVIDE(1),
|
| 98 |
|
|
.CLKOUT2_DIVIDE(1),
|
| 99 |
|
|
.CLKOUT3_DIVIDE(1),
|
| 100 |
|
|
.CLKOUT4_DIVIDE(1),
|
| 101 |
|
|
.CLKOUT5_DIVIDE(1),
|
| 102 |
|
|
.CLKOUT0_DUTY_CYCLE(0.5),
|
| 103 |
|
|
.CLKOUT1_DUTY_CYCLE(0.5),
|
| 104 |
|
|
.CLKOUT2_DUTY_CYCLE(0.5),
|
| 105 |
|
|
.CLKOUT3_DUTY_CYCLE(0.5),
|
| 106 |
|
|
.CLKOUT4_DUTY_CYCLE(0.5),
|
| 107 |
|
|
.CLKOUT5_DUTY_CYCLE(0.5),
|
| 108 |
|
|
.CLKOUT0_PHASE(0.0),
|
| 109 |
|
|
.CLKOUT1_PHASE(0.0),
|
| 110 |
|
|
.CLKOUT2_PHASE(0.0),
|
| 111 |
|
|
.CLKOUT3_PHASE(0.0),
|
| 112 |
|
|
.CLKOUT4_PHASE(0.0),
|
| 113 |
|
|
.CLKOUT5_PHASE(0.0),
|
| 114 |
|
|
.CLKOUT4_CASCADE("FALSE"),
|
| 115 |
|
|
.DIVCLK_DIVIDE(1),
|
| 116 |
|
|
.REF_JITTER1(0.0),
|
| 117 |
|
|
.STARTUP_WAIT("FALSE")
|
| 118 |
|
|
) isclk_mmcm_inst (
|
| 119 |
|
|
.CLKOUT0(ifclk_out),
|
| 120 |
|
|
.CLKFBOUT(ifclk_fbout),
|
| 121 |
|
|
.CLKIN1(ifclk_inbuf),
|
| 122 |
|
|
.PWRDWN(1'b0),
|
| 123 |
|
|
.RST(reset),
|
| 124 |
|
|
.CLKFBIN(ifclk_fbin),
|
| 125 |
|
|
.LOCKED(locked)
|
| 126 |
|
|
);
|
| 127 |
|
|
end else
|
| 128 |
|
|
begin
|
| 129 |
|
|
assign ifclk = ifclk_in;
|
| 130 |
|
|
assign locked = 1'b1;
|
| 131 |
|
|
end
|
| 132 |
|
|
endgenerate
|
| 133 |
|
|
|
| 134 |
|
|
reg reset_ifclk = 1;
|
| 135 |
|
|
reg if_out, if_in;
|
| 136 |
|
|
reg [4:0] if_out_buf;
|
| 137 |
|
|
reg [15:0] fd_buf;
|
| 138 |
|
|
reg resend;
|
| 139 |
|
|
reg SLRD_buf, pktend_req, pktend_en;
|
| 140 |
|
|
reg [31:0] pktend_cnt;
|
| 141 |
|
|
|
| 142 |
|
|
// FPGA <-> EZ-USB signals
|
| 143 |
|
|
assign SLOE = if_out;
|
| 144 |
|
|
// assign FIFOADDR[0] = 1'b0;
|
| 145 |
|
|
// assign FIFOADDR[1] = !if_out;
|
| 146 |
|
|
assign FIFOADDR = if_out ? OUTEP/2-1 : INEP/2-1;
|
| 147 |
|
|
assign fd = if_out ? fd_buf : {16{1'bz}};
|
| 148 |
|
|
assign SLRD = SLRD_buf || !DO_ready;
|
| 149 |
|
|
|
| 150 |
|
|
assign status = { !SLRD_buf, !SLWR, resend, if_out };
|
| 151 |
|
|
|
| 152 |
|
|
assign DI_ready = !reset_ifclk && FULL_FLAG && if_out & if_out_buf[4] && !resend;
|
| 153 |
|
|
assign reset_out = reset || reset_ifclk;
|
| 154 |
|
|
|
| 155 |
|
|
always @ (posedge ifclk)
|
| 156 |
|
|
begin
|
| 157 |
|
|
reset_ifclk <= reset || !locked;
|
| 158 |
|
|
|
| 159 |
|
|
// FPGA -> EZ-USB
|
| 160 |
|
|
if ( reset_ifclk )
|
| 161 |
|
|
begin
|
| 162 |
|
|
SLWR <= 1'b1;
|
| 163 |
|
|
if_out <= DI_enable; // direction of EZ-USB interface: 1 means FPGA writes / EZ_USB reads
|
| 164 |
|
|
resend <= 1'b0;
|
| 165 |
|
|
SLRD_buf <= 1'b1;
|
| 166 |
|
|
end else if ( FULL_FLAG && if_out && if_out_buf[4] && ( resend || DI_valid) ) // FPGA -> EZ-USB
|
| 167 |
|
|
begin
|
| 168 |
|
|
SLWR <= 1'b0;
|
| 169 |
|
|
SLRD_buf <= 1'b1;
|
| 170 |
|
|
resend <= 1'b0;
|
| 171 |
|
|
if ( !resend ) fd_buf <= DI;
|
| 172 |
|
|
end else if ( EMPTY_FLAG && !if_out && !if_out_buf[4] && DO_ready ) // EZ-USB -> FPGA
|
| 173 |
|
|
begin
|
| 174 |
|
|
SLWR <= 1'b1;
|
| 175 |
|
|
DO <= fd;
|
| 176 |
|
|
SLRD_buf <= 1'b0;
|
| 177 |
|
|
end else if (if_out == if_out_buf[4])
|
| 178 |
|
|
begin
|
| 179 |
|
|
if ( !SLWR && !FULL_FLAG ) resend <= 1'b1; // FLAGS are received two clocks after data. If FULL_FLAG was asserted last data was ignored and has to be re-sent.
|
| 180 |
|
|
SLRD_buf <= 1'b1;
|
| 181 |
|
|
SLWR <= 1'b1;
|
| 182 |
|
|
if_out <= DI_enable && (!DO_ready || !EMPTY_FLAG);
|
| 183 |
|
|
end
|
| 184 |
|
|
if_out_buf <= reset_ifclk ? {5{!DI_enable}} : { if_out_buf[3:0], if_out };
|
| 185 |
|
|
if ( DO_ready ) DO_valid <= !if_out && !if_out_buf[4] && EMPTY_FLAG && !SLRD_buf; // assertion of SLRD_buf takes two clocks to take effect
|
| 186 |
|
|
|
| 187 |
|
|
// PKTEND processing
|
| 188 |
|
|
if ( reset_ifclk || DI_valid )
|
| 189 |
|
|
begin
|
| 190 |
|
|
pktend_req <= 1'b0;
|
| 191 |
|
|
pktend_en <= !reset_ifclk;
|
| 192 |
|
|
pktend_cnt <= 32'd0;
|
| 193 |
|
|
PKTEND <= 1'b1;
|
| 194 |
|
|
end else
|
| 195 |
|
|
begin
|
| 196 |
|
|
pktend_req <= pktend_req || ( pktend_en && (pktend_timeout != 16'd0) && (pktend_timeout == pktend_cnt[31:16]) );
|
| 197 |
|
|
pktend_cnt <= pktend_cnt + 1;
|
| 198 |
|
|
if ( pktend_req && if_out && if_out_buf[4] )
|
| 199 |
|
|
begin
|
| 200 |
|
|
PKTEND <= 1'b0;
|
| 201 |
|
|
pktend_req <= 1'b0;
|
| 202 |
|
|
pktend_en <= 1'b0;
|
| 203 |
|
|
end else
|
| 204 |
|
|
begin
|
| 205 |
|
|
PKTEND <= 1'b1;
|
| 206 |
|
|
pktend_req <= pktend_req || ( pktend_en && (pktend_timeout != 16'd0) && (pktend_timeout == pktend_cnt[31:16]) );
|
| 207 |
|
|
end
|
| 208 |
|
|
end
|
| 209 |
|
|
|
| 210 |
|
|
end
|
| 211 |
|
|
|
| 212 |
|
|
endmodule
|
| 213 |
|
|
|