2014-06-05 11:58:14 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2017-05-17 08:44:52 +00:00
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
2014-06-05 11:58:14 +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
|
|
|
|
// freedoms and responsabilities that he or she has by using this source/core.
|
|
|
|
//
|
|
|
|
// 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.
|
2014-06-05 11:58:14 +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:
|
2014-06-05 11:58:14 +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.
|
2014-06-05 11:58:14 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/1ns
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
module prcfg_dac#(
|
2014-06-05 11:58:14 +00:00
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
parameter CHANNEL_ID = 0,
|
|
|
|
parameter DATA_WIDTH = 16) (
|
|
|
|
|
|
|
|
input clk,
|
2014-06-05 11:58:14 +00:00
|
|
|
|
|
|
|
// control ports
|
2017-04-13 08:45:54 +00:00
|
|
|
input [31:0] control,
|
|
|
|
output reg [31:0] status,
|
2014-06-05 11:58:14 +00:00
|
|
|
|
|
|
|
// FIFO interface
|
2017-04-13 08:45:54 +00:00
|
|
|
output reg src_dac_enable,
|
|
|
|
input [(DATA_WIDTH-1):0] src_dac_data,
|
|
|
|
output reg src_dac_valid,
|
2015-10-13 08:36:45 +00:00
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
input dst_dac_enable,
|
|
|
|
output reg [(DATA_WIDTH-1):0] dst_dac_data,
|
|
|
|
input dst_dac_valid);
|
2014-06-05 11:58:14 +00:00
|
|
|
|
|
|
|
|
2014-11-14 15:54:00 +00:00
|
|
|
localparam SYMBOL_WIDTH = 2;
|
2014-10-31 10:10:59 +00:00
|
|
|
localparam RP_ID = 8'hA2;
|
2014-06-05 11:58:14 +00:00
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// output register to improve timing
|
2014-06-05 11:58:14 +00:00
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// internal registers
|
|
|
|
reg [ 7:0] pn_data = 'hF2;
|
|
|
|
reg [ 3:0] mode = 'h0;
|
2014-07-08 09:23:48 +00:00
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// internal wires
|
|
|
|
wire [(SYMBOL_WIDTH-1):0] mod_data;
|
|
|
|
wire [15:0] dac_data_fltr_i;
|
|
|
|
wire [15:0] dac_data_fltr_q;
|
|
|
|
|
2014-06-05 11:58:14 +00:00
|
|
|
// prbs function
|
|
|
|
function [ 7:0] pn;
|
|
|
|
input [ 7:0] din;
|
|
|
|
reg [ 7:0] dout;
|
|
|
|
begin
|
|
|
|
dout[7] = din[6];
|
|
|
|
dout[6] = din[5];
|
|
|
|
dout[5] = din[4];
|
|
|
|
dout[4] = din[3];
|
|
|
|
dout[3] = din[2];
|
|
|
|
dout[2] = din[1];
|
2014-07-02 15:14:35 +00:00
|
|
|
dout[1] = din[7] ^ din[4];
|
|
|
|
dout[0] = din[6] ^ din[3];
|
2014-06-05 11:58:14 +00:00
|
|
|
pn = dout;
|
|
|
|
end
|
|
|
|
endfunction
|
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// update control and status registers
|
2014-07-02 15:14:35 +00:00
|
|
|
always @(posedge clk) begin
|
|
|
|
status <= { 24'h0, RP_ID };
|
2014-07-08 09:23:48 +00:00
|
|
|
mode <= control[ 7:4];
|
2014-07-02 15:14:35 +00:00
|
|
|
end
|
2014-06-05 11:58:14 +00:00
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// prbs generation
|
2014-06-05 11:58:14 +00:00
|
|
|
always @(posedge clk) begin
|
2015-10-13 08:36:45 +00:00
|
|
|
if((dst_dac_en == 1) && (dst_dac_enable == 1)) begin
|
2014-10-31 10:10:59 +00:00
|
|
|
pn_data <= pn(pn_data);
|
2014-06-05 11:58:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// data for the modulator (prbs or dma)
|
2015-10-13 08:36:45 +00:00
|
|
|
assign mod_data = (mode == 1) ? pn_data[ 1:0] : src_dac_data[ 1:0];
|
2014-06-05 11:58:14 +00:00
|
|
|
|
|
|
|
// qpsk modulator
|
|
|
|
qpsk_mod i_qpsk_mod (
|
|
|
|
.clk(clk),
|
2014-10-31 10:10:59 +00:00
|
|
|
.data_input(mod_data),
|
2014-08-05 14:54:37 +00:00
|
|
|
.data_valid(dst_dac_en),
|
2014-06-05 11:58:14 +00:00
|
|
|
.data_qpsk_i(dac_data_fltr_i),
|
|
|
|
.data_qpsk_q(dac_data_fltr_q)
|
|
|
|
);
|
|
|
|
|
2014-10-31 10:10:59 +00:00
|
|
|
// output logic
|
2014-06-05 11:58:14 +00:00
|
|
|
always @(posedge clk) begin
|
|
|
|
|
2015-10-13 08:36:45 +00:00
|
|
|
src_dac_enable <= dst_dac_en;
|
|
|
|
src_dac_valid <= dst_dac_valid;
|
2014-11-14 15:54:00 +00:00
|
|
|
|
|
|
|
case(mode)
|
|
|
|
4'h0 : begin
|
2015-10-13 08:36:45 +00:00
|
|
|
dst_dac_data <= src_dac_data;
|
2014-11-14 15:54:00 +00:00
|
|
|
end
|
|
|
|
4'h1 : begin
|
2015-10-13 08:36:45 +00:00
|
|
|
dst_dac_data <= { dac_data_fltr_q, dac_data_fltr_i };
|
2014-11-14 15:54:00 +00:00
|
|
|
end
|
|
|
|
4'h2 : begin
|
2015-10-13 08:36:45 +00:00
|
|
|
dst_dac_data <= { dac_data_fltr_q, dac_data_fltr_i };
|
2014-11-14 15:54:00 +00:00
|
|
|
end
|
|
|
|
default : begin
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
|
|
|
|
end
|
2014-06-05 11:58:14 +00:00
|
|
|
endmodule
|
2014-11-14 15:54:00 +00:00
|
|
|
|