]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32L1/stm32l1xx_hal_flash.h
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / cmsis / TARGET_STM / TARGET_STM32L1 / stm32l1xx_hal_flash.h
1 /**
2   ******************************************************************************
3   * @file    stm32l1xx_hal_flash.h
4   * @author  MCD Application Team
5   * @version V1.0.0
6   * @date    5-September-2014
7   * @brief   Header file of Flash HAL module.
8   ******************************************************************************
9   * @attention
10   *   
11   * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
12   *
13   * Redistribution and use in source and binary forms, with or without modification,
14   * are permitted provided that the following conditions are met:
15   *   1. Redistributions of source code must retain the above copyright notice,
16   *      this list of conditions and the following disclaimer.
17   *   2. Redistributions in binary form must reproduce the above copyright notice,
18   *      this list of conditions and the following disclaimer in the documentation
19   *      and/or other materials provided with the distribution.
20   *   3. Neither the name of STMicroelectronics nor the names of its contributors
21   *      may be used to endorse or promote products derived from this software
22   *      without specific prior written permission.
23   *
24   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27   * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28   * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34   *
35   ******************************************************************************
36   */ 
37
38 /* Define to prevent recursive inclusion -------------------------------------*/
39 #ifndef __STM32L1xx_HAL_FLASH_H
40 #define __STM32L1xx_HAL_FLASH_H
41
42 #ifdef __cplusplus
43  extern "C" {
44 #endif
45
46 /* Includes ------------------------------------------------------------------*/
47 #include "stm32l1xx_hal_def.h"
48
49 /** @addtogroup STM32L1xx_HAL_Driver
50   * @{
51   */
52
53 /** @addtogroup FLASH
54   * @{
55   */ 
56
57 /* Exported types ------------------------------------------------------------*/ 
58
59 /** @defgroup FLASH_Exported_Types FLASH Exported Types
60   * @{
61   */  
62
63 /**
64   * @brief  FLASH Error structure definition
65   */
66 typedef enum
67
68   FLASH_ERROR_SIZE      = 0x01,
69   FLASH_ERROR_OPTV      = 0x02,
70   FLASH_ERROR_OPTVUSR   = 0x04,
71   FLASH_ERROR_PGA       = 0x08,
72   FLASH_ERROR_WRP       = 0x10,
73   FLASH_ERROR_RD        = 0x20,
74   FLASH_ERROR_OPERATION = 0x40
75 }FLASH_ErrorTypeDef;
76
77
78 /**
79   * @brief  FLASH Procedure structure definition
80   */
81 typedef enum 
82 {
83   FLASH_PROC_NONE = 0, 
84   FLASH_PROC_PAGEERASE,
85   FLASH_PROC_PROGRAM
86 } FLASH_ProcedureTypeDef;
87
88 /** 
89   * @brief  FLASH handle Structure definition  
90   */
91 typedef struct
92 {
93   __IO FLASH_ProcedureTypeDef ProcedureOnGoing;   /*Internal variable to indicate which procedure is ongoing or not in IT context*/
94   
95   __IO uint32_t               NbPagesToErase;    /*Internal variable to save the remaining sectors to erase in IT context*/
96   
97   __IO uint32_t               Page;              /*Internal variable to define the current sector which is erasing*/
98   
99   __IO uint32_t               Address;           /*Internal variable to save address selected for program*/
100   
101   HAL_LockTypeDef             Lock;               /* FLASH locking object                */
102
103   __IO FLASH_ErrorTypeDef     ErrorCode;          /* FLASH error code                    */
104
105 }FLASH_ProcessTypeDef;
106
107 /**
108   * @}
109   */ 
110
111 /** @addtogroup FLASH_Internal_Variables
112   * @{
113   */  
114
115 /**
116   * @brief  Variable used for Program/Erase sectors under interruption.
117   *     Put as extern as used also in flash_ex.c. 
118   */
119 extern FLASH_ProcessTypeDef      ProcFlash;
120
121 /**
122   * @}
123   */ 
124
125 /* Exported constants --------------------------------------------------------*/
126
127 /** @defgroup FLASH_Exported_Constants FLASH Exported Constants
128   * @{
129   */  
130
131 #define HAL_FLASH_TIMEOUT_VALUE   ((uint32_t)50000) /* 50 s */
132
133 #define FLASH_PAGE_SIZE           ((uint32_t)256)
134   
135 /** @defgroup FLASH_Type_Program FLASH Type Program
136   * @{
137   */ 
138 #define TYPEPROGRAM_WORD        ((uint32_t)0x02)  /*!< Program a word (32-bit) at a specified address        */
139
140 #define IS_TYPEPROGRAMFLASH(_VALUE_)   (((_VALUE_) == TYPEPROGRAM_WORD))  
141
142 /**
143   * @}
144   */
145   
146 /** @defgroup FLASH_Latency FLASH Latency 
147   * @{
148   */ 
149 #define FLASH_LATENCY_0                ((uint8_t)0x00)  /*!< FLASH Zero Latency cycle */
150 #define FLASH_LATENCY_1                ((uint8_t)0x01)  /*!< FLASH One Latency cycle */
151
152 #define IS_FLASH_LATENCY(__LATENCY__) (((__LATENCY__) == FLASH_LATENCY_0) || \
153                                    ((__LATENCY__) == FLASH_LATENCY_1))
154 /**
155   * @}
156   */ 
157
158 /** @defgroup FLASH_Interrupts FLASH Interrupts 
159   * @{
160   */
161    
162 #define FLASH_IT_EOP               FLASH_PECR_EOPIE  /*!< End of programming interrupt source */
163 #define FLASH_IT_ERR               FLASH_PECR_ERRIE  /*!< Error interrupt source */
164 /**
165   * @}
166   */ 
167
168 /** @defgroup FLASH_Flags FLASH Flags 
169   * @{
170   */ 
171
172 #define FLASH_FLAG_BSY             FLASH_SR_BSY        /*!< FLASH Busy flag */
173 #define FLASH_FLAG_EOP             FLASH_SR_EOP        /*!< FLASH End of Programming flag */
174 #define FLASH_FLAG_ENDHV           FLASH_SR_ENDHV      /*!< FLASH End of High Voltage flag */
175 #define FLASH_FLAG_READY           FLASH_SR_READY      /*!< FLASH Ready flag after low power mode */
176 #define FLASH_FLAG_WRPERR          FLASH_SR_WRPERR     /*!< FLASH Write protected error flag */
177 #define FLASH_FLAG_PGAERR          FLASH_SR_PGAERR     /*!< FLASH Programming Alignment error flag */
178 #define FLASH_FLAG_SIZERR          FLASH_SR_SIZERR     /*!< FLASH Size error flag  */
179 #define FLASH_FLAG_OPTVERR         FLASH_SR_OPTVERR    /*!< FLASH Option Validity error flag  */
180
181 /**
182   * @}
183   */ 
184
185 /** @defgroup FLASH_Keys FLASH Keys 
186   * @{
187   */ 
188
189 #define FLASH_PDKEY1               ((uint32_t)0x04152637) /*!< Flash power down key1 */
190 #define FLASH_PDKEY2               ((uint32_t)0xFAFBFCFD) /*!< Flash power down key2: used with FLASH_PDKEY1 
191                                                               to unlock the RUN_PD bit in FLASH_ACR */
192
193 #define FLASH_PEKEY1               ((uint32_t)0x89ABCDEF) /*!< Flash program erase key1 */
194 #define FLASH_PEKEY2               ((uint32_t)0x02030405) /*!< Flash program erase key: used with FLASH_PEKEY2
195                                                                to unlock the write access to the FLASH_PECR register and
196                                                                data EEPROM */
197
198 #define FLASH_PRGKEY1              ((uint32_t)0x8C9DAEBF) /*!< Flash program memory key1 */
199 #define FLASH_PRGKEY2              ((uint32_t)0x13141516) /*!< Flash program memory key2: used with FLASH_PRGKEY2
200                                                                to unlock the program memory */
201
202 #define FLASH_OPTKEY1              ((uint32_t)0xFBEAD9C8) /*!< Flash option key1 */
203 #define FLASH_OPTKEY2              ((uint32_t)0x24252627) /*!< Flash option key2: used with FLASH_OPTKEY1 to
204                                                               unlock the write access to the option byte block */
205 /**
206   * @}
207   */
208   
209
210
211 #if defined ( __ICCARM__ )   
212 #define InterruptType_ACTLR_DISMCYCINT_Msk         IntType_ACTLR_DISMCYCINT_Msk
213 #endif
214
215 /**
216   * @}
217   */ 
218
219 /* Exported macro ------------------------------------------------------------*/
220
221 /** @defgroup FLASH_Exported_Macros FLASH Exported Macros
222   * @{
223   */  
224
225 /** @defgroup FLASH_Interrupt FLASH Interrupts
226  *  @brief macros to handle FLASH interrupts
227  * @{
228  */ 
229
230 /**
231   * @brief  Enable the specified FLASH interrupt.
232   * @param  __INTERRUPT__ : FLASH interrupt 
233   *         This parameter can be any combination of the following values:
234   *     @arg FLASH_IT_EOP: End of FLASH Operation Interrupt
235   *     @arg FLASH_IT_ERR: Error Interrupt    
236   * @retval none
237   */  
238 #define __HAL_FLASH_ENABLE_IT(__INTERRUPT__)  ((FLASH->PECR) |= (__INTERRUPT__))
239
240 /**
241   * @brief  Disable the specified FLASH interrupt.
242   * @param  __INTERRUPT__ : FLASH interrupt 
243   *         This parameter can be any combination of the following values:
244   *     @arg FLASH_IT_EOP: End of FLASH Operation Interrupt
245   *     @arg FLASH_IT_ERR: Error Interrupt    
246   * @retval none
247   */  
248 #define __HAL_FLASH_DISABLE_IT(__INTERRUPT__)  ((FLASH->PECR) &= ~(uint32_t)(__INTERRUPT__))
249
250 /**
251   * @brief  Get the specified FLASH flag status. 
252   * @param  __FLAG__: specifies the FLASH flag to check.
253   *          This parameter can be one of the following values:
254   *            @arg FLASH_FLAG_BSY   :              FLASH Busy flag
255   *            @arg FLASH_FLAG_EOP   :              FLASH End of Operation flag 
256   *            @arg FLASH_FLAG_ENDHV :            FLASH End of High Voltage flag
257   *            @arg FLASH_FLAG_READY:             FLASH Ready flag after low power mode
258   *            @arg FLASH_FLAG_WRPERR:           FLASH Write protected error flag 
259   *            @arg FLASH_FLAG_PGAERR:           FLASH Programming Alignment error flag
260   *            @arg FLASH_FLAG_SIZERR:            FLASH Size error flag
261   *            @arg FLASH_FLAG_OPTVERR:          FLASH Option validity error error flag
262   *            @arg FLASH_FLAG_OPTVERRUSR :   FLASH Option UserValidity (available only Cat.3, Cat.4 and Cat.5 devices)
263   *            @arg FLASH_FLAG_RDERR :            FLASH Read Protection error flag (PCROP) (available only Cat.2 and Cat.3 devices)
264   * @retval The new state of __FLAG__ (SET or RESET).
265   */
266 #define __HAL_FLASH_GET_FLAG(__FLAG__)   (((FLASH->SR) & (__FLAG__)) == (__FLAG__))
267
268 /**
269   * @brief  Clear the specified FLASH flag.
270   * @param  __FLAG__: specifies the FLASH flags to clear.
271   *          This parameter can be any combination of the following values:
272   *            @arg FLASH_FLAG_BSY   :              FLASH Busy flag
273   *            @arg FLASH_FLAG_EOP   :              FLASH End of Operation flag 
274   *            @arg FLASH_FLAG_ENDHV :            FLASH End of High Voltage flag
275   *            @arg FLASH_FLAG_READY:             FLASH Ready flag after low power mode
276   *            @arg FLASH_FLAG_WRPERR:           FLASH Write protected error flag 
277   *            @arg FLASH_FLAG_PGAERR:           FLASH Programming Alignment error flag
278   *            @arg FLASH_FLAG_SIZERR:            FLASH Size error flag
279   *            @arg FLASH_FLAG_OPTVERR:          FLASH Option validity error error flag
280   *            @arg FLASH_FLAG_OPTVERRUSR :   FLASH Option UserValidity (available only Cat.3, Cat.4 and Cat.5 devices)
281   *            @arg FLASH_FLAG_RDERR :            FLASH Read Protection error flag (PCROP) (available only Cat.2 and Cat.3 devices)
282   * @retval none
283   */
284 #define __HAL_FLASH_CLEAR_FLAG(__FLAG__)   ((FLASH->SR) = (__FLAG__))
285
286 /**
287   * @}
288   */ 
289
290 /**
291   * @}
292   */ 
293
294 /* Include FLASH HAL Extension module */
295 #include "stm32l1xx_hal_flash_ex.h"
296 #include "stm32l1xx_hal_flash_ramfunc.h"
297
298 /* Exported functions ------------------------------------------------------- */
299
300 /** @addtogroup FLASH_Exported_Functions
301   * @{
302   */
303
304 /** @addtogroup FLASH_Exported_Functions_Group1
305   * @{
306   */
307
308 /** 
309   * @brief  FLASH memory functions that can be executed from FLASH.  
310   */  
311 /* Program operation functions  ***********************************************/
312 HAL_StatusTypeDef   HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
313 HAL_StatusTypeDef   HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
314
315 /* FLASH IRQ handler function */
316 void                HAL_FLASH_IRQHandler(void);
317
318 /* Callbacks in non blocking modes */
319 void                HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue);
320 void                HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue); 
321   
322 /**
323   * @}
324   */ 
325
326 /** @addtogroup FLASH_Exported_Functions_Group2
327   * @{
328   */
329
330 /* FLASH Memory Programming functions *****************************************/   
331 HAL_StatusTypeDef   HAL_FLASH_Unlock(void);
332 HAL_StatusTypeDef   HAL_FLASH_Lock(void);
333
334 /* Option Bytes Programming functions *****************************************/
335 HAL_StatusTypeDef   HAL_FLASH_OB_Unlock(void);
336 HAL_StatusTypeDef   HAL_FLASH_OB_Lock(void);
337 HAL_StatusTypeDef   HAL_FLASH_OB_Launch(void);
338
339 /**
340   * @}
341   */ 
342
343 /** @addtogroup FLASH_Exported_Functions_Group3
344   * @{
345   */
346
347 /* Peripheral State methods  **************************************************/
348 FLASH_ErrorTypeDef  HAL_FLASH_GetError(void);
349
350 /**
351   * @}
352   */ 
353
354 /**
355   * @}
356   */ 
357
358 /** @addtogroup FLASH_Internal_Functions
359   * @{
360   */
361
362 /** 
363   * @brief  Function used internally by HAL FLASH driver. 
364   */  
365 HAL_StatusTypeDef   FLASH_WaitForLastOperation(uint32_t Timeout);
366
367 /**
368   * @}
369   */ 
370
371 /**
372   * @}
373   */ 
374
375 /**
376   * @}
377   */
378
379 #ifdef __cplusplus
380 }
381 #endif
382
383 #endif /* __STM32L1xx_HAL_FLASH_H */
384
385 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/