blob: 3b7d560b39036e163630de07628524f45345623b [file] [log] [blame]
/*
* Copyright (c) 2011-2013, 2015-2016 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: Sandesh Goel
* Date: 02/09/03
* History:-
* 04/09/02 Created.
* --------------------------------------------------------------------
*
*/
#ifndef __CFGGLOBAL_H
#define __CFGGLOBAL_H
#include "sirCommon.h"
#include "sirTypes.h"
#include "wni_cfg.h"
#define CFG_MAX_NUM_STA SIR_MAX_NUM_STA_IN_IBSS
#define CFG_MAX_STATIC_STRING 70
#define CFG_MAX_STR_LEN 256 // as the number of channels grows, 128 is not big enough
/*--------------------------------------------------------------------*/
/* Configuration Control Structure */
/*--------------------------------------------------------------------*/
typedef struct
{
tANI_U32 control;
} tCfgCtl;
struct cfgstatic_string {
uint16_t cfg_id;
uint8_t max_len;
uint8_t length;
uint8_t data[255];
};
struct cgstatic {
uint16_t cfg_id;
uint32_t control;
uint32_t cfg_imin;
uint32_t cfg_imax;
uint32_t cfg_ival;
void *p_str_data;
};
typedef struct sAniSirCfg
{
// CFG module status
tANI_U8 gCfgStatus;
tCfgCtl *gCfgEntry;
tANI_U32 *gCfgIBufMin;
tANI_U32 *gCfgIBufMax;
tANI_U32 *gCfgIBuf;
tANI_U8 *gCfgSBuf;
tANI_U16 gCfgMaxIBufSize;
tANI_U16 gCfgMaxSBufSize;
// Static buffer for string parameter (must be word-aligned)
tANI_U8 *gSBuffer;
// Message parameter list buffer (enough for largest possible response)
} tAniSirCfg, *tpAniSirCfg;
#endif