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

Subversion Repositories ethernet_tri_mode

[/] [ethernet_tri_mode/] [trunk/] [bench/] [verilog/] [tb_top.v] - Blame information for rev 35

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 6 maverickis
`timescale 1 ns/100ps
2 5 maverickis
//////////////////////////////////////////////////////////////////////
3
////                                                              ////
4 6 maverickis
////  tb_top.v                                                    ////
5 5 maverickis
////                                                              ////
6
////  This file is part of the Ethernet IP core project           ////
7
////  http://www.opencores.org/projects.cgi/web/ethernet_tri_mode/////
8
////                                                              ////
9
////  Author(s):                                                  ////
10
////      - Jon Gao (gaojon@yahoo.com)                            ////
11
////                                                              ////
12
////                                                              ////
13
//////////////////////////////////////////////////////////////////////
14
////                                                              ////
15
//// Copyright (C) 2001 Authors                                   ////
16
////                                                              ////
17
//// This source file may be used and distributed without         ////
18
//// restriction provided that this copyright statement is not    ////
19
//// removed from the file and that any derivative work contains  ////
20
//// the original copyright notice and the associated disclaimer. ////
21
////                                                              ////
22
//// This source file is free software; you can redistribute it   ////
23
//// and/or modify it under the terms of the GNU Lesser General   ////
24
//// Public License as published by the Free Software Foundation; ////
25
//// either version 2.1 of the License, or (at your option) any   ////
26
//// later version.                                               ////
27
////                                                              ////
28
//// This source is distributed in the hope that it will be       ////
29
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
30
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
31
//// PURPOSE.  See the GNU Lesser General Public License for more ////
32
//// details.                                                     ////
33
////                                                              ////
34
//// You should have received a copy of the GNU Lesser General    ////
35
//// Public License along with this source; if not, download it   ////
36
//// from http://www.opencores.org/lgpl.shtml                     ////
37
////                                                              ////
38
//////////////////////////////////////////////////////////////////////
39
//                                                                    
40
// CVS Revision History                                               
41
//                                                                    
42 6 maverickis
// $Log: not supported by cvs2svn $
43 28 maverickis
// Revision 1.3  2006/01/19 14:07:51  maverickist
44
// verification is complete.
45
//
46 7 maverickis
// Revision 1.2  2005/12/16 06:44:13  Administrator
47
// replaced tab with space.
48
// passed 9.6k length frame test.
49
//
50 6 maverickis
// Revision 1.1.1.1  2005/12/13 01:51:44  Administrator
51
// no message
52
// 
53 5 maverickis
 
54
module tb_top (
55
);
56
//******************************************************************************
57
//internal signals                                                              
58
//******************************************************************************
59
                                //system signals
60 6 maverickis
reg                             Reset                                   ;
61
reg                             Clk_125M                                ;
62
reg                             Clk_user                                ;
63
reg                             Clk_reg                                 ;
64 5 maverickis
                                //user interface 
65 6 maverickis
wire                    Rx_mac_ra                               ;
66
wire                    Rx_mac_rd                               ;
67
wire    [31:0]   Rx_mac_data                             ;
68
wire    [1:0]    Rx_mac_BE                               ;
69
wire                    Rx_mac_pa                               ;
70
wire                    Rx_mac_sop                              ;
71
wire                    Rx_mac_eop                              ;
72 5 maverickis
                                //user interface 
73 6 maverickis
wire                    Tx_mac_wa                       ;
74
wire                    Tx_mac_wr                       ;
75
wire    [31:0]   Tx_mac_data                     ;
76
wire    [1:0]    Tx_mac_BE                               ;//big endian
77
wire                    Tx_mac_sop                      ;
78
wire                    Tx_mac_eop                              ;
79 5 maverickis
                                //Phy interface          
80
                                //Phy interface                 
81 6 maverickis
wire                    Gtx_clk                                 ;//used only in GMII mode
82
wire                    Rx_clk                                  ;
83
wire                    Tx_clk                                  ;//used only in MII mode
84
wire                    Tx_er                                   ;
85
wire                    Tx_en                                   ;
86
wire    [7:0]    Txd                                             ;
87
wire                    Rx_er                                   ;
88
wire                    Rx_dv                                   ;
89
wire    [7:0]    Rxd                                             ;
90
wire                    Crs                                             ;
91
wire                    Col                                             ;
92 7 maverickis
wire            CSB                     ;
93
wire            WRB                     ;
94
wire    [15:0]  CD_in                   ;
95
wire    [15:0]  CD_out                  ;
96
wire    [7:0]   CA                      ;
97 5 maverickis
                                //Phy int host interface     
98 6 maverickis
wire                    Line_loop_en                    ;
99
wire    [2:0]    Speed                                   ;
100 7 maverickis
                                //mii
101 28 maverickis
wire            Mdo                         ;// MII Management Data out
102
wire            Mdi                         ;// MII Management Data In
103
wire            MdoEn                   ;// MII Management Data out enable
104 6 maverickis
wire            Mdc                             ;// MII Management Data Clock   
105 7 maverickis
wire            CPU_init_end            ;
106 5 maverickis
//******************************************************************************
107
//internal signals                                                              
108
//******************************************************************************
109
 
110 6 maverickis
initial
111
        begin
112
                        Reset   =1;
113
        #20             Reset   =0;
114
        end
115
always
116
        begin
117
        #4              Clk_125M=0;
118
        #4              Clk_125M=1;
119
        end
120
 
121
always
122
        begin
123
        #5              Clk_user=0;
124
        #5              Clk_user=1;
125
        end
126
 
127
always
128
        begin
129
        #10             Clk_reg=0;
130
        #10             Clk_reg=1;
131
        end
132
 
133
 
134
initial
135
        begin
136
        $shm_open("tb_top.shm",,900000000,);
137
        $shm_probe("AS");
138
        end
139
 
140
 
141 5 maverickis
MAC_top U_MAC_top(
142 6 maverickis
 //system signals                       (//system signals           ),
143 5 maverickis
.Reset                                          (Reset                                      ),
144
.Clk_125M                                       (Clk_125M                                   ),
145
.Clk_user                                       (Clk_user                                   ),
146
.Clk_reg                                            (Clk_reg                                    ),
147 7 maverickis
.Speed                          (Speed                      ),
148 6 maverickis
 //user interface               (//user interface           ),
149 5 maverickis
.Rx_mac_ra                                      (Rx_mac_ra                                  ),
150
.Rx_mac_rd                                      (Rx_mac_rd                                  ),
151
.Rx_mac_data                                (Rx_mac_data                                ),
152
.Rx_mac_BE                                      (Rx_mac_BE                                  ),
153
.Rx_mac_pa                                      (Rx_mac_pa                                  ),
154
.Rx_mac_sop                                     (Rx_mac_sop                                 ),
155
.Rx_mac_eop                                     (Rx_mac_eop                                 ),
156 6 maverickis
 //user interface               (//user interface           ),
157 5 maverickis
.Tx_mac_wa                              (Tx_mac_wa                          ),
158
.Tx_mac_wr                              (Tx_mac_wr                          ),
159
.Tx_mac_data                        (Tx_mac_data                        ),
160
.Tx_mac_BE                                      (Tx_mac_BE                                  ),
161
.Tx_mac_sop                             (Tx_mac_sop                         ),
162
.Tx_mac_eop                                     (Tx_mac_eop                                 ),
163 6 maverickis
 //Phy interface                (//Phy interface            ),
164
 //Phy interface                            (//Phy interface                    ),
165 5 maverickis
.Gtx_clk                                            (Gtx_clk                                    ),
166
.Rx_clk                                         (Rx_clk                                     ),
167
.Tx_clk                                         (Tx_clk                                     ),
168
.Tx_er                                          (Tx_er                                      ),
169
.Tx_en                                          (Tx_en                                      ),
170
.Txd                                                (Txd                                                ),
171
.Rx_er                                          (Rx_er                                      ),
172
.Rx_dv                                          (Rx_dv                                      ),
173
.Rxd                                                (Rxd                                                ),
174
.Crs                                                (Crs                                                ),
175
.Col                                                (Col                                                ),
176 7 maverickis
//host interface
177
.CSB                            (CSB                        ),
178
.WRB                            (WRB                        ),
179
.CD_in                          (CD_in                      ),
180
.CD_out                         (CD_out                     ),
181
.CA                             (CA                         ),
182 6 maverickis
 //MII interface signals        (//MII interface signals    ),
183 28 maverickis
.Mdi                            (Mdi                        ),
184
.Mdo                            (Mdo                        ),
185
.MdoEn                          (MdoEn                      ),
186 5 maverickis
.Mdc                                (Mdc                                )
187 6 maverickis
);
188 5 maverickis
 
189 6 maverickis
Phy_sim U_Phy_sim (
190
.Gtx_clk                                                (Gtx_clk                                ),
191
.Rx_clk                             (Rx_clk                             ),
192
.Tx_clk                             (Tx_clk                             ),
193
.Tx_er                              (Tx_er                              ),
194
.Tx_en                              (Tx_en                              ),
195
.Txd                                    (Txd                                ),
196
.Rx_er                              (Rx_er                              ),
197
.Rx_dv                              (Rx_dv                              ),
198
.Rxd                                    (Rxd                                ),
199
.Crs                                    (Crs                                ),
200
.Col                                    (Col                                ),
201
.Speed                              (Speed                              )
202
);
203 5 maverickis
 
204 6 maverickis
User_int_sim U_User_int_sim(
205
.Reset                                                  (Reset                                          ),
206
.Clk_user                                   (Clk_user                           ),
207 7 maverickis
.CPU_init_end                   (CPU_init_end               ),
208 6 maverickis
 //user inputerface             (//user inputerface         ),
209
.Rx_mac_ra                                  (Rx_mac_ra                          ),
210
.Rx_mac_rd                                  (Rx_mac_rd                          ),
211
.Rx_mac_data                            (Rx_mac_data                        ),
212
.Rx_mac_BE                                  (Rx_mac_BE                          ),
213
.Rx_mac_pa                                  (Rx_mac_pa                          ),
214
.Rx_mac_sop                                 (Rx_mac_sop                         ),
215
.Rx_mac_eop                                 (Rx_mac_eop                         ),
216
 //user inputerface             (//user inputerface         ),
217
.Tx_mac_wa                          (Tx_mac_wa                  ),
218
.Tx_mac_wr                          (Tx_mac_wr                  ),
219
.Tx_mac_data                    (Tx_mac_data                ),
220
.Tx_mac_BE                                  (Tx_mac_BE                          ),
221
.Tx_mac_sop                         (Tx_mac_sop                 ),
222
.Tx_mac_eop                                 (Tx_mac_eop                         )
223 5 maverickis
);
224 6 maverickis
 
225 7 maverickis
host_sim U_host_sim(
226 6 maverickis
.Reset                                  (Reset                          ),
227
.Clk_reg                                (Clk_reg                        ),
228 7 maverickis
.CSB                            (CSB                        ),
229
.WRB                            (WRB                        ),
230
.CD_in                          (CD_in                      ),
231
.CD_out                         (CD_out                     ),
232
.CPU_init_end                   (CPU_init_end               ),
233
.CA                             (CA                         )
234
 
235 6 maverickis
);
236 5 maverickis
endmodule

powered by: WebSVN 2.1.0

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