fmcjedadc1_vc707: Add support for linear flash interface
parent
e8546b9c3b
commit
84f8377beb
|
@ -77,6 +77,13 @@ module system_top (
|
||||||
|
|
||||||
fan_pwm,
|
fan_pwm,
|
||||||
|
|
||||||
|
linear_flash_addr,
|
||||||
|
linear_flash_adv_ldn,
|
||||||
|
linear_flash_ce_n,
|
||||||
|
linear_flash_oen,
|
||||||
|
linear_flash_wen,
|
||||||
|
linear_flash_dq_io,
|
||||||
|
|
||||||
gpio_lcd,
|
gpio_lcd,
|
||||||
gpio_led,
|
gpio_led,
|
||||||
gpio_sw,
|
gpio_sw,
|
||||||
|
@ -140,6 +147,13 @@ module system_top (
|
||||||
|
|
||||||
output fan_pwm;
|
output fan_pwm;
|
||||||
|
|
||||||
|
output [26:1] linear_flash_addr;
|
||||||
|
output linear_flash_adv_ldn;
|
||||||
|
output linear_flash_ce_n;
|
||||||
|
output linear_flash_oen;
|
||||||
|
output linear_flash_wen;
|
||||||
|
inout [15:0] linear_flash_dq_io;
|
||||||
|
|
||||||
output [ 6:0] gpio_lcd;
|
output [ 6:0] gpio_lcd;
|
||||||
output [ 7:0] gpio_led;
|
output [ 7:0] gpio_led;
|
||||||
input [12:0] gpio_sw;
|
input [12:0] gpio_sw;
|
||||||
|
@ -280,6 +294,8 @@ module system_top (
|
||||||
assign spi_adc_clk = spi_clk;
|
assign spi_adc_clk = spi_clk;
|
||||||
assign spi_clk_clk = spi_clk;
|
assign spi_clk_clk = spi_clk;
|
||||||
|
|
||||||
|
assign fan_pwm = 1'b1;
|
||||||
|
|
||||||
fmcjesdadc1_spi i_fmcjesdadc1_spi (
|
fmcjesdadc1_spi i_fmcjesdadc1_spi (
|
||||||
.spi_csn (spi_csn),
|
.spi_csn (spi_csn),
|
||||||
.spi_clk (spi_clk),
|
.spi_clk (spi_clk),
|
||||||
|
@ -305,7 +321,12 @@ module system_top (
|
||||||
.ddr3_ras_n (ddr3_ras_n),
|
.ddr3_ras_n (ddr3_ras_n),
|
||||||
.ddr3_reset_n (ddr3_reset_n),
|
.ddr3_reset_n (ddr3_reset_n),
|
||||||
.ddr3_we_n (ddr3_we_n),
|
.ddr3_we_n (ddr3_we_n),
|
||||||
.fan_pwm (fan_pwm),
|
.linear_flash_addr (linear_flash_addr),
|
||||||
|
.linear_flash_adv_ldn (linear_flash_adv_ldn),
|
||||||
|
.linear_flash_ce_n (linear_flash_ce_n),
|
||||||
|
.linear_flash_oen (linear_flash_oen),
|
||||||
|
.linear_flash_wen (linear_flash_wen),
|
||||||
|
.linear_flash_dq_io(linear_flash_dq_io),
|
||||||
.gpio_lcd_tri_o (gpio_lcd),
|
.gpio_lcd_tri_o (gpio_lcd),
|
||||||
.gpio_led_tri_o (gpio_led),
|
.gpio_led_tri_o (gpio_led),
|
||||||
.gpio_sw_tri_i (gpio_sw),
|
.gpio_sw_tri_i (gpio_sw),
|
||||||
|
|
Loading…
Reference in New Issue