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>
52 /*================================================================*/
55 #define PRISM2_USB_FWFILE "prism2_ru.fw"
57 #define S3DATA_MAX 5000
58 #define S3PLUG_MAX 200
62 #define S3ADDR_PLUG (0xff000000UL)
63 #define S3ADDR_CRC (0xff100000UL)
64 #define S3ADDR_INFO (0xff200000UL)
65 #define S3ADDR_START (0xff400000UL)
67 #define CHUNKS_MAX 100
69 #define WRITESIZE_MAX 4096
71 /*================================================================*/
74 typedef struct s3datarec
{
81 typedef struct s3plugrec
{
87 typedef struct s3crcrec
{
93 typedef struct s3inforec
{
97 hfa384x_compident_t version
;
98 hfa384x_caplevel_t compat
;
100 hfa384x_compident_t platform
;
105 u8 buf
[HFA384x_PDA_LEN_MAX
];
106 hfa384x_pdrec_t
*rec
[HFA384x_PDA_RECS_MAX
];
110 typedef struct imgchunk
{
111 u32 addr
; /* start address */
112 u32 len
; /* in bytes */
113 u16 crc
; /* CRC value (if it falls at a chunk boundary) */
117 /*================================================================*/
118 /* Local Static Definitions */
120 /*----------------------------------------------------------------*/
121 /* s-record image processing */
124 unsigned int ns3data
;
125 s3datarec_t s3data
[S3DATA_MAX
];
128 unsigned int ns3plug
;
129 s3plugrec_t s3plug
[S3PLUG_MAX
];
133 s3crcrec_t s3crc
[S3CRC_MAX
];
136 unsigned int ns3info
;
137 s3inforec_t s3info
[S3INFO_MAX
];
139 /* S7 record (there _better_ be only one) */
142 /* Load image chunks */
143 unsigned int nfchunks
;
144 imgchunk_t fchunk
[CHUNKS_MAX
];
146 /* Note that for the following pdrec_t arrays, the len and code */
147 /* fields are stored in HOST byte order. The mkpdrlist() function */
148 /* does the conversion. */
149 /*----------------------------------------------------------------*/
150 /* PDA, built from [card|newfile]+[addfile1+addfile2...] */
153 hfa384x_compident_t nicid
;
154 hfa384x_caplevel_t rfid
;
155 hfa384x_caplevel_t macid
;
156 hfa384x_caplevel_t priid
;
158 /*================================================================*/
159 /* Local Function Declarations */
161 int prism2_fwapply(const struct ihex_binrec
*rfptr
, wlandevice_t
*wlandev
);
162 int read_fwfile(const struct ihex_binrec
*rfptr
);
163 int mkimage(imgchunk_t
*clist
, unsigned int *ccnt
);
164 int read_cardpda(pda_t
*pda
, wlandevice_t
*wlandev
);
165 int mkpdrlist(pda_t
*pda
);
166 int plugimage(imgchunk_t
*fchunk
, unsigned int nfchunks
,
167 s3plugrec_t
*s3plug
, unsigned int ns3plug
, pda_t
* pda
);
168 int crcimage(imgchunk_t
*fchunk
, unsigned int nfchunks
,
169 s3crcrec_t
*s3crc
, unsigned int ns3crc
);
170 int writeimage(wlandevice_t
*wlandev
, imgchunk_t
*fchunk
,
171 unsigned int nfchunks
);
172 void free_chunks(imgchunk_t
*fchunk
, unsigned int *nfchunks
);
173 void free_srecs(void);
175 int validate_identity(void);
177 /*================================================================*/
178 /* Function Definitions */
180 /*----------------------------------------------------------------
183 * Try and get firmware into memory
186 * udev usb device structure
187 * wlandev wlan device structure
192 ----------------------------------------------------------------*/
193 int prism2_fwtry(struct usb_device
*udev
, wlandevice_t
*wlandev
)
195 const struct firmware
*fw_entry
= NULL
;
197 printk(KERN_INFO
"prism2_usb: Checking for firmware %s\n",
199 if (request_ihex_firmware(&fw_entry
, PRISM2_USB_FWFILE
, &udev
->dev
) != 0) {
201 "prism2_usb: Firmware not available, but not essential\n");
203 "prism2_usb: can continue to use card anyway.\n");
207 printk(KERN_INFO
"prism2_usb: %s will be processed, size %d\n",
208 PRISM2_USB_FWFILE
, fw_entry
->size
);
209 prism2_fwapply((const struct ihex_binrec
*)fw_entry
->data
, wlandev
);
211 release_firmware(fw_entry
);
215 /*----------------------------------------------------------------
218 * Apply the firmware loaded into memory
221 * rfptr firmware image in kernel memory
227 ----------------------------------------------------------------*/
228 int prism2_fwapply(const struct ihex_binrec
*rfptr
, wlandevice_t
*wlandev
)
230 signed int result
= 0;
231 p80211msg_dot11req_mibget_t getmsg
;
235 /* Initialize the data structures */
237 memset(s3data
, 0, sizeof(s3data
));
239 memset(s3plug
, 0, sizeof(s3plug
));
241 memset(s3crc
, 0, sizeof(s3crc
));
243 memset(s3info
, 0, sizeof(s3info
));
247 memset(fchunk
, 0, sizeof(fchunk
));
248 memset(&nicid
, 0, sizeof(nicid
));
249 memset(&rfid
, 0, sizeof(rfid
));
250 memset(&macid
, 0, sizeof(macid
));
251 memset(&priid
, 0, sizeof(priid
));
253 /* clear the pda and add an initial END record */
254 memset(&pda
, 0, sizeof(pda
));
255 pda
.rec
[0] = (hfa384x_pdrec_t
*) pda
.buf
;
256 pda
.rec
[0]->len
= cpu_to_le16(2); /* len in words *//* len in words */
257 pda
.rec
[0]->code
= cpu_to_le16(HFA384x_PDR_END_OF_PDA
);
260 /*-----------------------------------------------------*/
261 /* Put card into fwload state */
262 prism2sta_ifstate(wlandev
, P80211ENUM_ifstate_fwload
);
264 /* Build the PDA we're going to use. */
265 if (read_cardpda(&pda
, wlandev
)) {
266 printk(KERN_ERR
"load_cardpda failed, exiting.\n");
270 /* read the card's PRI-SUP */
271 memset(&getmsg
, 0, sizeof(getmsg
));
272 getmsg
.msgcode
= DIDmsg_dot11req_mibget
;
273 getmsg
.msglen
= sizeof(getmsg
);
274 strcpy(getmsg
.devname
, wlandev
->name
);
276 getmsg
.mibattribute
.did
= DIDmsg_dot11req_mibget_mibattribute
;
277 getmsg
.mibattribute
.status
= P80211ENUM_msgitem_status_data_ok
;
278 getmsg
.resultcode
.did
= DIDmsg_dot11req_mibget_resultcode
;
279 getmsg
.resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
281 item
= (p80211itemd_t
*) getmsg
.mibattribute
.data
;
282 item
->did
= DIDmib_p2_p2NIC_p2PRISupRange
;
283 item
->status
= P80211ENUM_msgitem_status_no_value
;
285 data
= (u32
*) item
->data
;
287 /* DIDmsg_dot11req_mibget */
288 prism2mgmt_mibset_mibget(wlandev
, &getmsg
);
289 if (getmsg
.resultcode
.data
!= P80211ENUM_resultcode_success
) {
290 printk(KERN_ERR
"Couldn't fetch PRI-SUP info\n");
293 /* Already in host order */
294 priid
.role
= *data
++;
296 priid
.variant
= *data
++;
297 priid
.bottom
= *data
++;
300 /* Read the S3 file */
301 result
= read_fwfile(rfptr
);
303 printk(KERN_ERR
"Failed to read the data exiting.\n");
307 result
= validate_identity();
310 printk(KERN_ERR
"Incompatible firmware image.\n");
314 if (startaddr
== 0x00000000) {
315 printk(KERN_ERR
"Can't RAM download a Flash image!\n");
319 /* Make the image chunks */
320 result
= mkimage(fchunk
, &nfchunks
);
322 /* Do any plugging */
323 result
= plugimage(fchunk
, nfchunks
, s3plug
, ns3plug
, &pda
);
325 printk(KERN_ERR
"Failed to plug data.\n");
329 /* Insert any CRCs */
330 if (crcimage(fchunk
, nfchunks
, s3crc
, ns3crc
)) {
331 printk(KERN_ERR
"Failed to insert all CRCs\n");
335 /* Write the image */
336 result
= writeimage(wlandev
, fchunk
, nfchunks
);
338 printk(KERN_ERR
"Failed to ramwrite image data.\n");
342 /* clear any allocated memory */
343 free_chunks(fchunk
, &nfchunks
);
346 printk(KERN_INFO
"prism2_usb: firmware loading finished.\n");
351 /*----------------------------------------------------------------
354 * Adds a CRC16 in the two bytes prior to each block identified by
355 * an S3 CRC record. Currently, we don't actually do a CRC we just
356 * insert the value 0xC0DE in hfa384x order.
359 * fchunk Array of image chunks
360 * nfchunks Number of image chunks
361 * s3crc Array of crc records
362 * ns3crc Number of crc records
367 ----------------------------------------------------------------*/
368 int crcimage(imgchunk_t
*fchunk
, unsigned int nfchunks
, s3crcrec_t
*s3crc
,
381 for (i
= 0; i
< ns3crc
; i
++) {
382 if (!s3crc
[i
].dowrite
)
384 crcstart
= s3crc
[i
].addr
;
385 crcend
= s3crc
[i
].addr
+ s3crc
[i
].len
;
387 for (c
= 0; c
< nfchunks
; c
++) {
388 cstart
= fchunk
[c
].addr
;
389 cend
= fchunk
[c
].addr
+ fchunk
[c
].len
;
390 /* the line below does an address & len match search */
391 /* unfortunately, I've found that the len fields of */
392 /* some crc records don't match with the length of */
393 /* the actual data, so we're not checking right */
395 /* if ( crcstart-2 >= cstart && crcend <= cend ) break; */
397 /* note the -2 below, it's to make sure the chunk has */
398 /* space for the CRC value */
399 if (crcstart
- 2 >= cstart
&& crcstart
< cend
)
404 "Failed to find chunk for "
405 "crcrec[%d], addr=0x%06x len=%d , "
407 i
, s3crc
[i
].addr
, s3crc
[i
].len
);
412 pr_debug("Adding crc @ 0x%06x\n", s3crc
[i
].addr
- 2);
413 chunkoff
= crcstart
- cstart
- 2;
414 dest
= fchunk
[c
].data
+ chunkoff
;
422 /*----------------------------------------------------------------
425 * Clears the chunklist data structures in preparation for a new file.
432 ----------------------------------------------------------------*/
433 void free_chunks(imgchunk_t
*fchunk
, unsigned int *nfchunks
)
436 for (i
= 0; i
< *nfchunks
; i
++) {
437 if (fchunk
[i
].data
!= NULL
) {
438 kfree(fchunk
[i
].data
);
442 memset(fchunk
, 0, sizeof(fchunk
));
446 /*----------------------------------------------------------------
449 * Clears the srec data structures in preparation for a new file.
456 ----------------------------------------------------------------*/
457 void free_srecs(void)
460 memset(s3data
, 0, sizeof(s3data
));
462 memset(s3plug
, 0, sizeof(s3plug
));
464 memset(s3crc
, 0, sizeof(s3crc
));
466 memset(s3info
, 0, sizeof(s3info
));
470 /*----------------------------------------------------------------
473 * Scans the currently loaded set of S records for data residing
474 * in contiguous memory regions. Each contiguous region is then
475 * made into a 'chunk'. This function assumes that we're building
476 * a new chunk list. Assumes the s3data items are in sorted order.
482 * ~0 - failure (probably an errno)
483 ----------------------------------------------------------------*/
484 int mkimage(imgchunk_t
*clist
, unsigned int *ccnt
)
497 /* There may already be data in the chunklist */
500 /* Establish the location and size of each chunk */
501 for (i
= 0; i
< ns3data
; i
++) {
502 if (s3data
[i
].addr
== nextaddr
) {
503 /* existing chunk, grow it */
504 clist
[currchunk
].len
+= s3data
[i
].len
;
505 nextaddr
+= s3data
[i
].len
;
509 currchunk
= *ccnt
- 1;
510 clist
[currchunk
].addr
= s3data
[i
].addr
;
511 clist
[currchunk
].len
= s3data
[i
].len
;
512 nextaddr
= s3data
[i
].addr
+ s3data
[i
].len
;
513 /* Expand the chunk if there is a CRC record at */
514 /* their beginning bound */
515 for (j
= 0; j
< ns3crc
; j
++) {
516 if (s3crc
[j
].dowrite
&&
517 s3crc
[j
].addr
== clist
[currchunk
].addr
) {
518 clist
[currchunk
].addr
-= 2;
519 clist
[currchunk
].len
+= 2;
525 /* We're currently assuming there aren't any overlapping chunks */
526 /* if this proves false, we'll need to add code to coalesce. */
528 /* Allocate buffer space for chunks */
529 for (i
= 0; i
< *ccnt
; i
++) {
530 clist
[i
].data
= kmalloc(clist
[i
].len
, GFP_KERNEL
);
531 if (clist
[i
].data
== NULL
) {
533 "failed to allocate image space, exitting.\n");
536 memset(clist
[i
].data
, 0, clist
[i
].len
);
537 pr_debug("chunk[%d]: addr=0x%06x len=%d\n",
538 i
, clist
[i
].addr
, clist
[i
].len
);
541 /* Copy srec data to chunks */
542 for (i
= 0; i
< ns3data
; i
++) {
543 s3start
= s3data
[i
].addr
;
544 s3end
= s3start
+ s3data
[i
].len
- 1;
545 for (j
= 0; j
< *ccnt
; j
++) {
546 cstart
= clist
[j
].addr
;
547 cend
= cstart
+ clist
[j
].len
- 1;
548 if (s3start
>= cstart
&& s3end
<= cend
) {
552 if (((unsigned int)j
) >= (*ccnt
)) {
554 "s3rec(a=0x%06x,l=%d), no chunk match, exiting.\n",
555 s3start
, s3data
[i
].len
);
558 coffset
= s3start
- cstart
;
559 memcpy(clist
[j
].data
+ coffset
, s3data
[i
].data
, s3data
[i
].len
);
565 /*----------------------------------------------------------------
568 * Reads a raw PDA and builds an array of pdrec_t structures.
571 * pda buffer containing raw PDA bytes
572 * pdrec ptr to an array of pdrec_t's. Will be filled on exit.
573 * nrec ptr to a variable that will contain the count of PDRs
577 * ~0 - failure (probably an errno)
578 ----------------------------------------------------------------*/
579 int mkpdrlist(pda_t
*pda
)
582 u16
*pda16
= (u16
*) pda
->buf
;
583 int curroff
; /* in 'words' */
587 while (curroff
< (HFA384x_PDA_LEN_MAX
/ 2) &&
588 le16_to_cpu(pda16
[curroff
+ 1]) != HFA384x_PDR_END_OF_PDA
) {
589 pda
->rec
[pda
->nrec
] = (hfa384x_pdrec_t
*) & (pda16
[curroff
]);
591 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) == HFA384x_PDR_NICID
) {
592 memcpy(&nicid
, &pda
->rec
[pda
->nrec
]->data
.nicid
,
594 nicid
.id
= le16_to_cpu(nicid
.id
);
595 nicid
.variant
= le16_to_cpu(nicid
.variant
);
596 nicid
.major
= le16_to_cpu(nicid
.major
);
597 nicid
.minor
= le16_to_cpu(nicid
.minor
);
599 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) ==
600 HFA384x_PDR_MFISUPRANGE
) {
601 memcpy(&rfid
, &pda
->rec
[pda
->nrec
]->data
.mfisuprange
,
603 rfid
.id
= le16_to_cpu(rfid
.id
);
604 rfid
.variant
= le16_to_cpu(rfid
.variant
);
605 rfid
.bottom
= le16_to_cpu(rfid
.bottom
);
606 rfid
.top
= le16_to_cpu(rfid
.top
);
608 if (le16_to_cpu(pda
->rec
[pda
->nrec
]->code
) ==
609 HFA384x_PDR_CFISUPRANGE
) {
610 memcpy(&macid
, &pda
->rec
[pda
->nrec
]->data
.cfisuprange
,
612 macid
.id
= le16_to_cpu(macid
.id
);
613 macid
.variant
= le16_to_cpu(macid
.variant
);
614 macid
.bottom
= le16_to_cpu(macid
.bottom
);
615 macid
.top
= le16_to_cpu(macid
.top
);
619 curroff
+= le16_to_cpu(pda16
[curroff
]) + 1;
622 if (curroff
>= (HFA384x_PDA_LEN_MAX
/ 2)) {
624 "no end record found or invalid lengths in "
625 "PDR data, exiting. %x %d\n", curroff
, pda
->nrec
);
628 if (le16_to_cpu(pda16
[curroff
+ 1]) == HFA384x_PDR_END_OF_PDA
) {
629 pda
->rec
[pda
->nrec
] = (hfa384x_pdrec_t
*) & (pda16
[curroff
]);
635 /*----------------------------------------------------------------
638 * Plugs the given image using the given plug records from the given
642 * fchunk Array of image chunks
643 * nfchunks Number of image chunks
644 * s3plug Array of plug records
645 * ns3plug Number of plug records
646 * pda Current pda data
651 ----------------------------------------------------------------*/
652 int plugimage(imgchunk_t
*fchunk
, unsigned int nfchunks
,
653 s3plugrec_t
*s3plug
, unsigned int ns3plug
, pda_t
* pda
)
656 int i
; /* plug index */
657 int j
; /* index of PDR or -1 if fname plug */
658 int c
; /* chunk index */
666 /* for each plug record */
667 for (i
= 0; i
< ns3plug
; i
++) {
668 pstart
= s3plug
[i
].addr
;
669 pend
= s3plug
[i
].addr
+ s3plug
[i
].len
;
670 /* find the matching PDR (or filename) */
671 if (s3plug
[i
].itemcode
!= 0xffffffffUL
) { /* not filename */
672 for (j
= 0; j
< pda
->nrec
; j
++) {
673 if (s3plug
[i
].itemcode
==
674 le16_to_cpu(pda
->rec
[j
]->code
))
680 if (j
>= pda
->nrec
&& j
!= -1) { /* if no matching PDR, fail */
682 "warning: Failed to find PDR for "
683 "plugrec 0x%04x.\n", s3plug
[i
].itemcode
);
684 continue; /* and move on to the next PDR */
686 /* MSM: They swear that unless it's the MAC address,
687 * the serial number, or the TX calibration records,
688 * then there's reasonable defaults in the f/w
689 * image. Therefore, missing PDRs in the card
690 * should only be a warning, not fatal.
691 * TODO: add fatals for the PDRs mentioned above.
698 /* Validate plug len against PDR len */
699 if (j
!= -1 && s3plug
[i
].len
< le16_to_cpu(pda
->rec
[j
]->len
)) {
701 "error: Plug vs. PDR len mismatch for "
702 "plugrec 0x%04x, abort plugging.\n",
708 /* Validate plug address against chunk data and identify chunk */
709 for (c
= 0; c
< nfchunks
; c
++) {
710 cstart
= fchunk
[c
].addr
;
711 cend
= fchunk
[c
].addr
+ fchunk
[c
].len
;
712 if (pstart
>= cstart
&& pend
<= cend
)
717 "error: Failed to find image chunk for "
718 "plugrec 0x%04x.\n", s3plug
[i
].itemcode
);
724 chunkoff
= pstart
- cstart
;
725 dest
= fchunk
[c
].data
+ chunkoff
;
726 pr_debug("Plugging item 0x%04x @ 0x%06x, len=%d, "
727 "cnum=%d coff=0x%06x\n",
728 s3plug
[i
].itemcode
, pstart
, s3plug
[i
].len
,
731 if (j
== -1) { /* plug the filename */
732 memset(dest
, 0, s3plug
[i
].len
);
733 strncpy(dest
, PRISM2_USB_FWFILE
, s3plug
[i
].len
- 1);
734 } else { /* plug a PDR */
735 memcpy(dest
, &(pda
->rec
[j
]->data
), s3plug
[i
].len
);
742 /*----------------------------------------------------------------
745 * Sends the command for the driver to read the pda from the card
746 * named in the device variable. Upon success, the card pda is
747 * stored in the "cardpda" variables. Note that the pda structure
748 * is considered 'well formed' after this function. That means
749 * that the nrecs is valid, the rec array has been set up, and there's
750 * a valid PDAEND record in the raw PDA data.
758 * ~0 - failure (probably an errno)
759 ----------------------------------------------------------------*/
760 int read_cardpda(pda_t
*pda
, wlandevice_t
*wlandev
)
763 p80211msg_p2req_readpda_t msg
;
766 msg
.msgcode
= DIDmsg_p2req_readpda
;
767 msg
.msglen
= sizeof(msg
);
768 strcpy(msg
.devname
, wlandev
->name
);
769 msg
.pda
.did
= DIDmsg_p2req_readpda_pda
;
770 msg
.pda
.len
= HFA384x_PDA_LEN_MAX
;
771 msg
.pda
.status
= P80211ENUM_msgitem_status_no_value
;
772 msg
.resultcode
.did
= DIDmsg_p2req_readpda_resultcode
;
773 msg
.resultcode
.len
= sizeof(u32
);
774 msg
.resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
776 if (prism2mgmt_readpda(wlandev
, &msg
) != 0) {
777 /* prism2mgmt_readpda prints an errno if appropriate */
779 } else if (msg
.resultcode
.data
== P80211ENUM_resultcode_success
) {
780 memcpy(pda
->buf
, msg
.pda
.data
, HFA384x_PDA_LEN_MAX
);
781 result
= mkpdrlist(pda
);
783 /* resultcode must've been something other than success */
790 /*----------------------------------------------------------------
793 * Reads the given fw file which should have been compiled from an srec
794 * file. Each record in the fw file will either be a plain data record,
795 * a start address record, or other records used for plugging.
797 * Note that data records are expected to be sorted into
798 * ascending address order in the fw file.
800 * Note also that the start address record, originally an S7 record in
801 * the srec file, is expected in the fw file to be like a data record but
802 * with a certain address to make it identiable.
804 * Here's the SREC format that the fw should have come from:
805 * S[37]nnaaaaaaaaddd...dddcc
807 * nn - number of bytes starting with the address field
808 * aaaaaaaa - address in readable (or big endian) format
809 * dd....dd - 0-245 data bytes (two chars per byte)
812 * The S7 record's (there should be only one) address value gets
813 * converted to an S3 record with address of 0xff400000, with the
814 * start address being stored as a 4 byte data word. That address is
815 * the start execution address used for RAM downloads.
817 * The S3 records have a collection of subformats indicated by the
819 * 0xff000000 - Plug record, data field format:
820 * xxxxxxxxaaaaaaaassssssss
821 * x - PDR code number (little endian)
822 * a - Address in load image to plug (little endian)
823 * s - Length of plug data area (little endian)
825 * 0xff100000 - CRC16 generation record, data field format:
826 * aaaaaaaassssssssbbbbbbbb
827 * a - Start address for CRC calculation (little endian)
828 * s - Length of data to calculate over (little endian)
829 * b - Boolean, true=write crc, false=don't write
831 * 0xff200000 - Info record, data field format:
833 * s - Size in words (little endian)
834 * t - Info type (little endian), see #defines and
835 * s3inforec_t for details about types.
836 * d - (s - 1) little endian words giving the contents of
837 * the given info type.
839 * 0xff400000 - Start address record, data field format:
841 * a - Address in load image to plug (little endian)
844 * record firmware image (ihex record structure) in kernel memory
848 * ~0 - failure (probably an errno)
849 ----------------------------------------------------------------*/
850 int read_fwfile(const struct ihex_binrec
*record
)
856 u32
*ptr32
, len
, addr
;
858 pr_debug("Reading fw file ...\n");
864 len
= be16_to_cpu(record
->len
);
865 addr
= be32_to_cpu(record
->addr
);
867 /* Point into data for different word lengths */
868 ptr32
= (u32
*) record
->data
;
869 ptr16
= (u16
*) record
->data
;
871 /* parse what was an S3 srec and put it in the right array */
875 pr_debug(" S7 start addr, record=%d "
881 s3plug
[ns3plug
].itemcode
= *ptr32
;
882 s3plug
[ns3plug
].addr
= *(ptr32
+ 1);
883 s3plug
[ns3plug
].len
= *(ptr32
+ 2);
885 pr_debug(" S3 plugrec, record=%d "
886 "itemcode=0x%08x addr=0x%08x len=%d\n",
888 s3plug
[ns3plug
].itemcode
,
889 s3plug
[ns3plug
].addr
,
890 s3plug
[ns3plug
].len
);
893 if ( ns3plug
== S3PLUG_MAX
) {
894 printk(KERN_ERR
"S3 plugrec limit reached - aborting\n");
899 s3crc
[ns3crc
].addr
= *ptr32
;
900 s3crc
[ns3crc
].len
= *(ptr32
+ 1);
901 s3crc
[ns3crc
].dowrite
= *(ptr32
+ 2);
903 pr_debug(" S3 crcrec, record=%d "
904 "addr=0x%08x len=%d write=0x%08x\n",
908 s3crc
[ns3crc
].dowrite
);
910 if ( ns3crc
== S3CRC_MAX
) {
911 printk(KERN_ERR
"S3 crcrec limit reached - aborting\n");
916 s3info
[ns3info
].len
= *ptr16
;
917 s3info
[ns3info
].type
= *(ptr16
+ 1);
919 pr_debug(" S3 inforec, record=%d "
920 "len=0x%04x type=0x%04x\n",
923 s3info
[ns3info
].type
);
924 if ( ((s3info
[ns3info
].len
- 1) * sizeof(u16
)) > sizeof(s3info
[ns3info
].info
) ) {
925 printk(KERN_ERR
" S3 inforec length too long - aborting\n");
929 tmpinfo
= (u16
*)&(s3info
[ns3info
].info
.version
);
931 for (i
= 0; i
< s3info
[ns3info
].len
- 1; i
++) {
932 tmpinfo
[i
] = *(ptr16
+ 2 + i
);
933 pr_debug("%04x ", tmpinfo
[i
]);
938 if ( ns3info
== S3INFO_MAX
) {
939 printk(KERN_ERR
"S3 inforec limit reached - aborting\n");
943 default: /* Data record */
944 s3data
[ns3data
].addr
= addr
;
945 s3data
[ns3data
].len
= len
;
946 s3data
[ns3data
].data
= (uint8_t *) record
->data
;
948 if ( ns3data
== S3DATA_MAX
) {
949 printk(KERN_ERR
"S3 datarec limit reached - aborting\n");
954 record
= ihex_next_binrec(record
);
959 /*----------------------------------------------------------------
962 * Takes the chunks, builds p80211 messages and sends them down
963 * to the driver for writing to the card.
967 * fchunk Array of image chunks
968 * nfchunks Number of image chunks
973 ----------------------------------------------------------------*/
974 int writeimage(wlandevice_t
*wlandev
, imgchunk_t
*fchunk
,
975 unsigned int nfchunks
)
978 p80211msg_p2req_ramdl_state_t rstatemsg
;
979 p80211msg_p2req_ramdl_write_t rwritemsg
;
984 unsigned int nwrites
;
989 /* Initialize the messages */
990 memset(&rstatemsg
, 0, sizeof(rstatemsg
));
991 strcpy(rstatemsg
.devname
, wlandev
->name
);
992 rstatemsg
.msgcode
= DIDmsg_p2req_ramdl_state
;
993 rstatemsg
.msglen
= sizeof(rstatemsg
);
994 rstatemsg
.enable
.did
= DIDmsg_p2req_ramdl_state_enable
;
995 rstatemsg
.exeaddr
.did
= DIDmsg_p2req_ramdl_state_exeaddr
;
996 rstatemsg
.resultcode
.did
= DIDmsg_p2req_ramdl_state_resultcode
;
997 rstatemsg
.enable
.status
= P80211ENUM_msgitem_status_data_ok
;
998 rstatemsg
.exeaddr
.status
= P80211ENUM_msgitem_status_data_ok
;
999 rstatemsg
.resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
1000 rstatemsg
.enable
.len
= sizeof(u32
);
1001 rstatemsg
.exeaddr
.len
= sizeof(u32
);
1002 rstatemsg
.resultcode
.len
= sizeof(u32
);
1004 memset(&rwritemsg
, 0, sizeof(rwritemsg
));
1005 strcpy(rwritemsg
.devname
, wlandev
->name
);
1006 rwritemsg
.msgcode
= DIDmsg_p2req_ramdl_write
;
1007 rwritemsg
.msglen
= sizeof(rwritemsg
);
1008 rwritemsg
.addr
.did
= DIDmsg_p2req_ramdl_write_addr
;
1009 rwritemsg
.len
.did
= DIDmsg_p2req_ramdl_write_len
;
1010 rwritemsg
.data
.did
= DIDmsg_p2req_ramdl_write_data
;
1011 rwritemsg
.resultcode
.did
= DIDmsg_p2req_ramdl_write_resultcode
;
1012 rwritemsg
.addr
.status
= P80211ENUM_msgitem_status_data_ok
;
1013 rwritemsg
.len
.status
= P80211ENUM_msgitem_status_data_ok
;
1014 rwritemsg
.data
.status
= P80211ENUM_msgitem_status_data_ok
;
1015 rwritemsg
.resultcode
.status
= P80211ENUM_msgitem_status_no_value
;
1016 rwritemsg
.addr
.len
= sizeof(u32
);
1017 rwritemsg
.len
.len
= sizeof(u32
);
1018 rwritemsg
.data
.len
= WRITESIZE_MAX
;
1019 rwritemsg
.resultcode
.len
= sizeof(u32
);
1021 /* Send xxx_state(enable) */
1022 pr_debug("Sending dl_state(enable) message.\n");
1023 rstatemsg
.enable
.data
= P80211ENUM_truth_true
;
1024 rstatemsg
.exeaddr
.data
= startaddr
;
1026 msgp
= (p80211msg_t
*) & rstatemsg
;
1027 result
= prism2mgmt_ramdl_state(wlandev
, msgp
);
1030 "writeimage state enable failed w/ result=%d, "
1031 "aborting download\n", result
);
1034 resultcode
= rstatemsg
.resultcode
.data
;
1035 if (resultcode
!= P80211ENUM_resultcode_success
) {
1037 "writeimage()->xxxdl_state msg indicates failure, "
1038 "w/ resultcode=%d, aborting download.\n", resultcode
);
1042 /* Now, loop through the data chunks and send WRITESIZE_MAX data */
1043 for (i
= 0; i
< nfchunks
; i
++) {
1044 nwrites
= fchunk
[i
].len
/ WRITESIZE_MAX
;
1045 nwrites
+= (fchunk
[i
].len
% WRITESIZE_MAX
) ? 1 : 0;
1047 for (j
= 0; j
< nwrites
; j
++) {
1049 (fchunk
[i
].len
- (WRITESIZE_MAX
* j
)) >
1050 WRITESIZE_MAX
? WRITESIZE_MAX
: (fchunk
[i
].len
-
1053 curroff
= j
* WRITESIZE_MAX
;
1054 currdaddr
= fchunk
[i
].addr
+ curroff
;
1055 /* Setup the message */
1056 rwritemsg
.addr
.data
= currdaddr
;
1057 rwritemsg
.len
.data
= currlen
;
1058 memcpy(rwritemsg
.data
.data
,
1059 fchunk
[i
].data
+ curroff
, currlen
);
1061 /* Send flashdl_write(pda) */
1063 ("Sending xxxdl_write message addr=%06x len=%d.\n",
1064 currdaddr
, currlen
);
1066 msgp
= (p80211msg_t
*) & rwritemsg
;
1067 result
= prism2mgmt_ramdl_write(wlandev
, msgp
);
1069 /* Check the results */
1072 "writeimage chunk write failed w/ result=%d, "
1073 "aborting download\n", result
);
1076 resultcode
= rstatemsg
.resultcode
.data
;
1077 if (resultcode
!= P80211ENUM_resultcode_success
) {
1079 "writeimage()->xxxdl_write msg indicates failure, "
1080 "w/ resultcode=%d, aborting download.\n",
1088 /* Send xxx_state(disable) */
1089 pr_debug("Sending dl_state(disable) message.\n");
1090 rstatemsg
.enable
.data
= P80211ENUM_truth_false
;
1091 rstatemsg
.exeaddr
.data
= 0;
1093 msgp
= (p80211msg_t
*) & rstatemsg
;
1094 result
= prism2mgmt_ramdl_state(wlandev
, msgp
);
1097 "writeimage state disable failed w/ result=%d, "
1098 "aborting download\n", result
);
1101 resultcode
= rstatemsg
.resultcode
.data
;
1102 if (resultcode
!= P80211ENUM_resultcode_success
) {
1104 "writeimage()->xxxdl_state msg indicates failure, "
1105 "w/ resultcode=%d, aborting download.\n", resultcode
);
1111 int validate_identity(void)
1117 pr_debug("NIC ID: %#x v%d.%d.%d\n",
1118 nicid
.id
, nicid
.major
, nicid
.minor
, nicid
.variant
);
1119 pr_debug("MFI ID: %#x v%d %d->%d\n",
1120 rfid
.id
, rfid
.variant
, rfid
.bottom
, rfid
.top
);
1121 pr_debug("CFI ID: %#x v%d %d->%d\n",
1122 macid
.id
, macid
.variant
, macid
.bottom
, macid
.top
);
1123 pr_debug("PRI ID: %#x v%d %d->%d\n",
1124 priid
.id
, priid
.variant
, priid
.bottom
, priid
.top
);
1126 for (i
= 0; i
< ns3info
; i
++) {
1127 switch (s3info
[i
].type
) {
1129 pr_debug("Version: ID %#x %d.%d.%d\n",
1130 s3info
[i
].info
.version
.id
,
1131 s3info
[i
].info
.version
.major
,
1132 s3info
[i
].info
.version
.minor
,
1133 s3info
[i
].info
.version
.variant
);
1136 pr_debug("Compat: Role %#x Id %#x v%d %d->%d\n",
1137 s3info
[i
].info
.compat
.role
,
1138 s3info
[i
].info
.compat
.id
,
1139 s3info
[i
].info
.compat
.variant
,
1140 s3info
[i
].info
.compat
.bottom
,
1141 s3info
[i
].info
.compat
.top
);
1143 /* MAC compat range */
1144 if ((s3info
[i
].info
.compat
.role
== 1) &&
1145 (s3info
[i
].info
.compat
.id
== 2)) {
1146 if (s3info
[i
].info
.compat
.variant
!=
1152 /* PRI compat range */
1153 if ((s3info
[i
].info
.compat
.role
== 1) &&
1154 (s3info
[i
].info
.compat
.id
== 3)) {
1155 if ((s3info
[i
].info
.compat
.bottom
> priid
.top
)
1156 || (s3info
[i
].info
.compat
.top
<
1161 /* SEC compat range */
1162 if ((s3info
[i
].info
.compat
.role
== 1) &&
1163 (s3info
[i
].info
.compat
.id
== 4)) {
1169 pr_debug("Seq: %#x\n", s3info
[i
].info
.buildseq
);
1173 pr_debug("Platform: ID %#x %d.%d.%d\n",
1174 s3info
[i
].info
.version
.id
,
1175 s3info
[i
].info
.version
.major
,
1176 s3info
[i
].info
.version
.minor
,
1177 s3info
[i
].info
.version
.variant
);
1179 if (nicid
.id
!= s3info
[i
].info
.version
.id
)
1181 if (nicid
.major
!= s3info
[i
].info
.version
.major
)
1183 if (nicid
.minor
!= s3info
[i
].info
.version
.minor
)
1185 if ((nicid
.variant
!= s3info
[i
].info
.version
.variant
) &&
1186 (nicid
.id
!= 0x8008))
1192 pr_debug("name inforec len %d\n", s3info
[i
].len
);
1196 pr_debug("Unknown inforec type %d\n", s3info
[i
].type
);
1201 if (trump
&& (result
!= 2)) result
= 0;