URL
https://opencores.org/ocsvn/ha1588/ha1588/trunk
Subversion Repositories ha1588
[/] [ha1588/] [trunk/] [rtl/] [tsu/] [ptp_parser.v] - Rev 30
Go to most recent revision | Compare with Previous | Blame | View Log
`timescale 1ns/1ns module ptp_parser ( input clk, rst, input [31:0] int_data, input int_valid, input int_sop, input int_eop, input [ 1:0] int_mod, output reg ptp_found, output reg [19:0] ptp_infor ); reg [31:0] int_data_d1; always @(posedge rst or posedge clk) begin if (rst) begin int_data_d1 <= 32'h00000000; end else begin if (int_valid) begin int_data_d1 <= int_data; end end end // packet parser: counter reg [ 9:0] int_cnt, bypass_ipv4_cnt, bypass_ipv6_cnt, bypass_udp_cnt, ptp_cnt; reg bypass_vlan, ptp_l2, bypass_ipv4, bypass_ipv6, found_udp, bypass_udp, ptp_l4, ptp_event; reg [ 3:0] ptp_msgid; reg [15:0] ptp_seqid; always @(posedge rst or posedge clk) begin if (rst) begin int_cnt <= 10'd0; bypass_ipv4_cnt <= 10'd0; bypass_ipv6_cnt <= 10'd0; bypass_udp_cnt <= 10'd0; end else begin if (int_valid && int_sop) int_cnt <= 10'd0; else if (int_valid) int_cnt <= int_cnt + 10'd1 - bypass_vlan - (bypass_ipv4 || bypass_ipv6 || bypass_udp); if (int_valid && int_sop) bypass_ipv4_cnt <= 10'd0; else if (int_valid && bypass_ipv4) bypass_ipv4_cnt <= bypass_ipv4_cnt + 10'd1; if (int_valid && int_sop) bypass_ipv6_cnt <= 10'd0; else if (int_valid && bypass_ipv6) bypass_ipv6_cnt <= bypass_ipv6_cnt + 10'd1; if (int_valid && int_sop) bypass_udp_cnt <= 10'd0; else if (int_valid && bypass_udp) bypass_udp_cnt <= bypass_udp_cnt + 10'd1; if (int_valid && int_sop) ptp_cnt <= 10'd0; else if (int_valid && (ptp_l2 || (bypass_udp_cnt>=10'd2 && ptp_l4))) ptp_cnt <= ptp_cnt + 10'd1; end end // packet parser: comparator always @(posedge rst or posedge clk) begin if (rst) begin bypass_vlan <= 1'b0; bypass_ipv4 <= 1'b0; bypass_ipv6 <= 1'b0; found_udp <= 1'b0; bypass_udp <= 1'b0; ptp_l2 <= 1'b0; ptp_l4 <= 1'b0; ptp_event <= 1'b0; end else if (int_valid && int_sop) begin bypass_vlan <= 1'b0; bypass_ipv4 <= 1'b0; bypass_ipv6 <= 1'b0; found_udp <= 1'b0; bypass_udp <= 1'b0; ptp_l2 <= 1'b0; ptp_l4 <= 1'b0; ptp_event <= 1'b0; end else begin // bypass vlan if (int_valid && int_cnt==10'd3 && int_data[31:16]==16'h8100) // ether_type == cvlan bypass_vlan <= 1'b1; else if (int_valid && int_cnt==10'd3 && int_data[31:16]==16'h9100) // ether_type == svlan bypass_vlan <= 1'b1; else if (int_valid && int_cnt==10'd4 && int_data[31:16]==16'h8100 && bypass_vlan) // svlan_type == cvlan bypass_vlan <= 1'b1; else if (int_valid && bypass_vlan) bypass_vlan <= 1'b0; // bypass ipv4 if (int_valid && (int_cnt==10'd3 || bypass_vlan && int_cnt==10'd4) && bypass_ipv4_cnt==10'd0 && int_data[31:16]==16'h0800 && int_data[15:12]==4'h4) // ether_type == ipv4, ip_version == 4 bypass_ipv4 <= 1'b1; else if (int_valid && bypass_ipv4_cnt==10'd4) bypass_ipv4 <= 1'b0; // bypass ipv6 if (int_valid && (int_cnt==10'd3 || bypass_vlan && int_cnt==10'd4) && bypass_ipv6_cnt==10'd0 && int_data[31:16]==16'h86dd && int_data[15:12]==4'h6) // ether_type == ipv6, ip_version == 6 bypass_ipv6 <= 1'b1; else if (int_valid && bypass_ipv6_cnt==10'd9) bypass_ipv6 <= 1'b0; // check if it is UDP if (int_valid && bypass_ipv4_cnt==10'd1 && int_data[ 7: 0]== 8'h11) // ipv4_protocol == udp found_udp <= 1'b1; else if (int_valid && bypass_ipv6_cnt==10'd1 && int_data[31:24]== 8'h11) // ipv6_protocol == udp found_udp <= 1'b1; // bypass udp if (int_valid && bypass_ipv4_cnt==10'd4 && bypass_udp_cnt==10'd0 && found_udp) // ipv4_udp bypass_udp <= 1'b1; else if (int_valid && bypass_ipv6_cnt==10'd9 && bypass_udp_cnt==10'd0 && found_udp) // ipv6_udp bypass_udp <= 1'b1; else if (int_valid && bypass_udp_cnt==10'd2) bypass_udp <= 1'b0; // check if it is L2 PTP if (int_valid && (int_cnt==10'd3 || bypass_vlan && int_cnt==10'd4) && int_data[31:16]==16'h88F7) // ether_type == ptp ptp_l2 <= 1'b1; // check if it is L4 PTP if (int_valid && bypass_udp_cnt==10'd0 && bypass_udp && (int_data[31:16]==16'h013f || int_data[31:16]==16'h0140)) // udp_dest_port == ptp_event || ptp_general ptp_l4 <= 1'b1; // check if it is PTP Event message if (int_valid && (int_cnt==10'd3 || bypass_vlan && int_cnt==10'd4) && int_data[31:16]==16'h88F7 && (int_data[11: 8]== 4'h0 || int_data[11:8]==4'h2)) // ptp_message_id == sync || delay_req ptp_event <= 1'b1; else if (int_valid && (int_cnt==10'd4 || bypass_vlan && int_cnt==10'd5) && bypass_udp_cnt==10'd1 && ptp_l4 && (int_data[11: 8]== 4'h0 || int_data[11:8]==4'h2)) // ptp_message_id == sync || delay_req ptp_event <= 1'b1; end end // ptp message reg [31:0] ptp_data; always @(posedge rst or posedge clk) begin if (rst) begin ptp_data <= 32'd0; ptp_msgid <= 4'd0; ptp_seqid <= 16'd0; end else if (int_valid && int_sop) begin ptp_data <= 32'd0; ptp_msgid <= 4'd0; ptp_seqid <= 16'd0; end else begin // get PTP identification information as additional information to Timestamp // ptp message body if (int_valid && (ptp_l2 || (bypass_udp_cnt>=10'd2 && ptp_l4))) ptp_data <= {int_data_d1[15:0], int_data[31:16]}; // message id if (int_valid && ptp_cnt==10'd1) ptp_msgid <= ptp_data[27:24]; // sequence id if (int_valid && ptp_cnt==10'd8) ptp_seqid <= ptp_data[15:0]; end end // parser output always @(posedge rst or posedge clk) begin if (rst) begin ptp_found <= 1'b0; ptp_infor <= 20'd0; end else if (int_valid && int_sop) begin ptp_found <= 1'b0; ptp_infor <= 20'd0; end else if (int_valid && ptp_cnt==10'd9) begin ptp_found <= ptp_event; ptp_infor <= {ptp_msgid, ptp_seqid}; // 4+16 end end endmodule
Go to most recent revision | Compare with Previous | Blame | View Log