0 相关资料
ARM® Generic Interrupt Controller Architecture version 2.0.pdf
1 API介绍
1.1 __disable_irq
__disable_irq函数的作用是失能IRQ,也就是不响应中断。实现代码如下:
/**\brief Disable IRQ Interrupts\details Disables IRQ interrupts by setting the I-bit in the CPSR.Can only be executed in Privileged modes.*/
__STATIC_FORCEINLINE void __disable_irq(void)
{__ASM volatile ("cpsid i" : : : "memory");
}
具体工作就是操作CPSR寄存器的I位,将I位设置为1,失能IRQ。相关寄存器如下:
1.2 GIC_DisableIRQ
GIC_DisableIRQ是将指定的中断禁用,不再响应该中断。
/** \brief Disables the given interrupt using GIC's ICENABLER register.
* \param [in] IRQn The interrupt to be disabled.
*/
__STATIC_INLINE void GIC_DisableIRQ(IRQn_Type IRQn)
{GICDistributor->ICENABLER[IRQn / 32U] = 1U << (IRQn % 32U);
}
具体工作就是将中断对应的中断清使能位置1,相关寄存器说明如下:
1.3 __enable_irq
__enable_irq函数的作用是取消对IRQ的失能,也就是响应中断。实现代码如下:
/**\brief Enable IRQ Interrupts\details Enables IRQ interrupts by clearing the I-bit in the CPSR.Can only be executed in Privileged modes.*/
__STATIC_FORCEINLINE void __enable_irq(void)
{__ASM volatile ("cpsie i" : : : "memory");
}
具体工作就是操作CPSR寄存器的I位,将I位设置为0,取消对IRQ的失能。相关寄存器如下:
1.4 GIC_EnableIRQ
GIC_EnableIRQ函数的作用是将指定的中断使能,响应该中断。
/** \brief Enables the given interrupt using GIC's ISENABLER register.
* \param [in] IRQn The interrupt to be enabled.
*/
__STATIC_INLINE void GIC_EnableIRQ(IRQn_Type IRQn)
{GICDistributor->ISENABLER[IRQn / 32U] = 1U << (IRQn % 32U);
}
具体工作就是将中断对应的中断设置使能位置1,相关寄存器说明如下: