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

Subversion Repositories ethmac

[/] [ethmac/] [tags/] [rel_14/] [rtl/] [verilog/] [eth_clockgen.v] - Blame information for rev 15

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

Line No. Rev Author Line
1 15 mohor
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  eth_clockgen.v                                              ////
4
////                                                              ////
5
////  This file is part of the Ethernet IP core project           ////
6
////  http://www.opencores.org/cores/ethmac/                      ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Igor Mohor (igorM@opencores.org)                      ////
10
////                                                              ////
11
////  All additional information is avaliable in the Readme.txt   ////
12
////  file.                                                       ////
13
////                                                              ////
14
//////////////////////////////////////////////////////////////////////
15
////                                                              ////
16
//// Copyright (C) 2001 Authors                                   ////
17
////                                                              ////
18
//// This source file may be used and distributed without         ////
19
//// restriction provided that this copyright statement is not    ////
20
//// removed from the file and that any derivative work contains  ////
21
//// the original copyright notice and the associated disclaimer. ////
22
////                                                              ////
23
//// This source file is free software; you can redistribute it   ////
24
//// and/or modify it under the terms of the GNU Lesser General   ////
25
//// Public License as published by the Free Software Foundation; ////
26
//// either version 2.1 of the License, or (at your option) any   ////
27
//// later version.                                               ////
28
////                                                              ////
29
//// This source is distributed in the hope that it will be       ////
30
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
31
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
32
//// PURPOSE.  See the GNU Lesser General Public License for more ////
33
//// details.                                                     ////
34
////                                                              ////
35
//// You should have received a copy of the GNU Lesser General    ////
36
//// Public License along with this source; if not, download it   ////
37
//// from http://www.opencores.org/lgpl.shtml                     ////
38
////                                                              ////
39
//////////////////////////////////////////////////////////////////////
40
//
41
// CVS Revision History
42
//
43
// $Log: not supported by cvs2svn $
44
// Revision 1.1  2001/07/30 21:23:42  mohor
45
// Directory structure changed. Files checked and joind together.
46
//
47
// Revision 1.3  2001/06/01 22:28:55  mohor
48
// This files (MIIM) are fully working. They were thoroughly tested. The testbench is not updated.
49
//
50
//
51
 
52
`include "eth_timescale.v"
53
 
54
module eth_clockgen(Clk, Reset, Divider, MdcEn, MdcEn_n, Mdc);
55
 
56
parameter Tp=1;
57
 
58
input       Clk;              // Input clock (Host clock)
59
input       Reset;            // Reset signal
60
input [7:0] Divider;          // Divider (input clock will be divided by the Divider[7:0])
61
 
62
output      Mdc;              // Output clock
63
output      MdcEn;            // Enable signal is asserted for one Clk period before Mdc rises.
64
output      MdcEn_n;          // Enable signal is asserted for one Clk period before Mdc falls.
65
 
66
reg         Mdc;
67
reg   [7:0] Counter;
68
 
69
wire        CountEq0;
70
wire  [7:0] CounterPreset;
71
wire  [7:0] TempDivider;
72
 
73
 
74
assign TempDivider[7:0]   = (Divider[7:0]<2)? 8'h02 : Divider[7:0]; // If smaller than 2
75
assign CounterPreset[7:0] = (TempDivider[7:0]>>1) -1;               // We are counting half of period
76
 
77
 
78
// Counter counts half period
79
always @ (posedge Clk or posedge Reset)
80
begin
81
  if(Reset)
82
    Counter[7:0] <= #Tp 8'h1;
83
  else
84
    begin
85
      if(CountEq0)
86
        begin
87
          Counter[7:0] <= #Tp CounterPreset[7:0];
88
        end
89
      else
90
        Counter[7:0] <= #Tp Counter - 8'h1;
91
    end
92
end
93
 
94
 
95
// Mdc is asserted every other half period
96
always @ (posedge Clk or posedge Reset)
97
begin
98
  if(Reset)
99
    Mdc <= #Tp 1'b0;
100
  else
101
    begin
102
      if(CountEq0)
103
        Mdc <= #Tp ~Mdc;
104
    end
105
end
106
 
107
 
108
assign CountEq0 = Counter == 8'h0;
109
assign MdcEn = CountEq0 & ~Mdc;
110
assign MdcEn_n = CountEq0 & Mdc;
111
 
112
endmodule
113
 
114
 

powered by: WebSVN 2.1.0

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