forked from WCH-Templates/CH32V00x
1069 lines
30 KiB
C
1069 lines
30 KiB
C
/********************************** (C) COPYRIGHT *******************************
|
|
* File Name : ch32v00x_flash.c
|
|
* Author : WCH
|
|
* Version : V1.0.0
|
|
* Date : 2022/08/08
|
|
* Description : This file provides all the FLASH firmware functions.
|
|
*********************************************************************************
|
|
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
|
|
* Attention: This software (modified or not) and binary are used for
|
|
* microcontroller manufactured by Nanjing Qinheng Microelectronics.
|
|
*******************************************************************************/
|
|
#include <ch32v00x_flash.h>
|
|
|
|
/* Flash Access Control Register bits */
|
|
#define ACR_LATENCY_Mask ((uint32_t)0x00000038)
|
|
|
|
/* Flash Control Register bits */
|
|
#define CR_PG_Set ((uint32_t)0x00000001)
|
|
#define CR_PG_Reset ((uint32_t)0xFFFFFFFE)
|
|
#define CR_PER_Set ((uint32_t)0x00000002)
|
|
#define CR_PER_Reset ((uint32_t)0xFFFFFFFD)
|
|
#define CR_MER_Set ((uint32_t)0x00000004)
|
|
#define CR_MER_Reset ((uint32_t)0xFFFFFFFB)
|
|
#define CR_OPTPG_Set ((uint32_t)0x00000010)
|
|
#define CR_OPTPG_Reset ((uint32_t)0xFFFFFFEF)
|
|
#define CR_OPTER_Set ((uint32_t)0x00000020)
|
|
#define CR_OPTER_Reset ((uint32_t)0xFFFFFFDF)
|
|
#define CR_STRT_Set ((uint32_t)0x00000040)
|
|
#define CR_LOCK_Set ((uint32_t)0x00000080)
|
|
#define CR_FLOCK_Set ((uint32_t)0x00008000)
|
|
#define CR_PAGE_PG ((uint32_t)0x00010000)
|
|
#define CR_PAGE_ER ((uint32_t)0x00020000)
|
|
#define CR_BUF_LOAD ((uint32_t)0x00040000)
|
|
#define CR_BUF_RST ((uint32_t)0x00080000)
|
|
|
|
/* FLASH Status Register bits */
|
|
#define SR_BSY ((uint32_t)0x00000001)
|
|
#define SR_WRPRTERR ((uint32_t)0x00000010)
|
|
#define SR_EOP ((uint32_t)0x00000020)
|
|
|
|
/* FLASH Mask */
|
|
#define RDPRT_Mask ((uint32_t)0x00000002)
|
|
#define WRP0_Mask ((uint32_t)0x000000FF)
|
|
#define WRP1_Mask ((uint32_t)0x0000FF00)
|
|
#define WRP2_Mask ((uint32_t)0x00FF0000)
|
|
#define WRP3_Mask ((uint32_t)0xFF000000)
|
|
|
|
/* FLASH Keys */
|
|
#define RDP_Key ((uint16_t)0x00A5)
|
|
#define FLASH_KEY1 ((uint32_t)0x45670123)
|
|
#define FLASH_KEY2 ((uint32_t)0xCDEF89AB)
|
|
|
|
/* FLASH BANK address */
|
|
#define FLASH_BANK1_END_ADDRESS ((uint32_t)0x807FFFF)
|
|
|
|
/* Delay definition */
|
|
#define EraseTimeout ((uint32_t)0x000B0000)
|
|
#define ProgramTimeout ((uint32_t)0x00002000)
|
|
|
|
/* Flash Program Vaild Address */
|
|
#define ValidAddrStart (FLASH_BASE)
|
|
#define ValidAddrEnd (FLASH_BASE + 0x4000)
|
|
|
|
/* FLASH Size */
|
|
#define Size_64B 0x40
|
|
#define Size_1KB 0x400
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_SetLatency
|
|
*
|
|
* @brief Sets the code latency value.
|
|
*
|
|
* @param FLASH_Latency - specifies the FLASH Latency value.
|
|
* FLASH_Latency_0 - FLASH Zero Latency cycle
|
|
* FLASH_Latency_1 - FLASH One Latency cycle
|
|
* FLASH_Latency_2 - FLASH Two Latency cycles
|
|
*
|
|
* @return None
|
|
*/
|
|
void FLASH_SetLatency(uint32_t FLASH_Latency)
|
|
{
|
|
uint32_t tmpreg = 0;
|
|
|
|
tmpreg = FLASH->ACTLR;
|
|
tmpreg &= ACR_LATENCY_Mask;
|
|
tmpreg |= FLASH_Latency;
|
|
FLASH->ACTLR = tmpreg;
|
|
}
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_Unlock
|
|
*
|
|
* @brief Unlocks the FLASH Program Erase Controller.
|
|
*
|
|
* @return None
|
|
*/
|
|
void FLASH_Unlock(void)
|
|
{
|
|
/* Authorize the FPEC of Bank1 Access */
|
|
FLASH->KEYR = FLASH_KEY1;
|
|
FLASH->KEYR = FLASH_KEY2;
|
|
}
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_Lock
|
|
*
|
|
* @brief Locks the FLASH Program Erase Controller.
|
|
*
|
|
* @return None
|
|
*/
|
|
void FLASH_Lock(void)
|
|
{
|
|
FLASH->CTLR |= CR_LOCK_Set;
|
|
}
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_ErasePage
|
|
*
|
|
* @brief Erases a specified FLASH page(1KB).
|
|
*
|
|
* @param Page_Address - The page address to be erased.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_ErasePage(uint32_t Page_Address)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR |= CR_PER_Set;
|
|
FLASH->ADDR = Page_Address;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
|
|
FLASH->CTLR &= CR_PER_Reset;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_EraseAllPages
|
|
*
|
|
* @brief Erases all FLASH pages.
|
|
*
|
|
* @return FLASH Status - The returned value can be:FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_EraseAllPages(void)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR |= CR_MER_Set;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
|
|
FLASH->CTLR &= CR_MER_Reset;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/********************************************************************************
|
|
* @fn FLASH_EraseOptionBytes
|
|
*
|
|
* @brief Erases the FLASH option bytes.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_EraseOptionBytes(void)
|
|
{
|
|
uint16_t rdptmp = RDP_Key;
|
|
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
if(FLASH_GetReadOutProtectionStatus() != RESET)
|
|
{
|
|
rdptmp = 0x00;
|
|
}
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->OBKEYR = FLASH_KEY1;
|
|
FLASH->OBKEYR = FLASH_KEY2;
|
|
|
|
FLASH->CTLR |= CR_OPTER_Set;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR &= CR_OPTER_Reset;
|
|
FLASH->CTLR |= CR_OPTPG_Set;
|
|
OB->RDPR = (uint16_t)rdptmp;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ProgramWord
|
|
*
|
|
* @brief Programs a word at a specified address.
|
|
*
|
|
* @param Address - specifies the address to be programmed.
|
|
* Data - specifies the data to be programmed.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
__IO uint32_t tmp = 0;
|
|
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR |= CR_PG_Set;
|
|
|
|
*(__IO uint16_t *)Address = (uint16_t)Data;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
tmp = Address + 2;
|
|
*(__IO uint16_t *)tmp = Data >> 16;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
FLASH->CTLR &= CR_PG_Reset;
|
|
}
|
|
else
|
|
{
|
|
FLASH->CTLR &= CR_PG_Reset;
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ProgramHalfWord
|
|
*
|
|
* @brief Programs a half word at a specified address.
|
|
*
|
|
* @param Address - specifies the address to be programmed.
|
|
* Data - specifies the data to be programmed.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR |= CR_PG_Set;
|
|
*(__IO uint16_t *)Address = Data;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
FLASH->CTLR &= CR_PG_Reset;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ProgramOptionByteData
|
|
*
|
|
* @brief Programs a half word at a specified Option Byte Data address.
|
|
*
|
|
* @param Address - specifies the address to be programmed.
|
|
* Data - specifies the data to be programmed.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_ProgramOptionByteData(uint32_t Address, uint8_t Data)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->OBKEYR = FLASH_KEY1;
|
|
FLASH->OBKEYR = FLASH_KEY2;
|
|
FLASH->CTLR |= CR_OPTPG_Set;
|
|
*(__IO uint16_t *)Address = Data;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_EnableWriteProtection
|
|
*
|
|
* @brief Write protects the desired sectors
|
|
*
|
|
* @param FLASH_Sectors - specifies the address of the pages to be write protected.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_EnableWriteProtection(uint32_t FLASH_Pages)
|
|
{
|
|
uint16_t WRP0_Data = 0xFFFF, WRP1_Data = 0xFFFF;
|
|
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
FLASH_Pages = (uint32_t)(~FLASH_Pages);
|
|
WRP0_Data = (uint16_t)(FLASH_Pages & WRP0_Mask);
|
|
WRP1_Data = (uint16_t)((FLASH_Pages & WRP1_Mask) >> 8);
|
|
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->OBKEYR = FLASH_KEY1;
|
|
FLASH->OBKEYR = FLASH_KEY2;
|
|
FLASH->CTLR |= CR_OPTPG_Set;
|
|
if(WRP0_Data != 0xFF)
|
|
{
|
|
OB->WRPR0 = WRP0_Data;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
}
|
|
if((status == FLASH_COMPLETE) && (WRP1_Data != 0xFF))
|
|
{
|
|
OB->WRPR1 = WRP1_Data;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
}
|
|
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ReadOutProtection
|
|
*
|
|
* @brief Enables or disables the read out protection.
|
|
*
|
|
* @param Newstate - new state of the ReadOut Protection(ENABLE or DISABLE).
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_ReadOutProtection(FunctionalState NewState)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->OBKEYR = FLASH_KEY1;
|
|
FLASH->OBKEYR = FLASH_KEY2;
|
|
FLASH->CTLR |= CR_OPTER_Set;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR &= CR_OPTER_Reset;
|
|
FLASH->CTLR |= CR_OPTPG_Set;
|
|
if(NewState != DISABLE)
|
|
{
|
|
OB->RDPR = 0x00;
|
|
}
|
|
else
|
|
{
|
|
OB->RDPR = RDP_Key;
|
|
}
|
|
status = FLASH_WaitForLastOperation(EraseTimeout);
|
|
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTER_Reset;
|
|
}
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_UserOptionByteConfig
|
|
*
|
|
* @brief Programs the FLASH User Option Byte - IWDG_SW / RST_STOP / RST_STDBY.
|
|
*
|
|
* @param OB_IWDG - Selects the IWDG mode
|
|
* OB_IWDG_SW - Software IWDG selected
|
|
* OB_IWDG_HW - Hardware IWDG selected
|
|
* OB_STOP - Reset event when entering STOP mode.
|
|
* OB_STOP_NoRST - No reset generated when entering in STOP
|
|
* OB_STOP_RST - Reset generated when entering in STOP
|
|
* OB_STDBY - Reset event when entering Standby mode.
|
|
* OB_STDBY_NoRST - No reset generated when entering in STANDBY
|
|
* OB_STDBY_RST - Reset generated when entering in STANDBY
|
|
* OB_RST - Selects the reset IO mode and Ignore delay time
|
|
* OB_RST_NoEN - Reset IO disable (PD7)
|
|
* OB_RST_EN_DT12ms - Reset IO enable (PD7) and Ignore delay time 12ms
|
|
* OB_RST_EN_DT1ms - Reset IO enable (PD7) and Ignore delay time 1ms
|
|
* OB_RST_EN_DT128us - Reset IO enable (PD7) and Ignore delay time 128us
|
|
* OB_PowerON_Start_Mode - Selects start mode after power on.
|
|
* OB_PowerON_Start_Mode_BOOT - from Boot after power on.
|
|
* OB_PowerON_Start_Mode_USER - from User after power on.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP, FLASH_COMPLETE or FLASH_TIMEOUT.
|
|
*/
|
|
FLASH_Status FLASH_UserOptionByteConfig(uint16_t OB_IWDG, uint16_t OB_STOP, uint16_t OB_STDBY, uint16_t OB_RST, uint16_t OB_PowerON_Start_Mode)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
FLASH->OBKEYR = FLASH_KEY1;
|
|
FLASH->OBKEYR = FLASH_KEY2;
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
|
|
if(status == FLASH_COMPLETE)
|
|
{
|
|
FLASH->CTLR |= CR_OPTPG_Set;
|
|
|
|
OB->USER = OB_IWDG | (uint16_t)(OB_STOP | (uint16_t)(OB_STDBY | (uint16_t)(OB_RST | (uint16_t)(OB_PowerON_Start_Mode| (uint16_t)0xC0))));
|
|
|
|
status = FLASH_WaitForLastOperation(ProgramTimeout);
|
|
if(status != FLASH_TIMEOUT)
|
|
{
|
|
FLASH->CTLR &= CR_OPTPG_Reset;
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetUserOptionByte
|
|
*
|
|
* @brief Returns the FLASH User Option Bytes values.
|
|
*
|
|
* @return The FLASH User Option Bytes values:IWDG_SW(Bit0), RST_STOP(Bit1)
|
|
* and RST_STDBY(Bit2).
|
|
*/
|
|
uint32_t FLASH_GetUserOptionByte(void)
|
|
{
|
|
return (uint32_t)(FLASH->OBR >> 2);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetWriteProtectionOptionByte
|
|
*
|
|
* @brief Returns the FLASH Write Protection Option Bytes Register value.
|
|
*
|
|
* @return The FLASH Write Protection Option Bytes Register value.
|
|
*/
|
|
uint32_t FLASH_GetWriteProtectionOptionByte(void)
|
|
{
|
|
return (uint32_t)(FLASH->WPR);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetReadOutProtectionStatus
|
|
*
|
|
* @brief Checks whether the FLASH Read Out Protection Status is set or not.
|
|
*
|
|
* @return FLASH ReadOut Protection Status(SET or RESET)
|
|
*/
|
|
FlagStatus FLASH_GetReadOutProtectionStatus(void)
|
|
{
|
|
FlagStatus readoutstatus = RESET;
|
|
if((FLASH->OBR & RDPRT_Mask) != (uint32_t)RESET)
|
|
{
|
|
readoutstatus = SET;
|
|
}
|
|
else
|
|
{
|
|
readoutstatus = RESET;
|
|
}
|
|
return readoutstatus;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ITConfig
|
|
*
|
|
* @brief Enables or disables the specified FLASH interrupts.
|
|
*
|
|
* @param FLASH_IT - specifies the FLASH interrupt sources to be enabled or disabled.
|
|
* FLASH_IT_ERROR - FLASH Error Interrupt
|
|
* FLASH_IT_EOP - FLASH end of operation Interrupt
|
|
* NewState - new state of the specified Flash interrupts(ENABLE or DISABLE).
|
|
*
|
|
* @return FLASH Prefetch Buffer Status (SET or RESET).
|
|
*/
|
|
void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState)
|
|
{
|
|
if(NewState != DISABLE)
|
|
{
|
|
FLASH->CTLR |= FLASH_IT;
|
|
}
|
|
else
|
|
{
|
|
FLASH->CTLR &= ~(uint32_t)FLASH_IT;
|
|
}
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetFlagStatus
|
|
*
|
|
* @brief Checks whether the specified FLASH flag is set or not.
|
|
*
|
|
* @param FLASH_FLAG - specifies the FLASH flag to check.
|
|
* FLASH_FLAG_BSY - FLASH Busy flag
|
|
* FLASH_FLAG_WRPRTERR - FLASH Write protected error flag
|
|
* FLASH_FLAG_EOP - FLASH End of Operation flag
|
|
* FLASH_FLAG_OPTERR - FLASH Option Byte error flag
|
|
*
|
|
* @return The new state of FLASH_FLAG (SET or RESET).
|
|
*/
|
|
FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG)
|
|
{
|
|
FlagStatus bitstatus = RESET;
|
|
|
|
if(FLASH_FLAG == FLASH_FLAG_OPTERR)
|
|
{
|
|
if((FLASH->OBR & FLASH_FLAG_OPTERR) != (uint32_t)RESET)
|
|
{
|
|
bitstatus = SET;
|
|
}
|
|
else
|
|
{
|
|
bitstatus = RESET;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if((FLASH->STATR & FLASH_FLAG) != (uint32_t)RESET)
|
|
{
|
|
bitstatus = SET;
|
|
}
|
|
else
|
|
{
|
|
bitstatus = RESET;
|
|
}
|
|
}
|
|
return bitstatus;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ClearFlag
|
|
*
|
|
* @brief Clears the FLASH's pending flags.
|
|
*
|
|
* @param FLASH_FLAG - specifies the FLASH flags to clear.
|
|
* FLASH_FLAG_WRPRTERR - FLASH Write protected error flag
|
|
* FLASH_FLAG_EOP - FLASH End of Operation flag
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_ClearFlag(uint32_t FLASH_FLAG)
|
|
{
|
|
FLASH->STATR = FLASH_FLAG;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetStatus
|
|
*
|
|
* @brief Returns the FLASH Status.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_GetStatus(void)
|
|
{
|
|
FLASH_Status flashstatus = FLASH_COMPLETE;
|
|
|
|
if((FLASH->STATR & FLASH_FLAG_BSY) == FLASH_FLAG_BSY)
|
|
{
|
|
flashstatus = FLASH_BUSY;
|
|
}
|
|
else
|
|
{
|
|
if((FLASH->STATR & FLASH_FLAG_WRPRTERR) != 0)
|
|
{
|
|
flashstatus = FLASH_ERROR_WRP;
|
|
}
|
|
else
|
|
{
|
|
flashstatus = FLASH_COMPLETE;
|
|
}
|
|
}
|
|
return flashstatus;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_GetBank1Status
|
|
*
|
|
* @brief Returns the FLASH Bank1 Status.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_GetBank1Status(void)
|
|
{
|
|
FLASH_Status flashstatus = FLASH_COMPLETE;
|
|
|
|
if((FLASH->STATR & FLASH_FLAG_BANK1_BSY) == FLASH_FLAG_BSY)
|
|
{
|
|
flashstatus = FLASH_BUSY;
|
|
}
|
|
else
|
|
{
|
|
if((FLASH->STATR & FLASH_FLAG_BANK1_WRPRTERR) != 0)
|
|
{
|
|
flashstatus = FLASH_ERROR_WRP;
|
|
}
|
|
else
|
|
{
|
|
flashstatus = FLASH_COMPLETE;
|
|
}
|
|
}
|
|
return flashstatus;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_WaitForLastOperation
|
|
*
|
|
* @brief Waits for a Flash operation to complete or a TIMEOUT to occur.
|
|
*
|
|
* @param Timeout - FLASH programming Timeout
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
status = FLASH_GetBank1Status();
|
|
while((status == FLASH_BUSY) && (Timeout != 0x00))
|
|
{
|
|
status = FLASH_GetBank1Status();
|
|
Timeout--;
|
|
}
|
|
if(Timeout == 0x00)
|
|
{
|
|
status = FLASH_TIMEOUT;
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_WaitForLastBank1Operation
|
|
*
|
|
* @brief Waits for a Flash operation on Bank1 to complete or a TIMEOUT to occur.
|
|
*
|
|
* @param Timeout - FLASH programming Timeout
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_BUSY, FLASH_ERROR_PG,
|
|
* FLASH_ERROR_WRP or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_WaitForLastBank1Operation(uint32_t Timeout)
|
|
{
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
status = FLASH_GetBank1Status();
|
|
while((status == FLASH_FLAG_BANK1_BSY) && (Timeout != 0x00))
|
|
{
|
|
status = FLASH_GetBank1Status();
|
|
Timeout--;
|
|
}
|
|
if(Timeout == 0x00)
|
|
{
|
|
status = FLASH_TIMEOUT;
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_Unlock_Fast
|
|
*
|
|
* @brief Unlocks the Fast Program Erase Mode.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_Unlock_Fast(void)
|
|
{
|
|
/* Authorize the FPEC of Bank1 Access */
|
|
FLASH->KEYR = FLASH_KEY1;
|
|
FLASH->KEYR = FLASH_KEY2;
|
|
|
|
/* Fast program mode unlock */
|
|
FLASH->MODEKEYR = FLASH_KEY1;
|
|
FLASH->MODEKEYR = FLASH_KEY2;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_Lock_Fast
|
|
*
|
|
* @brief Locks the Fast Program Erase Mode.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_Lock_Fast(void)
|
|
{
|
|
FLASH->CTLR |= CR_FLOCK_Set;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_BufReset
|
|
*
|
|
* @brief Flash Buffer reset.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_BufReset(void)
|
|
{
|
|
FLASH->CTLR |= CR_PAGE_PG;
|
|
FLASH->CTLR |= CR_BUF_RST;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
FLASH->CTLR &= ~CR_PAGE_PG;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_BufLoad
|
|
*
|
|
* @brief Flash Buffer load(4Byte).
|
|
*
|
|
* @param Address - specifies the address to be programmed.
|
|
* Data0 - specifies the data0 to be programmed.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_BufLoad(uint32_t Address, uint32_t Data0)
|
|
{
|
|
if((Address >= ValidAddrStart) && (Address < ValidAddrEnd))
|
|
{
|
|
FLASH->CTLR |= CR_PAGE_PG;
|
|
*(__IO uint32_t *)(Address) = Data0;
|
|
FLASH->CTLR |= CR_BUF_LOAD;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
FLASH->CTLR &= ~CR_PAGE_PG;
|
|
}
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ErasePage_Fast
|
|
*
|
|
* @brief Erases a specified FLASH page (1page = 64Byte).
|
|
*
|
|
* @param Page_Address - The page address to be erased.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_ErasePage_Fast(uint32_t Page_Address)
|
|
{
|
|
if((Page_Address >= ValidAddrStart) && (Page_Address < ValidAddrEnd))
|
|
{
|
|
FLASH->CTLR |= CR_PAGE_ER;
|
|
FLASH->ADDR = Page_Address;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
FLASH->CTLR &= ~CR_PAGE_ER;
|
|
}
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ProgramPage_Fast
|
|
*
|
|
* @brief Program a specified FLASH page (1page = 64Byte).
|
|
*
|
|
* @param Page_Address - The page address to be programed.
|
|
*
|
|
* @return none
|
|
*/
|
|
void FLASH_ProgramPage_Fast(uint32_t Page_Address)
|
|
{
|
|
if((Page_Address >= ValidAddrStart) && (Page_Address < ValidAddrEnd))
|
|
{
|
|
FLASH->CTLR |= CR_PAGE_PG;
|
|
FLASH->ADDR = Page_Address;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
FLASH->CTLR &= ~CR_PAGE_PG;
|
|
}
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn SystemReset_StartMode
|
|
*
|
|
* @brief Start mode after system reset.
|
|
*
|
|
* @param Mode - Start mode.
|
|
* Start_Mode_USER - USER start after system reset
|
|
* Start_Mode_BOOT - Boot start after system reset
|
|
* @return none
|
|
*/
|
|
void SystemReset_StartMode(uint32_t Mode)
|
|
{
|
|
FLASH_Unlock();
|
|
|
|
FLASH->BOOT_MODEKEYR = FLASH_KEY1;
|
|
FLASH->BOOT_MODEKEYR = FLASH_KEY2;
|
|
|
|
FLASH->STATR &= ~(1<<14);
|
|
if(Mode == Start_Mode_BOOT){
|
|
FLASH->STATR |= (1<<14);
|
|
}
|
|
|
|
FLASH_Lock();
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn ROM_ERASE
|
|
*
|
|
* @brief Select erases a specified FLASH .
|
|
*
|
|
* @param StartAddr - Erases Flash start address(StartAddr%64 == 0).
|
|
* Cnt - Erases count.
|
|
* Erase_Size - Erases size select.The returned value can be:
|
|
* Size_1KB, Size_64B.
|
|
*
|
|
* @return none.
|
|
*/
|
|
static void ROM_ERASE(uint32_t StartAddr, uint32_t Cnt, uint32_t Erase_Size)
|
|
{
|
|
do{
|
|
if(Erase_Size == Size_1KB)
|
|
{
|
|
FLASH->CTLR |= CR_PER_Set;
|
|
}
|
|
else if(Erase_Size == Size_64B)
|
|
{
|
|
FLASH->CTLR |= CR_PAGE_ER;
|
|
}
|
|
|
|
FLASH->ADDR = StartAddr;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
|
|
if(Erase_Size == Size_1KB)
|
|
{
|
|
FLASH->CTLR &= ~CR_PER_Set;
|
|
StartAddr += Size_1KB;
|
|
}
|
|
else if(Erase_Size == Size_64B)
|
|
{
|
|
FLASH->CTLR &= ~CR_PAGE_ER;
|
|
StartAddr += Size_64B;
|
|
}
|
|
}while(--Cnt);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ROM_ERASE
|
|
*
|
|
* @brief Erases a specified FLASH .
|
|
*
|
|
* @param StartAddr - Erases Flash start address(StartAddr%64 == 0).
|
|
* Length - Erases Flash start Length(Length%64 == 0).
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_ADR_RANGE_ERROR,
|
|
* FLASH_ALIGN_ERROR, FLASH_OP_RANGE_ERROR or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_ROM_ERASE( uint32_t StartAddr, uint32_t Length )
|
|
{
|
|
uint32_t Addr0 = 0, Addr1 = 0, Length0 = 0, Length1 = 0;
|
|
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
if((StartAddr < ValidAddrStart) || (StartAddr >= ValidAddrEnd))
|
|
{
|
|
return FLASH_ADR_RANGE_ERROR;
|
|
}
|
|
|
|
if((StartAddr + Length) > ValidAddrEnd)
|
|
{
|
|
return FLASH_OP_RANGE_ERROR;
|
|
}
|
|
|
|
if((StartAddr & (Size_64B-1)) || (Length & (Size_64B-1)) || (Length == 0))
|
|
{
|
|
return FLASH_ALIGN_ERROR;
|
|
}
|
|
|
|
/* Authorize the FPEC of Bank1 Access */
|
|
FLASH->KEYR = FLASH_KEY1;
|
|
FLASH->KEYR = FLASH_KEY2;
|
|
|
|
/* Fast program mode unlock */
|
|
FLASH->MODEKEYR = FLASH_KEY1;
|
|
FLASH->MODEKEYR = FLASH_KEY2;
|
|
|
|
Addr0 = StartAddr;
|
|
|
|
if(Length >= Size_1KB)
|
|
{
|
|
Length0 = Size_1KB - (Addr0 & (Size_1KB - 1));
|
|
Addr1 = StartAddr + Length0;
|
|
Length1 = Length - Length0;
|
|
}
|
|
else if(Length >= Size_64B)
|
|
{
|
|
Length0 = Length;
|
|
}
|
|
|
|
/* Erase 1KB */
|
|
if(Length0 >= Size_1KB) //front
|
|
{
|
|
Length = Length0;
|
|
if(Addr0 & (Size_1KB - 1))
|
|
{
|
|
Length0 = Size_1KB - (Addr0 & (Size_1KB - 1));
|
|
}
|
|
else
|
|
{
|
|
Length0 = 0;
|
|
}
|
|
|
|
ROM_ERASE((Addr0 + Length0), ((Length - Length0) >> 10), Size_1KB);
|
|
}
|
|
|
|
if(Length1 >= Size_1KB) //back
|
|
{
|
|
StartAddr = Addr1;
|
|
Length = Length1;
|
|
|
|
if((Addr1 + Length1) & (Size_1KB - 1))
|
|
{
|
|
Addr1 = ((StartAddr + Length1) & (~(Size_1KB - 1)));
|
|
Length1 = (StartAddr + Length1) & (Size_1KB - 1);
|
|
}
|
|
else
|
|
{
|
|
Length1 = 0;
|
|
}
|
|
|
|
ROM_ERASE(StartAddr, ((Length - Length1) >> 10), Size_1KB);
|
|
}
|
|
|
|
/* Erase 64B */
|
|
if(Length0)//front
|
|
{
|
|
ROM_ERASE(Addr0, (Length0 >> 6), Size_64B);
|
|
}
|
|
|
|
if(Length1)//back
|
|
{
|
|
ROM_ERASE(Addr1, (Length1 >> 6), Size_64B);
|
|
}
|
|
|
|
FLASH->CTLR |= CR_FLOCK_Set;
|
|
FLASH->CTLR |= CR_LOCK_Set;
|
|
|
|
return status;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* @fn FLASH_ROM_WRITE
|
|
*
|
|
* @brief Writes a specified FLASH .
|
|
*
|
|
* @param StartAddr - Writes Flash start address(StartAddr%64 == 0).
|
|
* Length - Writes Flash start Length(Length%64 == 0).
|
|
* pbuf - Writes Flash value buffer.
|
|
*
|
|
* @return FLASH Status - The returned value can be: FLASH_ADR_RANGE_ERROR,
|
|
* FLASH_ALIGN_ERROR, FLASH_OP_RANGE_ERROR or FLASH_COMPLETE.
|
|
*/
|
|
FLASH_Status FLASH_ROM_WRITE( uint32_t StartAddr, uint32_t *pbuf, uint32_t Length )
|
|
{
|
|
uint32_t i, adr;
|
|
uint8_t size;
|
|
|
|
FLASH_Status status = FLASH_COMPLETE;
|
|
|
|
if((StartAddr < ValidAddrStart) || (StartAddr >= ValidAddrEnd))
|
|
{
|
|
return FLASH_ADR_RANGE_ERROR;
|
|
}
|
|
|
|
if((StartAddr + Length) > ValidAddrEnd)
|
|
{
|
|
return FLASH_OP_RANGE_ERROR;
|
|
}
|
|
|
|
if((StartAddr & (Size_64B-1)) || (Length & (Size_64B-1)) || (Length == 0))
|
|
{
|
|
return FLASH_ALIGN_ERROR;
|
|
}
|
|
adr = StartAddr;
|
|
i = Length >> 6;
|
|
|
|
/* Authorize the FPEC of Bank1 Access */
|
|
FLASH->KEYR = FLASH_KEY1;
|
|
FLASH->KEYR = FLASH_KEY2;
|
|
|
|
/* Fast program mode unlock */
|
|
FLASH->MODEKEYR = FLASH_KEY1;
|
|
FLASH->MODEKEYR = FLASH_KEY2;
|
|
|
|
do{
|
|
FLASH->CTLR |= CR_PAGE_PG;
|
|
FLASH->CTLR |= CR_BUF_RST;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
size = 16;
|
|
while(size)
|
|
{
|
|
*(__IO uint32_t *)(StartAddr) = *(uint32_t *)pbuf;
|
|
FLASH->CTLR |= CR_BUF_LOAD;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
|
|
StartAddr += 4;
|
|
pbuf += 1;
|
|
size -= 1;
|
|
}
|
|
|
|
FLASH->CTLR |= CR_PAGE_PG;
|
|
FLASH->ADDR = adr;
|
|
FLASH->CTLR |= CR_STRT_Set;
|
|
while(FLASH->STATR & SR_BSY)
|
|
;
|
|
FLASH->CTLR &= ~CR_PAGE_PG;
|
|
|
|
adr += 64;
|
|
}while(--i);
|
|
|
|
FLASH->CTLR |= CR_FLOCK_Set;
|
|
FLASH->CTLR |= CR_LOCK_Set;
|
|
|
|
return status;
|
|
}
|