Merge "Add TID-to-Link mapping capability fields"

This commit is contained in:
Mahesh KKV
2023-02-16 01:27:52 +00:00
committed by Android (Google) Code Review
4 changed files with 10 additions and 0 deletions

View File

@@ -93,6 +93,7 @@ interface IWifiChip {
P2P_RAND_MAC = (1 << 5) /* 32 */,
WIGIG = (1 << 6) /* 64 */,
SET_AFC_CHANNEL_ALLOWANCE = (1 << 7) /* 128 */,
T2LM_NEGOTIATION = (1 << 8) /* 256 */,
}
@VintfStability
parcelable ChipConcurrencyCombinationLimit {

View File

@@ -78,6 +78,10 @@ interface IWifiChip {
* for AFC purposes.
*/
SET_AFC_CHANNEL_ALLOWANCE = 1 << 7,
/**
* Chip supports Tid-To-Link mapping negotiation.
*/
T2LM_NEGOTIATION = 1 << 8,
}
/**

View File

@@ -39,4 +39,5 @@ parcelable ConnectionCapabilities {
int maxNumberTxSpatialStreams;
int maxNumberRxSpatialStreams;
android.hardware.wifi.supplicant.LegacyMode legacyMode;
boolean apTidToLinkMapNegotiationSupported;
}

View File

@@ -44,4 +44,8 @@ parcelable ConnectionCapabilities {
* detailed network mode for legacy network
*/
LegacyMode legacyMode;
/**
* Indicates the AP support for TID-to-link mapping negotiation.
*/
boolean apTidToLinkMapNegotiationSupported;
}