Searched refs:BootAddress (Results 1 – 4 of 4) sorted by relevance
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/ |
D | stm32h7xx_hal.c | 677 void HAL_SYSCFG_CM7BootAddConfig(uint32_t BootRegister, uint32_t BootAddress) in HAL_SYSCFG_CM7BootAddConfig() argument 681 assert_param(IS_SYSCFG_BOOT_ADDRESS(BootAddress)); in HAL_SYSCFG_CM7BootAddConfig() 686 … MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BCM7_ADD0, ((BootAddress >> 16) << SYSCFG_UR2_BCM7_ADD0_Pos)); in HAL_SYSCFG_CM7BootAddConfig() 688 … MODIFY_REG(SYSCFG->UR2, SYSCFG_UR2_BOOT_ADD0, ((BootAddress >> 16) << SYSCFG_UR2_BOOT_ADD0_Pos)); in HAL_SYSCFG_CM7BootAddConfig() 695 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM7_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM7BootAddConfig() 697 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BOOT_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM7BootAddConfig() 713 void HAL_SYSCFG_CM4BootAddConfig(uint32_t BootRegister, uint32_t BootAddress) in HAL_SYSCFG_CM4BootAddConfig() argument 717 assert_param(IS_SYSCFG_BOOT_ADDRESS(BootAddress)); in HAL_SYSCFG_CM4BootAddConfig() 722 MODIFY_REG(SYSCFG->UR3, SYSCFG_UR3_BCM4_ADD0, ((BootAddress >> 16)<< SYSCFG_UR3_BCM4_ADD0_Pos)); in HAL_SYSCFG_CM4BootAddConfig() 728 MODIFY_REG(SYSCFG->UR4, SYSCFG_UR4_BCM4_ADD1, (BootAddress >> 16)); in HAL_SYSCFG_CM4BootAddConfig()
|
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/ |
D | stm32h7xx_ll_system.h | 1210 __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()
|
D | stm32h7xx_hal.h | 1103 void HAL_SYSCFG_CM7BootAddConfig(uint32_t BootRegister, uint32_t BootAddress); 1107 void HAL_SYSCFG_CM4BootAddConfig(uint32_t BootRegister, uint32_t BootAddress);
|
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/src/ |
D | stm32h5xx_hal_flash_ex.c | 119 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… 1481 static void FLASH_OB_BootAddrConfig(uint32_t BootOption, uint32_t BootAddress) in FLASH_OB_BootAddrConfig() argument 1488 MODIFY_REG(FLASH->NSBOOTR_PRG, FLASH_BOOTR_BOOTADD, BootAddress); in FLASH_OB_BootAddrConfig() 1493 MODIFY_REG(FLASH->SECBOOTR_PRG, FLASH_BOOTR_BOOTADD, BootAddress); in FLASH_OB_BootAddrConfig() 1555 static void FLASH_OB_GetBootConfig(uint32_t BootOption, uint32_t *BootAddress, uint32_t *BootLockCo… in FLASH_OB_GetBootConfig() argument 1559 *BootAddress = FLASH->NSBOOTR_CUR & FLASH_BOOTR_BOOTADD; in FLASH_OB_GetBootConfig() 1565 *BootAddress = (FLASH->SECBOOTR_CUR & FLASH_BOOTR_BOOTADD); in FLASH_OB_GetBootConfig()
|