1 /* from src/prism2/download/prism2dl.c
3 * utility for downloading prism2 images moved into kernelspace
5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6 * --------------------------------------------------------------------
10 * The contents of this file are subject to the Mozilla Public
11 * License Version 1.1 (the "License"); you may not use this file
12 * except in compliance with the License. You may obtain a copy of
13 * the License at http://www.mozilla.org/MPL/
15 * Software distributed under the License is distributed on an "AS
16 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17 * implied. See the License for the specific language governing
18 * rights and limitations under the License.
20 * Alternatively, the contents of this file may be used under the
21 * terms of the GNU Public License version 2 (the "GPL"), in which
22 * case the provisions of the GPL are applicable instead of the
23 * above. If you wish to allow the use of your version of this file
24 * only under the terms of the GPL and not to allow others to use
25 * your version of this file under the MPL, indicate your decision
26 * by deleting the provisions above and replace them with the notice
27 * and other provisions required by the GPL. If you do not delete
28 * the provisions above, a recipient may use your version of this
29 * file under either the MPL or the GPL.
31 * --------------------------------------------------------------------
33 * Inquiries regarding the linux-wlan Open Source project can be
36 * AbsoluteValue Systems Inc.
38 * http://www.linux-wlan.com
40 * --------------------------------------------------------------------
42 * Portions of the development of this software were funded by
43 * Intersil Corporation as part of PRISM(R) chipset product development.
45 * --------------------------------------------------------------------
48 /*================================================================*/
50 #include <linux/ihex.h>
51 #include <linux/slab.h>
53 /*================================================================*/
56 #define PRISM2_USB_FWFILE "prism2_ru.fw"
57 MODULE_FIRMWARE(PRISM2_USB_FWFILE);
59 #define S3DATA_MAX 5000
60 #define S3PLUG_MAX 200
64 #define S3ADDR_PLUG (0xff000000UL)
65 #define S3ADDR_CRC (0xff100000UL)
66 #define S3ADDR_INFO (0xff200000UL)
67 #define S3ADDR_START (0xff400000UL)
69 #define CHUNKS_MAX 100
71 #define WRITESIZE_MAX 4096
73 /*================================================================*/
99 hfa384x_compident_t version;
100 hfa384x_caplevel_t compat;
102 hfa384x_compident_t platform;
107 u8 buf[HFA384x_PDA_LEN_MAX];
108 hfa384x_pdrec_t *rec[HFA384x_PDA_RECS_MAX];
113 u32 addr; /* start address */
114 u32 len; /* in bytes */
115 u16 crc; /* CRC value (if it falls at a chunk boundary) */
119 /*================================================================*/
120 /* Local Static Definitions */
122 /*----------------------------------------------------------------*/
123 /* s-record image processing */
126 unsigned int ns3data;
127 struct s3datarec s3data[S3DATA_MAX];
130 unsigned int ns3plug;
131 struct s3plugrec s3plug[S3PLUG_MAX];
135 struct s3crcrec s3crc[S3CRC_MAX];
138 unsigned int ns3info;
139 struct s3inforec s3info[S3INFO_MAX];
141 /* S7 record (there _better_ be only one) */
144 /* Load image chunks */
145 unsigned int nfchunks;
146 struct imgchunk fchunk[CHUNKS_MAX];
148 /* Note that for the following pdrec_t arrays, the len and code */
149 /* fields are stored in HOST byte order. The mkpdrlist() function */
150 /* does the conversion. */
151 /*----------------------------------------------------------------*/
152 /* PDA, built from [card|newfile]+[addfile1+addfile2...] */
155 hfa384x_compident_t nicid;
156 hfa384x_caplevel_t rfid;
157 hfa384x_caplevel_t macid;
158 hfa384x_caplevel_t priid;
160 /*================================================================*/
161 /* Local Function Declarations */
163 static int prism2_fwapply(const struct ihex_binrec *rfptr,
164 wlandevice_t *wlandev);
166 static int read_fwfile(const struct ihex_binrec *rfptr);
168 static int mkimage(struct imgchunk *clist, unsigned int *ccnt);
170 static int read_cardpda(struct pda *pda, wlandevice_t *wlandev);
172 static int mkpdrlist(struct pda *pda);
174 static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
175 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda);
177 static int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
178 struct s3crcrec *s3crc, unsigned int ns3crc);
180 static int writeimage(wlandevice_t *wlandev, struct imgchunk *fchunk,
181 unsigned int nfchunks);
182 static void free_chunks(struct imgchunk *fchunk, unsigned int *nfchunks);
184 static void free_srecs(void);
186 static int validate_identity(void);
188 /*================================================================*/
189 /* Function Definitions */
191 /*----------------------------------------------------------------
194 * Try and get firmware into memory
197 * udev usb device structure
198 * wlandev wlan device structure
203 ----------------------------------------------------------------*/
204 int prism2_fwtry(struct usb_device *udev, wlandevice_t *wlandev)
206 const struct firmware *fw_entry = NULL;
208 printk(KERN_INFO "prism2_usb: Checking for firmware %s\n",
210 if (request_ihex_firmware(&fw_entry,
211 PRISM2_USB_FWFILE, &udev->dev) != 0) {
213 "prism2_usb: Firmware not available, but not essential\n");
215 "prism2_usb: can continue to use card anyway.\n");
219 printk(KERN_INFO "prism2_usb: %s will be processed, size %zu\n",
220 PRISM2_USB_FWFILE, fw_entry->size);
221 prism2_fwapply((const struct ihex_binrec *)fw_entry->data, wlandev);
223 release_firmware(fw_entry);
227 /*----------------------------------------------------------------
230 * Apply the firmware loaded into memory
233 * rfptr firmware image in kernel memory
239 ----------------------------------------------------------------*/
240 int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev)
242 signed int result = 0;
243 struct p80211msg_dot11req_mibget getmsg;
247 /* Initialize the data structures */
249 memset(s3data, 0, sizeof(s3data));
251 memset(s3plug, 0, sizeof(s3plug));
253 memset(s3crc, 0, sizeof(s3crc));
255 memset(s3info, 0, sizeof(s3info));
259 memset(fchunk, 0, sizeof(fchunk));
260 memset(&nicid, 0, sizeof(nicid));
261 memset(&rfid, 0, sizeof(rfid));
262 memset(&macid, 0, sizeof(macid));
263 memset(&priid, 0, sizeof(priid));
265 /* clear the pda and add an initial END record */
266 memset(&pda, 0, sizeof(pda));
267 pda.rec[0] = (hfa384x_pdrec_t *) pda.buf;
268 pda.rec[0]->len = cpu_to_le16(2); /* len in words */
269 pda.rec[0]->code = cpu_to_le16(HFA384x_PDR_END_OF_PDA);
272 /*-----------------------------------------------------*/
273 /* Put card into fwload state */
274 prism2sta_ifstate(wlandev, P80211ENUM_ifstate_fwload);
276 /* Build the PDA we're going to use. */
277 if (read_cardpda(&pda, wlandev)) {
278 printk(KERN_ERR "load_cardpda failed, exiting.\n");
282 /* read the card's PRI-SUP */
283 memset(&getmsg, 0, sizeof(getmsg));
284 getmsg.msgcode = DIDmsg_dot11req_mibget;
285 getmsg.msglen = sizeof(getmsg);
286 strcpy(getmsg.devname, wlandev->name);
288 getmsg.mibattribute.did = DIDmsg_dot11req_mibget_mibattribute;
289 getmsg.mibattribute.status = P80211ENUM_msgitem_status_data_ok;
290 getmsg.resultcode.did = DIDmsg_dot11req_mibget_resultcode;
291 getmsg.resultcode.status = P80211ENUM_msgitem_status_no_value;
293 item = (p80211itemd_t *) getmsg.mibattribute.data;
294 item->did = DIDmib_p2_p2NIC_p2PRISupRange;
295 item->status = P80211ENUM_msgitem_status_no_value;
297 data = (u32 *) item->data;
299 /* DIDmsg_dot11req_mibget */
300 prism2mgmt_mibset_mibget(wlandev, &getmsg);
301 if (getmsg.resultcode.data != P80211ENUM_resultcode_success)
302 printk(KERN_ERR "Couldn't fetch PRI-SUP info\n");
304 /* Already in host order */
305 priid.role = *data++;
307 priid.variant = *data++;
308 priid.bottom = *data++;
311 /* Read the S3 file */
312 result = read_fwfile(rfptr);
314 printk(KERN_ERR "Failed to read the data exiting.\n");
318 result = validate_identity();
321 printk(KERN_ERR "Incompatible firmware image.\n");
325 if (startaddr == 0x00000000) {
326 printk(KERN_ERR "Can't RAM download a Flash image!\n");
330 /* Make the image chunks */
331 result = mkimage(fchunk, &nfchunks);
333 /* Do any plugging */
334 result = plugimage(fchunk, nfchunks, s3plug, ns3plug, &pda);
336 printk(KERN_ERR "Failed to plug data.\n");
340 /* Insert any CRCs */
341 if (crcimage(fchunk, nfchunks, s3crc, ns3crc)) {
342 printk(KERN_ERR "Failed to insert all CRCs\n");
346 /* Write the image */
347 result = writeimage(wlandev, fchunk, nfchunks);
349 printk(KERN_ERR "Failed to ramwrite image data.\n");
353 /* clear any allocated memory */
354 free_chunks(fchunk, &nfchunks);
357 printk(KERN_INFO "prism2_usb: firmware loading finished.\n");
362 /*----------------------------------------------------------------
365 * Adds a CRC16 in the two bytes prior to each block identified by
366 * an S3 CRC record. Currently, we don't actually do a CRC we just
367 * insert the value 0xC0DE in hfa384x order.
370 * fchunk Array of image chunks
371 * nfchunks Number of image chunks
372 * s3crc Array of crc records
373 * ns3crc Number of crc records
378 ----------------------------------------------------------------*/
379 int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
380 struct s3crcrec *s3crc, unsigned int ns3crc)
392 for (i = 0; i < ns3crc; i++) {
393 if (!s3crc[i].dowrite)
395 crcstart = s3crc[i].addr;
396 crcend = s3crc[i].addr + s3crc[i].len;
398 for (c = 0; c < nfchunks; c++) {
399 cstart = fchunk[c].addr;
400 cend = fchunk[c].addr + fchunk[c].len;
401 /* the line below does an address & len match search */
402 /* unfortunately, I've found that the len fields of */
403 /* some crc records don't match with the length of */
404 /* the actual data, so we're not checking right now */
405 /* if (crcstart-2 >= cstart && crcend <= cend) break; */
407 /* note the -2 below, it's to make sure the chunk has */
408 /* space for the CRC value */
409 if (crcstart - 2 >= cstart && crcstart < cend)
414 "Failed to find chunk for "
415 "crcrec[%d], addr=0x%06x len=%d , "
417 i, s3crc[i].addr, s3crc[i].len);
422 pr_debug("Adding crc @ 0x%06x\n", s3crc[i].addr - 2);
423 chunkoff = crcstart - cstart - 2;
424 dest = fchunk[c].data + chunkoff;
432 /*----------------------------------------------------------------
435 * Clears the chunklist data structures in preparation for a new file.
442 ----------------------------------------------------------------*/
443 void free_chunks(struct imgchunk *fchunk, unsigned int *nfchunks)
446 for (i = 0; i < *nfchunks; i++)
447 kfree(fchunk[i].data);
450 memset(fchunk, 0, sizeof(*fchunk));
454 /*----------------------------------------------------------------
457 * Clears the srec data structures in preparation for a new file.
464 ----------------------------------------------------------------*/
465 void free_srecs(void)
468 memset(s3data, 0, sizeof(s3data));
470 memset(s3plug, 0, sizeof(s3plug));
472 memset(s3crc, 0, sizeof(s3crc));
474 memset(s3info, 0, sizeof(s3info));
478 /*----------------------------------------------------------------
481 * Scans the currently loaded set of S records for data residing
482 * in contiguous memory regions. Each contiguous region is then
483 * made into a 'chunk'. This function assumes that we're building
484 * a new chunk list. Assumes the s3data items are in sorted order.
490 * ~0 - failure (probably an errno)
491 ----------------------------------------------------------------*/
492 int mkimage(struct imgchunk *clist, unsigned int *ccnt)
505 /* There may already be data in the chunklist */
508 /* Establish the location and size of each chunk */
509 for (i = 0; i < ns3data; i++) {
510 if (s3data[i].addr == nextaddr) {
511 /* existing chunk, grow it */
512 clist[currchunk].len += s3data[i].len;
513 nextaddr += s3data[i].len;
517 currchunk = *ccnt - 1;
518 clist[currchunk].addr = s3data[i].addr;
519 clist[currchunk].len = s3data[i].len;
520 nextaddr = s3data[i].addr + s3data[i].len;
521 /* Expand the chunk if there is a CRC record at */
522 /* their beginning bound */
523 for (j = 0; j < ns3crc; j++) {
524 if (s3crc[j].dowrite &&
525 s3crc[j].addr == clist[currchunk].addr) {
526 clist[currchunk].addr -= 2;
527 clist[currchunk].len += 2;
533 /* We're currently assuming there aren't any overlapping chunks */
534 /* if this proves false, we'll need to add code to coalesce. */
536 /* Allocate buffer space for chunks */
537 for (i = 0; i < *ccnt; i++) {
538 clist[i].data = kzalloc(clist[i].len, GFP_KERNEL);
539 if (clist[i].data == NULL) {
541 "failed to allocate image space, exitting.\n");
544 pr_debug("chunk[%d]: addr=0x%06x len=%d\n",
545 i, clist[i].addr, clist[i].len);
548 /* Copy srec data to chunks */
549 for (i = 0; i < ns3data; i++) {
550 s3start = s3data[i].addr;
551 s3end = s3start + s3data[i].len - 1;
552 for (j = 0; j < *ccnt; j++) {
553 cstart = clist[j].addr;
554 cend = cstart + clist[j].len - 1;
555 if (s3start >= cstart && s3end <= cend)
558 if (((unsigned int)j) >= (*ccnt)) {
560 "s3rec(a=0x%06x,l=%d), no chunk match, exiting.\n",
561 s3start, s3data[i].len);
564 coffset = s3start - cstart;
565 memcpy(clist[j].data + coffset, s3data[i].data, s3data[i].len);
571 /*----------------------------------------------------------------
574 * Reads a raw PDA and builds an array of pdrec_t structures.
577 * pda buffer containing raw PDA bytes
578 * pdrec ptr to an array of pdrec_t's. Will be filled on exit.
579 * nrec ptr to a variable that will contain the count of PDRs
583 * ~0 - failure (probably an errno)
584 ----------------------------------------------------------------*/
585 int mkpdrlist(struct pda *pda)
588 u16 *pda16 = (u16 *) pda->buf;
589 int curroff; /* in 'words' */
593 while (curroff < (HFA384x_PDA_LEN_MAX / 2) &&
594 le16_to_cpu(pda16[curroff + 1]) != HFA384x_PDR_END_OF_PDA) {
595 pda->rec[pda->nrec] = (hfa384x_pdrec_t *) &(pda16[curroff]);
597 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
599 memcpy(&nicid, &pda->rec[pda->nrec]->data.nicid,
601 nicid.id = le16_to_cpu(nicid.id);
602 nicid.variant = le16_to_cpu(nicid.variant);
603 nicid.major = le16_to_cpu(nicid.major);
604 nicid.minor = le16_to_cpu(nicid.minor);
606 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
607 HFA384x_PDR_MFISUPRANGE) {
608 memcpy(&rfid, &pda->rec[pda->nrec]->data.mfisuprange,
610 rfid.id = le16_to_cpu(rfid.id);
611 rfid.variant = le16_to_cpu(rfid.variant);
612 rfid.bottom = le16_to_cpu(rfid.bottom);
613 rfid.top = le16_to_cpu(rfid.top);
615 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
616 HFA384x_PDR_CFISUPRANGE) {
617 memcpy(&macid, &pda->rec[pda->nrec]->data.cfisuprange,
619 macid.id = le16_to_cpu(macid.id);
620 macid.variant = le16_to_cpu(macid.variant);
621 macid.bottom = le16_to_cpu(macid.bottom);
622 macid.top = le16_to_cpu(macid.top);
626 curroff += le16_to_cpu(pda16[curroff]) + 1;
629 if (curroff >= (HFA384x_PDA_LEN_MAX / 2)) {
631 "no end record found or invalid lengths in "
632 "PDR data, exiting. %x %d\n", curroff, pda->nrec);
635 if (le16_to_cpu(pda16[curroff + 1]) == HFA384x_PDR_END_OF_PDA) {
636 pda->rec[pda->nrec] = (hfa384x_pdrec_t *) &(pda16[curroff]);
642 /*----------------------------------------------------------------
645 * Plugs the given image using the given plug records from the given
649 * fchunk Array of image chunks
650 * nfchunks Number of image chunks
651 * s3plug Array of plug records
652 * ns3plug Number of plug records
653 * pda Current pda data
658 ----------------------------------------------------------------*/
659 int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
660 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda)
663 int i; /* plug index */
664 int j; /* index of PDR or -1 if fname plug */
665 int c; /* chunk index */
673 /* for each plug record */
674 for (i = 0; i < ns3plug; i++) {
675 pstart = s3plug[i].addr;
676 pend = s3plug[i].addr + s3plug[i].len;
677 /* find the matching PDR (or filename) */
678 if (s3plug[i].itemcode != 0xffffffffUL) { /* not filename */
679 for (j = 0; j < pda->nrec; j++) {
680 if (s3plug[i].itemcode ==
681 le16_to_cpu(pda->rec[j]->code))
687 if (j >= pda->nrec && j != -1) { /* if no matching PDR, fail */
689 "warning: Failed to find PDR for "
690 "plugrec 0x%04x.\n", s3plug[i].itemcode);
691 continue; /* and move on to the next PDR */
693 /* MSM: They swear that unless it's the MAC address,
694 * the serial number, or the TX calibration records,
695 * then there's reasonable defaults in the f/w
696 * image. Therefore, missing PDRs in the card
697 * should only be a warning, not fatal.
698 * TODO: add fatals for the PDRs mentioned above.
705 /* Validate plug len against PDR len */
706 if (j != -1 && s3plug[i].len < le16_to_cpu(pda->rec[j]->len)) {
708 "error: Plug vs. PDR len mismatch for "
709 "plugrec 0x%04x, abort plugging.\n",
715 /* Validate plug address against chunk data and identify chunk */
716 for (c = 0; c < nfchunks; c++) {
717 cstart = fchunk[c].addr;
718 cend = fchunk[c].addr + fchunk[c].len;
719 if (pstart >= cstart && pend <= cend)
724 "error: Failed to find image chunk for "
725 "plugrec 0x%04x.\n", s3plug[i].itemcode);
731 chunkoff = pstart - cstart;
732 dest = fchunk[c].data + chunkoff;
733 pr_debug("Plugging item 0x%04x @ 0x%06x, len=%d, "
734 "cnum=%d coff=0x%06x\n",
735 s3plug[i].itemcode, pstart, s3plug[i].len,
738 if (j == -1) { /* plug the filename */
739 memset(dest, 0, s3plug[i].len);
740 strncpy(dest, PRISM2_USB_FWFILE, s3plug[i].len - 1);
741 } else { /* plug a PDR */
742 memcpy(dest, &(pda->rec[j]->data), s3plug[i].len);
749 /*----------------------------------------------------------------
752 * Sends the command for the driver to read the pda from the card
753 * named in the device variable. Upon success, the card pda is
754 * stored in the "cardpda" variables. Note that the pda structure
755 * is considered 'well formed' after this function. That means
756 * that the nrecs is valid, the rec array has been set up, and there's
757 * a valid PDAEND record in the raw PDA data.
765 * ~0 - failure (probably an errno)
766 ----------------------------------------------------------------*/
767 int read_cardpda(struct pda *pda, wlandevice_t *wlandev)
770 struct p80211msg_p2req_readpda msg;
773 msg.msgcode = DIDmsg_p2req_readpda;
774 msg.msglen = sizeof(msg);
775 strcpy(msg.devname, wlandev->name);
776 msg.pda.did = DIDmsg_p2req_readpda_pda;
777 msg.pda.len = HFA384x_PDA_LEN_MAX;
778 msg.pda.status = P80211ENUM_msgitem_status_no_value;
779 msg.resultcode.did = DIDmsg_p2req_readpda_resultcode;
780 msg.resultcode.len = sizeof(u32);
781 msg.resultcode.status = P80211ENUM_msgitem_status_no_value;
783 if (prism2mgmt_readpda(wlandev, &msg) != 0) {
784 /* prism2mgmt_readpda prints an errno if appropriate */
786 } else if (msg.resultcode.data == P80211ENUM_resultcode_success) {
787 memcpy(pda->buf, msg.pda.data, HFA384x_PDA_LEN_MAX);
788 result = mkpdrlist(pda);
790 /* resultcode must've been something other than success */
797 /*----------------------------------------------------------------
800 * Reads the given fw file which should have been compiled from an srec
801 * file. Each record in the fw file will either be a plain data record,
802 * a start address record, or other records used for plugging.
804 * Note that data records are expected to be sorted into
805 * ascending address order in the fw file.
807 * Note also that the start address record, originally an S7 record in
808 * the srec file, is expected in the fw file to be like a data record but
809 * with a certain address to make it identiable.
811 * Here's the SREC format that the fw should have come from:
812 * S[37]nnaaaaaaaaddd...dddcc
814 * nn - number of bytes starting with the address field
815 * aaaaaaaa - address in readable (or big endian) format
816 * dd....dd - 0-245 data bytes (two chars per byte)
819 * The S7 record's (there should be only one) address value gets
820 * converted to an S3 record with address of 0xff400000, with the
821 * start address being stored as a 4 byte data word. That address is
822 * the start execution address used for RAM downloads.
824 * The S3 records have a collection of subformats indicated by the
826 * 0xff000000 - Plug record, data field format:
827 * xxxxxxxxaaaaaaaassssssss
828 * x - PDR code number (little endian)
829 * a - Address in load image to plug (little endian)
830 * s - Length of plug data area (little endian)
832 * 0xff100000 - CRC16 generation record, data field format:
833 * aaaaaaaassssssssbbbbbbbb
834 * a - Start address for CRC calculation (little endian)
835 * s - Length of data to calculate over (little endian)
836 * b - Boolean, true=write crc, false=don't write
838 * 0xff200000 - Info record, data field format:
840 * s - Size in words (little endian)
841 * t - Info type (little endian), see #defines and
842 * struct s3inforec for details about types.
843 * d - (s - 1) little endian words giving the contents of
844 * the given info type.
846 * 0xff400000 - Start address record, data field format:
848 * a - Address in load image to plug (little endian)
851 * record firmware image (ihex record structure) in kernel memory
855 * ~0 - failure (probably an errno)
856 ----------------------------------------------------------------*/
857 int read_fwfile(const struct ihex_binrec *record)
863 u32 *ptr32, len, addr;
865 pr_debug("Reading fw file ...\n");
871 len = be16_to_cpu(record->len);
872 addr = be32_to_cpu(record->addr);
874 /* Point into data for different word lengths */
875 ptr32 = (u32 *) record->data;
876 ptr16 = (u16 *) record->data;
878 /* parse what was an S3 srec and put it in the right array */
882 pr_debug(" S7 start addr, record=%d "
888 s3plug[ns3plug].itemcode = *ptr32;
889 s3plug[ns3plug].addr = *(ptr32 + 1);
890 s3plug[ns3plug].len = *(ptr32 + 2);
892 pr_debug(" S3 plugrec, record=%d "
893 "itemcode=0x%08x addr=0x%08x len=%d\n",
895 s3plug[ns3plug].itemcode,
896 s3plug[ns3plug].addr,
897 s3plug[ns3plug].len);
900 if (ns3plug == S3PLUG_MAX) {
901 printk(KERN_ERR "S3 plugrec limit reached - aborting\n");
906 s3crc[ns3crc].addr = *ptr32;
907 s3crc[ns3crc].len = *(ptr32 + 1);
908 s3crc[ns3crc].dowrite = *(ptr32 + 2);
910 pr_debug(" S3 crcrec, record=%d "
911 "addr=0x%08x len=%d write=0x%08x\n",
915 s3crc[ns3crc].dowrite);
917 if (ns3crc == S3CRC_MAX) {
918 printk(KERN_ERR "S3 crcrec limit reached - aborting\n");
923 s3info[ns3info].len = *ptr16;
924 s3info[ns3info].type = *(ptr16 + 1);
926 pr_debug(" S3 inforec, record=%d "
927 "len=0x%04x type=0x%04x\n",
930 s3info[ns3info].type);
931 if (((s3info[ns3info].len - 1) * sizeof(u16)) > sizeof(s3info[ns3info].info)) {
932 printk(KERN_ERR " S3 inforec length too long - aborting\n");
936 tmpinfo = (u16 *)&(s3info[ns3info].info.version);
938 for (i = 0; i < s3info[ns3info].len - 1; i++) {
939 tmpinfo[i] = *(ptr16 + 2 + i);
940 pr_debug("%04x ", tmpinfo[i]);
945 if (ns3info == S3INFO_MAX) {
946 printk(KERN_ERR "S3 inforec limit reached - aborting\n");
950 default: /* Data record */
951 s3data[ns3data].addr = addr;
952 s3data[ns3data].len = len;
953 s3data[ns3data].data = (uint8_t *) record->data;
955 if (ns3data == S3DATA_MAX) {
956 printk(KERN_ERR "S3 datarec limit reached - aborting\n");
961 record = ihex_next_binrec(record);
966 /*----------------------------------------------------------------
969 * Takes the chunks, builds p80211 messages and sends them down
970 * to the driver for writing to the card.
974 * fchunk Array of image chunks
975 * nfchunks Number of image chunks
980 ----------------------------------------------------------------*/
981 int writeimage(wlandevice_t *wlandev, struct imgchunk *fchunk,
982 unsigned int nfchunks)
985 struct p80211msg_p2req_ramdl_state *rstmsg;
986 struct p80211msg_p2req_ramdl_write *rwrmsg;
990 unsigned int nwrites;
995 rstmsg = kmalloc(sizeof(*rstmsg), GFP_KERNEL);
996 rwrmsg = kmalloc(sizeof(*rwrmsg), GFP_KERNEL);
997 if (!rstmsg || !rwrmsg) {
1001 "writeimage: no memory for firmware download, "
1002 "aborting download\n");
1006 /* Initialize the messages */
1007 memset(rstmsg, 0, sizeof(*rstmsg));
1008 strcpy(rstmsg->devname, wlandev->name);
1009 rstmsg->msgcode = DIDmsg_p2req_ramdl_state;
1010 rstmsg->msglen = sizeof(*rstmsg);
1011 rstmsg->enable.did = DIDmsg_p2req_ramdl_state_enable;
1012 rstmsg->exeaddr.did = DIDmsg_p2req_ramdl_state_exeaddr;
1013 rstmsg->resultcode.did = DIDmsg_p2req_ramdl_state_resultcode;
1014 rstmsg->enable.status = P80211ENUM_msgitem_status_data_ok;
1015 rstmsg->exeaddr.status = P80211ENUM_msgitem_status_data_ok;
1016 rstmsg->resultcode.status = P80211ENUM_msgitem_status_no_value;
1017 rstmsg->enable.len = sizeof(u32);
1018 rstmsg->exeaddr.len = sizeof(u32);
1019 rstmsg->resultcode.len = sizeof(u32);
1021 memset(rwrmsg, 0, sizeof(*rwrmsg));
1022 strcpy(rwrmsg->devname, wlandev->name);
1023 rwrmsg->msgcode = DIDmsg_p2req_ramdl_write;
1024 rwrmsg->msglen = sizeof(*rwrmsg);
1025 rwrmsg->addr.did = DIDmsg_p2req_ramdl_write_addr;
1026 rwrmsg->len.did = DIDmsg_p2req_ramdl_write_len;
1027 rwrmsg->data.did = DIDmsg_p2req_ramdl_write_data;
1028 rwrmsg->resultcode.did = DIDmsg_p2req_ramdl_write_resultcode;
1029 rwrmsg->addr.status = P80211ENUM_msgitem_status_data_ok;
1030 rwrmsg->len.status = P80211ENUM_msgitem_status_data_ok;
1031 rwrmsg->data.status = P80211ENUM_msgitem_status_data_ok;
1032 rwrmsg->resultcode.status = P80211ENUM_msgitem_status_no_value;
1033 rwrmsg->addr.len = sizeof(u32);
1034 rwrmsg->len.len = sizeof(u32);
1035 rwrmsg->data.len = WRITESIZE_MAX;
1036 rwrmsg->resultcode.len = sizeof(u32);
1038 /* Send xxx_state(enable) */
1039 pr_debug("Sending dl_state(enable) message.\n");
1040 rstmsg->enable.data = P80211ENUM_truth_true;
1041 rstmsg->exeaddr.data = startaddr;
1043 result = prism2mgmt_ramdl_state(wlandev, rstmsg);
1046 "writeimage state enable failed w/ result=%d, "
1047 "aborting download\n", result);
1050 resultcode = rstmsg->resultcode.data;
1051 if (resultcode != P80211ENUM_resultcode_success) {
1053 "writeimage()->xxxdl_state msg indicates failure, "
1054 "w/ resultcode=%d, aborting download.\n", resultcode);
1059 /* Now, loop through the data chunks and send WRITESIZE_MAX data */
1060 for (i = 0; i < nfchunks; i++) {
1061 nwrites = fchunk[i].len / WRITESIZE_MAX;
1062 nwrites += (fchunk[i].len % WRITESIZE_MAX) ? 1 : 0;
1064 for (j = 0; j < nwrites; j++) {
1065 /* TODO Move this to a separate function */
1066 int lenleft = fchunk[i].len - (WRITESIZE_MAX * j);
1067 if (fchunk[i].len > WRITESIZE_MAX)
1068 currlen = WRITESIZE_MAX;
1071 curroff = j * WRITESIZE_MAX;
1072 currdaddr = fchunk[i].addr + curroff;
1073 /* Setup the message */
1074 rwrmsg->addr.data = currdaddr;
1075 rwrmsg->len.data = currlen;
1076 memcpy(rwrmsg->data.data,
1077 fchunk[i].data + curroff, currlen);
1079 /* Send flashdl_write(pda) */
1081 ("Sending xxxdl_write message addr=%06x len=%d.\n",
1082 currdaddr, currlen);
1084 result = prism2mgmt_ramdl_write(wlandev, rwrmsg);
1086 /* Check the results */
1089 "writeimage chunk write failed w/ result=%d, "
1090 "aborting download\n", result);
1093 resultcode = rstmsg->resultcode.data;
1094 if (resultcode != P80211ENUM_resultcode_success) {
1096 "writeimage()->xxxdl_write msg indicates failure, "
1097 "w/ resultcode=%d, aborting download.\n",
1106 /* Send xxx_state(disable) */
1107 pr_debug("Sending dl_state(disable) message.\n");
1108 rstmsg->enable.data = P80211ENUM_truth_false;
1109 rstmsg->exeaddr.data = 0;
1111 result = prism2mgmt_ramdl_state(wlandev, rstmsg);
1114 "writeimage state disable failed w/ result=%d, "
1115 "aborting download\n", result);
1118 resultcode = rstmsg->resultcode.data;
1119 if (resultcode != P80211ENUM_resultcode_success) {
1121 "writeimage()->xxxdl_state msg indicates failure, "
1122 "w/ resultcode=%d, aborting download.\n", resultcode);
1133 int validate_identity(void)
1139 pr_debug("NIC ID: %#x v%d.%d.%d\n",
1140 nicid.id, nicid.major, nicid.minor, nicid.variant);
1141 pr_debug("MFI ID: %#x v%d %d->%d\n",
1142 rfid.id, rfid.variant, rfid.bottom, rfid.top);
1143 pr_debug("CFI ID: %#x v%d %d->%d\n",
1144 macid.id, macid.variant, macid.bottom, macid.top);
1145 pr_debug("PRI ID: %#x v%d %d->%d\n",
1146 priid.id, priid.variant, priid.bottom, priid.top);
1148 for (i = 0; i < ns3info; i++) {
1149 switch (s3info[i].type) {
1151 pr_debug("Version: ID %#x %d.%d.%d\n",
1152 s3info[i].info.version.id,
1153 s3info[i].info.version.major,
1154 s3info[i].info.version.minor,
1155 s3info[i].info.version.variant);
1158 pr_debug("Compat: Role %#x Id %#x v%d %d->%d\n",
1159 s3info[i].info.compat.role,
1160 s3info[i].info.compat.id,
1161 s3info[i].info.compat.variant,
1162 s3info[i].info.compat.bottom,
1163 s3info[i].info.compat.top);
1165 /* MAC compat range */
1166 if ((s3info[i].info.compat.role == 1) &&
1167 (s3info[i].info.compat.id == 2)) {
1168 if (s3info[i].info.compat.variant !=
1174 /* PRI compat range */
1175 if ((s3info[i].info.compat.role == 1) &&
1176 (s3info[i].info.compat.id == 3)) {
1177 if ((s3info[i].info.compat.bottom > priid.top)
1178 || (s3info[i].info.compat.top <
1183 /* SEC compat range */
1184 if ((s3info[i].info.compat.role == 1) &&
1185 (s3info[i].info.compat.id == 4)) {
1186 /* FIXME: isn't something missing here? */
1191 pr_debug("Seq: %#x\n", s3info[i].info.buildseq);
1195 pr_debug("Platform: ID %#x %d.%d.%d\n",
1196 s3info[i].info.version.id,
1197 s3info[i].info.version.major,
1198 s3info[i].info.version.minor,
1199 s3info[i].info.version.variant);
1201 if (nicid.id != s3info[i].info.version.id)
1203 if (nicid.major != s3info[i].info.version.major)
1205 if (nicid.minor != s3info[i].info.version.minor)
1207 if ((nicid.variant != s3info[i].info.version.variant) &&
1208 (nicid.id != 0x8008))
1214 pr_debug("name inforec len %d\n", s3info[i].len);
1218 pr_debug("Unknown inforec type %d\n", s3info[i].type);
1223 if (trump && (result != 2))