2016-09-30 14:13:51 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2017-05-17 08:44:52 +00:00
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
2016-09-30 14:13:51 +00:00
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// In this HDL repository, there are many different and unique modules, consisting
|
|
|
|
// of various HDL (Verilog or VHDL) components. The individual modules are
|
|
|
|
// developed independently, and may be accompanied by separate and unique license
|
|
|
|
// terms.
|
|
|
|
//
|
|
|
|
// The user should read each of these license terms, and understand the
|
2018-03-14 14:45:47 +00:00
|
|
|
// freedoms and responsibilities that he or she has by using this source/core.
|
2017-05-31 15:15:24 +00:00
|
|
|
//
|
|
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
2017-05-29 06:55:41 +00:00
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE.
|
2016-09-30 14:13:51 +00:00
|
|
|
//
|
2017-05-29 06:55:41 +00:00
|
|
|
// Redistribution and use of source or resulting binaries, with or without modification
|
|
|
|
// of this file, are permitted under one of the following two license terms:
|
2016-09-30 14:13:51 +00:00
|
|
|
//
|
2017-05-17 08:44:52 +00:00
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
2017-05-31 15:15:24 +00:00
|
|
|
// Free Software Foundation, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_GPL2), and also online at:
|
|
|
|
// <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// 2. An ADI specific BSD license, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_ADIBSD), and also on-line at:
|
2017-05-29 06:55:41 +00:00
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/master/LICENSE_ADIBSD
|
|
|
|
// This will allow to generate bit files and not release the source code,
|
|
|
|
// as long as it attaches to an ADI device.
|
2016-09-30 14:13:51 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
|
|
|
module util_clkdiv (
|
2016-11-24 14:01:37 +00:00
|
|
|
input clk,
|
|
|
|
input clk_sel,
|
|
|
|
output clk_out
|
2016-09-30 14:13:51 +00:00
|
|
|
);
|
|
|
|
|
2017-01-16 12:35:42 +00:00
|
|
|
parameter SIM_DEVICE = "7SERIES";
|
|
|
|
parameter SEL_0_DIV = "4";
|
|
|
|
parameter SEL_1_DIV = "2";
|
2017-01-13 11:54:07 +00:00
|
|
|
|
2017-01-16 12:35:42 +00:00
|
|
|
wire clk_div_sel_0_s;
|
|
|
|
wire clk_div_sel_1_s;
|
2016-11-24 14:01:37 +00:00
|
|
|
|
2017-01-16 12:35:42 +00:00
|
|
|
generate if (SIM_DEVICE == "7SERIES") begin
|
2017-01-13 11:54:07 +00:00
|
|
|
|
2016-11-24 14:01:37 +00:00
|
|
|
BUFR #(
|
2017-01-16 12:35:42 +00:00
|
|
|
.BUFR_DIVIDE(SEL_0_DIV),
|
2016-11-24 14:01:37 +00:00
|
|
|
.SIM_DEVICE("7SERIES")
|
2017-01-16 12:35:42 +00:00
|
|
|
) clk_divide_sel_0 (
|
2016-11-24 14:01:37 +00:00
|
|
|
.I(clk),
|
|
|
|
.CE(1),
|
|
|
|
.CLR(0),
|
2017-01-16 12:35:42 +00:00
|
|
|
.O(clk_div_sel_0_s));
|
2016-11-24 14:01:37 +00:00
|
|
|
|
2016-09-30 14:13:51 +00:00
|
|
|
BUFR #(
|
2017-01-16 12:35:42 +00:00
|
|
|
.BUFR_DIVIDE(SEL_1_DIV),
|
2016-09-30 14:13:51 +00:00
|
|
|
.SIM_DEVICE("7SERIES")
|
2017-01-16 12:35:42 +00:00
|
|
|
) clk_divide_sel_1 (
|
2016-09-30 14:13:51 +00:00
|
|
|
.I(clk),
|
|
|
|
.CE(1),
|
|
|
|
.CLR(0),
|
2017-01-16 12:35:42 +00:00
|
|
|
.O(clk_div_sel_1_s));
|
2016-11-24 14:01:37 +00:00
|
|
|
|
2017-01-16 12:35:42 +00:00
|
|
|
end else if (SIM_DEVICE == "ULTRASCALE") begin
|
2017-01-13 11:54:07 +00:00
|
|
|
|
|
|
|
BUFGCE_DIV #(
|
2017-01-16 12:35:42 +00:00
|
|
|
.BUFGCE_DIVIDE(SEL_0_DIV)
|
|
|
|
) clk_divide_sel_0 (
|
2017-01-13 11:54:07 +00:00
|
|
|
.I(clk),
|
|
|
|
.CE(1),
|
|
|
|
.CLR(0),
|
2017-01-16 12:35:42 +00:00
|
|
|
.O(clk_div_sel_0_s));
|
2017-01-13 11:54:07 +00:00
|
|
|
|
|
|
|
BUFGCE_DIV #(
|
2017-01-16 12:35:42 +00:00
|
|
|
.BUFGCE_DIVIDE(SEL_1_DIV)
|
|
|
|
) clk_divide_sel_1 (
|
2017-01-13 11:54:07 +00:00
|
|
|
.I(clk),
|
|
|
|
.CE(1),
|
|
|
|
.CLR(0),
|
2017-01-16 12:35:42 +00:00
|
|
|
.O(clk_div_sel_1_s));
|
2017-01-13 11:54:07 +00:00
|
|
|
|
|
|
|
end endgenerate
|
|
|
|
|
|
|
|
BUFGMUX_CTRL i_div_clk_gbuf (
|
2017-01-16 12:35:42 +00:00
|
|
|
.I0(clk_div_sel_0_s), // 1-bit input: Clock input (S=0)
|
|
|
|
.I1(clk_div_sel_1_s), // 1-bit input: Clock input (S=1)
|
2016-11-24 14:01:37 +00:00
|
|
|
.S(clk_sel),
|
2016-09-30 14:13:51 +00:00
|
|
|
.O (clk_out));
|
|
|
|
|
|
|
|
endmodule // util_clkdiv
|
|
|
|
|