blob: 96aa21188669d34d3d03e703c6659dafbddb855c [file] [log] [blame]
Karl Relton76e3e7c2009-04-17 10:15:34 +01001/* from src/prism2/download/prism2dl.c
2*
3* utility for downloading prism2 images moved into kernelspace
4*
5* Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6* --------------------------------------------------------------------
7*
8* linux-wlan
9*
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/
14*
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.
19*
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.
30*
31* --------------------------------------------------------------------
32*
33* Inquiries regarding the linux-wlan Open Source project can be
34* made directly to:
35*
36* AbsoluteValue Systems Inc.
37* info@linux-wlan.com
38* http://www.linux-wlan.com
39*
40* --------------------------------------------------------------------
41*
42* Portions of the development of this software were funded by
43* Intersil Corporation as part of PRISM(R) chipset product development.
44*
45* --------------------------------------------------------------------
46*/
47
48/*================================================================*/
49/* System Includes */
Karl Reltond8950592009-08-19 08:06:39 +010050#include <linux/ihex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Karl Relton76e3e7c2009-04-17 10:15:34 +010052
Karl Relton76e3e7c2009-04-17 10:15:34 +010053/*================================================================*/
54/* Local Constants */
55
Karl Reltond8950592009-08-19 08:06:39 +010056#define PRISM2_USB_FWFILE "prism2_ru.fw"
Ben Hutchings5d929a72010-01-13 23:36:09 +000057MODULE_FIRMWARE(PRISM2_USB_FWFILE);
Karl Relton76e3e7c2009-04-17 10:15:34 +010058
59#define S3DATA_MAX 5000
60#define S3PLUG_MAX 200
61#define S3CRC_MAX 200
62#define S3INFO_MAX 50
Karl Relton76e3e7c2009-04-17 10:15:34 +010063
64#define S3ADDR_PLUG (0xff000000UL)
65#define S3ADDR_CRC (0xff100000UL)
66#define S3ADDR_INFO (0xff200000UL)
Karl Reltond8950592009-08-19 08:06:39 +010067#define S3ADDR_START (0xff400000UL)
Karl Relton76e3e7c2009-04-17 10:15:34 +010068
69#define CHUNKS_MAX 100
70
71#define WRITESIZE_MAX 4096
72
73/*================================================================*/
Karl Relton76e3e7c2009-04-17 10:15:34 +010074/* Local Types */
75
Edgardo Hamese0264412010-07-21 22:31:56 -030076struct s3datarec {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +053077 u32 len;
78 u32 addr;
79 u8 checksum;
80 u8 *data;
Edgardo Hamese0264412010-07-21 22:31:56 -030081};
Karl Relton76e3e7c2009-04-17 10:15:34 +010082
Edgardo Hamese0264412010-07-21 22:31:56 -030083struct s3plugrec {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +053084 u32 itemcode;
85 u32 addr;
86 u32 len;
Edgardo Hamese0264412010-07-21 22:31:56 -030087};
Karl Relton76e3e7c2009-04-17 10:15:34 +010088
Edgardo Hamese0264412010-07-21 22:31:56 -030089struct s3crcrec {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +053090 u32 addr;
91 u32 len;
92 unsigned int dowrite;
Edgardo Hamese0264412010-07-21 22:31:56 -030093};
Karl Relton76e3e7c2009-04-17 10:15:34 +010094
Edgardo Hamese0264412010-07-21 22:31:56 -030095struct s3inforec {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +053096 u16 len;
97 u16 type;
Karl Relton76e3e7c2009-04-17 10:15:34 +010098 union {
Sergio Paracuellos5f046452016-09-28 20:18:55 +020099 struct hfa384x_compident version;
Sergio Paracuellos65f170c2016-09-28 20:18:57 +0200100 struct hfa384x_caplevel compat;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530101 u16 buildseq;
Sergio Paracuellos5f046452016-09-28 20:18:55 +0200102 struct hfa384x_compident platform;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530103 } info;
Edgardo Hamese0264412010-07-21 22:31:56 -0300104};
Karl Relton76e3e7c2009-04-17 10:15:34 +0100105
Edgardo Hamese0264412010-07-21 22:31:56 -0300106struct pda {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530107 u8 buf[HFA384x_PDA_LEN_MAX];
Sergio Paracuellos4f026e82016-09-28 20:20:13 +0200108 struct hfa384x_pdrec *rec[HFA384x_PDA_RECS_MAX];
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530109 unsigned int nrec;
Edgardo Hamese0264412010-07-21 22:31:56 -0300110};
Karl Relton76e3e7c2009-04-17 10:15:34 +0100111
Edgardo Hamese0264412010-07-21 22:31:56 -0300112struct imgchunk {
Andrew Elwellef1a0ed2010-02-18 23:56:12 +0100113 u32 addr; /* start address */
114 u32 len; /* in bytes */
115 u16 crc; /* CRC value (if it falls at a chunk boundary) */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530116 u8 *data;
Edgardo Hamese0264412010-07-21 22:31:56 -0300117};
Karl Relton76e3e7c2009-04-17 10:15:34 +0100118
119/*================================================================*/
120/* Local Static Definitions */
121
Karl Relton76e3e7c2009-04-17 10:15:34 +0100122/*----------------------------------------------------------------*/
123/* s-record image processing */
124
125/* Data records */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530126static unsigned int ns3data;
127static struct s3datarec s3data[S3DATA_MAX];
Karl Relton76e3e7c2009-04-17 10:15:34 +0100128
129/* Plug records */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530130static unsigned int ns3plug;
131static struct s3plugrec s3plug[S3PLUG_MAX];
Karl Relton76e3e7c2009-04-17 10:15:34 +0100132
133/* CRC records */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530134static unsigned int ns3crc;
135static struct s3crcrec s3crc[S3CRC_MAX];
Karl Relton76e3e7c2009-04-17 10:15:34 +0100136
137/* Info records */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530138static unsigned int ns3info;
139static struct s3inforec s3info[S3INFO_MAX];
Karl Relton76e3e7c2009-04-17 10:15:34 +0100140
141/* S7 record (there _better_ be only one) */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530142static u32 startaddr;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100143
144/* Load image chunks */
Devendra Naga023aeaa2012-09-09 18:40:51 +0530145static unsigned int nfchunks;
146static struct imgchunk fchunk[CHUNKS_MAX];
Karl Relton76e3e7c2009-04-17 10:15:34 +0100147
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...] */
153
Devendra Naga023aeaa2012-09-09 18:40:51 +0530154static struct pda pda;
Sergio Paracuellos5f046452016-09-28 20:18:55 +0200155static struct hfa384x_compident nicid;
Sergio Paracuellos65f170c2016-09-28 20:18:57 +0200156static struct hfa384x_caplevel rfid;
157static struct hfa384x_caplevel macid;
158static struct hfa384x_caplevel priid;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100159
160/*================================================================*/
161/* Local Function Declarations */
162
Zachary Richeya05d08c2010-05-11 14:16:41 -0400163static int prism2_fwapply(const struct ihex_binrec *rfptr,
sayli karnikc9573a82016-09-18 15:11:14 +0530164struct wlandevice *wlandev);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100165
Zachary Richeya05d08c2010-05-11 14:16:41 -0400166static int read_fwfile(const struct ihex_binrec *rfptr);
167
Edgardo Hamese0264412010-07-21 22:31:56 -0300168static int mkimage(struct imgchunk *clist, unsigned int *ccnt);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400169
sayli karnikc9573a82016-09-18 15:11:14 +0530170static int read_cardpda(struct pda *pda, struct wlandevice *wlandev);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400171
Edgardo Hamese0264412010-07-21 22:31:56 -0300172static int mkpdrlist(struct pda *pda);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400173
Edgardo Hamese0264412010-07-21 22:31:56 -0300174static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
Devendra Nagacf668232012-06-06 01:12:06 +0530175 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400176
Edgardo Hamese0264412010-07-21 22:31:56 -0300177static int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
178 struct s3crcrec *s3crc, unsigned int ns3crc);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400179
sayli karnikc9573a82016-09-18 15:11:14 +0530180static int writeimage(struct wlandevice *wlandev, struct imgchunk *fchunk,
Zachary Richeya05d08c2010-05-11 14:16:41 -0400181 unsigned int nfchunks);
Edgardo Hamese0264412010-07-21 22:31:56 -0300182static void free_chunks(struct imgchunk *fchunk, unsigned int *nfchunks);
Zachary Richeya05d08c2010-05-11 14:16:41 -0400183
184static void free_srecs(void);
185
186static int validate_identity(void);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100187
188/*================================================================*/
189/* Function Definitions */
190
Karl Relton76e3e7c2009-04-17 10:15:34 +0100191/*----------------------------------------------------------------
192* prism2_fwtry
193*
194* Try and get firmware into memory
195*
196* Arguments:
197* udev usb device structure
198* wlandev wlan device structure
199*
200* Returns:
201* 0 - success
202* ~0 - failure
203----------------------------------------------------------------*/
sayli karnikc9573a82016-09-18 15:11:14 +0530204static int prism2_fwtry(struct usb_device *udev, struct wlandevice *wlandev)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100205{
206 const struct firmware *fw_entry = NULL;
207
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000208 netdev_info(wlandev->netdev, "prism2_usb: Checking for firmware %s\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530209 PRISM2_USB_FWFILE);
Devendra Nagacf668232012-06-06 01:12:06 +0530210 if (request_ihex_firmware(&fw_entry,
211 PRISM2_USB_FWFILE, &udev->dev) != 0) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000212 netdev_info(wlandev->netdev,
Karl Relton76e3e7c2009-04-17 10:15:34 +0100213 "prism2_usb: Firmware not available, but not essential\n");
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000214 netdev_info(wlandev->netdev,
Karl Relton76e3e7c2009-04-17 10:15:34 +0100215 "prism2_usb: can continue to use card anyway.\n");
216 return 1;
217 }
218
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000219 netdev_info(wlandev->netdev,
220 "prism2_usb: %s will be processed, size %zu\n",
221 PRISM2_USB_FWFILE, fw_entry->size);
Karl Reltond8950592009-08-19 08:06:39 +0100222 prism2_fwapply((const struct ihex_binrec *)fw_entry->data, wlandev);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100223
224 release_firmware(fw_entry);
225 return 0;
226}
227
Karl Relton76e3e7c2009-04-17 10:15:34 +0100228/*----------------------------------------------------------------
229* prism2_fwapply
230*
231* Apply the firmware loaded into memory
232*
233* Arguments:
234* rfptr firmware image in kernel memory
Karl Relton76e3e7c2009-04-17 10:15:34 +0100235* wlandev device
236*
237* Returns:
238* 0 - success
239* ~0 - failure
240----------------------------------------------------------------*/
Aede Symen Hoekstrae3c2b452014-11-16 16:48:49 +0100241static int prism2_fwapply(const struct ihex_binrec *rfptr,
sayli karnikc9573a82016-09-18 15:11:14 +0530242 struct wlandevice *wlandev)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100243{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530244 signed int result = 0;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300245 struct p80211msg_dot11req_mibget getmsg;
Sergio Paracuellosac033ec2016-09-25 15:34:59 +0200246 struct p80211itemd *item;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530247 u32 *data;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100248
249 /* Initialize the data structures */
250 ns3data = 0;
251 memset(s3data, 0, sizeof(s3data));
252 ns3plug = 0;
253 memset(s3plug, 0, sizeof(s3plug));
254 ns3crc = 0;
255 memset(s3crc, 0, sizeof(s3crc));
256 ns3info = 0;
257 memset(s3info, 0, sizeof(s3info));
258 startaddr = 0;
259
260 nfchunks = 0;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530261 memset(fchunk, 0, sizeof(fchunk));
262 memset(&nicid, 0, sizeof(nicid));
263 memset(&rfid, 0, sizeof(rfid));
264 memset(&macid, 0, sizeof(macid));
265 memset(&priid, 0, sizeof(priid));
Karl Relton76e3e7c2009-04-17 10:15:34 +0100266
267 /* clear the pda and add an initial END record */
268 memset(&pda, 0, sizeof(pda));
Sergio Paracuellos4f026e82016-09-28 20:20:13 +0200269 pda.rec[0] = (struct hfa384x_pdrec *)pda.buf;
Zachary Richeya05d08c2010-05-11 14:16:41 -0400270 pda.rec[0]->len = cpu_to_le16(2); /* len in words */
Karl Relton76e3e7c2009-04-17 10:15:34 +0100271 pda.rec[0]->code = cpu_to_le16(HFA384x_PDR_END_OF_PDA);
272 pda.nrec = 1;
273
Karl Relton76e3e7c2009-04-17 10:15:34 +0100274 /*-----------------------------------------------------*/
275 /* Put card into fwload state */
276 prism2sta_ifstate(wlandev, P80211ENUM_ifstate_fwload);
277
278 /* Build the PDA we're going to use. */
279 if (read_cardpda(&pda, wlandev)) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000280 netdev_err(wlandev->netdev, "load_cardpda failed, exiting.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300281 result = 1;
282 goto out;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100283 }
284
285 /* read the card's PRI-SUP */
286 memset(&getmsg, 0, sizeof(getmsg));
287 getmsg.msgcode = DIDmsg_dot11req_mibget;
288 getmsg.msglen = sizeof(getmsg);
289 strcpy(getmsg.devname, wlandev->name);
290
291 getmsg.mibattribute.did = DIDmsg_dot11req_mibget_mibattribute;
292 getmsg.mibattribute.status = P80211ENUM_msgitem_status_data_ok;
293 getmsg.resultcode.did = DIDmsg_dot11req_mibget_resultcode;
294 getmsg.resultcode.status = P80211ENUM_msgitem_status_no_value;
295
Sergio Paracuellosac033ec2016-09-25 15:34:59 +0200296 item = (struct p80211itemd *)getmsg.mibattribute.data;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100297 item->did = DIDmib_p2_p2NIC_p2PRISupRange;
298 item->status = P80211ENUM_msgitem_status_no_value;
299
Jannik Becher0e21fa42016-09-23 01:02:10 +0200300 data = (u32 *)item->data;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100301
302 /* DIDmsg_dot11req_mibget */
303 prism2mgmt_mibset_mibget(wlandev, &getmsg);
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100304 if (getmsg.resultcode.data != P80211ENUM_resultcode_success)
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000305 netdev_err(wlandev->netdev, "Couldn't fetch PRI-SUP info\n");
Karl Relton76e3e7c2009-04-17 10:15:34 +0100306
307 /* Already in host order */
308 priid.role = *data++;
309 priid.id = *data++;
310 priid.variant = *data++;
311 priid.bottom = *data++;
312 priid.top = *data++;
313
Karl Relton76e3e7c2009-04-17 10:15:34 +0100314 /* Read the S3 file */
Karl Reltond8950592009-08-19 08:06:39 +0100315 result = read_fwfile(rfptr);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530316 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000317 netdev_err(wlandev->netdev,
318 "Failed to read the data exiting.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300319 goto out;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100320 }
Karl Relton76e3e7c2009-04-17 10:15:34 +0100321
322 result = validate_identity();
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530323 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000324 netdev_err(wlandev->netdev, "Incompatible firmware image.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300325 goto out;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100326 }
327
328 if (startaddr == 0x00000000) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000329 netdev_err(wlandev->netdev,
330 "Can't RAM download a Flash image!\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300331 result = 1;
332 goto out;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100333 }
334
335 /* Make the image chunks */
336 result = mkimage(fchunk, &nfchunks);
Sandhya Bankarc631cb02016-03-07 16:15:59 +0530337 if (result) {
338 netdev_err(wlandev->netdev, "Failed to make image chunk.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300339 goto free_chunks;
Sandhya Bankarc631cb02016-03-07 16:15:59 +0530340 }
Karl Relton76e3e7c2009-04-17 10:15:34 +0100341
342 /* Do any plugging */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530343 result = plugimage(fchunk, nfchunks, s3plug, ns3plug, &pda);
344 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000345 netdev_err(wlandev->netdev, "Failed to plug data.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300346 goto free_chunks;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100347 }
348
349 /* Insert any CRCs */
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300350 result = crcimage(fchunk, nfchunks, s3crc, ns3crc);
351 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000352 netdev_err(wlandev->netdev, "Failed to insert all CRCs\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300353 goto free_chunks;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100354 }
355
356 /* Write the image */
357 result = writeimage(wlandev, fchunk, nfchunks);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530358 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000359 netdev_err(wlandev->netdev, "Failed to ramwrite image data.\n");
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300360 goto free_chunks;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100361 }
362
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300363 netdev_info(wlandev->netdev, "prism2_usb: firmware loading finished.\n");
364
365free_chunks:
Karl Relton76e3e7c2009-04-17 10:15:34 +0100366 /* clear any allocated memory */
367 free_chunks(fchunk, &nfchunks);
368 free_srecs();
369
Claudiu Bezneae26eaf452016-04-24 19:40:13 +0300370out:
Karl Relton76e3e7c2009-04-17 10:15:34 +0100371 return result;
372}
373
Karl Relton76e3e7c2009-04-17 10:15:34 +0100374/*----------------------------------------------------------------
375* crcimage
376*
377* Adds a CRC16 in the two bytes prior to each block identified by
378* an S3 CRC record. Currently, we don't actually do a CRC we just
379* insert the value 0xC0DE in hfa384x order.
380*
381* Arguments:
382* fchunk Array of image chunks
383* nfchunks Number of image chunks
384* s3crc Array of crc records
385* ns3crc Number of crc records
386*
387* Returns:
388* 0 success
389* ~0 failure
390----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530391static int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
Edgardo Hamese0264412010-07-21 22:31:56 -0300392 struct s3crcrec *s3crc, unsigned int ns3crc)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100393{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530394 int result = 0;
395 int i;
396 int c;
397 u32 crcstart;
398 u32 crcend;
399 u32 cstart = 0;
400 u32 cend;
401 u8 *dest;
402 u32 chunkoff;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100403
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530404 for (i = 0; i < ns3crc; i++) {
405 if (!s3crc[i].dowrite)
406 continue;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100407 crcstart = s3crc[i].addr;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530408 crcend = s3crc[i].addr + s3crc[i].len;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100409 /* Find chunk */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530410 for (c = 0; c < nfchunks; c++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100411 cstart = fchunk[c].addr;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530412 cend = fchunk[c].addr + fchunk[c].len;
Edgardo Hamese0264412010-07-21 22:31:56 -0300413 /* the line below does an address & len match search */
414 /* unfortunately, I've found that the len fields of */
415 /* some crc records don't match with the length of */
416 /* the actual data, so we're not checking right now */
417 /* if (crcstart-2 >= cstart && crcend <= cend) break; */
Karl Relton76e3e7c2009-04-17 10:15:34 +0100418
419 /* note the -2 below, it's to make sure the chunk has */
Edgardo Hamese0264412010-07-21 22:31:56 -0300420 /* space for the CRC value */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530421 if (crcstart - 2 >= cstart && crcstart < cend)
422 break;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100423 }
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530424 if (c >= nfchunks) {
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000425 pr_err("Failed to find chunk for crcrec[%d], addr=0x%06x len=%d , aborting crc.\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530426 i, s3crc[i].addr, s3crc[i].len);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100427 return 1;
428 }
429
430 /* Insert crc */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530431 pr_debug("Adding crc @ 0x%06x\n", s3crc[i].addr - 2);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100432 chunkoff = crcstart - cstart - 2;
433 dest = fchunk[c].data + chunkoff;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530434 *dest = 0xde;
435 *(dest + 1) = 0xc0;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100436
437 }
438 return result;
439}
440
Karl Relton76e3e7c2009-04-17 10:15:34 +0100441/*----------------------------------------------------------------
442* free_chunks
443*
444* Clears the chunklist data structures in preparation for a new file.
445*
446* Arguments:
447* none
448*
449* Returns:
450* nothing
451----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530452static void free_chunks(struct imgchunk *fchunk, unsigned int *nfchunks)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100453{
454 int i;
Matt Kurz1177ce42014-07-02 05:59:54 +1000455
Joseph Salisbury23567c72011-06-05 17:28:12 +0100456 for (i = 0; i < *nfchunks; i++)
Ilia Mirkina6f9c482011-03-13 00:29:17 -0500457 kfree(fchunk[i].data);
Joseph Salisbury23567c72011-06-05 17:28:12 +0100458
Karl Relton76e3e7c2009-04-17 10:15:34 +0100459 *nfchunks = 0;
Julia Lawall4068fe82009-12-09 20:25:04 +0100460 memset(fchunk, 0, sizeof(*fchunk));
Karl Relton76e3e7c2009-04-17 10:15:34 +0100461
462}
463
Karl Relton76e3e7c2009-04-17 10:15:34 +0100464/*----------------------------------------------------------------
465* free_srecs
466*
467* Clears the srec data structures in preparation for a new file.
468*
469* Arguments:
470* none
471*
472* Returns:
473* nothing
474----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530475static void free_srecs(void)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100476{
Karl Relton76e3e7c2009-04-17 10:15:34 +0100477 ns3data = 0;
478 memset(s3data, 0, sizeof(s3data));
479 ns3plug = 0;
480 memset(s3plug, 0, sizeof(s3plug));
481 ns3crc = 0;
482 memset(s3crc, 0, sizeof(s3crc));
483 ns3info = 0;
484 memset(s3info, 0, sizeof(s3info));
485 startaddr = 0;
486}
487
Karl Relton76e3e7c2009-04-17 10:15:34 +0100488/*----------------------------------------------------------------
489* mkimage
490*
491* Scans the currently loaded set of S records for data residing
492* in contiguous memory regions. Each contiguous region is then
493* made into a 'chunk'. This function assumes that we're building
494* a new chunk list. Assumes the s3data items are in sorted order.
495*
496* Arguments: none
497*
498* Returns:
499* 0 - success
500* ~0 - failure (probably an errno)
501----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530502static int mkimage(struct imgchunk *clist, unsigned int *ccnt)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100503{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530504 int result = 0;
505 int i;
506 int j;
507 int currchunk = 0;
508 u32 nextaddr = 0;
509 u32 s3start;
510 u32 s3end;
511 u32 cstart = 0;
512 u32 cend;
513 u32 coffset;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100514
515 /* There may already be data in the chunklist */
516 *ccnt = 0;
517
518 /* Establish the location and size of each chunk */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530519 for (i = 0; i < ns3data; i++) {
520 if (s3data[i].addr == nextaddr) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100521 /* existing chunk, grow it */
522 clist[currchunk].len += s3data[i].len;
523 nextaddr += s3data[i].len;
524 } else {
525 /* New chunk */
526 (*ccnt)++;
527 currchunk = *ccnt - 1;
528 clist[currchunk].addr = s3data[i].addr;
529 clist[currchunk].len = s3data[i].len;
530 nextaddr = s3data[i].addr + s3data[i].len;
531 /* Expand the chunk if there is a CRC record at */
532 /* their beginning bound */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530533 for (j = 0; j < ns3crc; j++) {
534 if (s3crc[j].dowrite &&
535 s3crc[j].addr == clist[currchunk].addr) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100536 clist[currchunk].addr -= 2;
537 clist[currchunk].len += 2;
538 }
539 }
540 }
541 }
542
543 /* We're currently assuming there aren't any overlapping chunks */
544 /* if this proves false, we'll need to add code to coalesce. */
545
546 /* Allocate buffer space for chunks */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530547 for (i = 0; i < *ccnt; i++) {
Julia Lawall7a6cb0d2010-05-13 22:00:05 +0200548 clist[i].data = kzalloc(clist[i].len, GFP_KERNEL);
Eva Rachel Retuyae2e77522016-02-27 20:39:25 +0800549 if (!clist[i].data) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000550 pr_err("failed to allocate image space, exitting.\n");
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100551 return 1;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100552 }
Karl Relton76e3e7c2009-04-17 10:15:34 +0100553 pr_debug("chunk[%d]: addr=0x%06x len=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530554 i, clist[i].addr, clist[i].len);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100555 }
556
557 /* Copy srec data to chunks */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530558 for (i = 0; i < ns3data; i++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100559 s3start = s3data[i].addr;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530560 s3end = s3start + s3data[i].len - 1;
561 for (j = 0; j < *ccnt; j++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100562 cstart = clist[j].addr;
563 cend = cstart + clist[j].len - 1;
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100564 if (s3start >= cstart && s3end <= cend)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100565 break;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100566 }
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530567 if (((unsigned int)j) >= (*ccnt)) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000568 pr_err("s3rec(a=0x%06x,l=%d), no chunk match, exiting.\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530569 s3start, s3data[i].len);
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100570 return 1;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100571 }
572 coffset = s3start - cstart;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530573 memcpy(clist[j].data + coffset, s3data[i].data, s3data[i].len);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100574 }
575
576 return result;
577}
578
579/*----------------------------------------------------------------
580* mkpdrlist
581*
582* Reads a raw PDA and builds an array of pdrec_t structures.
583*
584* Arguments:
585* pda buffer containing raw PDA bytes
586* pdrec ptr to an array of pdrec_t's. Will be filled on exit.
587* nrec ptr to a variable that will contain the count of PDRs
588*
589* Returns:
590* 0 - success
591* ~0 - failure (probably an errno)
592----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530593static int mkpdrlist(struct pda *pda)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100594{
Jannik Becher0e21fa42016-09-23 01:02:10 +0200595 u16 *pda16 = (u16 *)pda->buf;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530596 int curroff; /* in 'words' */
Karl Relton76e3e7c2009-04-17 10:15:34 +0100597
598 pda->nrec = 0;
599 curroff = 0;
Tillmann Heidsieck4ccb7262015-09-23 22:07:53 +0200600 while (curroff < (HFA384x_PDA_LEN_MAX / 2 - 1) &&
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530601 le16_to_cpu(pda16[curroff + 1]) != HFA384x_PDR_END_OF_PDA) {
Sergio Paracuellos4f026e82016-09-28 20:20:13 +0200602 pda->rec[pda->nrec] = (struct hfa384x_pdrec *)&(pda16[curroff]);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100603
Devendra Nagacf668232012-06-06 01:12:06 +0530604 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
605 HFA384x_PDR_NICID) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100606 memcpy(&nicid, &pda->rec[pda->nrec]->data.nicid,
607 sizeof(nicid));
608 nicid.id = le16_to_cpu(nicid.id);
609 nicid.variant = le16_to_cpu(nicid.variant);
610 nicid.major = le16_to_cpu(nicid.major);
611 nicid.minor = le16_to_cpu(nicid.minor);
612 }
613 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530614 HFA384x_PDR_MFISUPRANGE) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100615 memcpy(&rfid, &pda->rec[pda->nrec]->data.mfisuprange,
616 sizeof(rfid));
617 rfid.id = le16_to_cpu(rfid.id);
618 rfid.variant = le16_to_cpu(rfid.variant);
619 rfid.bottom = le16_to_cpu(rfid.bottom);
620 rfid.top = le16_to_cpu(rfid.top);
621 }
622 if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530623 HFA384x_PDR_CFISUPRANGE) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100624 memcpy(&macid, &pda->rec[pda->nrec]->data.cfisuprange,
625 sizeof(macid));
626 macid.id = le16_to_cpu(macid.id);
627 macid.variant = le16_to_cpu(macid.variant);
628 macid.bottom = le16_to_cpu(macid.bottom);
629 macid.top = le16_to_cpu(macid.top);
630 }
631
632 (pda->nrec)++;
633 curroff += le16_to_cpu(pda16[curroff]) + 1;
634
635 }
Tillmann Heidsieck4ccb7262015-09-23 22:07:53 +0200636 if (curroff >= (HFA384x_PDA_LEN_MAX / 2 - 1)) {
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000637 pr_err("no end record found or invalid lengths in PDR data, exiting. %x %d\n",
638 curroff, pda->nrec);
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100639 return 1;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100640 }
Sergio Paracuellos4f026e82016-09-28 20:20:13 +0200641 pda->rec[pda->nrec] = (struct hfa384x_pdrec *)&(pda16[curroff]);
Tillmann Heidsieckc739c982015-09-23 22:07:54 +0200642 (pda->nrec)++;
Tillmann Heidsieck3ac84802015-09-23 22:07:55 +0200643 return 0;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100644}
645
Karl Relton76e3e7c2009-04-17 10:15:34 +0100646/*----------------------------------------------------------------
647* plugimage
648*
649* Plugs the given image using the given plug records from the given
650* PDA and filename.
651*
652* Arguments:
653* fchunk Array of image chunks
654* nfchunks Number of image chunks
655* s3plug Array of plug records
656* ns3plug Number of plug records
657* pda Current pda data
658*
659* Returns:
660* 0 success
661* ~0 failure
662----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530663static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
Devendra Nagacf668232012-06-06 01:12:06 +0530664 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100665{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530666 int result = 0;
667 int i; /* plug index */
668 int j; /* index of PDR or -1 if fname plug */
669 int c; /* chunk index */
670 u32 pstart;
671 u32 pend;
672 u32 cstart = 0;
673 u32 cend;
674 u32 chunkoff;
675 u8 *dest;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100676
677 /* for each plug record */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530678 for (i = 0; i < ns3plug; i++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100679 pstart = s3plug[i].addr;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530680 pend = s3plug[i].addr + s3plug[i].len;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100681 /* find the matching PDR (or filename) */
Edgardo Hamese0264412010-07-21 22:31:56 -0300682 if (s3plug[i].itemcode != 0xffffffffUL) { /* not filename */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530683 for (j = 0; j < pda->nrec; j++) {
684 if (s3plug[i].itemcode ==
685 le16_to_cpu(pda->rec[j]->code))
686 break;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100687 }
688 } else {
689 j = -1;
690 }
Edgardo Hamese0264412010-07-21 22:31:56 -0300691 if (j >= pda->nrec && j != -1) { /* if no matching PDR, fail */
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000692 pr_warn("warning: Failed to find PDR for plugrec 0x%04x.\n",
693 s3plug[i].itemcode);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530694 continue; /* and move on to the next PDR */
Karl Relton76e3e7c2009-04-17 10:15:34 +0100695#if 0
696 /* MSM: They swear that unless it's the MAC address,
697 * the serial number, or the TX calibration records,
698 * then there's reasonable defaults in the f/w
699 * image. Therefore, missing PDRs in the card
700 * should only be a warning, not fatal.
701 * TODO: add fatals for the PDRs mentioned above.
702 */
703 result = 1;
704 continue;
705#endif
706 }
707
708 /* Validate plug len against PDR len */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530709 if (j != -1 && s3plug[i].len < le16_to_cpu(pda->rec[j]->len)) {
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000710 pr_err("error: Plug vs. PDR len mismatch for plugrec 0x%04x, abort plugging.\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530711 s3plug[i].itemcode);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100712 result = 1;
713 continue;
714 }
715
Douglas Barbonaglia Sathler Figueiredocfa69542015-06-01 10:37:11 -0300716 /*
717 * Validate plug address against
718 * chunk data and identify chunk
719 */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530720 for (c = 0; c < nfchunks; c++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100721 cstart = fchunk[c].addr;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530722 cend = fchunk[c].addr + fchunk[c].len;
723 if (pstart >= cstart && pend <= cend)
724 break;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100725 }
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530726 if (c >= nfchunks) {
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000727 pr_err("error: Failed to find image chunk for plugrec 0x%04x.\n",
728 s3plug[i].itemcode);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100729 result = 1;
730 continue;
731 }
732
733 /* Plug data */
734 chunkoff = pstart - cstart;
735 dest = fchunk[c].data + chunkoff;
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000736 pr_debug("Plugging item 0x%04x @ 0x%06x, len=%d, cnum=%d coff=0x%06x\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530737 s3plug[i].itemcode, pstart, s3plug[i].len,
738 c, chunkoff);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100739
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530740 if (j == -1) { /* plug the filename */
Karl Relton76e3e7c2009-04-17 10:15:34 +0100741 memset(dest, 0, s3plug[i].len);
742 strncpy(dest, PRISM2_USB_FWFILE, s3plug[i].len - 1);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530743 } else { /* plug a PDR */
744 memcpy(dest, &(pda->rec[j]->data), s3plug[i].len);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100745 }
746 }
747 return result;
748
749}
750
Karl Relton76e3e7c2009-04-17 10:15:34 +0100751/*----------------------------------------------------------------
752* read_cardpda
753*
754* Sends the command for the driver to read the pda from the card
755* named in the device variable. Upon success, the card pda is
756* stored in the "cardpda" variables. Note that the pda structure
757* is considered 'well formed' after this function. That means
758* that the nrecs is valid, the rec array has been set up, and there's
759* a valid PDAEND record in the raw PDA data.
760*
761* Arguments:
762* pda pda structure
763* wlandev device
764*
765* Returns:
766* 0 - success
767* ~0 - failure (probably an errno)
768----------------------------------------------------------------*/
sayli karnikc9573a82016-09-18 15:11:14 +0530769static int read_cardpda(struct pda *pda, struct wlandevice *wlandev)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100770{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530771 int result = 0;
A Raghavendra Rao41cb65c2014-08-07 14:10:39 +0530772 struct p80211msg_p2req_readpda *msg;
773
774 msg = kzalloc(sizeof(*msg), GFP_KERNEL);
775 if (!msg)
776 return -ENOMEM;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100777
778 /* set up the msg */
A Raghavendra Rao41cb65c2014-08-07 14:10:39 +0530779 msg->msgcode = DIDmsg_p2req_readpda;
780 msg->msglen = sizeof(msg);
781 strcpy(msg->devname, wlandev->name);
782 msg->pda.did = DIDmsg_p2req_readpda_pda;
783 msg->pda.len = HFA384x_PDA_LEN_MAX;
784 msg->pda.status = P80211ENUM_msgitem_status_no_value;
785 msg->resultcode.did = DIDmsg_p2req_readpda_resultcode;
786 msg->resultcode.len = sizeof(u32);
787 msg->resultcode.status = P80211ENUM_msgitem_status_no_value;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100788
A Raghavendra Rao41cb65c2014-08-07 14:10:39 +0530789 if (prism2mgmt_readpda(wlandev, msg) != 0) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100790 /* prism2mgmt_readpda prints an errno if appropriate */
791 result = -1;
A Raghavendra Rao41cb65c2014-08-07 14:10:39 +0530792 } else if (msg->resultcode.data == P80211ENUM_resultcode_success) {
793 memcpy(pda->buf, msg->pda.data, HFA384x_PDA_LEN_MAX);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100794 result = mkpdrlist(pda);
795 } else {
796 /* resultcode must've been something other than success */
797 result = -1;
798 }
799
A Raghavendra Rao41cb65c2014-08-07 14:10:39 +0530800 kfree(msg);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100801 return result;
802}
803
Karl Relton76e3e7c2009-04-17 10:15:34 +0100804/*----------------------------------------------------------------
Karl Reltond8950592009-08-19 08:06:39 +0100805* read_fwfile
Karl Relton76e3e7c2009-04-17 10:15:34 +0100806*
Karl Reltond8950592009-08-19 08:06:39 +0100807* Reads the given fw file which should have been compiled from an srec
808* file. Each record in the fw file will either be a plain data record,
809* a start address record, or other records used for plugging.
Karl Relton76e3e7c2009-04-17 10:15:34 +0100810*
Karl Reltond8950592009-08-19 08:06:39 +0100811* Note that data records are expected to be sorted into
812* ascending address order in the fw file.
Karl Relton76e3e7c2009-04-17 10:15:34 +0100813*
Karl Reltond8950592009-08-19 08:06:39 +0100814* Note also that the start address record, originally an S7 record in
815* the srec file, is expected in the fw file to be like a data record but
Justin P. Mattockd34602d2012-09-24 09:16:57 -0700816* with a certain address to make it identifiable.
Karl Relton76e3e7c2009-04-17 10:15:34 +0100817*
Karl Reltond8950592009-08-19 08:06:39 +0100818* Here's the SREC format that the fw should have come from:
Karl Relton76e3e7c2009-04-17 10:15:34 +0100819* S[37]nnaaaaaaaaddd...dddcc
820*
821* nn - number of bytes starting with the address field
822* aaaaaaaa - address in readable (or big endian) format
823* dd....dd - 0-245 data bytes (two chars per byte)
824* cc - checksum
825*
826* The S7 record's (there should be only one) address value gets
Karl Reltond8950592009-08-19 08:06:39 +0100827* converted to an S3 record with address of 0xff400000, with the
828* start address being stored as a 4 byte data word. That address is
829* the start execution address used for RAM downloads.
Karl Relton76e3e7c2009-04-17 10:15:34 +0100830*
831* The S3 records have a collection of subformats indicated by the
832* value of aaaaaaaa:
833* 0xff000000 - Plug record, data field format:
834* xxxxxxxxaaaaaaaassssssss
835* x - PDR code number (little endian)
836* a - Address in load image to plug (little endian)
837* s - Length of plug data area (little endian)
838*
839* 0xff100000 - CRC16 generation record, data field format:
840* aaaaaaaassssssssbbbbbbbb
841* a - Start address for CRC calculation (little endian)
842* s - Length of data to calculate over (little endian)
843* b - Boolean, true=write crc, false=don't write
844*
845* 0xff200000 - Info record, data field format:
846* ssssttttdd..dd
847* s - Size in words (little endian)
848* t - Info type (little endian), see #defines and
Edgardo Hamese0264412010-07-21 22:31:56 -0300849* struct s3inforec for details about types.
Karl Relton76e3e7c2009-04-17 10:15:34 +0100850* d - (s - 1) little endian words giving the contents of
851* the given info type.
852*
Karl Reltond8950592009-08-19 08:06:39 +0100853* 0xff400000 - Start address record, data field format:
854* aaaaaaaa
855* a - Address in load image to plug (little endian)
856*
Karl Relton76e3e7c2009-04-17 10:15:34 +0100857* Arguments:
Karl Reltond8950592009-08-19 08:06:39 +0100858* record firmware image (ihex record structure) in kernel memory
Karl Relton76e3e7c2009-04-17 10:15:34 +0100859*
860* Returns:
861* 0 - success
862* ~0 - failure (probably an errno)
863----------------------------------------------------------------*/
Devendra Nagaae24e132012-09-09 18:40:52 +0530864static int read_fwfile(const struct ihex_binrec *record)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100865{
Karl Reltond8950592009-08-19 08:06:39 +0100866 int i;
867 int rcnt = 0;
868 u16 *tmpinfo;
869 u16 *ptr16;
870 u32 *ptr32, len, addr;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100871
Karl Reltond8950592009-08-19 08:06:39 +0100872 pr_debug("Reading fw file ...\n");
Karl Relton76e3e7c2009-04-17 10:15:34 +0100873
Karl Reltond8950592009-08-19 08:06:39 +0100874 while (record) {
Karl Relton76e3e7c2009-04-17 10:15:34 +0100875
Karl Reltond8950592009-08-19 08:06:39 +0100876 rcnt++;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100877
Karl Reltond8950592009-08-19 08:06:39 +0100878 len = be16_to_cpu(record->len);
879 addr = be32_to_cpu(record->addr);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100880
Karl Reltond8950592009-08-19 08:06:39 +0100881 /* Point into data for different word lengths */
Jannik Becher0e21fa42016-09-23 01:02:10 +0200882 ptr32 = (u32 *)record->data;
883 ptr16 = (u16 *)record->data;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100884
Karl Reltond8950592009-08-19 08:06:39 +0100885 /* parse what was an S3 srec and put it in the right array */
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100886 switch (addr) {
Karl Reltond8950592009-08-19 08:06:39 +0100887 case S3ADDR_START:
888 startaddr = *ptr32;
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000889 pr_debug(" S7 start addr, record=%d addr=0x%08x\n",
Karl Reltond8950592009-08-19 08:06:39 +0100890 rcnt,
891 startaddr);
892 break;
893 case S3ADDR_PLUG:
894 s3plug[ns3plug].itemcode = *ptr32;
895 s3plug[ns3plug].addr = *(ptr32 + 1);
896 s3plug[ns3plug].len = *(ptr32 + 2);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100897
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000898 pr_debug(" S3 plugrec, record=%d itemcode=0x%08x addr=0x%08x len=%d\n",
Karl Reltond8950592009-08-19 08:06:39 +0100899 rcnt,
900 s3plug[ns3plug].itemcode,
901 s3plug[ns3plug].addr,
902 s3plug[ns3plug].len);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100903
Karl Reltond8950592009-08-19 08:06:39 +0100904 ns3plug++;
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100905 if (ns3plug == S3PLUG_MAX) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000906 pr_err("S3 plugrec limit reached - aborting\n");
Karl Reltond8950592009-08-19 08:06:39 +0100907 return 1;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100908 }
Karl Reltond8950592009-08-19 08:06:39 +0100909 break;
910 case S3ADDR_CRC:
911 s3crc[ns3crc].addr = *ptr32;
912 s3crc[ns3crc].len = *(ptr32 + 1);
913 s3crc[ns3crc].dowrite = *(ptr32 + 2);
Karl Relton76e3e7c2009-04-17 10:15:34 +0100914
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000915 pr_debug(" S3 crcrec, record=%d addr=0x%08x len=%d write=0x%08x\n",
Karl Reltond8950592009-08-19 08:06:39 +0100916 rcnt,
917 s3crc[ns3crc].addr,
918 s3crc[ns3crc].len,
919 s3crc[ns3crc].dowrite);
920 ns3crc++;
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100921 if (ns3crc == S3CRC_MAX) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000922 pr_err("S3 crcrec limit reached - aborting\n");
Karl Reltond8950592009-08-19 08:06:39 +0100923 return 1;
924 }
925 break;
926 case S3ADDR_INFO:
927 s3info[ns3info].len = *ptr16;
928 s3info[ns3info].type = *(ptr16 + 1);
929
Artemiy Volkovd41b7b742014-08-14 16:20:09 +1000930 pr_debug(" S3 inforec, record=%d len=0x%04x type=0x%04x\n",
Karl Reltond8950592009-08-19 08:06:39 +0100931 rcnt,
932 s3info[ns3info].len,
933 s3info[ns3info].type);
Douglas Barbonaglia Sathler Figueiredocfa69542015-06-01 10:37:11 -0300934 if (((s3info[ns3info].len - 1) * sizeof(u16)) >
935 sizeof(s3info[ns3info].info)) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000936 pr_err("S3 inforec length too long - aborting\n");
Karl Reltond8950592009-08-19 08:06:39 +0100937 return 1;
938 }
939
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100940 tmpinfo = (u16 *)&(s3info[ns3info].info.version);
Karl Reltond8950592009-08-19 08:06:39 +0100941 pr_debug(" info=");
942 for (i = 0; i < s3info[ns3info].len - 1; i++) {
943 tmpinfo[i] = *(ptr16 + 2 + i);
944 pr_debug("%04x ", tmpinfo[i]);
945 }
946 pr_debug("\n");
947
948 ns3info++;
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100949 if (ns3info == S3INFO_MAX) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000950 pr_err("S3 inforec limit reached - aborting\n");
Karl Reltond8950592009-08-19 08:06:39 +0100951 return 1;
952 }
953 break;
954 default: /* Data record */
955 s3data[ns3data].addr = addr;
956 s3data[ns3data].len = len;
Jannik Becher0e21fa42016-09-23 01:02:10 +0200957 s3data[ns3data].data = (uint8_t *)record->data;
Karl Reltond8950592009-08-19 08:06:39 +0100958 ns3data++;
Svenne Krap5dd8acc2010-02-14 18:59:00 +0100959 if (ns3data == S3DATA_MAX) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000960 pr_err("S3 datarec limit reached - aborting\n");
Karl Reltond8950592009-08-19 08:06:39 +0100961 return 1;
962 }
963 break;
964 }
965 record = ihex_next_binrec(record);
966 }
967 return 0;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100968}
969
Karl Relton76e3e7c2009-04-17 10:15:34 +0100970/*----------------------------------------------------------------
971* writeimage
972*
973* Takes the chunks, builds p80211 messages and sends them down
974* to the driver for writing to the card.
975*
976* Arguments:
977* wlandev device
978* fchunk Array of image chunks
979* nfchunks Number of image chunks
980*
981* Returns:
982* 0 success
983* ~0 failure
984----------------------------------------------------------------*/
sayli karnikc9573a82016-09-18 15:11:14 +0530985static int writeimage(struct wlandevice *wlandev, struct imgchunk *fchunk,
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530986 unsigned int nfchunks)
Karl Relton76e3e7c2009-04-17 10:15:34 +0100987{
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530988 int result = 0;
Randy Dunlapc90e3e82012-06-24 21:35:29 -0700989 struct p80211msg_p2req_ramdl_state *rstmsg;
990 struct p80211msg_p2req_ramdl_write *rwrmsg;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530991 u32 resultcode;
992 int i;
993 int j;
994 unsigned int nwrites;
995 u32 curroff;
996 u32 currlen;
997 u32 currdaddr;
Karl Relton76e3e7c2009-04-17 10:15:34 +0100998
Tapasweni Pathakad96f372014-10-08 23:33:40 +0530999 rstmsg = kzalloc(sizeof(*rstmsg), GFP_KERNEL);
1000 rwrmsg = kzalloc(sizeof(*rwrmsg), GFP_KERNEL);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001001 if (!rstmsg || !rwrmsg) {
1002 kfree(rstmsg);
1003 kfree(rwrmsg);
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001004 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001005 "writeimage: no memory for firmware download, aborting download\n");
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001006 return -ENOMEM;
1007 }
Karl Relton76e3e7c2009-04-17 10:15:34 +01001008
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001009 /* Initialize the messages */
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001010 strcpy(rstmsg->devname, wlandev->name);
1011 rstmsg->msgcode = DIDmsg_p2req_ramdl_state;
1012 rstmsg->msglen = sizeof(*rstmsg);
1013 rstmsg->enable.did = DIDmsg_p2req_ramdl_state_enable;
1014 rstmsg->exeaddr.did = DIDmsg_p2req_ramdl_state_exeaddr;
1015 rstmsg->resultcode.did = DIDmsg_p2req_ramdl_state_resultcode;
1016 rstmsg->enable.status = P80211ENUM_msgitem_status_data_ok;
1017 rstmsg->exeaddr.status = P80211ENUM_msgitem_status_data_ok;
1018 rstmsg->resultcode.status = P80211ENUM_msgitem_status_no_value;
1019 rstmsg->enable.len = sizeof(u32);
1020 rstmsg->exeaddr.len = sizeof(u32);
1021 rstmsg->resultcode.len = sizeof(u32);
1022
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001023 strcpy(rwrmsg->devname, wlandev->name);
1024 rwrmsg->msgcode = DIDmsg_p2req_ramdl_write;
1025 rwrmsg->msglen = sizeof(*rwrmsg);
1026 rwrmsg->addr.did = DIDmsg_p2req_ramdl_write_addr;
1027 rwrmsg->len.did = DIDmsg_p2req_ramdl_write_len;
1028 rwrmsg->data.did = DIDmsg_p2req_ramdl_write_data;
1029 rwrmsg->resultcode.did = DIDmsg_p2req_ramdl_write_resultcode;
1030 rwrmsg->addr.status = P80211ENUM_msgitem_status_data_ok;
1031 rwrmsg->len.status = P80211ENUM_msgitem_status_data_ok;
1032 rwrmsg->data.status = P80211ENUM_msgitem_status_data_ok;
1033 rwrmsg->resultcode.status = P80211ENUM_msgitem_status_no_value;
1034 rwrmsg->addr.len = sizeof(u32);
1035 rwrmsg->len.len = sizeof(u32);
1036 rwrmsg->data.len = WRITESIZE_MAX;
1037 rwrmsg->resultcode.len = sizeof(u32);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001038
1039 /* Send xxx_state(enable) */
1040 pr_debug("Sending dl_state(enable) message.\n");
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001041 rstmsg->enable.data = P80211ENUM_truth_true;
1042 rstmsg->exeaddr.data = startaddr;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001043
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001044 result = prism2mgmt_ramdl_state(wlandev, rstmsg);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301045 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001046 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001047 "writeimage state enable failed w/ result=%d, aborting download\n",
1048 result);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001049 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001050 }
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001051 resultcode = rstmsg->resultcode.data;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301052 if (resultcode != P80211ENUM_resultcode_success) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001053 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001054 "writeimage()->xxxdl_state msg indicates failure, w/ resultcode=%d, aborting download.\n",
1055 resultcode);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001056 result = 1;
1057 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001058 }
1059
1060 /* Now, loop through the data chunks and send WRITESIZE_MAX data */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301061 for (i = 0; i < nfchunks; i++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +01001062 nwrites = fchunk[i].len / WRITESIZE_MAX;
1063 nwrites += (fchunk[i].len % WRITESIZE_MAX) ? 1 : 0;
1064 curroff = 0;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301065 for (j = 0; j < nwrites; j++) {
Edgardo Hamese0264412010-07-21 22:31:56 -03001066 /* TODO Move this to a separate function */
1067 int lenleft = fchunk[i].len - (WRITESIZE_MAX * j);
Matt Kurz1177ce42014-07-02 05:59:54 +10001068
Edgardo Hamese0264412010-07-21 22:31:56 -03001069 if (fchunk[i].len > WRITESIZE_MAX)
1070 currlen = WRITESIZE_MAX;
1071 else
1072 currlen = lenleft;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001073 curroff = j * WRITESIZE_MAX;
1074 currdaddr = fchunk[i].addr + curroff;
1075 /* Setup the message */
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001076 rwrmsg->addr.data = currdaddr;
1077 rwrmsg->len.data = currlen;
1078 memcpy(rwrmsg->data.data,
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301079 fchunk[i].data + curroff, currlen);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001080
1081 /* Send flashdl_write(pda) */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301082 pr_debug
1083 ("Sending xxxdl_write message addr=%06x len=%d.\n",
1084 currdaddr, currlen);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001085
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001086 result = prism2mgmt_ramdl_write(wlandev, rwrmsg);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001087
1088 /* Check the results */
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301089 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001090 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001091 "writeimage chunk write failed w/ result=%d, aborting download\n",
1092 result);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001093 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001094 }
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001095 resultcode = rstmsg->resultcode.data;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301096 if (resultcode != P80211ENUM_resultcode_success) {
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001097 pr_err("writeimage()->xxxdl_write msg indicates failure, w/ resultcode=%d, aborting download.\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301098 resultcode);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001099 result = 1;
1100 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001101 }
1102
1103 }
1104 }
1105
1106 /* Send xxx_state(disable) */
1107 pr_debug("Sending dl_state(disable) message.\n");
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001108 rstmsg->enable.data = P80211ENUM_truth_false;
1109 rstmsg->exeaddr.data = 0;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001110
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001111 result = prism2mgmt_ramdl_state(wlandev, rstmsg);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301112 if (result) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001113 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001114 "writeimage state disable failed w/ result=%d, aborting download\n",
1115 result);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001116 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001117 }
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001118 resultcode = rstmsg->resultcode.data;
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301119 if (resultcode != P80211ENUM_resultcode_success) {
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001120 netdev_err(wlandev->netdev,
Artemiy Volkovd41b7b742014-08-14 16:20:09 +10001121 "writeimage()->xxxdl_state msg indicates failure, w/ resultcode=%d, aborting download.\n",
1122 resultcode);
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001123 result = 1;
1124 goto free_result;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001125 }
Randy Dunlapc90e3e82012-06-24 21:35:29 -07001126
1127free_result:
1128 kfree(rstmsg);
1129 kfree(rwrmsg);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001130 return result;
1131}
1132
Devendra Nagaae24e132012-09-09 18:40:52 +05301133static int validate_identity(void)
Karl Relton76e3e7c2009-04-17 10:15:34 +01001134{
1135 int i;
1136 int result = 1;
Karl Reltond8950592009-08-19 08:06:39 +01001137 int trump = 0;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001138
1139 pr_debug("NIC ID: %#x v%d.%d.%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301140 nicid.id, nicid.major, nicid.minor, nicid.variant);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001141 pr_debug("MFI ID: %#x v%d %d->%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301142 rfid.id, rfid.variant, rfid.bottom, rfid.top);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001143 pr_debug("CFI ID: %#x v%d %d->%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301144 macid.id, macid.variant, macid.bottom, macid.top);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001145 pr_debug("PRI ID: %#x v%d %d->%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301146 priid.id, priid.variant, priid.bottom, priid.top);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001147
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301148 for (i = 0; i < ns3info; i++) {
Karl Relton76e3e7c2009-04-17 10:15:34 +01001149 switch (s3info[i].type) {
1150 case 1:
1151 pr_debug("Version: ID %#x %d.%d.%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301152 s3info[i].info.version.id,
1153 s3info[i].info.version.major,
1154 s3info[i].info.version.minor,
1155 s3info[i].info.version.variant);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001156 break;
1157 case 2:
1158 pr_debug("Compat: Role %#x Id %#x v%d %d->%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301159 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);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001164
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 !=
1169 macid.variant) {
1170 result = 2;
1171 }
1172 }
1173
1174 /* PRI compat range */
1175 if ((s3info[i].info.compat.role == 1) &&
1176 (s3info[i].info.compat.id == 3)) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301177 if ((s3info[i].info.compat.bottom > priid.top)
1178 || (s3info[i].info.compat.top <
1179 priid.bottom)) {
Karl Relton76e3e7c2009-04-17 10:15:34 +01001180 result = 3;
1181 }
1182 }
1183 /* SEC compat range */
1184 if ((s3info[i].info.compat.role == 1) &&
1185 (s3info[i].info.compat.id == 4)) {
Greg Kroah-Hartmanb02957d2010-03-04 08:14:54 -08001186 /* FIXME: isn't something missing here? */
Karl Relton76e3e7c2009-04-17 10:15:34 +01001187 }
1188
1189 break;
1190 case 3:
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301191 pr_debug("Seq: %#x\n", s3info[i].info.buildseq);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001192
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301193 break;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001194 case 4:
1195 pr_debug("Platform: ID %#x %d.%d.%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301196 s3info[i].info.version.id,
1197 s3info[i].info.version.major,
1198 s3info[i].info.version.minor,
1199 s3info[i].info.version.variant);
Karl Relton76e3e7c2009-04-17 10:15:34 +01001200
1201 if (nicid.id != s3info[i].info.version.id)
1202 continue;
1203 if (nicid.major != s3info[i].info.version.major)
1204 continue;
1205 if (nicid.minor != s3info[i].info.version.minor)
1206 continue;
1207 if ((nicid.variant != s3info[i].info.version.variant) &&
1208 (nicid.id != 0x8008))
1209 continue;
1210
Karl Reltond8950592009-08-19 08:06:39 +01001211 trump = 1;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001212 break;
1213 case 0x8001:
1214 pr_debug("name inforec len %d\n", s3info[i].len);
1215
1216 break;
1217 default:
1218 pr_debug("Unknown inforec type %d\n", s3info[i].type);
1219 }
1220 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001221 /* walk through */
Karl Relton76e3e7c2009-04-17 10:15:34 +01001222
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001223 if (trump && (result != 2))
1224 result = 0;
Karl Relton76e3e7c2009-04-17 10:15:34 +01001225 return result;
1226}