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

📄 xemacps_bdring.h

📁 自学ZedBoard:使用IP通过ARM PS访问FPGA(源代码)
💻 H
字号:
/* $Id: xemacps_bdring.h,v 1.1.2.1 2011/01/20 03:39:02 sadanan Exp $ *//******************************************************************************** (c) Copyright 2010 Xilinx, Inc. All rights reserved.** This file contains confidential and proprietary information of Xilinx, Inc.* and is protected under U.S. and international copyright and other* intellectual property laws.** DISCLAIMER* This disclaimer is not a license and does not grant any rights to the* materials distributed herewith. Except as otherwise provided in a valid* license issued to you by Xilinx, and to the maximum extent permitted by* applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL* FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,* IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF* MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;* and (2) Xilinx shall not be liable (whether in contract or tort, including* negligence, or under any other theory of liability) for any loss or damage* of any kind or nature related to, arising under or in connection with these* materials, including for any direct, or any indirect, special, incidental,* or consequential loss or damage (including loss of data, profits, goodwill,* or any type of loss or damage suffered as a result of any action brought by* a third party) even if such damage or loss was reasonably foreseeable or* Xilinx had been advised of the possibility of the same.** CRITICAL APPLICATIONS* Xilinx products are not designed or intended to be fail-safe, or for use in* any application requiring fail-safe performance, such as life-support or* safety devices or systems, Class III medical devices, nuclear facilities,* applications related to the deployment of airbags, or any other applications* that could lead to death, personal injury, or severe property or* environmental damage (individually and collectively, "Critical* Applications"). Customer assumes the sole risk and liability of any use of* Xilinx products in Critical Applications, subject only to applicable laws* and regulations governing limitations on product liability.** THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE* AT ALL TIMES.*******************************************************************************//*****************************************************************************//**** @file xemacps_bdring.h** The Xiline EmacPs Buffer Descriptor ring driver. This is part of EmacPs* DMA functionalities.** <pre>* MODIFICATION HISTORY:** Ver   Who  Date     Changes* ----- ---- -------- -------------------------------------------------------* 1.00a wsy  01/10/10 First release* </pre>*******************************************************************************/#ifndef XEMACPS_BDRING_H	/* prevent curcular inclusions */#define XEMACPS_BDRING_H	/* by using protection macros */#ifdef __cplusplusextern "C" {#endif/**************************** Type Definitions *******************************//** This is an internal structure used to maintain the DMA list */typedef struct {	u32 PhysBaseAddr;/**< Physical address of 1st BD in list */	u32 BaseBdAddr;	 /**< Virtual address of 1st BD in list */	u32 HighBdAddr;	 /**< Virtual address of last BD in the list */	u32 Length;	 /**< Total size of ring in bytes */	u32 RunState;	 /**< Flag to indicate DMA is started */	u32 Separation;	 /**< Number of bytes between the starting address                                  of adjacent BDs */	XEmacPs_Bd *FreeHead;			     /**< First BD in the free group */	XEmacPs_Bd *PreHead;/**< First BD in the pre-work group */	XEmacPs_Bd *HwHead; /**< First BD in the work group */	XEmacPs_Bd *HwTail; /**< Last BD in the work group */	XEmacPs_Bd *PostHead;			     /**< First BD in the post-work group */	XEmacPs_Bd *BdaRestart;			     /**< BDA to load when channel is started */	unsigned HwCnt;	     /**< Number of BDs in work group */	unsigned PreCnt;     /**< Number of BDs in pre-work group */	unsigned FreeCnt;    /**< Number of allocatable BDs in the free group */	unsigned PostCnt;    /**< Number of BDs in post-work group */	unsigned AllCnt;     /**< Total Number of BDs for channel */} XEmacPs_BdRing;/***************** Macros (Inline Functions) Definitions *********************//*****************************************************************************//*** Use this macro at initialization time to determine how many BDs will fit* in a BD list within the given memory constraints.** The results of this macro can be provided to XEmacPs_BdRingCreate().** @param Alignment specifies what byte alignment the BDs must fall on and*        must be a power of 2 to get an accurate calculation (32, 64, 128,...)* @param Bytes is the number of bytes to be used to store BDs.** @return Number of BDs that can fit in the given memory area** @note* C-style signature:*    u32 XEmacPs_BdRingCntCalc(u32 Alignment, u32 Bytes)*******************************************************************************/#define XEmacPs_BdRingCntCalc(Alignment, Bytes)                    \    (u32)((Bytes) / ((sizeof(XEmacPs_Bd) + ((Alignment)-1)) &   \    ~((Alignment)-1)))/*****************************************************************************//*** Use this macro at initialization time to determine how many bytes of memory* is required to contain a given number of BDs at a given alignment.** @param Alignment specifies what byte alignment the BDs must fall on. This*        parameter must be a power of 2 to get an accurate calculation (32, 64,*        128,...)* @param NumBd is the number of BDs to calculate memory size requirements for** @return The number of bytes of memory required to create a BD list with the*         given memory constraints.** @note* C-style signature:*    u32 XEmacPs_BdRingMemCalc(u32 Alignment, u32 NumBd)*******************************************************************************/#define XEmacPs_BdRingMemCalc(Alignment, NumBd)                    \    (u32)((sizeof(XEmacPs_Bd) + ((Alignment)-1)) &              \    ~((Alignment)-1)) * (NumBd)/****************************************************************************//*** Return the total number of BDs allocated by this channel with* XEmacPs_BdRingCreate().** @param  RingPtr is the DMA channel to operate on.** @return The total number of BDs allocated for this channel.** @note* C-style signature:*    u32 XEmacPs_BdRingGetCnt(XEmacPs_BdRing* RingPtr)******************************************************************************/#define XEmacPs_BdRingGetCnt(RingPtr) ((RingPtr)->AllCnt)/****************************************************************************//*** Return the number of BDs allocatable with XEmacPs_BdRingAlloc() for pre-* processing.** @param  RingPtr is the DMA channel to operate on.** @return The number of BDs currently allocatable.** @note* C-style signature:*    u32 XEmacPs_BdRingGetFreeCnt(XEmacPs_BdRing* RingPtr)******************************************************************************/#define XEmacPs_BdRingGetFreeCnt(RingPtr)   ((RingPtr)->FreeCnt)/****************************************************************************//*** Return the next BD from BdPtr in a list.** @param  RingPtr is the DMA channel to operate on.* @param  BdPtr is the BD to operate on.** @return The next BD in the list relative to the BdPtr parameter.** @note* C-style signature:*    XEmacPs_Bd *XEmacPs_BdRingNext(XEmacPs_BdRing* RingPtr,*                                      XEmacPs_Bd *BdPtr)******************************************************************************/#define XEmacPs_BdRingNext(RingPtr, BdPtr)                           \    (((u32)(BdPtr) >= (RingPtr)->HighBdAddr) ?                     \    (XEmacPs_Bd*)(RingPtr)->BaseBdAddr :                              \    (XEmacPs_Bd*)((u32)(BdPtr) + (RingPtr)->Separation))/****************************************************************************//*** Return the previous BD from BdPtr in the list.** @param  RingPtr is the DMA channel to operate on.* @param  BdPtr is the BD to operate on** @return The previous BD in the list relative to the BdPtr parameter.** @note* C-style signature:*    XEmacPs_Bd *XEmacPs_BdRingPrev(XEmacPs_BdRing* RingPtr,*                                      XEmacPs_Bd *BdPtr)******************************************************************************/#define XEmacPs_BdRingPrev(RingPtr, BdPtr)                           \    (((u32)(BdPtr) <= (RingPtr)->BaseBdAddr) ?                     \    (XEmacPs_Bd*)(RingPtr)->HighBdAddr :                              \    (XEmacPs_Bd*)((u32)(BdPtr) - (RingPtr)->Separation))/************************** Function Prototypes ******************************//* * Scatter gather DMA related functions in xemacps_bdring.c */int XEmacPs_BdRingCreate(XEmacPs_BdRing * RingPtr, u32 PhysAddr,			  u32 VirtAddr, u32 Alignment, unsigned BdCount);int XEmacPs_BdRingClone(XEmacPs_BdRing * RingPtr, XEmacPs_Bd * SrcBdPtr,			 u8 Direction);int XEmacPs_BdRingAlloc(XEmacPs_BdRing * RingPtr, unsigned NumBd,			 XEmacPs_Bd ** BdSetPtr);int XEmacPs_BdRingUnAlloc(XEmacPs_BdRing * RingPtr, unsigned NumBd,			   XEmacPs_Bd * BdSetPtr);int XEmacPs_BdRingToHw(XEmacPs_BdRing * RingPtr, unsigned NumBd,			XEmacPs_Bd * BdSetPtr);int XEmacPs_BdRingFree(XEmacPs_BdRing * RingPtr, unsigned NumBd,			XEmacPs_Bd * BdSetPtr);unsigned XEmacPs_BdRingFromHwTx(XEmacPs_BdRing * RingPtr, unsigned BdLimit,				 XEmacPs_Bd ** BdSetPtr);unsigned XEmacPs_BdRingFromHwRx(XEmacPs_BdRing * RingPtr, unsigned BdLimit,				 XEmacPs_Bd ** BdSetPtr);int XEmacPs_BdRingCheck(XEmacPs_BdRing * RingPtr, u8 Direction);#ifdef __cplusplus}#endif#endif /* end of protection macros */

⌨️ 快捷键说明

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