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
This commit is contained in:
81
hw/qca6290/11ax/v1/phyrx_common_user_info.h
Normal file
81
hw/qca6290/11ax/v1/phyrx_common_user_info.h
Normal file
@@ -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_
|
63
hw/qca6290/11ax/v1/phyrx_user_info.h
Normal file
63
hw/qca6290/11ax/v1/phyrx_user_info.h
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* 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_USER_INFO_H_
|
||||||
|
#define _PHYRX_USER_INFO_H_
|
||||||
|
#if !defined(__ASSEMBLER__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "receive_user_info.h"
|
||||||
|
|
||||||
|
// ################ START SUMMARY #################
|
||||||
|
//
|
||||||
|
// Dword Fields
|
||||||
|
// 0-2 struct receive_user_info receive_user_info_details;
|
||||||
|
//
|
||||||
|
// ################ END SUMMARY #################
|
||||||
|
|
||||||
|
#define NUM_OF_DWORDS_PHYRX_USER_INFO 3
|
||||||
|
|
||||||
|
struct phyrx_user_info {
|
||||||
|
struct receive_user_info receive_user_info_details;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
struct receive_user_info receive_user_info_details
|
||||||
|
|
||||||
|
Overview of receive parameters that the MAC needs to
|
||||||
|
prepend to every received MSDU/MPDU.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
PHY RX gathers this info for the MAC
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000000
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000004
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000008
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _PHYRX_USER_INFO_H_
|
81
hw/qca6290/11ax/v2/phyrx_common_user_info.h
Normal file
81
hw/qca6290/11ax/v2/phyrx_common_user_info.h
Normal file
@@ -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_
|
63
hw/qca6290/11ax/v2/phyrx_user_info.h
Normal file
63
hw/qca6290/11ax/v2/phyrx_user_info.h
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* 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_USER_INFO_H_
|
||||||
|
#define _PHYRX_USER_INFO_H_
|
||||||
|
#if !defined(__ASSEMBLER__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "receive_user_info.h"
|
||||||
|
|
||||||
|
// ################ START SUMMARY #################
|
||||||
|
//
|
||||||
|
// Dword Fields
|
||||||
|
// 0-2 struct receive_user_info receive_user_info_details;
|
||||||
|
//
|
||||||
|
// ################ END SUMMARY #################
|
||||||
|
|
||||||
|
#define NUM_OF_DWORDS_PHYRX_USER_INFO 3
|
||||||
|
|
||||||
|
struct phyrx_user_info {
|
||||||
|
struct receive_user_info receive_user_info_details;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
struct receive_user_info receive_user_info_details
|
||||||
|
|
||||||
|
Overview of receive parameters that the MAC needs to
|
||||||
|
prepend to every received MSDU/MPDU.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
PHY RX gathers this info for the MAC
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000000
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000004
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000008
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _PHYRX_USER_INFO_H_
|
81
hw/qca6390/v1/phyrx_common_user_info.h
Normal file
81
hw/qca6390/v1/phyrx_common_user_info.h
Normal file
@@ -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_
|
63
hw/qca6390/v1/phyrx_user_info.h
Normal file
63
hw/qca6390/v1/phyrx_user_info.h
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* 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_USER_INFO_H_
|
||||||
|
#define _PHYRX_USER_INFO_H_
|
||||||
|
#if !defined(__ASSEMBLER__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "receive_user_info.h"
|
||||||
|
|
||||||
|
// ################ START SUMMARY #################
|
||||||
|
//
|
||||||
|
// Dword Fields
|
||||||
|
// 0-2 struct receive_user_info receive_user_info_details;
|
||||||
|
//
|
||||||
|
// ################ END SUMMARY #################
|
||||||
|
|
||||||
|
#define NUM_OF_DWORDS_PHYRX_USER_INFO 3
|
||||||
|
|
||||||
|
struct phyrx_user_info {
|
||||||
|
struct receive_user_info receive_user_info_details;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
struct receive_user_info receive_user_info_details
|
||||||
|
|
||||||
|
Overview of receive parameters that the MAC needs to
|
||||||
|
prepend to every received MSDU/MPDU.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
PHY RX gathers this info for the MAC
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000000
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_0_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000004
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_1_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_OFFSET 0x00000008
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_LSB 0
|
||||||
|
#define PHYRX_USER_INFO_2_RECEIVE_USER_INFO_RECEIVE_USER_INFO_DETAILS_MASK 0xffffffff
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _PHYRX_USER_INFO_H_
|
Reference in New Issue
Block a user