2014-02-28 19:26:22 +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.
|
2014-02-28 19:26:22 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
2018-08-27 07:14:54 +00:00
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
module axi_hdmi_tx #(
|
|
|
|
|
|
|
|
parameter ID = 0,
|
|
|
|
parameter CR_CB_N = 0,
|
2019-01-11 08:54:16 +00:00
|
|
|
parameter FPGA_TECHNOLOGY = 0,
|
2018-07-23 12:21:44 +00:00
|
|
|
parameter INTERFACE = "16_BIT",
|
2017-04-13 08:45:54 +00:00
|
|
|
parameter OUT_CLK_POLARITY = 0) (
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// hdmi interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
input hdmi_clk,
|
|
|
|
output hdmi_out_clk,
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// 16-bit interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
output hdmi_16_hsync,
|
|
|
|
output hdmi_16_vsync,
|
|
|
|
output hdmi_16_data_e,
|
|
|
|
output [15:0] hdmi_16_data,
|
|
|
|
output [15:0] hdmi_16_es_data,
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// 24-bit interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
output hdmi_24_hsync,
|
|
|
|
output hdmi_24_vsync,
|
|
|
|
output hdmi_24_data_e,
|
|
|
|
output [23:0] hdmi_24_data,
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// 36-bit interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
output hdmi_36_hsync,
|
|
|
|
output hdmi_36_vsync,
|
|
|
|
output hdmi_36_data_e,
|
|
|
|
output [35:0] hdmi_36_data,
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// vdma interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
input vdma_clk,
|
2018-05-11 15:00:15 +00:00
|
|
|
input vdma_end_of_frame,
|
2017-04-13 08:45:54 +00:00
|
|
|
input vdma_valid,
|
|
|
|
input [63:0] vdma_data,
|
|
|
|
output vdma_ready,
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// axi interface
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
input s_axi_aclk,
|
|
|
|
input s_axi_aresetn,
|
|
|
|
input s_axi_awvalid,
|
2017-08-01 06:01:40 +00:00
|
|
|
input [15:0] s_axi_awaddr,
|
2017-04-13 08:45:54 +00:00
|
|
|
input [ 2:0] s_axi_awprot,
|
|
|
|
output s_axi_awready,
|
|
|
|
input s_axi_wvalid,
|
|
|
|
input [31:0] s_axi_wdata,
|
|
|
|
input [ 3:0] s_axi_wstrb,
|
|
|
|
output s_axi_wready,
|
|
|
|
output s_axi_bvalid,
|
|
|
|
output [ 1:0] s_axi_bresp,
|
|
|
|
input s_axi_bready,
|
|
|
|
input s_axi_arvalid,
|
2017-08-01 06:01:40 +00:00
|
|
|
input [15:0] s_axi_araddr,
|
2017-04-13 08:45:54 +00:00
|
|
|
input [ 2:0] s_axi_arprot,
|
|
|
|
output s_axi_arready,
|
|
|
|
output s_axi_rvalid,
|
|
|
|
output [ 1:0] s_axi_rresp,
|
|
|
|
output [31:0] s_axi_rdata,
|
|
|
|
input s_axi_rready);
|
|
|
|
|
2015-11-03 09:36:49 +00:00
|
|
|
/* 0 = Launch on rising edge, 1 = Launch on falling edge */
|
2014-02-28 19:26:22 +00:00
|
|
|
|
2018-07-23 12:21:44 +00:00
|
|
|
localparam EMBEDDED_SYNC = (INTERFACE == "16_BIT_EMBEDDED_SYNC") ? 1 : 0;
|
2019-01-11 08:54:16 +00:00
|
|
|
localparam XILINX_7SERIES = 1;
|
|
|
|
localparam XILINX_ULTRASCALE = 2;
|
2019-03-27 16:28:37 +00:00
|
|
|
localparam INTEL_5SERIES = 101;
|
2014-04-30 18:40:54 +00:00
|
|
|
|
2014-02-28 19:26:22 +00:00
|
|
|
// reset and clocks
|
|
|
|
|
|
|
|
wire up_rstn;
|
|
|
|
wire up_clk;
|
|
|
|
wire hdmi_rst;
|
|
|
|
wire vdma_rst;
|
|
|
|
|
|
|
|
// internal signals
|
|
|
|
|
2014-10-02 18:35:06 +00:00
|
|
|
wire up_wreq_s;
|
|
|
|
wire [13:0] up_waddr_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
wire [31:0] up_wdata_s;
|
2014-10-02 18:35:06 +00:00
|
|
|
wire up_wack_s;
|
|
|
|
wire up_rreq_s;
|
|
|
|
wire [13:0] up_raddr_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
wire [31:0] up_rdata_s;
|
2014-10-02 18:35:06 +00:00
|
|
|
wire up_rack_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
wire hdmi_csc_bypass_s;
|
2015-06-30 19:11:58 +00:00
|
|
|
wire hdmi_ss_bypass_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
wire [ 1:0] hdmi_srcsel_s;
|
|
|
|
wire [23:0] hdmi_const_rgb_s;
|
|
|
|
wire [15:0] hdmi_hl_active_s;
|
|
|
|
wire [15:0] hdmi_hl_width_s;
|
|
|
|
wire [15:0] hdmi_hs_width_s;
|
|
|
|
wire [15:0] hdmi_he_max_s;
|
|
|
|
wire [15:0] hdmi_he_min_s;
|
|
|
|
wire [15:0] hdmi_vf_active_s;
|
|
|
|
wire [15:0] hdmi_vf_width_s;
|
|
|
|
wire [15:0] hdmi_vs_width_s;
|
|
|
|
wire [15:0] hdmi_ve_max_s;
|
|
|
|
wire [15:0] hdmi_ve_min_s;
|
2016-05-05 10:26:59 +00:00
|
|
|
wire [23:0] hdmi_clip_max_s;
|
|
|
|
wire [23:0] hdmi_clip_min_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
wire hdmi_fs_toggle_s;
|
|
|
|
wire [ 8:0] hdmi_raddr_g_s;
|
|
|
|
wire hdmi_tpm_oos_s;
|
|
|
|
wire hdmi_status_s;
|
|
|
|
wire vdma_wr_s;
|
|
|
|
wire [ 8:0] vdma_waddr_s;
|
|
|
|
wire [47:0] vdma_wdata_s;
|
|
|
|
wire vdma_fs_ret_toggle_s;
|
|
|
|
wire [ 8:0] vdma_fs_waddr_s;
|
2014-07-01 16:27:37 +00:00
|
|
|
wire vdma_ovf_s;
|
|
|
|
wire vdma_unf_s;
|
|
|
|
wire vdma_tpm_oos_s;
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// signal name changes
|
|
|
|
|
|
|
|
assign up_rstn = s_axi_aresetn;
|
|
|
|
assign up_clk = s_axi_aclk;
|
|
|
|
|
|
|
|
// axi interface
|
|
|
|
|
2014-09-11 08:08:10 +00:00
|
|
|
up_axi i_up_axi (
|
2014-02-28 19:26:22 +00:00
|
|
|
.up_rstn (up_rstn),
|
|
|
|
.up_clk (up_clk),
|
|
|
|
.up_axi_awvalid (s_axi_awvalid),
|
|
|
|
.up_axi_awaddr (s_axi_awaddr),
|
|
|
|
.up_axi_awready (s_axi_awready),
|
|
|
|
.up_axi_wvalid (s_axi_wvalid),
|
|
|
|
.up_axi_wdata (s_axi_wdata),
|
|
|
|
.up_axi_wstrb (s_axi_wstrb),
|
|
|
|
.up_axi_wready (s_axi_wready),
|
|
|
|
.up_axi_bvalid (s_axi_bvalid),
|
|
|
|
.up_axi_bresp (s_axi_bresp),
|
|
|
|
.up_axi_bready (s_axi_bready),
|
|
|
|
.up_axi_arvalid (s_axi_arvalid),
|
|
|
|
.up_axi_araddr (s_axi_araddr),
|
|
|
|
.up_axi_arready (s_axi_arready),
|
|
|
|
.up_axi_rvalid (s_axi_rvalid),
|
|
|
|
.up_axi_rresp (s_axi_rresp),
|
|
|
|
.up_axi_rdata (s_axi_rdata),
|
|
|
|
.up_axi_rready (s_axi_rready),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_wreq (up_wreq_s),
|
|
|
|
.up_waddr (up_waddr_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.up_wdata (up_wdata_s),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_wack (up_wack_s),
|
|
|
|
.up_rreq (up_rreq_s),
|
|
|
|
.up_raddr (up_raddr_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.up_rdata (up_rdata_s),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_rack (up_rack_s));
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// processor interface
|
|
|
|
|
|
|
|
up_hdmi_tx i_up (
|
|
|
|
.hdmi_clk (hdmi_clk),
|
|
|
|
.hdmi_rst (hdmi_rst),
|
|
|
|
.hdmi_csc_bypass (hdmi_csc_bypass_s),
|
2015-06-30 19:11:58 +00:00
|
|
|
.hdmi_ss_bypass (hdmi_ss_bypass_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.hdmi_srcsel (hdmi_srcsel_s),
|
|
|
|
.hdmi_const_rgb (hdmi_const_rgb_s),
|
|
|
|
.hdmi_hl_active (hdmi_hl_active_s),
|
|
|
|
.hdmi_hl_width (hdmi_hl_width_s),
|
|
|
|
.hdmi_hs_width (hdmi_hs_width_s),
|
|
|
|
.hdmi_he_max (hdmi_he_max_s),
|
|
|
|
.hdmi_he_min (hdmi_he_min_s),
|
|
|
|
.hdmi_vf_active (hdmi_vf_active_s),
|
|
|
|
.hdmi_vf_width (hdmi_vf_width_s),
|
|
|
|
.hdmi_vs_width (hdmi_vs_width_s),
|
|
|
|
.hdmi_ve_max (hdmi_ve_max_s),
|
|
|
|
.hdmi_ve_min (hdmi_ve_min_s),
|
2016-04-12 19:01:07 +00:00
|
|
|
.hdmi_clip_max (hdmi_clip_max_s),
|
|
|
|
.hdmi_clip_min (hdmi_clip_min_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.hdmi_status (hdmi_status_s),
|
|
|
|
.hdmi_tpm_oos (hdmi_tpm_oos_s),
|
|
|
|
.hdmi_clk_ratio (32'd1),
|
|
|
|
.vdma_clk (vdma_clk),
|
|
|
|
.vdma_rst (vdma_rst),
|
|
|
|
.vdma_ovf (vdma_ovf_s),
|
|
|
|
.vdma_unf (vdma_unf_s),
|
|
|
|
.vdma_tpm_oos (vdma_tpm_oos_s),
|
|
|
|
.up_rstn (up_rstn),
|
|
|
|
.up_clk (up_clk),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_wreq (up_wreq_s),
|
|
|
|
.up_waddr (up_waddr_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.up_wdata (up_wdata_s),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_wack (up_wack_s),
|
|
|
|
.up_rreq (up_rreq_s),
|
|
|
|
.up_raddr (up_raddr_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.up_rdata (up_rdata_s),
|
2014-10-02 18:35:06 +00:00
|
|
|
.up_rack (up_rack_s));
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// vdma interface
|
|
|
|
|
|
|
|
axi_hdmi_tx_vdma i_vdma (
|
|
|
|
.hdmi_fs_toggle (hdmi_fs_toggle_s),
|
|
|
|
.hdmi_raddr_g (hdmi_raddr_g_s),
|
|
|
|
.vdma_clk (vdma_clk),
|
|
|
|
.vdma_rst (vdma_rst),
|
2015-08-27 20:03:03 +00:00
|
|
|
.vdma_valid (vdma_valid),
|
|
|
|
.vdma_data (vdma_data),
|
|
|
|
.vdma_ready (vdma_ready),
|
2018-05-11 15:00:15 +00:00
|
|
|
.vdma_end_of_frame (vdma_end_of_frame),
|
2014-02-28 19:26:22 +00:00
|
|
|
.vdma_wr (vdma_wr_s),
|
|
|
|
.vdma_waddr (vdma_waddr_s),
|
|
|
|
.vdma_wdata (vdma_wdata_s),
|
|
|
|
.vdma_fs_ret_toggle (vdma_fs_ret_toggle_s),
|
|
|
|
.vdma_fs_waddr (vdma_fs_waddr_s),
|
|
|
|
.vdma_tpm_oos (vdma_tpm_oos_s),
|
|
|
|
.vdma_ovf (vdma_ovf_s),
|
|
|
|
.vdma_unf (vdma_unf_s));
|
|
|
|
|
|
|
|
// hdmi interface
|
|
|
|
|
|
|
|
axi_hdmi_tx_core #(
|
2015-08-19 11:11:47 +00:00
|
|
|
.CR_CB_N(CR_CB_N),
|
|
|
|
.EMBEDDED_SYNC(EMBEDDED_SYNC))
|
2014-02-28 19:26:22 +00:00
|
|
|
i_tx_core (
|
|
|
|
.hdmi_clk (hdmi_clk),
|
|
|
|
.hdmi_rst (hdmi_rst),
|
|
|
|
.hdmi_16_hsync (hdmi_16_hsync),
|
|
|
|
.hdmi_16_vsync (hdmi_16_vsync),
|
|
|
|
.hdmi_16_data_e (hdmi_16_data_e),
|
|
|
|
.hdmi_16_data (hdmi_16_data),
|
|
|
|
.hdmi_16_es_data (hdmi_16_es_data),
|
|
|
|
.hdmi_24_hsync (hdmi_24_hsync),
|
|
|
|
.hdmi_24_vsync (hdmi_24_vsync),
|
|
|
|
.hdmi_24_data_e (hdmi_24_data_e),
|
|
|
|
.hdmi_24_data (hdmi_24_data),
|
|
|
|
.hdmi_36_hsync (hdmi_36_hsync),
|
|
|
|
.hdmi_36_vsync (hdmi_36_vsync),
|
|
|
|
.hdmi_36_data_e (hdmi_36_data_e),
|
|
|
|
.hdmi_36_data (hdmi_36_data),
|
|
|
|
.hdmi_fs_toggle (hdmi_fs_toggle_s),
|
|
|
|
.hdmi_raddr_g (hdmi_raddr_g_s),
|
|
|
|
.hdmi_tpm_oos (hdmi_tpm_oos_s),
|
|
|
|
.hdmi_status (hdmi_status_s),
|
|
|
|
.vdma_clk (vdma_clk),
|
|
|
|
.vdma_wr (vdma_wr_s),
|
|
|
|
.vdma_waddr (vdma_waddr_s),
|
|
|
|
.vdma_wdata (vdma_wdata_s),
|
|
|
|
.vdma_fs_ret_toggle (vdma_fs_ret_toggle_s),
|
|
|
|
.vdma_fs_waddr (vdma_fs_waddr_s),
|
|
|
|
.hdmi_csc_bypass (hdmi_csc_bypass_s),
|
2015-06-30 19:11:58 +00:00
|
|
|
.hdmi_ss_bypass (hdmi_ss_bypass_s),
|
2014-02-28 19:26:22 +00:00
|
|
|
.hdmi_srcsel (hdmi_srcsel_s),
|
|
|
|
.hdmi_const_rgb (hdmi_const_rgb_s),
|
|
|
|
.hdmi_hl_active (hdmi_hl_active_s),
|
|
|
|
.hdmi_hl_width (hdmi_hl_width_s),
|
|
|
|
.hdmi_hs_width (hdmi_hs_width_s),
|
|
|
|
.hdmi_he_max (hdmi_he_max_s),
|
|
|
|
.hdmi_he_min (hdmi_he_min_s),
|
|
|
|
.hdmi_vf_active (hdmi_vf_active_s),
|
|
|
|
.hdmi_vf_width (hdmi_vf_width_s),
|
|
|
|
.hdmi_vs_width (hdmi_vs_width_s),
|
|
|
|
.hdmi_ve_max (hdmi_ve_max_s),
|
2016-04-12 19:01:07 +00:00
|
|
|
.hdmi_ve_min (hdmi_ve_min_s),
|
|
|
|
.hdmi_clip_max (hdmi_clip_max_s),
|
|
|
|
.hdmi_clip_min (hdmi_clip_min_s));
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
// hdmi output clock
|
|
|
|
|
2014-04-30 18:40:54 +00:00
|
|
|
generate
|
2019-01-11 08:54:16 +00:00
|
|
|
if (FPGA_TECHNOLOGY == XILINX_ULTRASCALE) begin
|
2014-04-30 18:40:54 +00:00
|
|
|
ODDRE1 #(.SRVAL(1'b0)) i_clk_oddr (
|
|
|
|
.SR (1'b0),
|
2015-11-03 09:36:49 +00:00
|
|
|
.D1 (~OUT_CLK_POLARITY),
|
|
|
|
.D2 (OUT_CLK_POLARITY),
|
2014-04-30 18:40:54 +00:00
|
|
|
.C (hdmi_clk),
|
|
|
|
.Q (hdmi_out_clk));
|
|
|
|
end
|
2019-03-27 16:28:37 +00:00
|
|
|
if (FPGA_TECHNOLOGY == INTEL_5SERIES) begin
|
2014-05-02 16:07:47 +00:00
|
|
|
altddio_out #(.WIDTH(1)) i_clk_oddr (
|
|
|
|
.aclr (1'b0),
|
|
|
|
.aset (1'b0),
|
|
|
|
.sclr (1'b0),
|
|
|
|
.sset (1'b0),
|
|
|
|
.oe (1'b1),
|
|
|
|
.outclocken (1'b1),
|
2015-11-03 09:36:49 +00:00
|
|
|
.datain_h (~OUT_CLK_POLARITY),
|
|
|
|
.datain_l (OUT_CLK_POLARITY),
|
2014-05-02 16:07:47 +00:00
|
|
|
.outclock (hdmi_clk),
|
|
|
|
.oe_out (),
|
|
|
|
.dataout (hdmi_out_clk));
|
|
|
|
end
|
2019-01-11 08:54:16 +00:00
|
|
|
if (FPGA_TECHNOLOGY == XILINX_7SERIES) begin
|
2014-02-28 19:26:22 +00:00
|
|
|
ODDR #(.INIT(1'b0)) i_clk_oddr (
|
|
|
|
.R (1'b0),
|
|
|
|
.S (1'b0),
|
|
|
|
.CE (1'b1),
|
2015-11-03 09:36:49 +00:00
|
|
|
.D1 (~OUT_CLK_POLARITY),
|
|
|
|
.D2 (OUT_CLK_POLARITY),
|
2014-02-28 19:26:22 +00:00
|
|
|
.C (hdmi_clk),
|
|
|
|
.Q (hdmi_out_clk));
|
2014-04-30 18:40:54 +00:00
|
|
|
end
|
|
|
|
endgenerate
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|