1  
2  /* Copyright (c) 2021, 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 _MACRX_ABORT_REQUEST_INFO_H_
27  #define _MACRX_ABORT_REQUEST_INFO_H_
28  #if !defined(__ASSEMBLER__)
29  #endif
30  
31  #define NUM_OF_WORDS_MACRX_ABORT_REQUEST_INFO 1
32  
33  
34  struct macrx_abort_request_info {
35  #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
36               uint16_t macrx_abort_reason                                      :  8,
37                        reserved_0                                              :  8;
38  #else
39               uint16_t reserved_0                                              :  8,
40                        macrx_abort_reason                                      :  8;
41  #endif
42  };
43  
44  
45  
46  
47  #define MACRX_ABORT_REQUEST_INFO_MACRX_ABORT_REASON_OFFSET                          0x00000000
48  #define MACRX_ABORT_REQUEST_INFO_MACRX_ABORT_REASON_LSB                             0
49  #define MACRX_ABORT_REQUEST_INFO_MACRX_ABORT_REASON_MSB                             7
50  #define MACRX_ABORT_REQUEST_INFO_MACRX_ABORT_REASON_MASK                            0x000000ff
51  
52  
53  
54  
55  #define MACRX_ABORT_REQUEST_INFO_RESERVED_0_OFFSET                                  0x00000000
56  #define MACRX_ABORT_REQUEST_INFO_RESERVED_0_LSB                                     8
57  #define MACRX_ABORT_REQUEST_INFO_RESERVED_0_MSB                                     15
58  #define MACRX_ABORT_REQUEST_INFO_RESERVED_0_MASK                                    0x0000ff00
59  
60  
61  
62  #endif
63