diff options
| author | Ben Hilburn <ben.hilburn@ettus.com> | 2013-10-10 10:17:27 -0700 | 
|---|---|---|
| committer | Ben Hilburn <ben.hilburn@ettus.com> | 2013-10-10 10:17:27 -0700 | 
| commit | 0df4b801a34697f2058b4a7b95e08d2a0576c9db (patch) | |
| tree | be10e78d1a97c037a9e7492360a178d1873b9c09 /fpga/usrp2/vrt | |
| parent | 6e7bc850b66e8188718248b76b729c7cf9c89700 (diff) | |
| download | uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.tar.gz uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.tar.bz2 uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.zip  | |
Squashed B200 FPGA Source. Code from Josh Blum, Ian Buckley, and Matt Ettus.
Diffstat (limited to 'fpga/usrp2/vrt')
| -rw-r--r-- | fpga/usrp2/vrt/vita_packet_demux36.v | 102 | 
1 files changed, 102 insertions, 0 deletions
diff --git a/fpga/usrp2/vrt/vita_packet_demux36.v b/fpga/usrp2/vrt/vita_packet_demux36.v new file mode 100644 index 000000000..83fb26215 --- /dev/null +++ b/fpga/usrp2/vrt/vita_packet_demux36.v @@ -0,0 +1,102 @@ +// +// Copyright 2012 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/>. +// + +//demux an input stream based on the SID +//output packet has SID removed from header + +module vita_packet_demux36 +#( +    parameter NUMCHAN = 1, +    parameter SID_BASE = 0 +) +( +    input clk, input rst, + +    input [35:0] in_data, +    input in_src_rdy, +    output in_dst_rdy, + +    output [35:0] out_data, +    output [NUMCHAN-1:0] out_src_rdy, +    input [NUMCHAN-1:0] out_dst_rdy +); + +    reg [1:0] state; +    localparam STATE_WAIT_HDR = 0; +    localparam STATE_PROC_SID = 1; +    localparam STATE_WRITE_HDR = 2; +    localparam STATE_FORWARD = 3; + +    reg [31:0] hdr; +    reg [NUMCHAN-1:0] sid; +    wire has_sid = in_data[28]; +    reg has_sid_reg; + +    wire my_out_dst_rdy = out_dst_rdy[sid]; +    wire my_out_src_rdy = out_src_rdy[sid]; + +    always @(posedge clk) begin +        if (rst) begin +            state <= STATE_WAIT_HDR; +        end +        else case(state) + +        STATE_WAIT_HDR: begin +            if (in_src_rdy && in_dst_rdy && in_data[32]) begin +                state <= (has_sid)? STATE_PROC_SID : STATE_WRITE_HDR; +            end +            sid <= 0; +            hdr <= in_data[31:0]; +            has_sid_reg <= has_sid; +        end + +        STATE_PROC_SID: begin +            if (in_src_rdy && in_dst_rdy) begin +                state <= STATE_WRITE_HDR; +                sid <= in_data[31:0] - SID_BASE; +                hdr[28] <= 1'b0; //clear has sid +                hdr[15:0] <= hdr[15:0] - 1'b1; //subtract a line +            end +        end + +        STATE_WRITE_HDR: begin +            if (my_out_src_rdy && my_out_dst_rdy) begin +                state <= STATE_FORWARD; +            end +        end + +        STATE_FORWARD: begin +            if (my_out_src_rdy && my_out_dst_rdy && out_data[33]) begin +                state <= STATE_WAIT_HDR; +            end +        end + +        endcase //state +    end + +    assign out_data = (state == STATE_WRITE_HDR)? {4'b0001, hdr} : in_data; +    wire out_src_rdy_i = (state == STATE_WRITE_HDR)? 1'b1 : ((state == STATE_FORWARD)? in_src_rdy : 1'b0); +    assign in_dst_rdy = (state == STATE_WAIT_HDR || state == STATE_PROC_SID)? 1'b1 : ((state == STATE_FORWARD)? my_out_dst_rdy : 1'b0); + +    genvar i; +    generate +    for(i = 0; i < NUMCHAN; i = i + 1) begin:valid_assign +        assign out_src_rdy[i] = (i == sid)? out_src_rdy_i : 1'b0; +    end +    endgenerate + +endmodule //vita_packet_demux36  | 
