1*5113495bSYour Name /* 2*5113495bSYour Name * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved. 3*5113495bSYour Name * 4*5113495bSYour Name * Permission to use, copy, modify, and/or distribute this software for any 5*5113495bSYour Name * purpose with or without fee is hereby granted, provided that the above 6*5113495bSYour Name * copyright notice and this permission notice appear in all copies. 7*5113495bSYour Name * 8*5113495bSYour Name * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9*5113495bSYour Name * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10*5113495bSYour Name * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11*5113495bSYour Name * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12*5113495bSYour Name * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13*5113495bSYour Name * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14*5113495bSYour Name * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15*5113495bSYour Name */ 16*5113495bSYour Name 17*5113495bSYour Name 18*5113495bSYour Name #ifndef _RESPONSE_START_STATUS_H_ 19*5113495bSYour Name #define _RESPONSE_START_STATUS_H_ 20*5113495bSYour Name 21*5113495bSYour Name #define NUM_OF_DWORDS_RESPONSE_START_STATUS 2 22*5113495bSYour Name 23*5113495bSYour Name struct response_start_status { 24*5113495bSYour Name #ifndef WIFI_BIT_ORDER_BIG_ENDIAN 25*5113495bSYour Name uint32_t generated_response : 3, 26*5113495bSYour Name __reserved_g_0012 : 2, 27*5113495bSYour Name trig_response_related : 1, 28*5113495bSYour Name response_sta_count : 7, 29*5113495bSYour Name reserved : 19; 30*5113495bSYour Name uint32_t phy_ppdu_id : 16, 31*5113495bSYour Name sw_peer_id : 16; 32*5113495bSYour Name #else 33*5113495bSYour Name uint32_t reserved : 19, 34*5113495bSYour Name response_sta_count : 7, 35*5113495bSYour Name trig_response_related : 1, 36*5113495bSYour Name __reserved_g_0012 : 2, 37*5113495bSYour Name generated_response : 3; 38*5113495bSYour Name uint32_t sw_peer_id : 16, 39*5113495bSYour Name phy_ppdu_id : 16; 40*5113495bSYour Name #endif 41*5113495bSYour Name }; 42*5113495bSYour Name 43*5113495bSYour Name #define RESPONSE_START_STATUS_GENERATED_RESPONSE_OFFSET 0x00000000 44*5113495bSYour Name #define RESPONSE_START_STATUS_GENERATED_RESPONSE_LSB 0 45*5113495bSYour Name #define RESPONSE_START_STATUS_GENERATED_RESPONSE_MSB 2 46*5113495bSYour Name #define RESPONSE_START_STATUS_GENERATED_RESPONSE_MASK 0x00000007 47*5113495bSYour Name 48*5113495bSYour Name #define RESPONSE_START_STATUS_TRIG_RESPONSE_RELATED_OFFSET 0x00000000 49*5113495bSYour Name #define RESPONSE_START_STATUS_TRIG_RESPONSE_RELATED_LSB 5 50*5113495bSYour Name #define RESPONSE_START_STATUS_TRIG_RESPONSE_RELATED_MSB 5 51*5113495bSYour Name #define RESPONSE_START_STATUS_TRIG_RESPONSE_RELATED_MASK 0x00000020 52*5113495bSYour Name 53*5113495bSYour Name #define RESPONSE_START_STATUS_RESPONSE_STA_COUNT_OFFSET 0x00000000 54*5113495bSYour Name #define RESPONSE_START_STATUS_RESPONSE_STA_COUNT_LSB 6 55*5113495bSYour Name #define RESPONSE_START_STATUS_RESPONSE_STA_COUNT_MSB 12 56*5113495bSYour Name #define RESPONSE_START_STATUS_RESPONSE_STA_COUNT_MASK 0x00001fc0 57*5113495bSYour Name 58*5113495bSYour Name #define RESPONSE_START_STATUS_RESERVED_OFFSET 0x00000000 59*5113495bSYour Name #define RESPONSE_START_STATUS_RESERVED_LSB 13 60*5113495bSYour Name #define RESPONSE_START_STATUS_RESERVED_MSB 31 61*5113495bSYour Name #define RESPONSE_START_STATUS_RESERVED_MASK 0xffffe000 62*5113495bSYour Name 63*5113495bSYour Name #define RESPONSE_START_STATUS_PHY_PPDU_ID_OFFSET 0x00000004 64*5113495bSYour Name #define RESPONSE_START_STATUS_PHY_PPDU_ID_LSB 0 65*5113495bSYour Name #define RESPONSE_START_STATUS_PHY_PPDU_ID_MSB 15 66*5113495bSYour Name #define RESPONSE_START_STATUS_PHY_PPDU_ID_MASK 0x0000ffff 67*5113495bSYour Name 68*5113495bSYour Name #define RESPONSE_START_STATUS_SW_PEER_ID_OFFSET 0x00000004 69*5113495bSYour Name #define RESPONSE_START_STATUS_SW_PEER_ID_LSB 16 70*5113495bSYour Name #define RESPONSE_START_STATUS_SW_PEER_ID_MSB 31 71*5113495bSYour Name #define RESPONSE_START_STATUS_SW_PEER_ID_MASK 0xffff0000 72*5113495bSYour Name 73*5113495bSYour Name #endif 74