Skip to content

Commit 96c1094

Browse files
committed
projects/cn0579/de10nano: Fix Critical Warnings
- Quartus version was updated - the start_n output port was deteled from system_top.v - the ""mixed_port_feed_through_mode" parameter of RAM can not have value "old"" warning was disabled - update Makefile copyright year Signed-off-by: Paul Pop <paul.pop@analog.com>
1 parent c313482 commit 96c1094

File tree

6 files changed

+24
-10
lines changed

6 files changed

+24
-10
lines changed

library/axi_ad7768/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
####################################################################################
2-
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
2+
## Copyright (c) 2018 - 2023 Analog Devices, Inc.
33
### SPDX short identifier: BSD-1-Clause
44
## Auto-generated, do not modify!
55
####################################################################################

projects/cn0579/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
####################################################################################
2-
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
2+
## Copyright (c) 2018 - 2023 Analog Devices, Inc.
33
### SPDX short identifier: BSD-1-Clause
44
## Auto-generated, do not modify!
55
####################################################################################

projects/cn0579/coraz7s/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
####################################################################################
2-
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
2+
## Copyright (c) 2018 - 2023 Analog Devices, Inc.
33
### SPDX short identifier: BSD-1-Clause
44
## Auto-generated, do not modify!
55
####################################################################################

projects/cn0579/de10nano/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
####################################################################################
2-
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
2+
## Copyright (c) 2018 - 2023 Analog Devices, Inc.
33
### SPDX short identifier: BSD-1-Clause
44
## Auto-generated, do not modify!
55
####################################################################################

projects/cn0579/de10nano/system_project.tcl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set REQUIRED_QUARTUS_VERSION 21.1
1+
set REQUIRED_QUARTUS_VERSION 21.1.0
22
set QUARTUS_PRO_ISUSED 0
33
source ../../../scripts/adi_env.tcl
44
source ../../scripts/adi_project_intel.tcl
@@ -7,6 +7,12 @@ adi_project cn0579_de10nano
77

88
source $ad_hdl_dir/projects/common/de10nano/de10nano_system_assign.tcl
99

10+
## downgrade Critical Warning related to an asynchronous RAM in the DMAC
11+
#
12+
## "mixed_port_feed_through_mode" parameter of RAM can not have value "old"
13+
14+
set_global_assignment -name MESSAGE_DISABLE 15003
15+
1016
# ad77684 interface
1117

1218
set_location_assignment PIN_AF17 -to adc_clk_in ; ## P12.10 Arduino_IO08

projects/cn0579/de10nano/system_top.v

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,21 @@ module system_top (
114114
inout hdmi_i2c_scl,
115115
inout hdmi_i2c_sda,
116116

117+
input ltc2308_miso,
118+
output ltc2308_mosi,
119+
output ltc2308_sclk,
120+
output ltc2308_cs,
121+
117122
// ad77684
118123

119124
input adc_clk_in,
120125
input adc_ready_in,
121-
input [ 3:0] adc_data_in,
126+
input [ 3:0] adc_data_in,
122127
output spi_csn,
123128
output spi_clk,
124129
output spi_mosi,
125130
input spi_miso,
126131
output reset_n,
127-
output start_n,
128132
output shutdown_n,
129133

130134
// dac i2c
@@ -152,13 +156,13 @@ module system_top (
152156

153157
// adc control gpio assign
154158

155-
assign shutdown_n = 1;
156-
assign reset_n = gpio_o[32];
159+
assign shutdown_n = 1;
160+
assign reset_n = gpio_o[32];
157161
assign gpio_i[63:15] = gpio_o[63:15];
158162

159163
// bd gpio
160164

161-
assign gpio_i[13:8] = gpio_bd_i[5:0];
165+
assign gpio_i[13:8] = gpio_bd_i[5:0];
162166
assign gpio_bd_o[7:0] = gpio_o[7:0];
163167

164168
// IO Buffers for I2C
@@ -260,6 +264,10 @@ module system_top (
260264
.sys_gpio_bd_out_port(gpio_o[31:0]),
261265
.sys_gpio_in_export(gpio_i[63:32]),
262266
.sys_gpio_out_export(gpio_o[63:32]),
267+
.ltc2308_spi_MISO(ltc2308_miso),
268+
.ltc2308_spi_MOSI(ltc2308_mosi),
269+
.ltc2308_spi_SCLK(ltc2308_sclk),
270+
.ltc2308_spi_SS_n(ltc2308_cs),
263271
.sys_spi_MISO(spi_miso),
264272
.sys_spi_MOSI(spi_mosi),
265273
.sys_spi_SCLK(spi_clk),

0 commit comments

Comments
 (0)