2015-06-26 09:04:19 +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.
|
2015-06-26 09:04:19 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// data format (offset binary or 2's complement only)
|
|
|
|
|
|
|
|
`timescale 1ps/1ps
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
module ad_datafmt #(
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
// data bus width
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
parameter DATA_WIDTH = 16,
|
2017-11-13 09:47:02 +00:00
|
|
|
parameter OCTETS_PER_SAMPLE = 2,
|
2016-09-23 17:40:35 +00:00
|
|
|
parameter DISABLE = 0) (
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// data path
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
input clk,
|
|
|
|
input valid,
|
|
|
|
input [(DATA_WIDTH-1):0] data,
|
|
|
|
output valid_out,
|
2017-11-13 09:47:02 +00:00
|
|
|
output [(8*OCTETS_PER_SAMPLE-1):0] data_out,
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// control signals
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
input dfmt_enable,
|
|
|
|
input dfmt_type,
|
|
|
|
input dfmt_se);
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// internal registers
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
reg valid_int = 'd0;
|
2017-11-13 09:47:02 +00:00
|
|
|
reg [(8*OCTETS_PER_SAMPLE-1):0] data_int = 'd0;
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// internal signals
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
wire type_s;
|
2017-11-13 09:47:02 +00:00
|
|
|
wire [(8*OCTETS_PER_SAMPLE-1):0] data_out_s;
|
2016-09-23 17:40:35 +00:00
|
|
|
|
|
|
|
// data-path disable
|
|
|
|
|
|
|
|
generate
|
|
|
|
if (DISABLE == 1) begin
|
|
|
|
assign valid_out = valid;
|
|
|
|
assign data_out = data;
|
|
|
|
end else begin
|
|
|
|
assign valid_out = valid_int;
|
|
|
|
assign data_out = data_int;
|
|
|
|
end
|
|
|
|
endgenerate
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// if offset-binary convert to 2's complement first
|
|
|
|
|
|
|
|
assign type_s = dfmt_enable & dfmt_type;
|
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
generate
|
2017-11-13 09:47:02 +00:00
|
|
|
if (DATA_WIDTH < 8*OCTETS_PER_SAMPLE) begin
|
2018-04-11 12:00:57 +00:00
|
|
|
wire signext_s;
|
|
|
|
wire sign_s;
|
|
|
|
|
|
|
|
assign signext_s = dfmt_enable & dfmt_se;
|
|
|
|
assign sign_s = signext_s & (type_s ^ data[(DATA_WIDTH-1)]);
|
2017-11-13 09:47:02 +00:00
|
|
|
assign data_out_s[(8*OCTETS_PER_SAMPLE-1):DATA_WIDTH] = {((8*OCTETS_PER_SAMPLE)-DATA_WIDTH){sign_s}};
|
2016-09-23 17:40:35 +00:00
|
|
|
end
|
|
|
|
endgenerate
|
2018-04-11 12:00:57 +00:00
|
|
|
|
2016-09-23 17:40:35 +00:00
|
|
|
assign data_out_s[(DATA_WIDTH-1)] = type_s ^ data[(DATA_WIDTH-1)];
|
|
|
|
assign data_out_s[(DATA_WIDTH-2):0] = data[(DATA_WIDTH-2):0];
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
always @(posedge clk) begin
|
2016-09-23 17:40:35 +00:00
|
|
|
valid_int <= valid;
|
2017-11-13 09:47:02 +00:00
|
|
|
data_int <= data_out_s;
|
2015-06-26 09:04:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|