STM32 Cypress QSPI
A library for communicating with Cypress FL- series QSPI flash memory chips
|
Functions | |
HAL_StatusTypeDef | Cypress_QSPI_WriteEnable (QSPI_HandleTypeDef *hqspi) |
Enable write operations and wait until effective (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_WriteDisable (QSPI_HandleTypeDef *hqspi) |
Disable write operations, terminating any current operation. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ErrorRecovery (QSPI_HandleTypeDef *hqspi) |
Check for program/erase error, and then recover by clearing the SR and disabling the write. More... | |
HAL_StatusTypeDef | Cypress_QSPI_WaitMemReady (QSPI_HandleTypeDef *hqspi, uint32_t timeout) |
Polls the SR until the WIP bit is unset (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_WaitMemReady_IT (QSPI_HandleTypeDef *hqspi) |
Polls the SR until the WIP bit is unset (non-blocking, requires interrupts) More... | |
HAL_StatusTypeDef | Cypress_QSPI_WaitWriteReady (QSPI_HandleTypeDef *hqspi, uint32_t timeout) |
Polls the SR until the WREN bit is set (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_WaitWriteReady_IT (QSPI_HandleTypeDef *hqspi) |
Polls the SR until the WREN bit is set (non-blocking, requires interrupts) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadSR1 (QSPI_HandleTypeDef *hqspi, uint8_t *result) |
Reads SR1 to a variable. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadSR2 (QSPI_HandleTypeDef *hqspi, uint8_t *result) |
Reads SR2 to a variable. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadCR (QSPI_HandleTypeDef *hqspi, uint8_t *result) |
Reads the CR to a variable. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ClearSR (QSPI_HandleTypeDef *hqspi) |
Clears the Erase Fail and Program Fail flags. More... | |
HAL_StatusTypeDef | Cypress_QSPI_CheckForErrors (QSPI_HandleTypeDef *hqspi) |
Checks SR1 for program/erase errors. More... | |
HAL_StatusTypeDef | Cypress_QSPI_WriteSR1 (QSPI_HandleTypeDef *hqspi, uint8_t sReg) |
Writes to SR1. More... | |
HAL_StatusTypeDef | Cypress_QSPI_WriteCR (QSPI_HandleTypeDef *hqspi, uint8_t cReg) |
Writes to CR. More... | |
HAL_StatusTypeDef | Cypress_QSPI_SectorErase (QSPI_HandleTypeDef *hqspi, uint32_t address) |
Sets all bits in a sector to 1 (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_SectorErase_IT (QSPI_HandleTypeDef *hqspi, uint32_t address) |
Sets all bits in a sector to 1 (non-blocking, requires interrupts) More... | |
HAL_StatusTypeDef | Cypress_QSPI_BulkErase (QSPI_HandleTypeDef *hqspi) |
Sets all bits in the flash memory to 1 (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_BulkErase_IT (QSPI_HandleTypeDef *hqspi) |
Sets all bits in the flash memory to 1 (non-blocking, requires interrupts) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Read (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data into memory in SPI mode (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Read_IT (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data into memory in SPI mode (non-blocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Read_DMA (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data directly into memory in SPI mode (non-blocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadQuad (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data into memory using QSPI (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadQuadAlt (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data into memory using QSPI (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadQuad_IT (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data into memory using QSPI (nonblocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ReadQuad_DMA (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *dest, uint32_t count) |
Reads data directly into memory using QSPI (nonblocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Program (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page in SPI mode (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Program_IT (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page in SPI mode (nonblocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Program_DMA (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page in SPI mode (nonblocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ProgramQuad (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page using QSPI (blocking) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ProgramQuad_IT (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page using QSPI (non-blocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_ProgramQuad_DMA (QSPI_HandleTypeDef *hqspi, uint32_t address, uint8_t *src, uint32_t count) |
Writes data into a page using QSPI (non-blocking, requires callbacks) More... | |
HAL_StatusTypeDef | Cypress_QSPI_Reset (QSPI_HandleTypeDef *hqspi) |
Resets device to power-up state. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ModeBitReset (QSPI_HandleTypeDef *hqspi) |
Forces device into normal mode after continuous high performance read mode. More... | |
HAL_StatusTypeDef | Cypress_QSPI_ResetConfiguration (QSPI_HandleTypeDef *hqspi) |
Sets all configuration to default @warn This will unset the QUAD bit and may result in write protection being set; see Cypress_QSPI_DisableWP. More... | |
void | Cypress_QSPI_DisableWP (GPIO_TypeDef *GPIO_Port, uint32_t GPIO_Pin) |
Disables Write Protection. More... | |
void | Cypress_QSPI_ResetWP (GPIO_TypeDef *GPIO_Port, uint32_t GPIO_Pin) |
Resets write protection pin. More... | |
HAL_StatusTypeDef Cypress_QSPI_BulkErase | ( | QSPI_HandleTypeDef * | hqspi | ) |
Sets all bits in the flash memory to 1 (blocking)
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_BulkErase_IT | ( | QSPI_HandleTypeDef * | hqspi | ) |
Sets all bits in the flash memory to 1 (non-blocking, requires interrupts)
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_CheckForErrors | ( | QSPI_HandleTypeDef * | hqspi | ) |
Checks SR1 for program/erase errors.
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_ClearSR | ( | QSPI_HandleTypeDef * | hqspi | ) |
Clears the Erase Fail and Program Fail flags.
hqspi | QSPI handle |
void Cypress_QSPI_DisableWP | ( | GPIO_TypeDef * | GPIO_Port, |
uint32_t | GPIO_Pin | ||
) |
Disables Write Protection.
GPIO_Port | QUADSPI_WRITEPROT_GPIO_Port (if User Label set) |
GPIO_Pin | QUADSPI_WRITEPROT_Pin (if User Label set) |
HAL_StatusTypeDef Cypress_QSPI_ErrorRecovery | ( | QSPI_HandleTypeDef * | hqspi | ) |
Check for program/erase error, and then recover by clearing the SR and disabling the write.
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_ModeBitReset | ( | QSPI_HandleTypeDef * | hqspi | ) |
Forces device into normal mode after continuous high performance read mode.
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_Program | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page in SPI mode (blocking)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_Program_DMA | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page in SPI mode (nonblocking, requires callbacks)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_Program_IT | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page in SPI mode (nonblocking, requires callbacks)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_ProgramQuad | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page using QSPI (blocking)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_ProgramQuad_DMA | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page using QSPI (non-blocking, requires callbacks)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_ProgramQuad_IT | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | src, | ||
uint32_t | count | ||
) |
Writes data into a page using QSPI (non-blocking, requires callbacks)
hqspi | QSPI handle |
address | page to write |
src | pointer to data to write |
count | bytes to write |
HAL_StatusTypeDef Cypress_QSPI_Read | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data into memory in SPI mode (blocking)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_Read_DMA | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data directly into memory in SPI mode (non-blocking, requires callbacks)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_Read_IT | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data into memory in SPI mode (non-blocking, requires callbacks)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_ReadCR | ( | QSPI_HandleTypeDef * | hqspi, |
uint8_t * | result | ||
) |
Reads the CR to a variable.
hqspi | QSPI handle |
result | Location to store the CR |
HAL_StatusTypeDef Cypress_QSPI_ReadQuad | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data into memory using QSPI (blocking)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_ReadQuad_DMA | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data directly into memory using QSPI (nonblocking, requires callbacks)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_ReadQuad_IT | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data into memory using QSPI (nonblocking, requires callbacks)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_ReadQuadAlt | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address, | ||
uint8_t * | dest, | ||
uint32_t | count | ||
) |
Reads data into memory using QSPI (blocking)
hqspi | QSPI handle |
address | starting address to read |
dest | pointer to memory destination |
count | bytes to read |
HAL_StatusTypeDef Cypress_QSPI_ReadSR1 | ( | QSPI_HandleTypeDef * | hqspi, |
uint8_t * | result | ||
) |
Reads SR1 to a variable.
hqspi | QSPI handle |
result | Location to store SR1 |
HAL_StatusTypeDef Cypress_QSPI_ReadSR2 | ( | QSPI_HandleTypeDef * | hqspi, |
uint8_t * | result | ||
) |
Reads SR2 to a variable.
hqspi | QSPI handle |
result | Location to store SR2 |
HAL_StatusTypeDef Cypress_QSPI_Reset | ( | QSPI_HandleTypeDef * | hqspi | ) |
Resets device to power-up state.
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_ResetConfiguration | ( | QSPI_HandleTypeDef * | hqspi | ) |
Sets all configuration to default @warn This will unset the QUAD bit and may result in write protection being set; see Cypress_QSPI_DisableWP.
hqspi | QSPI handle |
void Cypress_QSPI_ResetWP | ( | GPIO_TypeDef * | GPIO_Port, |
uint32_t | GPIO_Pin | ||
) |
Resets write protection pin.
GPIO_Port | QUADSPI_WRITEPROT_GPIO_Port (if User Label set) |
GPIO_Pin | QUADSPI_WRITEPROT_Pin (if User Label set) |
HAL_StatusTypeDef Cypress_QSPI_SectorErase | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address | ||
) |
Sets all bits in a sector to 1 (blocking)
hqspi | QSPI handle |
address | address within the sector to erase |
HAL_StatusTypeDef Cypress_QSPI_SectorErase_IT | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | address | ||
) |
Sets all bits in a sector to 1 (non-blocking, requires interrupts)
hqspi | QSPI handle |
address | address within the sector to erase |
HAL_StatusTypeDef Cypress_QSPI_WaitMemReady | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | timeout | ||
) |
Polls the SR until the WIP bit is unset (blocking)
hqspi | QSPI handle |
timeout | Time to wait before erroring out |
HAL_StatusTypeDef Cypress_QSPI_WaitMemReady_IT | ( | QSPI_HandleTypeDef * | hqspi | ) |
Polls the SR until the WIP bit is unset (non-blocking, requires interrupts)
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_WaitWriteReady | ( | QSPI_HandleTypeDef * | hqspi, |
uint32_t | timeout | ||
) |
Polls the SR until the WREN bit is set (blocking)
hqspi | QSPI handle |
timeout | Time to wait before erroring out |
HAL_StatusTypeDef Cypress_QSPI_WaitWriteReady_IT | ( | QSPI_HandleTypeDef * | hqspi | ) |
Polls the SR until the WREN bit is set (non-blocking, requires interrupts)
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_WriteCR | ( | QSPI_HandleTypeDef * | hqspi, |
uint8_t | cReg | ||
) |
Writes to CR.
hqspi | QSPI handle |
cReg | configuration to write |
HAL_StatusTypeDef Cypress_QSPI_WriteDisable | ( | QSPI_HandleTypeDef * | hqspi | ) |
Disable write operations, terminating any current operation.
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_WriteEnable | ( | QSPI_HandleTypeDef * | hqspi | ) |
Enable write operations and wait until effective (blocking)
hqspi | QSPI handle |
HAL_StatusTypeDef Cypress_QSPI_WriteSR1 | ( | QSPI_HandleTypeDef * | hqspi, |
uint8_t | sReg | ||
) |
Writes to SR1.
hqspi | QSPI handle |
sReg | status to write |