Home
last modified time | relevance | path

Searched refs:IPRIORITYR (Results 1 - 1 of 1) sorted by relevance

/third_party/cmsis/CMSIS/Core/Include/
H A Dcore_ca.h772 __IOM uint32_t IPRIORITYR[255]; /*!< \brief Offset: 0x400 (R/W) Interrupt Priority Registers */ member
1651 /** \brief Set the priority for the given interrupt in the GIC's IPRIORITYR register.
1657 uint32_t mask = GICDistributor->IPRIORITYR[IRQn / 4U] & ~(0xFFUL << ((IRQn % 4U) * 8U)); in GIC_SetPriority()
1658 GICDistributor->IPRIORITYR[IRQn / 4U] = mask | ((priority & 0xFFUL) << ((IRQn % 4U) * 8U)); in GIC_SetPriority()
1661 /** \brief Read the current interrupt priority from GIC's IPRIORITYR register.
1666 return (GICDistributor->IPRIORITYR[IRQn / 4U] >> ((IRQn % 4U) * 8U)) & 0xFFUL; in GIC_GetPriority()
1784 To determine the number of priority bits implemented write 0xFF to an IPRIORITYR in GIC_DistInit()
1818 To determine the number of priority bits implemented write 0xFF to an IPRIORITYR in GIC_CPUInterfaceInit()

Completed in 12 milliseconds