| /* |
| * Copyright (c) 2011-2012,2014-2015 The Linux Foundation. All rights reserved. |
| * |
| * Previously licensed under the ISC license by Qualcomm Atheros, Inc. |
| * |
| * |
| * Permission to use, copy, modify, and/or distribute this software for |
| * any purpose with or without fee is hereby granted, provided that the |
| * above copyright notice and this permission notice appear in all |
| * copies. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
| * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
| * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| * PERFORMANCE OF THIS SOFTWARE. |
| */ |
| |
| /* |
| * This file was originally distributed by Qualcomm Atheros, Inc. |
| * under proprietary terms before Copyright ownership was assigned |
| * to the Linux Foundation. |
| */ |
| |
| /* |
| * |
| * Author: Kevin Nguyen |
| * Date: 04/09/02 |
| * History:- |
| * 04/09/02 Created. |
| * -------------------------------------------------------------------- |
| * |
| */ |
| |
| #ifndef __CFGAPI_H |
| #define __CFGAPI_H |
| |
| #include <sirCommon.h> |
| #include <sirParams.h> |
| #include <sirMacProtDef.h> |
| #include <wniApi.h> |
| #include <aniGlobal.h> |
| |
| |
| /*---------------------------------------------------------------------*/ |
| /* CFG definitions */ |
| /*---------------------------------------------------------------------*/ |
| |
| // CFG status |
| typedef enum eCfgStatusTypes { |
| CFG_INCOMPLETE, |
| CFG_SUCCESS, |
| CFG_FAILURE |
| } tCfgStatusTypes; |
| |
| // WEP key mapping table row structure |
| typedef struct |
| { |
| tANI_U8 keyMappingAddr[SIR_MAC_ADDR_LENGTH]; |
| tANI_U32 wepOn; |
| tANI_U8 key[SIR_MAC_KEY_LENGTH]; |
| tANI_U32 status; |
| } tCfgWepKeyEntry; |
| |
| |
| /*---------------------------------------------------------------------*/ |
| /* CFG function prototypes */ |
| /*---------------------------------------------------------------------*/ |
| |
| tANI_U32 cfgNeedRestart(tpAniSirGlobal pMac, tANI_U16 cfgId) ; |
| tANI_U32 cfgNeedReload(tpAniSirGlobal pMac, tANI_U16 cfgId) ; |
| |
| /// CFG initialization function |
| void wlan_cfgInit(tpAniSirGlobal); |
| |
| /// Process host message |
| void cfgProcessMbMsg(tpAniSirGlobal, tSirMbMsg*); |
| |
| /// Set integer parameter value |
| tSirRetStatus cfgSetInt(tpAniSirGlobal, tANI_U16, tANI_U32); |
| |
| /// Check if the parameter is valid |
| tSirRetStatus cfgCheckValid(tpAniSirGlobal, tANI_U16); |
| |
| /// Get integer parameter value |
| tSirRetStatus wlan_cfgGetInt(tpAniSirGlobal, tANI_U16, tANI_U32*); |
| |
| /// Set string parameter value |
| tSirRetStatus cfgSetStr(tpAniSirGlobal, tANI_U16, tANI_U8*, tANI_U32); |
| |
| tSirRetStatus cfgSetStrNotify(tpAniSirGlobal, tANI_U16, tANI_U8*, tANI_U32, int); |
| |
| //Cfg Download function for Prima or Integrated solutions. |
| void processCfgDownloadReq(tpAniSirGlobal); |
| |
| /// Get string parameter value |
| tSirRetStatus wlan_cfgGetStr(tpAniSirGlobal, tANI_U16, tANI_U8*, tANI_U32*); |
| |
| /// Get string parameter maximum length |
| tSirRetStatus wlan_cfgGetStrMaxLen(tpAniSirGlobal, tANI_U16, tANI_U32*); |
| |
| /// Get string parameter maximum length |
| tSirRetStatus wlan_cfgGetStrLen(tpAniSirGlobal, tANI_U16, tANI_U32*); |
| |
| /// Get the regulatory tx power on given channel |
| tPowerdBm cfgGetRegulatoryMaxTransmitPower(tpAniSirGlobal pMac, tANI_U8 channel); |
| |
| /// Dump CFG data to memory |
| void cfgDump(tANI_U32*); |
| |
| /// Save parameters with P flag set |
| void cfgSave(void); |
| |
| /// Get capability info |
| extern tSirRetStatus cfgGetCapabilityInfo(tpAniSirGlobal pMac, tANI_U16 *pCap,tpPESession psessionEntry); |
| |
| /// Set capability info |
| extern void cfgSetCapabilityInfo(tpAniSirGlobal, tANI_U16); |
| |
| /* Clean up CFG module */ |
| void cfgCleanup(tpAniSirGlobal pMac); |
| |
| extern tANI_U8 *gCfgParamName[]; |
| |
| uint8_t* cfg_get_vendor_ie_ptr_from_oui(tpAniSirGlobal mac_ctx, |
| uint8_t *oui, |
| uint8_t oui_size, |
| uint8_t *ie, |
| uint16_t ie_len); |
| |
| #endif /* __CFGAPI_H */ |