beceem: make local functions static
Use namespace tool from kernel scripts to identify dead code and functions that should be static. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
This commit is contained in:
Родитель
4540055492
Коммит
9dd47ee7dd
|
@ -15,6 +15,7 @@ typedef enum _E_CLASSIFIER_ACTION
|
|||
eDeleteClassifier
|
||||
}E_CLASSIFIER_ACTION;
|
||||
|
||||
static ULONG GetNextTargetBufferLocation(PMINI_ADAPTER Adapter,B_UINT16 tid);
|
||||
|
||||
/************************************************************
|
||||
* Function - SearchSfid
|
||||
|
@ -108,7 +109,7 @@ static int SearchFreeClsid(PMINI_ADAPTER Adapter /**Adapter Context*/
|
|||
return MAX_CLASSIFIERS+1;
|
||||
}
|
||||
|
||||
VOID deleteSFBySfid(PMINI_ADAPTER Adapter, UINT uiSearchRuleIndex)
|
||||
static VOID deleteSFBySfid(PMINI_ADAPTER Adapter, UINT uiSearchRuleIndex)
|
||||
{
|
||||
//deleting all the packet held in the SF
|
||||
flush_queue(Adapter,uiSearchRuleIndex);
|
||||
|
@ -1923,7 +1924,7 @@ ULONG SetUpTargetDsxBuffers(PMINI_ADAPTER Adapter)
|
|||
return 1;
|
||||
}
|
||||
|
||||
ULONG GetNextTargetBufferLocation(PMINI_ADAPTER Adapter,B_UINT16 tid)
|
||||
static ULONG GetNextTargetBufferLocation(PMINI_ADAPTER Adapter,B_UINT16 tid)
|
||||
{
|
||||
ULONG ulTargetDSXBufferAddress;
|
||||
ULONG ulTargetDsxBufferIndexToUse,ulMaxTry;
|
||||
|
|
|
@ -150,8 +150,6 @@ typedef struct stLocalSFChangeIndicationAlt{
|
|||
|
||||
ULONG StoreCmControlResponseMessage(PMINI_ADAPTER Adapter,PVOID pvBuffer,UINT *puBufferLength);
|
||||
|
||||
ULONG GetNextTargetBufferLocation(PMINI_ADAPTER Adapter,B_UINT16 tid);
|
||||
|
||||
INT AllocAdapterDsxBuffer(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT FreeAdapterDsxBuffer(PMINI_ADAPTER Adapter);
|
||||
|
@ -159,7 +157,6 @@ ULONG SetUpTargetDsxBuffers(PMINI_ADAPTER Adapter);
|
|||
|
||||
BOOLEAN CmControlResponseMessage(PMINI_ADAPTER Adapter,PVOID pvBuffer);
|
||||
|
||||
VOID deleteSFBySfid(PMINI_ADAPTER Adapter, UINT uiSearchRuleIndex);
|
||||
|
||||
#pragma pack (pop)
|
||||
|
||||
|
|
|
@ -11,8 +11,7 @@ When a control packet is received, analyze the
|
|||
Enqueue the control packet for Application.
|
||||
@return None
|
||||
*/
|
||||
VOID handle_rx_control_packet(PMINI_ADAPTER Adapter, /**<Pointer to the Adapter structure*/
|
||||
struct sk_buff *skb) /**<Pointer to the socket buffer*/
|
||||
static VOID handle_rx_control_packet(PMINI_ADAPTER Adapter, struct sk_buff *skb)
|
||||
{
|
||||
PPER_TARANG_DATA pTarang = NULL;
|
||||
BOOLEAN HighPriorityMessage = FALSE;
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#include "headers.h"
|
||||
|
||||
static BOOLEAN MatchSrcIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header);
|
||||
static BOOLEAN MatchDestIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header);
|
||||
static VOID DumpIpv6Header(IPV6Header *pstIpv6Header);
|
||||
|
||||
static UCHAR * GetNextIPV6ChainedHeader(UCHAR **ppucPayload,UCHAR *pucNextHeader,BOOLEAN *bParseDone,USHORT *pusPayloadLength)
|
||||
{
|
||||
UCHAR *pucRetHeaderPtr = NULL;
|
||||
|
@ -257,7 +261,7 @@ USHORT IpVersion6(PMINI_ADAPTER Adapter, /**< Pointer to the driver control stru
|
|||
}
|
||||
|
||||
|
||||
BOOLEAN MatchSrcIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header)
|
||||
static BOOLEAN MatchSrcIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header)
|
||||
{
|
||||
UINT uiLoopIndex=0;
|
||||
UINT uiIpv6AddIndex=0;
|
||||
|
@ -310,7 +314,7 @@ BOOLEAN MatchSrcIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pst
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
BOOLEAN MatchDestIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header)
|
||||
static BOOLEAN MatchDestIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header)
|
||||
{
|
||||
UINT uiLoopIndex=0;
|
||||
UINT uiIpv6AddIndex=0;
|
||||
|
@ -376,7 +380,7 @@ VOID DumpIpv6Address(ULONG *puIpv6Address)
|
|||
|
||||
}
|
||||
|
||||
VOID DumpIpv6Header(IPV6Header *pstIpv6Header)
|
||||
static VOID DumpIpv6Header(IPV6Header *pstIpv6Header)
|
||||
{
|
||||
UCHAR ucVersion;
|
||||
UCHAR ucPrio ;
|
||||
|
|
|
@ -101,15 +101,12 @@ typedef enum _E_IPADDR_CONTEXT
|
|||
|
||||
|
||||
//Function Prototypes
|
||||
BOOLEAN MatchSrcIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header);
|
||||
BOOLEAN MatchDestIpv6Address(S_CLASSIFIER_RULE *pstClassifierRule,IPV6Header *pstIpv6Header);
|
||||
|
||||
USHORT IpVersion6(PMINI_ADAPTER Adapter, /**< Pointer to the driver control structure */
|
||||
PVOID pcIpHeader, /**<Pointer to the IP Hdr of the packet*/
|
||||
S_CLASSIFIER_RULE *pstClassifierRule );
|
||||
|
||||
VOID DumpIpv6Address(ULONG *puIpv6Address);
|
||||
VOID DumpIpv6Header(IPV6Header *pstIpv6Header);
|
||||
|
||||
extern BOOLEAN MatchSrcPort(S_CLASSIFIER_RULE *pstClassifierRule,USHORT ushSrcPort);
|
||||
extern BOOLEAN MatchDestPort(S_CLASSIFIER_RULE *pstClassifierRule,USHORT ushSrcPort);
|
||||
|
|
|
@ -146,17 +146,7 @@ int InterfaceIdleModeRespond(PMINI_ADAPTER Adapter, unsigned int* puiBuffer)
|
|||
return status;
|
||||
}
|
||||
|
||||
|
||||
VOID InterfaceWriteIdleModeWakePattern(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
/* BeceemWriteMemoryUshort(Adapter, Host2CPU_Mailbox_Low, 0x1d1e);
|
||||
BeceemWriteMemoryUshort(Adapter, Host2CPU_Mailbox_Low, 0x1d1e);
|
||||
BeceemWriteMemoryUshort(Adapter, Host2CPU_Mailbox_Upp, 0xd0ea);
|
||||
BeceemWriteMemoryUshort(Adapter, Host2CPU_Mailbox_Upp, 0xd0ea);*/
|
||||
return;
|
||||
}
|
||||
|
||||
int InterfaceAbortIdlemode(PMINI_ADAPTER Adapter, unsigned int Pattern)
|
||||
static int InterfaceAbortIdlemode(PMINI_ADAPTER Adapter, unsigned int Pattern)
|
||||
{
|
||||
int status = STATUS_SUCCESS;
|
||||
unsigned int value;
|
||||
|
|
|
@ -7,8 +7,6 @@ INT InterfaceIdleModeRespond(PMINI_ADAPTER Adapter, unsigned int *puiBuffer);
|
|||
|
||||
VOID InterfaceWriteIdleModeWakePattern(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT InterfaceAbortIdlemode(PMINI_ADAPTER Adapter, unsigned int Pattern);
|
||||
|
||||
INT InterfaceWakeUp(PMINI_ADAPTER Adapter);
|
||||
|
||||
VOID InterfaceHandleShutdownModeWakeup(PMINI_ADAPTER Adapter);
|
||||
|
|
|
@ -11,7 +11,9 @@ static struct usb_device_id InterfaceUsbtable[] = {
|
|||
};
|
||||
MODULE_DEVICE_TABLE(usb, InterfaceUsbtable);
|
||||
|
||||
VOID InterfaceAdapterFree(PS_INTERFACE_ADAPTER psIntfAdapter)
|
||||
static INT InterfaceAdapterInit(PS_INTERFACE_ADAPTER Adapter);
|
||||
|
||||
static VOID InterfaceAdapterFree(PS_INTERFACE_ADAPTER psIntfAdapter)
|
||||
{
|
||||
INT i = 0;
|
||||
// Wake up the wait_queue...
|
||||
|
@ -58,7 +60,7 @@ VOID InterfaceAdapterFree(PS_INTERFACE_ADAPTER psIntfAdapter)
|
|||
AdapterFree(psIntfAdapter->psAdapter);
|
||||
}
|
||||
|
||||
VOID ConfigureEndPointTypesThroughEEPROM(PMINI_ADAPTER Adapter)
|
||||
static VOID ConfigureEndPointTypesThroughEEPROM(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
ULONG ulReg = 0;
|
||||
|
||||
|
@ -441,7 +443,7 @@ static inline int bcm_usb_endpoint_is_isoc_out(const struct usb_endpoint_descrip
|
|||
return (bcm_usb_endpoint_xfer_isoc(epd) && bcm_usb_endpoint_dir_out(epd));
|
||||
}
|
||||
|
||||
INT InterfaceAdapterInit(PS_INTERFACE_ADAPTER psIntfAdapter)
|
||||
static INT InterfaceAdapterInit(PS_INTERFACE_ADAPTER psIntfAdapter)
|
||||
{
|
||||
struct usb_host_interface *iface_desc;
|
||||
struct usb_endpoint_descriptor *endpoint;
|
||||
|
|
|
@ -19,11 +19,7 @@ INT InterfaceInitialize(void);
|
|||
|
||||
INT InterfaceExit(void);
|
||||
|
||||
INT InterfaceAdapterInit(PS_INTERFACE_ADAPTER Adapter);
|
||||
|
||||
INT usbbcm_worker_thread(PS_INTERFACE_ADAPTER psIntfAdapter);
|
||||
|
||||
VOID InterfaceAdapterFree(PS_INTERFACE_ADAPTER psIntfAdapter);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -167,39 +167,3 @@ INT StartInterruptUrb(PS_INTERFACE_ADAPTER psIntfAdapter)
|
|||
return status;
|
||||
}
|
||||
|
||||
/*
|
||||
Function: InterfaceEnableInterrupt
|
||||
|
||||
Description: This is the hardware specific Function for configuring
|
||||
and enabling the interrupts on the device.
|
||||
|
||||
Input parameters: IN PMINI_ADAPTER Adapter - Miniport Adapter Context
|
||||
|
||||
|
||||
Return: BCM_STATUS_SUCCESS - If configuring the interrupts was successful.
|
||||
Other - If an error occured.
|
||||
*/
|
||||
|
||||
void InterfaceEnableInterrupt(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
Function: InterfaceDisableInterrupt
|
||||
|
||||
Description: This is the hardware specific Function for disabling the interrupts on the device.
|
||||
|
||||
Input parameters: IN PMINI_ADAPTER Adapter - Miniport Adapter Context
|
||||
|
||||
|
||||
Return: BCM_STATUS_SUCCESS - If disabling the interrupts was successful.
|
||||
Other - If an error occured.
|
||||
*/
|
||||
|
||||
void InterfaceDisableInterrupt(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
#include "headers.h"
|
||||
|
||||
static int BcmFileDownload(PMINI_ADAPTER Adapter, const char *path,
|
||||
unsigned int loc);
|
||||
static VOID doPowerAutoCorrection(PMINI_ADAPTER psAdapter);
|
||||
static void HandleShutDownModeRequest(PMINI_ADAPTER Adapter,PUCHAR pucBuffer);
|
||||
static int bcm_parse_target_params(PMINI_ADAPTER Adapter);
|
||||
static void beceem_protocol_reset (PMINI_ADAPTER Adapter);
|
||||
|
||||
static VOID default_wimax_protocol_initialize(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
|
@ -175,7 +182,7 @@ static int create_worker_threads(PMINI_ADAPTER psAdapter)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct file *open_firmware_file(PMINI_ADAPTER Adapter, char *path)
|
||||
static struct file *open_firmware_file(PMINI_ADAPTER Adapter, const char *path)
|
||||
{
|
||||
struct file *flp=NULL;
|
||||
mm_segment_t oldfs;
|
||||
|
@ -197,8 +204,8 @@ static struct file *open_firmware_file(PMINI_ADAPTER Adapter, char *path)
|
|||
}
|
||||
|
||||
|
||||
int BcmFileDownload(PMINI_ADAPTER Adapter,/**< Logical Adapter */
|
||||
char *path, /**< path to image file */
|
||||
static int BcmFileDownload(PMINI_ADAPTER Adapter,/**< Logical Adapter */
|
||||
const char *path, /**< path to image file */
|
||||
unsigned int loc /**< Download Address on the chip*/
|
||||
)
|
||||
{
|
||||
|
@ -478,18 +485,6 @@ static VOID SendStatisticsPointerRequest(PMINI_ADAPTER Adapter,
|
|||
#endif
|
||||
|
||||
|
||||
void SendLinkDown(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
LINK_REQUEST stLinkDownRequest;
|
||||
memset(&stLinkDownRequest, 0, sizeof(LINK_REQUEST));
|
||||
stLinkDownRequest.Leader.Status=LINK_UP_CONTROL_REQ;
|
||||
stLinkDownRequest.Leader.PLength=sizeof(ULONG);//minimum 4 bytes
|
||||
stLinkDownRequest.szData[0]=LINK_DOWN_REQ_PAYLOAD;
|
||||
Adapter->bLinkDownRequested = TRUE;
|
||||
|
||||
CopyBufferToControlPacket(Adapter,&stLinkDownRequest);
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* Function - LinkMessage()
|
||||
*
|
||||
|
@ -1229,7 +1224,7 @@ OUT:
|
|||
}
|
||||
|
||||
|
||||
int bcm_parse_target_params(PMINI_ADAPTER Adapter)
|
||||
static int bcm_parse_target_params(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
struct file *flp=NULL;
|
||||
mm_segment_t oldfs={0};
|
||||
|
@ -1357,7 +1352,7 @@ void beceem_parse_target_struct(PMINI_ADAPTER Adapter)
|
|||
|
||||
}
|
||||
|
||||
VOID doPowerAutoCorrection(PMINI_ADAPTER psAdapter)
|
||||
static VOID doPowerAutoCorrection(PMINI_ADAPTER psAdapter)
|
||||
{
|
||||
UINT reporting_mode;
|
||||
|
||||
|
@ -1496,26 +1491,7 @@ int rdmalt (PMINI_ADAPTER Adapter, UINT uiAddress, PUINT pucBuff, size_t size)
|
|||
return uiRetVal;
|
||||
}
|
||||
|
||||
int rdmWithLock(PMINI_ADAPTER Adapter, UINT uiAddress, PCHAR pucBuff, size_t sSize)
|
||||
{
|
||||
|
||||
INT status = STATUS_SUCCESS ;
|
||||
down(&Adapter->rdmwrmsync);
|
||||
|
||||
if((Adapter->IdleMode == TRUE) ||
|
||||
(Adapter->bShutStatus ==TRUE) ||
|
||||
(Adapter->bPreparingForLowPowerMode ==TRUE))
|
||||
{
|
||||
status = -EACCES;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
status = rdm(Adapter, uiAddress, pucBuff, sSize);
|
||||
|
||||
exit:
|
||||
up(&Adapter->rdmwrmsync);
|
||||
return status ;
|
||||
}
|
||||
int wrmWithLock(PMINI_ADAPTER Adapter, UINT uiAddress, PCHAR pucBuff, size_t sSize)
|
||||
{
|
||||
INT status = STATUS_SUCCESS ;
|
||||
|
@ -1707,7 +1683,7 @@ static VOID SendShutModeResponse(PMINI_ADAPTER Adapter)
|
|||
}
|
||||
|
||||
|
||||
void HandleShutDownModeRequest(PMINI_ADAPTER Adapter,PUCHAR pucBuffer)
|
||||
static void HandleShutDownModeRequest(PMINI_ADAPTER Adapter,PUCHAR pucBuffer)
|
||||
{
|
||||
B_UINT32 uiResetValue = 0;
|
||||
|
||||
|
@ -1891,7 +1867,7 @@ void flush_queue(PMINI_ADAPTER Adapter, UINT iQIndex)
|
|||
|
||||
}
|
||||
|
||||
void beceem_protocol_reset (PMINI_ADAPTER Adapter)
|
||||
static void beceem_protocol_reset (PMINI_ADAPTER Adapter)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
|
|
@ -1,5 +1,51 @@
|
|||
#include "headers.h"
|
||||
|
||||
static UINT CreateSFToClassifierRuleMapping(B_UINT16 uiVcid,B_UINT16 uiClsId,S_SERVICEFLOW_TABLE *psServiceFlowTable,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
static UINT CreateClassiferToPHSRuleMapping(B_UINT16 uiVcid,B_UINT16 uiClsId,S_SERVICEFLOW_ENTRY *pstServiceFlowEntry,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
static UINT CreateClassifierPHSRule(B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,E_CLASSIFIER_ENTRY_CONTEXT eClsContext,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
static UINT UpdateClassifierPHSRule(B_UINT16 uiClsId,S_CLASSIFIER_ENTRY *pstClassifierEntry,S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
static BOOLEAN ValidatePHSRuleComplete(S_PHS_RULE *psPhsRule);
|
||||
|
||||
static BOOLEAN DerefPhsRule(B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable,S_PHS_RULE *pstPhsRule);
|
||||
|
||||
static UINT GetClassifierEntry(S_CLASSIFIER_TABLE *pstClassifierTable,B_UINT32 uiClsid,E_CLASSIFIER_ENTRY_CONTEXT eClsContext, S_CLASSIFIER_ENTRY **ppstClassifierEntry);
|
||||
|
||||
static UINT GetPhsRuleEntry(S_CLASSIFIER_TABLE *pstClassifierTable,B_UINT32 uiPHSI,E_CLASSIFIER_ENTRY_CONTEXT eClsContext,S_PHS_RULE **ppstPhsRule);
|
||||
|
||||
static void free_phs_serviceflow_rules(S_SERVICEFLOW_TABLE *psServiceFlowRulesTable);
|
||||
|
||||
static int phs_compress(S_PHS_RULE *phs_members,unsigned char *in_buf,
|
||||
unsigned char *out_buf,unsigned int *header_size,UINT *new_header_size );
|
||||
|
||||
|
||||
static int verify_suppress_phsf(unsigned char *in_buffer,unsigned char *out_buffer,
|
||||
unsigned char *phsf,unsigned char *phsm,unsigned int phss,unsigned int phsv,UINT *new_header_size );
|
||||
|
||||
static int phs_decompress(unsigned char *in_buf,unsigned char *out_buf,\
|
||||
S_PHS_RULE *phs_rules,UINT *header_size);
|
||||
|
||||
|
||||
static ULONG PhsCompress(void* pvContext,
|
||||
B_UINT16 uiVcid,
|
||||
B_UINT16 uiClsId,
|
||||
void *pvInputBuffer,
|
||||
void *pvOutputBuffer,
|
||||
UINT *pOldHeaderSize,
|
||||
UINT *pNewHeaderSize );
|
||||
|
||||
static ULONG PhsDeCompress(void* pvContext,
|
||||
B_UINT16 uiVcid,
|
||||
void *pvInputBuffer,
|
||||
void *pvOutputBuffer,
|
||||
UINT *pInHeaderSize,
|
||||
UINT *pOutHeaderSize);
|
||||
|
||||
|
||||
|
||||
#define IN
|
||||
#define OUT
|
||||
|
||||
|
@ -798,7 +844,7 @@ ULONG PhsDeCompress(IN void* pvContext,
|
|||
// Does not return any value.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
void free_phs_serviceflow_rules(S_SERVICEFLOW_TABLE *psServiceFlowRulesTable)
|
||||
static void free_phs_serviceflow_rules(S_SERVICEFLOW_TABLE *psServiceFlowRulesTable)
|
||||
{
|
||||
int i,j;
|
||||
PMINI_ADAPTER Adapter = GET_BCM_ADAPTER(gblpnetdev);
|
||||
|
@ -852,7 +898,7 @@ void free_phs_serviceflow_rules(S_SERVICEFLOW_TABLE *psServiceFlowRulesTable)
|
|||
|
||||
|
||||
|
||||
BOOLEAN ValidatePHSRuleComplete(IN S_PHS_RULE *psPhsRule)
|
||||
static BOOLEAN ValidatePHSRuleComplete(IN S_PHS_RULE *psPhsRule)
|
||||
{
|
||||
if(psPhsRule)
|
||||
{
|
||||
|
@ -935,7 +981,7 @@ UINT GetClassifierEntry(IN S_CLASSIFIER_TABLE *pstClassifierTable,
|
|||
return PHS_INVALID_TABLE_INDEX;
|
||||
}
|
||||
|
||||
UINT GetPhsRuleEntry(IN S_CLASSIFIER_TABLE *pstClassifierTable,
|
||||
static UINT GetPhsRuleEntry(IN S_CLASSIFIER_TABLE *pstClassifierTable,
|
||||
IN B_UINT32 uiPHSI,E_CLASSIFIER_ENTRY_CONTEXT eClsContext,
|
||||
OUT S_PHS_RULE **ppstPhsRule)
|
||||
{
|
||||
|
@ -1094,7 +1140,7 @@ UINT CreateClassiferToPHSRuleMapping(IN B_UINT16 uiVcid,
|
|||
return uiStatus;
|
||||
}
|
||||
|
||||
UINT CreateClassifierPHSRule(IN B_UINT16 uiClsId,
|
||||
static UINT CreateClassifierPHSRule(IN B_UINT16 uiClsId,
|
||||
S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,
|
||||
E_CLASSIFIER_ENTRY_CONTEXT eClsContext,B_UINT8 u8AssociatedPHSI)
|
||||
{
|
||||
|
@ -1205,7 +1251,7 @@ UINT CreateClassifierPHSRule(IN B_UINT16 uiClsId,
|
|||
}
|
||||
|
||||
|
||||
UINT UpdateClassifierPHSRule(IN B_UINT16 uiClsId,
|
||||
static UINT UpdateClassifierPHSRule(IN B_UINT16 uiClsId,
|
||||
IN S_CLASSIFIER_ENTRY *pstClassifierEntry,
|
||||
S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,
|
||||
B_UINT8 u8AssociatedPHSI)
|
||||
|
@ -1266,7 +1312,7 @@ UINT UpdateClassifierPHSRule(IN B_UINT16 uiClsId,
|
|||
|
||||
}
|
||||
|
||||
BOOLEAN DerefPhsRule(IN B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable,S_PHS_RULE *pstPhsRule)
|
||||
static BOOLEAN DerefPhsRule(IN B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable,S_PHS_RULE *pstPhsRule)
|
||||
{
|
||||
if(pstPhsRule==NULL)
|
||||
return FALSE;
|
||||
|
@ -1444,7 +1490,7 @@ int phs_decompress(unsigned char *in_buf,unsigned char *out_buf,
|
|||
// size-The number of bytes copied into the output buffer i.e dynamic fields
|
||||
// 0 -If PHS rule is NULL.If PHSV field is not set.If the verification fails.
|
||||
//-----------------------------------------------------------------------------
|
||||
int phs_compress(S_PHS_RULE *phs_rule,unsigned char *in_buf
|
||||
static int phs_compress(S_PHS_RULE *phs_rule,unsigned char *in_buf
|
||||
,unsigned char *out_buf,UINT *header_size,UINT *new_header_size)
|
||||
{
|
||||
unsigned char *old_addr = out_buf;
|
||||
|
@ -1505,7 +1551,7 @@ int phs_compress(S_PHS_RULE *phs_rule,unsigned char *in_buf
|
|||
// 0 -Packet has failed the verification.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
int verify_suppress_phsf(unsigned char *in_buffer,unsigned char *out_buffer,
|
||||
static int verify_suppress_phsf(unsigned char *in_buffer,unsigned char *out_buffer,
|
||||
unsigned char *phsf,unsigned char *phsm,unsigned int phss,
|
||||
unsigned int phsv,UINT* new_header_size)
|
||||
{
|
||||
|
|
|
@ -27,19 +27,6 @@ void DumpPhsRules(PPHS_DEVICE_EXTENSION pDeviceExtension);
|
|||
|
||||
int phs_init(PPHS_DEVICE_EXTENSION pPhsdeviceExtension,PMINI_ADAPTER Adapter);
|
||||
|
||||
void free_phs_serviceflow_rules(S_SERVICEFLOW_TABLE *psServiceFlowRulesTable);
|
||||
|
||||
int phs_compress(S_PHS_RULE *phs_members,unsigned char *in_buf,
|
||||
unsigned char *out_buf,unsigned int *header_size,UINT *new_header_size );
|
||||
|
||||
|
||||
int verify_suppress_phsf(unsigned char *in_buffer,unsigned char *out_buffer,
|
||||
unsigned char *phsf,unsigned char *phsm,unsigned int phss,unsigned int phsv,UINT *new_header_size );
|
||||
|
||||
int phs_decompress(unsigned char *in_buf,unsigned char *out_buf,\
|
||||
S_PHS_RULE *phs_rules,UINT *header_size);
|
||||
|
||||
|
||||
int PhsCleanup(PPHS_DEVICE_EXTENSION pPHSDeviceExt);
|
||||
|
||||
//Utility Functions
|
||||
|
@ -52,42 +39,10 @@ ULONG PhsDeleteClassifierRule(void* pvContext, B_UINT16 uiVcid ,B_UINT16 uiClsI
|
|||
ULONG PhsDeleteSFRules(void* pvContext,B_UINT16 uiVcid) ;
|
||||
|
||||
|
||||
ULONG PhsCompress(void* pvContext,
|
||||
B_UINT16 uiVcid,
|
||||
B_UINT16 uiClsId,
|
||||
void *pvInputBuffer,
|
||||
void *pvOutputBuffer,
|
||||
UINT *pOldHeaderSize,
|
||||
UINT *pNewHeaderSize );
|
||||
|
||||
ULONG PhsDeCompress(void* pvContext,
|
||||
B_UINT16 uiVcid,
|
||||
void *pvInputBuffer,
|
||||
void *pvOutputBuffer,
|
||||
UINT *pInHeaderSize,
|
||||
UINT *pOutHeaderSize);
|
||||
|
||||
|
||||
BOOLEAN ValidatePHSRule(S_PHS_RULE *psPhsRule);
|
||||
|
||||
BOOLEAN ValidatePHSRuleComplete(S_PHS_RULE *psPhsRule);
|
||||
|
||||
UINT GetServiceFlowEntry(S_SERVICEFLOW_TABLE *psServiceFlowTable,B_UINT16 uiVcid,S_SERVICEFLOW_ENTRY **ppstServiceFlowEntry);
|
||||
|
||||
UINT GetClassifierEntry(S_CLASSIFIER_TABLE *pstClassifierTable,B_UINT32 uiClsid,E_CLASSIFIER_ENTRY_CONTEXT eClsContext, S_CLASSIFIER_ENTRY **ppstClassifierEntry);
|
||||
|
||||
UINT GetPhsRuleEntry(S_CLASSIFIER_TABLE *pstClassifierTable,B_UINT32 uiPHSI,E_CLASSIFIER_ENTRY_CONTEXT eClsContext,S_PHS_RULE **ppstPhsRule);
|
||||
|
||||
|
||||
UINT CreateSFToClassifierRuleMapping(B_UINT16 uiVcid,B_UINT16 uiClsId,S_SERVICEFLOW_TABLE *psServiceFlowTable,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
UINT CreateClassiferToPHSRuleMapping(B_UINT16 uiVcid,B_UINT16 uiClsId,S_SERVICEFLOW_ENTRY *pstServiceFlowEntry,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
UINT CreateClassifierPHSRule(B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,E_CLASSIFIER_ENTRY_CONTEXT eClsContext,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
UINT UpdateClassifierPHSRule(B_UINT16 uiClsId,S_CLASSIFIER_ENTRY *pstClassifierEntry,S_CLASSIFIER_TABLE *psaClassifiertable ,S_PHS_RULE *psPhsRule,B_UINT8 u8AssociatedPHSI);
|
||||
|
||||
BOOLEAN DerefPhsRule(B_UINT16 uiClsId,S_CLASSIFIER_TABLE *psaClassifiertable,S_PHS_RULE *pstPhsRule);
|
||||
|
||||
void DumpPhsRules(PPHS_DEVICE_EXTENSION pDeviceExtension);
|
||||
|
||||
|
|
|
@ -1,19 +1,12 @@
|
|||
#ifndef _PROTOTYPES_H_
|
||||
#define _PROTOTYPES_H_
|
||||
|
||||
int BcmFileDownload(PMINI_ADAPTER Adapter,/**< Logical Adapter */
|
||||
char *path, /**< path to image file */
|
||||
unsigned int loc /**< Download Address on the chip*/
|
||||
);
|
||||
VOID LinkControlResponseMessage(PMINI_ADAPTER Adapter, PUCHAR pucBuffer);
|
||||
|
||||
VOID StatisticsResponse(PMINI_ADAPTER Adapter,PVOID pvBuffer);
|
||||
|
||||
VOID IdleModeResponse(PMINI_ADAPTER Adapter,PUINT puiBuffer);
|
||||
|
||||
VOID handle_rx_control_packet(PMINI_ADAPTER Adapter, /**<Pointer to the Adapter structure*/
|
||||
struct sk_buff *skb); /**<Pointer to the socket buffer*/
|
||||
|
||||
int control_packet_handler (PMINI_ADAPTER Adapter);
|
||||
|
||||
VOID DeleteAllClassifiersForSF(PMINI_ADAPTER Adapter,UINT uiSearchRuleIndex);
|
||||
|
@ -34,14 +27,6 @@ VOID SortClassifiers(PMINI_ADAPTER Adapter);
|
|||
|
||||
VOID flush_all_queues(PMINI_ADAPTER Adapter);
|
||||
|
||||
USHORT IpVersion4(PMINI_ADAPTER Adapter, /**< Pointer to the driver control structure */
|
||||
struct iphdr *iphd, /**<Pointer to the IP Hdr of the packet*/
|
||||
S_CLASSIFIER_RULE *pstClassifierRule );
|
||||
|
||||
VOID PruneQueue(PMINI_ADAPTER Adapter,/**<Pointer to the driver control structure*/
|
||||
INT iIndex/**<Queue Index*/
|
||||
);
|
||||
|
||||
VOID PruneQueueAllSF(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT SearchSfid(PMINI_ADAPTER Adapter,UINT uiSfid);
|
||||
|
@ -82,7 +67,6 @@ int run_card_proc(PMINI_ADAPTER Adapter );
|
|||
|
||||
int InitCardAndDownloadFirmware(PMINI_ADAPTER ps_adapter);
|
||||
|
||||
int bcm_parse_target_params(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT ReadMacAddressFromNVM(PMINI_ADAPTER Adapter);
|
||||
|
||||
|
@ -100,18 +84,13 @@ int rdmalt (PMINI_ADAPTER Adapter, UINT uiAddress, PUINT pucBuff, size_t sSize);
|
|||
|
||||
int get_dsx_sf_data_to_application(PMINI_ADAPTER Adapter, UINT uiSFId, void __user * user_buffer);
|
||||
|
||||
void SendLinkDown(PMINI_ADAPTER Adapter);
|
||||
|
||||
void SendIdleModeResponse(PMINI_ADAPTER Adapter);
|
||||
|
||||
void HandleShutDownModeRequest(PMINI_ADAPTER Adapter,PUCHAR pucBuffer);
|
||||
|
||||
int ProcessGetHostMibs(PMINI_ADAPTER Adapter, S_MIBS_HOST_STATS_MIBS *buf);
|
||||
void GetDroppedAppCntrlPktMibs(S_MIBS_HOST_STATS_MIBS *ioBuffer, PPER_TARANG_DATA pTarang);
|
||||
void beceem_parse_target_struct(PMINI_ADAPTER Adapter);
|
||||
|
||||
void doPowerAutoCorrection(PMINI_ADAPTER psAdapter);
|
||||
|
||||
int bcm_ioctl_fw_download(PMINI_ADAPTER Adapter, FIRMWARE_INFO *psFwInfo);
|
||||
|
||||
int SearchVcid(PMINI_ADAPTER Adapter,unsigned short usVcid);
|
||||
|
@ -135,7 +114,6 @@ void update_per_sf_desc_cnts( PMINI_ADAPTER Adapter);
|
|||
|
||||
void ClearTargetDSXBuffer(PMINI_ADAPTER Adapter,B_UINT16 TID,BOOLEAN bFreeAll);
|
||||
|
||||
void beceem_protocol_reset (PMINI_ADAPTER Adapter);
|
||||
|
||||
void flush_queue(PMINI_ADAPTER Adapter, UINT iQIndex);
|
||||
|
||||
|
@ -150,31 +128,11 @@ INT BeceemEEPROMBulkRead(
|
|||
UINT uiNumBytes);
|
||||
|
||||
|
||||
INT BeceemFlashBulkRead(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
UINT uiNumBytes);
|
||||
|
||||
UINT BcmGetEEPROMSize(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT WriteBeceemEEPROM(PMINI_ADAPTER Adapter,UINT uiEEPROMOffset, UINT uiData);
|
||||
|
||||
UINT BcmGetFlashSize(PMINI_ADAPTER Adapter);
|
||||
|
||||
UINT BcmGetFlashSectorSize(PMINI_ADAPTER Adapter, UINT FlashSectorSizeSig, UINT FlashSectorSize);
|
||||
|
||||
INT BeceemFlashBulkWrite(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
UINT uiNumBytes,
|
||||
BOOLEAN bVerify);
|
||||
|
||||
INT PropagateCalParamsFromFlashToMemory(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT PropagateCalParamsFromEEPROMToMemory(PMINI_ADAPTER Adapter);
|
||||
|
||||
|
||||
INT BeceemEEPROMBulkWrite(
|
||||
PMINI_ADAPTER Adapter,
|
||||
|
@ -184,11 +142,8 @@ INT BeceemEEPROMBulkWrite(
|
|||
BOOLEAN bVerify);
|
||||
|
||||
|
||||
INT ReadBeceemEEPROMBulk(PMINI_ADAPTER Adapter,UINT dwAddress, UINT *pdwData, UINT dwNumData);
|
||||
|
||||
INT ReadBeceemEEPROM(PMINI_ADAPTER Adapter,UINT dwAddress, UINT *pdwData);
|
||||
|
||||
NVM_TYPE BcmGetNvmType(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT BeceemNVMRead(
|
||||
PMINI_ADAPTER Adapter,
|
||||
|
@ -203,24 +158,12 @@ INT BeceemNVMWrite(
|
|||
UINT uiNumBytes,
|
||||
BOOLEAN bVerify);
|
||||
|
||||
INT BcmUpdateSectorSize(PMINI_ADAPTER Adapter,UINT uiSectorSize);
|
||||
|
||||
INT BcmInitNVM(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT BcmGetNvmSize(PMINI_ADAPTER Adapter);
|
||||
INT BcmUpdateSectorSize(PMINI_ADAPTER Adapter,UINT uiSectorSize);
|
||||
BOOLEAN IsSectionExistInFlash(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section);
|
||||
|
||||
INT IsSectionExistInVendorInfo(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section);
|
||||
|
||||
VOID BcmValidateNvmType(PMINI_ADAPTER Adapter);
|
||||
|
||||
VOID ConfigureEndPointTypesThroughEEPROM(PMINI_ADAPTER Adapter);
|
||||
|
||||
INT BcmGetFlashCSInfo(PMINI_ADAPTER Adapter);
|
||||
INT ReadDSDHeader(PMINI_ADAPTER Adapter, PDSD_HEADER psDSDHeader, FLASH2X_SECTION_VAL dsd);
|
||||
INT BcmGetActiveDSD(PMINI_ADAPTER Adapter);
|
||||
INT ReadISOHeader(PMINI_ADAPTER Adapter, PISO_HEADER psISOHeader, FLASH2X_SECTION_VAL IsoImage);
|
||||
INT BcmGetActiveISO(PMINI_ADAPTER Adapter);
|
||||
B_UINT8 IsOffsetWritable(PMINI_ADAPTER Adapter, UINT uiOffset);
|
||||
INT BcmGetFlash2xSectionalBitMap(PMINI_ADAPTER Adapter, PFLASH2X_BITMAP psFlash2xBitMap);
|
||||
|
||||
INT BcmFlash2xBulkWrite(
|
||||
|
@ -237,7 +180,6 @@ INT BcmFlash2xBulkRead(
|
|||
FLASH2X_SECTION_VAL eFlashSectionVal,
|
||||
UINT uiOffsetWithinSectionVal,
|
||||
UINT uiNumBytes);
|
||||
INT BcmGetSectionValEndOffset(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlashSectionVal);
|
||||
|
||||
INT BcmGetSectionValStartOffset(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlashSectionVal);
|
||||
|
||||
|
@ -250,34 +192,13 @@ INT BcmFlash2xCorruptSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSect
|
|||
INT BcmFlash2xWriteSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlashSectionVal);
|
||||
INT validateFlash2xReadWrite(PMINI_ADAPTER Adapter, PFLASH2X_READWRITE psFlash2xReadWrite);
|
||||
INT IsFlash2x(PMINI_ADAPTER Adapter);
|
||||
INT GetFlashBaseAddr(PMINI_ADAPTER Adapter);
|
||||
INT SaveHeaderIfPresent(PMINI_ADAPTER Adapter, PUCHAR pBuff, UINT uiSectAlignAddr);
|
||||
INT BcmCopySection(PMINI_ADAPTER Adapter,
|
||||
FLASH2X_SECTION_VAL SrcSection,
|
||||
FLASH2X_SECTION_VAL DstSection,
|
||||
UINT offset,
|
||||
UINT numOfBytes);
|
||||
|
||||
INT BcmDoChipSelect(PMINI_ADAPTER Adapter, UINT offset);
|
||||
INT BcmMakeFlashCSActive(PMINI_ADAPTER Adapter, UINT offset);
|
||||
INT ReadDSDSignature(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL dsd);
|
||||
INT ReadDSDPriority(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL dsd);
|
||||
FLASH2X_SECTION_VAL getHighestPriDSD(PMINI_ADAPTER Adapter);
|
||||
INT ReadISOSignature(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL iso);
|
||||
INT ReadISOPriority(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL iso);
|
||||
FLASH2X_SECTION_VAL getHighestPriISO(PMINI_ADAPTER Adapter);
|
||||
INT WriteToFlashWithoutSectorErase(PMINI_ADAPTER Adapter,
|
||||
PUINT pBuff,
|
||||
FLASH2X_SECTION_VAL eFlash2xSectionVal,
|
||||
UINT uiOffset,
|
||||
UINT uiNumBytes
|
||||
);
|
||||
|
||||
//UINT getNumOfSubSectionWithWRPermisson(PMINI_ADAPTER Adapter, SECTION_TYPE secType);
|
||||
BOOLEAN IsSectionExistInFlash(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section);
|
||||
INT IsSectionWritable(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL Section);
|
||||
INT CorruptDSDSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal);
|
||||
INT CorruptISOSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal);
|
||||
BOOLEAN IsNonCDLessDevice(PMINI_ADAPTER Adapter);
|
||||
|
||||
|
||||
|
@ -286,7 +207,6 @@ VOID OverrideServiceFlowParams(PMINI_ADAPTER Adapter,PUINT puiBuffer);
|
|||
int wrmaltWithLock (PMINI_ADAPTER Adapter, UINT uiAddress, PUINT pucBuff, size_t sSize);
|
||||
int rdmaltWithLock (PMINI_ADAPTER Adapter, UINT uiAddress, PUINT pucBuff, size_t sSize);
|
||||
|
||||
int rdmWithLock(PMINI_ADAPTER Adapter, UINT uiAddress, PCHAR pucBuff, size_t size);
|
||||
int wrmWithLock(PMINI_ADAPTER Adapter, UINT uiAddress, PCHAR pucBuff, size_t size);
|
||||
INT buffDnldVerify(PMINI_ADAPTER Adapter, unsigned char *mappedbuffer, unsigned int u32FirmwareLength,
|
||||
unsigned long u32StartingAddress);
|
||||
|
|
|
@ -4,8 +4,14 @@ This file contains the routines related to Quality of Service.
|
|||
*/
|
||||
#include "headers.h"
|
||||
|
||||
void EThCSGetPktInfo(PMINI_ADAPTER Adapter,PVOID pvEthPayload,PS_ETHCS_PKT_INFO pstEthCsPktInfo);
|
||||
BOOLEAN EThCSClassifyPkt(PMINI_ADAPTER Adapter,struct sk_buff* skb,PS_ETHCS_PKT_INFO pstEthCsPktInfo,S_CLASSIFIER_RULE *pstClassifierRule, B_UINT8 EthCSCupport);
|
||||
static void EThCSGetPktInfo(PMINI_ADAPTER Adapter,PVOID pvEthPayload,PS_ETHCS_PKT_INFO pstEthCsPktInfo);
|
||||
static BOOLEAN EThCSClassifyPkt(PMINI_ADAPTER Adapter,struct sk_buff* skb,PS_ETHCS_PKT_INFO pstEthCsPktInfo,S_CLASSIFIER_RULE *pstClassifierRule, B_UINT8 EthCSCupport);
|
||||
|
||||
static USHORT IpVersion4(PMINI_ADAPTER Adapter, struct iphdr *iphd,
|
||||
S_CLASSIFIER_RULE *pstClassifierRule );
|
||||
|
||||
static VOID PruneQueue(PMINI_ADAPTER Adapter, INT iIndex);
|
||||
|
||||
|
||||
/*******************************************************************
|
||||
* Function - MatchSrcIpAddress()
|
||||
|
@ -198,11 +204,10 @@ BOOLEAN MatchDestPort(S_CLASSIFIER_RULE *pstClassifierRule,USHORT ushDestPort)
|
|||
Compares IPV4 Ip address and port number
|
||||
@return Queue Index.
|
||||
*/
|
||||
USHORT IpVersion4(PMINI_ADAPTER Adapter, /**< Pointer to the driver control structure */
|
||||
struct iphdr *iphd, /**<Pointer to the IP Hdr of the packet*/
|
||||
static USHORT IpVersion4(PMINI_ADAPTER Adapter,
|
||||
struct iphdr *iphd,
|
||||
S_CLASSIFIER_RULE *pstClassifierRule )
|
||||
{
|
||||
//IPHeaderFormat *pIpHeader=NULL;
|
||||
xporthdr *xprt_hdr=NULL;
|
||||
BOOLEAN bClassificationSucceed=FALSE;
|
||||
|
||||
|
@ -318,9 +323,7 @@ is less than number of bytes in the queue. If so -
|
|||
drops packets from the Head till the number of bytes is
|
||||
less than or equal to max queue size for the queue.
|
||||
*/
|
||||
VOID PruneQueue(PMINI_ADAPTER Adapter,/**<Pointer to the driver control structure*/
|
||||
INT iIndex/**<Queue Index*/
|
||||
)
|
||||
static VOID PruneQueue(PMINI_ADAPTER Adapter, INT iIndex)
|
||||
{
|
||||
struct sk_buff* PacketToDrop=NULL;
|
||||
struct net_device_stats *netstats;
|
||||
|
@ -772,7 +775,10 @@ static BOOLEAN EthCSMatchVLANRules(S_CLASSIFIER_RULE *pstClassifierRule,struct s
|
|||
}
|
||||
|
||||
|
||||
BOOLEAN EThCSClassifyPkt(PMINI_ADAPTER Adapter,struct sk_buff* skb,PS_ETHCS_PKT_INFO pstEthCsPktInfo,S_CLASSIFIER_RULE *pstClassifierRule, B_UINT8 EthCSCupport)
|
||||
static BOOLEAN EThCSClassifyPkt(PMINI_ADAPTER Adapter,struct sk_buff* skb,
|
||||
PS_ETHCS_PKT_INFO pstEthCsPktInfo,
|
||||
S_CLASSIFIER_RULE *pstClassifierRule,
|
||||
B_UINT8 EthCSCupport)
|
||||
{
|
||||
BOOLEAN bClassificationSucceed = FALSE;
|
||||
bClassificationSucceed = EthCSMatchSrcMACAddress(pstClassifierRule,((ETH_HEADER_STRUC *)(skb->data))->au8SourceAddress);
|
||||
|
@ -802,9 +808,11 @@ BOOLEAN EThCSClassifyPkt(PMINI_ADAPTER Adapter,struct sk_buff* skb,PS_ETHCS_PKT_
|
|||
return bClassificationSucceed;
|
||||
}
|
||||
|
||||
void EThCSGetPktInfo(PMINI_ADAPTER Adapter,PVOID pvEthPayload,PS_ETHCS_PKT_INFO pstEthCsPktInfo)
|
||||
static void EThCSGetPktInfo(PMINI_ADAPTER Adapter,PVOID pvEthPayload,
|
||||
PS_ETHCS_PKT_INFO pstEthCsPktInfo)
|
||||
{
|
||||
USHORT u16Etype = ntohs(((ETH_HEADER_STRUC*)pvEthPayload)->u16Etype);
|
||||
|
||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV4_DBG, DBG_LVL_ALL, "EthCSGetPktInfo : Eth Hdr Type : %X\n",u16Etype);
|
||||
if(u16Etype > 0x5dc)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,56 @@
|
|||
#include "headers.h"
|
||||
|
||||
#define DWORD unsigned int
|
||||
|
||||
static INT BcmDoChipSelect(PMINI_ADAPTER Adapter, UINT offset);
|
||||
static INT BcmGetActiveDSD(PMINI_ADAPTER Adapter);
|
||||
static INT BcmGetActiveISO(PMINI_ADAPTER Adapter);
|
||||
static UINT BcmGetEEPROMSize(PMINI_ADAPTER Adapter);
|
||||
static INT BcmGetFlashCSInfo(PMINI_ADAPTER Adapter);
|
||||
static UINT BcmGetFlashSectorSize(PMINI_ADAPTER Adapter, UINT FlashSectorSizeSig, UINT FlashSectorSize);
|
||||
|
||||
static VOID BcmValidateNvmType(PMINI_ADAPTER Adapter);
|
||||
static INT BcmGetNvmSize(PMINI_ADAPTER Adapter);
|
||||
static UINT BcmGetFlashSize(PMINI_ADAPTER Adapter);
|
||||
static NVM_TYPE BcmGetNvmType(PMINI_ADAPTER Adapter);
|
||||
|
||||
static INT BcmGetSectionValEndOffset(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal);
|
||||
|
||||
static B_UINT8 IsOffsetWritable(PMINI_ADAPTER Adapter, UINT uiOffset);
|
||||
static INT IsSectionWritable(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL Section);
|
||||
static INT IsSectionExistInVendorInfo(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section);
|
||||
|
||||
static INT ReadDSDPriority(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL dsd);
|
||||
static INT ReadDSDSignature(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL dsd);
|
||||
static INT ReadISOPriority(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL iso);
|
||||
static INT ReadISOSignature(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL iso);
|
||||
|
||||
static INT CorruptDSDSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal);
|
||||
static INT CorruptISOSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal);
|
||||
static INT SaveHeaderIfPresent(PMINI_ADAPTER Adapter, PUCHAR pBuff, UINT uiSectAlignAddr);
|
||||
static INT WriteToFlashWithoutSectorErase(PMINI_ADAPTER Adapter, PUINT pBuff,
|
||||
FLASH2X_SECTION_VAL eFlash2xSectionVal,
|
||||
UINT uiOffset, UINT uiNumBytes);
|
||||
static FLASH2X_SECTION_VAL getHighestPriDSD(PMINI_ADAPTER Adapter);
|
||||
static FLASH2X_SECTION_VAL getHighestPriISO(PMINI_ADAPTER Adapter);
|
||||
|
||||
static INT BeceemFlashBulkRead(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
UINT uiNumBytes);
|
||||
|
||||
static INT BeceemFlashBulkWrite(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
UINT uiNumBytes,
|
||||
BOOLEAN bVerify);
|
||||
|
||||
static INT GetFlashBaseAddr(PMINI_ADAPTER Adapter);
|
||||
|
||||
static INT ReadBeceemEEPROMBulk(PMINI_ADAPTER Adapter,UINT dwAddress, UINT *pdwData, UINT dwNumData);
|
||||
|
||||
// Procedure: ReadEEPROMStatusRegister
|
||||
//
|
||||
// Description: Reads the standard EEPROM Status Register.
|
||||
|
@ -409,7 +459,7 @@ INT BeceemEEPROMBulkRead(
|
|||
// <FAILURE> - if failed.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
INT BeceemFlashBulkRead(
|
||||
static INT BeceemFlashBulkRead(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
|
@ -491,7 +541,7 @@ INT BeceemFlashBulkRead(
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
UINT BcmGetFlashSize(PMINI_ADAPTER Adapter)
|
||||
static UINT BcmGetFlashSize(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
if(IsFlash2x(Adapter))
|
||||
return (Adapter->psFlash2xCSInfo->OffsetFromDSDStartForDSDHeader + sizeof(DSD_HEADER));
|
||||
|
@ -514,7 +564,7 @@ UINT BcmGetFlashSize(PMINI_ADAPTER Adapter)
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
UINT BcmGetEEPROMSize(PMINI_ADAPTER Adapter)
|
||||
static UINT BcmGetEEPROMSize(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
UINT uiData = 0;
|
||||
UINT uiIndex = 0;
|
||||
|
@ -1108,7 +1158,7 @@ static ULONG BcmFlashUnProtectBlock(PMINI_ADAPTER Adapter,UINT uiOffset, UINT ui
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
INT BeceemFlashBulkWrite(
|
||||
static INT BeceemFlashBulkWrite(
|
||||
PMINI_ADAPTER Adapter,
|
||||
PUINT pBuffer,
|
||||
UINT uiOffset,
|
||||
|
@ -1613,11 +1663,8 @@ INT PropagateCalParamsFromFlashToMemory(PMINI_ADAPTER Adapter)
|
|||
}
|
||||
|
||||
pBuff = kmalloc(uiEepromSize, GFP_KERNEL);
|
||||
|
||||
if ( pBuff == NULL )
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(0 != BeceemNVMRead(Adapter,(PUINT)pBuff,uiCalStartAddr, uiEepromSize))
|
||||
{
|
||||
|
@ -2274,7 +2321,7 @@ INT BcmUpdateSectorSize(PMINI_ADAPTER Adapter,UINT uiSectorSize)
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
UINT BcmGetFlashSectorSize(PMINI_ADAPTER Adapter, UINT FlashSectorSizeSig, UINT FlashSectorSize)
|
||||
static UINT BcmGetFlashSectorSize(PMINI_ADAPTER Adapter, UINT FlashSectorSizeSig, UINT FlashSectorSize)
|
||||
{
|
||||
UINT uiSectorSize = 0;
|
||||
UINT uiSectorSig = 0;
|
||||
|
@ -2411,7 +2458,7 @@ INT BcmInitNVM(PMINI_ADAPTER ps_adapter)
|
|||
*/
|
||||
/***************************************************************************/
|
||||
|
||||
INT BcmGetNvmSize(PMINI_ADAPTER Adapter)
|
||||
static INT BcmGetNvmSize(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
if(Adapter->eNVMType == NVM_EEPROM)
|
||||
{
|
||||
|
@ -2435,7 +2482,7 @@ INT BcmGetNvmSize(PMINI_ADAPTER Adapter)
|
|||
// Returns:
|
||||
// <VOID>
|
||||
//-----------------------------------------------------------------------------
|
||||
VOID BcmValidateNvmType(PMINI_ADAPTER Adapter)
|
||||
static VOID BcmValidateNvmType(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
//
|
||||
|
@ -2681,7 +2728,7 @@ static INT ConvertEndianOfCSStructure(PFLASH_CS_INFO psFlashCSInfo)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
INT IsSectionExistInVendorInfo(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section)
|
||||
static INT IsSectionExistInVendorInfo(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL section)
|
||||
{
|
||||
return ( Adapter->uiVendorExtnFlag &&
|
||||
(Adapter->psFlash2xVendorInfo->VendorSection[section].AccessFlags & FLASH2X_SECTION_PRESENT) &&
|
||||
|
@ -2779,7 +2826,7 @@ static VOID UpdateVendorInfo(PMINI_ADAPTER Adapter)
|
|||
// <VOID>
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
INT BcmGetFlashCSInfo(PMINI_ADAPTER Adapter)
|
||||
static INT BcmGetFlashCSInfo(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
//FLASH_CS_INFO sFlashCsInfo = {0};
|
||||
|
||||
|
@ -2926,7 +2973,7 @@ INT BcmGetFlashCSInfo(PMINI_ADAPTER Adapter)
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
NVM_TYPE BcmGetNvmType(PMINI_ADAPTER Adapter)
|
||||
static NVM_TYPE BcmGetNvmType(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
UINT uiData = 0;
|
||||
|
||||
|
@ -3280,39 +3327,6 @@ INT BcmFlash2xBulkWrite(
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* ReadDSDHeader : Read the DSD map for the DSD Section val provided in Argument.
|
||||
* @Adapter : Beceem Private Data Structure
|
||||
* @psDSDHeader :Pointer of the buffer where header has to be read
|
||||
* @dsd :value of the Dyanmic DSD like DSD0 of DSD1 or DSD2
|
||||
*
|
||||
* Return Value:-
|
||||
* if suceeds return STATUS_SUCCESS or negative error code.
|
||||
**/
|
||||
INT ReadDSDHeader(PMINI_ADAPTER Adapter, PDSD_HEADER psDSDHeader, FLASH2X_SECTION_VAL dsd)
|
||||
{
|
||||
INT Status = STATUS_SUCCESS;
|
||||
|
||||
Status =BcmFlash2xBulkRead(Adapter,
|
||||
(PUINT)psDSDHeader,
|
||||
dsd,
|
||||
Adapter->psFlash2xCSInfo->OffsetFromDSDStartForDSDHeader,
|
||||
sizeof(DSD_HEADER));
|
||||
if(Status == STATUS_SUCCESS)
|
||||
{
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "DSDImageMagicNumber :0X%x", ntohl(psDSDHeader->DSDImageMagicNumber));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "DSDImageSize :0X%x ",ntohl(psDSDHeader->DSDImageSize));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "DSDImageCRC :0X%x",ntohl(psDSDHeader->DSDImageCRC));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "DSDImagePriority :0X%x",ntohl(psDSDHeader->DSDImagePriority));
|
||||
}
|
||||
else
|
||||
{
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_PRINTK, 0, 0,"DSD Header read is failed with status :%d", Status);
|
||||
}
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
/**
|
||||
* BcmGetActiveDSD : Set the Active DSD in Adapter Structure which has to be dumped in DDR
|
||||
* @Adapter :-Drivers private Data Structure
|
||||
|
@ -3321,7 +3335,7 @@ INT ReadDSDHeader(PMINI_ADAPTER Adapter, PDSD_HEADER psDSDHeader, FLASH2X_SECTIO
|
|||
* Return STATUS_SUCESS if get sucess in setting the right DSD else negaive error code
|
||||
*
|
||||
**/
|
||||
INT BcmGetActiveDSD(PMINI_ADAPTER Adapter)
|
||||
static INT BcmGetActiveDSD(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
FLASH2X_SECTION_VAL uiHighestPriDSD = 0 ;
|
||||
|
||||
|
@ -3359,39 +3373,6 @@ INT BcmGetActiveDSD(PMINI_ADAPTER Adapter)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* ReadISOUnReservedBytes : Read the ISO map for the ISO Section val provided in Argument.
|
||||
* @Adapter : Driver Private Data Structure
|
||||
* @psISOHeader :Pointer of the location where header has to be read
|
||||
* @IsoImage :value of the Dyanmic ISO like ISO_IMAGE1 of ISO_IMAGE2
|
||||
*
|
||||
* Return Value:-
|
||||
* if suceeds return STATUS_SUCCESS or negative error code.
|
||||
**/
|
||||
|
||||
INT ReadISOHeader(PMINI_ADAPTER Adapter, PISO_HEADER psISOHeader, FLASH2X_SECTION_VAL IsoImage)
|
||||
{
|
||||
INT Status = STATUS_SUCCESS;
|
||||
|
||||
Status = BcmFlash2xBulkRead(Adapter,
|
||||
(PUINT)psISOHeader,
|
||||
IsoImage,
|
||||
0,
|
||||
sizeof(ISO_HEADER));
|
||||
|
||||
if(Status == STATUS_SUCCESS)
|
||||
{
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "ISOImageMagicNumber :0X%x", ntohl(psISOHeader->ISOImageMagicNumber));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "ISOImageSize :0X%x ",ntohl(psISOHeader->ISOImageSize));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "ISOImageCRC :0X%x",ntohl(psISOHeader->ISOImageCRC));
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "ISOImagePriority :0X%x",ntohl(psISOHeader->ISOImagePriority));
|
||||
}
|
||||
else
|
||||
{
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_PRINTK, 0, 0, "ISO Header Read failed");
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
||||
/**
|
||||
* BcmGetActiveISO :- Set the Active ISO in Adapter Data Structue
|
||||
|
@ -3403,7 +3384,7 @@ INT ReadISOHeader(PMINI_ADAPTER Adapter, PISO_HEADER psISOHeader, FLASH2X_SECTIO
|
|||
*
|
||||
**/
|
||||
|
||||
INT BcmGetActiveISO(PMINI_ADAPTER Adapter)
|
||||
static INT BcmGetActiveISO(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
INT HighestPriISO = 0 ;
|
||||
|
@ -4501,7 +4482,7 @@ Return Value:-
|
|||
Success :- Base Address of the Flash
|
||||
**/
|
||||
|
||||
INT GetFlashBaseAddr(PMINI_ADAPTER Adapter)
|
||||
static INT GetFlashBaseAddr(PMINI_ADAPTER Adapter)
|
||||
{
|
||||
|
||||
UINT uiBaseAddr = 0;
|
||||
|
@ -4734,29 +4715,7 @@ INT SaveHeaderIfPresent(PMINI_ADAPTER Adapter, PUCHAR pBuff, UINT uiOffset)
|
|||
|
||||
return STATUS_SUCCESS ;
|
||||
}
|
||||
INT BcmMakeFlashCSActive(PMINI_ADAPTER Adapter, UINT offset)
|
||||
{
|
||||
UINT GPIOConfig = 0 ;
|
||||
|
||||
|
||||
if(Adapter->bFlashRawRead == FALSE)
|
||||
{
|
||||
//Applicable for Flash2.x
|
||||
if(IsFlash2x(Adapter) == FALSE)
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
if(offset/FLASH_PART_SIZE)
|
||||
{
|
||||
//bit[14..12] -> will select make Active CS1, CS2 or CS3
|
||||
// Select CS1, CS2 and CS3 (CS0 is dedicated pin)
|
||||
rdmalt(Adapter,FLASH_GPIO_CONFIG_REG, &GPIOConfig, 4);
|
||||
GPIOConfig |= (7 << 12);
|
||||
wrmalt(Adapter,FLASH_GPIO_CONFIG_REG, &GPIOConfig, 4);
|
||||
}
|
||||
|
||||
return STATUS_SUCCESS ;
|
||||
}
|
||||
/**
|
||||
BcmDoChipSelect : This will selcet the appropriate chip for writing.
|
||||
@Adapater :- Bcm Driver Private Data Structure
|
||||
|
@ -4764,7 +4723,7 @@ BcmDoChipSelect : This will selcet the appropriate chip for writing.
|
|||
OutPut:-
|
||||
Select the Appropriate chip and retrn status Sucess
|
||||
**/
|
||||
INT BcmDoChipSelect(PMINI_ADAPTER Adapter, UINT offset)
|
||||
static INT BcmDoChipSelect(PMINI_ADAPTER Adapter, UINT offset)
|
||||
{
|
||||
UINT FlashConfig = 0;
|
||||
INT ChipNum = 0;
|
||||
|
@ -5136,7 +5095,7 @@ INT IsSectionWritable(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL Section)
|
|||
return Status ;
|
||||
}
|
||||
|
||||
INT CorruptDSDSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal)
|
||||
static INT CorruptDSDSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal)
|
||||
{
|
||||
|
||||
PUCHAR pBuff = NULL;
|
||||
|
@ -5209,7 +5168,7 @@ INT CorruptDSDSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal)
|
|||
return STATUS_SUCCESS ;
|
||||
}
|
||||
|
||||
INT CorruptISOSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal)
|
||||
static INT CorruptISOSig(PMINI_ADAPTER Adapter, FLASH2X_SECTION_VAL eFlash2xSectionVal)
|
||||
{
|
||||
|
||||
PUCHAR pBuff = NULL;
|
||||
|
|
Загрузка…
Ссылка в новой задаче