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

Subversion Repositories sgmii

[/] [sgmii/] [trunk/] [build/] [OpenCore_MAC/] [Ramdon_gen.v] - Blame information for rev 26

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 26 jefflieu
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  Ramdon_gen.v                                                ////
4
////                                                              ////
5
////  This file is part of the Ethernet IP core project           ////
6
////  http://www.opencores.org/projects.cgi/web/ethernet_tri_mode/////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Jon Gao (gaojon@yahoo.com)                            ////
10
////                                                              ////
11
////                                                              ////
12
//////////////////////////////////////////////////////////////////////
13
////                                                              ////
14
//// Copyright (C) 2001 Authors                                   ////
15
////                                                              ////
16
//// This source file may be used and distributed without         ////
17
//// restriction provided that this copyright statement is not    ////
18
//// removed from the file and that any derivative work contains  ////
19
//// the original copyright notice and the associated disclaimer. ////
20
////                                                              ////
21
//// This source file is free software; you can redistribute it   ////
22
//// and/or modify it under the terms of the GNU Lesser General   ////
23
//// Public License as published by the Free Software Foundation; ////
24
//// either version 2.1 of the License, or (at your option) any   ////
25
//// later version.                                               ////
26
////                                                              ////
27
//// This source is distributed in the hope that it will be       ////
28
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
29
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
30
//// PURPOSE.  See the GNU Lesser General Public License for more ////
31
//// details.                                                     ////
32
////                                                              ////
33
//// You should have received a copy of the GNU Lesser General    ////
34
//// Public License along with this source; if not, download it   ////
35
//// from http://www.opencores.org/lgpl.shtml                     ////
36
////                                                              ////
37
//////////////////////////////////////////////////////////////////////
38
//                                                                    
39
// CVS Revision History                                               
40
//                                                                    
41
// $Log: not supported by cvs2svn $
42
// Revision 1.2  2005/12/16 06:44:19  Administrator
43
// replaced tab with space.
44
// passed 9.6k length frame test.
45
//
46
// Revision 1.1.1.1  2005/12/13 01:51:45  Administrator
47
// no message
48
//                                           
49
 
50
module Ramdon_gen(
51
Reset           ,
52
Clk             ,
53
Init            ,
54
RetryCnt        ,
55
Random_time_meet
56
);
57
input           Reset           ;
58
input           Clk             ;
59
input           Init            ;
60
input   [3:0]   RetryCnt        ;
61
output          Random_time_meet;
62
 
63
//******************************************************************************
64
//internal signals                                                              
65
//******************************************************************************
66
reg [9:0]       Random_sequence ;
67
reg [9:0]       Ramdom          ;
68
reg [9:0]       Ramdom_counter  ;
69
reg [7:0]       Slot_time_counter; //256*2=512bit=1 slot time
70
reg             Random_time_meet;
71
 
72
//******************************************************************************
73
always @ (posedge Clk or posedge Reset)
74
    if (Reset)
75
        Random_sequence     <=0;
76
    else
77
        Random_sequence     <={Random_sequence[8:0],~(Random_sequence[2]^Random_sequence[9])};
78
 
79
always @ (RetryCnt or Random_sequence)
80
    case (RetryCnt)
81
        4'h0    :   Ramdom={9'b0,Random_sequence[0]};
82
        4'h1    :   Ramdom={8'b0,Random_sequence[1:0]};
83
        4'h2    :   Ramdom={7'b0,Random_sequence[2:0]};
84
        4'h3    :   Ramdom={6'b0,Random_sequence[3:0]};
85
        4'h4    :   Ramdom={5'b0,Random_sequence[4:0]};
86
        4'h5    :   Ramdom={4'b0,Random_sequence[5:0]};
87
        4'h6    :   Ramdom={3'b0,Random_sequence[6:0]};
88
        4'h7    :   Ramdom={2'b0,Random_sequence[7:0]};
89
        4'h8    :   Ramdom={1'b0,Random_sequence[8:0]};
90
        4'h9    :   Ramdom={     Random_sequence[9:0]};
91
        default :   Ramdom={     Random_sequence[9:0]};
92
    endcase
93
 
94
always @ (posedge Clk or posedge Reset)
95
    if (Reset)
96
        Slot_time_counter       <=0;
97
    else if(Init)
98
        Slot_time_counter       <=0;
99
    else if(!Random_time_meet)
100
        Slot_time_counter       <=Slot_time_counter+1;
101
 
102
always @ (posedge Clk or posedge Reset)
103
    if (Reset)
104
        Ramdom_counter      <=0;
105
    else if (Init)
106
        Ramdom_counter      <=Ramdom;
107
    else if (Ramdom_counter!=0&&Slot_time_counter==255)
108
        Ramdom_counter      <=Ramdom_counter -1 ;
109
 
110
always @ (posedge Clk or posedge Reset)
111
    if (Reset)
112
        Random_time_meet    <=1;
113
    else if (Init)
114
        Random_time_meet    <=0;
115
    else if (Ramdom_counter==0)
116
        Random_time_meet    <=1;
117
 
118
endmodule
119
 
120
 

powered by: WebSVN 2.1.0

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