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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
//
// Copyright 2019 Ettus Research, A National Instruments Company
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// Module: eth_ipv4_chdr64_dispatch
// Description:
// This module serves as an Ethernet endpoint for CHDR traffic.
// Ethernet frames arrive on the s_mac port where they are
// inspected and classified as CHDR or !CHDR. A frame contains
// CHDR payload if it is addressed to us (Eth and IP), is a UDP
// packet and the destination port is one of the CHDR ports.
// The UDP payload for CHDR frame is sent out of the m_chdr port
// in addition to source information for Eth, IP and UDP. All
// other traffic address to us (Eth) is sent to the m_cpu port.
// Traffic not addressed (Eth) to us is dropped.
//
// Parameters:
// - DROP_UNKNOWN_MAC: Drop packets not addressed to us?
//
// Signals:
// - s_mac_*: The input Ethernet stream from the MAC (plus tuser for trailing bytes + err)
// The tuser bits are the values defined in xge_mac_wrapper. Most
// relevant is tuser[3], which signals a bad packet that must be
// dropped.
// - m_chdr_*: The output CHDR stream to the rfnoc infrastructure
// - m_cpu_*: The output Ethernet stream to the CPU (plus tuser for trailing bytes + err)
// - my_eth_addr: The Ethernet (MAC) address of this endpoint
// - my_ipv4_addr: The IPv4 address of this endpoint
// - my_udp_chdr_port: The UDP port allocated for CHDR traffic on this endpoint
//
`default_nettype none
module eth_ipv4_chdr64_dispatch #(
parameter [0:0] DROP_UNKNOWN_MAC = 1
)(
// Clocking and reset interface
input wire clk,
input wire rst,
// Input 68bit AXI-Stream interface (from MAC)
input wire [63:0] s_mac_tdata,
input wire [3:0] s_mac_tuser,
input wire s_mac_tlast,
input wire s_mac_tvalid,
output wire s_mac_tready,
// Output AXI-Stream interface to CHDR infrastructure
output wire [63:0] m_chdr_tdata,
output wire [95:0] m_chdr_tuser,
output wire m_chdr_tlast,
output wire m_chdr_tvalid,
input wire m_chdr_tready,
// Output AXI-Stream interface to CPU
output wire [63:0] m_cpu_tdata,
output wire [3:0] m_cpu_tuser,
output wire m_cpu_tlast,
output wire m_cpu_tvalid,
input wire m_cpu_tready,
// Device addresses
input wire [47:0] my_eth_addr,
input wire [31:0] my_ipv4_addr,
input wire [15:0] my_udp_chdr_port
);
//---------------------------------------
// Ethernet/IP/UDP Magic Numbers
//---------------------------------------
localparam [47:0] ETH_ADDR_BCAST = {48{1'b1}};
localparam [15:0] ETH_TYPE_IPV4 = 16'h0800;
localparam [7:0] IPV4_PROTO_UDP = 8'h11;
//---------------------------------------
// Byte-swapping function
//---------------------------------------
function [15:0] bswap16(
input [15:0] din
);
begin
bswap16 = {din[0 +: 8], din[8 +: 8]};
end
endfunction
function [31:0] bswap32(
input [31:0] din
);
begin
bswap32 = {din[0 +: 8], din[8 +: 8],
din[16+: 8], din[24+: 8]};
end
endfunction
//---------------------------------------
// Input pipeline stage
//---------------------------------------
wire [63:0] in_tdata;
wire [3:0] in_tuser;
wire in_tlast, in_tvalid;
reg in_tready;
wire [63:0] cpu_tdata;
wire [3:0] cpu_tuser;
reg cpu_tlast, cpu_terror, cpu_tvalid;
wire cpu_tready;
wire [63:0] chdr_tdata;
wire [95:0] chdr_tuser;
wire chdr_tlast, chdr_tvalid, chdr_tready;
wire chdr_terror;
axi_fifo #(
.WIDTH(64+4+1),.SIZE(1)
) in_reg_i (
.clk(clk), .reset(rst), .clear(1'b0),
.i_tdata({s_mac_tlast, s_mac_tuser, s_mac_tdata}),
.i_tvalid(s_mac_tvalid), .i_tready(s_mac_tready),
.o_tdata({in_tlast, in_tuser, in_tdata}),
.o_tvalid(in_tvalid), .o_tready(in_tready),
.space(), .occupied()
);
//---------------------------------------
// Classification state machine
//---------------------------------------
localparam [3:0] ST_IDLE_ETH_L0 = 4'd0;
localparam [3:0] ST_ETH_L1 = 4'd1;
localparam [3:0] ST_ETH_L2_IPV4_L0 = 4'd2;
localparam [3:0] ST_IPV4_L1 = 4'd3;
localparam [3:0] ST_IPV4_L2 = 4'd4;
localparam [3:0] ST_IPV4_UDP_HDR = 4'd5;
localparam [3:0] ST_FWD_CHDR = 4'd6;
localparam [3:0] ST_FWD_CPU = 4'd7;
localparam [3:0] ST_DROP_PKT = 4'd8;
// State info
reg [3:0] state = ST_IDLE_ETH_L0;
reg discard_cpu_pkt = 1'b0;
// Cached fields
reg [47:0] eth_dst_addr_cached, eth_src_addr_cached;
reg [31:0] ipv4_src_addr_cached;
reg [15:0] udp_src_port_cached;
always @(posedge clk) begin
if (rst) begin
state <= ST_IDLE_ETH_L0;
discard_cpu_pkt <= 1'b0;
end else if (in_tvalid && in_tready) begin
case (state)
// Idle or First line of Eth frame
// ----------------------------------
// | DstMAC_HI (16) | Preamble (48) |
// ----------------------------------
ST_IDLE_ETH_L0: begin
discard_cpu_pkt <= 1'b0;
if (!in_tlast) begin
// Just cache addresses. No decisions to be made.
eth_dst_addr_cached[47:32] <= bswap16(in_tdata[48 +: 16]);
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else begin
state <= ST_ETH_L1;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// Second line of Eth frame
// -----------------------------------
// | SrcMAC_HI (32) | DstMAC_LO (32) |
// -----------------------------------
ST_ETH_L1: begin
if (!in_tlast) begin
// Just cache addresses. No decisions to be made.
eth_dst_addr_cached[31:0] <= bswap32(in_tdata[0 +: 32]);
eth_src_addr_cached[47:16] <= bswap32(in_tdata[32 +: 32]);
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else begin
state <= ST_ETH_L2_IPV4_L0;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// End Eth frame and start of IP
// --------------------------------------------------
// | IPv4_Line0 (32)| EthType (16) | SrcMAC_LO (16) |
// --------------------------------------------------
ST_ETH_L2_IPV4_L0: begin
if (!in_tlast) begin
eth_src_addr_cached[15:0] <= bswap16(in_tdata[0 +: 16]);
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else if (eth_dst_addr_cached == ETH_ADDR_BCAST) begin
// If Eth destination is bcast then fwd to CPU
state <= ST_FWD_CPU;
end else if (eth_dst_addr_cached != my_eth_addr && DROP_UNKNOWN_MAC) begin
// If Eth destination is not us then drop the packet
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else if (bswap16(in_tdata[16 +: 16]) != ETH_TYPE_IPV4) begin
// If this is not an IPv4 frame then fwd to CPU
state <= ST_FWD_CPU;
end else begin
// Otherwise continue classification
// We know this is an IPv4 frame
state <= ST_IPV4_L1;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// Continue IPv4 header
// -------------------------------------
// | IPv4_Line2 (32) | IPv4_Line1 (32) |
// -------------------------------------
ST_IPV4_L1: begin
if (!in_tlast) begin
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else if (in_tdata[40 +: 8] != IPV4_PROTO_UDP) begin
// If this is not a UDP frame then fwd to CPU
state <= ST_FWD_CPU;
end else begin
// Otherwise continue classification
// We know this is a UDP frame
state <= ST_IPV4_L2;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// Continue IPv4 header
// -----------------------------------
// | IPDstAddr (32) | IPSrcAddr (32) |
// -----------------------------------
ST_IPV4_L2: begin
if (!in_tlast) begin
ipv4_src_addr_cached <= bswap32(in_tdata[0 +: 32]);
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else if (bswap32(in_tdata[32 +: 32]) != my_ipv4_addr) begin
// If IPv4 destination is not us then fwd to CPU
state <= ST_FWD_CPU;
end else begin
// Otherwise continue classification
// We know this is a UDP frame for us
state <= ST_IPV4_UDP_HDR;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// UDP header
// -----------------------------------------------------------
// | Chksum (16) | Length (16) | DstPort (16) | SrcPort (16) |
// -----------------------------------------------------------
ST_IPV4_UDP_HDR: begin
if (!in_tlast) begin
udp_src_port_cached <= bswap16(in_tdata[0 +: 16]);
if (in_tuser[3]) begin
state <= ST_DROP_PKT;
discard_cpu_pkt <= 1'b1;
end else if (bswap16(in_tdata[16 +: 16]) == my_udp_chdr_port) begin
// The UDP port matches CHDR port
state <= ST_FWD_CHDR;
discard_cpu_pkt <= 1'b1;
end else begin
// Not the CHDR port. Forward to CPU
state <= ST_FWD_CPU;
end
end else begin
// Short packet: Violates min eth size of 64 bytes
state <= ST_IDLE_ETH_L0;
end
end
// CHDR Payload
ST_FWD_CHDR: begin
discard_cpu_pkt <= 1'b0;
if (in_tlast)
state <= ST_IDLE_ETH_L0;
end
// NotCHDR Payload: Send to CPU
ST_FWD_CPU: begin
if (in_tlast)
state <= ST_IDLE_ETH_L0;
end
// Unwanted Payload: Drop
ST_DROP_PKT: begin
discard_cpu_pkt <= 1'b0;
if (in_tlast)
state <= ST_IDLE_ETH_L0;
end
// We should never get here
default: begin
state <= ST_IDLE_ETH_L0;
end
endcase
end
end
always @(*) begin
case (state)
ST_IDLE_ETH_L0: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_ETH_L1: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_ETH_L2_IPV4_L0: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_IPV4_L1: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_IPV4_L2: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_IPV4_UDP_HDR: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = in_tlast; // Illegal short packet: Drop it
end
ST_FWD_CHDR: begin
in_tready = chdr_tready & (discard_cpu_pkt ? cpu_tready : 1'b1);
cpu_tvalid = discard_cpu_pkt;
cpu_tlast = discard_cpu_pkt;
cpu_terror = discard_cpu_pkt;
end
ST_FWD_CPU: begin
in_tready = cpu_tready;
cpu_tvalid = in_tvalid;
cpu_tlast = in_tlast;
cpu_terror = 1'b0;
end
ST_DROP_PKT: begin
in_tready = discard_cpu_pkt ? cpu_tready : 1'b1;
cpu_tvalid = discard_cpu_pkt;
cpu_tlast = discard_cpu_pkt;
cpu_terror = discard_cpu_pkt;
end
default: begin
in_tready = 1'b0;
cpu_tvalid = 1'b0;
cpu_tlast = 1'b0;
cpu_terror = 1'b0;
end
endcase
end
assign cpu_tdata = in_tdata;
assign cpu_tuser = in_tuser;
assign chdr_tdata = in_tdata;
assign chdr_tuser = {udp_src_port_cached, ipv4_src_addr_cached, eth_src_addr_cached};
assign chdr_tlast = in_tlast;
assign chdr_tvalid = in_tvalid && (state == ST_FWD_CHDR);
assign chdr_terror = in_tuser[3];
//---------------------------------------
// Output processing
//---------------------------------------
wire [63:0] o_cpu_tdata;
wire [3:0] o_cpu_tuser;
wire o_cpu_terror, o_cpu_tlast, o_cpu_tvalid, o_cpu_tready;
axi_fifo #(
.WIDTH(64+4+1+1),.SIZE(1)
) out_reg_cpu_i (
.clk(clk), .reset(rst), .clear(1'b0),
.i_tdata({cpu_tlast, cpu_terror, cpu_tuser, cpu_tdata}),
.i_tvalid(cpu_tvalid), .i_tready(cpu_tready),
.o_tdata({o_cpu_tlast, o_cpu_terror, o_cpu_tuser, o_cpu_tdata}),
.o_tvalid(o_cpu_tvalid), .o_tready(o_cpu_tready),
.space(), .occupied()
);
// We cannot make a CHDR/noCHDR routing decision until we are in the middle
// of a packet so we use a packet gate for the CPU path because we can rewind
// the write pointer and drop the packet in case it's destined for the CHDR
// path.
// NOTE: The SIZE of this FIFO must be 11 to accomodate a 9000 byte jumbo frame
// regardless of the CHDR MTU
axi_packet_gate #( .WIDTH(64+4), .SIZE(11), .USE_AS_BUFF(0) ) cpu_out_gate_i (
.clk(clk), .reset(rst), .clear(1'b0),
.i_tdata({o_cpu_tuser, o_cpu_tdata}), .i_tlast(o_cpu_tlast), .i_terror(o_cpu_terror | o_cpu_tuser[3]),
.i_tvalid(o_cpu_tvalid), .i_tready(o_cpu_tready),
.o_tdata({m_cpu_tuser, m_cpu_tdata}), .o_tlast(m_cpu_tlast),
.o_tvalid(m_cpu_tvalid), .o_tready(m_cpu_tready)
);
wire [63:0] o_chdr_tdata;
wire [95:0] o_chdr_tuser;
wire o_chdr_tlast, o_chdr_tvalid, o_chdr_tready;
wire o_chdr_data_tvalid, o_chdr_user_tvalid;
wire o_chdr_data_tready, o_chdr_user_tready;
axi_fifo #(
.WIDTH(96),.SIZE(8)
) chdr_user_fifo_i (
.clk(clk), .reset(rst), .clear(1'b0),
.i_tdata(chdr_tuser),
.i_tvalid(chdr_tvalid & chdr_tready & chdr_tlast & ~chdr_terror), .i_tready(/* Always ready */),
.o_tdata(o_chdr_tuser),
.o_tvalid(o_chdr_user_tvalid), .o_tready(o_chdr_user_tready),
.space(), .occupied()
);
axi_packet_gate #(
.WIDTH(64), .SIZE(11), .USE_AS_BUFF(1), .MIN_PKT_SIZE(1)
) chdr_out_gate_i (
.clk(clk), .reset(rst), .clear(1'b0),
.i_tdata(chdr_tdata), .i_tlast(chdr_tlast), .i_terror(chdr_terror),
.i_tvalid(chdr_tvalid), .i_tready(chdr_tready),
.o_tdata(o_chdr_tdata), .o_tlast(o_chdr_tlast),
.o_tvalid(o_chdr_data_tvalid), .o_tready(o_chdr_data_tready)
);
assign o_chdr_tvalid = o_chdr_data_tvalid & o_chdr_user_tvalid;
assign o_chdr_user_tready = o_chdr_tready & o_chdr_data_tvalid & o_chdr_tlast;
assign o_chdr_data_tready = o_chdr_tready & o_chdr_user_tvalid;
chdr_trim_payload #(
.CHDR_W(64), .USER_W(96)
) chdr_trim_i (
.clk(clk), .rst(rst),
.s_axis_tdata(o_chdr_tdata), .s_axis_tuser(o_chdr_tuser),
.s_axis_tlast(o_chdr_tlast), .s_axis_tvalid(o_chdr_tvalid), .s_axis_tready(o_chdr_tready),
.m_axis_tdata(m_chdr_tdata), .m_axis_tuser(m_chdr_tuser),
.m_axis_tlast(m_chdr_tlast), .m_axis_tvalid(m_chdr_tvalid), .m_axis_tready(m_chdr_tready)
);
endmodule // eth_ipv4_chdr64_dispatch
`default_nettype wire
|