xref: /wlan-driver/fw-api/hw/peach/v1/rx_trig_info.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1 /*
2  * Copyright (c) 2023 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 #ifndef _RX_TRIG_INFO_H_
19 #define _RX_TRIG_INFO_H_
20 
21 #define NUM_OF_DWORDS_RX_TRIG_INFO 2
22 
23 struct rx_trig_info {
24 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
25              uint32_t rx_trigger_frame_type                                   :  2,
26                       trigger_resp_type                                       :  3,
27                       reserved_0                                              : 27;
28              uint32_t ppdu_duration                                           : 16,
29                       unique_destination_id                                   : 16;
30 #else
31              uint32_t reserved_0                                              : 27,
32                       trigger_resp_type                                       :  3,
33                       rx_trigger_frame_type                                   :  2;
34              uint32_t unique_destination_id                                   : 16,
35                       ppdu_duration                                           : 16;
36 #endif
37 };
38 
39 #define RX_TRIG_INFO_RX_TRIGGER_FRAME_TYPE_OFFSET                                   0x00000000
40 #define RX_TRIG_INFO_RX_TRIGGER_FRAME_TYPE_LSB                                      0
41 #define RX_TRIG_INFO_RX_TRIGGER_FRAME_TYPE_MSB                                      1
42 #define RX_TRIG_INFO_RX_TRIGGER_FRAME_TYPE_MASK                                     0x00000003
43 
44 #define RX_TRIG_INFO_TRIGGER_RESP_TYPE_OFFSET                                       0x00000000
45 #define RX_TRIG_INFO_TRIGGER_RESP_TYPE_LSB                                          2
46 #define RX_TRIG_INFO_TRIGGER_RESP_TYPE_MSB                                          4
47 #define RX_TRIG_INFO_TRIGGER_RESP_TYPE_MASK                                         0x0000001c
48 
49 #define RX_TRIG_INFO_RESERVED_0_OFFSET                                              0x00000000
50 #define RX_TRIG_INFO_RESERVED_0_LSB                                                 5
51 #define RX_TRIG_INFO_RESERVED_0_MSB                                                 31
52 #define RX_TRIG_INFO_RESERVED_0_MASK                                                0xffffffe0
53 
54 #define RX_TRIG_INFO_PPDU_DURATION_OFFSET                                           0x00000004
55 #define RX_TRIG_INFO_PPDU_DURATION_LSB                                              0
56 #define RX_TRIG_INFO_PPDU_DURATION_MSB                                              15
57 #define RX_TRIG_INFO_PPDU_DURATION_MASK                                             0x0000ffff
58 
59 #define RX_TRIG_INFO_UNIQUE_DESTINATION_ID_OFFSET                                   0x00000004
60 #define RX_TRIG_INFO_UNIQUE_DESTINATION_ID_LSB                                      16
61 #define RX_TRIG_INFO_UNIQUE_DESTINATION_ID_MSB                                      31
62 #define RX_TRIG_INFO_UNIQUE_DESTINATION_ID_MASK                                     0xffff0000
63 
64 #endif
65