xref: /wlan-driver/fw-api/hw/qcn9224/v2/service_info.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1 
2 /* Copyright (c) 2022, 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 _SERVICE_INFO_H_
27 #define _SERVICE_INFO_H_
28 #if !defined(__ASSEMBLER__)
29 #endif
30 
31 #define NUM_OF_DWORDS_SERVICE_INFO 1
32 
33 
34 struct service_info {
35 #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
36              uint32_t scrambler_seed                                          :  7,
37                       reserved                                                :  1,
38                       sig_b_crc_user                                          :  8,
39                       reserved_1                                              : 16;
40 #else
41              uint32_t reserved_1                                              : 16,
42                       sig_b_crc_user                                          :  8,
43                       reserved                                                :  1,
44                       scrambler_seed                                          :  7;
45 #endif
46 };
47 
48 
49 
50 
51 #define SERVICE_INFO_SCRAMBLER_SEED_OFFSET                                          0x00000000
52 #define SERVICE_INFO_SCRAMBLER_SEED_LSB                                             0
53 #define SERVICE_INFO_SCRAMBLER_SEED_MSB                                             6
54 #define SERVICE_INFO_SCRAMBLER_SEED_MASK                                            0x0000007f
55 
56 
57 
58 
59 #define SERVICE_INFO_RESERVED_OFFSET                                                0x00000000
60 #define SERVICE_INFO_RESERVED_LSB                                                   7
61 #define SERVICE_INFO_RESERVED_MSB                                                   7
62 #define SERVICE_INFO_RESERVED_MASK                                                  0x00000080
63 
64 
65 
66 
67 #define SERVICE_INFO_SIG_B_CRC_USER_OFFSET                                          0x00000000
68 #define SERVICE_INFO_SIG_B_CRC_USER_LSB                                             8
69 #define SERVICE_INFO_SIG_B_CRC_USER_MSB                                             15
70 #define SERVICE_INFO_SIG_B_CRC_USER_MASK                                            0x0000ff00
71 
72 
73 
74 
75 #define SERVICE_INFO_RESERVED_1_OFFSET                                              0x00000000
76 #define SERVICE_INFO_RESERVED_1_LSB                                                 16
77 #define SERVICE_INFO_RESERVED_1_MSB                                                 31
78 #define SERVICE_INFO_RESERVED_1_MASK                                                0xffff0000
79 
80 
81 
82 #endif
83