1 2 /* 3 * Copyright (c) 2022, 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 21 22 23 24 25 26 27 #ifndef _PHYTX_ABORT_REQUEST_INFO_H_ 28 #define _PHYTX_ABORT_REQUEST_INFO_H_ 29 #if !defined(__ASSEMBLER__) 30 #endif 31 32 #define NUM_OF_WORDS_PHYTX_ABORT_REQUEST_INFO 1 33 34 35 struct phytx_abort_request_info { 36 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN 37 uint16_t phytx_abort_reason : 8, // [7:0] 38 user_number : 6, // [13:8] 39 reserved : 2; // [15:14] 40 #else 41 uint16_t reserved : 2, // [15:14] 42 user_number : 6, // [13:8] 43 phytx_abort_reason : 8; // [7:0] 44 #endif 45 }; 46 47 48 49 50 #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_OFFSET 0x00000000 51 #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_LSB 0 52 #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_MSB 7 53 #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_MASK 0x000000ff 54 55 56 57 58 #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_OFFSET 0x00000000 59 #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_LSB 8 60 #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_MSB 13 61 #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_MASK 0x00003f00 62 63 64 65 66 #define PHYTX_ABORT_REQUEST_INFO_RESERVED_OFFSET 0x00000000 67 #define PHYTX_ABORT_REQUEST_INFO_RESERVED_LSB 14 68 #define PHYTX_ABORT_REQUEST_INFO_RESERVED_MSB 15 69 #define PHYTX_ABORT_REQUEST_INFO_RESERVED_MASK 0x0000c000 70 71 72 73 74 #endif 75