Home
last modified time | relevance | path

Searched refs:BootAddress (Results 1 – 4 of 4) sorted by relevance

/hal_stm32-3.5.0/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal.c676 void HAL_SYSCFG_CM7BootAddConfig(uint32_t BootRegister, uint32_t BootAddress) in HAL_SYSCFG_CM7BootAddConfig() argument
680 assert_param(IS_SYSCFG_BOOT_ADDRESS(BootAddress)); in HAL_SYSCFG_CM7BootAddConfig()
685 … MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BCM7_ADD0, ((BootAddress >> 16) << SYSCFG_UR2_BCM7_ADD0_Pos)); in HAL_SYSCFG_CM7BootAddConfig()
687 … MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BOOT_ADD0, ((BootAddress >> 16) << SYSCFG_UR2_BOOT_ADD0_Pos)); in HAL_SYSCFG_CM7BootAddConfig()
694 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM7_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM7BootAddConfig()
696 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BOOT_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM7BootAddConfig()
712 void HAL_SYSCFG_CM4BootAddConfig(uint32_t BootRegister, uint32_t BootAddress) in HAL_SYSCFG_CM4BootAddConfig() argument
716 assert_param(IS_SYSCFG_BOOT_ADDRESS(BootAddress)); in HAL_SYSCFG_CM4BootAddConfig()
721 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM4_ADD0, ((BootAddress >> 16)<< SYSCFG_UR3_BCM4_ADD0_Pos)); in HAL_SYSCFG_CM4BootAddConfig()
727 MODIFY_REG(SYSCFG->UR4, SYSCFG_UR4_BCM4_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM4BootAddConfig()
/hal_stm32-3.5.0/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_ll_system.h1210 __STATIC_INLINE void LL_SYSCFG_SetCM7BootAddress0(uint16_t BootAddress) in LL_SYSCFG_SetCM7BootAddress0() argument
1214 …MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BCM7_ADD0, ((uint32_t)BootAddress << SYSCFG_UR2_BCM7_ADD0_Pos)); in LL_SYSCFG_SetCM7BootAddress0()
1216 …MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BOOT_ADD0, ((uint32_t)BootAddress << SYSCFG_UR2_BOOT_ADD0_Pos)); in LL_SYSCFG_SetCM7BootAddress0()
1242 __STATIC_INLINE void LL_SYSCFG_SetCM7BootAddress1(uint16_t BootAddress) in LL_SYSCFG_SetCM7BootAddress1() argument
1246 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM7_ADD1, BootAddress); in LL_SYSCFG_SetCM7BootAddress1()
1248 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BOOT_ADD1, BootAddress); in LL_SYSCFG_SetCM7BootAddress1()
1274 __STATIC_INLINE void LL_SYSCFG_SetCM4BootAddress0(uint16_t BootAddress) in LL_SYSCFG_SetCM4BootAddress0() argument
1277 …MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM4_ADD0, ((uint32_t)BootAddress << SYSCFG_UR3_BCM4_ADD0_Pos)); in LL_SYSCFG_SetCM4BootAddress0()
1297 __STATIC_INLINE void LL_SYSCFG_SetCM4BootAddress1(uint16_t BootAddress) in LL_SYSCFG_SetCM4BootAddress1() argument
1300 MODIFY_REG(SYSCFG->UR4, SYSCFG_UR4_BCM4_ADD1, BootAddress); in LL_SYSCFG_SetCM4BootAddress1()
Dstm32h7xx_hal.h1097 void HAL_SYSCFG_CM7BootAddConfig(uint32_t BootRegister, uint32_t BootAddress);
1101 void HAL_SYSCFG_CM4BootAddConfig(uint32_t BootRegister, uint32_t BootAddress);
/hal_stm32-3.5.0/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_flash_ex.c119 static void FLASH_OB_BootAddrConfig(uint32_t BootOption, uint32_t BootAddress);
121 static void FLASH_OB_GetBootConfig(uint32_t BootOption, uint32_t *BootAddress, uint32_t *BootLockCo…
1441 static void FLASH_OB_BootAddrConfig(uint32_t BootOption, uint32_t BootAddress) in FLASH_OB_BootAddrConfig() argument
1448 MODIFY_REG(FLASH->NSBOOTR_PRG, FLASH_BOOTR_BOOTADD, BootAddress); in FLASH_OB_BootAddrConfig()
1453 MODIFY_REG(FLASH->SECBOOTR_PRG, FLASH_BOOTR_BOOTADD, BootAddress); in FLASH_OB_BootAddrConfig()
1515 static void FLASH_OB_GetBootConfig(uint32_t BootOption, uint32_t *BootAddress, uint32_t *BootLockCo… in FLASH_OB_GetBootConfig() argument
1519 *BootAddress = FLASH->NSBOOTR_CUR & FLASH_BOOTR_BOOTADD; in FLASH_OB_GetBootConfig()
1525 *BootAddress = (FLASH->SECBOOTR_CUR & FLASH_BOOTR_BOOTADD); in FLASH_OB_GetBootConfig()