1 // SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1)
2 /* from src/prism2/download/prism2dl.c
4 * utility for downloading prism2 images moved into kernelspace
6 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
7 * --------------------------------------------------------------------
11 * The contents of this file are subject to the Mozilla Public
12 * License Version 1.1 (the "License"); you may not use this file
13 * except in compliance with the License. You may obtain a copy of
14 * the License at http://www.mozilla.org/MPL/
16 * Software distributed under the License is distributed on an "AS
17 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
18 * implied. See the License for the specific language governing
19 * rights and limitations under the License.
21 * Alternatively, the contents of this file may be used under the
22 * terms of the GNU Public License version 2 (the "GPL"), in which
23 * case the provisions of the GPL are applicable instead of the
24 * above. If you wish to allow the use of your version of this file
25 * only under the terms of the GPL and not to allow others to use
26 * your version of this file under the MPL, indicate your decision
27 * by deleting the provisions above and replace them with the notice
28 * and other provisions required by the GPL. If you do not delete
29 * the provisions above, a recipient may use your version of this
30 * file under either the MPL or the GPL.
32 * --------------------------------------------------------------------
34 * Inquiries regarding the linux-wlan Open Source project can be
37 * AbsoluteValue Systems Inc.
39 * http://www.linux-wlan.com
41 * --------------------------------------------------------------------
43 * Portions of the development of this software were funded by
44 * Intersil Corporation as part of PRISM(R) chipset product development.
46 * --------------------------------------------------------------------
49 /*================================================================*/
51 #include <linux/ihex.h>
52 #include <linux/slab.h>
54 /*================================================================*/
57 #define PRISM2_USB_FWFILE "prism2_ru.fw"
58 MODULE_FIRMWARE(PRISM2_USB_FWFILE
);
60 #define S3DATA_MAX 5000
61 #define S3PLUG_MAX 200
65 #define S3ADDR_PLUG (0xff000000UL)
66 #define S3ADDR_CRC (0xff100000UL)
67 #define S3ADDR_INFO (0xff200000UL)
68 #define S3ADDR_START (0xff400000UL)
70 #define CHUNKS_MAX 100
72 #define WRITESIZE_MAX 4096
74 /*================================================================*/
100 struct hfa384x_compident version
;
101 struct hfa384x_caplevel compat
;
103 struct hfa384x_compident platform
;
108 u8 buf
[HFA384x_PDA_LEN_MAX
];
109 struct hfa384x_pdrec
*rec
[HFA384x_PDA_RECS_MAX
];
114 u32 addr
; /* start address */
115 u32 len
; /* in bytes */
116 u16 crc
; /* CRC value (if it falls at a chunk boundary) */
120 /*================================================================*/
121 /* Local Static Definitions */
123 /*----------------------------------------------------------------*/
124 /* s-record image processing */
127 static unsigned int ns3data
;
128 static struct s3datarec
*s3data
;
131 static unsigned int ns3plug
;
132 static struct s3plugrec s3plug
[S3PLUG_MAX
];
135 static unsigned int ns3crc
;
136 static struct s3crcrec s3crc
[S3CRC_MAX
];
139 static unsigned int ns3info
;
140 static struct s3inforec s3info
[S3INFO_MAX
];
142 /* S7 record (there _better_ be only one) */
143 static u32 startaddr
;
145 /* Load image chunks */
146 static unsigned int nfchunks
;
147 static struct imgchunk fchunk
[CHUNKS_MAX
];
149 /* Note that for the following pdrec_t arrays, the len and code */
150 /* fields are stored in HOST byte order. The mkpdrlist() function */
151 /* does the conversion. */
152 /*----------------------------------------------------------------*/
153 /* PDA, built from [card|newfile]+[addfile1+addfile2...] */
155 static struct pda pda
;
156 static struct hfa384x_compident nicid
;
157 static struct hfa384x_caplevel rfid
;
158 static struct hfa384x_caplevel macid
;
159 static struct hfa384x_caplevel priid
;
161 /*================================================================*/
162 /* Local Function Declarations */
164 static int prism2_fwapply(const struct ihex_binrec
*rfptr
,
165 struct wlandevice
*wlandev
);
167 static int read_fwfile(const struct ihex_binrec
*rfptr
);
169 static int mkimage(struct imgchunk
*clist
, unsigned int *ccnt
);
171 static int read_cardpda(struct pda
*pda
, struct wlandevice
*wlandev
);
173 static int mkpdrlist(struct pda
*pda
);
175 static int plugimage(struct imgchunk
*fchunk
, unsigned int nfchunks
,
176 struct s3plugrec
*s3plug
, unsigned int ns3plug
,
179 static int crcimage(struct imgchunk
*fchunk
, unsigned int nfchunks
,
180 struct s3crcrec
*s3crc
, unsigned int ns3crc
);
182 static int writeimage(struct wlandevice
*wlandev
, struct imgchunk
*fchunk
,
183 unsigned int nfchunks
);
185 static void free_chunks(struct imgchunk
*fchunk
, unsigned int *nfchunks
);
187 static void free_srecs(void);
189 static int validate_identity(void);
191 /*================================================================*/
192 /* Function Definitions */
194 /*----------------------------------------------------------------
197 * Try and get firmware into memory
200 * udev usb device structure
201 * wlandev wlan device structure
206 *----------------------------------------------------------------
208 static int prism2_fwtry(struct usb_device
*udev
, struct wlandevice
*wlandev
)
210 const struct firmware
*fw_entry
= NULL
;
212 netdev_info(wlandev
->netdev
, "prism2_usb: Checking for firmware %s\n",
214 if (request_ihex_firmware(&fw_entry
,
215 PRISM2_USB_FWFILE
, &udev
->dev
) != 0) {
216 netdev_info(wlandev
->netdev
,
217 "prism2_usb: Firmware not available, but not essential\n");
218 netdev_info(wlandev
->netdev
,
219 "prism2_usb: can continue to use card anyway.\n");
223 netdev_info(wlandev
->netdev
,
224 "prism2_usb: %s will be processed, size %zu\n",
225 PRISM2_USB_FWFILE
, fw_entry
->size
);
226 prism2_fwapply((const struct ihex_binrec
*)fw_entry
->data
, wlandev
);
228 release_firmware(fw_entry
);
232 /*----------------------------------------------------------------
235 * Apply the firmware loaded into memory
238 * rfptr firmware image in kernel memory
244 *----------------------------------------------------------------
246 static int prism2_fwapply(const struct ihex_binrec
*rfptr
,
247 struct wlandevice
*wlandev
)
249 signed int result
= 0;
250 struct p80211msg_dot11req_mibget getmsg
;
251 struct p80211itemd
*item
;
254 /* Initialize the data structures */
256 s3data
= kcalloc(S3DATA_MAX
, sizeof(*s3data
), GFP_KERNEL
);
263 memset(s3plug
, 0, sizeof(s3plug
));
265 memset(s3crc
, 0, sizeof(s3crc
));
267 memset(s3info
, 0, sizeof(s3info
));
271 memset(fchunk
, 0, sizeof(fchunk
));
272 memset(&nicid
, 0, sizeof(nicid
));
273 memset(&rfid
, 0, sizeof(rfid
));
274 memset(&macid
, 0, sizeof(macid
));
275 memset(&priid
, 0, sizeof(priid
));
277 /* clear the pda and add an initial END record */
278 memset(&pda
, 0, sizeof(pda
));
279 pda
.rec
[0] = (struct hfa384x_pdrec
*)pda
.buf
;
280 pda
.rec
[0]->len
= cpu_to_le16(2); /* len in words */
281 pda
.rec
[0]->code
= cpu_to_le16(HFA384x_PDR_END_OF_PDA
);
284 /*-----------------------------------------------------*/
285 /* Put card into fwload state */
286 prism2sta_ifstate(wlandev
, P80211ENUM_ifstate_fwload
);
288 /* Build the PDA we're going to use. */
289 if (read_cardpda(&pda
, wlandev
)) {
290 netdev_err(wlandev
->netdev
, "load_cardpda failed, exiting.\n");
295 /* read the card's PRI-SUP */
296 memset(&getmsg
, 0, sizeof(getmsg
));
297 getmsg
.msgcode
= DIDmsg_dot11req_mibget
;
298 getmsg
.msglen
= sizeof(getmsg
);
299 strcpy(getmsg
.devname
, wlandev
->name
);
301 getmsg
.mibattribute
.did
= DIDmsg_dot11req_mibget_mibattribute
;
302 getmsg
.mibattribute
.status
= P80211ENUM_msgitem_status_data_ok
;
303 getmsg
.resultcode
.did
= DIDmsg_dot11req_mibget_resultcode
;
304 getmsg
.resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
306 item
= (struct p80211itemd
*)getmsg
.mibattribute
.data
;
307 item
->did
= DIDmib_p2_p2NIC_p2PRISupRange
;
308 item
->status
= P80211ENUM_msgitem_status_no_value
;
310 data
= (u32
*)item
->data
;
312 /* DIDmsg_dot11req_mibget */
313 prism2mgmt_mibset_mibget(wlandev
, &getmsg
);
314 if (getmsg
.resultcode
.data
!= P80211ENUM_resultcode_success
)
315 netdev_err(wlandev
->netdev
, "Couldn't fetch PRI-SUP info\n");
317 /* Already in host order */
318 priid
.role
= *data
++;
320 priid
.variant
= *data
++;
321 priid
.bottom
= *data
++;
324 /* Read the S3 file */
325 result
= read_fwfile(rfptr
);
327 netdev_err(wlandev
->netdev
,
328 "Failed to read the data exiting.\n");
332 result
= validate_identity();
334 netdev_err(wlandev
->netdev
, "Incompatible firmware image.\n");
338 if (startaddr
== 0x00000000) {
339 netdev_err(wlandev
->netdev
,
340 "Can't RAM download a Flash image!\n");
345 /* Make the image chunks */
346 result
= mkimage(fchunk
, &nfchunks
);
348 netdev_err(wlandev
->netdev
, "Failed to make image chunk.\n");
352 /* Do any plugging */
353 result
= plugimage(fchunk
, nfchunks
, s3plug
, ns3plug
, &pda
);
355 netdev_err(wlandev
->netdev
, "Failed to plug data.\n");
359 /* Insert any CRCs */
360 result
= crcimage(fchunk
, nfchunks
, s3crc
, ns3crc
);
362 netdev_err(wlandev
->netdev
, "Failed to insert all CRCs\n");
366 /* Write the image */
367 result
= writeimage(wlandev
, fchunk
, nfchunks
);
369 netdev_err(wlandev
->netdev
, "Failed to ramwrite image data.\n");
373 netdev_info(wlandev
->netdev
, "prism2_usb: firmware loading finished.\n");
376 /* clear any allocated memory */
377 free_chunks(fchunk
, &nfchunks
);
384 /*----------------------------------------------------------------
387 * Adds a CRC16 in the two bytes prior to each block identified by
388 * an S3 CRC record. Currently, we don't actually do a CRC we just
389 * insert the value 0xC0DE in hfa384x order.
392 * fchunk Array of image chunks
393 * nfchunks Number of image chunks
394 * s3crc Array of crc records
395 * ns3crc Number of crc records
400 *----------------------------------------------------------------
402 static int crcimage(struct imgchunk
*fchunk
, unsigned int nfchunks
,
403 struct s3crcrec
*s3crc
, unsigned int ns3crc
)
415 for (i
= 0; i
< ns3crc
; i
++) {
416 if (!s3crc
[i
].dowrite
)
418 crcstart
= s3crc
[i
].addr
;
419 crcend
= s3crc
[i
].addr
+ s3crc
[i
].len
;
421 for (c
= 0; c
< nfchunks
; c
++) {
422 cstart
= fchunk
[c
].addr
;
423 cend
= fchunk
[c
].addr
+ fchunk
[c
].len
;
424 /* the line below does an address & len match search */
425 /* unfortunately, I've found that the len fields of */
426 /* some crc records don't match with the length of */
427 /* the actual data, so we're not checking right now */
428 /* if (crcstart-2 >= cstart && crcend <= cend) break; */
430 /* note the -2 below, it's to make sure the chunk has */
431 /* space for the CRC value */
432 if (crcstart
- 2 >= cstart
&& crcstart
< cend
)
436 pr_err("Failed to find chunk for crcrec[%d], addr=0x%06x len=%d , aborting crc.\n",
437 i
, s3crc
[i
].addr
, s3crc
[i
].len
);
442 pr_debug("Adding crc @ 0x%06x\n", s3crc
[i
].addr
- 2);
443 chunkoff
= crcstart
- cstart
- 2;
444 dest
= fchunk
[c
].data
+ chunkoff
;
451 /*----------------------------------------------------------------
454 * Clears the chunklist data structures in preparation for a new file.
461 *----------------------------------------------------------------
463 static void free_chunks(struct imgchunk
*fchunk
, unsigned int *nfchunks
)
467 for (i
= 0; i
< *nfchunks
; i
++)
468 kfree(fchunk
[i
].data
);
471 memset(fchunk
, 0, sizeof(*fchunk
));
474 /*----------------------------------------------------------------
477 * Clears the srec data structures in preparation for a new file.
484 *----------------------------------------------------------------
486 static void free_srecs(void)
491 memset(s3plug
, 0, sizeof(s3plug
));
493 memset(s3crc
, 0, sizeof(s3crc
));
495 memset(s3info
, 0, sizeof(s3info
));
499 /*----------------------------------------------------------------
502 * Scans the currently loaded set of S records for data residing
503 * in contiguous memory regions. Each contiguous region is then
504 * made into a 'chunk'. This function assumes that we're building
505 * a new chunk list. Assumes the s3data items are in sorted order.
511 * ~0 - failure (probably an errno)
512 *----------------------------------------------------------------
514 static int mkimage(struct imgchunk
*clist
, unsigned int *ccnt
)
527 /* There may already be data in the chunklist */
530 /* Establish the location and size of each chunk */
531 for (i
= 0; i
< ns3data
; i
++) {
532 if (s3data
[i
].addr
== nextaddr
) {
533 /* existing chunk, grow it */
534 clist
[currchunk
].len
+= s3data
[i
].len
;
535 nextaddr
+= s3data
[i
].len
;
539 currchunk
= *ccnt
- 1;
540 clist
[currchunk
].addr
= s3data
[i
].addr
;
541 clist
[currchunk
].len
= s3data
[i
].len
;
542 nextaddr
= s3data
[i
].addr
+ s3data
[i
].len
;
543 /* Expand the chunk if there is a CRC record at */
544 /* their beginning bound */
545 for (j
= 0; j
< ns3crc
; j
++) {
546 if (s3crc
[j
].dowrite
&&
547 s3crc
[j
].addr
== clist
[currchunk
].addr
) {
548 clist
[currchunk
].addr
-= 2;
549 clist
[currchunk
].len
+= 2;
555 /* We're currently assuming there aren't any overlapping chunks */
556 /* if this proves false, we'll need to add code to coalesce. */
558 /* Allocate buffer space for chunks */
559 for (i
= 0; i
< *ccnt
; i
++) {
560 clist
[i
].data
= kzalloc(clist
[i
].len
, GFP_KERNEL
);
561 if (!clist
[i
].data
) {
562 pr_err("failed to allocate image space, exitting.\n");
565 pr_debug("chunk[%d]: addr=0x%06x len=%d\n",
566 i
, clist
[i
].addr
, clist
[i
].len
);
569 /* Copy srec data to chunks */
570 for (i
= 0; i
< ns3data
; i
++) {
571 s3start
= s3data
[i
].addr
;
572 s3end
= s3start
+ s3data
[i
].len
- 1;
573 for (j
= 0; j
< *ccnt
; j
++) {
574 cstart
= clist
[j
].addr
;
575 cend
= cstart
+ clist
[j
].len
- 1;
576 if (s3start
>= cstart
&& s3end
<= cend
)
579 if (((unsigned int)j
) >= (*ccnt
)) {
580 pr_err("s3rec(a=0x%06x,l=%d), no chunk match, exiting.\n",
581 s3start
, s3data
[i
].len
);
584 coffset
= s3start
- cstart
;
585 memcpy(clist
[j
].data
+ coffset
, s3data
[i
].data
, s3data
[i
].len
);
591 /*----------------------------------------------------------------
594 * Reads a raw PDA and builds an array of pdrec_t structures.
597 * pda buffer containing raw PDA bytes
598 * pdrec ptr to an array of pdrec_t's. Will be filled on exit.
599 * nrec ptr to a variable that will contain the count of PDRs
603 * ~0 - failure (probably an errno)
604 *----------------------------------------------------------------
606 static int mkpdrlist(struct pda
*pda
)
608 __le16
*pda16
= (__le16
*)pda
->buf
;
609 int curroff
; /* in 'words' */
613 while (curroff
< (HFA384x_PDA_LEN_MAX
/ 2 - 1) &&
614 le16_to_cpu(pda16
[curroff
+ 1]) != HFA384x_PDR_END_OF_PDA
) {
615 pda
->rec
[pda
->nrec
] = (struct hfa384x_pdrec
*)&pda16
[curroff
];
617 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) ==
619 memcpy(&nicid
, &pda
->rec
[pda
->nrec
]->data
.nicid
,
621 le16_to_cpus(&nicid
.id
);
622 le16_to_cpus(&nicid
.variant
);
623 le16_to_cpus(&nicid
.major
);
624 le16_to_cpus(&nicid
.minor
);
626 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) ==
627 HFA384x_PDR_MFISUPRANGE
) {
628 memcpy(&rfid
, &pda
->rec
[pda
->nrec
]->data
.mfisuprange
,
630 le16_to_cpus(&rfid
.id
);
631 le16_to_cpus(&rfid
.variant
);
632 le16_to_cpus(&rfid
.bottom
);
633 le16_to_cpus(&rfid
.top
);
635 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) ==
636 HFA384x_PDR_CFISUPRANGE
) {
637 memcpy(&macid
, &pda
->rec
[pda
->nrec
]->data
.cfisuprange
,
639 le16_to_cpus(&macid
.id
);
640 le16_to_cpus(&macid
.variant
);
641 le16_to_cpus(&macid
.bottom
);
642 le16_to_cpus(&macid
.top
);
646 curroff
+= le16_to_cpu(pda16
[curroff
]) + 1;
648 if (curroff
>= (HFA384x_PDA_LEN_MAX
/ 2 - 1)) {
649 pr_err("no end record found or invalid lengths in PDR data, exiting. %x %d\n",
653 pda
->rec
[pda
->nrec
] = (struct hfa384x_pdrec
*)&pda16
[curroff
];
658 /*----------------------------------------------------------------
661 * Plugs the given image using the given plug records from the given
665 * fchunk Array of image chunks
666 * nfchunks Number of image chunks
667 * s3plug Array of plug records
668 * ns3plug Number of plug records
669 * pda Current pda data
674 *----------------------------------------------------------------
676 static int plugimage(struct imgchunk
*fchunk
, unsigned int nfchunks
,
677 struct s3plugrec
*s3plug
, unsigned int ns3plug
,
681 int i
; /* plug index */
682 int j
; /* index of PDR or -1 if fname plug */
683 int c
; /* chunk index */
691 /* for each plug record */
692 for (i
= 0; i
< ns3plug
; i
++) {
693 pstart
= s3plug
[i
].addr
;
694 pend
= s3plug
[i
].addr
+ s3plug
[i
].len
;
695 /* find the matching PDR (or filename) */
696 if (s3plug
[i
].itemcode
!= 0xffffffffUL
) { /* not filename */
697 for (j
= 0; j
< pda
->nrec
; j
++) {
698 if (s3plug
[i
].itemcode
==
699 le16_to_cpu(pda
->rec
[j
]->code
))
705 if (j
>= pda
->nrec
&& j
!= -1) { /* if no matching PDR, fail */
706 pr_warn("warning: Failed to find PDR for plugrec 0x%04x.\n",
708 continue; /* and move on to the next PDR */
710 /* MSM: They swear that unless it's the MAC address,
711 * the serial number, or the TX calibration records,
712 * then there's reasonable defaults in the f/w
713 * image. Therefore, missing PDRs in the card
714 * should only be a warning, not fatal.
715 * TODO: add fatals for the PDRs mentioned above.
722 /* Validate plug len against PDR len */
723 if (j
!= -1 && s3plug
[i
].len
< le16_to_cpu(pda
->rec
[j
]->len
)) {
724 pr_err("error: Plug vs. PDR len mismatch for plugrec 0x%04x, abort plugging.\n",
731 * Validate plug address against
732 * chunk data and identify chunk
734 for (c
= 0; c
< nfchunks
; c
++) {
735 cstart
= fchunk
[c
].addr
;
736 cend
= fchunk
[c
].addr
+ fchunk
[c
].len
;
737 if (pstart
>= cstart
&& pend
<= cend
)
741 pr_err("error: Failed to find image chunk for plugrec 0x%04x.\n",
748 chunkoff
= pstart
- cstart
;
749 dest
= fchunk
[c
].data
+ chunkoff
;
750 pr_debug("Plugging item 0x%04x @ 0x%06x, len=%d, cnum=%d coff=0x%06x\n",
751 s3plug
[i
].itemcode
, pstart
, s3plug
[i
].len
,
754 if (j
== -1) { /* plug the filename */
755 memset(dest
, 0, s3plug
[i
].len
);
756 strncpy(dest
, PRISM2_USB_FWFILE
, s3plug
[i
].len
- 1);
757 } else { /* plug a PDR */
758 memcpy(dest
, &pda
->rec
[j
]->data
, s3plug
[i
].len
);
764 /*----------------------------------------------------------------
767 * Sends the command for the driver to read the pda from the card
768 * named in the device variable. Upon success, the card pda is
769 * stored in the "cardpda" variables. Note that the pda structure
770 * is considered 'well formed' after this function. That means
771 * that the nrecs is valid, the rec array has been set up, and there's
772 * a valid PDAEND record in the raw PDA data.
780 * ~0 - failure (probably an errno)
781 *----------------------------------------------------------------
783 static int read_cardpda(struct pda
*pda
, struct wlandevice
*wlandev
)
786 struct p80211msg_p2req_readpda
*msg
;
788 msg
= kzalloc(sizeof(*msg
), GFP_KERNEL
);
793 msg
->msgcode
= DIDmsg_p2req_readpda
;
794 msg
->msglen
= sizeof(msg
);
795 strcpy(msg
->devname
, wlandev
->name
);
796 msg
->pda
.did
= DIDmsg_p2req_readpda_pda
;
797 msg
->pda
.len
= HFA384x_PDA_LEN_MAX
;
798 msg
->pda
.status
= P80211ENUM_msgitem_status_no_value
;
799 msg
->resultcode
.did
= DIDmsg_p2req_readpda_resultcode
;
800 msg
->resultcode
.len
= sizeof(u32
);
801 msg
->resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
803 if (prism2mgmt_readpda(wlandev
, msg
) != 0) {
804 /* prism2mgmt_readpda prints an errno if appropriate */
806 } else if (msg
->resultcode
.data
== P80211ENUM_resultcode_success
) {
807 memcpy(pda
->buf
, msg
->pda
.data
, HFA384x_PDA_LEN_MAX
);
808 result
= mkpdrlist(pda
);
810 /* resultcode must've been something other than success */
818 /*----------------------------------------------------------------
821 * Reads the given fw file which should have been compiled from an srec
822 * file. Each record in the fw file will either be a plain data record,
823 * a start address record, or other records used for plugging.
825 * Note that data records are expected to be sorted into
826 * ascending address order in the fw file.
828 * Note also that the start address record, originally an S7 record in
829 * the srec file, is expected in the fw file to be like a data record but
830 * with a certain address to make it identifiable.
832 * Here's the SREC format that the fw should have come from:
833 * S[37]nnaaaaaaaaddd...dddcc
835 * nn - number of bytes starting with the address field
836 * aaaaaaaa - address in readable (or big endian) format
837 * dd....dd - 0-245 data bytes (two chars per byte)
840 * The S7 record's (there should be only one) address value gets
841 * converted to an S3 record with address of 0xff400000, with the
842 * start address being stored as a 4 byte data word. That address is
843 * the start execution address used for RAM downloads.
845 * The S3 records have a collection of subformats indicated by the
847 * 0xff000000 - Plug record, data field format:
848 * xxxxxxxxaaaaaaaassssssss
849 * x - PDR code number (little endian)
850 * a - Address in load image to plug (little endian)
851 * s - Length of plug data area (little endian)
853 * 0xff100000 - CRC16 generation record, data field format:
854 * aaaaaaaassssssssbbbbbbbb
855 * a - Start address for CRC calculation (little endian)
856 * s - Length of data to calculate over (little endian)
857 * b - Boolean, true=write crc, false=don't write
859 * 0xff200000 - Info record, data field format:
861 * s - Size in words (little endian)
862 * t - Info type (little endian), see #defines and
863 * struct s3inforec for details about types.
864 * d - (s - 1) little endian words giving the contents of
865 * the given info type.
867 * 0xff400000 - Start address record, data field format:
869 * a - Address in load image to plug (little endian)
872 * record firmware image (ihex record structure) in kernel memory
876 * ~0 - failure (probably an errno)
877 *----------------------------------------------------------------
879 static int read_fwfile(const struct ihex_binrec
*record
)
885 u32
*ptr32
, len
, addr
;
887 pr_debug("Reading fw file ...\n");
892 len
= be16_to_cpu(record
->len
);
893 addr
= be32_to_cpu(record
->addr
);
895 /* Point into data for different word lengths */
896 ptr32
= (u32
*)record
->data
;
897 ptr16
= (u16
*)record
->data
;
899 /* parse what was an S3 srec and put it in the right array */
903 pr_debug(" S7 start addr, record=%d addr=0x%08x\n",
908 s3plug
[ns3plug
].itemcode
= *ptr32
;
909 s3plug
[ns3plug
].addr
= *(ptr32
+ 1);
910 s3plug
[ns3plug
].len
= *(ptr32
+ 2);
912 pr_debug(" S3 plugrec, record=%d itemcode=0x%08x addr=0x%08x len=%d\n",
914 s3plug
[ns3plug
].itemcode
,
915 s3plug
[ns3plug
].addr
,
916 s3plug
[ns3plug
].len
);
919 if (ns3plug
== S3PLUG_MAX
) {
920 pr_err("S3 plugrec limit reached - aborting\n");
925 s3crc
[ns3crc
].addr
= *ptr32
;
926 s3crc
[ns3crc
].len
= *(ptr32
+ 1);
927 s3crc
[ns3crc
].dowrite
= *(ptr32
+ 2);
929 pr_debug(" S3 crcrec, record=%d addr=0x%08x len=%d write=0x%08x\n",
933 s3crc
[ns3crc
].dowrite
);
935 if (ns3crc
== S3CRC_MAX
) {
936 pr_err("S3 crcrec limit reached - aborting\n");
941 s3info
[ns3info
].len
= *ptr16
;
942 s3info
[ns3info
].type
= *(ptr16
+ 1);
944 pr_debug(" S3 inforec, record=%d len=0x%04x type=0x%04x\n",
947 s3info
[ns3info
].type
);
948 if (((s3info
[ns3info
].len
- 1) * sizeof(u16
)) >
949 sizeof(s3info
[ns3info
].info
)) {
950 pr_err("S3 inforec length too long - aborting\n");
954 tmpinfo
= (u16
*)&s3info
[ns3info
].info
.version
;
956 for (i
= 0; i
< s3info
[ns3info
].len
- 1; i
++) {
957 tmpinfo
[i
] = *(ptr16
+ 2 + i
);
958 pr_debug("%04x ", tmpinfo
[i
]);
963 if (ns3info
== S3INFO_MAX
) {
964 pr_err("S3 inforec limit reached - aborting\n");
968 default: /* Data record */
969 s3data
[ns3data
].addr
= addr
;
970 s3data
[ns3data
].len
= len
;
971 s3data
[ns3data
].data
= (uint8_t *)record
->data
;
973 if (ns3data
== S3DATA_MAX
) {
974 pr_err("S3 datarec limit reached - aborting\n");
979 record
= ihex_next_binrec(record
);
984 /*----------------------------------------------------------------
987 * Takes the chunks, builds p80211 messages and sends them down
988 * to the driver for writing to the card.
992 * fchunk Array of image chunks
993 * nfchunks Number of image chunks
998 *----------------------------------------------------------------
1000 static int writeimage(struct wlandevice
*wlandev
, struct imgchunk
*fchunk
,
1001 unsigned int nfchunks
)
1004 struct p80211msg_p2req_ramdl_state
*rstmsg
;
1005 struct p80211msg_p2req_ramdl_write
*rwrmsg
;
1009 unsigned int nwrites
;
1014 rstmsg
= kzalloc(sizeof(*rstmsg
), GFP_KERNEL
);
1015 rwrmsg
= kzalloc(sizeof(*rwrmsg
), GFP_KERNEL
);
1016 if (!rstmsg
|| !rwrmsg
) {
1019 netdev_err(wlandev
->netdev
,
1020 "%s: no memory for firmware download, aborting download\n",
1025 /* Initialize the messages */
1026 strcpy(rstmsg
->devname
, wlandev
->name
);
1027 rstmsg
->msgcode
= DIDmsg_p2req_ramdl_state
;
1028 rstmsg
->msglen
= sizeof(*rstmsg
);
1029 rstmsg
->enable
.did
= DIDmsg_p2req_ramdl_state_enable
;
1030 rstmsg
->exeaddr
.did
= DIDmsg_p2req_ramdl_state_exeaddr
;
1031 rstmsg
->resultcode
.did
= DIDmsg_p2req_ramdl_state_resultcode
;
1032 rstmsg
->enable
.status
= P80211ENUM_msgitem_status_data_ok
;
1033 rstmsg
->exeaddr
.status
= P80211ENUM_msgitem_status_data_ok
;
1034 rstmsg
->resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
1035 rstmsg
->enable
.len
= sizeof(u32
);
1036 rstmsg
->exeaddr
.len
= sizeof(u32
);
1037 rstmsg
->resultcode
.len
= sizeof(u32
);
1039 strcpy(rwrmsg
->devname
, wlandev
->name
);
1040 rwrmsg
->msgcode
= DIDmsg_p2req_ramdl_write
;
1041 rwrmsg
->msglen
= sizeof(*rwrmsg
);
1042 rwrmsg
->addr
.did
= DIDmsg_p2req_ramdl_write_addr
;
1043 rwrmsg
->len
.did
= DIDmsg_p2req_ramdl_write_len
;
1044 rwrmsg
->data
.did
= DIDmsg_p2req_ramdl_write_data
;
1045 rwrmsg
->resultcode
.did
= DIDmsg_p2req_ramdl_write_resultcode
;
1046 rwrmsg
->addr
.status
= P80211ENUM_msgitem_status_data_ok
;
1047 rwrmsg
->len
.status
= P80211ENUM_msgitem_status_data_ok
;
1048 rwrmsg
->data
.status
= P80211ENUM_msgitem_status_data_ok
;
1049 rwrmsg
->resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
1050 rwrmsg
->addr
.len
= sizeof(u32
);
1051 rwrmsg
->len
.len
= sizeof(u32
);
1052 rwrmsg
->data
.len
= WRITESIZE_MAX
;
1053 rwrmsg
->resultcode
.len
= sizeof(u32
);
1055 /* Send xxx_state(enable) */
1056 pr_debug("Sending dl_state(enable) message.\n");
1057 rstmsg
->enable
.data
= P80211ENUM_truth_true
;
1058 rstmsg
->exeaddr
.data
= startaddr
;
1060 result
= prism2mgmt_ramdl_state(wlandev
, rstmsg
);
1062 netdev_err(wlandev
->netdev
,
1063 "%s state enable failed w/ result=%d, aborting download\n",
1067 resultcode
= rstmsg
->resultcode
.data
;
1068 if (resultcode
!= P80211ENUM_resultcode_success
) {
1069 netdev_err(wlandev
->netdev
,
1070 "%s()->xxxdl_state msg indicates failure, w/ resultcode=%d, aborting download.\n",
1071 __func__
, resultcode
);
1076 /* Now, loop through the data chunks and send WRITESIZE_MAX data */
1077 for (i
= 0; i
< nfchunks
; i
++) {
1078 nwrites
= fchunk
[i
].len
/ WRITESIZE_MAX
;
1079 nwrites
+= (fchunk
[i
].len
% WRITESIZE_MAX
) ? 1 : 0;
1081 for (j
= 0; j
< nwrites
; j
++) {
1082 /* TODO Move this to a separate function */
1083 int lenleft
= fchunk
[i
].len
- (WRITESIZE_MAX
* j
);
1085 if (fchunk
[i
].len
> WRITESIZE_MAX
)
1086 currlen
= WRITESIZE_MAX
;
1089 curroff
= j
* WRITESIZE_MAX
;
1090 currdaddr
= fchunk
[i
].addr
+ curroff
;
1091 /* Setup the message */
1092 rwrmsg
->addr
.data
= currdaddr
;
1093 rwrmsg
->len
.data
= currlen
;
1094 memcpy(rwrmsg
->data
.data
,
1095 fchunk
[i
].data
+ curroff
, currlen
);
1097 /* Send flashdl_write(pda) */
1099 ("Sending xxxdl_write message addr=%06x len=%d.\n",
1100 currdaddr
, currlen
);
1102 result
= prism2mgmt_ramdl_write(wlandev
, rwrmsg
);
1104 /* Check the results */
1106 netdev_err(wlandev
->netdev
,
1107 "%s chunk write failed w/ result=%d, aborting download\n",
1111 resultcode
= rstmsg
->resultcode
.data
;
1112 if (resultcode
!= P80211ENUM_resultcode_success
) {
1113 pr_err("%s()->xxxdl_write msg indicates failure, w/ resultcode=%d, aborting download.\n",
1114 __func__
, resultcode
);
1121 /* Send xxx_state(disable) */
1122 pr_debug("Sending dl_state(disable) message.\n");
1123 rstmsg
->enable
.data
= P80211ENUM_truth_false
;
1124 rstmsg
->exeaddr
.data
= 0;
1126 result
= prism2mgmt_ramdl_state(wlandev
, rstmsg
);
1128 netdev_err(wlandev
->netdev
,
1129 "%s state disable failed w/ result=%d, aborting download\n",
1133 resultcode
= rstmsg
->resultcode
.data
;
1134 if (resultcode
!= P80211ENUM_resultcode_success
) {
1135 netdev_err(wlandev
->netdev
,
1136 "%s()->xxxdl_state msg indicates failure, w/ resultcode=%d, aborting download.\n",
1137 __func__
, resultcode
);
1148 static int validate_identity(void)
1154 pr_debug("NIC ID: %#x v%d.%d.%d\n",
1155 nicid
.id
, nicid
.major
, nicid
.minor
, nicid
.variant
);
1156 pr_debug("MFI ID: %#x v%d %d->%d\n",
1157 rfid
.id
, rfid
.variant
, rfid
.bottom
, rfid
.top
);
1158 pr_debug("CFI ID: %#x v%d %d->%d\n",
1159 macid
.id
, macid
.variant
, macid
.bottom
, macid
.top
);
1160 pr_debug("PRI ID: %#x v%d %d->%d\n",
1161 priid
.id
, priid
.variant
, priid
.bottom
, priid
.top
);
1163 for (i
= 0; i
< ns3info
; i
++) {
1164 switch (s3info
[i
].type
) {
1166 pr_debug("Version: ID %#x %d.%d.%d\n",
1167 s3info
[i
].info
.version
.id
,
1168 s3info
[i
].info
.version
.major
,
1169 s3info
[i
].info
.version
.minor
,
1170 s3info
[i
].info
.version
.variant
);
1173 pr_debug("Compat: Role %#x Id %#x v%d %d->%d\n",
1174 s3info
[i
].info
.compat
.role
,
1175 s3info
[i
].info
.compat
.id
,
1176 s3info
[i
].info
.compat
.variant
,
1177 s3info
[i
].info
.compat
.bottom
,
1178 s3info
[i
].info
.compat
.top
);
1180 /* MAC compat range */
1181 if ((s3info
[i
].info
.compat
.role
== 1) &&
1182 (s3info
[i
].info
.compat
.id
== 2)) {
1183 if (s3info
[i
].info
.compat
.variant
!=
1189 /* PRI compat range */
1190 if ((s3info
[i
].info
.compat
.role
== 1) &&
1191 (s3info
[i
].info
.compat
.id
== 3)) {
1192 if ((s3info
[i
].info
.compat
.bottom
>
1194 (s3info
[i
].info
.compat
.top
<
1199 /* SEC compat range */
1200 if ((s3info
[i
].info
.compat
.role
== 1) &&
1201 (s3info
[i
].info
.compat
.id
== 4)) {
1202 /* FIXME: isn't something missing here? */
1207 pr_debug("Seq: %#x\n", s3info
[i
].info
.buildseq
);
1211 pr_debug("Platform: ID %#x %d.%d.%d\n",
1212 s3info
[i
].info
.version
.id
,
1213 s3info
[i
].info
.version
.major
,
1214 s3info
[i
].info
.version
.minor
,
1215 s3info
[i
].info
.version
.variant
);
1217 if (nicid
.id
!= s3info
[i
].info
.version
.id
)
1219 if (nicid
.major
!= s3info
[i
].info
.version
.major
)
1221 if (nicid
.minor
!= s3info
[i
].info
.version
.minor
)
1223 if ((nicid
.variant
!= s3info
[i
].info
.version
.variant
) &&
1224 (nicid
.id
!= 0x8008))
1230 pr_debug("name inforec len %d\n", s3info
[i
].len
);
1234 pr_debug("Unknown inforec type %d\n", s3info
[i
].type
);
1239 if (trump
&& (result
!= 2))