/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32u5xx/hal/Src/ |
D | stm32u5xx_hal.c | 649 void HAL_SYSCFG_Lock(uint32_t Item) in HAL_SYSCFG_Lock() argument 652 assert_param(IS_SYSCFG_LOCK_ITEMS(Item)); in HAL_SYSCFG_Lock() 655 SYSCFG->CNSLCKR = (0xFFFFU & Item); /* non-secure lock item in 16 lowest bits */ in HAL_SYSCFG_Lock() 659 SYSCFG->CSLCKR = ((0xFFFF0000U & Item) >> 16U); /* Secure-only lock item in 16 highest bits */ in HAL_SYSCFG_Lock() 722 void HAL_SYSCFG_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_SYSCFG_ConfigAttributes() argument 727 assert_param(IS_SYSCFG_ITEMS_ATTRIBUTES(Item)); in HAL_SYSCFG_ConfigAttributes() 735 tmp |= Item; in HAL_SYSCFG_ConfigAttributes() 739 tmp &= ~Item; in HAL_SYSCFG_ConfigAttributes() 754 HAL_StatusTypeDef HAL_SYSCFG_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_SYSCFG_GetConfigAttributes() argument 763 assert_param(IS_SYSCFG_ITEMS_ATTRIBUTES(Item)); in HAL_SYSCFG_GetConfigAttributes() [all …]
|
D | stm32u5xx_hal_pwr.c | 835 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_PWR_ConfigAttributes() argument 838 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_ConfigAttributes() 848 SET_BIT(PWR->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 853 SET_BIT(PWR->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 863 CLEAR_BIT(PWR->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 868 CLEAR_BIT(PWR->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 897 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_PWR_GetConfigAttributes() argument 908 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_GetConfigAttributes() 912 if ((PWR->SECCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()
|
D | stm32u5xx_hal_rcc.c | 2002 void HAL_RCC_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_RCC_ConfigAttributes() argument 2005 assert_param(IS_RCC_ITEM_ATTRIBUTES(Item)); in HAL_RCC_ConfigAttributes() 2013 SET_BIT(RCC->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 2018 SET_BIT(RCC->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 2023 CLEAR_BIT(RCC->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 2028 CLEAR_BIT(RCC->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 2059 HAL_StatusTypeDef HAL_RCC_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_RCC_GetConfigAttributes() argument 2070 assert_param(IS_RCC_ITEM_ATTRIBUTES(Item)); in HAL_RCC_GetConfigAttributes() 2075 if ((RCC->SECCFGR & Item) == Item) in HAL_RCC_GetConfigAttributes()
|
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32l5xx/hal/Src/ |
D | stm32l5xx_hal.c | 732 void HAL_SYSCFG_Lock(uint32_t Item) in HAL_SYSCFG_Lock() argument 735 assert_param(IS_SYSCFG_LOCK_ITEMS(Item)); in HAL_SYSCFG_Lock() 738 SYSCFG->CNSLCKR = (0xFFFFU & Item); /* non-secure lock item in 16 lowest bits */ in HAL_SYSCFG_Lock() 742 SYSCFG->CSLCKR = ((0xFFFF0000U & Item) >> 16U); /* Secure-only lock item in 16 highest bits */ in HAL_SYSCFG_Lock() 805 void HAL_SYSCFG_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_SYSCFG_ConfigAttributes() argument 810 assert_param(IS_SYSCFG_ITEMS_ATTRIBUTES(Item)); in HAL_SYSCFG_ConfigAttributes() 818 tmp |= Item; in HAL_SYSCFG_ConfigAttributes() 822 tmp &= ~Item; in HAL_SYSCFG_ConfigAttributes() 837 HAL_StatusTypeDef HAL_SYSCFG_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_SYSCFG_GetConfigAttributes() argument 846 assert_param(IS_SYSCFG_ITEMS_ATTRIBUTES(Item)); in HAL_SYSCFG_GetConfigAttributes() [all …]
|
D | stm32l5xx_hal_pwr.c | 676 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_PWR_ConfigAttributes() argument 679 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_ConfigAttributes() 702 SET_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 706 CLEAR_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes() 724 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_PWR_GetConfigAttributes() argument 735 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_GetConfigAttributes() 750 if ((PWR_S->SECCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()
|
D | stm32l5xx_hal_rcc.c | 1784 void HAL_RCC_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_RCC_ConfigAttributes() argument 1787 assert_param(IS_RCC_ITEMS_ATTRIBUTES(Item)); in HAL_RCC_ConfigAttributes() 1809 SET_BIT(RCC_S->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 1813 CLEAR_BIT(RCC_S->SECCFGR, Item); in HAL_RCC_ConfigAttributes() 1831 HAL_StatusTypeDef HAL_RCC_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_RCC_GetConfigAttributes() argument 1842 assert_param(IS_RCC_ITEMS_ATTRIBUTES(Item)); in HAL_RCC_GetConfigAttributes() 1857 if ((RCC_S->SECCFGR & Item) == Item) in HAL_RCC_GetConfigAttributes()
|
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32l5xx/hal/Inc/ |
D | stm32l5xx_hal_pwr.h | 476 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes); 477 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|
D | stm32l5xx_hal.h | 662 void HAL_SYSCFG_Lock(uint32_t Item); 676 void HAL_SYSCFG_ConfigAttributes(uint32_t Item, uint32_t Attributes); 677 HAL_StatusTypeDef HAL_SYSCFG_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|
D | stm32l5xx_hal_rcc.h | 3563 void HAL_RCC_ConfigAttributes(uint32_t Item, uint32_t Attributes); 3564 HAL_StatusTypeDef HAL_RCC_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|
/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32u5xx/hal/Inc/ |
D | stm32u5xx_hal.h | 653 void HAL_SYSCFG_Lock(uint32_t Item); 667 void HAL_SYSCFG_ConfigAttributes(uint32_t Item, uint32_t Attributes); 668 HAL_StatusTypeDef HAL_SYSCFG_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|
D | stm32u5xx_hal_pwr.h | 748 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes); 749 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|
D | stm32u5xx_hal_rcc.h | 3926 void HAL_RCC_ConfigAttributes(uint32_t Item, uint32_t Attributes); 3927 HAL_StatusTypeDef HAL_RCC_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
|