STM32F469NI Discovery board drivers

Dependents:   DISCO-F469NI_LCDTS_GUI_demo Configurable_Robots DISCO-F469NI_LCD_demo DISCO-F469NI_SD_demo ... more

Committer:
aa6164
Date:
Wed Jun 09 12:45:23 2021 +0000
Revision:
4:27609b3a44ed
Parent:
3:3cdfcc4f7c9d
Updated wait_ms() to thread_sleep_for() for Mbed OS 6+

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jerome Coutant 2:123b894b49dd 1 /**
Jerome Coutant 2:123b894b49dd 2 ******************************************************************************
Jerome Coutant 2:123b894b49dd 3 * @file stm32469i_discovery_qspi.h
Jerome Coutant 2:123b894b49dd 4 * @author MCD Application Team
Jerome Coutant 2:123b894b49dd 5 * @brief This file contains the common defines and functions prototypes for
Jerome Coutant 2:123b894b49dd 6 * the stm32469i_discovery_qspi.c driver.
Jerome Coutant 2:123b894b49dd 7 ******************************************************************************
Jerome Coutant 2:123b894b49dd 8 * @attention
Jerome Coutant 2:123b894b49dd 9 *
Jerome Coutant 2:123b894b49dd 10 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
Jerome Coutant 2:123b894b49dd 11 *
Jerome Coutant 2:123b894b49dd 12 * Redistribution and use in source and binary forms, with or without modification,
Jerome Coutant 2:123b894b49dd 13 * are permitted provided that the following conditions are met:
Jerome Coutant 2:123b894b49dd 14 * 1. Redistributions of source code must retain the above copyright notice,
Jerome Coutant 2:123b894b49dd 15 * this list of conditions and the following disclaimer.
Jerome Coutant 2:123b894b49dd 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
Jerome Coutant 2:123b894b49dd 17 * this list of conditions and the following disclaimer in the documentation
Jerome Coutant 2:123b894b49dd 18 * and/or other materials provided with the distribution.
Jerome Coutant 2:123b894b49dd 19 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Jerome Coutant 2:123b894b49dd 20 * may be used to endorse or promote products derived from this software
Jerome Coutant 2:123b894b49dd 21 * without specific prior written permission.
Jerome Coutant 2:123b894b49dd 22 *
Jerome Coutant 2:123b894b49dd 23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Jerome Coutant 2:123b894b49dd 24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Jerome Coutant 2:123b894b49dd 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Jerome Coutant 2:123b894b49dd 26 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Jerome Coutant 2:123b894b49dd 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Jerome Coutant 2:123b894b49dd 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Jerome Coutant 2:123b894b49dd 29 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Jerome Coutant 2:123b894b49dd 30 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Jerome Coutant 2:123b894b49dd 31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Jerome Coutant 2:123b894b49dd 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Jerome Coutant 2:123b894b49dd 33 *
Jerome Coutant 2:123b894b49dd 34 ******************************************************************************
Jerome Coutant 2:123b894b49dd 35 */
Jerome Coutant 2:123b894b49dd 36
Jerome Coutant 2:123b894b49dd 37 /** @addtogroup BSP
Jerome Coutant 2:123b894b49dd 38 * @{
Jerome Coutant 2:123b894b49dd 39 */
Jerome Coutant 2:123b894b49dd 40
Jerome Coutant 2:123b894b49dd 41 /** @addtogroup STM32469I_Discovery
Jerome Coutant 2:123b894b49dd 42 * @{
Jerome Coutant 2:123b894b49dd 43 */
Jerome Coutant 2:123b894b49dd 44
Jerome Coutant 2:123b894b49dd 45 /* Define to prevent recursive inclusion -------------------------------------*/
Jerome Coutant 2:123b894b49dd 46 #ifndef __STM32469I_DISCOVERY_QSPI_H
Jerome Coutant 2:123b894b49dd 47 #define __STM32469I_DISCOVERY_QSPI_H
Jerome Coutant 2:123b894b49dd 48
Jerome Coutant 2:123b894b49dd 49 #ifdef __cplusplus
Jerome Coutant 2:123b894b49dd 50 extern "C" {
Jerome Coutant 2:123b894b49dd 51 #endif
Jerome Coutant 2:123b894b49dd 52
Jerome Coutant 2:123b894b49dd 53 /* Includes ------------------------------------------------------------------*/
Jerome Coutant 2:123b894b49dd 54 #include "stm32f4xx_hal.h"
Jerome Coutant 2:123b894b49dd 55 #include "../Components/n25q128a/n25q128a.h"
Jerome Coutant 2:123b894b49dd 56
Jerome Coutant 2:123b894b49dd 57
Jerome Coutant 2:123b894b49dd 58 /** @addtogroup STM32469I_Discovery_QSPI
Jerome Coutant 2:123b894b49dd 59 * @{
Jerome Coutant 2:123b894b49dd 60 */
Jerome Coutant 2:123b894b49dd 61
Jerome Coutant 2:123b894b49dd 62
Jerome Coutant 2:123b894b49dd 63 /* Exported constants --------------------------------------------------------*/
Jerome Coutant 2:123b894b49dd 64 /** @defgroup STM32469I_Discovery_QSPI_Exported_Constants STM32469I Discovery QSPI Exported Constants
Jerome Coutant 2:123b894b49dd 65 * @{
Jerome Coutant 2:123b894b49dd 66 */
Jerome Coutant 2:123b894b49dd 67 /* QSPI Error codes */
Jerome Coutant 2:123b894b49dd 68 #define QSPI_OK ((uint8_t)0x00)
Jerome Coutant 2:123b894b49dd 69 #define QSPI_ERROR ((uint8_t)0x01)
Jerome Coutant 2:123b894b49dd 70 #define QSPI_BUSY ((uint8_t)0x02)
Jerome Coutant 2:123b894b49dd 71 #define QSPI_NOT_SUPPORTED ((uint8_t)0x04)
Jerome Coutant 2:123b894b49dd 72 #define QSPI_SUSPENDED ((uint8_t)0x08)
Jerome Coutant 2:123b894b49dd 73
Jerome Coutant 2:123b894b49dd 74
Jerome Coutant 2:123b894b49dd 75 /* Definition for QSPI clock resources */
Jerome Coutant 2:123b894b49dd 76 #define QSPI_CLK_ENABLE() __HAL_RCC_QSPI_CLK_ENABLE()
Jerome Coutant 2:123b894b49dd 77 #define QSPI_CLK_DISABLE() __HAL_RCC_QSPI_CLK_DISABLE()
Jerome Coutant 2:123b894b49dd 78 #define QSPI_CS_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE()
Jerome Coutant 2:123b894b49dd 79 #define QSPI_CS_GPIO_CLK_DISABLE() __HAL_RCC_GPIOB_CLK_DISABLE()
Jerome Coutant 2:123b894b49dd 80 #define QSPI_DX_CLK_GPIO_CLK_ENABLE() __HAL_RCC_GPIOF_CLK_ENABLE()
Jerome Coutant 2:123b894b49dd 81 #define QSPI_DX_CLK_GPIO_CLK_DISABLE() __HAL_RCC_GPIOF_CLK_DISABLE()
Jerome Coutant 2:123b894b49dd 82
Jerome Coutant 2:123b894b49dd 83 #define QSPI_FORCE_RESET() __HAL_RCC_QSPI_FORCE_RESET()
Jerome Coutant 2:123b894b49dd 84 #define QSPI_RELEASE_RESET() __HAL_RCC_QSPI_RELEASE_RESET()
Jerome Coutant 2:123b894b49dd 85
Jerome Coutant 2:123b894b49dd 86 /* Definition for QSPI Pins */
Jerome Coutant 2:123b894b49dd 87 #define QSPI_CS_PIN GPIO_PIN_6
Jerome Coutant 2:123b894b49dd 88 #define QSPI_CS_GPIO_PORT GPIOB
Jerome Coutant 2:123b894b49dd 89 #define QSPI_CLK_PIN GPIO_PIN_10
Jerome Coutant 2:123b894b49dd 90 #define QSPI_CLK_GPIO_PORT GPIOF
Jerome Coutant 2:123b894b49dd 91 #define QSPI_D0_PIN GPIO_PIN_8
Jerome Coutant 2:123b894b49dd 92 #define QSPI_D1_PIN GPIO_PIN_9
Jerome Coutant 2:123b894b49dd 93 #define QSPI_D2_PIN GPIO_PIN_7
Jerome Coutant 2:123b894b49dd 94 #define QSPI_D3_PIN GPIO_PIN_6
Jerome Coutant 2:123b894b49dd 95 #define QSPI_DX_GPIO_PORT GPIOF
Jerome Coutant 2:123b894b49dd 96
Jerome Coutant 2:123b894b49dd 97
Jerome Coutant 2:123b894b49dd 98 /**
Jerome Coutant 2:123b894b49dd 99 * @}
Jerome Coutant 2:123b894b49dd 100 */
Jerome Coutant 2:123b894b49dd 101
Jerome Coutant 2:123b894b49dd 102 /* Exported types ------------------------------------------------------------*/
Jerome Coutant 2:123b894b49dd 103 /** @defgroup STM32469I_Discovery_QSPI_Exported_Types STM32469I Discovery QSPI Exported Types
Jerome Coutant 2:123b894b49dd 104 * @{
Jerome Coutant 2:123b894b49dd 105 */
Jerome Coutant 2:123b894b49dd 106 /**
Jerome Coutant 2:123b894b49dd 107 * @brief QSPI Info
Jerome Coutant 2:123b894b49dd 108 * */
Jerome Coutant 2:123b894b49dd 109 typedef struct {
Jerome Coutant 2:123b894b49dd 110 uint32_t FlashSize; /*!< Size of the flash */
Jerome Coutant 2:123b894b49dd 111 uint32_t EraseSectorSize; /*!< Size of sectors for the erase operation */
Jerome Coutant 2:123b894b49dd 112 uint32_t EraseSectorsNumber; /*!< Number of sectors for the erase operation */
Jerome Coutant 2:123b894b49dd 113 uint32_t ProgPageSize; /*!< Size of pages for the program operation */
Jerome Coutant 2:123b894b49dd 114 uint32_t ProgPagesNumber; /*!< Number of pages for the program operation */
Jerome Coutant 2:123b894b49dd 115 } QSPI_InfoTypeDef;
Jerome Coutant 2:123b894b49dd 116
Jerome Coutant 2:123b894b49dd 117 /**
Jerome Coutant 2:123b894b49dd 118 * @}
Jerome Coutant 2:123b894b49dd 119 */
Jerome Coutant 2:123b894b49dd 120
Jerome Coutant 2:123b894b49dd 121
Jerome Coutant 2:123b894b49dd 122 /* Exported functions --------------------------------------------------------*/
Jerome Coutant 2:123b894b49dd 123 /** @addtogroup STM32469I_Discovery_QSPI_Exported_Functions STM32469I Discovery QSPI Exported Functions
Jerome Coutant 2:123b894b49dd 124 * @{
Jerome Coutant 2:123b894b49dd 125 */
Jerome Coutant 2:123b894b49dd 126 uint8_t BSP_QSPI_Init (void);
Jerome Coutant 2:123b894b49dd 127 uint8_t BSP_QSPI_DeInit (void);
Jerome Coutant 2:123b894b49dd 128 uint8_t BSP_QSPI_Read (uint8_t* pData, uint32_t ReadAddr, uint32_t Size);
Jerome Coutant 2:123b894b49dd 129 uint8_t BSP_QSPI_Write (uint8_t* pData, uint32_t WriteAddr, uint32_t Size);
Jerome Coutant 2:123b894b49dd 130 uint8_t BSP_QSPI_Erase_Block(uint32_t BlockAddress);
Jerome Coutant 2:123b894b49dd 131 uint8_t BSP_QSPI_Erase_Chip (void);
Jerome Coutant 2:123b894b49dd 132 uint8_t BSP_QSPI_GetStatus (void);
Jerome Coutant 2:123b894b49dd 133 uint8_t BSP_QSPI_GetInfo (QSPI_InfoTypeDef* pInfo);
Jerome Coutant 2:123b894b49dd 134 uint8_t BSP_QSPI_EnableMemoryMappedMode(void);
Jerome Coutant 2:123b894b49dd 135 /* BSP Aliased function maintained for legacy purpose */
Jerome Coutant 2:123b894b49dd 136 #define BSP_QSPI_MemoryMappedMode BSP_QSPI_EnableMemoryMappedMode
Jerome Coutant 2:123b894b49dd 137
Jerome Coutant 2:123b894b49dd 138 /* These function can be modified in case the current settings (e.g. DMA stream)
Jerome Coutant 2:123b894b49dd 139 need to be changed for specific application needs */
Jerome Coutant 2:123b894b49dd 140 void BSP_QSPI_MspInit(QSPI_HandleTypeDef *hqspi, void *Params);
Jerome Coutant 2:123b894b49dd 141 void BSP_QSPI_MspDeInit(QSPI_HandleTypeDef *hqspi, void *Params);
Jerome Coutant 2:123b894b49dd 142
Jerome Coutant 2:123b894b49dd 143 /**
Jerome Coutant 2:123b894b49dd 144 * @}
Jerome Coutant 2:123b894b49dd 145 */
Jerome Coutant 2:123b894b49dd 146
Jerome Coutant 2:123b894b49dd 147 /**
Jerome Coutant 2:123b894b49dd 148 * @}
Jerome Coutant 2:123b894b49dd 149 */
Jerome Coutant 2:123b894b49dd 150
Jerome Coutant 2:123b894b49dd 151 #ifdef __cplusplus
Jerome Coutant 2:123b894b49dd 152 }
Jerome Coutant 2:123b894b49dd 153 #endif
Jerome Coutant 2:123b894b49dd 154
Jerome Coutant 2:123b894b49dd 155 #endif /* __STM32469I_DISCOVERY_QSPI_H */
Jerome Coutant 2:123b894b49dd 156 /**
Jerome Coutant 2:123b894b49dd 157 * @}
Jerome Coutant 2:123b894b49dd 158 */
Jerome Coutant 2:123b894b49dd 159
Jerome Coutant 2:123b894b49dd 160 /**
Jerome Coutant 2:123b894b49dd 161 * @}
Jerome Coutant 2:123b894b49dd 162 */
Jerome Coutant 2:123b894b49dd 163
Jerome Coutant 2:123b894b49dd 164 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/