File tree Expand file tree Collapse file tree 6 files changed +24
-10
lines changed
Expand file tree Collapse file tree 6 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 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# ###################################################################################
Original file line number Diff line number Diff line change 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# ###################################################################################
Original file line number Diff line number Diff line change 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# ###################################################################################
Original file line number Diff line number Diff line change 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# ###################################################################################
Original file line number Diff line number Diff line change 1- set REQUIRED_QUARTUS_VERSION 21.1
1+ set REQUIRED_QUARTUS_VERSION 21.1.0
22set QUARTUS_PRO_ISUSED 0
33source ../../../scripts/adi_env.tcl
44source ../../scripts/adi_project_intel.tcl
@@ -7,6 +7,12 @@ adi_project cn0579_de10nano
77
88source $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
1218set_location_assignment PIN_AF17 -to adc_clk_in ; # # P12.10 Arduino_IO08
Original file line number Diff line number Diff 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),
You can’t perform that action at this time.
0 commit comments