diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2009-10-16 11:32:16 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-27 16:48:29 -0400 |
commit | 9e66e701d0e42efd548f0f7249af8a56f8e07b67 (patch) | |
tree | ae4019c91ef359a4d91e6db059bec6ce260da187 /drivers/net/wireless/libertas/host.h | |
parent | b8fcf590939f0aa24d43bdbdae7c963f31ba90bd (diff) |
libertas: cleanup host.h and hostcmd.h
Also remove some unused definitions and make tab usage consistent.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/host.h')
-rw-r--r-- | drivers/net/wireless/libertas/host.h | 1001 |
1 files changed, 849 insertions, 152 deletions
diff --git a/drivers/net/wireless/libertas/host.h b/drivers/net/wireless/libertas/host.h index c055daabea13..45cd7f1e5937 100644 --- a/drivers/net/wireless/libertas/host.h +++ b/drivers/net/wireless/libertas/host.h | |||
@@ -1,202 +1,189 @@ | |||
1 | /** | 1 | /** |
2 | * This file contains definitions of WLAN commands. | 2 | * This file function prototypes, data structure |
3 | * and definitions for all the host/station commands | ||
3 | */ | 4 | */ |
4 | 5 | ||
5 | #ifndef _LBS_HOST_H_ | 6 | #ifndef _LBS_HOST_H_ |
6 | #define _LBS_HOST_H_ | 7 | #define _LBS_HOST_H_ |
7 | 8 | ||
8 | /** PUBLIC DEFINITIONS */ | 9 | #include "11d.h" |
9 | #define DEFAULT_AD_HOC_CHANNEL 6 | ||
10 | #define DEFAULT_AD_HOC_CHANNEL_A 36 | ||
11 | 10 | ||
12 | #define CMD_OPTION_WAITFORRSP 0x0002 | 11 | #define DEFAULT_AD_HOC_CHANNEL 6 |
12 | |||
13 | #define CMD_OPTION_WAITFORRSP 0x0002 | ||
13 | 14 | ||
14 | /** Host command IDs */ | 15 | /** Host command IDs */ |
15 | 16 | ||
16 | /* Return command are almost always the same as the host command, but with | 17 | /* Return command are almost always the same as the host command, but with |
17 | * bit 15 set high. There are a few exceptions, though... | 18 | * bit 15 set high. There are a few exceptions, though... |
18 | */ | 19 | */ |
19 | #define CMD_RET(cmd) (0x8000 | cmd) | 20 | #define CMD_RET(cmd) (0x8000 | cmd) |
20 | 21 | ||
21 | /* Return command convention exceptions: */ | 22 | /* Return command convention exceptions: */ |
22 | #define CMD_RET_802_11_ASSOCIATE 0x8012 | 23 | #define CMD_RET_802_11_ASSOCIATE 0x8012 |
23 | 24 | ||
24 | /* Command codes */ | 25 | /* Command codes */ |
25 | #define CMD_GET_HW_SPEC 0x0003 | 26 | #define CMD_GET_HW_SPEC 0x0003 |
26 | #define CMD_EEPROM_UPDATE 0x0004 | 27 | #define CMD_EEPROM_UPDATE 0x0004 |
27 | #define CMD_802_11_RESET 0x0005 | 28 | #define CMD_802_11_RESET 0x0005 |
28 | #define CMD_802_11_SCAN 0x0006 | 29 | #define CMD_802_11_SCAN 0x0006 |
29 | #define CMD_802_11_GET_LOG 0x000b | 30 | #define CMD_802_11_GET_LOG 0x000b |
30 | #define CMD_MAC_MULTICAST_ADR 0x0010 | 31 | #define CMD_MAC_MULTICAST_ADR 0x0010 |
31 | #define CMD_802_11_AUTHENTICATE 0x0011 | 32 | #define CMD_802_11_AUTHENTICATE 0x0011 |
32 | #define CMD_802_11_EEPROM_ACCESS 0x0059 | 33 | #define CMD_802_11_EEPROM_ACCESS 0x0059 |
33 | #define CMD_802_11_ASSOCIATE 0x0050 | 34 | #define CMD_802_11_ASSOCIATE 0x0050 |
34 | #define CMD_802_11_SET_WEP 0x0013 | 35 | #define CMD_802_11_SET_WEP 0x0013 |
35 | #define CMD_802_11_GET_STAT 0x0014 | 36 | #define CMD_802_11_GET_STAT 0x0014 |
36 | #define CMD_802_3_GET_STAT 0x0015 | 37 | #define CMD_802_3_GET_STAT 0x0015 |
37 | #define CMD_802_11_SNMP_MIB 0x0016 | 38 | #define CMD_802_11_SNMP_MIB 0x0016 |
38 | #define CMD_MAC_REG_MAP 0x0017 | 39 | #define CMD_MAC_REG_MAP 0x0017 |
39 | #define CMD_BBP_REG_MAP 0x0018 | 40 | #define CMD_BBP_REG_MAP 0x0018 |
40 | #define CMD_MAC_REG_ACCESS 0x0019 | 41 | #define CMD_MAC_REG_ACCESS 0x0019 |
41 | #define CMD_BBP_REG_ACCESS 0x001a | 42 | #define CMD_BBP_REG_ACCESS 0x001a |
42 | #define CMD_RF_REG_ACCESS 0x001b | 43 | #define CMD_RF_REG_ACCESS 0x001b |
43 | #define CMD_802_11_RADIO_CONTROL 0x001c | 44 | #define CMD_802_11_RADIO_CONTROL 0x001c |
44 | #define CMD_802_11_RF_CHANNEL 0x001d | 45 | #define CMD_802_11_RF_CHANNEL 0x001d |
45 | #define CMD_802_11_RF_TX_POWER 0x001e | 46 | #define CMD_802_11_RF_TX_POWER 0x001e |
46 | #define CMD_802_11_RSSI 0x001f | 47 | #define CMD_802_11_RSSI 0x001f |
47 | #define CMD_802_11_RF_ANTENNA 0x0020 | 48 | #define CMD_802_11_RF_ANTENNA 0x0020 |
48 | #define CMD_802_11_PS_MODE 0x0021 | 49 | #define CMD_802_11_PS_MODE 0x0021 |
49 | #define CMD_802_11_DATA_RATE 0x0022 | 50 | #define CMD_802_11_DATA_RATE 0x0022 |
50 | #define CMD_RF_REG_MAP 0x0023 | 51 | #define CMD_RF_REG_MAP 0x0023 |
51 | #define CMD_802_11_DEAUTHENTICATE 0x0024 | 52 | #define CMD_802_11_DEAUTHENTICATE 0x0024 |
52 | #define CMD_802_11_REASSOCIATE 0x0025 | 53 | #define CMD_802_11_REASSOCIATE 0x0025 |
53 | #define CMD_MAC_CONTROL 0x0028 | 54 | #define CMD_MAC_CONTROL 0x0028 |
54 | #define CMD_802_11_AD_HOC_START 0x002b | 55 | #define CMD_802_11_AD_HOC_START 0x002b |
55 | #define CMD_802_11_AD_HOC_JOIN 0x002c | 56 | #define CMD_802_11_AD_HOC_JOIN 0x002c |
56 | #define CMD_802_11_QUERY_TKIP_REPLY_CNTRS 0x002e | 57 | #define CMD_802_11_QUERY_TKIP_REPLY_CNTRS 0x002e |
57 | #define CMD_802_11_ENABLE_RSN 0x002f | 58 | #define CMD_802_11_ENABLE_RSN 0x002f |
58 | #define CMD_802_11_SET_AFC 0x003c | 59 | #define CMD_802_11_SET_AFC 0x003c |
59 | #define CMD_802_11_GET_AFC 0x003d | 60 | #define CMD_802_11_GET_AFC 0x003d |
60 | #define CMD_802_11_DEEP_SLEEP 0x003e | 61 | #define CMD_802_11_DEEP_SLEEP 0x003e |
61 | #define CMD_802_11_AD_HOC_STOP 0x0040 | 62 | #define CMD_802_11_AD_HOC_STOP 0x0040 |
62 | #define CMD_802_11_HOST_SLEEP_CFG 0x0043 | 63 | #define CMD_802_11_HOST_SLEEP_CFG 0x0043 |
63 | #define CMD_802_11_WAKEUP_CONFIRM 0x0044 | 64 | #define CMD_802_11_WAKEUP_CONFIRM 0x0044 |
64 | #define CMD_802_11_HOST_SLEEP_ACTIVATE 0x0045 | 65 | #define CMD_802_11_HOST_SLEEP_ACTIVATE 0x0045 |
65 | #define CMD_802_11_BEACON_STOP 0x0049 | 66 | #define CMD_802_11_BEACON_STOP 0x0049 |
66 | #define CMD_802_11_MAC_ADDRESS 0x004d | 67 | #define CMD_802_11_MAC_ADDRESS 0x004d |
67 | #define CMD_802_11_LED_GPIO_CTRL 0x004e | 68 | #define CMD_802_11_LED_GPIO_CTRL 0x004e |
68 | #define CMD_802_11_EEPROM_ACCESS 0x0059 | 69 | #define CMD_802_11_EEPROM_ACCESS 0x0059 |
69 | #define CMD_802_11_BAND_CONFIG 0x0058 | 70 | #define CMD_802_11_BAND_CONFIG 0x0058 |
70 | #define CMD_GSPI_BUS_CONFIG 0x005a | 71 | #define CMD_GSPI_BUS_CONFIG 0x005a |
71 | #define CMD_802_11D_DOMAIN_INFO 0x005b | 72 | #define CMD_802_11D_DOMAIN_INFO 0x005b |
72 | #define CMD_802_11_KEY_MATERIAL 0x005e | 73 | #define CMD_802_11_KEY_MATERIAL 0x005e |
73 | #define CMD_802_11_SLEEP_PARAMS 0x0066 | 74 | #define CMD_802_11_SLEEP_PARAMS 0x0066 |
74 | #define CMD_802_11_INACTIVITY_TIMEOUT 0x0067 | 75 | #define CMD_802_11_INACTIVITY_TIMEOUT 0x0067 |
75 | #define CMD_802_11_SLEEP_PERIOD 0x0068 | 76 | #define CMD_802_11_SLEEP_PERIOD 0x0068 |
76 | #define CMD_802_11_TPC_CFG 0x0072 | 77 | #define CMD_802_11_TPC_CFG 0x0072 |
77 | #define CMD_802_11_PA_CFG 0x0073 | 78 | #define CMD_802_11_PA_CFG 0x0073 |
78 | #define CMD_802_11_FW_WAKE_METHOD 0x0074 | 79 | #define CMD_802_11_FW_WAKE_METHOD 0x0074 |
79 | #define CMD_802_11_SUBSCRIBE_EVENT 0x0075 | 80 | #define CMD_802_11_SUBSCRIBE_EVENT 0x0075 |
80 | #define CMD_802_11_RATE_ADAPT_RATESET 0x0076 | 81 | #define CMD_802_11_RATE_ADAPT_RATESET 0x0076 |
81 | #define CMD_802_11_TX_RATE_QUERY 0x007f | 82 | #define CMD_802_11_TX_RATE_QUERY 0x007f |
82 | #define CMD_GET_TSF 0x0080 | 83 | #define CMD_GET_TSF 0x0080 |
83 | #define CMD_BT_ACCESS 0x0087 | 84 | #define CMD_BT_ACCESS 0x0087 |
84 | #define CMD_FWT_ACCESS 0x0095 | 85 | #define CMD_FWT_ACCESS 0x0095 |
85 | #define CMD_802_11_MONITOR_MODE 0x0098 | 86 | #define CMD_802_11_MONITOR_MODE 0x0098 |
86 | #define CMD_MESH_ACCESS 0x009b | 87 | #define CMD_MESH_ACCESS 0x009b |
87 | #define CMD_MESH_CONFIG_OLD 0x00a3 | 88 | #define CMD_MESH_CONFIG_OLD 0x00a3 |
88 | #define CMD_MESH_CONFIG 0x00ac | 89 | #define CMD_MESH_CONFIG 0x00ac |
89 | #define CMD_SET_BOOT2_VER 0x00a5 | 90 | #define CMD_SET_BOOT2_VER 0x00a5 |
90 | #define CMD_FUNC_INIT 0x00a9 | 91 | #define CMD_FUNC_INIT 0x00a9 |
91 | #define CMD_FUNC_SHUTDOWN 0x00aa | 92 | #define CMD_FUNC_SHUTDOWN 0x00aa |
92 | #define CMD_802_11_BEACON_CTRL 0x00b0 | 93 | #define CMD_802_11_BEACON_CTRL 0x00b0 |
93 | 94 | ||
94 | /* For the IEEE Power Save */ | 95 | /* For the IEEE Power Save */ |
95 | #define CMD_SUBCMD_ENTER_PS 0x0030 | 96 | #define CMD_SUBCMD_ENTER_PS 0x0030 |
96 | #define CMD_SUBCMD_EXIT_PS 0x0031 | 97 | #define CMD_SUBCMD_EXIT_PS 0x0031 |
97 | #define CMD_SUBCMD_SLEEP_CONFIRMED 0x0034 | 98 | #define CMD_SUBCMD_SLEEP_CONFIRMED 0x0034 |
98 | #define CMD_SUBCMD_FULL_POWERDOWN 0x0035 | 99 | #define CMD_SUBCMD_FULL_POWERDOWN 0x0035 |
99 | #define CMD_SUBCMD_FULL_POWERUP 0x0036 | 100 | #define CMD_SUBCMD_FULL_POWERUP 0x0036 |
100 | 101 | ||
101 | #define CMD_ENABLE_RSN 0x0001 | 102 | #define CMD_ENABLE_RSN 0x0001 |
102 | #define CMD_DISABLE_RSN 0x0000 | 103 | #define CMD_DISABLE_RSN 0x0000 |
103 | 104 | ||
104 | #define CMD_ACT_GET 0x0000 | 105 | #define CMD_ACT_GET 0x0000 |
105 | #define CMD_ACT_SET 0x0001 | 106 | #define CMD_ACT_SET 0x0001 |
106 | #define CMD_ACT_GET_AES 0x0002 | ||
107 | #define CMD_ACT_SET_AES 0x0003 | ||
108 | #define CMD_ACT_REMOVE_AES 0x0004 | ||
109 | 107 | ||
110 | /* Define action or option for CMD_802_11_SET_WEP */ | 108 | /* Define action or option for CMD_802_11_SET_WEP */ |
111 | #define CMD_ACT_ADD 0x0002 | 109 | #define CMD_ACT_ADD 0x0002 |
112 | #define CMD_ACT_REMOVE 0x0004 | 110 | #define CMD_ACT_REMOVE 0x0004 |
113 | #define CMD_ACT_USE_DEFAULT 0x0008 | ||
114 | |||
115 | #define CMD_TYPE_WEP_40_BIT 0x01 | ||
116 | #define CMD_TYPE_WEP_104_BIT 0x02 | ||
117 | 111 | ||
118 | #define CMD_NUM_OF_WEP_KEYS 4 | 112 | #define CMD_TYPE_WEP_40_BIT 0x01 |
113 | #define CMD_TYPE_WEP_104_BIT 0x02 | ||
119 | 114 | ||
120 | #define CMD_WEP_KEY_INDEX_MASK 0x3fff | 115 | #define CMD_NUM_OF_WEP_KEYS 4 |
121 | 116 | ||
122 | /* Define action or option for CMD_802_11_RESET */ | 117 | #define CMD_WEP_KEY_INDEX_MASK 0x3fff |
123 | #define CMD_ACT_HALT 0x0003 | ||
124 | 118 | ||
125 | /* Define action or option for CMD_802_11_SCAN */ | 119 | /* Define action or option for CMD_802_11_SCAN */ |
126 | #define CMD_BSS_TYPE_BSS 0x0001 | 120 | #define CMD_BSS_TYPE_BSS 0x0001 |
127 | #define CMD_BSS_TYPE_IBSS 0x0002 | 121 | #define CMD_BSS_TYPE_IBSS 0x0002 |
128 | #define CMD_BSS_TYPE_ANY 0x0003 | 122 | #define CMD_BSS_TYPE_ANY 0x0003 |
129 | 123 | ||
130 | /* Define action or option for CMD_802_11_SCAN */ | 124 | /* Define action or option for CMD_802_11_SCAN */ |
131 | #define CMD_SCAN_TYPE_ACTIVE 0x0000 | 125 | #define CMD_SCAN_TYPE_ACTIVE 0x0000 |
132 | #define CMD_SCAN_TYPE_PASSIVE 0x0001 | 126 | #define CMD_SCAN_TYPE_PASSIVE 0x0001 |
133 | 127 | ||
134 | #define CMD_SCAN_RADIO_TYPE_BG 0 | 128 | #define CMD_SCAN_RADIO_TYPE_BG 0 |
135 | 129 | ||
136 | #define CMD_SCAN_PROBE_DELAY_TIME 0 | 130 | #define CMD_SCAN_PROBE_DELAY_TIME 0 |
137 | 131 | ||
138 | /* Define action or option for CMD_MAC_CONTROL */ | 132 | /* Define action or option for CMD_MAC_CONTROL */ |
139 | #define CMD_ACT_MAC_RX_ON 0x0001 | 133 | #define CMD_ACT_MAC_RX_ON 0x0001 |
140 | #define CMD_ACT_MAC_TX_ON 0x0002 | 134 | #define CMD_ACT_MAC_TX_ON 0x0002 |
141 | #define CMD_ACT_MAC_LOOPBACK_ON 0x0004 | 135 | #define CMD_ACT_MAC_LOOPBACK_ON 0x0004 |
142 | #define CMD_ACT_MAC_WEP_ENABLE 0x0008 | 136 | #define CMD_ACT_MAC_WEP_ENABLE 0x0008 |
143 | #define CMD_ACT_MAC_INT_ENABLE 0x0010 | 137 | #define CMD_ACT_MAC_INT_ENABLE 0x0010 |
144 | #define CMD_ACT_MAC_MULTICAST_ENABLE 0x0020 | 138 | #define CMD_ACT_MAC_MULTICAST_ENABLE 0x0020 |
145 | #define CMD_ACT_MAC_BROADCAST_ENABLE 0x0040 | 139 | #define CMD_ACT_MAC_BROADCAST_ENABLE 0x0040 |
146 | #define CMD_ACT_MAC_PROMISCUOUS_ENABLE 0x0080 | 140 | #define CMD_ACT_MAC_PROMISCUOUS_ENABLE 0x0080 |
147 | #define CMD_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100 | 141 | #define CMD_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100 |
148 | #define CMD_ACT_MAC_STRICT_PROTECTION_ENABLE 0x0400 | 142 | #define CMD_ACT_MAC_STRICT_PROTECTION_ENABLE 0x0400 |
149 | 143 | ||
150 | /* Event flags for CMD_802_11_SUBSCRIBE_EVENT */ | 144 | /* Event flags for CMD_802_11_SUBSCRIBE_EVENT */ |
151 | #define CMD_SUBSCRIBE_RSSI_LOW 0x0001 | 145 | #define CMD_SUBSCRIBE_RSSI_LOW 0x0001 |
152 | #define CMD_SUBSCRIBE_SNR_LOW 0x0002 | 146 | #define CMD_SUBSCRIBE_SNR_LOW 0x0002 |
153 | #define CMD_SUBSCRIBE_FAILCOUNT 0x0004 | 147 | #define CMD_SUBSCRIBE_FAILCOUNT 0x0004 |
154 | #define CMD_SUBSCRIBE_BCNMISS 0x0008 | 148 | #define CMD_SUBSCRIBE_BCNMISS 0x0008 |
155 | #define CMD_SUBSCRIBE_RSSI_HIGH 0x0010 | 149 | #define CMD_SUBSCRIBE_RSSI_HIGH 0x0010 |
156 | #define CMD_SUBSCRIBE_SNR_HIGH 0x0020 | 150 | #define CMD_SUBSCRIBE_SNR_HIGH 0x0020 |
157 | 151 | ||
158 | #define RADIO_PREAMBLE_LONG 0x00 | 152 | #define RADIO_PREAMBLE_LONG 0x00 |
159 | #define RADIO_PREAMBLE_SHORT 0x02 | 153 | #define RADIO_PREAMBLE_SHORT 0x02 |
160 | #define RADIO_PREAMBLE_AUTO 0x04 | 154 | #define RADIO_PREAMBLE_AUTO 0x04 |
161 | 155 | ||
162 | /* Define action or option for CMD_802_11_RF_CHANNEL */ | 156 | /* Define action or option for CMD_802_11_RF_CHANNEL */ |
163 | #define CMD_OPT_802_11_RF_CHANNEL_GET 0x00 | 157 | #define CMD_OPT_802_11_RF_CHANNEL_GET 0x00 |
164 | #define CMD_OPT_802_11_RF_CHANNEL_SET 0x01 | 158 | #define CMD_OPT_802_11_RF_CHANNEL_SET 0x01 |
165 | 159 | ||
166 | /* Define action or option for CMD_802_11_DATA_RATE */ | 160 | /* Define action or option for CMD_802_11_DATA_RATE */ |
167 | #define CMD_ACT_SET_TX_AUTO 0x0000 | 161 | #define CMD_ACT_SET_TX_AUTO 0x0000 |
168 | #define CMD_ACT_SET_TX_FIX_RATE 0x0001 | 162 | #define CMD_ACT_SET_TX_FIX_RATE 0x0001 |
169 | #define CMD_ACT_GET_TX_RATE 0x0002 | 163 | #define CMD_ACT_GET_TX_RATE 0x0002 |
170 | |||
171 | #define CMD_ACT_SET_RX 0x0001 | ||
172 | #define CMD_ACT_SET_TX 0x0002 | ||
173 | #define CMD_ACT_SET_BOTH 0x0003 | ||
174 | #define CMD_ACT_GET_RX 0x0004 | ||
175 | #define CMD_ACT_GET_TX 0x0008 | ||
176 | #define CMD_ACT_GET_BOTH 0x000c | ||
177 | 164 | ||
178 | /* Define action or option for CMD_802_11_PS_MODE */ | 165 | /* Define action or option for CMD_802_11_PS_MODE */ |
179 | #define CMD_TYPE_CAM 0x0000 | 166 | #define CMD_TYPE_CAM 0x0000 |
180 | #define CMD_TYPE_MAX_PSP 0x0001 | 167 | #define CMD_TYPE_MAX_PSP 0x0001 |
181 | #define CMD_TYPE_FAST_PSP 0x0002 | 168 | #define CMD_TYPE_FAST_PSP 0x0002 |
182 | 169 | ||
183 | /* Options for CMD_802_11_FW_WAKE_METHOD */ | 170 | /* Options for CMD_802_11_FW_WAKE_METHOD */ |
184 | #define CMD_WAKE_METHOD_UNCHANGED 0x0000 | 171 | #define CMD_WAKE_METHOD_UNCHANGED 0x0000 |
185 | #define CMD_WAKE_METHOD_COMMAND_INT 0x0001 | 172 | #define CMD_WAKE_METHOD_COMMAND_INT 0x0001 |
186 | #define CMD_WAKE_METHOD_GPIO 0x0002 | 173 | #define CMD_WAKE_METHOD_GPIO 0x0002 |
187 | 174 | ||
188 | /* Object IDs for CMD_802_11_SNMP_MIB */ | 175 | /* Object IDs for CMD_802_11_SNMP_MIB */ |
189 | #define SNMP_MIB_OID_BSS_TYPE 0x0000 | 176 | #define SNMP_MIB_OID_BSS_TYPE 0x0000 |
190 | #define SNMP_MIB_OID_OP_RATE_SET 0x0001 | 177 | #define SNMP_MIB_OID_OP_RATE_SET 0x0001 |
191 | #define SNMP_MIB_OID_BEACON_PERIOD 0x0002 /* Reserved on v9+ */ | 178 | #define SNMP_MIB_OID_BEACON_PERIOD 0x0002 /* Reserved on v9+ */ |
192 | #define SNMP_MIB_OID_DTIM_PERIOD 0x0003 /* Reserved on v9+ */ | 179 | #define SNMP_MIB_OID_DTIM_PERIOD 0x0003 /* Reserved on v9+ */ |
193 | #define SNMP_MIB_OID_ASSOC_TIMEOUT 0x0004 /* Reserved on v9+ */ | 180 | #define SNMP_MIB_OID_ASSOC_TIMEOUT 0x0004 /* Reserved on v9+ */ |
194 | #define SNMP_MIB_OID_RTS_THRESHOLD 0x0005 | 181 | #define SNMP_MIB_OID_RTS_THRESHOLD 0x0005 |
195 | #define SNMP_MIB_OID_SHORT_RETRY_LIMIT 0x0006 | 182 | #define SNMP_MIB_OID_SHORT_RETRY_LIMIT 0x0006 |
196 | #define SNMP_MIB_OID_LONG_RETRY_LIMIT 0x0007 | 183 | #define SNMP_MIB_OID_LONG_RETRY_LIMIT 0x0007 |
197 | #define SNMP_MIB_OID_FRAG_THRESHOLD 0x0008 | 184 | #define SNMP_MIB_OID_FRAG_THRESHOLD 0x0008 |
198 | #define SNMP_MIB_OID_11D_ENABLE 0x0009 | 185 | #define SNMP_MIB_OID_11D_ENABLE 0x0009 |
199 | #define SNMP_MIB_OID_11H_ENABLE 0x000A | 186 | #define SNMP_MIB_OID_11H_ENABLE 0x000A |
200 | 187 | ||
201 | /* Define action or option for CMD_BT_ACCESS */ | 188 | /* Define action or option for CMD_BT_ACCESS */ |
202 | enum cmd_bt_access_opts { | 189 | enum cmd_bt_access_opts { |
@@ -303,4 +290,714 @@ enum cmd_mesh_config_types { | |||
303 | #define MACREG_INT_CODE_MESH_AUTO_STARTED 35 | 290 | #define MACREG_INT_CODE_MESH_AUTO_STARTED 35 |
304 | #define MACREG_INT_CODE_FIRMWARE_READY 48 | 291 | #define MACREG_INT_CODE_FIRMWARE_READY 48 |
305 | 292 | ||
293 | |||
294 | /* 802.11-related definitions */ | ||
295 | |||
296 | /* TxPD descriptor */ | ||
297 | struct txpd { | ||
298 | /* union to cope up with later FW revisions */ | ||
299 | union { | ||
300 | /* Current Tx packet status */ | ||
301 | __le32 tx_status; | ||
302 | struct { | ||
303 | /* BSS type: client, AP, etc. */ | ||
304 | u8 bss_type; | ||
305 | /* BSS number */ | ||
306 | u8 bss_num; | ||
307 | /* Reserved */ | ||
308 | __le16 reserved; | ||
309 | } bss; | ||
310 | } u; | ||
311 | /* Tx control */ | ||
312 | __le32 tx_control; | ||
313 | __le32 tx_packet_location; | ||
314 | /* Tx packet length */ | ||
315 | __le16 tx_packet_length; | ||
316 | /* First 2 byte of destination MAC address */ | ||
317 | u8 tx_dest_addr_high[2]; | ||
318 | /* Last 4 byte of destination MAC address */ | ||
319 | u8 tx_dest_addr_low[4]; | ||
320 | /* Pkt Priority */ | ||
321 | u8 priority; | ||
322 | /* Pkt Trasnit Power control */ | ||
323 | u8 powermgmt; | ||
324 | /* Amount of time the packet has been queued (units = 2ms) */ | ||
325 | u8 pktdelay_2ms; | ||
326 | /* reserved */ | ||
327 | u8 reserved1; | ||
328 | } __attribute__ ((packed)); | ||
329 | |||
330 | /* RxPD Descriptor */ | ||
331 | struct rxpd { | ||
332 | /* union to cope up with later FW revisions */ | ||
333 | union { | ||
334 | /* Current Rx packet status */ | ||
335 | __le16 status; | ||
336 | struct { | ||
337 | /* BSS type: client, AP, etc. */ | ||
338 | u8 bss_type; | ||
339 | /* BSS number */ | ||
340 | u8 bss_num; | ||
341 | } __attribute__ ((packed)) bss; | ||
342 | } __attribute__ ((packed)) u; | ||
343 | |||
344 | /* SNR */ | ||
345 | u8 snr; | ||
346 | |||
347 | /* Tx control */ | ||
348 | u8 rx_control; | ||
349 | |||
350 | /* Pkt length */ | ||
351 | __le16 pkt_len; | ||
352 | |||
353 | /* Noise Floor */ | ||
354 | u8 nf; | ||
355 | |||
356 | /* Rx Packet Rate */ | ||
357 | u8 rx_rate; | ||
358 | |||
359 | /* Pkt addr */ | ||
360 | __le32 pkt_ptr; | ||
361 | |||
362 | /* Next Rx RxPD addr */ | ||
363 | __le32 next_rxpd_ptr; | ||
364 | |||
365 | /* Pkt Priority */ | ||
366 | u8 priority; | ||
367 | u8 reserved[3]; | ||
368 | } __attribute__ ((packed)); | ||
369 | |||
370 | struct cmd_header { | ||
371 | __le16 command; | ||
372 | __le16 size; | ||
373 | __le16 seqnum; | ||
374 | __le16 result; | ||
375 | } __attribute__ ((packed)); | ||
376 | |||
377 | struct cmd_ctrl_node { | ||
378 | struct list_head list; | ||
379 | int result; | ||
380 | /* command response */ | ||
381 | int (*callback)(struct lbs_private *, | ||
382 | unsigned long, | ||
383 | struct cmd_header *); | ||
384 | unsigned long callback_arg; | ||
385 | /* command data */ | ||
386 | struct cmd_header *cmdbuf; | ||
387 | /* wait queue */ | ||
388 | u16 cmdwaitqwoken; | ||
389 | wait_queue_head_t cmdwait_q; | ||
390 | }; | ||
391 | |||
392 | /* Generic structure to hold all key types. */ | ||
393 | struct enc_key { | ||
394 | u16 len; | ||
395 | u16 flags; /* KEY_INFO_* from defs.h */ | ||
396 | u16 type; /* KEY_TYPE_* from defs.h */ | ||
397 | u8 key[32]; | ||
398 | }; | ||
399 | |||
400 | /* lbs_offset_value */ | ||
401 | struct lbs_offset_value { | ||
402 | u32 offset; | ||
403 | u32 value; | ||
404 | } __attribute__ ((packed)); | ||
405 | |||
406 | /* Define general data structure */ | ||
407 | /* cmd_DS_GEN */ | ||
408 | struct cmd_ds_gen { | ||
409 | __le16 command; | ||
410 | __le16 size; | ||
411 | __le16 seqnum; | ||
412 | __le16 result; | ||
413 | void *cmdresp[0]; | ||
414 | } __attribute__ ((packed)); | ||
415 | |||
416 | #define S_DS_GEN sizeof(struct cmd_ds_gen) | ||
417 | |||
418 | |||
419 | /* | ||
420 | * Define data structure for CMD_GET_HW_SPEC | ||
421 | * This structure defines the response for the GET_HW_SPEC command | ||
422 | */ | ||
423 | struct cmd_ds_get_hw_spec { | ||
424 | struct cmd_header hdr; | ||
425 | |||
426 | /* HW Interface version number */ | ||
427 | __le16 hwifversion; | ||
428 | /* HW version number */ | ||
429 | __le16 version; | ||
430 | /* Max number of TxPD FW can handle */ | ||
431 | __le16 nr_txpd; | ||
432 | /* Max no of Multicast address */ | ||
433 | __le16 nr_mcast_adr; | ||
434 | /* MAC address */ | ||
435 | u8 permanentaddr[6]; | ||
436 | |||
437 | /* region Code */ | ||
438 | __le16 regioncode; | ||
439 | |||
440 | /* Number of antenna used */ | ||
441 | __le16 nr_antenna; | ||
442 | |||
443 | /* FW release number, example 0x01030304 = 2.3.4p1 */ | ||
444 | __le32 fwrelease; | ||
445 | |||
446 | /* Base Address of TxPD queue */ | ||
447 | __le32 wcb_base; | ||
448 | /* Read Pointer of RxPd queue */ | ||
449 | __le32 rxpd_rdptr; | ||
450 | |||
451 | /* Write Pointer of RxPd queue */ | ||
452 | __le32 rxpd_wrptr; | ||
453 | |||
454 | /*FW/HW capability */ | ||
455 | __le32 fwcapinfo; | ||
456 | } __attribute__ ((packed)); | ||
457 | |||
458 | struct cmd_ds_802_11_subscribe_event { | ||
459 | struct cmd_header hdr; | ||
460 | |||
461 | __le16 action; | ||
462 | __le16 events; | ||
463 | |||
464 | /* A TLV to the CMD_802_11_SUBSCRIBE_EVENT command can contain a | ||
465 | * number of TLVs. From the v5.1 manual, those TLVs would add up to | ||
466 | * 40 bytes. However, future firmware might add additional TLVs, so I | ||
467 | * bump this up a bit. | ||
468 | */ | ||
469 | uint8_t tlv[128]; | ||
470 | } __attribute__ ((packed)); | ||
471 | |||
472 | /* | ||
473 | * This scan handle Country Information IE(802.11d compliant) | ||
474 | * Define data structure for CMD_802_11_SCAN | ||
475 | */ | ||
476 | struct cmd_ds_802_11_scan { | ||
477 | struct cmd_header hdr; | ||
478 | |||
479 | uint8_t bsstype; | ||
480 | uint8_t bssid[ETH_ALEN]; | ||
481 | uint8_t tlvbuffer[0]; | ||
482 | } __attribute__ ((packed)); | ||
483 | |||
484 | struct cmd_ds_802_11_scan_rsp { | ||
485 | struct cmd_header hdr; | ||
486 | |||
487 | __le16 bssdescriptsize; | ||
488 | uint8_t nr_sets; | ||
489 | uint8_t bssdesc_and_tlvbuffer[0]; | ||
490 | } __attribute__ ((packed)); | ||
491 | |||
492 | struct cmd_ds_802_11_get_log { | ||
493 | struct cmd_header hdr; | ||
494 | |||
495 | __le32 mcasttxframe; | ||
496 | __le32 failed; | ||
497 | __le32 retry; | ||
498 | __le32 multiretry; | ||
499 | __le32 framedup; | ||
500 | __le32 rtssuccess; | ||
501 | __le32 rtsfailure; | ||
502 | __le32 ackfailure; | ||
503 | __le32 rxfrag; | ||
504 | __le32 mcastrxframe; | ||
505 | __le32 fcserror; | ||
506 | __le32 txframe; | ||
507 | __le32 wepundecryptable; | ||
508 | } __attribute__ ((packed)); | ||
509 | |||
510 | struct cmd_ds_mac_control { | ||
511 | struct cmd_header hdr; | ||
512 | __le16 action; | ||
513 | u16 reserved; | ||
514 | } __attribute__ ((packed)); | ||
515 | |||
516 | struct cmd_ds_mac_multicast_adr { | ||
517 | struct cmd_header hdr; | ||
518 | __le16 action; | ||
519 | __le16 nr_of_adrs; | ||
520 | u8 maclist[ETH_ALEN * MRVDRV_MAX_MULTICAST_LIST_SIZE]; | ||
521 | } __attribute__ ((packed)); | ||
522 | |||
523 | struct cmd_ds_802_11_authenticate { | ||
524 | struct cmd_header hdr; | ||
525 | |||
526 | u8 bssid[ETH_ALEN]; | ||
527 | u8 authtype; | ||
528 | u8 reserved[10]; | ||
529 | } __attribute__ ((packed)); | ||
530 | |||
531 | struct cmd_ds_802_11_deauthenticate { | ||
532 | struct cmd_header hdr; | ||
533 | |||
534 | u8 macaddr[ETH_ALEN]; | ||
535 | __le16 reasoncode; | ||
536 | } __attribute__ ((packed)); | ||
537 | |||
538 | struct cmd_ds_802_11_associate { | ||
539 | struct cmd_header hdr; | ||
540 | |||
541 | u8 bssid[6]; | ||
542 | __le16 capability; | ||
543 | __le16 listeninterval; | ||
544 | __le16 bcnperiod; | ||
545 | u8 dtimperiod; | ||
546 | u8 iebuf[512]; /* Enough for required and most optional IEs */ | ||
547 | } __attribute__ ((packed)); | ||
548 | |||
549 | struct cmd_ds_802_11_associate_response { | ||
550 | struct cmd_header hdr; | ||
551 | |||
552 | __le16 capability; | ||
553 | __le16 statuscode; | ||
554 | __le16 aid; | ||
555 | u8 iebuf[512]; | ||
556 | } __attribute__ ((packed)); | ||
557 | |||
558 | struct cmd_ds_802_11_set_wep { | ||
559 | struct cmd_header hdr; | ||
560 | |||
561 | /* ACT_ADD, ACT_REMOVE or ACT_ENABLE */ | ||
562 | __le16 action; | ||
563 | |||
564 | /* key Index selected for Tx */ | ||
565 | __le16 keyindex; | ||
566 | |||
567 | /* 40, 128bit or TXWEP */ | ||
568 | uint8_t keytype[4]; | ||
569 | uint8_t keymaterial[4][16]; | ||
570 | } __attribute__ ((packed)); | ||
571 | |||
572 | struct cmd_ds_802_11_snmp_mib { | ||
573 | struct cmd_header hdr; | ||
574 | |||
575 | __le16 action; | ||
576 | __le16 oid; | ||
577 | __le16 bufsize; | ||
578 | u8 value[128]; | ||
579 | } __attribute__ ((packed)); | ||
580 | |||
581 | struct cmd_ds_mac_reg_access { | ||
582 | __le16 action; | ||
583 | __le16 offset; | ||
584 | __le32 value; | ||
585 | } __attribute__ ((packed)); | ||
586 | |||
587 | struct cmd_ds_bbp_reg_access { | ||
588 | __le16 action; | ||
589 | __le16 offset; | ||
590 | u8 value; | ||
591 | u8 reserved[3]; | ||
592 | } __attribute__ ((packed)); | ||
593 | |||
594 | struct cmd_ds_rf_reg_access { | ||
595 | __le16 action; | ||
596 | __le16 offset; | ||
597 | u8 value; | ||
598 | u8 reserved[3]; | ||
599 | } __attribute__ ((packed)); | ||
600 | |||
601 | struct cmd_ds_802_11_radio_control { | ||
602 | struct cmd_header hdr; | ||
603 | |||
604 | __le16 action; | ||
605 | __le16 control; | ||
606 | } __attribute__ ((packed)); | ||
607 | |||
608 | struct cmd_ds_802_11_beacon_control { | ||
609 | __le16 action; | ||
610 | __le16 beacon_enable; | ||
611 | __le16 beacon_period; | ||
612 | } __attribute__ ((packed)); | ||
613 | |||
614 | struct cmd_ds_802_11_sleep_params { | ||
615 | struct cmd_header hdr; | ||
616 | |||
617 | /* ACT_GET/ACT_SET */ | ||
618 | __le16 action; | ||
619 | |||
620 | /* Sleep clock error in ppm */ | ||
621 | __le16 error; | ||
622 | |||
623 | /* Wakeup offset in usec */ | ||
624 | __le16 offset; | ||
625 | |||
626 | /* Clock stabilization time in usec */ | ||
627 | __le16 stabletime; | ||
628 | |||
629 | /* control periodic calibration */ | ||
630 | uint8_t calcontrol; | ||
631 | |||
632 | /* control the use of external sleep clock */ | ||
633 | uint8_t externalsleepclk; | ||
634 | |||
635 | /* reserved field, should be set to zero */ | ||
636 | __le16 reserved; | ||
637 | } __attribute__ ((packed)); | ||
638 | |||
639 | struct cmd_ds_802_11_inactivity_timeout { | ||
640 | struct cmd_header hdr; | ||
641 | |||
642 | /* ACT_GET/ACT_SET */ | ||
643 | __le16 action; | ||
644 | |||
645 | /* Inactivity timeout in msec */ | ||
646 | __le16 timeout; | ||
647 | } __attribute__ ((packed)); | ||
648 | |||
649 | struct cmd_ds_802_11_rf_channel { | ||
650 | struct cmd_header hdr; | ||
651 | |||
652 | __le16 action; | ||
653 | __le16 channel; | ||
654 | __le16 rftype; /* unused */ | ||
655 | __le16 reserved; /* unused */ | ||
656 | u8 channellist[32]; /* unused */ | ||
657 | } __attribute__ ((packed)); | ||
658 | |||
659 | struct cmd_ds_802_11_rssi { | ||
660 | /* weighting factor */ | ||
661 | __le16 N; | ||
662 | |||
663 | __le16 reserved_0; | ||
664 | __le16 reserved_1; | ||
665 | __le16 reserved_2; | ||
666 | } __attribute__ ((packed)); | ||
667 | |||
668 | struct cmd_ds_802_11_rssi_rsp { | ||
669 | __le16 SNR; | ||
670 | __le16 noisefloor; | ||
671 | __le16 avgSNR; | ||
672 | __le16 avgnoisefloor; | ||
673 | } __attribute__ ((packed)); | ||
674 | |||
675 | struct cmd_ds_802_11_mac_address { | ||
676 | struct cmd_header hdr; | ||
677 | |||
678 | __le16 action; | ||
679 | u8 macadd[ETH_ALEN]; | ||
680 | } __attribute__ ((packed)); | ||
681 | |||
682 | struct cmd_ds_802_11_rf_tx_power { | ||
683 | struct cmd_header hdr; | ||
684 | |||
685 | __le16 action; | ||
686 | __le16 curlevel; | ||
687 | s8 maxlevel; | ||
688 | s8 minlevel; | ||
689 | } __attribute__ ((packed)); | ||
690 | |||
691 | struct cmd_ds_802_11_monitor_mode { | ||
692 | __le16 action; | ||
693 | __le16 mode; | ||
694 | } __attribute__ ((packed)); | ||
695 | |||
696 | struct cmd_ds_set_boot2_ver { | ||
697 | struct cmd_header hdr; | ||
698 | |||
699 | __le16 action; | ||
700 | __le16 version; | ||
701 | } __attribute__ ((packed)); | ||
702 | |||
703 | struct cmd_ds_802_11_fw_wake_method { | ||
704 | struct cmd_header hdr; | ||
705 | |||
706 | __le16 action; | ||
707 | __le16 method; | ||
708 | } __attribute__ ((packed)); | ||
709 | |||
710 | struct cmd_ds_802_11_ps_mode { | ||
711 | __le16 action; | ||
712 | __le16 nullpktinterval; | ||
713 | __le16 multipledtim; | ||
714 | __le16 reserved; | ||
715 | __le16 locallisteninterval; | ||
716 | } __attribute__ ((packed)); | ||
717 | |||
718 | struct cmd_confirm_sleep { | ||
719 | struct cmd_header hdr; | ||
720 | |||
721 | __le16 action; | ||
722 | __le16 nullpktinterval; | ||
723 | __le16 multipledtim; | ||
724 | __le16 reserved; | ||
725 | __le16 locallisteninterval; | ||
726 | } __attribute__ ((packed)); | ||
727 | |||
728 | struct cmd_ds_802_11_data_rate { | ||
729 | struct cmd_header hdr; | ||
730 | |||
731 | __le16 action; | ||
732 | __le16 reserved; | ||
733 | u8 rates[MAX_RATES]; | ||
734 | } __attribute__ ((packed)); | ||
735 | |||
736 | struct cmd_ds_802_11_rate_adapt_rateset { | ||
737 | struct cmd_header hdr; | ||
738 | __le16 action; | ||
739 | __le16 enablehwauto; | ||
740 | __le16 bitmap; | ||
741 | } __attribute__ ((packed)); | ||
742 | |||
743 | struct cmd_ds_802_11_ad_hoc_start { | ||
744 | struct cmd_header hdr; | ||
745 | |||
746 | u8 ssid[IW_ESSID_MAX_SIZE]; | ||
747 | u8 bsstype; | ||
748 | __le16 beaconperiod; | ||
749 | u8 dtimperiod; /* Reserved on v9 and later */ | ||
750 | struct ieee_ie_ibss_param_set ibss; | ||
751 | u8 reserved1[4]; | ||
752 | struct ieee_ie_ds_param_set ds; | ||
753 | u8 reserved2[4]; | ||
754 | __le16 probedelay; /* Reserved on v9 and later */ | ||
755 | __le16 capability; | ||
756 | u8 rates[MAX_RATES]; | ||
757 | u8 tlv_memory_size_pad[100]; | ||
758 | } __attribute__ ((packed)); | ||
759 | |||
760 | struct cmd_ds_802_11_ad_hoc_result { | ||
761 | struct cmd_header hdr; | ||
762 | |||
763 | u8 pad[3]; | ||
764 | u8 bssid[ETH_ALEN]; | ||
765 | } __attribute__ ((packed)); | ||
766 | |||
767 | struct adhoc_bssdesc { | ||
768 | u8 bssid[ETH_ALEN]; | ||
769 | u8 ssid[IW_ESSID_MAX_SIZE]; | ||
770 | u8 type; | ||
771 | __le16 beaconperiod; | ||
772 | u8 dtimperiod; | ||
773 | __le64 timestamp; | ||
774 | __le64 localtime; | ||
775 | struct ieee_ie_ds_param_set ds; | ||
776 | u8 reserved1[4]; | ||
777 | struct ieee_ie_ibss_param_set ibss; | ||
778 | u8 reserved2[4]; | ||
779 | __le16 capability; | ||
780 | u8 rates[MAX_RATES]; | ||
781 | |||
782 | /* DO NOT ADD ANY FIELDS TO THIS STRUCTURE. It is used below in the | ||
783 | * Adhoc join command and will cause a binary layout mismatch with | ||
784 | * the firmware | ||
785 | */ | ||
786 | } __attribute__ ((packed)); | ||
787 | |||
788 | struct cmd_ds_802_11_ad_hoc_join { | ||
789 | struct cmd_header hdr; | ||
790 | |||
791 | struct adhoc_bssdesc bss; | ||
792 | __le16 failtimeout; /* Reserved on v9 and later */ | ||
793 | __le16 probedelay; /* Reserved on v9 and later */ | ||
794 | } __attribute__ ((packed)); | ||
795 | |||
796 | struct cmd_ds_802_11_ad_hoc_stop { | ||
797 | struct cmd_header hdr; | ||
798 | } __attribute__ ((packed)); | ||
799 | |||
800 | struct cmd_ds_802_11_enable_rsn { | ||
801 | struct cmd_header hdr; | ||
802 | |||
803 | __le16 action; | ||
804 | __le16 enable; | ||
805 | } __attribute__ ((packed)); | ||
806 | |||
807 | struct MrvlIEtype_keyParamSet { | ||
808 | /* type ID */ | ||
809 | __le16 type; | ||
810 | |||
811 | /* length of Payload */ | ||
812 | __le16 length; | ||
813 | |||
814 | /* type of key: WEP=0, TKIP=1, AES=2 */ | ||
815 | __le16 keytypeid; | ||
816 | |||
817 | /* key control Info specific to a keytypeid */ | ||
818 | __le16 keyinfo; | ||
819 | |||
820 | /* length of key */ | ||
821 | __le16 keylen; | ||
822 | |||
823 | /* key material of size keylen */ | ||
824 | u8 key[32]; | ||
825 | } __attribute__ ((packed)); | ||
826 | |||
827 | #define MAX_WOL_RULES 16 | ||
828 | |||
829 | struct host_wol_rule { | ||
830 | uint8_t rule_no; | ||
831 | uint8_t rule_ops; | ||
832 | __le16 sig_offset; | ||
833 | __le16 sig_length; | ||
834 | __le16 reserve; | ||
835 | __be32 sig_mask; | ||
836 | __be32 signature; | ||
837 | } __attribute__ ((packed)); | ||
838 | |||
839 | struct wol_config { | ||
840 | uint8_t action; | ||
841 | uint8_t pattern; | ||
842 | uint8_t no_rules_in_cmd; | ||
843 | uint8_t result; | ||
844 | struct host_wol_rule rule[MAX_WOL_RULES]; | ||
845 | } __attribute__ ((packed)); | ||
846 | |||
847 | struct cmd_ds_host_sleep { | ||
848 | struct cmd_header hdr; | ||
849 | __le32 criteria; | ||
850 | uint8_t gpio; | ||
851 | uint16_t gap; | ||
852 | struct wol_config wol_conf; | ||
853 | } __attribute__ ((packed)); | ||
854 | |||
855 | |||
856 | |||
857 | struct cmd_ds_802_11_key_material { | ||
858 | struct cmd_header hdr; | ||
859 | |||
860 | __le16 action; | ||
861 | struct MrvlIEtype_keyParamSet keyParamSet[2]; | ||
862 | } __attribute__ ((packed)); | ||
863 | |||
864 | struct cmd_ds_802_11_eeprom_access { | ||
865 | struct cmd_header hdr; | ||
866 | __le16 action; | ||
867 | __le16 offset; | ||
868 | __le16 len; | ||
869 | /* firmware says it returns a maximum of 20 bytes */ | ||
870 | #define LBS_EEPROM_READ_LEN 20 | ||
871 | u8 value[LBS_EEPROM_READ_LEN]; | ||
872 | } __attribute__ ((packed)); | ||
873 | |||
874 | struct cmd_ds_802_11_tpc_cfg { | ||
875 | struct cmd_header hdr; | ||
876 | |||
877 | __le16 action; | ||
878 | uint8_t enable; | ||
879 | int8_t P0; | ||
880 | int8_t P1; | ||
881 | int8_t P2; | ||
882 | uint8_t usesnr; | ||
883 | } __attribute__ ((packed)); | ||
884 | |||
885 | |||
886 | struct cmd_ds_802_11_pa_cfg { | ||
887 | struct cmd_header hdr; | ||
888 | |||
889 | __le16 action; | ||
890 | uint8_t enable; | ||
891 | int8_t P0; | ||
892 | int8_t P1; | ||
893 | int8_t P2; | ||
894 | } __attribute__ ((packed)); | ||
895 | |||
896 | |||
897 | struct cmd_ds_802_11_led_ctrl { | ||
898 | __le16 action; | ||
899 | __le16 numled; | ||
900 | u8 data[256]; | ||
901 | } __attribute__ ((packed)); | ||
902 | |||
903 | struct cmd_ds_802_11_afc { | ||
904 | __le16 afc_auto; | ||
905 | union { | ||
906 | struct { | ||
907 | __le16 threshold; | ||
908 | __le16 period; | ||
909 | }; | ||
910 | struct { | ||
911 | __le16 timing_offset; /* signed */ | ||
912 | __le16 carrier_offset; /* signed */ | ||
913 | }; | ||
914 | }; | ||
915 | } __attribute__ ((packed)); | ||
916 | |||
917 | struct cmd_tx_rate_query { | ||
918 | __le16 txrate; | ||
919 | } __attribute__ ((packed)); | ||
920 | |||
921 | struct cmd_ds_get_tsf { | ||
922 | __le64 tsfvalue; | ||
923 | } __attribute__ ((packed)); | ||
924 | |||
925 | struct cmd_ds_bt_access { | ||
926 | __le16 action; | ||
927 | __le32 id; | ||
928 | u8 addr1[ETH_ALEN]; | ||
929 | u8 addr2[ETH_ALEN]; | ||
930 | } __attribute__ ((packed)); | ||
931 | |||
932 | struct cmd_ds_fwt_access { | ||
933 | __le16 action; | ||
934 | __le32 id; | ||
935 | u8 valid; | ||
936 | u8 da[ETH_ALEN]; | ||
937 | u8 dir; | ||
938 | u8 ra[ETH_ALEN]; | ||
939 | __le32 ssn; | ||
940 | __le32 dsn; | ||
941 | __le32 metric; | ||
942 | u8 rate; | ||
943 | u8 hopcount; | ||
944 | u8 ttl; | ||
945 | __le32 expiration; | ||
946 | u8 sleepmode; | ||
947 | __le32 snr; | ||
948 | __le32 references; | ||
949 | u8 prec[ETH_ALEN]; | ||
950 | } __attribute__ ((packed)); | ||
951 | |||
952 | struct cmd_ds_mesh_config { | ||
953 | struct cmd_header hdr; | ||
954 | |||
955 | __le16 action; | ||
956 | __le16 channel; | ||
957 | __le16 type; | ||
958 | __le16 length; | ||
959 | u8 data[128]; /* last position reserved */ | ||
960 | } __attribute__ ((packed)); | ||
961 | |||
962 | struct cmd_ds_mesh_access { | ||
963 | struct cmd_header hdr; | ||
964 | |||
965 | __le16 action; | ||
966 | __le32 data[32]; /* last position reserved */ | ||
967 | } __attribute__ ((packed)); | ||
968 | |||
969 | /* Number of stats counters returned by the firmware */ | ||
970 | #define MESH_STATS_NUM 8 | ||
971 | |||
972 | struct cmd_ds_command { | ||
973 | /* command header */ | ||
974 | __le16 command; | ||
975 | __le16 size; | ||
976 | __le16 seqnum; | ||
977 | __le16 result; | ||
978 | |||
979 | /* command Body */ | ||
980 | union { | ||
981 | struct cmd_ds_802_11_ps_mode psmode; | ||
982 | struct cmd_ds_802_11_monitor_mode monitor; | ||
983 | struct cmd_ds_802_11_rssi rssi; | ||
984 | struct cmd_ds_802_11_rssi_rsp rssirsp; | ||
985 | struct cmd_ds_mac_reg_access macreg; | ||
986 | struct cmd_ds_bbp_reg_access bbpreg; | ||
987 | struct cmd_ds_rf_reg_access rfreg; | ||
988 | |||
989 | struct cmd_ds_802_11d_domain_info domaininfo; | ||
990 | struct cmd_ds_802_11d_domain_info domaininforesp; | ||
991 | |||
992 | struct cmd_ds_802_11_tpc_cfg tpccfg; | ||
993 | struct cmd_ds_802_11_afc afc; | ||
994 | struct cmd_ds_802_11_led_ctrl ledgpio; | ||
995 | |||
996 | struct cmd_ds_bt_access bt; | ||
997 | struct cmd_ds_fwt_access fwt; | ||
998 | struct cmd_ds_get_tsf gettsf; | ||
999 | struct cmd_ds_802_11_beacon_control bcn_ctrl; | ||
1000 | } params; | ||
1001 | } __attribute__ ((packed)); | ||
1002 | |||
306 | #endif | 1003 | #endif |