blob: 299e8ecf51e6815a4a96a387a35dfd2bc88133d1 [file] [log] [blame]
/*
* Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
*/
/*
*
* Airgo Networks, Inc proprietary. All rights reserved
* aniParam.h: MAC parameter interface.
* Author: Kevin Nguyen
* Date: 09/09/2002
*
* History:-
* Date Modified by Modification Information
* --------------------------------------------------------------------------
*
*/
#ifndef _ANIPARAM_H
#define _ANIPARAM_H
#include "halTypes.h"
/**
* -------------------------------------------------------------------------*
* MAC parameter structure *
* This structure is the only interface passed between the MAC FW and the *
* host driver. *
* *
* Host-to-MAC parameters: *
* ======================= *
* radioId: radio ID (1 or 2) *
* pPacketBufAlloc: function pointer for SKBuffer allocation *
* pPacketBufFree : function pointer for SKBuffer free *
* *
*-------------------------------------------------------------------------
*/
typedef struct
{
// HDD to MAC parameters
int radioId;
void (*pPacketBufAlloc)(unsigned short size, void **ppBuf,
void **ppSkb, void *dev);
void (*pPacketBufFree)(void* pBuf, void *pSkb);
int rx_tasklet;
// block table allocated by HDD
void * block_table;
tHalHandle hHalHandle;
} tAniMacParam;
#ifdef ANI_AP_SDK
#define NUM_RADIO 1
#else
#define NUM_RADIO 2
#endif
#endif /* _ANIPARAM_H */