LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Fri Jun 23 21:03:42 CEST 2006
    Subject: [cvs-checkins] MODIFIED: mb-jpeg ...
    Top
    Date: 00/06/06 23:21:03

    Added: mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src Makefile
    xipif_v1_23_b.c xipif_v1_23_b.h
    Log:
    Updated to EDK8.1


    Revision Changes Path
    1.1 mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/Makefile

    http://www.opencores.org/cvsweb.shtml/mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/Makefile?rev=1.1&content-type=text/x-cvsweb-markup

    Index: Makefile
    ===================================================================
    COMPILER=
    ARCHIVER=
    CP=cp
    COMPILER_FLAGS=
    EXTRA_COMPILER_FLAGS=
    LIB=libxil.a

    RELEASEDIR=../../../lib
    INCLUDEDIR=../../../include
    INCLUDES=-I${INCLUDEDIR}

    OUTS = *.o

    LIBSOURCES=*.c
    INCLUDEFILES=*.h

    libs:
    echo "Compiling ipif"
    $(COMPILER) $(COMPILER_FLAGS) $(EXTRA_COMPILER_FLAGS) $(INCLUDES) $(LIBSOURCES)
    $(ARCHIVER) -r ${RELEASEDIR}/${LIB} ${OUTS}
    make clean

    include:
    ${CP} $(INCLUDEFILES) $(INCLUDEDIR)

    clean:
    rm -rf $(OUTS)




    1.1 mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/xipif_v1_23_b.c

    http://www.opencores.org/cvsweb.shtml/mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/xipif_v1_23_b.c?rev=1.1&content-type=text/x-cvsweb-markup

    Index: xipif_v1_23_b.c
    ===================================================================
    /* $Id: xipif_v1_23_b.c,v 1.1 2006/06/23 19:03:42 quickwayne Exp $ */
    /******************************************************************************
    *
    * 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 xipif_v1_23_b.c
    *
    * This file contains the implementation of the XIpIf component. The
    * XIpIf component encapsulates the IPIF, which is the standard interface
    * that IP must adhere to when connecting to a bus. The purpose of this
    * component is to encapsulate the IPIF processing such that maintainability
    * is increased. This component does not provide a lot of abstraction from
    * from the details of the IPIF as it is considered a building block for
    * device drivers. A device driver designer must be familiar with the
    * details of the IPIF hardware to use this component.
    *
    * The IPIF hardware provides a building block for all hardware devices such
    * that each device does not need to reimplement these building blocks. The
    * IPIF contains other building blocks, such as FIFOs and DMA channels, which
    * are also common to many devices. These blocks are implemented as separate
    * hardware blocks and instantiated within the IPIF. The primary hardware of
    * the IPIF which is implemented by this software component is the interrupt
    * architecture. Since there are many blocks of a device which may generate
    * interrupts, all the interrupt processing is contained in the common part
    * of the device, the IPIF. This interrupt processing is for the device level
    * only and does not include any processing for the interrupt controller.
    *
    * A device is a mechanism such as an Ethernet MAC. The device is made
    * up of several parts which include an IPIF and the IP. The IPIF contains most
    * of the device infrastructure which is common to all devices, such as
    * interrupt processing, DMA channels, and FIFOs. The infrastructure may also
    * be referred to as IPIF internal blocks since they are part of the IPIF and * are separate blocks that can be selected based upon the needs of the device. * The IP of the device is the logic that is unique to the device and interfaces * to the IPIF of the device. * * In general, there are two levels of registers within the IPIF. The first * level, referred to as the device level, contains registers which are for the * entire device. The second level, referred to as the IP level, contains * registers which are specific to the IP of the device. The two levels of * registers are designed to be hierarchical such that the device level is * is a more general register set above the more specific registers of the IP. * The IP level of registers provides functionality which is typically common * across all devices and allows IP designers to focus on the unique aspects * of the IP. * * The interrupt registers of the IPIF are parameterizable such that the only * the number of bits necessary for the device are implemented. The functions * of this component do not attempt to validate that the passed in arguments are * valid based upon the number of implemented bits. This is necessary to * maintain the level of performance required for the common components. Bits * of the registers are assigned starting at the least significant bit of the * registers. * * <b>Critical Sections</b> * * It is the responsibility of the device driver designer to use critical * sections as necessary when calling functions of the IPIF. This component * does not use critical sections and it does access registers using * read-modify-write operations. Calls to IPIF functions from a main thread * and from an interrupt context could produce unpredictable behavior such that * the caller must provide the appropriate critical sections. * * <b>Mutual Exclusion</b> * * The functions of the IPIF are not thread safe such that the caller of all * functions is responsible for ensuring mutual exclusion for an IPIF. Mutual * exclusion across multiple IPIF components is not necessary. * * <pre> * MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.23b jhl 02/27/01 Repartioned to reduce size * 1.23b rpm 08/17/04 Doxygenated for inclusion in API documentation * 1.23b xd 10/27/04 Improve Doxygen format * </pre> * ******************************************************************************/ /***************************** Include Files *********************************/ #include "xipif_v1_23_b.h" #include "xio.h" /************************** Constant Definitions *****************************/ /* the following constant is used to generate bit masks for register testing * in the self test functions, it defines the starting bit mask that is to be * shifted from the LSB to MSB in creating a register test mask */ #define XIIF_V123B_FIRST_BIT_MASK 1UL /* the following constant defines the maximum number of bits which may be * used in the registers at the device and IP levels, this is based upon the * number of bits available in the registers */ #define XIIF_V123B_MAX_REG_BIT_COUNT 32 /**************************** Type Definitions *******************************/ /***************** Macros (Inline Functions) Definitions *********************/ /************************** Variable Definitions *****************************/ /************************** Function Prototypes ******************************/ static XStatus IpIntrSelfTest(Xuint32 RegBaseAddress, Xuint32 IpRegistersWidth); /*****************************************************************************/ /** * * This function performs a self test on the specified IPIF component. Many * of the registers in the IPIF are tested to ensure proper operation. This * function is destructive because the IPIF is reset at the start of the test * and at the end of the test to ensure predictable results. The IPIF reset * also resets the entire device that uses the IPIF. This function exits with * all interrupts for the device disabled. * * @param RegBaseAddress is the base address of the device's IPIF registers * * @param IpRegistersWidth contains the number of bits in the IP interrupt * registers of the device. The hardware is parameterizable such that * only the number of bits necessary to support a device are implemented. * This value must be between 0 and 32 with 0 indicating there are no IP * interrupt registers used. * * @return * * A value of XST_SUCCESS indicates the test was successful with no errors. * Any one of the following error values may also be returned. * <br><br> * - XST_IPIF_RESET_REGISTER_ERROR The value of a register at reset was * not valid * <br><br> * - XST_IPIF_IP_STATUS_ERROR A write to the IP interrupt status * register did not read back correctly * <br><br> * - XST_IPIF_IP_ACK_ERROR One or more bits in the IP interrupt * status register did not reset when acked * <br><br> * - XST_IPIF_IP_ENABLE_ERROR The IP interrupt enable register * did not read back correctly based upon * what was written to it * * @note * * None. * ******************************************************************************/ XStatus XIpIfV123b_SelfTest(Xuint32 RegBaseAddress, Xuint8 IpRegistersWidth) { XStatus Status; /* assert to verify arguments are valid */ XASSERT_NONVOID(IpRegistersWidth <= XIIF_V123B_MAX_REG_BIT_COUNT); /* reset the IPIF such that it's in a known state before the test * and interrupts are globally disabled */ XIIF_V123B_RESET(RegBaseAddress); /* perform the self test on the IP interrupt registers, if * it is not successful exit with the status */ Status = IpIntrSelfTest(RegBaseAddress, IpRegistersWidth); if (Status != XST_SUCCESS) { return Status; } /* reset the IPIF such that it's in a known state before exiting test */ XIIF_V123B_RESET(RegBaseAddress); /* reaching this point means there were no errors, return success */ return XST_SUCCESS; } /***************************************************************************** * * Perform a self test on the IP interrupt registers of the IPIF. This * function modifies registers of the IPIF such that they are not guaranteed * to be in the same state when it returns. Any bits in the IP interrupt * status register which are set are assumed to be set by default after a reset * and are not tested in the test. * * @param RegBaseAddress is the base address of the device's IPIF registers * * @param IpRegistersWidth contains the number of bits in the IP interrupt * registers of the device. The hardware is parameterizable such that * only the number of bits necessary to support a device are implemented. * This value must be between 0 and 32 with 0 indicating there are no IP * interrupt registers used. * * @return * * A status indicating XST_SUCCESS if the test was successful. Otherwise, one * of the following values is returned. * - XST_IPIF_RESET_REGISTER_ERROR The value of a register at reset was * not valid * <br><br> * - XST_IPIF_IP_STATUS_ERROR A write to the IP interrupt status * register did not read back correctly * <br><br> * - XST_IPIF_IP_ACK_ERROR One or more bits in the IP status * register did not reset when acked * <br><br> * - XST_IPIF_IP_ENABLE_ERROR The IP interrupt enable register * did not read back correctly based upon * what was written to it * @note * * None. * ******************************************************************************/ static XStatus IpIntrSelfTest(Xuint32 RegBaseAddress, Xuint32 IpRegistersWidth) { /* ensure that the IP interrupt enable register is zero * as it should be at reset, the interrupt status is dependent upon the * IP such that it's reset value is not known */ if (XIIF_V123B_READ_IIER(RegBaseAddress) != 0) { return XST_IPIF_RESET_REGISTER_ERROR; } /* if there are any used IP interrupts, then test all of the interrupt * bits in all testable registers */ if (IpRegistersWidth > 0) { Xuint32 BitCount; Xuint32 IpInterruptMask = XIIF_V123B_FIRST_BIT_MASK; Xuint32 Mask = XIIF_V123B_FIRST_BIT_MASK; /* bits assigned MSB to LSB */ Xuint32 InterruptStatus; /* generate the register masks to be used for IP register tests, the * number of bits supported by the hardware is parameterizable such * that only that number of bits are implemented in the registers, the * bits are allocated starting at the MSB of the registers */ for (BitCount = 1; BitCount < IpRegistersWidth; BitCount++) { Mask = Mask << 1; IpInterruptMask |= Mask; } /* get the current IP interrupt status register contents, any bits * already set must default to 1 at reset in the device and these * bits can't be tested in the following test, remove these bits from * the mask that was generated for the test */ InterruptStatus = XIIF_V123B_READ_IISR(RegBaseAddress); IpInterruptMask &= ~InterruptStatus; /* set the bits in the device status register and verify them by reading * the register again, all bits of the register are latched */ XIIF_V123B_WRITE_IISR(RegBaseAddress, IpInterruptMask); InterruptStatus = XIIF_V123B_READ_IISR(RegBaseAddress); if ((InterruptStatus & IpInterruptMask) != IpInterruptMask) { return XST_IPIF_IP_STATUS_ERROR; } /* test to ensure that the bits set in the IP interrupt status register * can be cleared by acknowledging them in the IP interrupt status * register then read it again and verify it was cleared */ XIIF_V123B_WRITE_IISR(RegBaseAddress, IpInterruptMask); InterruptStatus = XIIF_V123B_READ_IISR(RegBaseAddress); if ((InterruptStatus & IpInterruptMask) != 0) { return XST_IPIF_IP_ACK_ERROR; } /* set the IP interrupt enable set register and then read the IP * interrupt enable register and verify the interrupts were enabled */ XIIF_V123B_WRITE_IIER(RegBaseAddress, IpInterruptMask); if (XIIF_V123B_READ_IIER(RegBaseAddress) != IpInterruptMask) { return XST_IPIF_IP_ENABLE_ERROR; } /* clear the IP interrupt enable register and then read the * IP interrupt enable register and verify the interrupts were disabled */ XIIF_V123B_WRITE_IIER(RegBaseAddress, 0); if (XIIF_V123B_READ_IIER(RegBaseAddress) != 0) { return XST_IPIF_IP_ENABLE_ERROR; } } return XST_SUCCESS; } 1.1 mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/xipif_v1_23_b.h http://www.opencores.org/cvsweb.shtml/mb-jpeg/microblaze_0/libsrc/ipif_v1_23_b/src/xipif_v1_23_b.h?rev=1.1&content-type=text/x-cvsweb-markup Index: xipif_v1_23_b.h =================================================================== /* $Id: xipif_v1_23_b.h,v 1.1 2006/06/23 19:03:42 quickwayne Exp $ */ /****************************************************************************** * * 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 xipif_v1_23_b.h * * The XIpIf component encapsulates the IPIF, which is the standard interface * that IP must adhere to when connecting to a bus. The purpose of this * component is to encapsulate the IPIF processing such that maintainability * is increased. This component does not provide a lot of abstraction from * from the details of the IPIF as it is considered a building block for * device drivers. A device driver designer must be familiar with the * details of the IPIF hardware to use this component. * * The IPIF hardware provides a building block for all hardware devices such * that each device does not need to reimplement these building blocks. The * IPIF contains other building blocks, such as FIFOs and DMA channels, which * are also common to many devices. These blocks are implemented as separate * hardware blocks and instantiated within the IPIF. The primary hardware of * the IPIF which is implemented by this software component is the interrupt * architecture. Since there are many blocks of a device which may generate * interrupts, all the interrupt processing is contained in the common part * of the device, the IPIF. This interrupt processing is for the device level * only and does not include any processing for the interrupt controller. * * A device is a mechanism such as an Ethernet MAC. The device is made * up of several parts which include an IPIF and the IP. The IPIF contains most * of the device infrastructure which is common to all devices, such as * interrupt processing, DMA channels, and FIFOs. The infrastructure may also * be referred to as IPIF internal blocks since they are part of the IPIF and * are separate blocks that can be selected based upon the needs of the device. * The IP of the device is the logic that is unique to the device and interfaces * to the IPIF of the device. * * In general, there are two levels of registers within the IPIF. The first * level, referred to as the device level, contains registers which are for the * entire device. The second level, referred to as the IP level, contains * registers which are specific to the IP of the device. The two levels of * registers are designed to be hierarchical such that the device level is * is a more general register set above the more specific registers of the IP. * The IP level of registers provides functionality which is typically common * across all devices and allows IP designers to focus on the unique aspects * of the IP. * * <b>Critical Sections</b> * * It is the responsibility of the device driver designer to use critical * sections as necessary when calling functions of the IPIF. This component * does not use critical sections and it does access registers using * read-modify-write operations. Calls to IPIF functions from a main thread * and from an interrupt context could produce unpredictable behavior such that * the caller must provide the appropriate critical sections. * * <b>Mutual Exclusion</b> * * The functions of the IPIF are not thread safe such that the caller of all * functions is responsible for ensuring mutual exclusion for an IPIF. Mutual * exclusion across multiple IPIF components is not necessary. * * <pre> * MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ---- -------- --------------------------------------------------------- * 1.23b jhl 02/27/01 Repartioned to minimize size * 1.23b rpm 07/16/04 Changed ifdef for circular inclusion to be more qualified * 1.23b rpm 08/17/04 Doxygenated for inclusion of API documentation * 1.23b xd 10/27/04 Improve Doxygen format * </pre> * ******************************************************************************/ #ifndef XIPIF_V123B_H /* prevent circular inclusions */ #define XIPIF_V123B_H /* by using protection macros */ /***************************** Include Files *********************************/ #include "xbasic_types.h" #include "xstatus.h" #include "xversion.h" /************************** Constant Definitions *****************************/ /** @name Register Offsets * * The following constants define the register offsets for the registers of the * IPIF, there are some holes in the memory map for reserved addresses to allow * other registers to be added and still match the memory map of the interrupt * controller registers * @{ */ #define XIIF_V123B_DISR_OFFSET 0UL /**< device interrupt status register */ #define XIIF_V123B_DIPR_OFFSET 4UL /**< device interrupt pending register */ #define XIIF_V123B_DIER_OFFSET 8UL /**< device interrupt enable register */ #define XIIF_V123B_DIIR_OFFSET 24UL /**< device interrupt ID register */ #define XIIF_V123B_DGIER_OFFSET 28UL /**< device global interrupt enable register */ #define XIIF_V123B_IISR_OFFSET 32UL /**< IP interrupt status register */ #define XIIF_V123B_IIER_OFFSET 40UL /**< IP interrupt enable register */ #define XIIF_V123B_RESETR_OFFSET 64UL /**< reset register */ /* @} */ /** * The value used for the reset register to reset the IPIF */ #define XIIF_V123B_RESET_MASK 0xAUL /** * The following constant is used for the device global interrupt enable * register, to enable all interrupts for the device, this is the only bit * in the register */ #define XIIF_V123B_GINTR_ENABLE_MASK 0x80000000UL /** * The mask to identify each internal IPIF error condition in the device * registers of the IPIF. Interrupts are assigned in the register from LSB * to the MSB */ #define XIIF_V123B_ERROR_MASK 1UL /**< LSB of the register */ /** @name Interrupt IDs * * The interrupt IDs which identify each internal IPIF condition, this value * must correlate with the mask constant for the error * @{ */ #define XIIF_V123B_ERROR_INTERRUPT_ID 0 /**< interrupt bit #, (LSB = 0) */ #define XIIF_V123B_NO_INTERRUPT_ID 128 /**< no interrupts are pending */ /* @} */ /**************************** Type Definitions *******************************/ /***************** Macros (Inline Functions) Definitions *********************/ /*****************************************************************************/ /** * * Reset the IPIF component and hardware. This is a destructive operation that * could cause the loss of data since resetting the IPIF of a device also * resets the device using the IPIF and any blocks, such as FIFOs or DMA * channels, within the IPIF. All registers of the IPIF will contain their * reset value when this function returns. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return None * * @note None * ******************************************************************************/ #define XIIF_V123B_RESET(RegBaseAddress) \ XIo_Out32(RegBaseAddress + XIIF_V123B_RESETR_OFFSET, XIIF_V123B_RESET_MASK) /*****************************************************************************/ /** * * This macro sets the device interrupt status register to the value. * This register indicates the status of interrupt sources for a device * which contains the IPIF. The status is independent of whether interrupts * are enabled and could be used for polling a device at a higher level rather * than a more detailed level. * * Each bit of the register correlates to a specific interrupt source within the * device which contains the IPIF. With the exception of some internal IPIF * conditions, the contents of this register are not latched but indicate * the live status of the interrupt sources within the device. Writing any of * the non-latched bits of the register will have no effect on the register. * * For the latched bits of this register only, setting a bit which is zero * within this register causes an interrupt to generated. The device global * interrupt enable register and the device interrupt enable register must be set * appropriately to allow an interrupt to be passed out of the device. The * interrupt is cleared by writing to this register with the bits to be * cleared set to a one and all others to zero. This register implements a * toggle on write functionality meaning any bits which are set in the value * written cause the bits in the register to change to the opposite state. * * This function writes the specified value to the register such that * some bits may be set and others cleared. It is the caller's responsibility * to get the value of the register prior to setting the value to prevent a * destructive behavior. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @param Status contains the value to be written to the interrupt status * register of the device. The only bits which can be written are * the latched bits which contain the internal IPIF conditions. The * following values may be used to set the status register or clear an * interrupt condition. * - XIIF_V123B_ERROR_MASK Indicates a device error in the IPIF * * @return None. * * @note None. * ******************************************************************************/ #define XIIF_V123B_WRITE_DISR(RegBaseAddress, Status) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_DISR_OFFSET, (Status)) /*****************************************************************************/ /** * * This macro gets the device interrupt status register contents. * This register indicates the status of interrupt sources for a device * which contains the IPIF. The status is independent of whether interrupts * are enabled and could be used for polling a device at a higher level. * * Each bit of the register correlates to a specific interrupt source within the * device which contains the IPIF. With the exception of some internal IPIF * conditions, the contents of this register are not latched but indicate * the live status of the interrupt sources within the device. * * For only the latched bits of this register, the interrupt may be cleared by * writing to these bits in the status register. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * A status which contains the value read from the interrupt status register of * the device. The bit definitions are specific to the device with * the exception of the latched internal IPIF condition bits. The following * values may be used to detect internal IPIF conditions in the status. * <br><br> * - XIIF_V123B_ERROR_MASK Indicates a device error in the IPIF * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_READ_DISR(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_DISR_OFFSET) /*****************************************************************************/ /** * * This function sets the device interrupt enable register contents. * This register controls which interrupt sources of the device are allowed to * generate an interrupt. The device global interrupt enable register must also * be set appropriately for an interrupt to be passed out of the device. * * Each bit of the register correlates to a specific interrupt source within the * device which contains the IPIF. Setting a bit in this register enables that * interrupt source to generate an interrupt. Clearing a bit in this register * disables interrupt generation for that interrupt source. * * This function writes only the specified value to the register such that * some interrupts source may be enabled and others disabled. It is the * caller's responsibility to get the value of the interrupt enable register * prior to setting the value to prevent an destructive behavior. * * An interrupt source may not be enabled to generate an interrupt, but can * still be polled in the interrupt status register. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @param * * Enable contains the value to be written to the interrupt enable register * of the device. The bit definitions are specific to the device with * the exception of the internal IPIF conditions. The following * values may be used to enable the internal IPIF conditions interrupts. * - XIIF_V123B_ERROR_MASK Indicates a device error in the IPIF * * @return * * None. * * @note * * Signature: Xuint32 XIIF_V123B_WRITE_DIER(Xuint32 RegBaseAddress, * Xuint32 Enable) * ******************************************************************************/ #define XIIF_V123B_WRITE_DIER(RegBaseAddress, Enable) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_DIER_OFFSET, (Enable)) /*****************************************************************************/ /** * * This function gets the device interrupt enable register contents. * This register controls which interrupt sources of the device * are allowed to generate an interrupt. The device global interrupt enable * register and the device interrupt enable register must also be set * appropriately for an interrupt to be passed out of the device. * * Each bit of the register correlates to a specific interrupt source within the * device which contains the IPIF. Setting a bit in this register enables that * interrupt source to generate an interrupt if the global enable is set * appropriately. Clearing a bit in this register disables interrupt generation * for that interrupt source regardless of the global interrupt enable. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * The value read from the interrupt enable register of the device. The bit * definitions are specific to the device with the exception of the internal * IPIF conditions. The following values may be used to determine from the * value if the internal IPIF conditions interrupts are enabled. * <br><br> * - XIIF_V123B_ERROR_MASK Indicates a device error in the IPIF * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_READ_DIER(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_DIER_OFFSET) /*****************************************************************************/ /** * * This function gets the device interrupt pending register contents. * This register indicates the pending interrupt sources, those that are waiting * to be serviced by the software, for a device which contains the IPIF. * An interrupt must be enabled in the interrupt enable register of the IPIF to * be pending. * * Each bit of the register correlates to a specific interrupt source within the * the device which contains the IPIF. With the exception of some internal IPIF * conditions, the contents of this register are not latched since the condition * is latched in the IP interrupt status register, by an internal block of the * IPIF such as a FIFO or DMA channel, or by the IP of the device. This register * is read only and is not latched, but it is necessary to acknowledge (clear) * the interrupt condition by performing the appropriate processing for the IP * or block within the IPIF. * * This register can be thought of as the contents of the interrupt status * register ANDed with the contents of the interrupt enable register. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * The value read from the interrupt pending register of the device. The bit * definitions are specific to the device with the exception of the latched * internal IPIF condition bits. The following values may be used to detect * internal IPIF conditions in the value. * <br><br> * - XIIF_V123B_ERROR_MASK Indicates a device error in the IPIF * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_READ_DIPR(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_DIPR_OFFSET) /*****************************************************************************/ /** * * This macro gets the device interrupt ID for the highest priority interrupt * which is pending from the interrupt ID register. This function provides * priority resolution such that faster interrupt processing is possible. * Without priority resolution, it is necessary for the software to read the * interrupt pending register and then check each interrupt source to determine * if an interrupt is pending. Priority resolution becomes more important as the * number of interrupt sources becomes larger. * * Interrupt priorities are based upon the bit position of the interrupt in the * interrupt pending register with bit 0 being the highest priority. The * interrupt ID is the priority of the interrupt, 0 - 31, with 0 being the * highest priority. The interrupt ID register is live rather than latched such * that multiple calls to this function may not yield the same results. A * special value, outside of the interrupt priority range of 0 - 31, is * contained in the register which indicates that no interrupt is pending. This * may be useful for allowing software to continue processing interrupts in a * loop until there are no longer any interrupts pending. * * The interrupt ID is designed to allow a function pointer table to be used * in the software such that the interrupt ID is used as an index into that * table. The function pointer table could contain an instance pointer, such * as to DMA channel, and a function pointer to the function which handles * that interrupt. This design requires the interrupt processing of the device * driver to be partitioned into smaller more granular pieces based upon * hardware used by the device, such as DMA channels and FIFOs. * * It is not mandatory that this function be used by the device driver software. * It may choose to read the pending register and resolve the pending interrupt * priorities on it's own. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * An interrupt ID, 0 - 31, which identifies the highest priority interrupt * which is pending. A value of XIIF_NO_INTERRUPT_ID indicates that there is * no interrupt pending. The following values may be used to identify the * interrupt ID for the internal IPIF interrupts. * <br><br> * - XIIF_V123B_ERROR_INTERRUPT_ID Indicates a device error in the IPIF * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_READ_DIIR(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_DIIR_OFFSET) /*****************************************************************************/ /** * * This function disables all interrupts for the device by writing to the global * interrupt enable register. This register provides the ability to disable * interrupts without any modifications to the interrupt enable register such * that it is minimal effort to restore the interrupts to the previous enabled * state. The corresponding function, XIpIf_GlobalIntrEnable, is provided to * restore the interrupts to the previous enabled state. This function is * designed to be used in critical sections of device drivers such that it is * not necessary to disable other device interrupts. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * None. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_GINTR_DISABLE(RegBaseAddress) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_DGIER_OFFSET, 0) /*****************************************************************************/ /** * * This function writes to the global interrupt enable register to enable * interrupts from the device. This register provides the ability to enable * interrupts without any modifications to the interrupt enable register such * that it is minimal effort to restore the interrupts to the previous enabled * state. This function does not enable individual interrupts as the interrupt * enable register must be set appropriately. This function is designed to be * used in critical sections of device drivers such that it is not necessary to * disable other device interrupts. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * None. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_GINTR_ENABLE(RegBaseAddress) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_DGIER_OFFSET, \ XIIF_V123B_GINTR_ENABLE_MASK) /*****************************************************************************/ /** * * This function determines if interrupts are enabled at the global level by * reading the global interrupt register. This register provides the ability to * disable interrupts without any modifications to the interrupt enable register * such that it is minimal effort to restore the interrupts to the previous * enabled state. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * XTRUE if interrupts are enabled for the IPIF, XFALSE otherwise. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_IS_GINTR_ENABLED(RegBaseAddress) \ (XIo_In32((RegBaseAddress) + XIIF_V123B_DGIER_OFFSET) == \ XIIF_V123B_GINTR_ENABLE_MASK) /*****************************************************************************/ /** * * This function sets the IP interrupt status register to the specified value. * This register indicates the status of interrupt sources for the IP of the * device. The IP is defined as the part of the device that connects to the * IPIF. The status is independent of whether interrupts are enabled such that * the status register may also be polled when interrupts are not enabled. * * Each bit of the register correlates to a specific interrupt source within the * IP. All bits of this register are latched. Setting a bit which is zero * within this register causes an interrupt to be generated. The device global * interrupt enable register and the device interrupt enable register must be set * appropriately to allow an interrupt to be passed out of the device. The * interrupt is cleared by writing to this register with the bits to be * cleared set to a one and all others to zero. This register implements a * toggle on write functionality meaning any bits which are set in the value * written cause the bits in the register to change to the opposite state. * * This function writes only the specified value to the register such that * some status bits may be set and others cleared. It is the caller's * responsibility to get the value of the register prior to setting the value * to prevent an destructive behavior. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @param Status contains the value to be written to the IP interrupt status * register. The bit definitions are specific to the device IP. * * @return * * None. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_WRITE_IISR(RegBaseAddress, Status) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_IISR_OFFSET, (Status)) /*****************************************************************************/ /** * * This macro gets the contents of the IP interrupt status register. * This register indicates the status of interrupt sources for the IP of the * device. The IP is defined as the part of the device that connects to the * IPIF. The status is independent of whether interrupts are enabled such * that the status register may also be polled when interrupts are not enabled. * * Each bit of the register correlates to a specific interrupt source within the * device. All bits of this register are latched. Writing a 1 to a bit within * this register causes an interrupt to be generated if enabled in the interrupt * enable register and the global interrupt enable is set. Since the status is * latched, each status bit must be acknowledged in order for the bit in the * status register to be updated. Each bit can be acknowledged by writing a * 0 to the bit in the status register. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * A status which contains the value read from the IP interrupt status register. * The bit definitions are specific to the device IP. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_READ_IISR(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_IISR_OFFSET) /*****************************************************************************/ /** * * This macro sets the IP interrupt enable register contents. This register * controls which interrupt sources of the IP are allowed to generate an * interrupt. The global interrupt enable register and the device interrupt * enable register must also be set appropriately for an interrupt to be * passed out of the device containing the IPIF and the IP. * * Each bit of the register correlates to a specific interrupt source within the * IP. Setting a bit in this register enables the interrupt source to generate * an interrupt. Clearing a bit in this register disables interrupt generation * for that interrupt source. * * This function writes only the specified value to the register such that * some interrupt sources may be enabled and others disabled. It is the * caller's responsibility to get the value of the interrupt enable register * prior to setting the value to prevent an destructive behavior. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @param Enable contains the value to be written to the IP interrupt enable * register. The bit definitions are specific to the device IP. * * @return * * None. * * @note * * None. * ******************************************************************************/ #define XIIF_V123B_WRITE_IIER(RegBaseAddress, Enable) \ XIo_Out32((RegBaseAddress) + XIIF_V123B_IIER_OFFSET, (Enable)) /*****************************************************************************/ /** * * This macro gets the IP interrupt enable register contents. This register * controls which interrupt sources of the IP are allowed to generate an * interrupt. The global interrupt enable register and the device interrupt * enable register must also be set appropriately for an interrupt to be * passed out of the device containing the IPIF and the IP. * * Each bit of the register correlates to a specific interrupt source within the * IP. Setting a bit in this register enables the interrupt source to generate * an interrupt. Clearing a bit in this register disables interrupt generation * for that interrupt source. * * @param RegBaseAddress contains the base address of the IPIF registers. * * @return * * The contents read from the IP interrupt enable register. The bit definitions * are specific to the device IP. * * @note * * Signature: Xuint32 XIIF_V123B_READ_IIER(Xuint32 RegBaseAddress) * ******************************************************************************/ #define XIIF_V123B_READ_IIER(RegBaseAddress) \ XIo_In32((RegBaseAddress) + XIIF_V123B_IIER_OFFSET) /************************** Function Prototypes ******************************/ /** * Initialization Functions */ XStatus XIpIfV123b_SelfTest(Xuint32 RegBaseAddress, Xuint8 IpRegistersWidth); #endif /* end of protection macro */

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.