blob: 87bed4a1718d78a288ae4829ab1f83edc751730f [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"
16#include "if_usb.h"
17
18#define MESSAGE_HEADER_LEN 4
19
Andres Salomon82209ad2007-11-20 17:43:32 -050020static char *lbs_fw_name = "usb8388.bin";
Holger Schurig10078322007-11-15 18:05:47 -050021module_param_named(fw_name, lbs_fw_name, charp, 0644);
Holger Schurig084708b2007-05-25 12:37:58 -040022
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023static struct usb_device_id if_usb_table[] = {
24 /* Enter the device signature inside */
Holger Schurig66fcc552007-05-25 00:11:58 -040025 { USB_DEVICE(0x1286, 0x2001) },
26 { USB_DEVICE(0x05a3, 0x8388) },
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 {} /* Terminating entry */
28};
29
30MODULE_DEVICE_TABLE(usb, if_usb_table);
31
32static void if_usb_receive(struct urb *urb);
33static void if_usb_receive_fwload(struct urb *urb);
Dan Williams954ee162007-08-20 11:43:25 -040034static int if_usb_prog_firmware(struct usb_card_rec *cardp);
Holger Schurig69f90322007-11-23 15:43:44 +010035static int if_usb_host_to_card(struct lbs_private *priv,
36 u8 type,
37 u8 *payload,
38 u16 nb);
39static int if_usb_get_int_status(struct lbs_private *priv, u8 *);
40static int if_usb_read_event_cause(struct lbs_private *);
Dan Williams954ee162007-08-20 11:43:25 -040041static int usb_tx_block(struct usb_card_rec *cardp, u8 *payload, u16 nb);
Holger Schurigac558ca2007-08-02 11:49:06 -040042static void if_usb_free(struct usb_card_rec *cardp);
Dan Williams954ee162007-08-20 11:43:25 -040043static int if_usb_submit_rx_urb(struct usb_card_rec *cardp);
44static int if_usb_reset_device(struct usb_card_rec *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045
46/**
47 * @brief call back function to handle the status of the URB
48 * @param urb pointer to urb structure
49 * @return N/A
50 */
51static void if_usb_write_bulk_callback(struct urb *urb)
52{
Dan Williams954ee162007-08-20 11:43:25 -040053 struct usb_card_rec *cardp = (struct usb_card_rec *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054
55 /* handle the transmission complete validations */
56
Dan Williams954ee162007-08-20 11:43:25 -040057 if (urb->status == 0) {
Holger Schurig69f90322007-11-23 15:43:44 +010058 struct lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040059
Holger Schurig9012b282007-05-25 11:27:16 -040060 /*
61 lbs_deb_usbd(&urb->dev->dev, "URB status is successfull\n");
62 lbs_deb_usbd(&urb->dev->dev, "Actual length transmitted %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063 urb->actual_length);
Holger Schurig9012b282007-05-25 11:27:16 -040064 */
Dan Williams954ee162007-08-20 11:43:25 -040065
66 /* Used for both firmware TX and regular TX. priv isn't
67 * valid at firmware load time.
68 */
David Woodhousee775ed72007-12-06 14:36:11 +000069 if (priv)
70 lbs_host_to_card_done(priv);
Dan Williams954ee162007-08-20 11:43:25 -040071 } else {
72 /* print the failure status number for debug */
73 lbs_pr_info("URB in failure status: %d\n", urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074 }
75
76 return;
77}
78
79/**
80 * @brief free tx/rx urb, skb and rx buffer
81 * @param cardp pointer usb_card_rec
82 * @return N/A
83 */
Holger Schurigac558ca2007-08-02 11:49:06 -040084static void if_usb_free(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020085{
Holger Schurig9012b282007-05-25 11:27:16 -040086 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020087
88 /* Unlink tx & rx urb */
89 usb_kill_urb(cardp->tx_urb);
90 usb_kill_urb(cardp->rx_urb);
91
92 usb_free_urb(cardp->tx_urb);
93 cardp->tx_urb = NULL;
94
95 usb_free_urb(cardp->rx_urb);
96 cardp->rx_urb = NULL;
97
98 kfree(cardp->bulk_out_buffer);
99 cardp->bulk_out_buffer = NULL;
100
Holger Schurig9012b282007-05-25 11:27:16 -0400101 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200102}
103
David Woodhouse04c80f12007-12-06 12:51:00 +0000104static void if_usb_set_boot2_ver(struct lbs_private *priv)
105{
106 struct cmd_ds_set_boot2_ver b2_cmd;
David Woodhouse04c80f12007-12-06 12:51:00 +0000107
108 b2_cmd.action = 0;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000109 b2_cmd.version = priv->boot2_version;
David Woodhouse04c80f12007-12-06 12:51:00 +0000110
David Woodhouse448a51a2007-12-08 00:59:54 +0000111 if (lbs_cmd(priv, CMD_SET_BOOT2_VER, &b2_cmd, sizeof(b2_cmd), NULL))
David Woodhouse04c80f12007-12-06 12:51:00 +0000112 lbs_deb_usb("Setting boot2 version failed\n");
David Woodhouse04c80f12007-12-06 12:51:00 +0000113}
114
115
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116/**
117 * @brief sets the configuration values
118 * @param ifnum interface number
119 * @param id pointer to usb_device_id
120 * @return 0 on success, error code on failure
121 */
122static int if_usb_probe(struct usb_interface *intf,
123 const struct usb_device_id *id)
124{
125 struct usb_device *udev;
126 struct usb_host_interface *iface_desc;
127 struct usb_endpoint_descriptor *endpoint;
Holger Schurig69f90322007-11-23 15:43:44 +0100128 struct lbs_private *priv;
Holger Schurig435a1ac2007-05-25 12:41:52 -0400129 struct usb_card_rec *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130 int i;
131
132 udev = interface_to_usbdev(intf);
133
Holger Schurig435a1ac2007-05-25 12:41:52 -0400134 cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
135 if (!cardp) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 lbs_pr_err("Out of memory allocating private data.\n");
137 goto error;
138 }
139
Holger Schurig435a1ac2007-05-25 12:41:52 -0400140 cardp->udev = udev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200141 iface_desc = intf->cur_altsetting;
142
Holger Schurig9012b282007-05-25 11:27:16 -0400143 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400145 le16_to_cpu(udev->descriptor.bcdUSB),
146 udev->descriptor.bDeviceClass,
147 udev->descriptor.bDeviceSubClass,
148 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200149
150 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
151 endpoint = &iface_desc->endpoint[i].desc;
152 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
153 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
154 USB_ENDPOINT_XFER_BULK)) {
155 /* we found a bulk in endpoint */
Holger Schurig9012b282007-05-25 11:27:16 -0400156 lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400157 le16_to_cpu(endpoint->wMaxPacketSize));
158 if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400159 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160 "Rx URB allocation failed\n");
161 goto dealloc;
162 }
Holger Schurig435a1ac2007-05-25 12:41:52 -0400163 cardp->rx_urb_recall = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164
Holger Schurig435a1ac2007-05-25 12:41:52 -0400165 cardp->bulk_in_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400166 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400167 cardp->bulk_in_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168 (endpoint->
169 bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400170 lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 endpoint->bEndpointAddress);
172 }
173
174 if (((endpoint->
175 bEndpointAddress & USB_ENDPOINT_DIR_MASK) ==
176 USB_DIR_OUT)
177 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
178 USB_ENDPOINT_XFER_BULK)) {
179 /* We found bulk out endpoint */
David Woodhouse981f1872007-05-25 23:36:54 -0400180 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400181 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182 "Tx URB allocation failed\n");
183 goto dealloc;
184 }
185
Holger Schurig435a1ac2007-05-25 12:41:52 -0400186 cardp->bulk_out_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400187 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig9012b282007-05-25 11:27:16 -0400188 lbs_deb_usbd(&udev->dev,
David Woodhouse981f1872007-05-25 23:36:54 -0400189 "Bulk out size is %d\n",
190 le16_to_cpu(endpoint->wMaxPacketSize));
Holger Schurig435a1ac2007-05-25 12:41:52 -0400191 cardp->bulk_out_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200192 endpoint->bEndpointAddress;
Holger Schurig9012b282007-05-25 11:27:16 -0400193 lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200194 endpoint->bEndpointAddress);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400195 cardp->bulk_out_buffer =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200196 kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
197 GFP_KERNEL);
198
Holger Schurig435a1ac2007-05-25 12:41:52 -0400199 if (!cardp->bulk_out_buffer) {
Holger Schurig9012b282007-05-25 11:27:16 -0400200 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 "Could not allocate buffer\n");
202 goto dealloc;
203 }
204 }
205 }
206
Dan Williams954ee162007-08-20 11:43:25 -0400207 /* Upload firmware */
208 cardp->rinfo.cardp = cardp;
209 if (if_usb_prog_firmware(cardp)) {
210 lbs_deb_usbd(&udev->dev, "FW upload failed");
211 goto err_prog_firmware;
212 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400213
Holger Schurig10078322007-11-15 18:05:47 -0500214 if (!(priv = lbs_add_card(cardp, &udev->dev)))
Dan Williams954ee162007-08-20 11:43:25 -0400215 goto err_prog_firmware;
216
217 cardp->priv = priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400218
Holger Schurig10078322007-11-15 18:05:47 -0500219 if (lbs_add_mesh(priv, &udev->dev))
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400220 goto err_add_mesh;
Javier Cardona51d84f52007-05-25 12:06:56 -0400221
Dan Williams954ee162007-08-20 11:43:25 -0400222 cardp->eth_dev = priv->dev;
223
Holger Schurig208fdd22007-05-25 12:17:06 -0400224 priv->hw_host_to_card = if_usb_host_to_card;
225 priv->hw_get_int_status = if_usb_get_int_status;
226 priv->hw_read_event_cause = if_usb_read_event_cause;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000227 priv->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400228
Dan Williams954ee162007-08-20 11:43:25 -0400229 /* Delay 200 ms to waiting for the FW ready */
230 if_usb_submit_rx_urb(cardp);
231 msleep_interruptible(200);
David Woodhouseaa21c002007-12-08 20:04:36 +0000232 priv->fw_ready = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400233
Holger Schurig10078322007-11-15 18:05:47 -0500234 if (lbs_start_card(priv))
Dan Williams954ee162007-08-20 11:43:25 -0400235 goto err_start_card;
Holger Schurig32a74b72007-05-25 12:04:31 -0400236
David Woodhouse04c80f12007-12-06 12:51:00 +0000237 if_usb_set_boot2_ver(priv);
David Woodhouse2c944042007-12-06 14:41:08 +0000238
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400240 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242 return 0;
243
Dan Williams954ee162007-08-20 11:43:25 -0400244err_start_card:
Holger Schurig10078322007-11-15 18:05:47 -0500245 lbs_remove_mesh(priv);
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400246err_add_mesh:
Holger Schurig10078322007-11-15 18:05:47 -0500247 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400248err_prog_firmware:
249 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400251 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200252
253error:
254 return -ENOMEM;
255}
256
257/**
258 * @brief free resource and cleanup
Holger Schurig435a1ac2007-05-25 12:41:52 -0400259 * @param intf USB interface structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260 * @return N/A
261 */
262static void if_usb_disconnect(struct usb_interface *intf)
263{
264 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100265 struct lbs_private *priv = (struct lbs_private *) cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266
Dan Williams954ee162007-08-20 11:43:25 -0400267 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200268
Dan Williams954ee162007-08-20 11:43:25 -0400269 /* Update Surprise removed to TRUE */
270 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271
Dan Williams954ee162007-08-20 11:43:25 -0400272 if (priv) {
Dan Williams954ee162007-08-20 11:43:25 -0400273
David Woodhouseaa21c002007-12-08 20:04:36 +0000274 priv->surpriseremoved = 1;
Holger Schurig10078322007-11-15 18:05:47 -0500275 lbs_stop_card(priv);
276 lbs_remove_mesh(priv);
277 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400278 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200279
Andres Salomonbe13f182007-11-20 17:43:55 -0500280 /* this is (apparently?) necessary for future usage of the device */
281 lbs_prepare_and_send_command(priv, CMD_802_11_RESET, CMD_ACT_HALT,
282 0, 0, NULL);
283
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200284 /* Unlink and free urb */
285 if_usb_free(cardp);
286
287 usb_set_intfdata(intf, NULL);
288 usb_put_dev(interface_to_usbdev(intf));
289
Dan Williams954ee162007-08-20 11:43:25 -0400290 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200291}
292
293/**
294 * @brief This function download FW
Holger Schurig69f90322007-11-23 15:43:44 +0100295 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296 * @return 0
297 */
Dan Williams954ee162007-08-20 11:43:25 -0400298static int if_prog_firmware(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200299{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 struct FWData *fwdata;
301 struct fwheader *fwheader;
Dan Williams954ee162007-08-20 11:43:25 -0400302 u8 *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303
304 fwdata = kmalloc(sizeof(struct FWData), GFP_ATOMIC);
305
306 if (!fwdata)
307 return -1;
308
309 fwheader = &fwdata->fwheader;
310
311 if (!cardp->CRC_OK) {
312 cardp->totalbytes = cardp->fwlastblksent;
313 cardp->fwseqnum = cardp->lastseqnum - 1;
314 }
315
Holger Schurig9012b282007-05-25 11:27:16 -0400316 /*
317 lbs_deb_usbd(&cardp->udev->dev, "totalbytes = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200318 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400319 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200320
321 memcpy(fwheader, &firmware[cardp->totalbytes],
322 sizeof(struct fwheader));
323
324 cardp->fwlastblksent = cardp->totalbytes;
325 cardp->totalbytes += sizeof(struct fwheader);
326
Holger Schurig9012b282007-05-25 11:27:16 -0400327 /* lbs_deb_usbd(&cardp->udev->dev,"Copy Data\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouse981f1872007-05-25 23:36:54 -0400329 le32_to_cpu(fwdata->fwheader.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330
Holger Schurig9012b282007-05-25 11:27:16 -0400331 /*
332 lbs_deb_usbd(&cardp->udev->dev,
David Woodhousebb793e22007-05-25 23:38:14 -0400333 "Data length = %d\n", le32_to_cpu(fwdata->fwheader.datalength));
Holger Schurig9012b282007-05-25 11:27:16 -0400334 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200335
336 cardp->fwseqnum = cardp->fwseqnum + 1;
337
David Woodhouse981f1872007-05-25 23:36:54 -0400338 fwdata->seqnum = cpu_to_le32(cardp->fwseqnum);
339 cardp->lastseqnum = cardp->fwseqnum;
340 cardp->totalbytes += le32_to_cpu(fwdata->fwheader.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341
David Woodhouse981f1872007-05-25 23:36:54 -0400342 if (fwheader->dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400343 /*
David Woodhouse981f1872007-05-25 23:36:54 -0400344 lbs_deb_usbd(&cardp->udev->dev, "There are data to follow\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400345 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346 "seqnum = %d totalbytes = %d\n", cardp->fwseqnum,
347 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400348 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200349 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400350 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200351
David Woodhousebb793e22007-05-25 23:38:14 -0400352 } else if (fwdata->fwheader.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400353 /*
354 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200355 "Host has finished FW downloading\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400356 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357 "Donwloading FW JUMP BLOCK\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400358 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400360 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200361 cardp->fwfinalblk = 1;
362 }
363
Holger Schurig9012b282007-05-25 11:27:16 -0400364 /*
365 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200366 "The firmware download is done size is %d\n",
367 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400368 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369
370 kfree(fwdata);
371
372 return 0;
373}
374
Dan Williams954ee162007-08-20 11:43:25 -0400375static int if_usb_reset_device(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200376{
377 int ret;
Holger Schurig69f90322007-11-23 15:43:44 +0100378 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379
Holger Schurig3874d0f2007-05-25 12:01:42 -0400380 lbs_deb_enter(LBS_DEB_USB);
381
Dan Williamseedc2a32007-08-02 11:36:22 -0400382 /* Try a USB port reset first, if that fails send the reset
383 * command to the firmware.
384 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 ret = usb_reset_device(cardp->udev);
Dan Williams954ee162007-08-20 11:43:25 -0400386 if (!ret && priv) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387 msleep(10);
Holger Schurig10078322007-11-15 18:05:47 -0500388 ret = lbs_reset_device(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 msleep(10);
390 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400391
392 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
393
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394 return ret;
395}
396
397/**
398 * @brief This function transfer the data to the device.
Holger Schurig69f90322007-11-23 15:43:44 +0100399 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400 * @param payload pointer to payload data
401 * @param nb data length
402 * @return 0 or -1
403 */
Dan Williams954ee162007-08-20 11:43:25 -0400404static int usb_tx_block(struct usb_card_rec *cardp, u8 * payload, u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200406 int ret = -1;
407
408 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400409 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400410 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411 goto tx_ret;
412 }
413
414 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
415 usb_sndbulkpipe(cardp->udev,
416 cardp->bulk_out_endpointAddr),
Dan Williams954ee162007-08-20 11:43:25 -0400417 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418
419 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
420
421 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
422 /* transfer failed */
David Woodhouse0856e682007-12-07 15:12:26 +0000423 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424 ret = -1;
425 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400426 /* lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427 ret = 0;
428 }
429
430tx_ret:
431 return ret;
432}
433
Dan Williams954ee162007-08-20 11:43:25 -0400434static int __if_usb_submit_rx_urb(struct usb_card_rec *cardp,
435 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200436{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437 struct sk_buff *skb;
438 struct read_cb_info *rinfo = &cardp->rinfo;
439 int ret = -1;
440
441 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
442 lbs_pr_err("No free skb\n");
443 goto rx_ret;
444 }
445
446 rinfo->skb = skb;
447
448 /* Fill the receive configuration URB and initialise the Rx call back */
449 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
450 usb_rcvbulkpipe(cardp->udev,
451 cardp->bulk_in_endpointAddr),
Dan Williams4269e2a2007-05-10 23:10:18 -0400452 (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200453 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
454 rinfo);
455
456 cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
457
Holger Schurig9012b282007-05-25 11:27:16 -0400458 /* lbs_deb_usbd(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
460 /* handle failure conditions */
David Woodhouse0856e682007-12-07 15:12:26 +0000461 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000462 kfree_skb(skb);
463 rinfo->skb = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200464 ret = -1;
465 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400466 /* lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200467 ret = 0;
468 }
469
470rx_ret:
471 return ret;
472}
473
Dan Williams954ee162007-08-20 11:43:25 -0400474static int if_usb_submit_rx_urb_fwload(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200475{
Dan Williams954ee162007-08-20 11:43:25 -0400476 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477}
478
Dan Williams954ee162007-08-20 11:43:25 -0400479static int if_usb_submit_rx_urb(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200480{
Dan Williams954ee162007-08-20 11:43:25 -0400481 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482}
483
484static void if_usb_receive_fwload(struct urb *urb)
485{
486 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400488 struct usb_card_rec *cardp = (struct usb_card_rec *)rinfo->cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489 struct fwsyncheader *syncfwheader;
490 struct bootcmdrespStr bootcmdresp;
491
492 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400493 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494 "URB status is failed during fw load\n");
495 kfree_skb(skb);
496 return;
497 }
498
499 if (cardp->bootcmdresp == 0) {
500 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
501 sizeof(bootcmdresp));
David Woodhouse981f1872007-05-25 23:36:54 -0400502 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400504 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400506 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 "Received valid boot command response\n");
508 return;
509 }
David Woodhouse981f1872007-05-25 23:36:54 -0400510 if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200511 lbs_pr_info(
512 "boot cmd response wrong magic number (0x%x)\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400513 le32_to_cpu(bootcmdresp.u32magicnumber));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200514 } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
515 lbs_pr_info(
516 "boot cmd response cmd_tag error (%d)\n",
517 bootcmdresp.u8cmd_tag);
518 } else if (bootcmdresp.u8result != BOOT_CMD_RESP_OK) {
519 lbs_pr_info(
520 "boot cmd response result error (%d)\n",
521 bootcmdresp.u8result);
522 } else {
523 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400524 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525 "Received valid boot command response\n");
526 }
527 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400528 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529 return;
530 }
531
532 syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
533 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400534 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535 kfree_skb(skb);
536 return;
537 }
538
539 memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET,
540 sizeof(struct fwsyncheader));
541
542 if (!syncfwheader->cmd) {
Holger Schurig9012b282007-05-25 11:27:16 -0400543 /*
544 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200545 "FW received Blk with correct CRC\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400546 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200547 "FW received Blk seqnum = %d\n",
548 syncfwheader->seqnum);
Holger Schurig9012b282007-05-25 11:27:16 -0400549 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550 cardp->CRC_OK = 1;
551 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400552 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200553 "FW received Blk with CRC error\n");
554 cardp->CRC_OK = 0;
555 }
556
557 kfree_skb(skb);
558
559 if (cardp->fwfinalblk) {
560 cardp->fwdnldover = 1;
561 goto exit;
562 }
563
Dan Williams954ee162007-08-20 11:43:25 -0400564 if_prog_firmware(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565
Dan Williams954ee162007-08-20 11:43:25 -0400566 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567exit:
568 kfree(syncfwheader);
569
570 return;
571
572}
573
574#define MRVDRV_MIN_PKT_LEN 30
575
576static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
577 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100578 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579{
580 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE +
581 MESSAGE_HEADER_LEN || recvlength < MRVDRV_MIN_PKT_LEN) {
Holger Schurig9012b282007-05-25 11:27:16 -0400582 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200583 "Packet length is Invalid\n");
584 kfree_skb(skb);
585 return;
586 }
587
588 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
589 skb_put(skb, recvlength);
590 skb_pull(skb, MESSAGE_HEADER_LEN);
Holger Schurig10078322007-11-15 18:05:47 -0500591 lbs_process_rxed_packet(priv, skb);
Holger Schurig634b8f42007-05-25 13:05:16 -0400592 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593}
594
595static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
596 struct sk_buff *skb,
597 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100598 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599{
600 u8 *cmdbuf;
601 if (recvlength > MRVDRV_SIZE_OF_CMD_BUFFER) {
Holger Schurig9012b282007-05-25 11:27:16 -0400602 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603 "The receive buffer is too large\n");
604 kfree_skb(skb);
605 return;
606 }
607
608 if (!in_interrupt())
609 BUG();
610
David Woodhouseaa21c002007-12-08 20:04:36 +0000611 spin_lock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200612 /* take care of cur_cmd = NULL case by reading the
613 * data to clear the interrupt */
David Woodhouseaa21c002007-12-08 20:04:36 +0000614 if (!priv->cur_cmd) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400615 cmdbuf = priv->upld_buf;
David Woodhouseaa21c002007-12-08 20:04:36 +0000616 priv->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617 } else
David Woodhouseaa21c002007-12-08 20:04:36 +0000618 cmdbuf = priv->cur_cmd->bufvirtualaddr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619
Holger Schurigc95c7f92007-08-02 11:49:45 -0400620 cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
Holger Schurig634b8f42007-05-25 13:05:16 -0400621 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622 memcpy(cmdbuf, recvbuff + MESSAGE_HEADER_LEN,
Holger Schurig634b8f42007-05-25 13:05:16 -0400623 priv->upld_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200624
625 kfree_skb(skb);
Holger Schurig10078322007-11-15 18:05:47 -0500626 lbs_interrupt(priv->dev);
David Woodhouseaa21c002007-12-08 20:04:36 +0000627 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200628
Holger Schurig9012b282007-05-25 11:27:16 -0400629 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 "Wake up main thread to handle cmd response\n");
631
632 return;
633}
634
635/**
636 * @brief This function reads of the packet into the upload buff,
637 * wake up the main thread and initialise the Rx callack.
638 *
639 * @param urb pointer to struct urb
640 * @return N/A
641 */
642static void if_usb_receive(struct urb *urb)
643{
644 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400646 struct usb_card_rec *cardp = (struct usb_card_rec *) rinfo->cardp;
Holger Schurig69f90322007-11-23 15:43:44 +0100647 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648
649 int recvlength = urb->actual_length;
650 u8 *recvbuff = NULL;
Dan Williams8362cd42007-08-03 09:40:55 -0400651 u32 recvtype = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200652
Holger Schurig9012b282007-05-25 11:27:16 -0400653 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654
655 if (recvlength) {
Dan Williams8362cd42007-08-03 09:40:55 -0400656 __le32 tmp;
657
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400659 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660 "URB status is failed\n");
661 kfree_skb(skb);
662 goto setup_for_next;
663 }
664
665 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
Dan Williams8362cd42007-08-03 09:40:55 -0400666 memcpy(&tmp, recvbuff, sizeof(u32));
667 recvtype = le32_to_cpu(tmp);
Holger Schurig9012b282007-05-25 11:27:16 -0400668 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400669 "Recv length = 0x%x, Recv type = 0x%X\n",
670 recvlength, recvtype);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000671 } else if (urb->status) {
672 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200673 goto rx_exit;
David Woodhouse77d8cf22007-11-28 16:20:51 +0000674 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200675
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 switch (recvtype) {
677 case CMD_TYPE_DATA:
678 process_cmdtypedata(recvlength, skb, cardp, priv);
679 break;
680
681 case CMD_TYPE_REQUEST:
682 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
683 break;
684
685 case CMD_TYPE_INDICATION:
686 /* Event cause handling */
David Woodhouseaa21c002007-12-08 20:04:36 +0000687 spin_lock(&priv->driver_lock);
David Woodhouse981f1872007-05-25 23:36:54 -0400688 cardp->usb_event_cause = le32_to_cpu(*(__le32 *) (recvbuff + MESSAGE_HEADER_LEN));
Holger Schurig9012b282007-05-25 11:27:16 -0400689 lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200690 cardp->usb_event_cause);
691 if (cardp->usb_event_cause & 0xffff0000) {
Holger Schurig10078322007-11-15 18:05:47 -0500692 lbs_send_tx_feedback(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000693 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 break;
695 }
David Woodhouse981f1872007-05-25 23:36:54 -0400696 cardp->usb_event_cause <<= 3;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400697 cardp->usb_int_cause |= MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200698 kfree_skb(skb);
Holger Schurig10078322007-11-15 18:05:47 -0500699 lbs_interrupt(priv->dev);
David Woodhouseaa21c002007-12-08 20:04:36 +0000700 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200701 goto rx_exit;
702 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400703 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
704 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705 kfree_skb(skb);
706 break;
707 }
708
709setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400710 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400712 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200713}
714
715/**
716 * @brief This function downloads data to FW
Holger Schurig69f90322007-11-23 15:43:44 +0100717 * @param priv pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200718 * @param type type of data
719 * @param buf pointer to data buffer
720 * @param len number of bytes
721 * @return 0 or -1
722 */
Holger Schurig69f90322007-11-23 15:43:44 +0100723static int if_usb_host_to_card(struct lbs_private *priv,
724 u8 type,
725 u8 *payload,
726 u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727{
Holger Schurig634b8f42007-05-25 13:05:16 -0400728 struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200729
Holger Schurig9012b282007-05-25 11:27:16 -0400730 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
731 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200732
733 if (type == MVMS_CMD) {
Dan Williams8362cd42007-08-03 09:40:55 -0400734 __le32 tmp = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400735 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200736 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
737 MESSAGE_HEADER_LEN);
738
739 } else {
Dan Williams8362cd42007-08-03 09:40:55 -0400740 __le32 tmp = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400741 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200742 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
743 MESSAGE_HEADER_LEN);
744 }
745
746 memcpy((cardp->bulk_out_buffer + MESSAGE_HEADER_LEN), payload, nb);
747
Dan Williams954ee162007-08-20 11:43:25 -0400748 return usb_tx_block(cardp, cardp->bulk_out_buffer,
Dan Williams8362cd42007-08-03 09:40:55 -0400749 nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200750}
751
David Woodhouseaa21c002007-12-08 20:04:36 +0000752/* called with priv->driver_lock held */
Holger Schurig69f90322007-11-23 15:43:44 +0100753static int if_usb_get_int_status(struct lbs_private *priv, u8 *ireg)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200754{
Holger Schurig634b8f42007-05-25 13:05:16 -0400755 struct usb_card_rec *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756
757 *ireg = cardp->usb_int_cause;
758 cardp->usb_int_cause = 0;
759
Holger Schurig9012b282007-05-25 11:27:16 -0400760 lbs_deb_usbd(&cardp->udev->dev,"Int cause is 0x%X\n", *ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
762 return 0;
763}
764
Holger Schurig69f90322007-11-23 15:43:44 +0100765static int if_usb_read_event_cause(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200766{
Holger Schurig634b8f42007-05-25 13:05:16 -0400767 struct usb_card_rec *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400768
David Woodhouseaa21c002007-12-08 20:04:36 +0000769 priv->eventcause = cardp->usb_event_cause;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200770 /* Re-submit rx urb here to avoid event lost issue */
Dan Williams954ee162007-08-20 11:43:25 -0400771 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200772 return 0;
773}
774
Dan Williams9e22cb62007-08-02 11:14:49 -0400775/**
776 * @brief This function issues Boot command to the Boot2 code
777 * @param ivalue 1:Boot from FW by USB-Download
778 * 2:Boot from FW in EEPROM
779 * @return 0
780 */
Dan Williams954ee162007-08-20 11:43:25 -0400781static int if_usb_issue_boot_command(struct usb_card_rec *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400782{
Dan Williams954ee162007-08-20 11:43:25 -0400783 struct bootcmdstr sbootcmd;
Dan Williams9e22cb62007-08-02 11:14:49 -0400784 int i;
785
786 /* Prepare command */
787 sbootcmd.u32magicnumber = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
788 sbootcmd.u8cmd_tag = ivalue;
789 for (i=0; i<11; i++)
790 sbootcmd.au8dumy[i]=0x00;
791 memcpy(cardp->bulk_out_buffer, &sbootcmd, sizeof(struct bootcmdstr));
792
793 /* Issue command */
Dan Williams954ee162007-08-20 11:43:25 -0400794 usb_tx_block(cardp, cardp->bulk_out_buffer, sizeof(struct bootcmdstr));
Dan Williams9e22cb62007-08-02 11:14:49 -0400795
796 return 0;
797}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200798
799
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400800/**
801 * @brief This function checks the validity of Boot2/FW image.
802 *
803 * @param data pointer to image
804 * len image length
805 * @return 0 or -1
806 */
807static int check_fwfile_format(u8 *data, u32 totlen)
808{
809 u32 bincmd, exit;
810 u32 blksize, offset, len;
811 int ret;
812
813 ret = 1;
814 exit = len = 0;
815
816 do {
817 struct fwheader *fwh = (void *)data;
818
819 bincmd = le32_to_cpu(fwh->dnldcmd);
820 blksize = le32_to_cpu(fwh->datalength);
821 switch (bincmd) {
822 case FW_HAS_DATA_TO_RECV:
823 offset = sizeof(struct fwheader) + blksize;
824 data += offset;
825 len += offset;
826 if (len >= totlen)
827 exit = 1;
828 break;
829 case FW_HAS_LAST_BLOCK:
830 exit = 1;
831 ret = 0;
832 break;
833 default:
834 exit = 1;
835 break;
836 }
837 } while (!exit);
838
839 if (ret)
840 lbs_pr_err("firmware file format check FAIL\n");
841 else
842 lbs_deb_fw("firmware file format check PASS\n");
843
844 return ret;
845}
846
847
Dan Williams954ee162007-08-20 11:43:25 -0400848static int if_usb_prog_firmware(struct usb_card_rec *cardp)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400849{
Dan Williams954ee162007-08-20 11:43:25 -0400850 int i = 0;
851 static int reset_count = 10;
852 int ret = 0;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400853
Dan Williams954ee162007-08-20 11:43:25 -0400854 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400855
Holger Schurig10078322007-11-15 18:05:47 -0500856 if ((ret = request_firmware(&cardp->fw, lbs_fw_name,
Dan Williams954ee162007-08-20 11:43:25 -0400857 &cardp->udev->dev)) < 0) {
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400858 lbs_pr_err("request_firmware() failed with %#x\n", ret);
Holger Schurig10078322007-11-15 18:05:47 -0500859 lbs_pr_err("firmware %s not found\n", lbs_fw_name);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400860 goto done;
861 }
862
Dan Williams954ee162007-08-20 11:43:25 -0400863 if (check_fwfile_format(cardp->fw->data, cardp->fw->size))
864 goto release_fw;
865
866restart:
867 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
868 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
869 ret = -1;
870 goto release_fw;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400871 }
872
Dan Williams954ee162007-08-20 11:43:25 -0400873 cardp->bootcmdresp = 0;
874 do {
875 int j = 0;
876 i++;
877 /* Issue Boot command = 1, Boot from Download-FW */
878 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
879 /* wait for command response */
880 do {
881 j++;
882 msleep_interruptible(100);
883 } while (cardp->bootcmdresp == 0 && j < 10);
884 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400885
Dan Williams954ee162007-08-20 11:43:25 -0400886 if (cardp->bootcmdresp == 0) {
887 if (--reset_count >= 0) {
888 if_usb_reset_device(cardp);
889 goto restart;
890 }
891 return -1;
892 }
893
894 i = 0;
895
896 cardp->totalbytes = 0;
897 cardp->fwlastblksent = 0;
898 cardp->CRC_OK = 1;
899 cardp->fwdnldover = 0;
900 cardp->fwseqnum = -1;
901 cardp->totalbytes = 0;
902 cardp->fwfinalblk = 0;
903
904 if_prog_firmware(cardp);
905
906 do {
907 lbs_deb_usbd(&cardp->udev->dev,"Wlan sched timeout\n");
908 i++;
909 msleep_interruptible(100);
910 if (cardp->surprise_removed || i >= 20)
911 break;
912 } while (!cardp->fwdnldover);
913
914 if (!cardp->fwdnldover) {
915 lbs_pr_info("failed to load fw, resetting device!\n");
916 if (--reset_count >= 0) {
917 if_usb_reset_device(cardp);
918 goto restart;
919 }
920
921 lbs_pr_info("FW download failure, time = %d ms\n", i * 100);
922 ret = -1;
923 goto release_fw;
924 }
925
926release_fw:
927 release_firmware(cardp->fw);
928 cardp->fw = NULL;
929
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400930done:
Dan Williams954ee162007-08-20 11:43:25 -0400931 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400932 return ret;
933}
934
935
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200936#ifdef CONFIG_PM
937static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
938{
939 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100940 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200941
Holger Schurig9012b282007-05-25 11:27:16 -0400942 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943
David Woodhouseaa21c002007-12-08 20:04:36 +0000944 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200945 return -1;
946
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400947 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
948 /* Mesh autostart must be activated while sleeping
949 * On resume it will go back to the current state
950 */
951 struct cmd_ds_mesh_access mesh_access;
952 memset(&mesh_access, 0, sizeof(mesh_access));
953 mesh_access.data[0] = cpu_to_le32(1);
Holger Schurig10078322007-11-15 18:05:47 -0500954 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400955 CMD_MESH_ACCESS,
956 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
957 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
958 }
959
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960 netif_device_detach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400961 netif_device_detach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200962
963 /* Unlink tx & rx urb */
964 usb_kill_urb(cardp->tx_urb);
965 usb_kill_urb(cardp->rx_urb);
966
967 cardp->rx_urb_recall = 1;
968
Holger Schurig9012b282007-05-25 11:27:16 -0400969 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 return 0;
971}
972
973static int if_usb_resume(struct usb_interface *intf)
974{
975 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100976 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977
Holger Schurig9012b282007-05-25 11:27:16 -0400978 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200979
980 cardp->rx_urb_recall = 0;
981
982 if_usb_submit_rx_urb(cardp->priv);
983
984 netif_device_attach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400985 netif_device_attach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400987 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
988 /* Mesh autostart was activated while sleeping
989 * Disable it if appropriate
990 */
991 struct cmd_ds_mesh_access mesh_access;
992 memset(&mesh_access, 0, sizeof(mesh_access));
993 mesh_access.data[0] = cpu_to_le32(0);
Holger Schurig10078322007-11-15 18:05:47 -0500994 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400995 CMD_MESH_ACCESS,
996 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
997 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
998 }
999
Holger Schurig9012b282007-05-25 11:27:16 -04001000 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001001 return 0;
1002}
1003#else
1004#define if_usb_suspend NULL
1005#define if_usb_resume NULL
1006#endif
1007
1008static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -05001009 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012 .id_table = if_usb_table,
1013 .suspend = if_usb_suspend,
1014 .resume = if_usb_resume,
1015};
1016
Andres Salomon4fb910f2007-11-20 17:43:45 -05001017static int __init if_usb_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018{
Holger Schurig084708b2007-05-25 12:37:58 -04001019 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020
Holger Schurig084708b2007-05-25 12:37:58 -04001021 lbs_deb_enter(LBS_DEB_MAIN);
1022
Holger Schurig084708b2007-05-25 12:37:58 -04001023 ret = usb_register(&if_usb_driver);
1024
1025 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1026 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027}
1028
Andres Salomon4fb910f2007-11-20 17:43:45 -05001029static void __exit if_usb_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030{
Holger Schurig084708b2007-05-25 12:37:58 -04001031 lbs_deb_enter(LBS_DEB_MAIN);
1032
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033 usb_deregister(&if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -04001034
1035 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036}
Holger Schurig084708b2007-05-25 12:37:58 -04001037
1038module_init(if_usb_init_module);
1039module_exit(if_usb_exit_module);
1040
1041MODULE_DESCRIPTION("8388 USB WLAN Driver");
1042MODULE_AUTHOR("Marvell International Ltd.");
1043MODULE_LICENSE("GPL");