Home
last modified time | relevance | path

Searched refs:Item (Results 1 – 12 of 12) sorted by relevance

/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/stm32u5xx/hal/Src/
Dstm32u5xx_hal.c649 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 …]
Dstm32u5xx_hal_pwr.c835 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()
Dstm32u5xx_hal_rcc.c2002 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/
Dstm32l5xx_hal.c732 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 …]
Dstm32l5xx_hal_pwr.c676 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()
Dstm32l5xx_hal_rcc.c1784 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/
Dstm32l5xx_hal_pwr.h476 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes);
477 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
Dstm32l5xx_hal.h662 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);
Dstm32l5xx_hal_rcc.h3563 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/
Dstm32u5xx_hal.h653 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);
Dstm32u5xx_hal_pwr.h748 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes);
749 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);
Dstm32u5xx_hal_rcc.h3926 void HAL_RCC_ConfigAttributes(uint32_t Item, uint32_t Attributes);
3927 HAL_StatusTypeDef HAL_RCC_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes);