xref: /wlan-driver/fw-api/hw/peach/v2/rx_start_param.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1 /*
2  * Copyright (c) 2023-2024 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_START_PARAM_H_
19 #define _RX_START_PARAM_H_
20 
21 #define NUM_OF_DWORDS_RX_START_PARAM 1
22 
23 struct rx_start_param {
24 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
25              uint32_t pkt_type                                                :  4,
26                       reserved_0a                                             : 12,
27                       remaining_rx_time                                       : 16;
28 #else
29              uint32_t remaining_rx_time                                       : 16,
30                       reserved_0a                                             : 12,
31                       pkt_type                                                :  4;
32 #endif
33 };
34 
35 #define RX_START_PARAM_PKT_TYPE_OFFSET                                              0x00000000
36 #define RX_START_PARAM_PKT_TYPE_LSB                                                 0
37 #define RX_START_PARAM_PKT_TYPE_MSB                                                 3
38 #define RX_START_PARAM_PKT_TYPE_MASK                                                0x0000000f
39 
40 #define RX_START_PARAM_RESERVED_0A_OFFSET                                           0x00000000
41 #define RX_START_PARAM_RESERVED_0A_LSB                                              4
42 #define RX_START_PARAM_RESERVED_0A_MSB                                              15
43 #define RX_START_PARAM_RESERVED_0A_MASK                                             0x0000fff0
44 
45 #define RX_START_PARAM_REMAINING_RX_TIME_OFFSET                                     0x00000000
46 #define RX_START_PARAM_REMAINING_RX_TIME_LSB                                        16
47 #define RX_START_PARAM_REMAINING_RX_TIME_MSB                                        31
48 #define RX_START_PARAM_REMAINING_RX_TIME_MASK                                       0xffff0000
49 
50 #endif
51