1 2 /* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 */ 16 17 18 19 20 21 22 23 24 25 26 #ifndef _VHT_SIG_B_MU40_INFO_H_ 27 #define _VHT_SIG_B_MU40_INFO_H_ 28 #if !defined(__ASSEMBLER__) 29 #endif 30 31 #define NUM_OF_DWORDS_VHT_SIG_B_MU40_INFO 2 32 33 34 struct vht_sig_b_mu40_info { 35 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN 36 uint32_t length : 17, 37 mcs : 4, 38 tail : 6, 39 reserved_0 : 2, 40 mu_user_number : 3; 41 uint32_t length_copy : 17, 42 mcs_copy : 4, 43 tail_copy : 6, 44 reserved_1 : 5; 45 #else 46 uint32_t mu_user_number : 3, 47 reserved_0 : 2, 48 tail : 6, 49 mcs : 4, 50 length : 17; 51 uint32_t reserved_1 : 5, 52 tail_copy : 6, 53 mcs_copy : 4, 54 length_copy : 17; 55 #endif 56 }; 57 58 59 60 61 #define VHT_SIG_B_MU40_INFO_LENGTH_OFFSET 0x00000000 62 #define VHT_SIG_B_MU40_INFO_LENGTH_LSB 0 63 #define VHT_SIG_B_MU40_INFO_LENGTH_MSB 16 64 #define VHT_SIG_B_MU40_INFO_LENGTH_MASK 0x0001ffff 65 66 67 68 69 #define VHT_SIG_B_MU40_INFO_MCS_OFFSET 0x00000000 70 #define VHT_SIG_B_MU40_INFO_MCS_LSB 17 71 #define VHT_SIG_B_MU40_INFO_MCS_MSB 20 72 #define VHT_SIG_B_MU40_INFO_MCS_MASK 0x001e0000 73 74 75 76 77 #define VHT_SIG_B_MU40_INFO_TAIL_OFFSET 0x00000000 78 #define VHT_SIG_B_MU40_INFO_TAIL_LSB 21 79 #define VHT_SIG_B_MU40_INFO_TAIL_MSB 26 80 #define VHT_SIG_B_MU40_INFO_TAIL_MASK 0x07e00000 81 82 83 84 85 #define VHT_SIG_B_MU40_INFO_RESERVED_0_OFFSET 0x00000000 86 #define VHT_SIG_B_MU40_INFO_RESERVED_0_LSB 27 87 #define VHT_SIG_B_MU40_INFO_RESERVED_0_MSB 28 88 #define VHT_SIG_B_MU40_INFO_RESERVED_0_MASK 0x18000000 89 90 91 92 93 #define VHT_SIG_B_MU40_INFO_MU_USER_NUMBER_OFFSET 0x00000000 94 #define VHT_SIG_B_MU40_INFO_MU_USER_NUMBER_LSB 29 95 #define VHT_SIG_B_MU40_INFO_MU_USER_NUMBER_MSB 31 96 #define VHT_SIG_B_MU40_INFO_MU_USER_NUMBER_MASK 0xe0000000 97 98 99 100 101 #define VHT_SIG_B_MU40_INFO_LENGTH_COPY_OFFSET 0x00000004 102 #define VHT_SIG_B_MU40_INFO_LENGTH_COPY_LSB 0 103 #define VHT_SIG_B_MU40_INFO_LENGTH_COPY_MSB 16 104 #define VHT_SIG_B_MU40_INFO_LENGTH_COPY_MASK 0x0001ffff 105 106 107 108 109 #define VHT_SIG_B_MU40_INFO_MCS_COPY_OFFSET 0x00000004 110 #define VHT_SIG_B_MU40_INFO_MCS_COPY_LSB 17 111 #define VHT_SIG_B_MU40_INFO_MCS_COPY_MSB 20 112 #define VHT_SIG_B_MU40_INFO_MCS_COPY_MASK 0x001e0000 113 114 115 116 117 #define VHT_SIG_B_MU40_INFO_TAIL_COPY_OFFSET 0x00000004 118 #define VHT_SIG_B_MU40_INFO_TAIL_COPY_LSB 21 119 #define VHT_SIG_B_MU40_INFO_TAIL_COPY_MSB 26 120 #define VHT_SIG_B_MU40_INFO_TAIL_COPY_MASK 0x07e00000 121 122 123 124 125 #define VHT_SIG_B_MU40_INFO_RESERVED_1_OFFSET 0x00000004 126 #define VHT_SIG_B_MU40_INFO_RESERVED_1_LSB 27 127 #define VHT_SIG_B_MU40_INFO_RESERVED_1_MSB 31 128 #define VHT_SIG_B_MU40_INFO_RESERVED_1_MASK 0xf8000000 129 130 131 132 #endif 133