2016-07-08 17:56:08 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2017-05-17 08:44:52 +00:00
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
|
|
|
//
|
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.
|
2017-05-17 08:44:52 +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:
|
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-07-08 17:56:08 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/1ps
|
|
|
|
|
|
|
|
module axi_adxcvr_mstatus (
|
|
|
|
|
|
|
|
input up_rstn,
|
|
|
|
input up_clk,
|
|
|
|
|
|
|
|
input up_pll_locked_in,
|
|
|
|
input up_rst_done_in,
|
2020-12-18 14:43:28 +00:00
|
|
|
input up_prbserr_in,
|
|
|
|
input up_prbslocked_in,
|
2016-07-08 17:56:08 +00:00
|
|
|
input up_pll_locked,
|
|
|
|
input up_rst_done,
|
2020-12-18 14:43:28 +00:00
|
|
|
input up_prbserr,
|
|
|
|
input up_prbslocked,
|
2016-07-08 17:56:08 +00:00
|
|
|
output up_pll_locked_out,
|
2020-12-18 14:43:28 +00:00
|
|
|
output up_rst_done_out,
|
|
|
|
output up_prbserr_out,
|
|
|
|
output up_prbslocked_out);
|
2016-07-08 17:56:08 +00:00
|
|
|
|
2016-07-15 14:15:17 +00:00
|
|
|
// parameters
|
|
|
|
|
|
|
|
parameter integer XCVR_ID = 0;
|
|
|
|
parameter integer NUM_OF_LANES = 8;
|
|
|
|
|
2016-07-08 17:56:08 +00:00
|
|
|
// internal registers
|
|
|
|
|
|
|
|
reg up_pll_locked_int = 'd0;
|
|
|
|
reg up_rst_done_int = 'd0;
|
2020-12-18 14:43:28 +00:00
|
|
|
reg up_prbserr_int = 'd0;
|
|
|
|
reg up_prbslocked_int = 'd0;
|
2016-07-08 17:56:08 +00:00
|
|
|
|
2016-07-15 14:15:17 +00:00
|
|
|
// internal signals
|
|
|
|
|
|
|
|
wire up_pll_locked_s;
|
|
|
|
wire up_rst_done_s;
|
2020-12-18 14:43:28 +00:00
|
|
|
wire up_prbserr_s;
|
|
|
|
wire up_prbslocked_s;
|
2016-07-15 14:15:17 +00:00
|
|
|
|
2016-07-08 17:56:08 +00:00
|
|
|
// daisy-chain the signals
|
|
|
|
|
|
|
|
assign up_pll_locked_out = up_pll_locked_int;
|
|
|
|
assign up_rst_done_out = up_rst_done_int;
|
2020-12-18 14:43:28 +00:00
|
|
|
assign up_prbserr_out = up_prbserr_int;
|
|
|
|
assign up_prbslocked_out = up_prbslocked_int;
|
2016-07-08 17:56:08 +00:00
|
|
|
|
2016-07-15 14:15:17 +00:00
|
|
|
assign up_pll_locked_s = (XCVR_ID < NUM_OF_LANES) ? up_pll_locked : 1'b1;
|
|
|
|
assign up_rst_done_s = (XCVR_ID < NUM_OF_LANES) ? up_rst_done : 1'b1;
|
2020-12-18 14:43:28 +00:00
|
|
|
assign up_prbserr_s = (XCVR_ID < NUM_OF_LANES) ? up_prbserr : 1'b0;
|
|
|
|
assign up_prbslocked_s = (XCVR_ID < NUM_OF_LANES) ? up_prbslocked : 1'b1;
|
2016-07-15 14:15:17 +00:00
|
|
|
|
2016-07-08 17:56:08 +00:00
|
|
|
always @(negedge up_rstn or posedge up_clk) begin
|
|
|
|
if (up_rstn == 1'b0) begin
|
|
|
|
up_pll_locked_int <= 1'd0;
|
|
|
|
up_rst_done_int <= 1'd0;
|
2020-12-18 14:43:28 +00:00
|
|
|
up_prbserr_int <= 1'd0;
|
|
|
|
up_prbslocked_int <= 1'd0;
|
2016-07-08 17:56:08 +00:00
|
|
|
end else begin
|
2016-07-15 14:15:17 +00:00
|
|
|
up_pll_locked_int <= up_pll_locked_in & up_pll_locked_s;
|
|
|
|
up_rst_done_int <= up_rst_done_in & up_rst_done_s;
|
2020-12-18 14:43:28 +00:00
|
|
|
up_prbserr_int <= up_prbserr_in | up_prbserr_s;
|
|
|
|
up_prbslocked_int <= up_prbslocked_in & up_prbslocked_s;
|
2016-07-08 17:56:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-05 13:37:34 +00:00
|
|
|
endmodule
|
2016-07-08 17:56:08 +00:00
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|