1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
//
// Copyright 2011 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// RX side of flow control -- when we are running out of RX space, send a PAUSE
module flow_ctrl_rx
(input pause_request_en, input [15:0] pause_time, input [15:0] pause_thresh,
input rx_clk, input rx_reset, input [15:0] rx_fifo_space,
input tx_clk, input tx_reset, output reg pause_req, output reg [15:0] pause_time_req
);
// ******************************************************************************
// Force our TX to send a PAUSE frame because our RX is nearly full
// ******************************************************************************
// RX Clock Domain
reg xon, xoff;
reg [21:0] countdown;
wire [15:0] pause_low_thresh = pause_thresh;
wire [15:0] pause_hi_thresh = 16'hFFFF;
wire [21:0] pq_reduced = {pause_time,6'd0} - 1700;
always @(posedge rx_clk)
if(rx_reset)
xoff <= 0;
else
xoff <= (pause_request_en & (countdown==0) & (rx_fifo_space < pause_low_thresh));
always @(posedge rx_clk)
if(rx_reset)
xon <= 0;
else
xon <= ((countdown!=0) & (rx_fifo_space > pause_hi_thresh));
always @(posedge rx_clk)
if(rx_reset)
countdown <= 0;
else if(xoff)
countdown <= pq_reduced;
else if(xon)
countdown <= 0;
else if(countdown != 0)
countdown <= countdown - 1;
// Cross clock domains
wire xon_tx, xoff_tx;
oneshot_2clk send_xon (.clk_in(rx_clk), .in(xon), .clk_out(tx_clk), .out(xon_tx));
oneshot_2clk send_xoff (.clk_in(rx_clk), .in(xoff), .clk_out(tx_clk), .out(xoff_tx));
always @(posedge tx_clk)
if(xoff_tx)
pause_time_req <= pause_time;
else if(xon_tx)
pause_time_req <= 0;
always @(posedge tx_clk)
if(tx_reset)
pause_req <= 0;
else
pause_req <= xon_tx | xoff_tx;
endmodule // flow_ctrl_rx
|