
Currently TWT works only in 11ax. Add enable_twt_in_11n ini to support TWT in 11n mode. False: DO not support TWT in 11n mode True: Support TWT in 11n mode Change-Id: If1011c9a24b9c285199d7b0e60e5614d6c1f8786 CRs-Fixed: 3185100
231 lines
5.2 KiB
C
231 lines
5.2 KiB
C
/*
|
|
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* DOC: This file contains TWT config related definitions
|
|
*/
|
|
|
|
#ifndef __CFG_TWT_H_
|
|
#define __CFG_TWT_H_
|
|
|
|
#if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
|
|
/*
|
|
* <ini>
|
|
* twt_requestor - twt requestor.
|
|
* @Min: 0
|
|
* @Max: 1
|
|
* @Default: 1
|
|
*
|
|
* This cfg is used to store twt requestor config.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: Internal
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_TWT_REQUESTOR CFG_INI_BOOL( \
|
|
"twt_requestor", \
|
|
1, \
|
|
"TWT requestor")
|
|
/*
|
|
* <ini>
|
|
* twt_responder - twt responder.
|
|
* @Min: 0
|
|
* @Max: 1
|
|
* @Default: 1
|
|
*
|
|
* This cfg is used to store twt responder config.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: Internal
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_TWT_RESPONDER CFG_INI_BOOL( \
|
|
"twt_responder", \
|
|
1, \
|
|
"TWT responder")
|
|
|
|
/*
|
|
* <ini>
|
|
* enable_twt - Enable Target Wake Time support.
|
|
* @Min: 0
|
|
* @Max: 1
|
|
* @Default: 1
|
|
*
|
|
* This ini is used to enable or disable TWT support.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: External
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_ENABLE_TWT CFG_INI_BOOL( \
|
|
"enable_twt", \
|
|
1, \
|
|
"TWT support")
|
|
|
|
/*
|
|
* <ini>
|
|
* twt_congestion_timeout - Target wake time congestion timeout.
|
|
* @Min: 0
|
|
* @Max: 10000
|
|
* @Default: 100
|
|
*
|
|
* STA uses this timer to continuously monitor channel congestion levels to
|
|
* decide whether to start or stop TWT. This ini is used to configure the
|
|
* target wake time congestion timeout value in the units of milliseconds.
|
|
* A value of Zero indicates that this is a host triggered TWT and all the
|
|
* necessary configuration for TWT will be directed from the host.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: External
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_TWT_CONGESTION_TIMEOUT CFG_INI_UINT( \
|
|
"twt_congestion_timeout", \
|
|
0, \
|
|
10000, \
|
|
100, \
|
|
CFG_VALUE_OR_DEFAULT, \
|
|
"twt congestion timeout")
|
|
/*
|
|
* <ini>
|
|
* twt_bcast_req_resp_config - To enable broadcast twt requestor and responder.
|
|
* @Min: 0 Disable the extended twt capability
|
|
* @Max: 3
|
|
* @Default: 1
|
|
*
|
|
* This cfg is used to configure the broadcast TWT requestor and responder.
|
|
* Bitmap for enabling the broadcast twt requestor and responder.
|
|
* BIT 0: Enable/Disable broadcast twt requestor.
|
|
* BIT 1: Enable/Disable broadcast twt responder.
|
|
* BIT 2-31: Reserved
|
|
*
|
|
* Related: CFG_ENABLE_TWT
|
|
* Related: CFG_TWT_RESPONDER
|
|
* Related: CFG_TWT_REQUESTOR
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: External
|
|
*
|
|
* </ini>
|
|
*/
|
|
/* defines to extract the requestor/responder capabilities from cfg */
|
|
#define TWT_BCAST_REQ_INDEX 0
|
|
#define TWT_BCAST_REQ_BITS 1
|
|
#define TWT_BCAST_RES_INDEX 1
|
|
#define TWT_BCAST_RES_BITS 1
|
|
|
|
#define CFG_BCAST_TWT_REQ_RESP CFG_INI_UINT( \
|
|
"twt_bcast_req_resp_config", \
|
|
0, \
|
|
3, \
|
|
1, \
|
|
CFG_VALUE_OR_DEFAULT, \
|
|
"BROADCAST TWT CAPABILITY")
|
|
|
|
#define CFG_TWT_GET_BCAST_REQ(_bcast_conf) \
|
|
QDF_GET_BITS(_bcast_conf, \
|
|
TWT_BCAST_REQ_INDEX, \
|
|
TWT_BCAST_REQ_BITS)
|
|
|
|
#define CFG_TWT_GET_BCAST_RES(_bcast_conf) \
|
|
QDF_GET_BITS(_bcast_conf, \
|
|
TWT_BCAST_RES_INDEX, \
|
|
TWT_BCAST_RES_BITS)
|
|
|
|
/*
|
|
* <ini>
|
|
* enable_twt_24ghz - Enable Target wake time when STA is connected on 2.4Ghz
|
|
* band.
|
|
* @Min: 0
|
|
* @Max: 1
|
|
* @Default: 1
|
|
*
|
|
* This ini is used to enable/disable the host TWT when STA is connected to AP
|
|
* in 2.4Ghz band.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Supported Feature: 11AX
|
|
*
|
|
* Usage: External
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_ENABLE_TWT_24GHZ CFG_INI_BOOL( \
|
|
"enable_twt_24ghz", \
|
|
true, \
|
|
"enable twt in 2.4Ghz band")
|
|
|
|
#define CFG_HE_FLEX_TWT_SCHED CFG_BOOL( \
|
|
"he_flex_twt_sched", \
|
|
0, \
|
|
"HE Flex Twt Sched")
|
|
|
|
/*
|
|
* <ini>
|
|
* enable_twt_in_11n - Enable TWT support in 11n mode
|
|
* @MIN: 0
|
|
* @MAX: 1
|
|
* @Default: 0
|
|
*
|
|
* This ini is used to enable/disable TWT support 11n mode.
|
|
* Generally by default TWT support present from HE capable
|
|
* devices but if this ini is enabled then it will support
|
|
* partially from 11n mode itself.
|
|
*
|
|
* Related: NA
|
|
*
|
|
* Usage: External
|
|
*
|
|
* </ini>
|
|
*/
|
|
#define CFG_TWT_ENABLE_IN_11N CFG_INI_BOOL( \
|
|
"enable_twt_in_11n", \
|
|
false, \
|
|
"enable twt support in 11n mode")
|
|
|
|
#define CFG_TWT_ALL \
|
|
CFG(CFG_ENABLE_TWT) \
|
|
CFG(CFG_TWT_REQUESTOR) \
|
|
CFG(CFG_TWT_RESPONDER) \
|
|
CFG(CFG_TWT_CONGESTION_TIMEOUT) \
|
|
CFG(CFG_BCAST_TWT_REQ_RESP) \
|
|
CFG(CFG_ENABLE_TWT_24GHZ) \
|
|
CFG(CFG_TWT_ENABLE_IN_11N)
|
|
#elif !defined(WLAN_SUPPORT_TWT) && !defined(WLAN_TWT_CONV_SUPPORTED)
|
|
#define CFG_TWT_ALL
|
|
#endif
|
|
#endif /* __CFG_TWT_H_ */
|