fw-api: Add support for TBPPDU TLVs in monitor mode
Add structure definations for COMMON_USER TLV and USER_INFO TLV. Required to parse these fields in monitor mode for TBPPDU frames. CRs-Fixed: 2369833 Change-Id: Ie37bc6c15674559f690c33e660c7b3ddd269febb
此提交包含在:
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 2018 The Linux Foundation. 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.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _PHYRX_COMMON_USER_INFO_H_
|
||||
#define _PHYRX_COMMON_USER_INFO_H_
|
||||
#if !defined(__ASSEMBLER__)
|
||||
#endif
|
||||
|
||||
|
||||
// ################ START SUMMARY #################
|
||||
//
|
||||
// Dword Fields
|
||||
// 0 receive_duration[15:0], reserved_0a[31:16]
|
||||
//
|
||||
// ################ END SUMMARY #################
|
||||
|
||||
#define NUM_OF_DWORDS_PHYRX_COMMON_USER_INFO 1
|
||||
|
||||
struct phyrx_common_user_info {
|
||||
uint32_t receive_duration : 16, //[15:0]
|
||||
reserved_0a : 16; //[31:16]
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
receive_duration
|
||||
|
||||
The remaining receive duration of this PPDU in the
|
||||
medium (in us).
|
||||
|
||||
The timing reference point is the reception by the MAC
|
||||
of this TLV. The value shall be accurate to within 2us
|
||||
|
||||
<legal all>
|
||||
|
||||
reserved_0a
|
||||
|
||||
<legal 0>
|
||||
*/
|
||||
|
||||
|
||||
/* Description PHYRX_COMMON_USER_INFO_0_RECEIVE_DURATION
|
||||
|
||||
The remaining receive duration of this PPDU in the
|
||||
medium (in us).
|
||||
|
||||
The timing reference point is the reception by the MAC
|
||||
of this TLV. The value shall be accurate to within 2us
|
||||
|
||||
<legal all>
|
||||
*/
|
||||
#define PHYRX_COMMON_USER_INFO_0_RECEIVE_DURATION_OFFSET 0x00000000
|
||||
#define PHYRX_COMMON_USER_INFO_0_RECEIVE_DURATION_LSB 0
|
||||
#define PHYRX_COMMON_USER_INFO_0_RECEIVE_DURATION_MASK 0x0000ffff
|
||||
|
||||
/* Description PHYRX_COMMON_USER_INFO_0_RESERVED_0A
|
||||
|
||||
<legal 0>
|
||||
*/
|
||||
#define PHYRX_COMMON_USER_INFO_0_RESERVED_0A_OFFSET 0x00000000
|
||||
#define PHYRX_COMMON_USER_INFO_0_RESERVED_0A_LSB 16
|
||||
#define PHYRX_COMMON_USER_INFO_0_RESERVED_0A_MASK 0xffff0000
|
||||
|
||||
|
||||
#endif // _PHYRX_COMMON_USER_INFO_H_
|
新增問題並參考
封鎖使用者