OpenCores
URL https://opencores.org/ocsvn/1g_ethernet_dpi/1g_ethernet_dpi/trunk

Subversion Repositories 1g_ethernet_dpi

[/] [1g_ethernet_dpi/] [trunk/] [hw/] [src/] [rtl/] [tri_mode_emac/] [src/] [support/] [tri_mode_ethernet_mac_0_support_resets.v] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 kuzmi4
//---------------------------------------------------------------------------
2
// File       : tri_mode_ethernet_mac_0_support_resets.v
3
// Author     : Xilinx Inc.
4
// -----------------------------------------------------------------------------
5
// (c) Copyright 2013 Xilinx, Inc. All rights reserved.
6
//
7
// This file contains confidential and proprietary information
8
// of Xilinx, Inc. and is protected under U.S. and
9
// international copyright and other intellectual property
10
// laws.
11
//
12
// DISCLAIMER
13
// This disclaimer is not a license and does not grant any
14
// rights to the materials distributed herewith. Except as
15
// otherwise provided in a valid license issued to you by
16
// Xilinx, and to the maximum extent permitted by applicable
17
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
18
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
19
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
20
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
21
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
22
// (2) Xilinx shall not be liable (whether in contract or tort,
23
// including negligence, or under any other theory of
24
// liability) for any loss or damage of any kind or nature
25
// related to, arising under or in connection with these
26
// materials, including for any direct, or any indirect,
27
// special, incidental, or consequential loss or damage
28
// (including loss of data, profits, goodwill, or any type of
29
// loss or damage suffered as a result of any action brought
30
// by a third party) even if such damage or loss was
31
// reasonably foreseeable or Xilinx had been advised of the
32
// possibility of the same.
33
//
34
// CRITICAL APPLICATIONS
35
// Xilinx products are not designed or intended to be fail-
36
// safe, or for use in any application requiring fail-safe
37
// performance, such as life-support or safety devices or
38
// systems, Class III medical devices, nuclear facilities,
39
// applications related to the deployment of airbags, or any
40
// other applications that could lead to death, personal
41
// injury, or severe property or environmental damage
42
// (individually and collectively, "Critical
43
// Applications"). Customer assumes the sole risk and
44
// liability of any use of Xilinx products in Critical
45
// Applications, subject only to applicable laws and
46
// regulations governing limitations on product liability.
47
//
48
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
49
// PART OF THIS FILE AT ALL TIMES. 
50
// -----------------------------------------------------------------------------
51
// Description: This module holds the shared resets for the IDELAYCTRL
52
//              and the MMCM
53
//------------------------------------------------------------------------------
54
 
