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

Subversion Repositories eco32

[/] [eco32/] [tags/] [eco32-0.23/] [fpga/] [src/] [clk_reset/] [clk_reset.v] - Rev 127

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

//
// clk_reset.v -- clock and reset generator
//
 
 
module clk_reset(clk_in, reset_inout_n,
                 sdram_clk, sdram_fb,
                 clk, clk_ok, reset);
    input clk_in;
    inout reset_inout_n;
    output sdram_clk;
    input sdram_fb;
    output clk;
    output clk_ok;
    output reset;
 
  wire clk_in_buf;
  wire int_clk;
  wire int_locked;
  wire ext_rst_n;
  wire ext_fb;
  wire ext_locked;
 
  reg reset_p_n;
  reg reset_s_n;
  reg [23:0] reset_counter;
  wire reset_counting;
 
  //------------------------------------------------------------
 
  IBUFG clk_in_buffer(
    .I(clk_in),
    .O(clk_in_buf)
  );
 
  DCM int_dcm(
    .CLKIN(clk_in_buf),
    .CLKFB(clk),
    .RST(1'b0),
    .CLK0(int_clk),
    .LOCKED(int_locked)
  );
 
  BUFG int_clk_buffer(
    .I(int_clk),
    .O(clk)
  );
 
  //------------------------------------------------------------
 
  SRL16 ext_dll_rst_gen(
    .CLK(clk_in_buf),
    .D(int_locked),
    .Q(ext_rst_n),
    .A0(1'b1),
    .A1(1'b1),
    .A2(1'b1),
    .A3(1'b1)
  );
 
  defparam ext_dll_rst_gen.INIT = 16'h0000;
 
  //------------------------------------------------------------
 
  IBUFG ext_fb_buffer(
    .I(sdram_fb),
    .O(ext_fb)
  );
 
  DCM ext_dcm(
    .CLKIN(clk_in_buf),
    .CLKFB(ext_fb),
    .RST(~ext_rst_n),
    .CLK0(sdram_clk),
    .LOCKED(ext_locked)
  );
 
  assign clk_ok = int_locked & ext_locked;
 
  //------------------------------------------------------------
 
  assign reset_counting = (reset_counter == 24'hFFFFFF) ? 0 : 1;
  assign reset_inout_n = (reset_counter[23] == 0) ? 1'b0 : 1'bz;
 
  always @(posedge clk_in_buf) begin
    reset_p_n <= reset_inout_n;
    reset_s_n <= reset_p_n;
    if (reset_counting == 1) begin
      reset_counter <= reset_counter + 1;
    end else begin
      if (int_locked == 0 ||
          ext_locked == 0 ||
          reset_s_n == 0) begin
        reset_counter <= 24'h000000;
      end
    end
  end
 
  assign reset = reset_counting;
 
endmodule
 

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

powered by: WebSVN 2.1.0

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