⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xgpio_intr.c

📁 关于xilinx大学计划培训教程3的实例代码
💻 C
字号:
/* $Id *//********************************************************************************       XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"*       AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND*       SOLUTIONS FOR XILINX DEVICES.  BY PROVIDING THIS DESIGN, CODE,*       OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE,*       APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION*       THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,*       AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE*       FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY DISCLAIMS ANY*       WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE*       IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR*       REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF*       INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS*       FOR A PARTICULAR PURPOSE.**       (c) Copyright 2002 - 2004 Xilinx Inc.*       All rights reserved.*******************************************************************************//*****************************************************************************//*** @file xgpio_intr.c** Implements GPIO interrupt processing functions for the XGpio * component. See xgpio.h for more information about the component.* * The functions in this file require the hardware device to be built with * interrupt capabilities. The functions will assert if called using hardware* that does not have interrupt capabilities.** <pre>* MODIFICATION HISTORY:** Ver   Who  Date     Changes* ----- ---- -------- -----------------------------------------------* 2.00a jhl  11/26/03 Initial release* </pre>******************************************************************************//***************************** Include Files ********************************/#include "xgpio.h"#include "xipif_v1_23_b.h"/************************** Constant Definitions ****************************//* The following constant describes the offset of the interrupt registers * that are contained in the IPIF.  This offset should be added to the base * address of the device when using the IPIF access functions. */#define XGPIO_IPIF_OFFSET 0x100/**************************** Type Definitions ******************************//***************** Macros (Inline Functions) Definitions ********************//************************** Variable Definitions ****************************//************************** Function Prototypes *****************************//****************************************************************************//*** Enable the interrupt output signal. Interrupts enabled through* XGpio_InterruptEnable() will not be passed through until the global enable* bit is set by this function.  This function is designed to allow all * interrupts (both channels) to be enabled easily for exiting a critical* section. This function will assert if the hardware device has not been * built with interrupt capabilities.** @param InstancePtr is the GPIO component to operate on.* * @return** None.** @note** None.******************************************************************************/void XGpio_InterruptGlobalEnable(XGpio *InstancePtr){    XASSERT_VOID(InstancePtr != XNULL);    XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);    XASSERT_VOID(InstancePtr->InterruptPresent == XTRUE);    XIIF_V123B_GINTR_ENABLE(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET);}/****************************************************************************//*** Disable the interrupt output signal. Interrupts enabled through* XGpio_InterruptEnable() will no longer be passed through until the global * enable bit is set by XGpio_InterruptGlobalEnable(). This function is * designed to allow all interrupts (both channels) to be disabled easily for* entering a critical section. This function will assert if the hardware * device has not been built with interrupt capabilities.** @param InstancePtr is the GPIO component to operate on.** @return** None.* * @note** None.******************************************************************************/void XGpio_InterruptGlobalDisable(XGpio *InstancePtr){    XASSERT_VOID(InstancePtr != XNULL);    XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);    XASSERT_VOID(InstancePtr->InterruptPresent == XTRUE);        XIIF_V123B_GINTR_DISABLE(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET); }/****************************************************************************//*** Enable interrupts. The global interrupt must also be enabled by calling* XGpio_InterruptGlobalEnable() for interrupts to occur. This function will * assert if the hardware device has not been built with interrupt capabilities.** @param InstancePtr is the GPIO component to operate on.* @param Mask is the mask to enable. Bit positions of 1 are enabled. This mask*        is formed by OR'ing bits from XGPIO_IR* bits which are contained in *        xgpio_l.h.* * @return** None.* * @note** None.******************************************************************************/void XGpio_InterruptEnable(XGpio *InstancePtr, Xuint32 Mask){    Xuint32 Register;    XASSERT_VOID(InstancePtr != XNULL);    XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);    XASSERT_VOID(InstancePtr->InterruptPresent == XTRUE);    /* Read the interrupt enable register and only enable the specified     * interrupts without disabling or enabling any others.     */      Register = XIIF_V123B_READ_IIER(InstancePtr->BaseAddress +                                     XGPIO_IPIF_OFFSET);    XIIF_V123B_WRITE_IIER(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET,                           Mask | Register);}/****************************************************************************//*** Disable interrupts. This function allows specific interrupts for each * channel to be disabled. This function will assert if the hardware device * has not been built with interrupt capabilities. ** @param InstancePtr is the GPIO component to operate on.* @param Mask is the mask to disable. Bits set to 1 are disabled. This mask *        is formed by OR'ing bits from XGPIO_IR* bits which are contained in *        xgpio_l.h.* * @return** None.* * @note** None.******************************************************************************/void XGpio_InterruptDisable(XGpio *InstancePtr, Xuint32 Mask){    Xuint32 Register;    XASSERT_VOID(InstancePtr != XNULL);    XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);    XASSERT_VOID(InstancePtr->InterruptPresent == XTRUE);    /* Read the interrupt enable register and only disable the specified     * interrupts without enabling or disabling any others.     */      Register = XIIF_V123B_READ_IIER(InstancePtr->BaseAddress +                                     XGPIO_IPIF_OFFSET);    XIIF_V123B_WRITE_IIER(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET,                           Mask & ~Register);}/****************************************************************************//*** Clear pending interrupts with the provided mask. This function should be* called after the software has serviced the interrupts that are pending.* This function will assert if the hardware device has not been built with * interrupt capabilities.* * @param InstancePtr is the GPIO component to operate on.* @param Mask is the mask to clear pending interrupts for. Bit positions of 1 *        are cleared. This mask is formed by OR'ing bits from*        XGPIO_IR* bits which are contained in xgpio_l.h.* * @return** None.* * @note** None.******************************************************************************/void XGpio_InterruptClear(XGpio *InstancePtr, Xuint32 Mask){    Xuint32 Register;    XASSERT_VOID(InstancePtr != XNULL);    XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);        XASSERT_VOID(InstancePtr->InterruptPresent == XTRUE);    /* Read the interrupt status register and only clear the interrupts      * that are specified without affecting any others.  Since the register     * is a toggle on write, make sure any bits to be written are already      * set.     */      Register = XIIF_V123B_READ_IISR(InstancePtr->BaseAddress +                                     XGPIO_IPIF_OFFSET);    XIIF_V123B_WRITE_IISR(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET,                           Register & Mask);}/****************************************************************************//*** Returns the interrupt enable mask. This function will assert if the * hardware device has not been built with interrupt capabilities.** @param InstancePtr is the GPIO component to operate on.* * @return A mask of bits made from XGPIO_IR* bits which are contained in *         xgpio_l.h.  ** @return** None.* * @note** None.******************************************************************************/Xuint32 XGpio_InterruptGetEnabled(XGpio *InstancePtr){    XASSERT_NONVOID(InstancePtr != XNULL);    XASSERT_NONVOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);        XASSERT_NONVOID(InstancePtr->InterruptPresent == XTRUE);    return XIIF_V123B_READ_IIER(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET);}/****************************************************************************//*** Returns the status of interrupt signals. Any bit in the mask set to 1 * indicates that the channel associated with the bit has asserted an interrupt* condition. This function will assert if the hardware device has not been * built with interrupt capabilities.** @param InstancePtr is the GPIO component to operate on.* * @return A pointer to a mask of bits made from XGPIO_IR* bits which are *         contained in xgpio_l.h.  ** @note** The interrupt status indicates the status of the device irregardless if* the interrupts from the devices have been enabled or not through* XGpio_InterruptEnable().******************************************************************************/Xuint32 XGpio_InterruptGetStatus(XGpio *InstancePtr){    XASSERT_NONVOID(InstancePtr != XNULL);    XASSERT_NONVOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);        XASSERT_NONVOID(InstancePtr->InterruptPresent == XTRUE);    return XIIF_V123B_READ_IISR(InstancePtr->BaseAddress + XGPIO_IPIF_OFFSET);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -