mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
63e0017275
- Still not 100% on this...but test passes - Teset was hanging even though stim_done went high. Ticks not advancing, pointing towards comb loop, but what is different at end of test? - Now to test read/writes of registers from axi and set the idelay registers
84 lines
2.8 KiB
Verilog
84 lines
2.8 KiB
Verilog
// ###############################################################
|
|
// # FUNCTION: Synchronous clock divider that divides by integer
|
|
// ###############################################################
|
|
module clock_divider(/*AUTOARG*/
|
|
// Outputs
|
|
clkout,
|
|
// Inputs
|
|
clkin, divcfg, reset
|
|
);
|
|
|
|
input clkin; // Input clock
|
|
input [3:0] divcfg; // Divide factor (1-128)
|
|
input reset; // Counter init
|
|
output clkout; // Divided clock phase aligned with clkin
|
|
|
|
reg clkout_reg;
|
|
reg [7:0] counter;
|
|
reg [7:0] divcfg_dec;
|
|
reg [3:0] divcfg_reg;
|
|
|
|
wire div_bp;
|
|
wire posedge_match;
|
|
wire negedge_match;
|
|
|
|
// ###################
|
|
// # Decode divcfg
|
|
// ###################
|
|
|
|
always @ (divcfg[3:0])
|
|
casez (divcfg[3:0])
|
|
4'b0001 : divcfg_dec[7:0] = 8'b00000010; // Divide by 2
|
|
4'b0010 : divcfg_dec[7:0] = 8'b00000100; // Divide by 4
|
|
4'b0011 : divcfg_dec[7:0] = 8'b00001000; // Divide by 8
|
|
4'b0100 : divcfg_dec[7:0] = 8'b00010000; // Divide by 16
|
|
4'b0101 : divcfg_dec[7:0] = 8'b00100000; // Divide by 32
|
|
4'b0110 : divcfg_dec[7:0] = 8'b01000000; // Divide by 64
|
|
4'b0111 : divcfg_dec[7:0] = 8'b10000000; // Divide by 128
|
|
default : divcfg_dec[7:0] = 8'b00000000; // others
|
|
endcase
|
|
|
|
always @ (posedge clkin or posedge reset)
|
|
if(reset)
|
|
counter[7:0] <= 8'b00000001;
|
|
else if(posedge_match)
|
|
counter[7:0] <= 8'b00000001;// Self resetting
|
|
else
|
|
counter[7:0] <= (counter[7:0] + 8'b00000001);
|
|
|
|
assign posedge_match = (counter[7:0]==divcfg_dec[7:0]);
|
|
assign negedge_match = (counter[7:0]=={1'b0,divcfg_dec[7:1]});
|
|
|
|
always @ (posedge clkin or posedge reset)
|
|
if(reset)
|
|
clkout_reg <= 1'b0;
|
|
else if(posedge_match)
|
|
clkout_reg <= 1'b1;
|
|
else if(negedge_match)
|
|
clkout_reg <= 1'b0;
|
|
|
|
//Divide by one bypass
|
|
assign div_bp = (divcfg[3:0]==4'b0000);
|
|
assign clkout = div_bp ? clkin : clkout_reg;
|
|
|
|
endmodule // clock_divider
|
|
|
|
/*
|
|
Copyright (C) 2013 Adapteva, Inc.
|
|
Contributed by Andreas Olofsson <support@adapteva.com>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program (see the file COPYING). If not, see
|
|
<http://www.gnu.org/licenses/>.
|
|
*/
|