1 2 /* 3 * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved. 4 * 5 * Permission to use, copy, modify, and/or distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 */ 17 18 19 20 #ifndef _MLO_STA_ID_DETAILS_H_ 21 #define _MLO_STA_ID_DETAILS_H_ 22 #if !defined(__ASSEMBLER__) 23 #endif 24 25 #define NUM_OF_WORDS_MLO_STA_ID_DETAILS 1 26 27 struct mlo_sta_id_details { 28 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN 29 uint16_t nstr_mlo_sta_id : 10, 30 block_self_ml_sync : 1, 31 block_partner_ml_sync : 1, 32 nstr_mlo_sta_id_valid : 1, 33 reserved_0a : 3; 34 #else 35 uint16_t reserved_0a : 3, 36 nstr_mlo_sta_id_valid : 1, 37 block_partner_ml_sync : 1, 38 block_self_ml_sync : 1, 39 nstr_mlo_sta_id : 10; 40 #endif 41 }; 42 43 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_OFFSET 0x00000000 44 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_LSB 0 45 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_MSB 9 46 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_MASK 0x000003ff 47 48 #define MLO_STA_ID_DETAILS_BLOCK_SELF_ML_SYNC_OFFSET 0x00000000 49 #define MLO_STA_ID_DETAILS_BLOCK_SELF_ML_SYNC_LSB 10 50 #define MLO_STA_ID_DETAILS_BLOCK_SELF_ML_SYNC_MSB 10 51 #define MLO_STA_ID_DETAILS_BLOCK_SELF_ML_SYNC_MASK 0x00000400 52 53 #define MLO_STA_ID_DETAILS_BLOCK_PARTNER_ML_SYNC_OFFSET 0x00000000 54 #define MLO_STA_ID_DETAILS_BLOCK_PARTNER_ML_SYNC_LSB 11 55 #define MLO_STA_ID_DETAILS_BLOCK_PARTNER_ML_SYNC_MSB 11 56 #define MLO_STA_ID_DETAILS_BLOCK_PARTNER_ML_SYNC_MASK 0x00000800 57 58 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_VALID_OFFSET 0x00000000 59 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_VALID_LSB 12 60 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_VALID_MSB 12 61 #define MLO_STA_ID_DETAILS_NSTR_MLO_STA_ID_VALID_MASK 0x00001000 62 63 #define MLO_STA_ID_DETAILS_RESERVED_0A_OFFSET 0x00000000 64 #define MLO_STA_ID_DETAILS_RESERVED_0A_LSB 13 65 #define MLO_STA_ID_DETAILS_RESERVED_0A_MSB 15 66 #define MLO_STA_ID_DETAILS_RESERVED_0A_MASK 0x0000e000 67 68 #endif 69