////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
//
|
//
|
// Filename: addepad.v
|
// Filename: addepad.v
|
//
|
//
|
// Project: OpenArty, an entirely open SoC based upon the Arty platform
|
// Project: OpenArty, an entirely open SoC based upon the Arty platform
|
//
|
//
|
// Purpose: To force the minimum packet size of an ethernet frame to be
|
// Purpose: To force the minimum packet size of an ethernet frame to be
|
// a minimum of 64 bytes. This assumes that the CRC will be
|
// a minimum of 64 bytes. This assumes that the CRC will be
|
// adding 32-bits to the packet after us, so instead of padding to
|
// adding 32-bits to the packet after us, so instead of padding to
|
// 64 bytes, we'll pad to 60 bytes instead. If the user is providing
|
// 64 bytes, we'll pad to 60 bytes instead. If the user is providing
|
// their own CRC, they'll need to adjust the padding themselves.
|
// their own CRC, they'll need to adjust the padding themselves.
|
//
|
//
|
// Creator: Dan Gisselquist, Ph.D.
|
// Creator: Dan Gisselquist, Ph.D.
|
// Gisselquist Technology, LLC
|
// Gisselquist Technology, LLC
|
//
|
//
|
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
//
|
//
|
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
|
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
|
//
|
//
|
// This program is free software (firmware): you can redistribute it and/or
|
// This program is free software (firmware): you can redistribute it and/or
|
// modify it under the terms of the GNU General Public License as published
|
// 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
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
// your option) any later version.
|
// your option) any later version.
|
//
|
//
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
// for more details.
|
// for more details.
|
//
|
//
|
// You should have received a copy of the GNU General Public License along
|
// You should have received a copy of the GNU General Public License along
|
// with this program. (It's in the $(ROOT)/doc directory, run make with no
|
// with this program. (It's in the $(ROOT)/doc directory, run make with no
|
// target there if the PDF file isn't present.) If not, see
|
// target there if the PDF file isn't present.) If not, see
|
// <http://www.gnu.org/licenses/> for a copy.
|
// <http://www.gnu.org/licenses/> for a copy.
|
//
|
//
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
// http://www.gnu.org/licenses/gpl.html
|
// http://www.gnu.org/licenses/gpl.html
|
//
|
//
|
//
|
//
|
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
//
|
//
|
//
|
//
|
module addepad(i_clk, i_ce, i_en, i_cancel, i_v, i_d, o_v, o_d);
|
module addepad(i_clk, i_ce, i_en, i_cancel, i_v, i_d, o_v, o_d);
|
|
parameter MINNIBBLES=120;
|
|
localparam LGNCOUNT=(MINNIBBLES<63)? 6
|
|
:((MINNIBBLES<127)? 7:((MINNIBBLES<255)? 8:9));
|
input i_clk, i_ce, i_en, i_cancel;
|
input i_clk, i_ce, i_en, i_cancel;
|
input i_v; // Valid
|
input i_v; // Valid
|
input [3:0] i_d; // Data nibble
|
input [3:0] i_d; // Data nibble
|
output reg o_v;
|
output reg o_v;
|
output reg [3:0] o_d;
|
output reg [3:0] o_d;
|
|
|
// 60 bytes translates to 120 nibbles, so let's keep track of our
|
reg [(LGNCOUNT-1):0] r_ncnt;
|
// minimum number of nibbles to transmit
|
|
reg [119:0] r_v;
|
|
|
|
initial r_v = 120'hff_ffff_ffff_ffff_ffff_ffff_ffff_ffff;
|
|
initial o_v = 1'b0;
|
initial o_v = 1'b0;
|
always @(posedge i_clk)
|
always @(posedge i_clk)
|
if (i_ce)
|
if (i_ce)
|
begin
|
begin
|
if (((!i_v)&&(!o_v))||(i_cancel))
|
if (((!i_v)&&(!o_v))||(i_cancel))
|
begin
|
begin
|
r_v <= 120'hff_ffff_ffff_ffff_ffff_ffff_ffff_ffff;
|
r_ncnt <= 0;
|
o_v <= 1'b0;
|
o_v <= 1'b0;
|
end else if (i_v)
|
end else if (i_v)
|
begin
|
begin
|
o_v <= i_v;
|
o_v <= i_v;
|
r_v <= { r_v[118:0], 1'b0 };
|
r_ncnt <= (r_ncnt<MINNIBBLES) ? r_ncnt+1'b1 : r_ncnt;
|
end else begin
|
end else begin
|
o_v <= r_v[119];
|
o_v <= (r_ncnt<MINNIBBLES);
|
r_v <= { r_v[118:0], 1'b0 };
|
r_ncnt <= (r_ncnt<MINNIBBLES) ? r_ncnt+1'b1 : r_ncnt;
|
end
|
end
|
|
|
if (i_v)
|
if (i_v)
|
o_d <= i_d;
|
o_d <= i_d;
|
else
|
else
|
o_d <= 4'h0;
|
o_d <= 4'h0;
|
end
|
end
|
|
|
endmodule
|
endmodule
|
|
|