library: ported hdmi tx to altera
parent
b55d0d7ad1
commit
5f2fb45b24
|
@ -111,6 +111,7 @@ module axi_hdmi_tx (
|
|||
|
||||
localparam XILINX_7SERIES = 0;
|
||||
localparam XILINX_ULTRASCALE = 1;
|
||||
localparam ALTERA_5SERIES = 16;
|
||||
|
||||
// hdmi interface
|
||||
|
||||
|
@ -374,6 +375,20 @@ module axi_hdmi_tx (
|
|||
.C (hdmi_clk),
|
||||
.Q (hdmi_out_clk));
|
||||
end
|
||||
if (PCORE_DEVICE_TYPE == ALTERA_5SERIES) begin
|
||||
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),
|
||||
.datain_h (1'b1),
|
||||
.datain_l (1'b0),
|
||||
.outclock (hdmi_clk),
|
||||
.oe_out (),
|
||||
.dataout (hdmi_out_clk));
|
||||
end
|
||||
if (PCORE_DEVICE_TYPE == XILINX_7SERIES) begin
|
||||
ODDR #(.INIT(1'b0)) i_clk_oddr (
|
||||
.R (1'b0),
|
||||
|
|
|
@ -0,0 +1,272 @@
|
|||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// Copyright 2011(c) Analog Devices, Inc.
|
||||
//
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification,
|
||||
// are permitted provided that the following conditions are met:
|
||||
// - Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// - Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in
|
||||
// the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// - Neither the name of Analog Devices, Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived
|
||||
// from this software without specific prior written permission.
|
||||
// - The use of this software may or may not infringe the patent rights
|
||||
// of one or more patent holders. This license does not release you
|
||||
// from the requirement that you obtain separate licenses from these
|
||||
// patent holders to use this software.
|
||||
// - Use of the software either in source or binary form, must be run
|
||||
// on or directly connected to an Analog Devices Inc. component.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
// INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
//
|
||||
// IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY
|
||||
// RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
|
||||
`timescale 1ns/100ps
|
||||
|
||||
module axi_hdmi_tx_alt (
|
||||
|
||||
// hdmi interface
|
||||
|
||||
hdmi_clk,
|
||||
hdmi_out_clk,
|
||||
|
||||
// 16-bit interface
|
||||
|
||||
hdmi_16_hsync,
|
||||
hdmi_16_vsync,
|
||||
hdmi_16_data_e,
|
||||
hdmi_16_data,
|
||||
hdmi_16_es_data,
|
||||
|
||||
// 24-bit interface
|
||||
|
||||
hdmi_24_hsync,
|
||||
hdmi_24_vsync,
|
||||
hdmi_24_data_e,
|
||||
hdmi_24_data,
|
||||
|
||||
// 36-bit interface
|
||||
|
||||
hdmi_36_hsync,
|
||||
hdmi_36_vsync,
|
||||
hdmi_36_data_e,
|
||||
hdmi_36_data,
|
||||
|
||||
// vdma interface
|
||||
|
||||
vdma_clk,
|
||||
vdma_valid,
|
||||
vdma_data,
|
||||
vdma_ready,
|
||||
vdma_sop,
|
||||
vdma_eop,
|
||||
vdma_empty,
|
||||
|
||||
// axi interface
|
||||
|
||||
s_axi_aclk,
|
||||
s_axi_aresetn,
|
||||
s_axi_awvalid,
|
||||
s_axi_awaddr,
|
||||
s_axi_awid,
|
||||
s_axi_awlen,
|
||||
s_axi_awsize,
|
||||
s_axi_awburst,
|
||||
s_axi_awlock,
|
||||
s_axi_awcache,
|
||||
s_axi_awprot,
|
||||
s_axi_awready,
|
||||
s_axi_wvalid,
|
||||
s_axi_wdata,
|
||||
s_axi_wstrb,
|
||||
s_axi_wlast,
|
||||
s_axi_wready,
|
||||
s_axi_bvalid,
|
||||
s_axi_bresp,
|
||||
s_axi_bid,
|
||||
s_axi_bready,
|
||||
s_axi_arvalid,
|
||||
s_axi_araddr,
|
||||
s_axi_arid,
|
||||
s_axi_arlen,
|
||||
s_axi_arsize,
|
||||
s_axi_arburst,
|
||||
s_axi_arlock,
|
||||
s_axi_arcache,
|
||||
s_axi_arprot,
|
||||
s_axi_arready,
|
||||
s_axi_rvalid,
|
||||
s_axi_rresp,
|
||||
s_axi_rdata,
|
||||
s_axi_rid,
|
||||
s_axi_rlast,
|
||||
s_axi_rready);
|
||||
|
||||
parameter PCORE_ID = 0;
|
||||
parameter PCORE_AXI_ID_WIDTH = 3;
|
||||
parameter PCORE_DEVICE_TYPE = 0;
|
||||
parameter PCORE_Cr_Cb_N = 0;
|
||||
parameter PCORE_EMBEDDED_SYNC = 0;
|
||||
|
||||
// hdmi interface
|
||||
|
||||
input hdmi_clk;
|
||||
output hdmi_out_clk;
|
||||
|
||||
// 16-bit interface
|
||||
|
||||
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;
|
||||
|
||||
// 24-bit interface
|
||||
|
||||
output hdmi_24_hsync;
|
||||
output hdmi_24_vsync;
|
||||
output hdmi_24_data_e;
|
||||
output [23:0] hdmi_24_data;
|
||||
|
||||
// 36-bit interface
|
||||
|
||||
output hdmi_36_hsync;
|
||||
output hdmi_36_vsync;
|
||||
output hdmi_36_data_e;
|
||||
output [35:0] hdmi_36_data;
|
||||
|
||||
// vdma interface
|
||||
|
||||
input vdma_clk;
|
||||
input vdma_valid;
|
||||
input [63:0] vdma_data;
|
||||
output vdma_ready;
|
||||
input vdma_sop;
|
||||
input vdma_eop;
|
||||
input [ 3:0] vdma_empty;
|
||||
|
||||
// axi interface
|
||||
|
||||
input s_axi_aclk;
|
||||
input s_axi_aresetn;
|
||||
input s_axi_awvalid;
|
||||
input [13:0] s_axi_awaddr;
|
||||
input [(PCORE_AXI_ID_WIDTH-1):0] s_axi_awid;
|
||||
input [ 7:0] s_axi_awlen;
|
||||
input [ 2:0] s_axi_awsize;
|
||||
input [ 1:0] s_axi_awburst;
|
||||
input [ 0:0] s_axi_awlock;
|
||||
input [ 3:0] s_axi_awcache;
|
||||
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;
|
||||
input s_axi_wlast;
|
||||
output s_axi_wready;
|
||||
output s_axi_bvalid;
|
||||
output [ 1:0] s_axi_bresp;
|
||||
output [(PCORE_AXI_ID_WIDTH-1):0] s_axi_bid;
|
||||
input s_axi_bready;
|
||||
input s_axi_arvalid;
|
||||
input [13:0] s_axi_araddr;
|
||||
input [(PCORE_AXI_ID_WIDTH-1):0] s_axi_arid;
|
||||
input [ 7:0] s_axi_arlen;
|
||||
input [ 2:0] s_axi_arsize;
|
||||
input [ 1:0] s_axi_arburst;
|
||||
input [ 0:0] s_axi_arlock;
|
||||
input [ 3:0] s_axi_arcache;
|
||||
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;
|
||||
output [(PCORE_AXI_ID_WIDTH-1):0] s_axi_rid;
|
||||
output s_axi_rlast;
|
||||
input s_axi_rready;
|
||||
|
||||
// internal signals
|
||||
|
||||
wire vdma_fsync;
|
||||
|
||||
// defaults
|
||||
|
||||
assign s_axi_bid = 'd0;
|
||||
assign s_axi_rid = 'd0;
|
||||
assign s_axi_rlast = 1'd0;
|
||||
|
||||
// hdmi tx lite version
|
||||
|
||||
axi_hdmi_tx #(
|
||||
.PCORE_ID (PCORE_ID),
|
||||
.PCORE_Cr_Cb_N (PCORE_Cr_Cb_N),
|
||||
.PCORE_DEVICE_TYPE (PCORE_DEVICE_TYPE),
|
||||
.PCORE_EMBEDDED_SYNC (PCORE_EMBEDDED_SYNC),
|
||||
.C_S_AXI_MIN_SIZE (32'hffff),
|
||||
.C_BASEADDR (32'h00000000),
|
||||
.C_HIGHADDR (32'hffffffff))
|
||||
i_hdmi_tx (
|
||||
.hdmi_clk (hdmi_clk),
|
||||
.hdmi_out_clk (hdmi_out_clk),
|
||||
.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),
|
||||
.m_axis_mm2s_clk (vdma_clk),
|
||||
.m_axis_mm2s_fsync (vdma_fsync),
|
||||
.m_axis_mm2s_fsync_ret (vdma_fsync),
|
||||
.m_axis_mm2s_tvalid (vdma_valid),
|
||||
.m_axis_mm2s_tdata (vdma_data),
|
||||
.m_axis_mm2s_tkeep (8'hff),
|
||||
.m_axis_mm2s_tlast (vdma_eop),
|
||||
.m_axis_mm2s_tready (vdma_ready),
|
||||
.s_axi_aclk (s_axi_aclk),
|
||||
.s_axi_aresetn (s_axi_aresetn),
|
||||
.s_axi_awvalid (s_axi_awvalid),
|
||||
.s_axi_awaddr ({18'd0, s_axi_awaddr}),
|
||||
.s_axi_awready (s_axi_awready),
|
||||
.s_axi_wvalid (s_axi_wvalid),
|
||||
.s_axi_wdata (s_axi_wdata),
|
||||
.s_axi_wstrb (s_axi_wstrb),
|
||||
.s_axi_wready (s_axi_wready),
|
||||
.s_axi_bvalid (s_axi_bvalid),
|
||||
.s_axi_bresp (s_axi_bresp),
|
||||
.s_axi_bready (s_axi_bready),
|
||||
.s_axi_arvalid (s_axi_arvalid),
|
||||
.s_axi_araddr ({18'd0, s_axi_araddr}),
|
||||
.s_axi_arready (s_axi_arready),
|
||||
.s_axi_rvalid (s_axi_rvalid),
|
||||
.s_axi_rresp (s_axi_rresp),
|
||||
.s_axi_rdata (s_axi_rdata),
|
||||
.s_axi_rready (s_axi_rready));
|
||||
|
||||
endmodule
|
||||
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
|
||||
|
||||
package require -exact qsys 13.0
|
||||
source ../scripts/adi_env.tcl
|
||||
|
||||
set_module_property NAME axi_hdmi_tx
|
||||
set_module_property DESCRIPTION "AXI HDMI Transmit Interface"
|
||||
set_module_property VERSION 1.0
|
||||
set_module_property DISPLAY_NAME axi_hdmi_tx
|
||||
|
||||
# files
|
||||
|
||||
add_fileset quartus_synth QUARTUS_SYNTH "" "Quartus Synthesis"
|
||||
set_fileset_property quartus_synth TOP_LEVEL axi_hdmi_tx_alt
|
||||
add_fileset_file MULT_MACRO.v VERILOG PATH $ad_hdl_dir/library/common/altera/MULT_MACRO.v
|
||||
add_fileset_file ad_rst.v VERILOG PATH $ad_hdl_dir/library/common/altera/ad_rst.v
|
||||
add_fileset_file ad_mem.v VERILOG PATH $ad_hdl_dir/library/common/ad_mem.v
|
||||
add_fileset_file ad_csc_1_mul.v VERILOG PATH $ad_hdl_dir/library/common/ad_csc_1_mul.v
|
||||
add_fileset_file ad_csc_1_add.v VERILOG PATH $ad_hdl_dir/library/common/ad_csc_1_add.v
|
||||
add_fileset_file ad_csc_1.v VERILOG PATH $ad_hdl_dir/library/common/ad_csc_1.v
|
||||
add_fileset_file ad_csc_RGB2CrYCb.v VERILOG PATH $ad_hdl_dir/library/common/ad_csc_RGB2CrYCb.v
|
||||
add_fileset_file ad_ss_444to422.v VERILOG PATH $ad_hdl_dir/library/common/ad_ss_444to422.v
|
||||
add_fileset_file up_axi.v VERILOG PATH $ad_hdl_dir/library/common/up_axi.v
|
||||
add_fileset_file up_xfer_cntrl.v VERILOG PATH $ad_hdl_dir/library/common/up_xfer_cntrl.v
|
||||
add_fileset_file up_xfer_status.v VERILOG PATH $ad_hdl_dir/library/common/up_xfer_status.v
|
||||
add_fileset_file up_clock_mon.v VERILOG PATH $ad_hdl_dir/library/common/up_clock_mon.v
|
||||
add_fileset_file up_hdmi_tx.v VERILOG PATH $ad_hdl_dir/library/common/up_hdmi_tx.v
|
||||
add_fileset_file axi_hdmi_tx_vdma.v VERILOG PATH axi_hdmi_tx_vdma.v
|
||||
add_fileset_file axi_hdmi_tx_core.v VERILOG PATH axi_hdmi_tx_core.v
|
||||
add_fileset_file axi_hdmi_tx.v VERILOG PATH axi_hdmi_tx.v
|
||||
add_fileset_file axi_hdmi_tx_alt.v VERILOG PATH axi_hdmi_tx_alt.v TOP_LEVEL_FILE
|
||||
|
||||
# parameters
|
||||
|
||||
add_parameter PCORE_ID INTEGER 0
|
||||
set_parameter_property PCORE_ID DEFAULT_VALUE 0
|
||||
set_parameter_property PCORE_ID DISPLAY_NAME PCORE_ID
|
||||
set_parameter_property PCORE_ID TYPE INTEGER
|
||||
set_parameter_property PCORE_ID UNITS None
|
||||
set_parameter_property PCORE_ID HDL_PARAMETER true
|
||||
|
||||
add_parameter PCORE_DEVICE_TYPE INTEGER 0
|
||||
set_parameter_property PCORE_DEVICE_TYPE DEFAULT_VALUE 16
|
||||
set_parameter_property PCORE_DEVICE_TYPE DISPLAY_NAME PCORE_DEVICE_TYPE
|
||||
set_parameter_property PCORE_DEVICE_TYPE TYPE INTEGER
|
||||
set_parameter_property PCORE_DEVICE_TYPE UNITS None
|
||||
set_parameter_property PCORE_DEVICE_TYPE HDL_PARAMETER true
|
||||
|
||||
add_parameter PCORE_AXI_ID_WIDTH INTEGER 0
|
||||
set_parameter_property PCORE_AXI_ID_WIDTH DEFAULT_VALUE 3
|
||||
set_parameter_property PCORE_AXI_ID_WIDTH DISPLAY_NAME PCORE_AXI_ID_WIDTH
|
||||
set_parameter_property PCORE_AXI_ID_WIDTH TYPE INTEGER
|
||||
set_parameter_property PCORE_AXI_ID_WIDTH UNITS None
|
||||
set_parameter_property PCORE_AXI_ID_WIDTH HDL_PARAMETER true
|
||||
|
||||
add_parameter PCORE_Cr_Cb_N INTEGER 0
|
||||
set_parameter_property PCORE_Cr_Cb_N DEFAULT_VALUE 0
|
||||
set_parameter_property PCORE_Cr_Cb_N DISPLAY_NAME PCORE_Cr_Cb_N
|
||||
set_parameter_property PCORE_Cr_Cb_N TYPE INTEGER
|
||||
set_parameter_property PCORE_Cr_Cb_N UNITS None
|
||||
set_parameter_property PCORE_Cr_Cb_N HDL_PARAMETER true
|
||||
|
||||
add_parameter PCORE_EMBEDDED_SYNC INTEGER 0
|
||||
set_parameter_property PCORE_EMBEDDED_SYNC DEFAULT_VALUE 0
|
||||
set_parameter_property PCORE_EMBEDDED_SYNC DISPLAY_NAME PCORE_EMBEDDED_SYNC
|
||||
set_parameter_property PCORE_EMBEDDED_SYNC TYPE INTEGER
|
||||
set_parameter_property PCORE_EMBEDDED_SYNC UNITS None
|
||||
set_parameter_property PCORE_EMBEDDED_SYNC HDL_PARAMETER true
|
||||
|
||||
# axi4 slave
|
||||
|
||||
add_interface s_axi_clock clock end
|
||||
add_interface_port s_axi_clock s_axi_aclk clk Input 1
|
||||
|
||||
add_interface s_axi_reset reset end
|
||||
set_interface_property s_axi_reset associatedClock s_axi_clock
|
||||
add_interface_port s_axi_reset s_axi_aresetn reset_n Input 1
|
||||
|
||||
add_interface s_axi axi4 end
|
||||
set_interface_property s_axi associatedClock s_axi_clock
|
||||
set_interface_property s_axi associatedReset s_axi_reset
|
||||
add_interface_port s_axi s_axi_awvalid awvalid Input 1
|
||||
add_interface_port s_axi s_axi_awaddr awaddr Input 14
|
||||
add_interface_port s_axi s_axi_awready awready Output 1
|
||||
add_interface_port s_axi s_axi_wvalid wvalid Input 1
|
||||
add_interface_port s_axi s_axi_wdata wdata Input 32
|
||||
add_interface_port s_axi s_axi_wstrb wstrb Input 4
|
||||
add_interface_port s_axi s_axi_wready wready Output 1
|
||||
add_interface_port s_axi s_axi_bvalid bvalid Output 1
|
||||
add_interface_port s_axi s_axi_bresp bresp Output 2
|
||||
add_interface_port s_axi s_axi_bready bready Input 1
|
||||
add_interface_port s_axi s_axi_arvalid arvalid Input 1
|
||||
add_interface_port s_axi s_axi_araddr araddr Input 14
|
||||
add_interface_port s_axi s_axi_arready arready Output 1
|
||||
add_interface_port s_axi s_axi_rvalid rvalid Output 1
|
||||
add_interface_port s_axi s_axi_rresp rresp Output 2
|
||||
add_interface_port s_axi s_axi_rdata rdata Output 32
|
||||
add_interface_port s_axi s_axi_rready rready Input 1
|
||||
add_interface_port s_axi s_axi_awid awid Input PCORE_AXI_ID_WIDTH
|
||||
add_interface_port s_axi s_axi_awlen awlen Input 8
|
||||
add_interface_port s_axi s_axi_awsize awsize Input 3
|
||||
add_interface_port s_axi s_axi_awburst awburst Input 2
|
||||
add_interface_port s_axi s_axi_awlock awlock Input 1
|
||||
add_interface_port s_axi s_axi_awcache awcache Input 4
|
||||
add_interface_port s_axi s_axi_awprot awprot Input 3
|
||||
add_interface_port s_axi s_axi_wlast wlast Input 1
|
||||
add_interface_port s_axi s_axi_bid bid Output PCORE_AXI_ID_WIDTH
|
||||
add_interface_port s_axi s_axi_arid arid Input PCORE_AXI_ID_WIDTH
|
||||
add_interface_port s_axi s_axi_arlen arlen Input 8
|
||||
add_interface_port s_axi s_axi_arsize arsize Input 3
|
||||
add_interface_port s_axi s_axi_arburst arburst Input 2
|
||||
add_interface_port s_axi s_axi_arlock arlock Input 1
|
||||
add_interface_port s_axi s_axi_arcache arcache Input 4
|
||||
add_interface_port s_axi s_axi_arprot arprot Input 3
|
||||
add_interface_port s_axi s_axi_rid rid Output PCORE_AXI_ID_WIDTH
|
||||
add_interface_port s_axi s_axi_rlast rlast Output 1
|
||||
|
||||
# hdmi interface
|
||||
|
||||
add_interface hdmi_clock clock end
|
||||
add_interface_port hdmi_clock hdmi_clk clk Input 1
|
||||
|
||||
add_interface hdmi_if conduit end
|
||||
set_interface_property hdmi_if associatedClock hdmi_clock
|
||||
add_interface_port hdmi_if hdmi_out_clk h_clk Output 1
|
||||
add_interface_port hdmi_if hdmi_16_hsync h16_hsync Output 1
|
||||
add_interface_port hdmi_if hdmi_16_vsync h16_vsync Output 1
|
||||
add_interface_port hdmi_if hdmi_16_data_e h16_data_e Output 1
|
||||
add_interface_port hdmi_if hdmi_16_data h16_data Output 16
|
||||
add_interface_port hdmi_if hdmi_16_es_data h16_es_data Output 16
|
||||
add_interface_port hdmi_if hdmi_24_hsync h24_hsync Output 1
|
||||
add_interface_port hdmi_if hdmi_24_vsync h24_vsync Output 1
|
||||
add_interface_port hdmi_if hdmi_24_data_e h24_data_e Output 1
|
||||
add_interface_port hdmi_if hdmi_24_data h24_data Output 24
|
||||
add_interface_port hdmi_if hdmi_36_hsync h36_hsync Output 1
|
||||
add_interface_port hdmi_if hdmi_36_vsync h36_vsync Output 1
|
||||
add_interface_port hdmi_if hdmi_36_data_e h36_data_e Output 1
|
||||
add_interface_port hdmi_if hdmi_36_data h36_data Output 36
|
||||
|
||||
# avalon streaming dma
|
||||
|
||||
add_interface vdma_clock clock end
|
||||
add_interface_port vdma_clock vdma_clk clk Input 1
|
||||
|
||||
add_interface vdma_if avalon_streaming end
|
||||
set_interface_property vdma_if associatedClock vdma_clock
|
||||
add_interface_port vdma_if vdma_valid valid Input 1
|
||||
add_interface_port vdma_if vdma_data data Input 64
|
||||
add_interface_port vdma_if vdma_ready ready Output 1
|
||||
add_interface_port vdma_if vdma_sop startofpacket Input 1
|
||||
add_interface_port vdma_if vdma_eop endofpacket Input 1
|
||||
add_interface_port vdma_if vdma_empty empty Input 3
|
||||
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// Copyright 2014(c) Analog Devices, Inc.
|
||||
//
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification,
|
||||
// are permitted provided that the following conditions are met:
|
||||
// - Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// - Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in
|
||||
// the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// - Neither the name of Analog Devices, Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived
|
||||
// from this software without specific prior written permission.
|
||||
// - The use of this software may or may not infringe the patent rights
|
||||
// of one or more patent holders. This license does not release you
|
||||
// from the requirement that you obtain separate licenses from these
|
||||
// patent holders to use this software.
|
||||
// - Use of the software either in source or binary form, must be run
|
||||
// on or directly connected to an Analog Devices Inc. component.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
// INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
//
|
||||
// IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY
|
||||
// RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// replacing Xilinx's macro with Altera's LPM
|
||||
|
||||
`timescale 1ps/1ps
|
||||
|
||||
module MULT_MACRO (
|
||||
|
||||
CE,
|
||||
RST,
|
||||
CLK,
|
||||
A,
|
||||
B,
|
||||
P);
|
||||
|
||||
parameter LATENCY = 3;
|
||||
parameter WIDTH_A = 16;
|
||||
parameter WIDTH_B = 16;
|
||||
|
||||
localparam WIDTH_P = WIDTH_A + WIDTH_B;
|
||||
|
||||
input CE;
|
||||
input RST;
|
||||
input CLK;
|
||||
|
||||
input [WIDTH_A-1:0] A;
|
||||
input [WIDTH_B-1:0] B;
|
||||
output [WIDTH_P-1:0] P;
|
||||
|
||||
lpm_mult #(
|
||||
.lpm_type ("lpm_mult"),
|
||||
.lpm_widtha (WIDTH_A),
|
||||
.lpm_widthb (WIDTH_B),
|
||||
.lpm_widthp (WIDTH_P),
|
||||
.lpm_representation ("SIGNED"),
|
||||
.lpm_pipeline (3))
|
||||
i_lpm_mult (
|
||||
.clken (CE),
|
||||
.aclr (RST),
|
||||
.sum (1'b0),
|
||||
.clock (CLK),
|
||||
.dataa (A),
|
||||
.datab (B),
|
||||
.result (P));
|
||||
|
||||
endmodule
|
||||
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
Loading…
Reference in New Issue