55
`timescale 1ns / 1ps
56
 
57
module tri_mode_ethernet_mac_0_support_resets
58
(
59
    input           glbl_rstn,
60
    input           refclk,
61
    input           idelayctrl_ready,
62
    output          idelayctrl_reset_out,
63
    input           gtx_clk,
64
    input           gtx_dcm_locked,
65
    output          gtx_mmcm_rst_out           // The reset pulse for the MMCM.
66
);
67
 
68
   wire             glbl_rst;
69
 
70
   wire             idelayctrl_reset_in;       // Used to trigger reset_sync generation in refclk domain.
71
   wire             idelayctrl_reset_sync;     // Used to create a reset pulse in the IDELAYCTRL refclk domain.
72
   reg   [3:0]      idelay_reset_cnt;          // Counter to create a long IDELAYCTRL reset pulse.
73
   reg              idelayctrl_reset;
74
 
75
   wire             gtx_mmcm_rst_in;
76
   wire             gtx_dcm_locked_int;
77
   wire             gtx_dcm_locked_sync;
78
   reg              gtx_dcm_locked_reg = 1;
79
   reg              gtx_dcm_locked_edge = 1;
80
 
81
 
82
 assign glbl_rst              = !glbl_rstn;
83
 
84
 //----------------------------------------------------------------------------
85
 // Reset circuitry associated with the IDELAYCTRL
86
 //----------------------------------------------------------------------------
87
 
88
 assign idelayctrl_reset_out  = idelayctrl_reset;
89
 assign idelayctrl_reset_in   = glbl_rst || !idelayctrl_ready;
90
 
91
   // Create a synchronous reset in the IDELAYCTRL refclk clock domain.
92
   tri_mode_ethernet_mac_0_reset_sync idelayctrl_reset_gen (
93
      .clk              (refclk),
94
      .enable           (1'b1),
95
      .reset_in         (idelayctrl_reset_in),
96
      .reset_out        (idelayctrl_reset_sync)
97
   );
98
 
99
   // Reset circuitry for the IDELAYCTRL reset.
100
 
101
   // The IDELAYCTRL must experience a pulse which is at least 50 ns in
102
   // duration.  This is ten clock cycles of the 200MHz refclk.  Here we
103
   // drive the reset pulse for 12 clock cycles.
104
   always @(posedge refclk)
105
   begin
106
      if (idelayctrl_reset_sync) begin
107
         idelay_reset_cnt     <= 4'b0000;
108
         idelayctrl_reset     <= 1'b1;
109
      end
110
      else begin
111
         case (idelay_reset_cnt)
112
            4'b0000 : idelay_reset_cnt <= 4'b0001;
113
            4'b0001 : idelay_reset_cnt <= 4'b0010;
114
            4'b0010 : idelay_reset_cnt <= 4'b0011;
115
            4'b0011 : idelay_reset_cnt <= 4'b0100;
116
            4'b0100 : idelay_reset_cnt <= 4'b0101;
117
            4'b0101 : idelay_reset_cnt <= 4'b0110;
118
            4'b0110 : idelay_reset_cnt <= 4'b0111;
119
            4'b0111 : idelay_reset_cnt <= 4'b1000;
120
            4'b1000 : idelay_reset_cnt <= 4'b1001;
121
            4'b1001 : idelay_reset_cnt <= 4'b1010;
122
            4'b1010 : idelay_reset_cnt <= 4'b1011;
123
            4'b1011 : idelay_reset_cnt <= 4'b1100;
124
            default : idelay_reset_cnt <= 4'b1100;
125
         endcase
126
         if (idelay_reset_cnt == 4'b1100) begin
127
            idelayctrl_reset  <= 1'b0;
128
         end
129
         else begin
130
            idelayctrl_reset  <= 1'b1;
131
         end
132
      end
133
   end
134
 
135
 
136
  //----------------------------------------------------------------------------
137
  // Reset circuitry associated with the MMCM
138
  //----------------------------------------------------------------------------
139
 
140
  assign gtx_mmcm_rst_in = glbl_rst | gtx_dcm_locked_edge;
141
 
142
  // Synchronise the async dcm_locked into the gtx_clk clock domain
143
   tri_mode_ethernet_mac_0_sync_block lock_sync (
144
     .clk                   (gtx_clk),
145
     .data_in               (gtx_dcm_locked),
146
     .data_out              (gtx_dcm_locked_sync)
147
  );
148
 
149
  // for the falling edge detect we want to force this at power on so init the flop to 1
150
  always @(posedge gtx_clk)
151
  begin
152
     gtx_dcm_locked_reg     <= gtx_dcm_locked_sync;
153
     gtx_dcm_locked_edge    <= gtx_dcm_locked_reg & !gtx_dcm_locked_sync;
154
  end
155
 
156
  // the MMCM reset should be at least 5ns - that is one cycle of the input clock -
157
  // since the source of the input reset is unknown (a push switch in board design)
158
  // this needs to be debounced
159
   tri_mode_ethernet_mac_0_reset_sync gtx_mmcm_reset_gen (
160
      .clk                  (gtx_clk),
161
      .enable               (1'b1),
162
      .reset_in             (gtx_mmcm_rst_in),
163
      .reset_out            (gtx_mmcm_rst_out)
164
   );
165
 
166
 
167
endmodule
168
 
169
 

powered by: WebSVN 2.1.0

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