OpenCores
URL https://opencores.org/ocsvn/xge_mac/xge_mac/trunk

Subversion Repositories xge_mac

[/] [xge_mac/] [trunk/] [rtl/] [verilog/] [stats.v] - Blame information for rev 27

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 23 antanguay
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name "wishbone.v"                                      ////
4
////                                                              ////
5
////  This file is part of the "10GE MAC" project                 ////
6
////  http://www.opencores.org/cores/xge_mac/                     ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - A. Tanguay (antanguay@opencores.org)                  ////
10
////                                                              ////
11
//////////////////////////////////////////////////////////////////////
12
////                                                              ////
13
//// Copyright (C) 2008 AUTHORS. All rights reserved.             ////
14
////                                                              ////
15
//// This source file may be used and distributed without         ////
16
//// restriction provided that this copyright statement is not    ////
17
//// removed from the file and that any derivative work contains  ////
18
//// the original copyright notice and the associated disclaimer. ////
19
////                                                              ////
20
//// This source file is free software; you can redistribute it   ////
21
//// and/or modify it under the terms of the GNU Lesser General   ////
22
//// Public License as published by the Free Software Foundation; ////
23
//// either version 2.1 of the License, or (at your option) any   ////
24
//// later version.                                               ////
25
////                                                              ////
26
//// This source is distributed in the hope that it will be       ////
27
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
28
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
29
//// PURPOSE.  See the GNU Lesser General Public License for more ////
30
//// details.                                                     ////
31
////                                                              ////
32
//// You should have received a copy of the GNU Lesser General    ////
33
//// Public License along with this source; if not, download it   ////
34
//// from http://www.opencores.org/lgpl.shtml                     ////
35
////                                                              ////
36
//////////////////////////////////////////////////////////////////////
37
 
38
 
