📄 ixatmdutil_p.h
字号:
/** * @file IxAtmdUtil_p.h * * @author Intel Corporation * @date 17 March 2002 * * @brief IxAtmdAcc Misc utility functions * * This file contains the prototypes of misceallaneous functiobs * used in IxAtmdAcc * @li a function to manage UniqueIds * @li a function to compute the standard CCITT-16 crc * @li a function to retrive the chained mbufs after * npe processing and the symmetrical function to process * mbufs before submitting them to noe * @li utility functions to send commands to the npe through * the npemh interface. * * * @par * IXP400 SW Release version 2.1 * * -- Copyright Notice -- * * @par * Copyright (c) 2001-2005, Intel Corporation. * All rights reserved. * * @par * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the Intel Corporation nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * * @par * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * @par * -- End of Copyright Notice -- */#ifndef IXATMDUTIL_P_H#define IXATMDUTIL_P_H#include "IxAtmdAcc.h"#include "IxQMgr.h"#include "IxNpeMh.h"/*** @brief Util initialisations*/IX_STATUSixAtmdAccUtilInit (void);/*** @brief Util uninitialisations*/IX_STATUSixAtmdAccUtilUninit (void);/*** @brief Util stats display*/PUBLIC voidixAtmdAccUtilStatsShow (void);/*** @brief Util stats reset*/PUBLIC voidixAtmdAccUtilStatsReset (void);/*** @brief QMgr Queues Initialisation*/IX_STATUSixAtmdAccUtilQueuesInit (void);/*** @brief QMgr Queues Uninitialisation*/IX_STATUSixAtmdAccUtilQueuesUninit (void);/*** @brief Hash a port/vpi/vci according to ISO 3309*/unsigned intixAtmdAccUtilHashVc (IxAtmLogicalPort port, unsigned int vpi, unsigned int vci);/*** @brief Allocate a unique ID, used for connections security and sanity checks*/unsigned intixAtmdAccUtilUniqueIdGet (void);/*** @brief Set a QMgr callback*/IX_STATUSixAtmdAccUtilQmgrCallbackSet (IxQMgrQId qId, unsigned int loThresholdLevel, unsigned int hiThresholdLevel, IxQMgrSourceId sourceId, IxQMgrCallback callback, IxQMgrCallbackId callbackId, IxQMgrPriority priority);/*** @brief convert chained mbufs to NPE format** This conversion includes* @li local Endian to BIG endian* @li virtual address space processing* @li memory cache processing (flush memory)*/IX_OSAL_MBUF *ixAtmdAccUtilMbufToNpeFormatConvert (IX_OSAL_MBUF* mbufPtr);/*** @brief convert chained mbufs from NPE format** This conversion includes* @li BIG endian to local endian* @li virtual address space processing* @li memory cache processing (invalidate memory, optional)*/IX_OSAL_MBUF *ixAtmdAccUtilMbufFromNpeFormatConvert (IX_OSAL_MBUF* mbufPtr, BOOL invalidateCache);/*** @brief convert RX chained mbufs from NPE format** This conversion includes* @li BIG endian to local endian* @li virtual address space processing* @li memory cache processing (invalidate memory)* @li length handling (first mbuf header and last mbuf length)*/IX_OSAL_MBUF *ixAtmdAccUtilRxMbufFromNpeFormatConvert (IX_OSAL_MBUF* mbufPtr, unsigned int pduLength, unsigned int *mbufCount);/*** @brief QMgr Id check and conversion to IxAtmdAcc enum*/IX_STATUSixAtmdAccUtilAtmdQIdGet (IxQMgrQId qMgrQueueId, IxAtmRxQueueId *atmdQueueIdPtr);/*** @brief IxAtmRxQueueId check and conversion to QMgr enum*/IX_STATUSixAtmdAccUtilQmgrQIdGet (IxAtmRxQueueId atmdQueueId, IxQMgrQId* qMgrQueueIdPtr);/*** @brief send to the NPE a disable message for this channel*/IX_STATUSixAtmdAccUtilNpeRxDisableSend(unsigned int npeVcId);/*** @brief send to the NPE an enable message for this channel*/IX_STATUSixAtmdAccUtilNpeRxEnableSend(unsigned int npeVcId);/*** @brief send a message to the NPE** @param msgType (in) message type (shifted and ored with the first parameter)* @param param0 (in) msg first parameter* @param param1 (in) msg second parameter** @return @li IX_SUCCESS the message is sent* @return @li IX_FAIL the message is not sent*/IX_STATUSixAtmdAccUtilNpeMsgSend(unsigned int msgType, unsigned int param0, unsigned int param1);/** ----------------------------------------------------* @brief send a message to the NPE, wait for a response** @param msgType (in) message type (shifted and ored with the first parameter)* @param param0 (in) msg first parameter* @param param1 (in) msg second parameter* @param callback (in) msg callback** @return @li IX_SUCCESS the message is sent* @return @li IX_FAIL the message is not sent*/IX_STATUSixAtmdAccUtilNpeMsgWithResponseSend(unsigned int msgType, unsigned int param0, unsigned int param1, IxNpeMhCallback callback);/*** @brief prototype to get the txdone queue size** @param numberOfPdusPtr (out) specifies the queue size** @return @li IX_SUCCESS the size of the tx queue is retrieved* @return @li IX_FAIL an unexpected error occured**/IX_STATUSixAtmdAccUtilQueueSizeQuery (IxQMgrQId qmgrQueueId, unsigned int *queueSizePtr);#endif /* IXATMDUTIL_P_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -