blob: 26176d54c576a4c4b196f3d34e2e231c1d780f87 [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 Schurig10078322007-11-15 18:05:47 -050035static int if_usb_host_to_card(lbs_private *priv, u8 type, u8 *payload, u16 nb);
36static int if_usb_get_int_status(lbs_private *priv, u8 *);
37static int if_usb_read_event_cause(lbs_private *);
Dan Williams954ee162007-08-20 11:43:25 -040038static int usb_tx_block(struct usb_card_rec *cardp, u8 *payload, u16 nb);
Holger Schurigac558ca2007-08-02 11:49:06 -040039static void if_usb_free(struct usb_card_rec *cardp);
Dan Williams954ee162007-08-20 11:43:25 -040040static int if_usb_submit_rx_urb(struct usb_card_rec *cardp);
41static int if_usb_reset_device(struct usb_card_rec *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020042
43/**
44 * @brief call back function to handle the status of the URB
45 * @param urb pointer to urb structure
46 * @return N/A
47 */
48static void if_usb_write_bulk_callback(struct urb *urb)
49{
Dan Williams954ee162007-08-20 11:43:25 -040050 struct usb_card_rec *cardp = (struct usb_card_rec *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020051
52 /* handle the transmission complete validations */
53
Dan Williams954ee162007-08-20 11:43:25 -040054 if (urb->status == 0) {
Holger Schurig10078322007-11-15 18:05:47 -050055 lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040056
Holger Schurig9012b282007-05-25 11:27:16 -040057 /*
58 lbs_deb_usbd(&urb->dev->dev, "URB status is successfull\n");
59 lbs_deb_usbd(&urb->dev->dev, "Actual length transmitted %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060 urb->actual_length);
Holger Schurig9012b282007-05-25 11:27:16 -040061 */
Dan Williams954ee162007-08-20 11:43:25 -040062
63 /* Used for both firmware TX and regular TX. priv isn't
64 * valid at firmware load time.
65 */
66 if (priv) {
Holger Schurig10078322007-11-15 18:05:47 -050067 lbs_adapter *adapter = priv->adapter;
Dan Williams954ee162007-08-20 11:43:25 -040068 struct net_device *dev = priv->dev;
69
70 priv->dnld_sent = DNLD_RES_RECEIVED;
71
72 /* Wake main thread if commands are pending */
73 if (!adapter->cur_cmd)
74 wake_up_interruptible(&priv->waitq);
75
Brajesh Dave01d77d82007-11-20 17:44:14 -050076 if (adapter->connect_status == LBS_CONNECTED)
Dan Williams954ee162007-08-20 11:43:25 -040077 netif_wake_queue(dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -050078
79 if (priv->mesh_dev && (adapter->mesh_connect_status == LBS_CONNECTED))
Dan Williams954ee162007-08-20 11:43:25 -040080 netif_wake_queue(priv->mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -040081 }
Dan Williams954ee162007-08-20 11:43:25 -040082 } else {
83 /* print the failure status number for debug */
84 lbs_pr_info("URB in failure status: %d\n", urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020085 }
86
87 return;
88}
89
90/**
91 * @brief free tx/rx urb, skb and rx buffer
92 * @param cardp pointer usb_card_rec
93 * @return N/A
94 */
Holger Schurigac558ca2007-08-02 11:49:06 -040095static void if_usb_free(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020096{
Holger Schurig9012b282007-05-25 11:27:16 -040097 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020098
99 /* Unlink tx & rx urb */
100 usb_kill_urb(cardp->tx_urb);
101 usb_kill_urb(cardp->rx_urb);
102
103 usb_free_urb(cardp->tx_urb);
104 cardp->tx_urb = NULL;
105
106 usb_free_urb(cardp->rx_urb);
107 cardp->rx_urb = NULL;
108
109 kfree(cardp->bulk_out_buffer);
110 cardp->bulk_out_buffer = NULL;
111
Holger Schurig9012b282007-05-25 11:27:16 -0400112 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113}
114
115/**
116 * @brief sets the configuration values
117 * @param ifnum interface number
118 * @param id pointer to usb_device_id
119 * @return 0 on success, error code on failure
120 */
121static int if_usb_probe(struct usb_interface *intf,
122 const struct usb_device_id *id)
123{
124 struct usb_device *udev;
125 struct usb_host_interface *iface_desc;
126 struct usb_endpoint_descriptor *endpoint;
Holger Schurig10078322007-11-15 18:05:47 -0500127 lbs_private *priv;
Holger Schurig435a1ac2007-05-25 12:41:52 -0400128 struct usb_card_rec *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129 int i;
130
131 udev = interface_to_usbdev(intf);
132
Holger Schurig435a1ac2007-05-25 12:41:52 -0400133 cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
134 if (!cardp) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200135 lbs_pr_err("Out of memory allocating private data.\n");
136 goto error;
137 }
138
Holger Schurig435a1ac2007-05-25 12:41:52 -0400139 cardp->udev = udev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140 iface_desc = intf->cur_altsetting;
141
Holger Schurig9012b282007-05-25 11:27:16 -0400142 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200143 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400144 le16_to_cpu(udev->descriptor.bcdUSB),
145 udev->descriptor.bDeviceClass,
146 udev->descriptor.bDeviceSubClass,
147 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200148
149 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
150 endpoint = &iface_desc->endpoint[i].desc;
151 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
152 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
153 USB_ENDPOINT_XFER_BULK)) {
154 /* we found a bulk in endpoint */
Holger Schurig9012b282007-05-25 11:27:16 -0400155 lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400156 le16_to_cpu(endpoint->wMaxPacketSize));
157 if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400158 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159 "Rx URB allocation failed\n");
160 goto dealloc;
161 }
Holger Schurig435a1ac2007-05-25 12:41:52 -0400162 cardp->rx_urb_recall = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163
Holger Schurig435a1ac2007-05-25 12:41:52 -0400164 cardp->bulk_in_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400165 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400166 cardp->bulk_in_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200167 (endpoint->
168 bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400169 lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170 endpoint->bEndpointAddress);
171 }
172
173 if (((endpoint->
174 bEndpointAddress & USB_ENDPOINT_DIR_MASK) ==
175 USB_DIR_OUT)
176 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
177 USB_ENDPOINT_XFER_BULK)) {
178 /* We found bulk out endpoint */
David Woodhouse981f1872007-05-25 23:36:54 -0400179 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400180 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181 "Tx URB allocation failed\n");
182 goto dealloc;
183 }
184
Holger Schurig435a1ac2007-05-25 12:41:52 -0400185 cardp->bulk_out_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400186 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig9012b282007-05-25 11:27:16 -0400187 lbs_deb_usbd(&udev->dev,
David Woodhouse981f1872007-05-25 23:36:54 -0400188 "Bulk out size is %d\n",
189 le16_to_cpu(endpoint->wMaxPacketSize));
Holger Schurig435a1ac2007-05-25 12:41:52 -0400190 cardp->bulk_out_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191 endpoint->bEndpointAddress;
Holger Schurig9012b282007-05-25 11:27:16 -0400192 lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193 endpoint->bEndpointAddress);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400194 cardp->bulk_out_buffer =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
196 GFP_KERNEL);
197
Holger Schurig435a1ac2007-05-25 12:41:52 -0400198 if (!cardp->bulk_out_buffer) {
Holger Schurig9012b282007-05-25 11:27:16 -0400199 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200 "Could not allocate buffer\n");
201 goto dealloc;
202 }
203 }
204 }
205
Dan Williams954ee162007-08-20 11:43:25 -0400206 /* Upload firmware */
207 cardp->rinfo.cardp = cardp;
208 if (if_usb_prog_firmware(cardp)) {
209 lbs_deb_usbd(&udev->dev, "FW upload failed");
210 goto err_prog_firmware;
211 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400212
Holger Schurig10078322007-11-15 18:05:47 -0500213 if (!(priv = lbs_add_card(cardp, &udev->dev)))
Dan Williams954ee162007-08-20 11:43:25 -0400214 goto err_prog_firmware;
215
216 cardp->priv = priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400217
Holger Schurig10078322007-11-15 18:05:47 -0500218 if (lbs_add_mesh(priv, &udev->dev))
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400219 goto err_add_mesh;
Javier Cardona51d84f52007-05-25 12:06:56 -0400220
Dan Williams954ee162007-08-20 11:43:25 -0400221 cardp->eth_dev = priv->dev;
222
Holger Schurig208fdd22007-05-25 12:17:06 -0400223 priv->hw_host_to_card = if_usb_host_to_card;
224 priv->hw_get_int_status = if_usb_get_int_status;
225 priv->hw_read_event_cause = if_usb_read_event_cause;
Luis Carlos Cobo63f00232007-08-02 13:19:24 -0400226 priv->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400227
Dan Williams954ee162007-08-20 11:43:25 -0400228 /* Delay 200 ms to waiting for the FW ready */
229 if_usb_submit_rx_urb(cardp);
230 msleep_interruptible(200);
231 priv->adapter->fw_ready = 1;
232
Holger Schurig10078322007-11-15 18:05:47 -0500233 if (lbs_start_card(priv))
Dan Williams954ee162007-08-20 11:43:25 -0400234 goto err_start_card;
Holger Schurig32a74b72007-05-25 12:04:31 -0400235
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400237 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239 return 0;
240
Dan Williams954ee162007-08-20 11:43:25 -0400241err_start_card:
Holger Schurig10078322007-11-15 18:05:47 -0500242 lbs_remove_mesh(priv);
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400243err_add_mesh:
Holger Schurig10078322007-11-15 18:05:47 -0500244 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400245err_prog_firmware:
246 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400248 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249
250error:
251 return -ENOMEM;
252}
253
254/**
255 * @brief free resource and cleanup
Holger Schurig435a1ac2007-05-25 12:41:52 -0400256 * @param intf USB interface structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 * @return N/A
258 */
259static void if_usb_disconnect(struct usb_interface *intf)
260{
261 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig10078322007-11-15 18:05:47 -0500262 lbs_private *priv = (lbs_private *) cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263
Dan Williams954ee162007-08-20 11:43:25 -0400264 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265
Dan Williams954ee162007-08-20 11:43:25 -0400266 /* Update Surprise removed to TRUE */
267 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200268
Dan Williams954ee162007-08-20 11:43:25 -0400269 if (priv) {
Holger Schurig10078322007-11-15 18:05:47 -0500270 lbs_adapter *adapter = priv->adapter;
Dan Williams954ee162007-08-20 11:43:25 -0400271
272 adapter->surpriseremoved = 1;
Holger Schurig10078322007-11-15 18:05:47 -0500273 lbs_stop_card(priv);
274 lbs_remove_mesh(priv);
275 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400276 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277
Andres Salomonbe13f182007-11-20 17:43:55 -0500278 /* this is (apparently?) necessary for future usage of the device */
279 lbs_prepare_and_send_command(priv, CMD_802_11_RESET, CMD_ACT_HALT,
280 0, 0, NULL);
281
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200282 /* Unlink and free urb */
283 if_usb_free(cardp);
284
285 usb_set_intfdata(intf, NULL);
286 usb_put_dev(interface_to_usbdev(intf));
287
Dan Williams954ee162007-08-20 11:43:25 -0400288 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289}
290
291/**
292 * @brief This function download FW
Holger Schurig10078322007-11-15 18:05:47 -0500293 * @param priv pointer to lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200294 * @return 0
295 */
Dan Williams954ee162007-08-20 11:43:25 -0400296static int if_prog_firmware(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200297{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298 struct FWData *fwdata;
299 struct fwheader *fwheader;
Dan Williams954ee162007-08-20 11:43:25 -0400300 u8 *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301
302 fwdata = kmalloc(sizeof(struct FWData), GFP_ATOMIC);
303
304 if (!fwdata)
305 return -1;
306
307 fwheader = &fwdata->fwheader;
308
309 if (!cardp->CRC_OK) {
310 cardp->totalbytes = cardp->fwlastblksent;
311 cardp->fwseqnum = cardp->lastseqnum - 1;
312 }
313
Holger Schurig9012b282007-05-25 11:27:16 -0400314 /*
315 lbs_deb_usbd(&cardp->udev->dev, "totalbytes = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200316 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400317 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200318
319 memcpy(fwheader, &firmware[cardp->totalbytes],
320 sizeof(struct fwheader));
321
322 cardp->fwlastblksent = cardp->totalbytes;
323 cardp->totalbytes += sizeof(struct fwheader);
324
Holger Schurig9012b282007-05-25 11:27:16 -0400325 /* lbs_deb_usbd(&cardp->udev->dev,"Copy Data\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200326 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouse981f1872007-05-25 23:36:54 -0400327 le32_to_cpu(fwdata->fwheader.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328
Holger Schurig9012b282007-05-25 11:27:16 -0400329 /*
330 lbs_deb_usbd(&cardp->udev->dev,
David Woodhousebb793e22007-05-25 23:38:14 -0400331 "Data length = %d\n", le32_to_cpu(fwdata->fwheader.datalength));
Holger Schurig9012b282007-05-25 11:27:16 -0400332 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333
334 cardp->fwseqnum = cardp->fwseqnum + 1;
335
David Woodhouse981f1872007-05-25 23:36:54 -0400336 fwdata->seqnum = cpu_to_le32(cardp->fwseqnum);
337 cardp->lastseqnum = cardp->fwseqnum;
338 cardp->totalbytes += le32_to_cpu(fwdata->fwheader.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200339
David Woodhouse981f1872007-05-25 23:36:54 -0400340 if (fwheader->dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400341 /*
David Woodhouse981f1872007-05-25 23:36:54 -0400342 lbs_deb_usbd(&cardp->udev->dev, "There are data to follow\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400343 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200344 "seqnum = %d totalbytes = %d\n", cardp->fwseqnum,
345 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400346 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200347 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400348 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200349
David Woodhousebb793e22007-05-25 23:38:14 -0400350 } else if (fwdata->fwheader.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400351 /*
352 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200353 "Host has finished FW downloading\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400354 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200355 "Donwloading FW JUMP BLOCK\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400356 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400358 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359 cardp->fwfinalblk = 1;
360 }
361
Holger Schurig9012b282007-05-25 11:27:16 -0400362 /*
363 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200364 "The firmware download is done size is %d\n",
365 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400366 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200367
368 kfree(fwdata);
369
370 return 0;
371}
372
Dan Williams954ee162007-08-20 11:43:25 -0400373static int if_usb_reset_device(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374{
375 int ret;
Holger Schurig10078322007-11-15 18:05:47 -0500376 lbs_private * priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377
Holger Schurig3874d0f2007-05-25 12:01:42 -0400378 lbs_deb_enter(LBS_DEB_USB);
379
Dan Williamseedc2a32007-08-02 11:36:22 -0400380 /* Try a USB port reset first, if that fails send the reset
381 * command to the firmware.
382 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383 ret = usb_reset_device(cardp->udev);
Dan Williams954ee162007-08-20 11:43:25 -0400384 if (!ret && priv) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 msleep(10);
Holger Schurig10078322007-11-15 18:05:47 -0500386 ret = lbs_reset_device(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387 msleep(10);
388 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400389
390 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
391
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200392 return ret;
393}
394
395/**
396 * @brief This function transfer the data to the device.
Holger Schurig10078322007-11-15 18:05:47 -0500397 * @param priv pointer to lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200398 * @param payload pointer to payload data
399 * @param nb data length
400 * @return 0 or -1
401 */
Dan Williams954ee162007-08-20 11:43:25 -0400402static int usb_tx_block(struct usb_card_rec *cardp, u8 * payload, u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200403{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 int ret = -1;
405
406 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400407 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400408 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200409 goto tx_ret;
410 }
411
412 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
413 usb_sndbulkpipe(cardp->udev,
414 cardp->bulk_out_endpointAddr),
Dan Williams954ee162007-08-20 11:43:25 -0400415 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200416
417 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
418
419 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
420 /* transfer failed */
Holger Schurig9012b282007-05-25 11:27:16 -0400421 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200422 ret = -1;
423 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400424 /* lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425 ret = 0;
426 }
427
428tx_ret:
429 return ret;
430}
431
Dan Williams954ee162007-08-20 11:43:25 -0400432static int __if_usb_submit_rx_urb(struct usb_card_rec *cardp,
433 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435 struct sk_buff *skb;
436 struct read_cb_info *rinfo = &cardp->rinfo;
437 int ret = -1;
438
439 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
440 lbs_pr_err("No free skb\n");
441 goto rx_ret;
442 }
443
444 rinfo->skb = skb;
445
446 /* Fill the receive configuration URB and initialise the Rx call back */
447 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
448 usb_rcvbulkpipe(cardp->udev,
449 cardp->bulk_in_endpointAddr),
Dan Williams4269e2a2007-05-10 23:10:18 -0400450 (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200451 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
452 rinfo);
453
454 cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
455
Holger Schurig9012b282007-05-25 11:27:16 -0400456 /* lbs_deb_usbd(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
458 /* handle failure conditions */
Holger Schurig9012b282007-05-25 11:27:16 -0400459 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200460 ret = -1;
461 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400462 /* lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 ret = 0;
464 }
465
466rx_ret:
467 return ret;
468}
469
Dan Williams954ee162007-08-20 11:43:25 -0400470static int if_usb_submit_rx_urb_fwload(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471{
Dan Williams954ee162007-08-20 11:43:25 -0400472 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473}
474
Dan Williams954ee162007-08-20 11:43:25 -0400475static int if_usb_submit_rx_urb(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476{
Dan Williams954ee162007-08-20 11:43:25 -0400477 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478}
479
480static void if_usb_receive_fwload(struct urb *urb)
481{
482 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400484 struct usb_card_rec *cardp = (struct usb_card_rec *)rinfo->cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200485 struct fwsyncheader *syncfwheader;
486 struct bootcmdrespStr bootcmdresp;
487
488 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400489 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 "URB status is failed during fw load\n");
491 kfree_skb(skb);
492 return;
493 }
494
495 if (cardp->bootcmdresp == 0) {
496 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
497 sizeof(bootcmdresp));
David Woodhouse981f1872007-05-25 23:36:54 -0400498 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200499 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400500 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200501 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400502 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503 "Received valid boot command response\n");
504 return;
505 }
David Woodhouse981f1872007-05-25 23:36:54 -0400506 if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 lbs_pr_info(
508 "boot cmd response wrong magic number (0x%x)\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400509 le32_to_cpu(bootcmdresp.u32magicnumber));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
511 lbs_pr_info(
512 "boot cmd response cmd_tag error (%d)\n",
513 bootcmdresp.u8cmd_tag);
514 } else if (bootcmdresp.u8result != BOOT_CMD_RESP_OK) {
515 lbs_pr_info(
516 "boot cmd response result error (%d)\n",
517 bootcmdresp.u8result);
518 } else {
519 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400520 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200521 "Received valid boot command response\n");
522 }
523 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400524 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525 return;
526 }
527
528 syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
529 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400530 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200531 kfree_skb(skb);
532 return;
533 }
534
535 memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET,
536 sizeof(struct fwsyncheader));
537
538 if (!syncfwheader->cmd) {
Holger Schurig9012b282007-05-25 11:27:16 -0400539 /*
540 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200541 "FW received Blk with correct CRC\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400542 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200543 "FW received Blk seqnum = %d\n",
544 syncfwheader->seqnum);
Holger Schurig9012b282007-05-25 11:27:16 -0400545 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546 cardp->CRC_OK = 1;
547 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400548 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549 "FW received Blk with CRC error\n");
550 cardp->CRC_OK = 0;
551 }
552
553 kfree_skb(skb);
554
555 if (cardp->fwfinalblk) {
556 cardp->fwdnldover = 1;
557 goto exit;
558 }
559
Dan Williams954ee162007-08-20 11:43:25 -0400560 if_prog_firmware(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561
Dan Williams954ee162007-08-20 11:43:25 -0400562 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563exit:
564 kfree(syncfwheader);
565
566 return;
567
568}
569
570#define MRVDRV_MIN_PKT_LEN 30
571
572static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
573 struct usb_card_rec *cardp,
Holger Schurig10078322007-11-15 18:05:47 -0500574 lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200575{
576 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE +
577 MESSAGE_HEADER_LEN || recvlength < MRVDRV_MIN_PKT_LEN) {
Holger Schurig9012b282007-05-25 11:27:16 -0400578 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579 "Packet length is Invalid\n");
580 kfree_skb(skb);
581 return;
582 }
583
584 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
585 skb_put(skb, recvlength);
586 skb_pull(skb, MESSAGE_HEADER_LEN);
Holger Schurig10078322007-11-15 18:05:47 -0500587 lbs_process_rxed_packet(priv, skb);
Holger Schurig634b8f42007-05-25 13:05:16 -0400588 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589}
590
591static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
592 struct sk_buff *skb,
593 struct usb_card_rec *cardp,
Holger Schurig10078322007-11-15 18:05:47 -0500594 lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595{
596 u8 *cmdbuf;
597 if (recvlength > MRVDRV_SIZE_OF_CMD_BUFFER) {
Holger Schurig9012b282007-05-25 11:27:16 -0400598 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599 "The receive buffer is too large\n");
600 kfree_skb(skb);
601 return;
602 }
603
604 if (!in_interrupt())
605 BUG();
606
607 spin_lock(&priv->adapter->driver_lock);
608 /* take care of cur_cmd = NULL case by reading the
609 * data to clear the interrupt */
610 if (!priv->adapter->cur_cmd) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400611 cmdbuf = priv->upld_buf;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400612 priv->adapter->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613 } else
614 cmdbuf = priv->adapter->cur_cmd->bufvirtualaddr;
615
Holger Schurigc95c7f92007-08-02 11:49:45 -0400616 cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
Holger Schurig634b8f42007-05-25 13:05:16 -0400617 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618 memcpy(cmdbuf, recvbuff + MESSAGE_HEADER_LEN,
Holger Schurig634b8f42007-05-25 13:05:16 -0400619 priv->upld_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200620
621 kfree_skb(skb);
Holger Schurig10078322007-11-15 18:05:47 -0500622 lbs_interrupt(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623 spin_unlock(&priv->adapter->driver_lock);
624
Holger Schurig9012b282007-05-25 11:27:16 -0400625 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626 "Wake up main thread to handle cmd response\n");
627
628 return;
629}
630
631/**
632 * @brief This function reads of the packet into the upload buff,
633 * wake up the main thread and initialise the Rx callack.
634 *
635 * @param urb pointer to struct urb
636 * @return N/A
637 */
638static void if_usb_receive(struct urb *urb)
639{
640 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400642 struct usb_card_rec *cardp = (struct usb_card_rec *) rinfo->cardp;
Holger Schurig10078322007-11-15 18:05:47 -0500643 lbs_private * priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644
645 int recvlength = urb->actual_length;
646 u8 *recvbuff = NULL;
Dan Williams8362cd42007-08-03 09:40:55 -0400647 u32 recvtype = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648
Holger Schurig9012b282007-05-25 11:27:16 -0400649 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650
651 if (recvlength) {
Dan Williams8362cd42007-08-03 09:40:55 -0400652 __le32 tmp;
653
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400655 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656 "URB status is failed\n");
657 kfree_skb(skb);
658 goto setup_for_next;
659 }
660
661 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
Dan Williams8362cd42007-08-03 09:40:55 -0400662 memcpy(&tmp, recvbuff, sizeof(u32));
663 recvtype = le32_to_cpu(tmp);
Holger Schurig9012b282007-05-25 11:27:16 -0400664 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400665 "Recv length = 0x%x, Recv type = 0x%X\n",
666 recvlength, recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200667 } else if (urb->status)
668 goto rx_exit;
669
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200670 switch (recvtype) {
671 case CMD_TYPE_DATA:
672 process_cmdtypedata(recvlength, skb, cardp, priv);
673 break;
674
675 case CMD_TYPE_REQUEST:
676 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
677 break;
678
679 case CMD_TYPE_INDICATION:
680 /* Event cause handling */
681 spin_lock(&priv->adapter->driver_lock);
David Woodhouse981f1872007-05-25 23:36:54 -0400682 cardp->usb_event_cause = le32_to_cpu(*(__le32 *) (recvbuff + MESSAGE_HEADER_LEN));
Holger Schurig9012b282007-05-25 11:27:16 -0400683 lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200684 cardp->usb_event_cause);
685 if (cardp->usb_event_cause & 0xffff0000) {
Holger Schurig10078322007-11-15 18:05:47 -0500686 lbs_send_tx_feedback(priv);
Dan Williams12a4d262007-05-10 23:08:54 -0400687 spin_unlock(&priv->adapter->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200688 break;
689 }
David Woodhouse981f1872007-05-25 23:36:54 -0400690 cardp->usb_event_cause <<= 3;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400691 cardp->usb_int_cause |= MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 kfree_skb(skb);
Holger Schurig10078322007-11-15 18:05:47 -0500693 lbs_interrupt(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 spin_unlock(&priv->adapter->driver_lock);
695 goto rx_exit;
696 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400697 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
698 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699 kfree_skb(skb);
700 break;
701 }
702
703setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400704 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400706 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200707}
708
709/**
710 * @brief This function downloads data to FW
Holger Schurig10078322007-11-15 18:05:47 -0500711 * @param priv pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200712 * @param type type of data
713 * @param buf pointer to data buffer
714 * @param len number of bytes
715 * @return 0 or -1
716 */
Holger Schurig10078322007-11-15 18:05:47 -0500717static int if_usb_host_to_card(lbs_private *priv, u8 type, u8 *payload, u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200718{
Holger Schurig634b8f42007-05-25 13:05:16 -0400719 struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200720
Holger Schurig9012b282007-05-25 11:27:16 -0400721 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
722 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723
724 if (type == MVMS_CMD) {
Dan Williams8362cd42007-08-03 09:40:55 -0400725 __le32 tmp = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400726 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
728 MESSAGE_HEADER_LEN);
729
730 } else {
Dan Williams8362cd42007-08-03 09:40:55 -0400731 __le32 tmp = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400732 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200733 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
734 MESSAGE_HEADER_LEN);
735 }
736
737 memcpy((cardp->bulk_out_buffer + MESSAGE_HEADER_LEN), payload, nb);
738
Dan Williams954ee162007-08-20 11:43:25 -0400739 return usb_tx_block(cardp, cardp->bulk_out_buffer,
Dan Williams8362cd42007-08-03 09:40:55 -0400740 nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741}
742
743/* called with adapter->driver_lock held */
Holger Schurig10078322007-11-15 18:05:47 -0500744static int if_usb_get_int_status(lbs_private *priv, u8 *ireg)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745{
Holger Schurig634b8f42007-05-25 13:05:16 -0400746 struct usb_card_rec *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200747
748 *ireg = cardp->usb_int_cause;
749 cardp->usb_int_cause = 0;
750
Holger Schurig9012b282007-05-25 11:27:16 -0400751 lbs_deb_usbd(&cardp->udev->dev,"Int cause is 0x%X\n", *ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752
753 return 0;
754}
755
Holger Schurig10078322007-11-15 18:05:47 -0500756static int if_usb_read_event_cause(lbs_private * priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200757{
Holger Schurig634b8f42007-05-25 13:05:16 -0400758 struct usb_card_rec *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400759
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200760 priv->adapter->eventcause = cardp->usb_event_cause;
761 /* Re-submit rx urb here to avoid event lost issue */
Dan Williams954ee162007-08-20 11:43:25 -0400762 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200763 return 0;
764}
765
Dan Williams9e22cb62007-08-02 11:14:49 -0400766/**
767 * @brief This function issues Boot command to the Boot2 code
768 * @param ivalue 1:Boot from FW by USB-Download
769 * 2:Boot from FW in EEPROM
770 * @return 0
771 */
Dan Williams954ee162007-08-20 11:43:25 -0400772static int if_usb_issue_boot_command(struct usb_card_rec *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400773{
Dan Williams954ee162007-08-20 11:43:25 -0400774 struct bootcmdstr sbootcmd;
Dan Williams9e22cb62007-08-02 11:14:49 -0400775 int i;
776
777 /* Prepare command */
778 sbootcmd.u32magicnumber = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
779 sbootcmd.u8cmd_tag = ivalue;
780 for (i=0; i<11; i++)
781 sbootcmd.au8dumy[i]=0x00;
782 memcpy(cardp->bulk_out_buffer, &sbootcmd, sizeof(struct bootcmdstr));
783
784 /* Issue command */
Dan Williams954ee162007-08-20 11:43:25 -0400785 usb_tx_block(cardp, cardp->bulk_out_buffer, sizeof(struct bootcmdstr));
Dan Williams9e22cb62007-08-02 11:14:49 -0400786
787 return 0;
788}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789
790
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400791/**
792 * @brief This function checks the validity of Boot2/FW image.
793 *
794 * @param data pointer to image
795 * len image length
796 * @return 0 or -1
797 */
798static int check_fwfile_format(u8 *data, u32 totlen)
799{
800 u32 bincmd, exit;
801 u32 blksize, offset, len;
802 int ret;
803
804 ret = 1;
805 exit = len = 0;
806
807 do {
808 struct fwheader *fwh = (void *)data;
809
810 bincmd = le32_to_cpu(fwh->dnldcmd);
811 blksize = le32_to_cpu(fwh->datalength);
812 switch (bincmd) {
813 case FW_HAS_DATA_TO_RECV:
814 offset = sizeof(struct fwheader) + blksize;
815 data += offset;
816 len += offset;
817 if (len >= totlen)
818 exit = 1;
819 break;
820 case FW_HAS_LAST_BLOCK:
821 exit = 1;
822 ret = 0;
823 break;
824 default:
825 exit = 1;
826 break;
827 }
828 } while (!exit);
829
830 if (ret)
831 lbs_pr_err("firmware file format check FAIL\n");
832 else
833 lbs_deb_fw("firmware file format check PASS\n");
834
835 return ret;
836}
837
838
Dan Williams954ee162007-08-20 11:43:25 -0400839static int if_usb_prog_firmware(struct usb_card_rec *cardp)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400840{
Dan Williams954ee162007-08-20 11:43:25 -0400841 int i = 0;
842 static int reset_count = 10;
843 int ret = 0;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400844
Dan Williams954ee162007-08-20 11:43:25 -0400845 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400846
Holger Schurig10078322007-11-15 18:05:47 -0500847 if ((ret = request_firmware(&cardp->fw, lbs_fw_name,
Dan Williams954ee162007-08-20 11:43:25 -0400848 &cardp->udev->dev)) < 0) {
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400849 lbs_pr_err("request_firmware() failed with %#x\n", ret);
Holger Schurig10078322007-11-15 18:05:47 -0500850 lbs_pr_err("firmware %s not found\n", lbs_fw_name);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400851 goto done;
852 }
853
Dan Williams954ee162007-08-20 11:43:25 -0400854 if (check_fwfile_format(cardp->fw->data, cardp->fw->size))
855 goto release_fw;
856
857restart:
858 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
859 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
860 ret = -1;
861 goto release_fw;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400862 }
863
Dan Williams954ee162007-08-20 11:43:25 -0400864 cardp->bootcmdresp = 0;
865 do {
866 int j = 0;
867 i++;
868 /* Issue Boot command = 1, Boot from Download-FW */
869 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
870 /* wait for command response */
871 do {
872 j++;
873 msleep_interruptible(100);
874 } while (cardp->bootcmdresp == 0 && j < 10);
875 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400876
Dan Williams954ee162007-08-20 11:43:25 -0400877 if (cardp->bootcmdresp == 0) {
878 if (--reset_count >= 0) {
879 if_usb_reset_device(cardp);
880 goto restart;
881 }
882 return -1;
883 }
884
885 i = 0;
886
887 cardp->totalbytes = 0;
888 cardp->fwlastblksent = 0;
889 cardp->CRC_OK = 1;
890 cardp->fwdnldover = 0;
891 cardp->fwseqnum = -1;
892 cardp->totalbytes = 0;
893 cardp->fwfinalblk = 0;
894
895 if_prog_firmware(cardp);
896
897 do {
898 lbs_deb_usbd(&cardp->udev->dev,"Wlan sched timeout\n");
899 i++;
900 msleep_interruptible(100);
901 if (cardp->surprise_removed || i >= 20)
902 break;
903 } while (!cardp->fwdnldover);
904
905 if (!cardp->fwdnldover) {
906 lbs_pr_info("failed to load fw, resetting device!\n");
907 if (--reset_count >= 0) {
908 if_usb_reset_device(cardp);
909 goto restart;
910 }
911
912 lbs_pr_info("FW download failure, time = %d ms\n", i * 100);
913 ret = -1;
914 goto release_fw;
915 }
916
917release_fw:
918 release_firmware(cardp->fw);
919 cardp->fw = NULL;
920
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400921done:
Dan Williams954ee162007-08-20 11:43:25 -0400922 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400923 return ret;
924}
925
926
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927#ifdef CONFIG_PM
928static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
929{
930 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig10078322007-11-15 18:05:47 -0500931 lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200932
Holger Schurig9012b282007-05-25 11:27:16 -0400933 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200934
935 if (priv->adapter->psstate != PS_STATE_FULL_POWER)
936 return -1;
937
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400938 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
939 /* Mesh autostart must be activated while sleeping
940 * On resume it will go back to the current state
941 */
942 struct cmd_ds_mesh_access mesh_access;
943 memset(&mesh_access, 0, sizeof(mesh_access));
944 mesh_access.data[0] = cpu_to_le32(1);
Holger Schurig10078322007-11-15 18:05:47 -0500945 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400946 CMD_MESH_ACCESS,
947 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
948 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
949 }
950
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200951 netif_device_detach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400952 netif_device_detach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953
954 /* Unlink tx & rx urb */
955 usb_kill_urb(cardp->tx_urb);
956 usb_kill_urb(cardp->rx_urb);
957
958 cardp->rx_urb_recall = 1;
959
Holger Schurig9012b282007-05-25 11:27:16 -0400960 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200961 return 0;
962}
963
964static int if_usb_resume(struct usb_interface *intf)
965{
966 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig10078322007-11-15 18:05:47 -0500967 lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200968
Holger Schurig9012b282007-05-25 11:27:16 -0400969 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970
971 cardp->rx_urb_recall = 0;
972
973 if_usb_submit_rx_urb(cardp->priv);
974
975 netif_device_attach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400976 netif_device_attach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400978 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
979 /* Mesh autostart was activated while sleeping
980 * Disable it if appropriate
981 */
982 struct cmd_ds_mesh_access mesh_access;
983 memset(&mesh_access, 0, sizeof(mesh_access));
984 mesh_access.data[0] = cpu_to_le32(0);
Holger Schurig10078322007-11-15 18:05:47 -0500985 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400986 CMD_MESH_ACCESS,
987 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
988 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
989 }
990
Holger Schurig9012b282007-05-25 11:27:16 -0400991 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992 return 0;
993}
994#else
995#define if_usb_suspend NULL
996#define if_usb_resume NULL
997#endif
998
999static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -05001000 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001001 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001003 .id_table = if_usb_table,
1004 .suspend = if_usb_suspend,
1005 .resume = if_usb_resume,
1006};
1007
Andres Salomon4fb910f2007-11-20 17:43:45 -05001008static int __init if_usb_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001009{
Holger Schurig084708b2007-05-25 12:37:58 -04001010 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011
Holger Schurig084708b2007-05-25 12:37:58 -04001012 lbs_deb_enter(LBS_DEB_MAIN);
1013
Holger Schurig084708b2007-05-25 12:37:58 -04001014 ret = usb_register(&if_usb_driver);
1015
1016 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1017 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018}
1019
Andres Salomon4fb910f2007-11-20 17:43:45 -05001020static void __exit if_usb_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021{
Holger Schurig084708b2007-05-25 12:37:58 -04001022 lbs_deb_enter(LBS_DEB_MAIN);
1023
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024 usb_deregister(&if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -04001025
1026 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027}
Holger Schurig084708b2007-05-25 12:37:58 -04001028
1029module_init(if_usb_init_module);
1030module_exit(if_usb_exit_module);
1031
1032MODULE_DESCRIPTION("8388 USB WLAN Driver");
1033MODULE_AUTHOR("Marvell International Ltd.");
1034MODULE_LICENSE("GPL");