39
`include "defines.v"
40
 
41
module stats(/*AUTOARG*/
42
  // Outputs
43 24 antanguay
  stats_tx_pkts, stats_tx_octets, stats_rx_pkts, stats_rx_octets,
44 23 antanguay
  // Inputs
45 24 antanguay
  wb_rst_i, wb_clk_i, txsfifo_wen, txsfifo_wdata, rxsfifo_wen,
46
  rxsfifo_wdata, reset_xgmii_tx_n, reset_xgmii_rx_n, clk_xgmii_tx,
47 27 antanguay
  clk_xgmii_rx, clear_stats_tx_pkts, clear_stats_tx_octets,
48
  clear_stats_rx_pkts, clear_stats_rx_octets
49 23 antanguay
  );
50
 
51
 
52 24 antanguay
/*AUTOINPUT*/
53
// Beginning of automatic inputs (from unused autoinst inputs)
54 27 antanguay
input                   clear_stats_rx_octets;  // To stats_sm0 of stats_sm.v
55
input                   clear_stats_rx_pkts;    // To stats_sm0 of stats_sm.v
56
input                   clear_stats_tx_octets;  // To stats_sm0 of stats_sm.v
57
input                   clear_stats_tx_pkts;    // To stats_sm0 of stats_sm.v
58 24 antanguay
input                   clk_xgmii_rx;           // To rx_stats_fifo0 of rx_stats_fifo.v
59
input                   clk_xgmii_tx;           // To tx_stats_fifo0 of tx_stats_fifo.v
60
input                   reset_xgmii_rx_n;       // To rx_stats_fifo0 of rx_stats_fifo.v
61
input                   reset_xgmii_tx_n;       // To tx_stats_fifo0 of tx_stats_fifo.v
62
input [13:0]            rxsfifo_wdata;          // To rx_stats_fifo0 of rx_stats_fifo.v
63
input                   rxsfifo_wen;            // To rx_stats_fifo0 of rx_stats_fifo.v
64
input [13:0]            txsfifo_wdata;          // To tx_stats_fifo0 of tx_stats_fifo.v
65
input                   txsfifo_wen;            // To tx_stats_fifo0 of tx_stats_fifo.v
66
input                   wb_clk_i;               // To tx_stats_fifo0 of tx_stats_fifo.v, ...
67
input                   wb_rst_i;               // To tx_stats_fifo0 of tx_stats_fifo.v, ...
68
// End of automatics
69 23 antanguay
 
70 24 antanguay
/*AUTOOUTPUT*/
71
// Beginning of automatic outputs (from unused autoinst outputs)
72
output [31:0]           stats_rx_octets;        // From stats_sm0 of stats_sm.v
73
output [31:0]           stats_rx_pkts;          // From stats_sm0 of stats_sm.v
74
output [31:0]           stats_tx_octets;        // From stats_sm0 of stats_sm.v
75
output [31:0]           stats_tx_pkts;          // From stats_sm0 of stats_sm.v
76 23 antanguay
// End of automatics
77
 
78
/*AUTOWIRE*/
79 24 antanguay
// Beginning of automatic wires (for undeclared instantiated-module outputs)
80
wire [13:0]             rxsfifo_rdata;          // From rx_stats_fifo0 of rx_stats_fifo.v
81
wire                    rxsfifo_rempty;         // From rx_stats_fifo0 of rx_stats_fifo.v
82
wire [13:0]             txsfifo_rdata;          // From tx_stats_fifo0 of tx_stats_fifo.v
83
wire                    txsfifo_rempty;         // From tx_stats_fifo0 of tx_stats_fifo.v
84
// End of automatics
85 23 antanguay
 
86 24 antanguay
tx_stats_fifo tx_stats_fifo0(/*AUTOINST*/
87
                             // Outputs
88
                             .txsfifo_rdata     (txsfifo_rdata[13:0]),
89
                             .txsfifo_rempty    (txsfifo_rempty),
90
                             // Inputs
91
                             .clk_xgmii_tx      (clk_xgmii_tx),
92
                             .reset_xgmii_tx_n  (reset_xgmii_tx_n),
93
                             .wb_clk_i          (wb_clk_i),
94
                             .wb_rst_i          (wb_rst_i),
95
                             .txsfifo_wdata     (txsfifo_wdata[13:0]),
96
                             .txsfifo_wen       (txsfifo_wen));
97 23 antanguay
 
98 24 antanguay
rx_stats_fifo rx_stats_fifo0(/*AUTOINST*/
99
                             // Outputs
100
                             .rxsfifo_rdata     (rxsfifo_rdata[13:0]),
101
                             .rxsfifo_rempty    (rxsfifo_rempty),
102
                             // Inputs
103
                             .clk_xgmii_rx      (clk_xgmii_rx),
104
                             .reset_xgmii_rx_n  (reset_xgmii_rx_n),
105
                             .wb_clk_i          (wb_clk_i),
106
                             .wb_rst_i          (wb_rst_i),
107
                             .rxsfifo_wdata     (rxsfifo_wdata[13:0]),
108
                             .rxsfifo_wen       (rxsfifo_wen));
109 23 antanguay
 
110 24 antanguay
stats_sm stats_sm0(/*AUTOINST*/
111
                   // Outputs
112
                   .stats_tx_octets     (stats_tx_octets[31:0]),
113
                   .stats_tx_pkts       (stats_tx_pkts[31:0]),
114
                   .stats_rx_octets     (stats_rx_octets[31:0]),
115
                   .stats_rx_pkts       (stats_rx_pkts[31:0]),
116
                   // Inputs
117
                   .wb_clk_i            (wb_clk_i),
118
                   .wb_rst_i            (wb_rst_i),
119
                   .txsfifo_rdata       (txsfifo_rdata[13:0]),
120
                   .txsfifo_rempty      (txsfifo_rempty),
121
                   .rxsfifo_rdata       (rxsfifo_rdata[13:0]),
122 27 antanguay
                   .rxsfifo_rempty      (rxsfifo_rempty),
123
                   .clear_stats_tx_octets(clear_stats_tx_octets),
124
                   .clear_stats_tx_pkts (clear_stats_tx_pkts),
125
                   .clear_stats_rx_octets(clear_stats_rx_octets),
126
                   .clear_stats_rx_pkts (clear_stats_rx_pkts));
127 23 antanguay
 
128
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.