diff options
Diffstat (limited to 'drivers/net/wireless/ath/carl9170/fw.c')
-rw-r--r-- | drivers/net/wireless/ath/carl9170/fw.c | 395 |
1 files changed, 395 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/carl9170/fw.c b/drivers/net/wireless/ath/carl9170/fw.c new file mode 100644 index 000000000000..36615462b87a --- /dev/null +++ b/drivers/net/wireless/ath/carl9170/fw.c | |||
@@ -0,0 +1,395 @@ | |||
1 | /* | ||
2 | * Atheros CARL9170 driver | ||
3 | * | ||
4 | * firmware parser | ||
5 | * | ||
6 | * Copyright 2009, 2010, Christian Lamparter <chunkeey@googlemail.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; see the file COPYING. If not, see | ||
20 | * http://www.gnu.org/licenses/. | ||
21 | */ | ||
22 | |||
23 | #include <linux/kernel.h> | ||
24 | #include <linux/firmware.h> | ||
25 | #include <linux/crc32.h> | ||
26 | #include "carl9170.h" | ||
27 | #include "fwcmd.h" | ||
28 | #include "version.h" | ||
29 | |||
30 | #define MAKE_STR(symbol) #symbol | ||
31 | #define TO_STR(symbol) MAKE_STR(symbol) | ||
32 | #define CARL9170FW_API_VER_STR TO_STR(CARL9170FW_API_MAX_VER) | ||
33 | MODULE_VERSION(CARL9170FW_API_VER_STR ":" CARL9170FW_VERSION_GIT); | ||
34 | |||
35 | static const u8 otus_magic[4] = { OTUS_MAGIC }; | ||
36 | |||
37 | static const void *carl9170_fw_find_desc(struct ar9170 *ar, const u8 descid[4], | ||
38 | const unsigned int len, const u8 compatible_revision) | ||
39 | { | ||
40 | const struct carl9170fw_desc_head *iter; | ||
41 | |||
42 | carl9170fw_for_each_hdr(iter, ar->fw.desc) { | ||
43 | if (carl9170fw_desc_cmp(iter, descid, len, | ||
44 | compatible_revision)) | ||
45 | return (void *)iter; | ||
46 | } | ||
47 | |||
48 | /* needed to find the LAST desc */ | ||
49 | if (carl9170fw_desc_cmp(iter, descid, len, | ||
50 | compatible_revision)) | ||
51 | return (void *)iter; | ||
52 | |||
53 | return NULL; | ||
54 | } | ||
55 | |||
56 | static int carl9170_fw_verify_descs(struct ar9170 *ar, | ||
57 | const struct carl9170fw_desc_head *head, unsigned int max_len) | ||
58 | { | ||
59 | const struct carl9170fw_desc_head *pos; | ||
60 | unsigned long pos_addr, end_addr; | ||
61 | unsigned int pos_length; | ||
62 | |||
63 | if (max_len < sizeof(*pos)) | ||
64 | return -ENODATA; | ||
65 | |||
66 | max_len = min_t(unsigned int, CARL9170FW_DESC_MAX_LENGTH, max_len); | ||
67 | |||
68 | pos = head; | ||
69 | pos_addr = (unsigned long) pos; | ||
70 | end_addr = pos_addr + max_len; | ||
71 | |||
72 | while (pos_addr < end_addr) { | ||
73 | if (pos_addr + sizeof(*head) > end_addr) | ||
74 | return -E2BIG; | ||
75 | |||
76 | pos_length = le16_to_cpu(pos->length); | ||
77 | |||
78 | if (pos_length < sizeof(*head)) | ||
79 | return -EBADMSG; | ||
80 | |||
81 | if (pos_length > max_len) | ||
82 | return -EOVERFLOW; | ||
83 | |||
84 | if (pos_addr + pos_length > end_addr) | ||
85 | return -EMSGSIZE; | ||
86 | |||
87 | if (carl9170fw_desc_cmp(pos, LAST_MAGIC, | ||
88 | CARL9170FW_LAST_DESC_SIZE, | ||
89 | CARL9170FW_LAST_DESC_CUR_VER)) | ||
90 | return 0; | ||
91 | |||
92 | pos_addr += pos_length; | ||
93 | pos = (void *)pos_addr; | ||
94 | max_len -= pos_length; | ||
95 | } | ||
96 | return -EINVAL; | ||
97 | } | ||
98 | |||
99 | static void carl9170_fw_info(struct ar9170 *ar) | ||
100 | { | ||
101 | const struct carl9170fw_motd_desc *motd_desc; | ||
102 | unsigned int str_ver_len; | ||
103 | u32 fw_date; | ||
104 | |||
105 | dev_info(&ar->udev->dev, "driver API: %s 2%03d-%02d-%02d [%d-%d]\n", | ||
106 | CARL9170FW_VERSION_GIT, CARL9170FW_VERSION_YEAR, | ||
107 | CARL9170FW_VERSION_MONTH, CARL9170FW_VERSION_DAY, | ||
108 | CARL9170FW_API_MIN_VER, CARL9170FW_API_MAX_VER); | ||
109 | |||
110 | motd_desc = carl9170_fw_find_desc(ar, MOTD_MAGIC, | ||
111 | sizeof(*motd_desc), CARL9170FW_MOTD_DESC_CUR_VER); | ||
112 | |||
113 | if (motd_desc) { | ||
114 | str_ver_len = strnlen(motd_desc->release, | ||
115 | CARL9170FW_MOTD_RELEASE_LEN); | ||
116 | |||
117 | fw_date = le32_to_cpu(motd_desc->fw_year_month_day); | ||
118 | |||
119 | dev_info(&ar->udev->dev, "firmware API: %.*s 2%03d-%02d-%02d\n", | ||
120 | str_ver_len, motd_desc->release, | ||
121 | CARL9170FW_GET_YEAR(fw_date), | ||
122 | CARL9170FW_GET_MONTH(fw_date), | ||
123 | CARL9170FW_GET_DAY(fw_date)); | ||
124 | |||
125 | strlcpy(ar->hw->wiphy->fw_version, motd_desc->release, | ||
126 | sizeof(ar->hw->wiphy->fw_version)); | ||
127 | } | ||
128 | } | ||
129 | |||
130 | static bool valid_dma_addr(const u32 address) | ||
131 | { | ||
132 | if (address >= AR9170_SRAM_OFFSET && | ||
133 | address < (AR9170_SRAM_OFFSET + AR9170_SRAM_SIZE)) | ||
134 | return true; | ||
135 | |||
136 | return false; | ||
137 | } | ||
138 | |||
139 | static bool valid_cpu_addr(const u32 address) | ||
140 | { | ||
141 | if (valid_dma_addr(address) || (address >= AR9170_PRAM_OFFSET && | ||
142 | address < (AR9170_PRAM_OFFSET + AR9170_PRAM_SIZE))) | ||
143 | return true; | ||
144 | |||
145 | return false; | ||
146 | } | ||
147 | |||
148 | static int carl9170_fw(struct ar9170 *ar, const __u8 *data, size_t len) | ||
149 | { | ||
150 | const struct carl9170fw_otus_desc *otus_desc; | ||
151 | const struct carl9170fw_chk_desc *chk_desc; | ||
152 | const struct carl9170fw_last_desc *last_desc; | ||
153 | |||
154 | last_desc = carl9170_fw_find_desc(ar, LAST_MAGIC, | ||
155 | sizeof(*last_desc), CARL9170FW_LAST_DESC_CUR_VER); | ||
156 | if (!last_desc) | ||
157 | return -EINVAL; | ||
158 | |||
159 | otus_desc = carl9170_fw_find_desc(ar, OTUS_MAGIC, | ||
160 | sizeof(*otus_desc), CARL9170FW_OTUS_DESC_CUR_VER); | ||
161 | if (!otus_desc) { | ||
162 | dev_err(&ar->udev->dev, "failed to find compatible firmware " | ||
163 | "descriptor.\n"); | ||
164 | return -ENODATA; | ||
165 | } | ||
166 | |||
167 | chk_desc = carl9170_fw_find_desc(ar, CHK_MAGIC, | ||
168 | sizeof(*chk_desc), CARL9170FW_CHK_DESC_CUR_VER); | ||
169 | |||
170 | if (chk_desc) { | ||
171 | unsigned long fin, diff; | ||
172 | unsigned int dsc_len; | ||
173 | u32 crc32; | ||
174 | |||
175 | dsc_len = min_t(unsigned int, len, | ||
176 | (unsigned long)chk_desc - (unsigned long)otus_desc); | ||
177 | |||
178 | fin = (unsigned long) last_desc + sizeof(*last_desc); | ||
179 | diff = fin - (unsigned long) otus_desc; | ||
180 | |||
181 | if (diff < len) | ||
182 | len -= diff; | ||
183 | |||
184 | if (len < 256) | ||
185 | return -EIO; | ||
186 | |||
187 | crc32 = crc32_le(~0, data, len); | ||
188 | if (cpu_to_le32(crc32) != chk_desc->fw_crc32) { | ||
189 | dev_err(&ar->udev->dev, "fw checksum test failed.\n"); | ||
190 | return -ENOEXEC; | ||
191 | } | ||
192 | |||
193 | crc32 = crc32_le(crc32, (void *)otus_desc, dsc_len); | ||
194 | if (cpu_to_le32(crc32) != chk_desc->hdr_crc32) { | ||
195 | dev_err(&ar->udev->dev, "descriptor check failed.\n"); | ||
196 | return -EINVAL; | ||
197 | } | ||
198 | } else { | ||
199 | dev_warn(&ar->udev->dev, "Unprotected firmware image.\n"); | ||
200 | } | ||
201 | |||
202 | #define SUPP(feat) \ | ||
203 | (carl9170fw_supports(otus_desc->feature_set, feat)) | ||
204 | |||
205 | if (!SUPP(CARL9170FW_DUMMY_FEATURE)) { | ||
206 | dev_err(&ar->udev->dev, "invalid firmware descriptor " | ||
207 | "format detected.\n"); | ||
208 | return -EINVAL; | ||
209 | } | ||
210 | |||
211 | ar->fw.api_version = otus_desc->api_ver; | ||
212 | |||
213 | if (ar->fw.api_version < CARL9170FW_API_MIN_VER || | ||
214 | ar->fw.api_version > CARL9170FW_API_MAX_VER) { | ||
215 | dev_err(&ar->udev->dev, "unsupported firmware api version.\n"); | ||
216 | return -EINVAL; | ||
217 | } | ||
218 | |||
219 | if (!SUPP(CARL9170FW_COMMAND_PHY) || SUPP(CARL9170FW_UNUSABLE) || | ||
220 | !SUPP(CARL9170FW_HANDLE_BACK_REQ)) { | ||
221 | dev_err(&ar->udev->dev, "firmware does support " | ||
222 | "mandatory features.\n"); | ||
223 | return -ECANCELED; | ||
224 | } | ||
225 | |||
226 | if (ilog2(le32_to_cpu(otus_desc->feature_set)) >= | ||
227 | __CARL9170FW_FEATURE_NUM) { | ||
228 | dev_warn(&ar->udev->dev, "driver does not support all " | ||
229 | "firmware features.\n"); | ||
230 | } | ||
231 | |||
232 | if (!SUPP(CARL9170FW_COMMAND_CAM)) { | ||
233 | dev_info(&ar->udev->dev, "crypto offloading is disabled " | ||
234 | "by firmware.\n"); | ||
235 | ar->disable_offload = true; | ||
236 | } | ||
237 | |||
238 | if (SUPP(CARL9170FW_PSM)) | ||
239 | ar->hw->flags |= IEEE80211_HW_SUPPORTS_PS; | ||
240 | |||
241 | if (!SUPP(CARL9170FW_USB_INIT_FIRMWARE)) { | ||
242 | dev_err(&ar->udev->dev, "firmware does not provide " | ||
243 | "mandatory interfaces.\n"); | ||
244 | return -EINVAL; | ||
245 | } | ||
246 | |||
247 | if (SUPP(CARL9170FW_MINIBOOT)) | ||
248 | ar->fw.offset = le16_to_cpu(otus_desc->miniboot_size); | ||
249 | else | ||
250 | ar->fw.offset = 0; | ||
251 | |||
252 | if (SUPP(CARL9170FW_USB_DOWN_STREAM)) { | ||
253 | ar->hw->extra_tx_headroom += sizeof(struct ar9170_stream); | ||
254 | ar->fw.tx_stream = true; | ||
255 | } | ||
256 | |||
257 | if (SUPP(CARL9170FW_USB_UP_STREAM)) | ||
258 | ar->fw.rx_stream = true; | ||
259 | |||
260 | ar->fw.vif_num = otus_desc->vif_num; | ||
261 | ar->fw.cmd_bufs = otus_desc->cmd_bufs; | ||
262 | ar->fw.address = le32_to_cpu(otus_desc->fw_address); | ||
263 | ar->fw.rx_size = le16_to_cpu(otus_desc->rx_max_frame_len); | ||
264 | ar->fw.mem_blocks = min_t(unsigned int, otus_desc->tx_descs, 0xfe); | ||
265 | atomic_set(&ar->mem_free_blocks, ar->fw.mem_blocks); | ||
266 | ar->fw.mem_block_size = le16_to_cpu(otus_desc->tx_frag_len); | ||
267 | |||
268 | if (ar->fw.vif_num >= AR9170_MAX_VIRTUAL_MAC || !ar->fw.vif_num || | ||
269 | ar->fw.mem_blocks < 16 || !ar->fw.cmd_bufs || | ||
270 | ar->fw.mem_block_size < 64 || ar->fw.mem_block_size > 512 || | ||
271 | ar->fw.rx_size > 32768 || ar->fw.rx_size < 4096 || | ||
272 | !valid_cpu_addr(ar->fw.address)) { | ||
273 | dev_err(&ar->udev->dev, "firmware shows obvious signs of " | ||
274 | "malicious tampering.\n"); | ||
275 | return -EINVAL; | ||
276 | } | ||
277 | |||
278 | ar->fw.beacon_addr = le32_to_cpu(otus_desc->bcn_addr); | ||
279 | ar->fw.beacon_max_len = le16_to_cpu(otus_desc->bcn_len); | ||
280 | |||
281 | if (valid_dma_addr(ar->fw.beacon_addr) && ar->fw.beacon_max_len >= | ||
282 | AR9170_MAC_BCN_LENGTH_MAX) { | ||
283 | ar->hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_ADHOC); | ||
284 | |||
285 | if (SUPP(CARL9170FW_WLANTX_CAB)) { | ||
286 | ar->hw->wiphy->interface_modes |= | ||
287 | BIT(NL80211_IFTYPE_AP); | ||
288 | } | ||
289 | } | ||
290 | |||
291 | #undef SUPPORTED | ||
292 | return 0; | ||
293 | } | ||
294 | |||
295 | static struct carl9170fw_desc_head * | ||
296 | carl9170_find_fw_desc(struct ar9170 *ar, const __u8 *fw_data, const size_t len) | ||
297 | |||
298 | { | ||
299 | int scan = 0, found = 0; | ||
300 | |||
301 | if (!carl9170fw_size_check(len)) { | ||
302 | dev_err(&ar->udev->dev, "firmware size is out of bound.\n"); | ||
303 | return NULL; | ||
304 | } | ||
305 | |||
306 | while (scan < len - sizeof(struct carl9170fw_desc_head)) { | ||
307 | if (fw_data[scan++] == otus_magic[found]) | ||
308 | found++; | ||
309 | else | ||
310 | found = 0; | ||
311 | |||
312 | if (scan >= len) | ||
313 | break; | ||
314 | |||
315 | if (found == sizeof(otus_magic)) | ||
316 | break; | ||
317 | } | ||
318 | |||
319 | if (found != sizeof(otus_magic)) | ||
320 | return NULL; | ||
321 | |||
322 | return (void *)&fw_data[scan - found]; | ||
323 | } | ||
324 | |||
325 | int carl9170_fw_fix_eeprom(struct ar9170 *ar) | ||
326 | { | ||
327 | const struct carl9170fw_fix_desc *fix_desc = NULL; | ||
328 | unsigned int i, n, off; | ||
329 | u32 *data = (void *)&ar->eeprom; | ||
330 | |||
331 | fix_desc = carl9170_fw_find_desc(ar, FIX_MAGIC, | ||
332 | sizeof(*fix_desc), CARL9170FW_FIX_DESC_CUR_VER); | ||
333 | |||
334 | if (!fix_desc) | ||
335 | return 0; | ||
336 | |||
337 | n = (le16_to_cpu(fix_desc->head.length) - sizeof(*fix_desc)) / | ||
338 | sizeof(struct carl9170fw_fix_entry); | ||
339 | |||
340 | for (i = 0; i < n; i++) { | ||
341 | off = le32_to_cpu(fix_desc->data[i].address) - | ||
342 | AR9170_EEPROM_START; | ||
343 | |||
344 | if (off >= sizeof(struct ar9170_eeprom) || (off & 3)) { | ||
345 | dev_err(&ar->udev->dev, "Skip invalid entry %d\n", i); | ||
346 | continue; | ||
347 | } | ||
348 | |||
349 | data[off / sizeof(*data)] &= | ||
350 | le32_to_cpu(fix_desc->data[i].mask); | ||
351 | data[off / sizeof(*data)] |= | ||
352 | le32_to_cpu(fix_desc->data[i].value); | ||
353 | } | ||
354 | |||
355 | return 0; | ||
356 | } | ||
357 | |||
358 | int carl9170_parse_firmware(struct ar9170 *ar) | ||
359 | { | ||
360 | const struct carl9170fw_desc_head *fw_desc = NULL; | ||
361 | const struct firmware *fw = ar->fw.fw; | ||
362 | unsigned long header_offset = 0; | ||
363 | int err; | ||
364 | |||
365 | if (WARN_ON(!fw)) | ||
366 | return -EINVAL; | ||
367 | |||
368 | fw_desc = carl9170_find_fw_desc(ar, fw->data, fw->size); | ||
369 | |||
370 | if (!fw_desc) { | ||
371 | dev_err(&ar->udev->dev, "unsupported firmware.\n"); | ||
372 | return -ENODATA; | ||
373 | } | ||
374 | |||
375 | header_offset = (unsigned long)fw_desc - (unsigned long)fw->data; | ||
376 | |||
377 | err = carl9170_fw_verify_descs(ar, fw_desc, fw->size - header_offset); | ||
378 | if (err) { | ||
379 | dev_err(&ar->udev->dev, "damaged firmware (%d).\n", err); | ||
380 | return err; | ||
381 | } | ||
382 | |||
383 | ar->fw.desc = fw_desc; | ||
384 | |||
385 | carl9170_fw_info(ar); | ||
386 | |||
387 | err = carl9170_fw(ar, fw->data, fw->size); | ||
388 | if (err) { | ||
389 | dev_err(&ar->udev->dev, "failed to parse firmware (%d).\n", | ||
390 | err); | ||
391 | return err; | ||
392 | } | ||
393 | |||
394 | return 0; | ||
395 | } | ||