Home
last modified time | relevance | path

Searched refs:Banks (Results 1 – 7 of 7) sorted by relevance

/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32u5xx/hal/Src/
Dstm32u5xx_hal_flash_ex.c125 static void FLASH_MassErase(uint32_t Banks);
210 FLASH_MassErase(pEraseInit->Banks); in HAL_FLASHEx_Erase()
222 FLASH_PageErase(page_index, pEraseInit->Banks); in HAL_FLASHEx_Erase()
279 pFlash.Bank = pEraseInit->Banks; in HAL_FLASHEx_Erase_IT()
290 FLASH_MassErase(pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
299 FLASH_PageErase(pEraseInit->Page, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
598 void HAL_FLASHEx_EnableSecHideProtection(uint32_t Banks) in HAL_FLASHEx_EnableSecHideProtection() argument
601 assert_param(IS_FLASH_BANK(Banks)); in HAL_FLASHEx_EnableSecHideProtection()
603 if ((Banks & FLASH_BANK_1) != 0U) in HAL_FLASHEx_EnableSecHideProtection()
608 if ((Banks & FLASH_BANK_2) != 0U) in HAL_FLASHEx_EnableSecHideProtection()
[all …]
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32l5xx/hal/Src/
Dstm32l5xx_hal_flash_ex.c117 static void FLASH_MassErase(uint32_t Banks);
196 FLASH_MassErase(pEraseInit->Banks); in HAL_FLASHEx_Erase()
208 FLASH_PageErase(page_index, pEraseInit->Banks); in HAL_FLASHEx_Erase()
265 pFlash.Bank = pEraseInit->Banks; in HAL_FLASHEx_Erase_IT()
276 FLASH_MassErase(pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
285 FLASH_PageErase(pEraseInit->Page, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
539 void HAL_FLASHEx_EnableSecHideProtection(uint32_t Banks) in HAL_FLASHEx_EnableSecHideProtection() argument
542 assert_param(IS_FLASH_BANK(Banks)); in HAL_FLASHEx_EnableSecHideProtection()
544 if ((Banks & FLASH_BANK_1) != 0U) in HAL_FLASHEx_EnableSecHideProtection()
548 if((Banks & FLASH_BANK_2) != 0U) in HAL_FLASHEx_EnableSecHideProtection()
[all …]
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32u5xx/hal/Inc/
Dstm32u5xx_hal_flash_ex.h172 void HAL_FLASHEx_EnableSecHideProtection(uint32_t Banks);
187 HAL_StatusTypeDef HAL_FLASHEx_EnablePowerDown(uint32_t Banks);
203 void FLASH_PageErase(uint32_t Page, uint32_t Banks);
Dstm32u5xx_hal_flash.h51 uint32_t Banks; /*!< Select bank to erase. member
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32l5xx/hal/Inc/
Dstm32l5xx_hal_flash_ex.h135 void HAL_FLASHEx_EnableSecHideProtection(uint32_t Banks);
165 void FLASH_PageErase(uint32_t Page, uint32_t Banks);
Dstm32l5xx_hal_flash.h51 uint32_t Banks; /*!< Select bank to erase. member
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/hal/CMSIS_Driver/
Dlow_level_flash.c564 EraseInit.Banks = bank_number(&ARM_FLASH0_DEV, addr); in Flash_EraseSector()