12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Copyright (c) 2019 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.
- */
- //
- // DO NOT EDIT! This file is automatically generated
- // These definitions are tied to a particular hardware layout
- #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_
|