|
@@ -2049,7 +2049,8 @@ static inline void wma_fill_in_wapi_key_params(
|
|
|
static bool
|
|
|
wma_skip_bip_key_set(tp_wma_handle wma_handle, uint32_t key_cipher)
|
|
|
{
|
|
|
- if ((key_cipher == WMI_CIPHER_AES_GMAC) &&
|
|
|
+ if ((key_cipher == WMI_CIPHER_AES_GMAC ||
|
|
|
+ key_cipher == WMI_CIPHER_BIP_GMAC_256) &&
|
|
|
!wmi_service_enabled(wma_handle->wmi_handle,
|
|
|
wmi_service_gmac_offload_support))
|
|
|
return true;
|
|
@@ -3896,7 +3897,8 @@ int wma_process_bip(tp_wma_handle wma_handle,
|
|
|
|
|
|
if (iface->key.key_cipher == WMI_CIPHER_AES_CMAC) {
|
|
|
mmie_size = cds_get_mmie_size();
|
|
|
- } else if (iface->key.key_cipher == WMI_CIPHER_AES_GMAC) {
|
|
|
+ } else if (iface->key.key_cipher == WMI_CIPHER_AES_GMAC ||
|
|
|
+ iface->key.key_cipher == WMI_CIPHER_BIP_GMAC_256) {
|
|
|
mmie_size = cds_get_gmac_mmie_size();
|
|
|
} else {
|
|
|
WMA_LOGE(FL("Invalid key cipher %d"), iface->key.key_cipher);
|
|
@@ -3945,6 +3947,7 @@ int wma_process_bip(tp_wma_handle wma_handle,
|
|
|
break;
|
|
|
|
|
|
case WMI_CIPHER_AES_GMAC:
|
|
|
+ case WMI_CIPHER_BIP_GMAC_256:
|
|
|
if (wmi_service_enabled(wma_handle->wmi_handle,
|
|
|
wmi_service_gmac_offload_support)) {
|
|
|
/*
|