blob: 74fec9dfca07f4e1ba0f04137803a78f5fdff72a [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains functions used in USB interface module.
3 */
4#include <linux/delay.h>
Holger Schurig084708b2007-05-25 12:37:58 -04005#include <linux/moduleparam.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006#include <linux/firmware.h>
7#include <linux/netdevice.h>
8#include <linux/usb.h>
9
Holger Schurigec3eef22007-05-25 12:49:10 -040010#define DRV_NAME "usb8xxx"
11
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include "decl.h"
14#include "defs.h"
15#include "dev.h"
Dan Williams14e865b2007-12-10 15:11:23 -050016#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020017#include "if_usb.h"
18
19#define MESSAGE_HEADER_LEN 4
20
Andres Salomon82209ad2007-11-20 17:43:32 -050021static char *lbs_fw_name = "usb8388.bin";
Holger Schurig10078322007-11-15 18:05:47 -050022module_param_named(fw_name, lbs_fw_name, charp, 0644);
Holger Schurig084708b2007-05-25 12:37:58 -040023
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024static struct usb_device_id if_usb_table[] = {
25 /* Enter the device signature inside */
Holger Schurig66fcc552007-05-25 00:11:58 -040026 { USB_DEVICE(0x1286, 0x2001) },
27 { USB_DEVICE(0x05a3, 0x8388) },
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 {} /* Terminating entry */
29};
30
31MODULE_DEVICE_TABLE(usb, if_usb_table);
32
33static void if_usb_receive(struct urb *urb);
34static void if_usb_receive_fwload(struct urb *urb);
Dan Williams954ee162007-08-20 11:43:25 -040035static int if_usb_prog_firmware(struct usb_card_rec *cardp);
Holger Schurig69f90322007-11-23 15:43:44 +010036static int if_usb_host_to_card(struct lbs_private *priv,
37 u8 type,
38 u8 *payload,
39 u16 nb);
40static int if_usb_get_int_status(struct lbs_private *priv, u8 *);
41static int if_usb_read_event_cause(struct lbs_private *);
Dan Williams954ee162007-08-20 11:43:25 -040042static int usb_tx_block(struct usb_card_rec *cardp, u8 *payload, u16 nb);
Holger Schurigac558ca2007-08-02 11:49:06 -040043static void if_usb_free(struct usb_card_rec *cardp);
Dan Williams954ee162007-08-20 11:43:25 -040044static int if_usb_submit_rx_urb(struct usb_card_rec *cardp);
45static int if_usb_reset_device(struct usb_card_rec *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046
47/**
48 * @brief call back function to handle the status of the URB
49 * @param urb pointer to urb structure
50 * @return N/A
51 */
52static void if_usb_write_bulk_callback(struct urb *urb)
53{
Dan Williams954ee162007-08-20 11:43:25 -040054 struct usb_card_rec *cardp = (struct usb_card_rec *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055
56 /* handle the transmission complete validations */
57
Dan Williams954ee162007-08-20 11:43:25 -040058 if (urb->status == 0) {
Holger Schurig69f90322007-11-23 15:43:44 +010059 struct lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040060
Holger Schurig9012b282007-05-25 11:27:16 -040061 /*
62 lbs_deb_usbd(&urb->dev->dev, "URB status is successfull\n");
63 lbs_deb_usbd(&urb->dev->dev, "Actual length transmitted %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 urb->actual_length);
Holger Schurig9012b282007-05-25 11:27:16 -040065 */
Dan Williams954ee162007-08-20 11:43:25 -040066
67 /* Used for both firmware TX and regular TX. priv isn't
68 * valid at firmware load time.
69 */
David Woodhousee775ed72007-12-06 14:36:11 +000070 if (priv)
71 lbs_host_to_card_done(priv);
Dan Williams954ee162007-08-20 11:43:25 -040072 } else {
73 /* print the failure status number for debug */
74 lbs_pr_info("URB in failure status: %d\n", urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 }
76
77 return;
78}
79
80/**
81 * @brief free tx/rx urb, skb and rx buffer
82 * @param cardp pointer usb_card_rec
83 * @return N/A
84 */
Holger Schurigac558ca2007-08-02 11:49:06 -040085static void if_usb_free(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020086{
Holger Schurig9012b282007-05-25 11:27:16 -040087 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088
89 /* Unlink tx & rx urb */
90 usb_kill_urb(cardp->tx_urb);
91 usb_kill_urb(cardp->rx_urb);
92
93 usb_free_urb(cardp->tx_urb);
94 cardp->tx_urb = NULL;
95
96 usb_free_urb(cardp->rx_urb);
97 cardp->rx_urb = NULL;
98
99 kfree(cardp->bulk_out_buffer);
100 cardp->bulk_out_buffer = NULL;
101
Holger Schurig9012b282007-05-25 11:27:16 -0400102 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200103}
104
David Woodhouse04c80f12007-12-06 12:51:00 +0000105static void if_usb_set_boot2_ver(struct lbs_private *priv)
106{
107 struct cmd_ds_set_boot2_ver b2_cmd;
David Woodhouse04c80f12007-12-06 12:51:00 +0000108
109 b2_cmd.action = 0;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000110 b2_cmd.version = priv->boot2_version;
David Woodhouse04c80f12007-12-06 12:51:00 +0000111
David Woodhouse689442d2007-12-12 16:00:42 -0500112 if (lbs_cmd(priv, CMD_SET_BOOT2_VER, &b2_cmd, NULL, 0))
David Woodhouse04c80f12007-12-06 12:51:00 +0000113 lbs_deb_usb("Setting boot2 version failed\n");
David Woodhouse04c80f12007-12-06 12:51:00 +0000114}
115
David Woodhouse2fd6cfe2007-12-11 17:44:10 -0500116static void if_usb_fw_timeo(unsigned long priv)
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500117{
118 struct usb_card_rec *cardp = (void *)priv;
David Woodhouse04c80f12007-12-06 12:51:00 +0000119
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500120 if (cardp->fwdnldover) {
121 lbs_deb_usb("Download complete, no event. Assuming success\n");
122 } else {
123 lbs_pr_err("Download timed out\n");
124 cardp->surprise_removed = 1;
125 }
126 wake_up(&cardp->fw_wq);
127}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128/**
129 * @brief sets the configuration values
130 * @param ifnum interface number
131 * @param id pointer to usb_device_id
132 * @return 0 on success, error code on failure
133 */
134static int if_usb_probe(struct usb_interface *intf,
135 const struct usb_device_id *id)
136{
137 struct usb_device *udev;
138 struct usb_host_interface *iface_desc;
139 struct usb_endpoint_descriptor *endpoint;
Holger Schurig69f90322007-11-23 15:43:44 +0100140 struct lbs_private *priv;
Holger Schurig435a1ac2007-05-25 12:41:52 -0400141 struct usb_card_rec *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142 int i;
143
144 udev = interface_to_usbdev(intf);
145
Holger Schurig435a1ac2007-05-25 12:41:52 -0400146 cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
147 if (!cardp) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200148 lbs_pr_err("Out of memory allocating private data.\n");
149 goto error;
150 }
151
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500152 setup_timer(&cardp->fw_timeout, if_usb_fw_timeo, (unsigned long)cardp);
153 init_waitqueue_head(&cardp->fw_wq);
154
Holger Schurig435a1ac2007-05-25 12:41:52 -0400155 cardp->udev = udev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 iface_desc = intf->cur_altsetting;
157
Holger Schurig9012b282007-05-25 11:27:16 -0400158 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400160 le16_to_cpu(udev->descriptor.bcdUSB),
161 udev->descriptor.bDeviceClass,
162 udev->descriptor.bDeviceSubClass,
163 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164
165 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
166 endpoint = &iface_desc->endpoint[i].desc;
167 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
168 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
169 USB_ENDPOINT_XFER_BULK)) {
170 /* we found a bulk in endpoint */
Holger Schurig9012b282007-05-25 11:27:16 -0400171 lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400172 le16_to_cpu(endpoint->wMaxPacketSize));
173 if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400174 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175 "Rx URB allocation failed\n");
176 goto dealloc;
177 }
Holger Schurig435a1ac2007-05-25 12:41:52 -0400178 cardp->bulk_in_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400179 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400180 cardp->bulk_in_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181 (endpoint->
182 bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400183 lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184 endpoint->bEndpointAddress);
185 }
186
187 if (((endpoint->
188 bEndpointAddress & USB_ENDPOINT_DIR_MASK) ==
189 USB_DIR_OUT)
190 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
191 USB_ENDPOINT_XFER_BULK)) {
192 /* We found bulk out endpoint */
David Woodhouse981f1872007-05-25 23:36:54 -0400193 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400194 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 "Tx URB allocation failed\n");
196 goto dealloc;
197 }
198
Holger Schurig435a1ac2007-05-25 12:41:52 -0400199 cardp->bulk_out_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400200 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig9012b282007-05-25 11:27:16 -0400201 lbs_deb_usbd(&udev->dev,
David Woodhouse981f1872007-05-25 23:36:54 -0400202 "Bulk out size is %d\n",
203 le16_to_cpu(endpoint->wMaxPacketSize));
Holger Schurig435a1ac2007-05-25 12:41:52 -0400204 cardp->bulk_out_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205 endpoint->bEndpointAddress;
Holger Schurig9012b282007-05-25 11:27:16 -0400206 lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200207 endpoint->bEndpointAddress);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400208 cardp->bulk_out_buffer =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209 kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
210 GFP_KERNEL);
211
Holger Schurig435a1ac2007-05-25 12:41:52 -0400212 if (!cardp->bulk_out_buffer) {
Holger Schurig9012b282007-05-25 11:27:16 -0400213 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200214 "Could not allocate buffer\n");
215 goto dealloc;
216 }
217 }
218 }
219
Dan Williams954ee162007-08-20 11:43:25 -0400220 /* Upload firmware */
221 cardp->rinfo.cardp = cardp;
222 if (if_usb_prog_firmware(cardp)) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500223 lbs_deb_usbd(&udev->dev, "FW upload failed\n");
Dan Williams954ee162007-08-20 11:43:25 -0400224 goto err_prog_firmware;
225 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400226
Holger Schurig10078322007-11-15 18:05:47 -0500227 if (!(priv = lbs_add_card(cardp, &udev->dev)))
Dan Williams954ee162007-08-20 11:43:25 -0400228 goto err_prog_firmware;
229
230 cardp->priv = priv;
David Woodhousec9cd6f92007-12-11 13:15:25 -0500231 cardp->priv->fw_ready = 1;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400232
Holger Schurig208fdd22007-05-25 12:17:06 -0400233 priv->hw_host_to_card = if_usb_host_to_card;
234 priv->hw_get_int_status = if_usb_get_int_status;
235 priv->hw_read_event_cause = if_usb_read_event_cause;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000236 priv->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400237
Dan Williams954ee162007-08-20 11:43:25 -0400238 if_usb_submit_rx_urb(cardp);
Dan Williams954ee162007-08-20 11:43:25 -0400239
Holger Schurig10078322007-11-15 18:05:47 -0500240 if (lbs_start_card(priv))
Dan Williams954ee162007-08-20 11:43:25 -0400241 goto err_start_card;
Holger Schurig32a74b72007-05-25 12:04:31 -0400242
David Woodhouse04c80f12007-12-06 12:51:00 +0000243 if_usb_set_boot2_ver(priv);
David Woodhouse2c944042007-12-06 14:41:08 +0000244
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400246 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248 return 0;
249
Dan Williams954ee162007-08-20 11:43:25 -0400250err_start_card:
Holger Schurig10078322007-11-15 18:05:47 -0500251 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400252err_prog_firmware:
253 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200254dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400255 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256
257error:
258 return -ENOMEM;
259}
260
261/**
262 * @brief free resource and cleanup
Holger Schurig435a1ac2007-05-25 12:41:52 -0400263 * @param intf USB interface structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264 * @return N/A
265 */
266static void if_usb_disconnect(struct usb_interface *intf)
267{
268 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100269 struct lbs_private *priv = (struct lbs_private *) cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270
Dan Williams954ee162007-08-20 11:43:25 -0400271 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272
Dan Williams954ee162007-08-20 11:43:25 -0400273 /* Update Surprise removed to TRUE */
274 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275
Dan Williams954ee162007-08-20 11:43:25 -0400276 if (priv) {
Dan Williams954ee162007-08-20 11:43:25 -0400277
David Woodhouseaa21c002007-12-08 20:04:36 +0000278 priv->surpriseremoved = 1;
Holger Schurig10078322007-11-15 18:05:47 -0500279 lbs_stop_card(priv);
Holger Schurig10078322007-11-15 18:05:47 -0500280 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400281 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200282
Andres Salomonbe13f182007-11-20 17:43:55 -0500283 /* this is (apparently?) necessary for future usage of the device */
284 lbs_prepare_and_send_command(priv, CMD_802_11_RESET, CMD_ACT_HALT,
285 0, 0, NULL);
286
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200287 /* Unlink and free urb */
288 if_usb_free(cardp);
289
290 usb_set_intfdata(intf, NULL);
291 usb_put_dev(interface_to_usbdev(intf));
292
Dan Williams954ee162007-08-20 11:43:25 -0400293 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200294}
295
296/**
297 * @brief This function download FW
Holger Schurig69f90322007-11-23 15:43:44 +0100298 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200299 * @return 0
300 */
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500301static int if_usb_send_fw_pkt(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303 struct FWData *fwdata;
304 struct fwheader *fwheader;
Dan Williams954ee162007-08-20 11:43:25 -0400305 u8 *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200306
307 fwdata = kmalloc(sizeof(struct FWData), GFP_ATOMIC);
308
309 if (!fwdata)
310 return -1;
311
312 fwheader = &fwdata->fwheader;
313
314 if (!cardp->CRC_OK) {
315 cardp->totalbytes = cardp->fwlastblksent;
316 cardp->fwseqnum = cardp->lastseqnum - 1;
317 }
318
Holger Schurig9012b282007-05-25 11:27:16 -0400319 /*
320 lbs_deb_usbd(&cardp->udev->dev, "totalbytes = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200321 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400322 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200323
324 memcpy(fwheader, &firmware[cardp->totalbytes],
325 sizeof(struct fwheader));
326
327 cardp->fwlastblksent = cardp->totalbytes;
328 cardp->totalbytes += sizeof(struct fwheader);
329
Holger Schurig9012b282007-05-25 11:27:16 -0400330 /* lbs_deb_usbd(&cardp->udev->dev,"Copy Data\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouse981f1872007-05-25 23:36:54 -0400332 le32_to_cpu(fwdata->fwheader.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333
Holger Schurig9012b282007-05-25 11:27:16 -0400334 /*
335 lbs_deb_usbd(&cardp->udev->dev,
David Woodhousebb793e22007-05-25 23:38:14 -0400336 "Data length = %d\n", le32_to_cpu(fwdata->fwheader.datalength));
Holger Schurig9012b282007-05-25 11:27:16 -0400337 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200338
339 cardp->fwseqnum = cardp->fwseqnum + 1;
340
David Woodhouse981f1872007-05-25 23:36:54 -0400341 fwdata->seqnum = cpu_to_le32(cardp->fwseqnum);
342 cardp->lastseqnum = cardp->fwseqnum;
343 cardp->totalbytes += le32_to_cpu(fwdata->fwheader.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200344
David Woodhouse981f1872007-05-25 23:36:54 -0400345 if (fwheader->dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400346 /*
David Woodhouse981f1872007-05-25 23:36:54 -0400347 lbs_deb_usbd(&cardp->udev->dev, "There are data to follow\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400348 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200349 "seqnum = %d totalbytes = %d\n", cardp->fwseqnum,
350 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400351 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400353 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354
David Woodhousebb793e22007-05-25 23:38:14 -0400355 } else if (fwdata->fwheader.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400356 /*
357 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200358 "Host has finished FW downloading\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400359 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200360 "Donwloading FW JUMP BLOCK\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400361 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200362 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400363 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200364 cardp->fwfinalblk = 1;
365 }
366
Holger Schurig9012b282007-05-25 11:27:16 -0400367 /*
368 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369 "The firmware download is done size is %d\n",
370 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400371 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200372
373 kfree(fwdata);
374
375 return 0;
376}
377
Dan Williams954ee162007-08-20 11:43:25 -0400378static int if_usb_reset_device(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379{
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000380 struct cmd_ds_command *cmd = (void *)&cardp->bulk_out_buffer[4];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382
Holger Schurig3874d0f2007-05-25 12:01:42 -0400383 lbs_deb_enter(LBS_DEB_USB);
384
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000385 *(__le32 *)cardp->bulk_out_buffer = cpu_to_le32(CMD_TYPE_REQUEST);
386
387 cmd->command = cpu_to_le16(CMD_802_11_RESET);
388 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
389 cmd->result = cpu_to_le16(0);
390 cmd->seqnum = cpu_to_le16(0x5a5a);
391 cmd->params.reset.action = cpu_to_le16(CMD_ACT_HALT);
392 usb_tx_block(cardp, cardp->bulk_out_buffer, 4 + S_DS_GEN + sizeof(struct cmd_ds_802_11_reset));
393
David Woodhousec8ba39d2007-12-10 18:53:34 -0500394 msleep(100);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200395 ret = usb_reset_device(cardp->udev);
David Woodhousec8ba39d2007-12-10 18:53:34 -0500396 msleep(100);
Holger Schurig3874d0f2007-05-25 12:01:42 -0400397
398 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
399
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400 return ret;
401}
402
403/**
404 * @brief This function transfer the data to the device.
Holger Schurig69f90322007-11-23 15:43:44 +0100405 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200406 * @param payload pointer to payload data
407 * @param nb data length
408 * @return 0 or -1
409 */
Dan Williams954ee162007-08-20 11:43:25 -0400410static int usb_tx_block(struct usb_card_rec *cardp, u8 * payload, u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200412 int ret = -1;
413
414 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400415 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400416 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417 goto tx_ret;
418 }
419
420 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
421 usb_sndbulkpipe(cardp->udev,
422 cardp->bulk_out_endpointAddr),
Dan Williams954ee162007-08-20 11:43:25 -0400423 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424
425 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
426
427 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
428 /* transfer failed */
David Woodhouse0856e682007-12-07 15:12:26 +0000429 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 ret = -1;
431 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400432 /* lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200433 ret = 0;
434 }
435
436tx_ret:
437 return ret;
438}
439
Dan Williams954ee162007-08-20 11:43:25 -0400440static int __if_usb_submit_rx_urb(struct usb_card_rec *cardp,
441 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200443 struct sk_buff *skb;
444 struct read_cb_info *rinfo = &cardp->rinfo;
445 int ret = -1;
446
447 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
448 lbs_pr_err("No free skb\n");
449 goto rx_ret;
450 }
451
452 rinfo->skb = skb;
453
454 /* Fill the receive configuration URB and initialise the Rx call back */
455 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
456 usb_rcvbulkpipe(cardp->udev,
457 cardp->bulk_in_endpointAddr),
Dan Williams4269e2a2007-05-10 23:10:18 -0400458 (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
460 rinfo);
461
462 cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
463
Holger Schurig9012b282007-05-25 11:27:16 -0400464 /* lbs_deb_usbd(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200465 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
466 /* handle failure conditions */
David Woodhouse0856e682007-12-07 15:12:26 +0000467 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000468 kfree_skb(skb);
469 rinfo->skb = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470 ret = -1;
471 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400472 /* lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473 ret = 0;
474 }
475
476rx_ret:
477 return ret;
478}
479
Dan Williams954ee162007-08-20 11:43:25 -0400480static int if_usb_submit_rx_urb_fwload(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481{
Dan Williams954ee162007-08-20 11:43:25 -0400482 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483}
484
Dan Williams954ee162007-08-20 11:43:25 -0400485static int if_usb_submit_rx_urb(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486{
Dan Williams954ee162007-08-20 11:43:25 -0400487 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488}
489
490static void if_usb_receive_fwload(struct urb *urb)
491{
492 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400494 struct usb_card_rec *cardp = (struct usb_card_rec *)rinfo->cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495 struct fwsyncheader *syncfwheader;
496 struct bootcmdrespStr bootcmdresp;
497
498 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400499 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 "URB status is failed during fw load\n");
501 kfree_skb(skb);
502 return;
503 }
504
David Woodhousec9cd6f92007-12-11 13:15:25 -0500505 if (cardp->fwdnldover) {
506 __le32 *tmp = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET);
507
508 if (tmp[0] == cpu_to_le32(CMD_TYPE_INDICATION) &&
509 tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY)) {
510 lbs_pr_info("Firmware ready event received\n");
511 wake_up(&cardp->fw_wq);
512 } else {
513 lbs_deb_usb("Waiting for confirmation; got %x %x\n", le32_to_cpu(tmp[0]),
514 le32_to_cpu(tmp[1]));
515 if_usb_submit_rx_urb_fwload(cardp);
516 }
517 kfree_skb(skb);
518 return;
519 }
David Woodhousec8ba39d2007-12-10 18:53:34 -0500520 if (cardp->bootcmdresp <= 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200521 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
522 sizeof(bootcmdresp));
David Woodhouse981f1872007-05-25 23:36:54 -0400523 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400525 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200526 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400527 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528 "Received valid boot command response\n");
529 return;
530 }
David Woodhouse981f1872007-05-25 23:36:54 -0400531 if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000532 if (bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_REQUEST) ||
533 bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_DATA) ||
534 bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_INDICATION)) {
David Woodhousec9cd6f92007-12-11 13:15:25 -0500535 if (!cardp->bootcmdresp)
536 lbs_pr_info("Firmware already seems alive; resetting\n");
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000537 cardp->bootcmdresp = -1;
538 } else {
539 lbs_pr_info("boot cmd response wrong magic number (0x%x)\n",
540 le32_to_cpu(bootcmdresp.u32magicnumber));
541 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200542 } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
543 lbs_pr_info(
544 "boot cmd response cmd_tag error (%d)\n",
545 bootcmdresp.u8cmd_tag);
546 } else if (bootcmdresp.u8result != BOOT_CMD_RESP_OK) {
547 lbs_pr_info(
548 "boot cmd response result error (%d)\n",
549 bootcmdresp.u8result);
550 } else {
551 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400552 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200553 "Received valid boot command response\n");
554 }
555 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400556 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557 return;
558 }
559
560 syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
561 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400562 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 kfree_skb(skb);
564 return;
565 }
566
567 memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET,
568 sizeof(struct fwsyncheader));
569
570 if (!syncfwheader->cmd) {
Holger Schurig9012b282007-05-25 11:27:16 -0400571 /*
572 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200573 "FW received Blk with correct CRC\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400574 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200575 "FW received Blk seqnum = %d\n",
576 syncfwheader->seqnum);
Holger Schurig9012b282007-05-25 11:27:16 -0400577 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200578 cardp->CRC_OK = 1;
579 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400580 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200581 "FW received Blk with CRC error\n");
582 cardp->CRC_OK = 0;
583 }
584
585 kfree_skb(skb);
586
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500587 /* reschedule timer for 200ms hence */
588 mod_timer(&cardp->fw_timeout, jiffies + (HZ/5));
589
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590 if (cardp->fwfinalblk) {
591 cardp->fwdnldover = 1;
592 goto exit;
593 }
594
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500595 if_usb_send_fw_pkt(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200596
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500597 exit:
David Woodhousec9cd6f92007-12-11 13:15:25 -0500598 if_usb_submit_rx_urb_fwload(cardp);
599
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200600 kfree(syncfwheader);
601
602 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603}
604
605#define MRVDRV_MIN_PKT_LEN 30
606
607static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
608 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100609 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610{
611 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE +
612 MESSAGE_HEADER_LEN || recvlength < MRVDRV_MIN_PKT_LEN) {
Holger Schurig9012b282007-05-25 11:27:16 -0400613 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614 "Packet length is Invalid\n");
615 kfree_skb(skb);
616 return;
617 }
618
619 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
620 skb_put(skb, recvlength);
621 skb_pull(skb, MESSAGE_HEADER_LEN);
Holger Schurig10078322007-11-15 18:05:47 -0500622 lbs_process_rxed_packet(priv, skb);
Holger Schurig634b8f42007-05-25 13:05:16 -0400623 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200624}
625
626static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
627 struct sk_buff *skb,
628 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100629 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630{
631 u8 *cmdbuf;
Dan Williamsddac4522007-12-11 13:49:39 -0500632 if (recvlength > LBS_CMD_BUFFER_SIZE) {
Holger Schurig9012b282007-05-25 11:27:16 -0400633 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634 "The receive buffer is too large\n");
635 kfree_skb(skb);
636 return;
637 }
638
639 if (!in_interrupt())
640 BUG();
641
David Woodhouseaa21c002007-12-08 20:04:36 +0000642 spin_lock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200643 /* take care of cur_cmd = NULL case by reading the
644 * data to clear the interrupt */
David Woodhouseaa21c002007-12-08 20:04:36 +0000645 if (!priv->cur_cmd) {
David Woodhousee1258172007-12-11 23:42:49 -0500646 lbs_deb_hex(LBS_DEB_HOST, "Unsolicited CMD_RESP", (void *) recvbuff + MESSAGE_HEADER_LEN, priv->upld_len);
Holger Schurig634b8f42007-05-25 13:05:16 -0400647 cmdbuf = priv->upld_buf;
David Woodhouseaa21c002007-12-08 20:04:36 +0000648 priv->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200649 } else
Dan Williamsddac4522007-12-11 13:49:39 -0500650 cmdbuf = (u8 *) priv->cur_cmd->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651
Holger Schurigc95c7f92007-08-02 11:49:45 -0400652 cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
Holger Schurig634b8f42007-05-25 13:05:16 -0400653 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654 memcpy(cmdbuf, recvbuff + MESSAGE_HEADER_LEN,
Holger Schurig634b8f42007-05-25 13:05:16 -0400655 priv->upld_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656
657 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500658 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000659 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660
Holger Schurig9012b282007-05-25 11:27:16 -0400661 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662 "Wake up main thread to handle cmd response\n");
663
664 return;
665}
666
667/**
668 * @brief This function reads of the packet into the upload buff,
669 * wake up the main thread and initialise the Rx callack.
670 *
671 * @param urb pointer to struct urb
672 * @return N/A
673 */
674static void if_usb_receive(struct urb *urb)
675{
676 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400678 struct usb_card_rec *cardp = (struct usb_card_rec *) rinfo->cardp;
Holger Schurig69f90322007-11-23 15:43:44 +0100679 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680
681 int recvlength = urb->actual_length;
682 u8 *recvbuff = NULL;
Dan Williams8362cd42007-08-03 09:40:55 -0400683 u32 recvtype = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200684
Holger Schurig9012b282007-05-25 11:27:16 -0400685 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686
687 if (recvlength) {
Dan Williams8362cd42007-08-03 09:40:55 -0400688 __le32 tmp;
689
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200690 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400691 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 "URB status is failed\n");
693 kfree_skb(skb);
694 goto setup_for_next;
695 }
696
697 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
Dan Williams8362cd42007-08-03 09:40:55 -0400698 memcpy(&tmp, recvbuff, sizeof(u32));
699 recvtype = le32_to_cpu(tmp);
Holger Schurig9012b282007-05-25 11:27:16 -0400700 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400701 "Recv length = 0x%x, Recv type = 0x%X\n",
702 recvlength, recvtype);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000703 } else if (urb->status) {
704 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705 goto rx_exit;
David Woodhouse77d8cf22007-11-28 16:20:51 +0000706 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200707
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708 switch (recvtype) {
709 case CMD_TYPE_DATA:
710 process_cmdtypedata(recvlength, skb, cardp, priv);
711 break;
712
713 case CMD_TYPE_REQUEST:
714 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
715 break;
716
717 case CMD_TYPE_INDICATION:
718 /* Event cause handling */
David Woodhouseaa21c002007-12-08 20:04:36 +0000719 spin_lock(&priv->driver_lock);
David Woodhouse981f1872007-05-25 23:36:54 -0400720 cardp->usb_event_cause = le32_to_cpu(*(__le32 *) (recvbuff + MESSAGE_HEADER_LEN));
Holger Schurig9012b282007-05-25 11:27:16 -0400721 lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722 cardp->usb_event_cause);
723 if (cardp->usb_event_cause & 0xffff0000) {
Holger Schurig10078322007-11-15 18:05:47 -0500724 lbs_send_tx_feedback(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000725 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200726 break;
727 }
David Woodhouse981f1872007-05-25 23:36:54 -0400728 cardp->usb_event_cause <<= 3;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400729 cardp->usb_int_cause |= MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200730 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500731 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000732 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200733 goto rx_exit;
734 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400735 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
736 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737 kfree_skb(skb);
738 break;
739 }
740
741setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400742 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400744 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745}
746
747/**
748 * @brief This function downloads data to FW
Holger Schurig69f90322007-11-23 15:43:44 +0100749 * @param priv pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200750 * @param type type of data
751 * @param buf pointer to data buffer
752 * @param len number of bytes
753 * @return 0 or -1
754 */
Holger Schurig69f90322007-11-23 15:43:44 +0100755static int if_usb_host_to_card(struct lbs_private *priv,
756 u8 type,
757 u8 *payload,
758 u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200759{
Holger Schurig634b8f42007-05-25 13:05:16 -0400760 struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
Holger Schurig9012b282007-05-25 11:27:16 -0400762 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
763 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764
765 if (type == MVMS_CMD) {
Dan Williams8362cd42007-08-03 09:40:55 -0400766 __le32 tmp = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400767 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200768 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
769 MESSAGE_HEADER_LEN);
770
771 } else {
Dan Williams8362cd42007-08-03 09:40:55 -0400772 __le32 tmp = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400773 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
775 MESSAGE_HEADER_LEN);
776 }
777
778 memcpy((cardp->bulk_out_buffer + MESSAGE_HEADER_LEN), payload, nb);
779
Dan Williams954ee162007-08-20 11:43:25 -0400780 return usb_tx_block(cardp, cardp->bulk_out_buffer,
Dan Williams8362cd42007-08-03 09:40:55 -0400781 nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782}
783
David Woodhouseaa21c002007-12-08 20:04:36 +0000784/* called with priv->driver_lock held */
Holger Schurig69f90322007-11-23 15:43:44 +0100785static int if_usb_get_int_status(struct lbs_private *priv, u8 *ireg)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200786{
Holger Schurig634b8f42007-05-25 13:05:16 -0400787 struct usb_card_rec *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200788
789 *ireg = cardp->usb_int_cause;
790 cardp->usb_int_cause = 0;
791
Holger Schurig9012b282007-05-25 11:27:16 -0400792 lbs_deb_usbd(&cardp->udev->dev,"Int cause is 0x%X\n", *ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793
794 return 0;
795}
796
Holger Schurig69f90322007-11-23 15:43:44 +0100797static int if_usb_read_event_cause(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200798{
Holger Schurig634b8f42007-05-25 13:05:16 -0400799 struct usb_card_rec *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400800
David Woodhouseaa21c002007-12-08 20:04:36 +0000801 priv->eventcause = cardp->usb_event_cause;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200802 /* Re-submit rx urb here to avoid event lost issue */
Dan Williams954ee162007-08-20 11:43:25 -0400803 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200804 return 0;
805}
806
Dan Williams9e22cb62007-08-02 11:14:49 -0400807/**
808 * @brief This function issues Boot command to the Boot2 code
809 * @param ivalue 1:Boot from FW by USB-Download
810 * 2:Boot from FW in EEPROM
811 * @return 0
812 */
Dan Williams954ee162007-08-20 11:43:25 -0400813static int if_usb_issue_boot_command(struct usb_card_rec *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400814{
Dan Williams954ee162007-08-20 11:43:25 -0400815 struct bootcmdstr sbootcmd;
Dan Williams9e22cb62007-08-02 11:14:49 -0400816 int i;
817
818 /* Prepare command */
819 sbootcmd.u32magicnumber = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
820 sbootcmd.u8cmd_tag = ivalue;
821 for (i=0; i<11; i++)
822 sbootcmd.au8dumy[i]=0x00;
823 memcpy(cardp->bulk_out_buffer, &sbootcmd, sizeof(struct bootcmdstr));
824
825 /* Issue command */
Dan Williams954ee162007-08-20 11:43:25 -0400826 usb_tx_block(cardp, cardp->bulk_out_buffer, sizeof(struct bootcmdstr));
Dan Williams9e22cb62007-08-02 11:14:49 -0400827
828 return 0;
829}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200830
831
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400832/**
833 * @brief This function checks the validity of Boot2/FW image.
834 *
835 * @param data pointer to image
836 * len image length
837 * @return 0 or -1
838 */
839static int check_fwfile_format(u8 *data, u32 totlen)
840{
841 u32 bincmd, exit;
842 u32 blksize, offset, len;
843 int ret;
844
845 ret = 1;
846 exit = len = 0;
847
848 do {
849 struct fwheader *fwh = (void *)data;
850
851 bincmd = le32_to_cpu(fwh->dnldcmd);
852 blksize = le32_to_cpu(fwh->datalength);
853 switch (bincmd) {
854 case FW_HAS_DATA_TO_RECV:
855 offset = sizeof(struct fwheader) + blksize;
856 data += offset;
857 len += offset;
858 if (len >= totlen)
859 exit = 1;
860 break;
861 case FW_HAS_LAST_BLOCK:
862 exit = 1;
863 ret = 0;
864 break;
865 default:
866 exit = 1;
867 break;
868 }
869 } while (!exit);
870
871 if (ret)
872 lbs_pr_err("firmware file format check FAIL\n");
873 else
874 lbs_deb_fw("firmware file format check PASS\n");
875
876 return ret;
877}
878
879
Dan Williams954ee162007-08-20 11:43:25 -0400880static int if_usb_prog_firmware(struct usb_card_rec *cardp)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400881{
Dan Williams954ee162007-08-20 11:43:25 -0400882 int i = 0;
883 static int reset_count = 10;
884 int ret = 0;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400885
Dan Williams954ee162007-08-20 11:43:25 -0400886 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400887
Holger Schurig10078322007-11-15 18:05:47 -0500888 if ((ret = request_firmware(&cardp->fw, lbs_fw_name,
Dan Williams954ee162007-08-20 11:43:25 -0400889 &cardp->udev->dev)) < 0) {
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400890 lbs_pr_err("request_firmware() failed with %#x\n", ret);
Holger Schurig10078322007-11-15 18:05:47 -0500891 lbs_pr_err("firmware %s not found\n", lbs_fw_name);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400892 goto done;
893 }
894
Dan Williams954ee162007-08-20 11:43:25 -0400895 if (check_fwfile_format(cardp->fw->data, cardp->fw->size))
896 goto release_fw;
897
898restart:
899 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
900 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
901 ret = -1;
902 goto release_fw;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400903 }
904
Dan Williams954ee162007-08-20 11:43:25 -0400905 cardp->bootcmdresp = 0;
906 do {
907 int j = 0;
908 i++;
909 /* Issue Boot command = 1, Boot from Download-FW */
910 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
911 /* wait for command response */
912 do {
913 j++;
914 msleep_interruptible(100);
915 } while (cardp->bootcmdresp == 0 && j < 10);
916 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400917
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000918 if (cardp->bootcmdresp <= 0) {
Dan Williams954ee162007-08-20 11:43:25 -0400919 if (--reset_count >= 0) {
920 if_usb_reset_device(cardp);
921 goto restart;
922 }
923 return -1;
924 }
925
926 i = 0;
927
928 cardp->totalbytes = 0;
929 cardp->fwlastblksent = 0;
930 cardp->CRC_OK = 1;
931 cardp->fwdnldover = 0;
932 cardp->fwseqnum = -1;
933 cardp->totalbytes = 0;
934 cardp->fwfinalblk = 0;
935
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500936 /* Send the first firmware packet... */
937 if_usb_send_fw_pkt(cardp);
Dan Williams954ee162007-08-20 11:43:25 -0400938
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500939 /* ... and wait for the process to complete */
940 wait_event_interruptible(cardp->fw_wq, cardp->surprise_removed || cardp->fwdnldover);
941
942 del_timer_sync(&cardp->fw_timeout);
David Woodhousec9cd6f92007-12-11 13:15:25 -0500943 usb_kill_urb(cardp->rx_urb);
Dan Williams954ee162007-08-20 11:43:25 -0400944
945 if (!cardp->fwdnldover) {
946 lbs_pr_info("failed to load fw, resetting device!\n");
947 if (--reset_count >= 0) {
948 if_usb_reset_device(cardp);
949 goto restart;
950 }
951
952 lbs_pr_info("FW download failure, time = %d ms\n", i * 100);
953 ret = -1;
954 goto release_fw;
955 }
956
957release_fw:
958 release_firmware(cardp->fw);
959 cardp->fw = NULL;
960
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400961done:
Dan Williams954ee162007-08-20 11:43:25 -0400962 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400963 return ret;
964}
965
966
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200967#ifdef CONFIG_PM
968static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
969{
970 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100971 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972
Holger Schurig9012b282007-05-25 11:27:16 -0400973 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200974
David Woodhouseaa21c002007-12-08 20:04:36 +0000975 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 return -1;
977
David Woodhouse202f3f32007-12-11 18:36:35 -0500978 netif_device_detach(priv->dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400979 netif_device_detach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980
981 /* Unlink tx & rx urb */
982 usb_kill_urb(cardp->tx_urb);
983 usb_kill_urb(cardp->rx_urb);
984
Holger Schurig9012b282007-05-25 11:27:16 -0400985 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986 return 0;
987}
988
989static int if_usb_resume(struct usb_interface *intf)
990{
991 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100992 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993
Holger Schurig9012b282007-05-25 11:27:16 -0400994 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995
David Woodhouse6bc822b2007-12-11 12:53:43 -0500996 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200997
David Woodhouse202f3f32007-12-11 18:36:35 -0500998 netif_device_attach(priv->dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400999 netif_device_attach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001000
Holger Schurig9012b282007-05-25 11:27:16 -04001001 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 return 0;
1003}
1004#else
1005#define if_usb_suspend NULL
1006#define if_usb_resume NULL
1007#endif
1008
1009static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -05001010 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001013 .id_table = if_usb_table,
1014 .suspend = if_usb_suspend,
1015 .resume = if_usb_resume,
1016};
1017
Andres Salomon4fb910f2007-11-20 17:43:45 -05001018static int __init if_usb_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019{
Holger Schurig084708b2007-05-25 12:37:58 -04001020 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021
Holger Schurig084708b2007-05-25 12:37:58 -04001022 lbs_deb_enter(LBS_DEB_MAIN);
1023
Holger Schurig084708b2007-05-25 12:37:58 -04001024 ret = usb_register(&if_usb_driver);
1025
1026 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1027 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028}
1029
Andres Salomon4fb910f2007-11-20 17:43:45 -05001030static void __exit if_usb_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001031{
Holger Schurig084708b2007-05-25 12:37:58 -04001032 lbs_deb_enter(LBS_DEB_MAIN);
1033
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 usb_deregister(&if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -04001035
1036 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037}
Holger Schurig084708b2007-05-25 12:37:58 -04001038
1039module_init(if_usb_init_module);
1040module_exit(if_usb_exit_module);
1041
1042MODULE_DESCRIPTION("8388 USB WLAN Driver");
1043MODULE_AUTHOR("Marvell International Ltd.");
1044MODULE_LICENSE("GPL");