blob: 94e177d7c9b54a657f6daa7a6073a842254823ce [file] [log] [blame]
Hante Meulemana74d0362014-01-13 22:20:22 +01001/*
2 * Copyright (c) 2013 Broadcom Corporation
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 ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/kernel.h>
18#include <linux/slab.h>
Arend van Sprielc1416e72014-05-27 12:56:21 +020019#include <linux/device.h>
Hante Meulemana74d0362014-01-13 22:20:22 +010020#include <linux/firmware.h>
Daniel Kimc1b20532014-07-12 08:49:37 +020021#include <linux/module.h>
Hante Meuleman4e70f212015-08-20 22:06:08 +020022#include <linux/bcm47xx_nvram.h>
Hante Meulemana74d0362014-01-13 22:20:22 +010023
Hante Meulemana8e8ed32014-10-28 14:56:13 +010024#include "debug.h"
Arend van Sprieldabedab2014-05-27 12:56:17 +020025#include "firmware.h"
Hante Meuleman7d34b052016-01-02 09:41:41 +010026#include "core.h"
27#include "common.h"
Arend Van Sprielc88cfa072018-03-22 21:28:22 +010028#include "chip.h"
Hante Meulemana74d0362014-01-13 22:20:22 +010029
Hante Meulemanc4365532015-04-14 20:10:33 +020030#define BRCMF_FW_MAX_NVRAM_SIZE 64000
31#define BRCMF_FW_NVRAM_DEVPATH_LEN 19 /* devpath0=pcie/1/4/ */
Rafał Miłeckiae8c2362015-05-20 09:34:21 +020032#define BRCMF_FW_NVRAM_PCIEDEV_LEN 10 /* pcie/1/4/ + \0 */
Hante Meuleman46f2b382016-04-11 11:35:23 +020033#define BRCMF_FW_DEFAULT_BOARDREV "boardrev=0xff"
Hante Meulemanc4365532015-04-14 20:10:33 +020034
Arend van Spriel3e99b082014-05-12 10:47:31 +020035enum nvram_parser_state {
36 IDLE,
37 KEY,
38 VALUE,
39 COMMENT,
40 END
41};
42
43/**
44 * struct nvram_parser - internal info for parser.
45 *
46 * @state: current parser state.
Rafał Miłecki11f09d42015-06-04 22:11:07 +020047 * @data: input buffer being parsed.
Arend van Spriel3e99b082014-05-12 10:47:31 +020048 * @nvram: output buffer with parse result.
49 * @nvram_len: lenght of parse result.
50 * @line: current line.
51 * @column: current column in line.
52 * @pos: byte offset in input buffer.
53 * @entry: start position of key,value entry.
Hante Meulemanc4365532015-04-14 20:10:33 +020054 * @multi_dev_v1: detect pcie multi device v1 (compressed).
55 * @multi_dev_v2: detect pcie multi device v2.
Hante Meuleman46f2b382016-04-11 11:35:23 +020056 * @boardrev_found: nvram contains boardrev information.
Arend van Spriel3e99b082014-05-12 10:47:31 +020057 */
58struct nvram_parser {
59 enum nvram_parser_state state;
Rafał Miłecki11f09d42015-06-04 22:11:07 +020060 const u8 *data;
Arend van Spriel3e99b082014-05-12 10:47:31 +020061 u8 *nvram;
62 u32 nvram_len;
63 u32 line;
64 u32 column;
65 u32 pos;
66 u32 entry;
Hante Meulemanc4365532015-04-14 20:10:33 +020067 bool multi_dev_v1;
68 bool multi_dev_v2;
Hante Meuleman46f2b382016-04-11 11:35:23 +020069 bool boardrev_found;
Arend van Spriel3e99b082014-05-12 10:47:31 +020070};
71
Rafał Miłeckifc23e812015-05-23 09:15:33 +020072/**
73 * is_nvram_char() - check if char is a valid one for NVRAM entry
74 *
75 * It accepts all printable ASCII chars except for '#' which opens a comment.
76 * Please note that ' ' (space) while accepted is not a valid key name char.
77 */
Arend van Spriel3e99b082014-05-12 10:47:31 +020078static bool is_nvram_char(char c)
79{
80 /* comment marker excluded */
81 if (c == '#')
82 return false;
83
84 /* key and value may have any other readable character */
Rafał Miłeckifc23e812015-05-23 09:15:33 +020085 return (c >= 0x20 && c < 0x7f);
Arend van Spriel3e99b082014-05-12 10:47:31 +020086}
87
88static bool is_whitespace(char c)
89{
90 return (c == ' ' || c == '\r' || c == '\n' || c == '\t');
91}
92
93static enum nvram_parser_state brcmf_nvram_handle_idle(struct nvram_parser *nvp)
94{
95 char c;
96
Rafał Miłecki11f09d42015-06-04 22:11:07 +020097 c = nvp->data[nvp->pos];
Arend van Spriel3e99b082014-05-12 10:47:31 +020098 if (c == '\n')
99 return COMMENT;
Rafał Miłeckid1e61b82016-01-31 12:14:34 +0100100 if (is_whitespace(c) || c == '\0')
Arend van Spriel3e99b082014-05-12 10:47:31 +0200101 goto proceed;
102 if (c == '#')
103 return COMMENT;
104 if (is_nvram_char(c)) {
105 nvp->entry = nvp->pos;
106 return KEY;
107 }
108 brcmf_dbg(INFO, "warning: ln=%d:col=%d: ignoring invalid character\n",
109 nvp->line, nvp->column);
110proceed:
111 nvp->column++;
112 nvp->pos++;
113 return IDLE;
114}
115
116static enum nvram_parser_state brcmf_nvram_handle_key(struct nvram_parser *nvp)
117{
118 enum nvram_parser_state st = nvp->state;
119 char c;
120
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200121 c = nvp->data[nvp->pos];
Arend van Spriel3e99b082014-05-12 10:47:31 +0200122 if (c == '=') {
Arend van Spriel4165fe92015-01-25 20:31:43 +0100123 /* ignore RAW1 by treating as comment */
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200124 if (strncmp(&nvp->data[nvp->entry], "RAW1", 4) == 0)
Arend van Spriel4165fe92015-01-25 20:31:43 +0100125 st = COMMENT;
126 else
127 st = VALUE;
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200128 if (strncmp(&nvp->data[nvp->entry], "devpath", 7) == 0)
Hante Meulemanc4365532015-04-14 20:10:33 +0200129 nvp->multi_dev_v1 = true;
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200130 if (strncmp(&nvp->data[nvp->entry], "pcie/", 5) == 0)
Hante Meulemanc4365532015-04-14 20:10:33 +0200131 nvp->multi_dev_v2 = true;
Hante Meuleman46f2b382016-04-11 11:35:23 +0200132 if (strncmp(&nvp->data[nvp->entry], "boardrev", 8) == 0)
133 nvp->boardrev_found = true;
Rafał Miłeckifc23e812015-05-23 09:15:33 +0200134 } else if (!is_nvram_char(c) || c == ' ') {
Arend van Spriel3e99b082014-05-12 10:47:31 +0200135 brcmf_dbg(INFO, "warning: ln=%d:col=%d: '=' expected, skip invalid key entry\n",
136 nvp->line, nvp->column);
137 return COMMENT;
138 }
139
140 nvp->column++;
141 nvp->pos++;
142 return st;
143}
144
145static enum nvram_parser_state
146brcmf_nvram_handle_value(struct nvram_parser *nvp)
147{
148 char c;
149 char *skv;
150 char *ekv;
151 u32 cplen;
152
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200153 c = nvp->data[nvp->pos];
Arend van Spriel3e99b082014-05-12 10:47:31 +0200154 if (!is_nvram_char(c)) {
155 /* key,value pair complete */
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200156 ekv = (u8 *)&nvp->data[nvp->pos];
157 skv = (u8 *)&nvp->data[nvp->entry];
Arend van Spriel3e99b082014-05-12 10:47:31 +0200158 cplen = ekv - skv;
Hante Meulemanc4365532015-04-14 20:10:33 +0200159 if (nvp->nvram_len + cplen + 1 >= BRCMF_FW_MAX_NVRAM_SIZE)
160 return END;
Arend van Spriel3e99b082014-05-12 10:47:31 +0200161 /* copy to output buffer */
162 memcpy(&nvp->nvram[nvp->nvram_len], skv, cplen);
163 nvp->nvram_len += cplen;
164 nvp->nvram[nvp->nvram_len] = '\0';
165 nvp->nvram_len++;
166 return IDLE;
167 }
168 nvp->pos++;
169 nvp->column++;
170 return VALUE;
171}
172
173static enum nvram_parser_state
174brcmf_nvram_handle_comment(struct nvram_parser *nvp)
175{
Rafał Miłecki279b4cb2015-05-20 13:59:54 +0200176 char *eoc, *sol;
Arend van Spriel3e99b082014-05-12 10:47:31 +0200177
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200178 sol = (char *)&nvp->data[nvp->pos];
Rafał Miłecki279b4cb2015-05-20 13:59:54 +0200179 eoc = strchr(sol, '\n');
180 if (!eoc) {
181 eoc = strchr(sol, '\0');
182 if (!eoc)
183 return END;
184 }
Arend van Spriel3e99b082014-05-12 10:47:31 +0200185
186 /* eat all moving to next line */
187 nvp->line++;
188 nvp->column = 1;
Rafał Miłecki279b4cb2015-05-20 13:59:54 +0200189 nvp->pos += (eoc - sol) + 1;
Arend van Spriel3e99b082014-05-12 10:47:31 +0200190 return IDLE;
191}
192
193static enum nvram_parser_state brcmf_nvram_handle_end(struct nvram_parser *nvp)
194{
195 /* final state */
196 return END;
197}
198
199static enum nvram_parser_state
200(*nv_parser_states[])(struct nvram_parser *nvp) = {
201 brcmf_nvram_handle_idle,
202 brcmf_nvram_handle_key,
203 brcmf_nvram_handle_value,
204 brcmf_nvram_handle_comment,
205 brcmf_nvram_handle_end
206};
207
208static int brcmf_init_nvram_parser(struct nvram_parser *nvp,
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200209 const u8 *data, size_t data_len)
Arend van Spriel3e99b082014-05-12 10:47:31 +0200210{
Hante Meulemanc4365532015-04-14 20:10:33 +0200211 size_t size;
212
Arend van Spriel3e99b082014-05-12 10:47:31 +0200213 memset(nvp, 0, sizeof(*nvp));
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200214 nvp->data = data;
Hante Meulemanc4365532015-04-14 20:10:33 +0200215 /* Limit size to MAX_NVRAM_SIZE, some files contain lot of comment */
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200216 if (data_len > BRCMF_FW_MAX_NVRAM_SIZE)
Hante Meulemanc4365532015-04-14 20:10:33 +0200217 size = BRCMF_FW_MAX_NVRAM_SIZE;
218 else
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200219 size = data_len;
Arend van Spriel3e99b082014-05-12 10:47:31 +0200220 /* Alloc for extra 0 byte + roundup by 4 + length field */
Hante Meulemanc4365532015-04-14 20:10:33 +0200221 size += 1 + 3 + sizeof(u32);
222 nvp->nvram = kzalloc(size, GFP_KERNEL);
Arend van Spriel3e99b082014-05-12 10:47:31 +0200223 if (!nvp->nvram)
224 return -ENOMEM;
225
226 nvp->line = 1;
227 nvp->column = 1;
228 return 0;
229}
230
Hante Meulemanc4365532015-04-14 20:10:33 +0200231/* brcmf_fw_strip_multi_v1 :Some nvram files contain settings for multiple
232 * devices. Strip it down for one device, use domain_nr/bus_nr to determine
233 * which data is to be returned. v1 is the version where nvram is stored
234 * compressed and "devpath" maps to index for valid entries.
235 */
236static void brcmf_fw_strip_multi_v1(struct nvram_parser *nvp, u16 domain_nr,
237 u16 bus_nr)
238{
Rafał Miłecki5d084082015-05-20 11:01:08 +0200239 /* Device path with a leading '=' key-value separator */
Rafał Miłeckif33d5912015-05-28 14:19:21 +0200240 char pci_path[] = "=pci/?/?";
241 size_t pci_len;
Rafał Miłecki5d084082015-05-20 11:01:08 +0200242 char pcie_path[] = "=pcie/?/?";
243 size_t pcie_len;
244
Hante Meulemanc4365532015-04-14 20:10:33 +0200245 u32 i, j;
246 bool found;
247 u8 *nvram;
248 u8 id;
249
250 nvram = kzalloc(nvp->nvram_len + 1 + 3 + sizeof(u32), GFP_KERNEL);
251 if (!nvram)
252 goto fail;
253
254 /* min length: devpath0=pcie/1/4/ + 0:x=y */
255 if (nvp->nvram_len < BRCMF_FW_NVRAM_DEVPATH_LEN + 6)
256 goto fail;
257
258 /* First search for the devpathX and see if it is the configuration
259 * for domain_nr/bus_nr. Search complete nvp
260 */
Rafał Miłeckif33d5912015-05-28 14:19:21 +0200261 snprintf(pci_path, sizeof(pci_path), "=pci/%d/%d", domain_nr,
262 bus_nr);
263 pci_len = strlen(pci_path);
Rafał Miłecki5d084082015-05-20 11:01:08 +0200264 snprintf(pcie_path, sizeof(pcie_path), "=pcie/%d/%d", domain_nr,
265 bus_nr);
266 pcie_len = strlen(pcie_path);
Hante Meulemanc4365532015-04-14 20:10:33 +0200267 found = false;
268 i = 0;
269 while (i < nvp->nvram_len - BRCMF_FW_NVRAM_DEVPATH_LEN) {
270 /* Format: devpathX=pcie/Y/Z/
271 * Y = domain_nr, Z = bus_nr, X = virtual ID
272 */
Rafał Miłeckif33d5912015-05-28 14:19:21 +0200273 if (strncmp(&nvp->nvram[i], "devpath", 7) == 0 &&
274 (!strncmp(&nvp->nvram[i + 8], pci_path, pci_len) ||
275 !strncmp(&nvp->nvram[i + 8], pcie_path, pcie_len))) {
Rafał Miłecki5d084082015-05-20 11:01:08 +0200276 id = nvp->nvram[i + 7] - '0';
277 found = true;
278 break;
Hante Meulemanc4365532015-04-14 20:10:33 +0200279 }
280 while (nvp->nvram[i] != 0)
281 i++;
282 i++;
283 }
284 if (!found)
285 goto fail;
286
287 /* Now copy all valid entries, release old nvram and assign new one */
288 i = 0;
289 j = 0;
290 while (i < nvp->nvram_len) {
291 if ((nvp->nvram[i] - '0' == id) && (nvp->nvram[i + 1] == ':')) {
292 i += 2;
Hante Meuleman46f2b382016-04-11 11:35:23 +0200293 if (strncmp(&nvp->nvram[i], "boardrev", 8) == 0)
294 nvp->boardrev_found = true;
Hante Meulemanc4365532015-04-14 20:10:33 +0200295 while (nvp->nvram[i] != 0) {
296 nvram[j] = nvp->nvram[i];
297 i++;
298 j++;
299 }
300 nvram[j] = 0;
301 j++;
302 }
303 while (nvp->nvram[i] != 0)
304 i++;
305 i++;
306 }
307 kfree(nvp->nvram);
308 nvp->nvram = nvram;
309 nvp->nvram_len = j;
310 return;
311
312fail:
313 kfree(nvram);
314 nvp->nvram_len = 0;
315}
316
317/* brcmf_fw_strip_multi_v2 :Some nvram files contain settings for multiple
318 * devices. Strip it down for one device, use domain_nr/bus_nr to determine
319 * which data is to be returned. v2 is the version where nvram is stored
320 * uncompressed, all relevant valid entries are identified by
321 * pcie/domain_nr/bus_nr:
322 */
323static void brcmf_fw_strip_multi_v2(struct nvram_parser *nvp, u16 domain_nr,
324 u16 bus_nr)
325{
Rafał Miłeckiae8c2362015-05-20 09:34:21 +0200326 char prefix[BRCMF_FW_NVRAM_PCIEDEV_LEN];
327 size_t len;
Hante Meulemanc4365532015-04-14 20:10:33 +0200328 u32 i, j;
329 u8 *nvram;
330
331 nvram = kzalloc(nvp->nvram_len + 1 + 3 + sizeof(u32), GFP_KERNEL);
332 if (!nvram)
333 goto fail;
334
335 /* Copy all valid entries, release old nvram and assign new one.
336 * Valid entries are of type pcie/X/Y/ where X = domain_nr and
337 * Y = bus_nr.
338 */
Rafał Miłeckiae8c2362015-05-20 09:34:21 +0200339 snprintf(prefix, sizeof(prefix), "pcie/%d/%d/", domain_nr, bus_nr);
340 len = strlen(prefix);
Hante Meulemanc4365532015-04-14 20:10:33 +0200341 i = 0;
342 j = 0;
Rafał Miłeckiae8c2362015-05-20 09:34:21 +0200343 while (i < nvp->nvram_len - len) {
344 if (strncmp(&nvp->nvram[i], prefix, len) == 0) {
345 i += len;
Hante Meuleman46f2b382016-04-11 11:35:23 +0200346 if (strncmp(&nvp->nvram[i], "boardrev", 8) == 0)
347 nvp->boardrev_found = true;
Hante Meulemanc4365532015-04-14 20:10:33 +0200348 while (nvp->nvram[i] != 0) {
349 nvram[j] = nvp->nvram[i];
350 i++;
351 j++;
352 }
353 nvram[j] = 0;
354 j++;
355 }
356 while (nvp->nvram[i] != 0)
357 i++;
358 i++;
359 }
360 kfree(nvp->nvram);
361 nvp->nvram = nvram;
362 nvp->nvram_len = j;
363 return;
364fail:
365 kfree(nvram);
366 nvp->nvram_len = 0;
367}
368
Hante Meuleman46f2b382016-04-11 11:35:23 +0200369static void brcmf_fw_add_defaults(struct nvram_parser *nvp)
370{
371 if (nvp->boardrev_found)
372 return;
373
374 memcpy(&nvp->nvram[nvp->nvram_len], &BRCMF_FW_DEFAULT_BOARDREV,
375 strlen(BRCMF_FW_DEFAULT_BOARDREV));
376 nvp->nvram_len += strlen(BRCMF_FW_DEFAULT_BOARDREV);
377 nvp->nvram[nvp->nvram_len] = '\0';
378 nvp->nvram_len++;
379}
380
Arend van Spriel3e99b082014-05-12 10:47:31 +0200381/* brcmf_nvram_strip :Takes a buffer of "<var>=<value>\n" lines read from a fil
Hante Meulemana74d0362014-01-13 22:20:22 +0100382 * and ending in a NUL. Removes carriage returns, empty lines, comment lines,
383 * and converts newlines to NULs. Shortens buffer as needed and pads with NULs.
384 * End of buffer is completed with token identifying length of buffer.
385 */
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200386static void *brcmf_fw_nvram_strip(const u8 *data, size_t data_len,
387 u32 *new_length, u16 domain_nr, u16 bus_nr)
Hante Meulemana74d0362014-01-13 22:20:22 +0100388{
Arend van Spriel3e99b082014-05-12 10:47:31 +0200389 struct nvram_parser nvp;
390 u32 pad;
Hante Meulemana74d0362014-01-13 22:20:22 +0100391 u32 token;
392 __le32 token_le;
393
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200394 if (brcmf_init_nvram_parser(&nvp, data, data_len) < 0)
Hante Meulemana74d0362014-01-13 22:20:22 +0100395 return NULL;
396
Rafał Miłecki11f09d42015-06-04 22:11:07 +0200397 while (nvp.pos < data_len) {
Arend van Spriel3e99b082014-05-12 10:47:31 +0200398 nvp.state = nv_parser_states[nvp.state](&nvp);
399 if (nvp.state == END)
Hante Meulemana74d0362014-01-13 22:20:22 +0100400 break;
Hante Meulemana74d0362014-01-13 22:20:22 +0100401 }
Hante Meuleman46f2b382016-04-11 11:35:23 +0200402 if (nvp.multi_dev_v1) {
403 nvp.boardrev_found = false;
Hante Meulemanc4365532015-04-14 20:10:33 +0200404 brcmf_fw_strip_multi_v1(&nvp, domain_nr, bus_nr);
Hante Meuleman46f2b382016-04-11 11:35:23 +0200405 } else if (nvp.multi_dev_v2) {
406 nvp.boardrev_found = false;
Hante Meulemanc4365532015-04-14 20:10:33 +0200407 brcmf_fw_strip_multi_v2(&nvp, domain_nr, bus_nr);
Hante Meuleman46f2b382016-04-11 11:35:23 +0200408 }
Hante Meulemanc4365532015-04-14 20:10:33 +0200409
410 if (nvp.nvram_len == 0) {
411 kfree(nvp.nvram);
412 return NULL;
413 }
414
Hante Meuleman46f2b382016-04-11 11:35:23 +0200415 brcmf_fw_add_defaults(&nvp);
416
Arend van Spriel3e99b082014-05-12 10:47:31 +0200417 pad = nvp.nvram_len;
418 *new_length = roundup(nvp.nvram_len + 1, 4);
419 while (pad != *new_length) {
420 nvp.nvram[pad] = 0;
421 pad++;
Hante Meulemana74d0362014-01-13 22:20:22 +0100422 }
423
424 token = *new_length / 4;
425 token = (~token << 16) | (token & 0x0000FFFF);
426 token_le = cpu_to_le32(token);
427
Arend van Spriel3e99b082014-05-12 10:47:31 +0200428 memcpy(&nvp.nvram[*new_length], &token_le, sizeof(token_le));
Hante Meulemana74d0362014-01-13 22:20:22 +0100429 *new_length += sizeof(token_le);
430
Arend van Spriel3e99b082014-05-12 10:47:31 +0200431 return nvp.nvram;
Hante Meulemana74d0362014-01-13 22:20:22 +0100432}
433
Arend van Sprieldabedab2014-05-27 12:56:17 +0200434void brcmf_fw_nvram_free(void *nvram)
Hante Meulemana74d0362014-01-13 22:20:22 +0100435{
436 kfree(nvram);
437}
438
Arend van Sprielc1416e72014-05-27 12:56:21 +0200439struct brcmf_fw {
440 struct device *dev;
Arend Van Sprield09ae512018-03-22 21:28:26 +0100441 struct brcmf_fw_request *req;
442 u32 curpos;
443 void (*done)(struct device *dev, int err, struct brcmf_fw_request *req);
Arend van Sprielc1416e72014-05-27 12:56:21 +0200444};
445
Arend Van Sprield09ae512018-03-22 21:28:26 +0100446static void brcmf_fw_request_done(const struct firmware *fw, void *ctx);
447
448static void brcmf_fw_free_request(struct brcmf_fw_request *req)
449{
450 struct brcmf_fw_item *item;
451 int i;
452
453 for (i = 0, item = &req->items[0]; i < req->n_items; i++, item++) {
454 if (item->type == BRCMF_FW_TYPE_BINARY)
455 release_firmware(item->binary);
456 else if (item->type == BRCMF_FW_TYPE_NVRAM)
457 brcmf_fw_nvram_free(item->nv_data.data);
458 }
459 kfree(req);
460}
461
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200462static int brcmf_fw_request_nvram_done(const struct firmware *fw, void *ctx)
Arend van Sprielc1416e72014-05-27 12:56:21 +0200463{
464 struct brcmf_fw *fwctx = ctx;
Arend Van Sprield09ae512018-03-22 21:28:26 +0100465 struct brcmf_fw_item *cur;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200466 u32 nvram_length = 0;
467 void *nvram = NULL;
Hante Meuleman4e70f212015-08-20 22:06:08 +0200468 u8 *data = NULL;
469 size_t data_len;
470 bool raw_nvram;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200471
472 brcmf_dbg(TRACE, "enter: dev=%s\n", dev_name(fwctx->dev));
Arend Van Sprield09ae512018-03-22 21:28:26 +0100473
474 cur = &fwctx->req->items[fwctx->curpos];
475
Hante Meuleman4e70f212015-08-20 22:06:08 +0200476 if (fw && fw->data) {
477 data = (u8 *)fw->data;
478 data_len = fw->size;
479 raw_nvram = false;
480 } else {
481 data = bcm47xx_nvram_get_contents(&data_len);
Arend Van Sprield09ae512018-03-22 21:28:26 +0100482 if (!data && !(cur->flags & BRCMF_FW_REQF_OPTIONAL))
Arend van Sprielc1416e72014-05-27 12:56:21 +0200483 goto fail;
Hante Meuleman4e70f212015-08-20 22:06:08 +0200484 raw_nvram = true;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200485 }
486
Hante Meuleman4e70f212015-08-20 22:06:08 +0200487 if (data)
488 nvram = brcmf_fw_nvram_strip(data, data_len, &nvram_length,
Arend Van Sprield09ae512018-03-22 21:28:26 +0100489 fwctx->req->domain_nr,
490 fwctx->req->bus_nr);
Hante Meuleman4e70f212015-08-20 22:06:08 +0200491
492 if (raw_nvram)
493 bcm47xx_nvram_release_contents(data);
Markus Elfring21ba0052015-11-06 08:48:23 +0100494 release_firmware(fw);
Arend Van Sprield09ae512018-03-22 21:28:26 +0100495 if (!nvram && !(cur->flags & BRCMF_FW_REQF_OPTIONAL))
Hante Meuleman4e70f212015-08-20 22:06:08 +0200496 goto fail;
497
Arend Van Sprield09ae512018-03-22 21:28:26 +0100498 brcmf_dbg(TRACE, "nvram %p len %d\n", nvram, nvram_length);
499 cur->nv_data.data = nvram;
500 cur->nv_data.len = nvram_length;
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200501 return 0;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200502
503fail:
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200504 return -ENOENT;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200505}
506
Arend Van Sprield09ae512018-03-22 21:28:26 +0100507static int brcmf_fw_request_next_item(struct brcmf_fw *fwctx, bool async)
508{
509 struct brcmf_fw_item *cur;
510 const struct firmware *fw = NULL;
511 int ret;
512
513 cur = &fwctx->req->items[fwctx->curpos];
514
515 brcmf_dbg(TRACE, "%srequest for %s\n", async ? "async " : "",
516 cur->path);
517
518 if (async)
519 ret = request_firmware_nowait(THIS_MODULE, true, cur->path,
520 fwctx->dev, GFP_KERNEL, fwctx,
521 brcmf_fw_request_done);
522 else
523 ret = request_firmware(&fw, cur->path, fwctx->dev);
524
525 if (ret < 0) {
526 brcmf_fw_request_done(NULL, fwctx);
527 } else if (!async && fw) {
528 brcmf_dbg(TRACE, "firmware %s %sfound\n", cur->path,
529 fw ? "" : "not ");
530 if (cur->type == BRCMF_FW_TYPE_BINARY)
531 cur->binary = fw;
532 else if (cur->type == BRCMF_FW_TYPE_NVRAM)
533 brcmf_fw_request_nvram_done(fw, fwctx);
534 else
535 release_firmware(fw);
536
537 return -EAGAIN;
538 }
539 return 0;
540}
541
542static void brcmf_fw_request_done(const struct firmware *fw, void *ctx)
Arend van Sprielc1416e72014-05-27 12:56:21 +0200543{
544 struct brcmf_fw *fwctx = ctx;
Arend Van Sprield09ae512018-03-22 21:28:26 +0100545 struct brcmf_fw_item *cur;
Arend Van Spriel03fb0e82017-06-12 12:47:33 +0100546 int ret = 0;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200547
Arend Van Sprield09ae512018-03-22 21:28:26 +0100548 cur = &fwctx->req->items[fwctx->curpos];
549
550 brcmf_dbg(TRACE, "enter: firmware %s %sfound\n", cur->path,
551 fw ? "" : "not ");
552
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200553 if (!fw)
Arend Van Spriel03fb0e82017-06-12 12:47:33 +0100554 ret = -ENOENT;
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200555
556 switch (cur->type) {
557 case BRCMF_FW_TYPE_NVRAM:
558 ret = brcmf_fw_request_nvram_done(fw, fwctx);
559 break;
560 case BRCMF_FW_TYPE_BINARY:
561 cur->binary = fw;
562 break;
563 default:
564 /* something fishy here so bail out early */
565 brcmf_err("unknown fw type: %d\n", cur->type);
566 release_firmware(fw);
567 ret = -EINVAL;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200568 goto fail;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200569 }
Arend Van Spriel03fb0e82017-06-12 12:47:33 +0100570
Arend Van Spriel0b5c0302018-04-03 10:18:15 +0200571 if (ret < 0 && !(cur->flags & BRCMF_FW_REQF_OPTIONAL))
572 goto fail;
573
Arend Van Sprield09ae512018-03-22 21:28:26 +0100574 do {
575 if (++fwctx->curpos == fwctx->req->n_items) {
576 ret = 0;
577 goto done;
578 }
Arend van Sprielc1416e72014-05-27 12:56:21 +0200579
Arend Van Sprield09ae512018-03-22 21:28:26 +0100580 ret = brcmf_fw_request_next_item(fwctx, false);
581 } while (ret == -EAGAIN);
582
Hante Meuleman4e70f212015-08-20 22:06:08 +0200583 return;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200584
Arend van Sprielc1416e72014-05-27 12:56:21 +0200585fail:
Arend Van Sprield09ae512018-03-22 21:28:26 +0100586 brcmf_dbg(TRACE, "failed err=%d: dev=%s, fw=%s\n", ret,
587 dev_name(fwctx->dev), cur->path);
588 brcmf_fw_free_request(fwctx->req);
589 fwctx->req = NULL;
Arend Van Spriel03fb0e82017-06-12 12:47:33 +0100590done:
Arend Van Sprield09ae512018-03-22 21:28:26 +0100591 fwctx->done(fwctx->dev, ret, fwctx->req);
Arend van Sprielc1416e72014-05-27 12:56:21 +0200592 kfree(fwctx);
593}
594
Arend Van Sprield09ae512018-03-22 21:28:26 +0100595static bool brcmf_fw_request_is_valid(struct brcmf_fw_request *req)
596{
597 struct brcmf_fw_item *item;
598 int i;
599
600 if (!req->n_items)
601 return false;
602
603 for (i = 0, item = &req->items[0]; i < req->n_items; i++, item++) {
604 if (!item->path)
605 return false;
606 }
607 return true;
608}
609
610int brcmf_fw_get_firmwares(struct device *dev, struct brcmf_fw_request *req,
611 void (*fw_cb)(struct device *dev, int err,
612 struct brcmf_fw_request *req))
Arend van Sprielc1416e72014-05-27 12:56:21 +0200613{
614 struct brcmf_fw *fwctx;
615
616 brcmf_dbg(TRACE, "enter: dev=%s\n", dev_name(dev));
Arend Van Sprield09ae512018-03-22 21:28:26 +0100617 if (!fw_cb)
Arend van Sprielc1416e72014-05-27 12:56:21 +0200618 return -EINVAL;
619
Arend Van Sprield09ae512018-03-22 21:28:26 +0100620 if (!brcmf_fw_request_is_valid(req))
Arend van Sprielc1416e72014-05-27 12:56:21 +0200621 return -EINVAL;
622
623 fwctx = kzalloc(sizeof(*fwctx), GFP_KERNEL);
624 if (!fwctx)
625 return -ENOMEM;
626
627 fwctx->dev = dev;
Arend Van Sprield09ae512018-03-22 21:28:26 +0100628 fwctx->req = req;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200629 fwctx->done = fw_cb;
Arend van Sprielc1416e72014-05-27 12:56:21 +0200630
Arend Van Sprield09ae512018-03-22 21:28:26 +0100631 brcmf_fw_request_next_item(fwctx, true);
632 return 0;
Hante Meulemanc4365532015-04-14 20:10:33 +0200633}
634
Arend Van Spriel2baa3aae2018-03-22 21:28:27 +0100635struct brcmf_fw_request *
636brcmf_fw_alloc_request(u32 chip, u32 chiprev,
637 struct brcmf_firmware_mapping mapping_table[],
638 u32 table_size, struct brcmf_fw_name *fwnames,
639 u32 n_fwnames)
640{
641 struct brcmf_fw_request *fwreq;
642 char chipname[12];
643 const char *mp_path;
644 u32 i, j;
645 char end;
646 size_t reqsz;
647
648 for (i = 0; i < table_size; i++) {
649 if (mapping_table[i].chipid == chip &&
650 mapping_table[i].revmask & BIT(chiprev))
651 break;
652 }
653
654 if (i == table_size) {
655 brcmf_err("Unknown chipid %d [%d]\n", chip, chiprev);
656 return NULL;
657 }
658
659 reqsz = sizeof(*fwreq) + n_fwnames * sizeof(struct brcmf_fw_item);
660 fwreq = kzalloc(reqsz, GFP_KERNEL);
661 if (!fwreq)
662 return NULL;
663
664 brcmf_chip_name(chip, chiprev, chipname, sizeof(chipname));
665
666 brcmf_info("using %s for chip %s\n",
667 mapping_table[i].fw_base, chipname);
668
669 mp_path = brcmf_mp_global.firmware_path;
670 end = mp_path[strlen(mp_path) - 1];
671 fwreq->n_items = n_fwnames;
672
673 for (j = 0; j < n_fwnames; j++) {
674 fwreq->items[j].path = fwnames[j].path;
675 /* check if firmware path is provided by module parameter */
676 if (brcmf_mp_global.firmware_path[0] != '\0') {
677 strlcpy(fwnames[j].path, mp_path,
678 BRCMF_FW_NAME_LEN);
679
680 if (end != '/') {
681 strlcat(fwnames[j].path, "/",
682 BRCMF_FW_NAME_LEN);
683 }
684 }
Arend Van Sprielbf291b72018-03-22 21:28:30 +0100685 strlcat(fwnames[j].path, mapping_table[i].fw_base,
686 BRCMF_FW_NAME_LEN);
687 strlcat(fwnames[j].path, fwnames[j].extension,
688 BRCMF_FW_NAME_LEN);
Arend Van Spriel2baa3aae2018-03-22 21:28:27 +0100689 fwreq->items[j].path = fwnames[j].path;
690 }
691
692 return fwreq;
693}