OpenCores

Project maintainers

Details

Name: pmodsf3driver
Created: Mar 13, 2025
Updated: Mar 18, 2025
SVN Updated: Mar 18, 2025
SVN: Browse
Latest version: download (might take a bit to start...)
Statistics: View
Bugs: 0 reported / 0 solved
Star0you like it: star it!

Other project properties

Category:Other
Language:VHDL
Development status:Beta
Additional info:
WishBone compliant: No
WishBone version: n/a
License: LGPL

PmodSF3Driver

Pmod SF3 Driver for the 32 MB NOR Flash memory MT25QL256ABA. The communication with the Flash uses the SPI protocol (Simple, Dual or Quad SPI modes, dynamically configurable).

User specifies the System Input Clock and the Pmod SF3 Driver dynamically computes the SPI Serial Clock Frequency according to the actual Dummy Cycles.

User specifies the maximum bytes buffer used for data read & write.

For each read/write operation, user specifies the number of expected address and data bytes.

Usage

The 'o_ready' signal indicates this module is ready to start new SPI transmission.

For each read/write operation, user specifies the number of expected address and data bytes, 'i_addr_bytes' and 'i_data_bytes' respectively.

The 'i_start' signal starts the SPI communication, according to the mode 'i_rw' (Read or Write memory), command/address/data bytes and the expected number of bytes.

In Read operation, when the 'o_data_ready', data from memory is available in 'o_data' signal.

Pin Description

Generics

NameDescription
sys_clockSystem Input Clock Frequency (Hz)
max_data_byteMaximum number of Data Bytes in the driver

Ports

NameTypeDescription
i_sys_clockInputSystem Input Clock
i_resetInputModule Reset ('0': No Reset, '1': Reset)
i_startInputStart SPI Transmission ('0': No Start, '1': Start)
i_rwInputRead / Write Mode ('0': Write, '1': Read)
i_commandInputFLASH Command Byte
i_addr_bytesInputNumber of Address Bytes
i_addrInputFLASH Address Bytes
i_data_bytesInputNumber of Data Bytes to Read/Write
i_dataInputFLASH Data Bytes to Write
o_dataOutputRead FLASH Data Bytes
o_data_readyOutputFLASH Data Output Ready (Read Mode) ('0': NOT Ready, '1': Ready)
o_readyOutputModule Ready ('0': NOT Ready, '1': Ready)
o_resetOutputFLASH Reset ('0': Reset, '1': No Reset)
o_sclkOutputSPI Serial Clock
io_dqIn/OutSPI Data Lines (Simple, Dual or Quad Modes)
o_ssOutputSPI Slave Select Line ('0': Enable, '1': Disable)
o_using_sys_freqOutputSystem Input Clock as SPI Serial Clock Frequency ('0': Disable, '1': Enable)