2014-04-26 01:55:47 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Copyright 2011(c) Analog Devices, Inc.
|
2014-10-27 17:48:05 +00:00
|
|
|
//
|
2014-04-26 01:55:47 +00:00
|
|
|
// All rights reserved.
|
2014-10-27 17:48:05 +00:00
|
|
|
//
|
2014-04-26 01:55:47 +00:00
|
|
|
// 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.
|
2014-10-27 17:48:05 +00:00
|
|
|
//
|
2014-04-26 01:55:47 +00:00
|
|
|
// 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
|
2014-10-27 17:48:05 +00:00
|
|
|
// RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
2014-04-26 01:55:47 +00:00
|
|
|
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
2014-10-27 17:48:05 +00:00
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
2014-04-26 01:55:47 +00:00
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
|
|
|
module system_top (
|
|
|
|
|
|
|
|
sys_rst,
|
|
|
|
sys_clk_p,
|
|
|
|
sys_clk_n,
|
|
|
|
|
|
|
|
uart_sin,
|
|
|
|
uart_sout,
|
|
|
|
|
|
|
|
ddr4_act_n,
|
|
|
|
ddr4_addr,
|
|
|
|
ddr4_ba,
|
|
|
|
ddr4_bg,
|
|
|
|
ddr4_ck_p,
|
|
|
|
ddr4_ck_n,
|
|
|
|
ddr4_cke,
|
|
|
|
ddr4_cs_n,
|
|
|
|
ddr4_dm_n,
|
|
|
|
ddr4_dq,
|
|
|
|
ddr4_dqs_p,
|
|
|
|
ddr4_dqs_n,
|
|
|
|
ddr4_odt,
|
|
|
|
ddr4_par,
|
|
|
|
ddr4_reset_n,
|
|
|
|
|
|
|
|
mdio_mdc,
|
2014-05-06 19:38:44 +00:00
|
|
|
mdio_mdio,
|
2014-10-17 17:39:28 +00:00
|
|
|
phy_clk_p,
|
|
|
|
phy_clk_n,
|
2014-04-26 01:55:47 +00:00
|
|
|
phy_rst_n,
|
2014-05-06 19:38:44 +00:00
|
|
|
phy_rx_p,
|
|
|
|
phy_rx_n,
|
|
|
|
phy_tx_p,
|
|
|
|
phy_tx_n,
|
2014-04-26 01:55:47 +00:00
|
|
|
|
|
|
|
fan_pwm,
|
|
|
|
|
|
|
|
gpio_led,
|
|
|
|
gpio_sw,
|
|
|
|
|
|
|
|
iic_scl,
|
|
|
|
iic_sda,
|
|
|
|
|
|
|
|
hdmi_out_clk,
|
|
|
|
hdmi_hsync,
|
|
|
|
hdmi_vsync,
|
|
|
|
hdmi_data_e,
|
|
|
|
hdmi_data,
|
|
|
|
|
|
|
|
spdif);
|
|
|
|
|
|
|
|
input sys_rst;
|
|
|
|
input sys_clk_p;
|
|
|
|
input sys_clk_n;
|
|
|
|
|
|
|
|
input uart_sin;
|
|
|
|
output uart_sout;
|
|
|
|
|
|
|
|
output ddr4_act_n;
|
|
|
|
output [16:0] ddr4_addr;
|
|
|
|
output [ 1:0] ddr4_ba;
|
|
|
|
output [ 0:0] ddr4_bg;
|
|
|
|
output ddr4_ck_p;
|
|
|
|
output ddr4_ck_n;
|
|
|
|
output [ 0:0] ddr4_cke;
|
|
|
|
output [ 0:0] ddr4_cs_n;
|
|
|
|
inout [ 7:0] ddr4_dm_n;
|
|
|
|
inout [63:0] ddr4_dq;
|
|
|
|
inout [ 7:0] ddr4_dqs_p;
|
|
|
|
inout [ 7:0] ddr4_dqs_n;
|
|
|
|
output [ 0:0] ddr4_odt;
|
|
|
|
output ddr4_par;
|
|
|
|
output ddr4_reset_n;
|
|
|
|
|
|
|
|
output mdio_mdc;
|
2014-05-06 19:38:44 +00:00
|
|
|
inout mdio_mdio;
|
2014-10-17 17:39:28 +00:00
|
|
|
input phy_clk_p;
|
|
|
|
input phy_clk_n;
|
2014-04-26 01:55:47 +00:00
|
|
|
output phy_rst_n;
|
2014-05-06 19:38:44 +00:00
|
|
|
input phy_rx_p;
|
|
|
|
input phy_rx_n;
|
|
|
|
output phy_tx_p;
|
|
|
|
output phy_tx_n;
|
2014-04-26 01:55:47 +00:00
|
|
|
|
|
|
|
output fan_pwm;
|
|
|
|
|
|
|
|
inout [ 7:0] gpio_led;
|
|
|
|
inout [ 8:0] gpio_sw;
|
|
|
|
|
|
|
|
inout iic_scl;
|
|
|
|
inout iic_sda;
|
|
|
|
|
|
|
|
output hdmi_out_clk;
|
|
|
|
output hdmi_hsync;
|
|
|
|
output hdmi_vsync;
|
|
|
|
output hdmi_data_e;
|
|
|
|
output [15:0] hdmi_data;
|
|
|
|
|
|
|
|
output spdif;
|
|
|
|
|
2014-04-30 18:40:54 +00:00
|
|
|
// default logic
|
|
|
|
|
|
|
|
assign fan_pwm = 1'b1;
|
2014-06-12 19:21:06 +00:00
|
|
|
|
2014-10-27 17:48:05 +00:00
|
|
|
wire timer_irq;
|
|
|
|
wire eth_irq;
|
|
|
|
wire eth_dma_mm2s_irq;
|
|
|
|
wire eth_dma_s2mm_irq;
|
|
|
|
wire uart_irq;
|
|
|
|
wire gpio_lcd_irq;
|
|
|
|
wire gpio_sw_irq;
|
|
|
|
wire spdif_dma_irq;
|
|
|
|
wire iic_irq;
|
|
|
|
wire hdmi_dma_irq;
|
|
|
|
wire [31:0] mb_axi_intr;
|
|
|
|
|
|
|
|
ad_interrupts #(
|
|
|
|
.C_PROC_TYPE(0)
|
|
|
|
) i_ad_interrupts (
|
|
|
|
.timer_irq(timer_irq),
|
|
|
|
.eth_irq(eth_irq),
|
|
|
|
.eth_dma_mm2s_irq(eth_dma_mm2s),
|
|
|
|
.eth_dma_s2mm_irq(eth_dma_s2mm),
|
|
|
|
.uart_irq(uart_irq),
|
|
|
|
.gpio_lcd_irq(gpio_lcd_irq),
|
|
|
|
.gpio_sw_irq(gpio_sw_irq),
|
|
|
|
.spdif_dma_irq(spdif_dma_irq),
|
|
|
|
.hdmi_dma_irq(hdmi_dma_irq),
|
|
|
|
.iic_irq(iic_irq),
|
|
|
|
.dev0_dma_irq(1'b0),
|
|
|
|
.dev1_dma_irq(1'b0),
|
|
|
|
.dev2_dma_irq(1'b0),
|
|
|
|
.dev3_dma_irq(1'b0),
|
|
|
|
.dev4_dma_irq(1'b0),
|
|
|
|
.dev5_dma_irq(1'b0),
|
|
|
|
.spi0_irq(1'b0),
|
|
|
|
.spi1_irq(1'b0),
|
|
|
|
.spi2_irq(1'b0),
|
|
|
|
.spi3_irq(1'b0),
|
|
|
|
.gpio0_irq(1'b0),
|
|
|
|
.gpio1_irq(1'b0),
|
|
|
|
.gpio2_irq(1'b0),
|
|
|
|
.gpio3_irq(1'b0),
|
|
|
|
.mb_axi_intr(mb_axi_intr),
|
|
|
|
.ps7_irq_f2p());
|
|
|
|
|
2014-04-26 01:55:47 +00:00
|
|
|
// instantiations
|
|
|
|
|
|
|
|
system_wrapper i_system_wrapper (
|
|
|
|
.c0_ddr4_act_n (ddr4_act_n),
|
|
|
|
.c0_ddr4_adr (ddr4_addr),
|
|
|
|
.c0_ddr4_ba (ddr4_ba),
|
|
|
|
.c0_ddr4_bg (ddr4_bg),
|
|
|
|
.c0_ddr4_ck_c (ddr4_ck_n),
|
|
|
|
.c0_ddr4_ck_t (ddr4_ck_p),
|
|
|
|
.c0_ddr4_cke (ddr4_cke),
|
|
|
|
.c0_ddr4_cs_n (ddr4_cs_n),
|
|
|
|
.c0_ddr4_dm_n (ddr4_dm_n),
|
|
|
|
.c0_ddr4_dq (ddr4_dq),
|
|
|
|
.c0_ddr4_dqs_c (ddr4_dqs_n),
|
|
|
|
.c0_ddr4_dqs_t (ddr4_dqs_p),
|
|
|
|
.c0_ddr4_odt (ddr4_odt),
|
|
|
|
.c0_ddr4_par (ddr4_par),
|
|
|
|
.c0_ddr4_reset_n (ddr4_reset_n),
|
|
|
|
.gpio_lcd_tri_io (),
|
|
|
|
.gpio_led_tri_io (gpio_led),
|
|
|
|
.gpio_sw_tri_io (gpio_sw),
|
|
|
|
.hdmi_data (hdmi_data),
|
|
|
|
.hdmi_data_e (hdmi_data_e),
|
|
|
|
.hdmi_hsync (hdmi_hsync),
|
|
|
|
.hdmi_out_clk (hdmi_out_clk),
|
|
|
|
.hdmi_vsync (hdmi_vsync),
|
|
|
|
.iic_main_scl_io (iic_scl),
|
|
|
|
.iic_main_sda_io (iic_sda),
|
|
|
|
.mdio_mdc (mdio_mdc),
|
2014-05-06 19:38:44 +00:00
|
|
|
.mdio_mdio_io (mdio_mdio),
|
2014-10-17 17:39:28 +00:00
|
|
|
.phy_clk_clk_n (phy_clk_n),
|
|
|
|
.phy_clk_clk_p (phy_clk_p),
|
2014-04-26 01:55:47 +00:00
|
|
|
.phy_rst_n (phy_rst_n),
|
2014-04-30 18:40:54 +00:00
|
|
|
.phy_sd (1'b1),
|
2014-05-06 19:38:44 +00:00
|
|
|
.sgmii_rxn (phy_rx_n),
|
|
|
|
.sgmii_rxp (phy_rx_p),
|
|
|
|
.sgmii_txn (phy_tx_n),
|
|
|
|
.sgmii_txp (phy_tx_p),
|
2014-04-26 01:55:47 +00:00
|
|
|
.spdif (spdif),
|
2014-10-17 17:39:28 +00:00
|
|
|
.sys_clk_clk_n (sys_clk_n),
|
|
|
|
.sys_clk_clk_p (sys_clk_p),
|
2014-04-26 01:55:47 +00:00
|
|
|
.sys_rst (sys_rst),
|
|
|
|
.uart_sin (uart_sin),
|
|
|
|
.uart_sout (uart_sout),
|
2014-10-27 17:48:05 +00:00
|
|
|
.timer_irq (timer_irq),
|
|
|
|
.eth_irq (eth_irq),
|
|
|
|
.eth_dma_mm2s_irq (eth_dma_mm2s_irq),
|
|
|
|
.eth_dma_s2mm_irq (eth_dma_s2mm_irq),
|
|
|
|
.uart_irq (uart_irq),
|
|
|
|
.gpio_lcd_irq (gpio_lcd_irq),
|
|
|
|
.gpio_sw_irq (gpio_sw_irq),
|
|
|
|
.spdif_dma_irq (spdif_dma_irq),
|
|
|
|
.iic_irq (iic_irq),
|
|
|
|
.hdmi_dma_irq (hdmi_dma_irq),
|
|
|
|
.mb_axi_intr (mb_axi_intr));
|
2014-04-26 01:55:47 +00:00
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|