From 330505e20153961bd47cd7719d662ed0b27967e0 Mon Sep 17 00:00:00 2001 From: spuligil Date: Thu, 14 Mar 2019 12:01:49 -0700 Subject: [PATCH] fw-api: CL 6707989 - update fw common interface files Change-Id: I813f09deab0ada3f231ee96fa20ccd34cb72a33e HTT: add rx antenna mask to htt_rx_ind_hl_rx_desc_t CRs-Fixed: 2262693 --- fw/htt.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/fw/htt.h b/fw/htt.h index 6c52a37ea2..4d78aaaa54 100644 --- a/fw/htt.h +++ b/fw/htt.h @@ -176,9 +176,10 @@ * 3.59 Add HTT_RXDMA_HOST_BUF_RING2 def * 3.60 Add HTT_T2H_MSG_TYPE_PEER_STATS_IND def * 3.61 Add rx offset fields to HTT_H2T_MSG_TYPE_RX_RING_SELECTION_CFG msg + * 3.62 Add antenna mask to reserved space in htt_rx_ind_hl_rx_desc_t */ #define HTT_CURRENT_VERSION_MAJOR 3 -#define HTT_CURRENT_VERSION_MINOR 61 +#define HTT_CURRENT_VERSION_MINOR 62 #define HTT_NUM_TX_FRAG_DESC 1024 @@ -6930,7 +6931,7 @@ A_COMPILE_TIME_ASSERT(HTT_RX_IND_hdr_size_quantum, #define HTT_RX_IND_HL_BYTES \ (HTT_RX_IND_HDR_BYTES + \ - 4 /* single FW rx MSDU descriptor, plus padding */ + \ + 4 /* single FW rx MSDU descriptor */ + \ 4 /* single MPDU range information element */) #define HTT_RX_IND_HL_SIZE32 (HTT_RX_IND_HL_BYTES >> 2) @@ -6967,6 +6968,14 @@ struct htt_rx_ind_hl_rx_desc_t { udp: 1, reserved: 1; } flags; + /* sa_ant_matrix + * For cases where a single rx chain has options to be connected to + * different rx antennas, show which rx antennas were in use during + * receipt of a given PPDU. + * This sa_ant_matrix provides a bitmask of the antennas used while + * receiving this frame. + */ + A_UINT8 sa_ant_matrix; }; #define HTT_RX_IND_HL_RX_DESC_VER_OFFSET \