Home
last modified time | relevance | path

Searched refs:pMPU_RegionInit (Results 1 – 8 of 8) sorted by relevance

/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/src/
Dstm32h7rsxx_hal_cortex.c508 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *pMPU_RegionInit) in HAL_MPU_ConfigRegion() argument
511 assert_param(IS_MPU_REGION_NUMBER(pMPU_RegionInit->Number)); in HAL_MPU_ConfigRegion()
512 assert_param(IS_MPU_REGION_ENABLE(pMPU_RegionInit->Enable)); in HAL_MPU_ConfigRegion()
515 MPU->RNR = pMPU_RegionInit->Number; in HAL_MPU_ConfigRegion()
518 assert_param(IS_MPU_INSTRUCTION_ACCESS(pMPU_RegionInit->DisableExec)); in HAL_MPU_ConfigRegion()
519 assert_param(IS_MPU_REGION_PERMISSION_ATTRIBUTE(pMPU_RegionInit->AccessPermission)); in HAL_MPU_ConfigRegion()
520 assert_param(IS_MPU_TEX_LEVEL(pMPU_RegionInit->TypeExtField)); in HAL_MPU_ConfigRegion()
521 assert_param(IS_MPU_ACCESS_SHAREABLE(pMPU_RegionInit->IsShareable)); in HAL_MPU_ConfigRegion()
522 assert_param(IS_MPU_ACCESS_CACHEABLE(pMPU_RegionInit->IsCacheable)); in HAL_MPU_ConfigRegion()
523 assert_param(IS_MPU_ACCESS_BUFFERABLE(pMPU_RegionInit->IsBufferable)); in HAL_MPU_ConfigRegion()
[all …]
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal_cortex.c179 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *pMPU_RegionInit);
665 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *pMPU_RegionInit) in HAL_MPU_ConfigRegion() argument
667 MPU_ConfigRegion(MPU, pMPU_RegionInit); in HAL_MPU_ConfigRegion()
677 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *pMPU_RegionInit) in HAL_MPU_ConfigRegion_NS() argument
679 MPU_ConfigRegion(MPU_NS, pMPU_RegionInit); in HAL_MPU_ConfigRegion_NS()
718 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *pMPU_RegionInit) in MPU_ConfigRegion() argument
721 assert_param(IS_MPU_REGION_NUMBER(pMPU_RegionInit->Number)); in MPU_ConfigRegion()
722 assert_param(IS_MPU_REGION_ENABLE(pMPU_RegionInit->Enable)); in MPU_ConfigRegion()
725 MPUx->RNR = pMPU_RegionInit->Number; in MPU_ConfigRegion()
731 assert_param(IS_MPU_INSTRUCTION_ACCESS(pMPU_RegionInit->DisableExec)); in MPU_ConfigRegion()
[all …]
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_cortex.c141 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *const pMPU_RegionInit);
723 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *const pMPU_RegionInit) in HAL_MPU_ConfigRegion() argument
725 MPU_ConfigRegion(MPU, pMPU_RegionInit); in HAL_MPU_ConfigRegion()
735 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *const pMPU_RegionInit) in HAL_MPU_ConfigRegion_NS() argument
737 MPU_ConfigRegion(MPU_NS, pMPU_RegionInit); in HAL_MPU_ConfigRegion_NS()
786 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *const pMPU_RegionInit) in MPU_ConfigRegion() argument
792 assert_param(IS_MPU_REGION_NUMBER(pMPU_RegionInit->Number)); in MPU_ConfigRegion()
793 assert_param(IS_MPU_REGION_ENABLE(pMPU_RegionInit->Enable)); in MPU_ConfigRegion()
794 assert_param(IS_MPU_INSTRUCTION_ACCESS(pMPU_RegionInit->DisableExec)); in MPU_ConfigRegion()
795 assert_param(IS_MPU_REGION_PERMISSION_ATTRIBUTE(pMPU_RegionInit->AccessPermission)); in MPU_ConfigRegion()
[all …]
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_cortex.c142 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *const pMPU_RegionInit);
706 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *const pMPU_RegionInit) in HAL_MPU_ConfigRegion() argument
708 MPU_ConfigRegion(MPU, pMPU_RegionInit); in HAL_MPU_ConfigRegion()
718 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *const pMPU_RegionInit) in HAL_MPU_ConfigRegion_NS() argument
720 MPU_ConfigRegion(MPU_NS, pMPU_RegionInit); in HAL_MPU_ConfigRegion_NS()
759 static void MPU_ConfigRegion(MPU_Type *MPUx, const MPU_Region_InitTypeDef *const pMPU_RegionInit) in MPU_ConfigRegion() argument
765 assert_param(IS_MPU_REGION_NUMBER(pMPU_RegionInit->Number)); in MPU_ConfigRegion()
766 assert_param(IS_MPU_REGION_ENABLE(pMPU_RegionInit->Enable)); in MPU_ConfigRegion()
767 assert_param(IS_MPU_INSTRUCTION_ACCESS(pMPU_RegionInit->DisableExec)); in MPU_ConfigRegion()
768 assert_param(IS_MPU_REGION_PERMISSION_ATTRIBUTE(pMPU_RegionInit->AccessPermission)); in MPU_ConfigRegion()
[all …]
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_cortex.h291 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *const pMPU_RegionInit);
299 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *const pMPU_RegionInit);
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_cortex.h305 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *const pMPU_RegionInit);
313 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *const pMPU_RegionInit);
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal_cortex.h304 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *pMPU_RegionInit);
311 void HAL_MPU_ConfigRegion_NS(const MPU_Region_InitTypeDef *pMPU_RegionInit);
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/include/
Dstm32h7rsxx_hal_cortex.h294 void HAL_MPU_ConfigRegion(const MPU_Region_InitTypeDef *pMPU_RegionInit);