cn0363: Microzed, updated system_top to remove part of the Warnings

main
Adrian Costina 2016-10-10 16:00:03 +03:00
parent 2e605fc060
commit f464497062
1 changed files with 30 additions and 7 deletions

View File

@ -1,9 +1,9 @@
// *************************************************************************** // ***************************************************************************
// *************************************************************************** // ***************************************************************************
// Copyright 2011(c) Analog Devices, Inc. // Copyright 2011(c) Analog Devices, Inc.
// //
// All rights reserved. // All rights reserved.
// //
// Redistribution and use in source and binary forms, with or without modification, // Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met: // are permitted provided that the following conditions are met:
// - Redistributions of source code must retain the above copyright // - Redistributions of source code must retain the above copyright
@ -21,16 +21,16 @@
// patent holders to use this software. // patent holders to use this software.
// - Use of the software either in source or binary form, must be run // - Use of the software either in source or binary form, must be run
// on or directly connected to an Analog Devices Inc. component. // 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, // 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 // INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. // PARTICULAR PURPOSE ARE DISCLAIMED.
// //
// IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // 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 // 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 // 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, // 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 // 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. // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// *************************************************************************** // ***************************************************************************
// *************************************************************************** // ***************************************************************************
@ -70,7 +70,7 @@ module system_top (
led_clk_o, led_clk_o,
gain0_o, gain0_o,
gain1_o, gain1_o,
otg_vbusoc); otg_vbusoc);
inout [14:0] ddr_addr; inout [14:0] ddr_addr;
@ -119,8 +119,9 @@ module system_top (
assign gain0_o = gpio_o[32]; assign gain0_o = gpio_o[32];
assign gain1_o = gpio_o[33]; assign gain1_o = gpio_o[33];
assign gpio_i[34] = spi_sdi; // Interrupt assign gpio_i[34] = spi_sdi; // Interrupt
assign gpio_i[33:0] = gpio_o[33:0];
assign led_clk_o = excitation; assign led_clk_o = excitation;
ad_iobuf #( ad_iobuf #(
@ -128,6 +129,7 @@ module system_top (
) i_sdo_iobuf ( ) i_sdo_iobuf (
.dio_t(spi_sdo_t), .dio_t(spi_sdo_t),
.dio_i(spi_sdo_o), .dio_i(spi_sdo_o),
.dio_o(),
.dio_p(spi_sdo) .dio_p(spi_sdo)
); );
@ -166,7 +168,28 @@ module system_top (
.ps_intr_07 (1'b0), .ps_intr_07 (1'b0),
.ps_intr_08 (1'b0), .ps_intr_08 (1'b0),
.ps_intr_09 (1'b0), .ps_intr_09 (1'b0),
.ps_intr_11 (1'b0),
.ps_intr_14 (1'b0),
.ps_intr_15 (1'b0),
.ps_intr_10 (1'b0), .ps_intr_10 (1'b0),
.spi0_clk_i (1'b0),
.spi0_clk_o (),
.spi0_csn_0_o (),
.spi0_csn_1_o (),
.spi0_csn_2_o (),
.spi0_csn_i (1'b1),
.spi0_sdi_i (),
.spi0_sdo_i (1'b0),
.spi0_sdo_o (),
.spi1_clk_i (1'b0),
.spi1_clk_o (),
.spi1_csn_0_o (),
.spi1_csn_1_o (),
.spi1_csn_2_o (),
.spi1_csn_i (1'b1),
.spi1_sdi_i (1'b0),
.spi1_sdo_i (1'b0),
.spi1_sdo_o (),
.spi_sdo (spi_sdo_o), .spi_sdo (spi_sdo_o),
.spi_sdo_t (spi_sdo_t), .spi_sdo_t (spi_sdo_t),
.spi_sdi (spi_sdi), .spi_sdi (spi_sdi),