Generic Serial Flash Interface for single SPI - how to connect MISO, MOSI?
Hello,
I implemented the Generic Serial Flash Interface to connect to a W25Q80DVSSIG TR 8Mb serial flash. I would like to use simple SPI: so I have CLK, nCS, MISO and MOSI to connect.
The HDL generated shows:
board_flash_spi_qspi_pins_dclk : out std_logic;
board_flash_spi_qspi_pins_ncs : out std_logic;
board_flash_spi_qspi_pins_data : inout std_logic_vector(3 downto 0) := (others => 'X');
Data is an "inout" type of 4 bits, which looks ok for Quad SPI. However I only have MISO and MOSI.
How to connect this? There's no explanations in the IP documentation.
How to set the interface mode (Quad, dual, single)? There's no option in the Platform Designer.
PS additional notes:
I'm using a MAX10 10M08SAU device, with Quartus 18.1, and I'm using VHDL language.
Thanks and best regards,
Giaime