2 * Copyright (c) 2013 Broadcom Corporation
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.
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.
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <linux/firmware.h>
23 /* brcmf_nvram_strip :Takes a buffer of "<var>=<value>\n" lines read from a file
24 * and ending in a NUL. Removes carriage returns, empty lines, comment lines,
25 * and converts newlines to NULs. Shortens buffer as needed and pads with NULs.
26 * End of buffer is completed with token identifying length of buffer.
28 void *brcmf_nvram_strip(const struct firmware
*nv
, u32
*new_length
)
39 /* Alloc for extra 0 byte + roundup by 4 + length field */
40 nvram
= kmalloc(nv
->size
+ 1 + 3 + sizeof(token_le
), GFP_KERNEL
);
47 for (i
= 0; i
< nv
->size
; i
++) {
53 if (comment
&& (val
!= '\n'))
73 *new_length
= roundup(len
+ 1, 4);
74 while (column
!= *new_length
) {
79 token
= *new_length
/ 4;
80 token
= (~token
<< 16) | (token
& 0x0000FFFF);
81 token_le
= cpu_to_le32(token
);
83 memcpy(&nvram
[*new_length
], &token_le
, sizeof(token_le
));
84 *new_length
+= sizeof(token_le
);
89 void brcmf_nvram_free(void *nvram
)