2015-01-08 15:01:22 +00:00
|
|
|
|
2015-03-24 19:08:22 +00:00
|
|
|
# adv7511 (reconfigure base design)
|
2015-01-08 15:01:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports hdmi_out_clk]]]
|
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports hdmi_vsync]]]
|
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports hdmi_hsync]]]
|
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports hdmi_data_e]]]
|
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports hdmi_data]]]
|
2015-03-24 19:08:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
delete_bd_objs [get_bd_ports hdmi_out_clk]
|
|
|
|
delete_bd_objs [get_bd_ports hdmi_vsync]
|
|
|
|
delete_bd_objs [get_bd_ports hdmi_hsync]
|
|
|
|
delete_bd_objs [get_bd_ports hdmi_data_e]
|
|
|
|
delete_bd_objs [get_bd_ports hdmi_data]
|
2015-01-08 15:01:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
set_property CONFIG.EMBEDDED_SYNC {1} [get_bd_cells axi_hdmi_core]
|
2016-11-29 14:43:04 +00:00
|
|
|
set_property CONFIG.OUT_CLK_POLARITY {1} [get_bd_cells axi_hdmi_core]
|
2015-03-23 10:45:34 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
create_bd_port -dir O hdmi_tx_clk
|
|
|
|
create_bd_port -dir O -from 15 -to 0 hdmi_tx_data
|
2015-03-23 10:45:34 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
ad_connect hdmi_tx_clk axi_hdmi_core/hdmi_out_clk
|
|
|
|
ad_connect hdmi_tx_data axi_hdmi_core/hdmi_16_es_data
|
2015-03-24 19:08:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
# adv7611
|
2015-03-24 19:08:22 +00:00
|
|
|
|
|
|
|
set axi_hdmi_rx_core [create_bd_cell -type ip -vlnv analog.com:user:axi_hdmi_rx:1.0 axi_hdmi_rx_core]
|
|
|
|
|
|
|
|
set axi_hdmi_rx_dma [create_bd_cell -type ip -vlnv analog.com:user:axi_dmac:1.0 axi_hdmi_rx_dma]
|
2015-08-19 11:11:47 +00:00
|
|
|
set_property -dict [list CONFIG.DMA_TYPE_SRC {2}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.DMA_TYPE_DEST {0}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.CYCLIC {0}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.AXI_SLICE_SRC {1}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.AXI_SLICE_DEST {1}] $axi_hdmi_rx_dma
|
2015-08-20 07:13:39 +00:00
|
|
|
set_property -dict [list CONFIG.DMA_2D_TRANSFER {1}] $axi_hdmi_rx_dma
|
2015-08-19 11:11:47 +00:00
|
|
|
set_property -dict [list CONFIG.SYNC_TRANSFER_START {1}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.DMA_LENGTH_WIDTH {14}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.DMA_DATA_WIDTH_SRC {64}] $axi_hdmi_rx_dma
|
|
|
|
set_property -dict [list CONFIG.DMA_DATA_WIDTH_DEST {64}] $axi_hdmi_rx_dma
|
2016-11-29 13:10:59 +00:00
|
|
|
set_property -dict [list CONFIG.FIFO_SIZE {16}] $axi_hdmi_rx_dma
|
2015-03-24 19:08:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
create_bd_port -dir I hdmi_rx_clk
|
|
|
|
create_bd_port -dir I -from 15 -to 0 hdmi_rx_data
|
|
|
|
|
2015-03-24 19:08:22 +00:00
|
|
|
ad_connect hdmi_rx_clk axi_hdmi_rx_core/hdmi_rx_clk
|
|
|
|
ad_connect hdmi_rx_data axi_hdmi_rx_core/hdmi_rx_data
|
2016-06-01 17:54:45 +00:00
|
|
|
|
2016-11-29 12:15:15 +00:00
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_clk axi_hdmi_rx_dma/fifo_wr_clk
|
2015-03-24 19:08:22 +00:00
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_dma_sof axi_hdmi_rx_dma/fifo_wr_sync
|
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_dma_de axi_hdmi_rx_dma/fifo_wr_en
|
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_dma_data axi_hdmi_rx_dma/fifo_wr_din
|
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_dma_ovf axi_hdmi_rx_dma/fifo_wr_overflow
|
2016-06-01 17:54:45 +00:00
|
|
|
ad_connect axi_hdmi_rx_core/hdmi_dma_unf GND
|
|
|
|
ad_connect sys_cpu_resetn axi_hdmi_rx_dma/m_dest_axi_aresetn
|
|
|
|
|
|
|
|
ad_cpu_interconnect 0x43100000 axi_hdmi_rx_core
|
|
|
|
ad_cpu_interconnect 0x43C20000 axi_hdmi_rx_dma
|
|
|
|
|
|
|
|
ad_mem_hp2_interconnect sys_cpu_clk sys_ps7/S_AXI_HP2
|
|
|
|
ad_mem_hp2_interconnect sys_cpu_clk axi_hdmi_rx_dma/m_dest_axi
|
|
|
|
|
|
|
|
ad_cpu_interrupt ps-12 mb-12 axi_hdmi_rx_dma/irq
|
|
|
|
|
|
|
|
# spdif tx
|
|
|
|
|
|
|
|
delete_bd_objs [get_bd_nets -of_objects [find_bd_objs -relation connected_to [get_bd_ports spdif]]]
|
|
|
|
delete_bd_objs [get_bd_ports spdif]
|
|
|
|
|
|
|
|
create_bd_port -dir O spdif_tx
|
|
|
|
ad_connect spdif_tx axi_spdif_tx_core/spdif_tx_o
|
|
|
|
|
|
|
|
# spdif rx
|
|
|
|
|
|
|
|
create_bd_port -dir I spdif_rx
|
2015-03-24 19:08:22 +00:00
|
|
|
|
2015-07-03 14:48:29 +00:00
|
|
|
set axi_spdif_rx_core [create_bd_cell -type ip -vlnv analog.com:user:axi_spdif_rx:1.0 axi_spdif_rx_core]
|
2015-09-29 15:50:41 +00:00
|
|
|
set_property -dict [list CONFIG.C_S_AXI_ADDR_WIDTH {16}] $axi_spdif_rx_core
|
|
|
|
set_property -dict [list CONFIG.C_DMA_TYPE {1}] $axi_spdif_rx_core
|
2015-07-03 14:48:29 +00:00
|
|
|
|
2015-07-09 07:58:54 +00:00
|
|
|
set_property -dict [list CONFIG.PCW_USE_DMA3 {1}] $sys_ps7
|
2015-07-03 14:48:29 +00:00
|
|
|
|
|
|
|
ad_connect sys_cpu_clk axi_spdif_rx_core/DMA_REQ_ACLK
|
2015-07-09 07:58:54 +00:00
|
|
|
ad_connect sys_cpu_clk sys_ps7/DMA3_ACLK
|
2015-07-03 14:48:29 +00:00
|
|
|
ad_connect sys_cpu_resetn axi_spdif_rx_core/DMA_REQ_RSTN
|
2015-07-09 07:58:54 +00:00
|
|
|
ad_connect sys_ps7/DMA3_REQ axi_spdif_rx_core/DMA_REQ
|
|
|
|
ad_connect sys_ps7/DMA3_ACK axi_spdif_rx_core/DMA_ACK
|
2015-07-03 14:48:29 +00:00
|
|
|
ad_connect spdif_rx axi_spdif_rx_core/spdif_rx_i
|
|
|
|
|
|
|
|
ad_cpu_interconnect 0x75C20000 axi_spdif_rx_core
|
2015-03-24 19:08:22 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
# iic interface
|
2015-04-01 15:50:18 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
set axi_iic_imageon [create_bd_cell -type ip -vlnv xilinx.com:ip:axi_iic:2.0 axi_iic_imageon]
|
|
|
|
set_property -dict [list CONFIG.USE_BOARD_FLOW {true}] $axi_iic_imageon
|
|
|
|
set_property -dict [list CONFIG.IIC_BOARD_INTERFACE {Custom}] $axi_iic_imageon
|
2015-04-01 15:50:18 +00:00
|
|
|
|
2016-06-01 17:54:45 +00:00
|
|
|
create_bd_intf_port -mode Master -vlnv xilinx.com:interface:iic_rtl:1.0 iic_imageon
|
|
|
|
ad_connect iic_imageon axi_iic_imageon/iic
|
|
|
|
ad_cpu_interconnect 0x43C40000 axi_iic_imageon
|
|
|
|
ad_cpu_interrupt ps-11 mb-11 axi_iic_imageon/iic2intc_irpt
|
2015-07-02 13:38:22 +00:00
|
|
|
|