URL
https://opencores.org/ocsvn/turbo8051/turbo8051/trunk
Subversion Repositories turbo8051
[/] [turbo8051/] [trunk/] [rtl/] [lib/] [clk_ctl.v] - Rev 43
Go to most recent revision | Compare with Previous | Blame | View Log
////////////////////////////////////////////////////////////////////// //// //// //// Tubo 8051 cores common library Module //// //// //// //// This file is part of the Turbo 8051 cores project //// //// http://www.opencores.org/cores/turbo8051/ //// //// //// //// Description //// //// Turbo 8051 definitions. //// //// //// //// To Do: //// //// nothing //// //// //// //// Author(s): //// //// - Dinesh Annayya, dinesha@opencores.org //// //// //// ////////////////////////////////////////////////////////////////////// //// //// //// Copyright (C) 2000 Authors and OPENCORES.ORG //// //// //// //// This source file may be used and distributed without //// //// restriction provided that this copyright statement is not //// //// removed from the file and that any derivative work contains //// //// the original copyright notice and the associated disclaimer. //// //// //// //// This source file is free software; you can redistribute it //// //// and/or modify it under the terms of the GNU Lesser General //// //// Public License as published by the Free Software Foundation; //// //// either version 2.1 of the License, or (at your option) any //// //// later version. //// //// //// //// This source is distributed in the hope that it will be //// //// useful, but WITHOUT ANY WARRANTY; without even the implied //// //// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //// //// PURPOSE. See the GNU Lesser General Public License for more //// //// details. //// //// //// //// You should have received a copy of the GNU Lesser General //// //// Public License along with this source; if not, download it //// //// from http://www.opencores.org/lgpl.shtml //// //// //// ////////////////////////////////////////////////////////////////////// // ################################################################# // Module: clk_ctl // // Description: Generic clock control logic , clk-out = mclk/(2+clk_div_ratio) // // // ################################################################# module clk_ctl ( // Outputs clk_o, // Inputs mclk, reset_n, clk_div_ratio ); //--------------------------------- // CLOCK Default Divider value. // This value will be change from outside //--------------------------------- parameter WD = 'h1; //--------------------------------------------- // All the input to this block are declared here // -------------------------------------------- input mclk ;// input reset_n ;// primary reset signal input [WD:0] clk_div_ratio ;// primary clock divide ratio // output clock = selected clock / (div_ratio+1) //--------------------------------------------- // All the output to this block are declared here // -------------------------------------------- output clk_o ; // clock out //------------------------------------ // Clock Divide func is done here //------------------------------------ reg [WD-1:0] high_count ; // high level counter reg [WD-1:0] low_count ; // low level counter reg mclk_div ; // divided clock assign clk_o = mclk_div; always @ (posedge mclk or negedge reset_n) begin // { if(reset_n == 1'b0) begin high_count <= 'h0; low_count <= 'h0; mclk_div <= 'b0; end else begin if(high_count != 0) begin // { high_count <= high_count - 1; mclk_div <= 1'b1; end // } else if(low_count != 0) begin // { low_count <= low_count - 1; mclk_div <= 1'b0; end // } else begin // { high_count <= clk_div_ratio[WD:1] + clk_div_ratio[0]; low_count <= clk_div_ratio[WD:1] + 1; mclk_div <= ~mclk_div; end // } end // } end // } endmodule
Go to most recent revision | Compare with Previous | Blame | View Log