qcacmn: Set TX flow queue for TCP ack

If TX data is TCP ACK, configure TX flow index 3 in
SW2TCL data cmd ring descriptor.

Change-Id: Ibd08b13ba8f0481aa11cd9c3dc54a49cd73674fb
CRs-Fixed: 3368303
Cette révision appartient à :
Jinwei Chen
2022-12-07 00:16:45 -08:00
révisé par Madan Koyyalamudi
Parent d93db0f70e
révision b4f81eace0
7 fichiers modifiés avec 248 ajouts et 4 suppressions

Voir le fichier

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2021-2023 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
@@ -327,6 +327,8 @@ struct wlan_srng_cfg {
* @notify_frame_support: flag indicating capability to mark notify frames
* @is_handle_invalid_decap_type_disabled: flag to indicate if invalid decap
* type handling is disabled
* @tx_pkt_inspect_for_ilp: flag to indicate if TX packet inspection for HW
* based ILP feature is enabled
*/
struct wlan_cfg_dp_soc_ctxt {
int num_int_ctxts;
@@ -516,6 +518,9 @@ struct wlan_cfg_dp_soc_ctxt {
uint8_t napi_scale_factor;
uint8_t notify_frame_support;
bool is_handle_invalid_decap_type_disabled;
#ifdef DP_TX_PACKET_INSPECT_FOR_ILP
bool tx_pkt_inspect_for_ilp;
#endif
};
/**