]> err.no Git - linux-2.6/blobdiff - drivers/net/wireless/libertas/if_usb.c
[PATCH] libertas: keep mesh autostart enabled while asleep
[linux-2.6] / drivers / net / wireless / libertas / if_usb.c
index ca5d01296a08179d6da33401a44ac504e14b0033..670e1d23c0431ea55bcacd29ad77f76eb84c260d 100644 (file)
@@ -5,26 +5,34 @@
 #include <linux/moduleparam.h>
 #include <linux/firmware.h>
 #include <linux/netdevice.h>
+#include <linux/list.h>
 #include <linux/usb.h>
 
+#define DRV_NAME "usb8xxx"
+
 #include "host.h"
 #include "decl.h"
 #include "defs.h"
 #include "dev.h"
 #include "if_usb.h"
+#include "decl.h"
 
 #define MESSAGE_HEADER_LEN     4
 
 static const char usbdriver_name[] = "usb8xxx";
 static u8 *default_fw_name = "usb8388.bin";
 
-char *libertas_fw_name = NULL;
+static char *libertas_fw_name = NULL;
 module_param_named(fw_name, libertas_fw_name, charp, 0644);
 
-
-#define MAX_DEVS 5
-static struct net_device *libertas_devs[MAX_DEVS];
-static int libertas_found = 0;
+/*
+ * We need to send a RESET command to all USB devices before
+ * we tear down the USB connection. Otherwise we would not
+ * be able to re-init device the device if the module gets
+ * loaded again. This is a list of all initialized USB devices,
+ * for the reset code see if_usb_reset_device()
+*/
+static LIST_HEAD(usb_devices);
 
 static struct usb_device_id if_usb_table[] = {
        /* Enter the device signature inside */
@@ -37,13 +45,14 @@ MODULE_DEVICE_TABLE(usb, if_usb_table);
 
 static void if_usb_receive(struct urb *urb);
 static void if_usb_receive_fwload(struct urb *urb);
-static int reset_device(wlan_private *priv);
 static int if_usb_register_dev(wlan_private * priv);
 static int if_usb_unregister_dev(wlan_private *);
 static int if_usb_prog_firmware(wlan_private *);
 static int if_usb_host_to_card(wlan_private * priv, u8 type, u8 * payload, u16 nb);
 static int if_usb_get_int_status(wlan_private * priv, u8 *);
 static int if_usb_read_event_cause(wlan_private *);
+static int usb_tx_block(wlan_private *priv, u8 *payload, u16 nb);
+static void if_usb_free(struct usb_card_rec *cardp);
 
 /**
  *  @brief  call back function to handle the status of the URB
@@ -54,24 +63,24 @@ static void if_usb_write_bulk_callback(struct urb *urb)
 {
        wlan_private *priv = (wlan_private *) (urb->context);
        wlan_adapter *adapter = priv->adapter;
-       struct net_device *dev = priv->wlan_dev.netdev;
+       struct net_device *dev = priv->dev;
 
        /* handle the transmission complete validations */
 
        if (urb->status != 0) {
                /* print the failure status number for debug */
-               lbs_pr_info("URB in failure status\n");
+               lbs_pr_info("URB in failure status: %d\n", urb->status);
        } else {
                /*
                lbs_deb_usbd(&urb->dev->dev, "URB status is successfull\n");
                lbs_deb_usbd(&urb->dev->dev, "Actual length transmitted %d\n",
                       urb->actual_length);
                */
-               priv->wlan_dev.dnld_sent = DNLD_RES_RECEIVED;
+               priv->dnld_sent = DNLD_RES_RECEIVED;
                /* Wake main thread if commands are pending */
                if (!adapter->cur_cmd)
-                       wake_up_interruptible(&priv->mainthread.waitq);
-               if ((adapter->connect_status == libertas_connected)) {
+                       wake_up_interruptible(&priv->waitq);
+               if ((adapter->connect_status == LIBERTAS_CONNECTED)) {
                        netif_wake_queue(dev);
                        netif_wake_queue(priv->mesh_dev);
                }
@@ -85,7 +94,7 @@ static void if_usb_write_bulk_callback(struct urb *urb)
  *  @param cardp       pointer usb_card_rec
  *  @return            N/A
  */
-void if_usb_free(struct usb_card_rec *cardp)
+static void if_usb_free(struct usb_card_rec *cardp)
 {
        lbs_deb_enter(LBS_DEB_USB);
 
@@ -118,26 +127,26 @@ static int if_usb_probe(struct usb_interface *intf,
        struct usb_host_interface *iface_desc;
        struct usb_endpoint_descriptor *endpoint;
        wlan_private *priv;
-       struct usb_card_rec *usb_cardp;
+       struct usb_card_rec *cardp;
        int i;
 
        udev = interface_to_usbdev(intf);
 
-       usb_cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
-       if (!usb_cardp) {
+       cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
+       if (!cardp) {
                lbs_pr_err("Out of memory allocating private data.\n");
                goto error;
        }
 
-       usb_cardp->udev = udev;
+       cardp->udev = udev;
        iface_desc = intf->cur_altsetting;
 
        lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
               " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
-              udev->descriptor.bcdUSB,
-              udev->descriptor.bDeviceClass,
-              udev->descriptor.bDeviceSubClass,
-              udev->descriptor.bDeviceProtocol);
+                    le16_to_cpu(udev->descriptor.bcdUSB),
+                    udev->descriptor.bDeviceClass,
+                    udev->descriptor.bDeviceSubClass,
+                    udev->descriptor.bDeviceProtocol);
 
        for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
                endpoint = &iface_desc->endpoint[i].desc;
@@ -146,19 +155,17 @@ static int if_usb_probe(struct usb_interface *intf,
                        USB_ENDPOINT_XFER_BULK)) {
                        /* we found a bulk in endpoint */
                        lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n",
-                              endpoint->wMaxPacketSize);
-                       if (!
-                           (usb_cardp->rx_urb =
-                            usb_alloc_urb(0, GFP_KERNEL))) {
+                                    le16_to_cpu(endpoint->wMaxPacketSize));
+                       if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
                                lbs_deb_usbd(&udev->dev,
                                       "Rx URB allocation failed\n");
                                goto dealloc;
                        }
-                       usb_cardp->rx_urb_recall = 0;
+                       cardp->rx_urb_recall = 0;
 
-                       usb_cardp->bulk_in_size =
-                           endpoint->wMaxPacketSize;
-                       usb_cardp->bulk_in_endpointAddr =
+                       cardp->bulk_in_size =
+                               le16_to_cpu(endpoint->wMaxPacketSize);
+                       cardp->bulk_in_endpointAddr =
                            (endpoint->
                             bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
                        lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n",
@@ -171,28 +178,26 @@ static int if_usb_probe(struct usb_interface *intf,
                    && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
                        USB_ENDPOINT_XFER_BULK)) {
                        /* We found bulk out endpoint */
-                       if (!
-                           (usb_cardp->tx_urb =
-                            usb_alloc_urb(0, GFP_KERNEL))) {
+                       if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
                                lbs_deb_usbd(&udev->dev,
                                       "Tx URB allocation failed\n");
                                goto dealloc;
                        }
 
-                       usb_cardp->bulk_out_size =
-                           endpoint->wMaxPacketSize;
+                       cardp->bulk_out_size =
+                               le16_to_cpu(endpoint->wMaxPacketSize);
                        lbs_deb_usbd(&udev->dev,
-                                   "Bulk out size is %d\n",
-                                   endpoint->wMaxPacketSize);
-                       usb_cardp->bulk_out_endpointAddr =
+                                    "Bulk out size is %d\n",
+                                    le16_to_cpu(endpoint->wMaxPacketSize));
+                       cardp->bulk_out_endpointAddr =
                            endpoint->bEndpointAddress;
                        lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n",
                                    endpoint->bEndpointAddress);
-                       usb_cardp->bulk_out_buffer =
+                       cardp->bulk_out_buffer =
                            kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
                                    GFP_KERNEL);
 
-                       if (!usb_cardp->bulk_out_buffer) {
+                       if (!cardp->bulk_out_buffer) {
                                lbs_deb_usbd(&udev->dev,
                                       "Could not allocate buffer\n");
                                goto dealloc;
@@ -200,15 +205,10 @@ static int if_usb_probe(struct usb_interface *intf,
                }
        }
 
-
-       /* At this point libertas_add_card() will be called.  Don't worry
-        * about keeping pwlanpriv around since it will be set on our
-        * usb device data in -> add() -> hw_register_dev() -> if_usb_register_dev.
-        */
-       if (!(priv = libertas_add_card(usb_cardp)))
+       if (!(priv = libertas_add_card(cardp, &udev->dev)))
                goto dealloc;
 
-       if (libertas_add_mesh(priv))
+       if (libertas_add_mesh(priv, &udev->dev))
                goto err_add_mesh;
 
        priv->hw_register_dev = if_usb_register_dev;
@@ -218,32 +218,23 @@ static int if_usb_probe(struct usb_interface *intf,
        priv->hw_get_int_status = if_usb_get_int_status;
        priv->hw_read_event_cause = if_usb_read_event_cause;
 
-       if (libertas_activate_card(priv, libertas_fw_name))
+       if (libertas_activate_card(priv))
                goto err_activate_card;
 
-       if (libertas_found < MAX_DEVS) {
-               libertas_devs[libertas_found] = priv->wlan_dev.netdev;
-               libertas_found++;
-       }
+       list_add_tail(&cardp->list, &usb_devices);
 
        usb_get_dev(udev);
-       usb_set_intfdata(intf, usb_cardp);
+       usb_set_intfdata(intf, cardp);
 
-       /*
-        * return card structure, which can be got back in the
-        * diconnect function as the ptr
-        * argument.
-        */
        return 0;
 
 err_activate_card:
-       unregister_netdev(priv->mesh_dev);
-       free_netdev(priv->mesh_dev);
+       libertas_remove_mesh(priv);
 err_add_mesh:
-       free_netdev(priv->wlan_dev.netdev);
+       free_netdev(priv->dev);
        kfree(priv->adapter);
 dealloc:
-       if_usb_free(usb_cardp);
+       if_usb_free(cardp);
 
 error:
        return -ENOMEM;
@@ -251,8 +242,7 @@ error:
 
 /**
  *  @brief free resource and cleanup
- *  @param udev                pointer to usb_device
- *  @param ptr         pointer to usb_cardp
+ *  @param intf                USB interface structure
  *  @return            N/A
  */
 static void if_usb_disconnect(struct usb_interface *intf)
@@ -260,7 +250,6 @@ static void if_usb_disconnect(struct usb_interface *intf)
        struct usb_card_rec *cardp = usb_get_intfdata(intf);
        wlan_private *priv = (wlan_private *) cardp->priv;
        wlan_adapter *adapter = NULL;
-       int i;
 
        adapter = priv->adapter;
 
@@ -269,13 +258,7 @@ static void if_usb_disconnect(struct usb_interface *intf)
         */
        adapter->surpriseremoved = 1;
 
-       for (i = 0; i<libertas_found; i++) {
-               if (libertas_devs[i]==priv->wlan_dev.netdev) {
-                       libertas_devs[i] = libertas_devs[--libertas_found];
-                       libertas_devs[libertas_found] = NULL ;
-                       break;
-               }
-       }
+       list_del(&cardp->list);
 
        /* card is removed and we can call wlan_remove_card */
        lbs_deb_usbd(&cardp->udev->dev, "call remove card\n");
@@ -298,7 +281,7 @@ static void if_usb_disconnect(struct usb_interface *intf)
  */
 static int if_prog_firmware(wlan_private * priv)
 {
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
        struct FWData *fwdata;
        struct fwheader *fwheader;
        u8 *firmware = priv->firmware->data;
@@ -328,22 +311,22 @@ static int if_prog_firmware(wlan_private * priv)
 
        /* lbs_deb_usbd(&cardp->udev->dev,"Copy Data\n"); */
        memcpy(fwdata->data, &firmware[cardp->totalbytes],
-              fwdata->fwheader.datalength);
+              le32_to_cpu(fwdata->fwheader.datalength));
 
        /*
        lbs_deb_usbd(&cardp->udev->dev,
-                   "Data length = %d\n", fwdata->fwheader.datalength);
+                   "Data length = %d\n", le32_to_cpu(fwdata->fwheader.datalength));
        */
 
        cardp->fwseqnum = cardp->fwseqnum + 1;
 
-       fwdata->seqnum = cardp->fwseqnum;
-       cardp->lastseqnum = fwdata->seqnum;
-       cardp->totalbytes += fwdata->fwheader.datalength;
+       fwdata->seqnum = cpu_to_le32(cardp->fwseqnum);
+       cardp->lastseqnum = cardp->fwseqnum;
+       cardp->totalbytes += le32_to_cpu(fwdata->fwheader.datalength);
 
-       if (fwheader->dnldcmd == FW_HAS_DATA_TO_RECV) {
+       if (fwheader->dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
                /*
-               lbs_deb_usbd(&cardp->udev->dev, "There is data to follow\n");
+               lbs_deb_usbd(&cardp->udev->dev, "There are data to follow\n");
                lbs_deb_usbd(&cardp->udev->dev,
                            "seqnum = %d totalbytes = %d\n", cardp->fwseqnum,
                            cardp->totalbytes);
@@ -351,7 +334,7 @@ static int if_prog_firmware(wlan_private * priv)
                memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
                usb_tx_block(priv, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
 
-       } else if (fwdata->fwheader.dnldcmd == FW_HAS_LAST_BLOCK) {
+       } else if (fwdata->fwheader.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
                /*
                lbs_deb_usbd(&cardp->udev->dev,
                            "Host has finished FW downloading\n");
@@ -374,17 +357,20 @@ static int if_prog_firmware(wlan_private * priv)
        return 0;
 }
 
-static int libertas_do_reset(wlan_private *priv)
+static int if_usb_reset_device(wlan_private *priv)
 {
        int ret;
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
 
        lbs_deb_enter(LBS_DEB_USB);
 
+       /* Try a USB port reset first, if that fails send the reset
+        * command to the firmware.
+        */
        ret = usb_reset_device(cardp->udev);
        if (!ret) {
                msleep(10);
-               reset_device(priv);
+               ret = libertas_reset_device(priv);
                msleep(10);
        }
 
@@ -400,10 +386,10 @@ static int libertas_do_reset(wlan_private *priv)
  *  @param nb          data length
  *  @return            0 or -1
  */
-int usb_tx_block(wlan_private * priv, u8 * payload, u16 nb)
+static int usb_tx_block(wlan_private * priv, u8 * payload, u16 nb)
 {
        /* pointer to card structure */
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
        int ret = -1;
 
        /* check if device is removed */
@@ -436,7 +422,7 @@ static int __if_usb_submit_rx_urb(wlan_private * priv,
                                  void (*callbackfn)
                                  (struct urb *urb))
 {
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
        struct sk_buff *skb;
        struct read_cb_info *rinfo = &cardp->rinfo;
        int ret = -1;
@@ -487,7 +473,7 @@ static void if_usb_receive_fwload(struct urb *urb)
        struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
        wlan_private *priv = rinfo->priv;
        struct sk_buff *skb = rinfo->skb;
-       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->wlan_dev.card;
+       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
        struct fwsyncheader *syncfwheader;
        struct bootcmdrespStr bootcmdresp;
 
@@ -501,7 +487,7 @@ static void if_usb_receive_fwload(struct urb *urb)
        if (cardp->bootcmdresp == 0) {
                memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
                        sizeof(bootcmdresp));
-               if (cardp->udev->descriptor.bcdDevice < 0x3106) {
+               if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
                        kfree_skb(skb);
                        if_usb_submit_rx_urb_fwload(priv);
                        cardp->bootcmdresp = 1;
@@ -509,10 +495,10 @@ static void if_usb_receive_fwload(struct urb *urb)
                                    "Received valid boot command response\n");
                        return;
                }
-               if (bootcmdresp.u32magicnumber != BOOT_CMD_MAGIC_NUMBER) {
+               if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
                        lbs_pr_info(
                                "boot cmd response wrong magic number (0x%x)\n",
-                               bootcmdresp.u32magicnumber);
+                               le32_to_cpu(bootcmdresp.u32magicnumber));
                } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
                        lbs_pr_info(
                                "boot cmd response cmd_tag error (%d)\n",
@@ -591,7 +577,7 @@ static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
        skb_put(skb, recvlength);
        skb_pull(skb, MESSAGE_HEADER_LEN);
        libertas_process_rxed_packet(priv, skb);
-       priv->wlan_dev.upld_len = (recvlength - MESSAGE_HEADER_LEN);
+       priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
 }
 
 static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
@@ -614,18 +600,18 @@ static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
        /* take care of cur_cmd = NULL case by reading the
         * data to clear the interrupt */
        if (!priv->adapter->cur_cmd) {
-               cmdbuf = priv->wlan_dev.upld_buf;
-               priv->adapter->hisregcpy &= ~his_cmdupldrdy;
+               cmdbuf = priv->upld_buf;
+               priv->adapter->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
        } else
                cmdbuf = priv->adapter->cur_cmd->bufvirtualaddr;
 
-       cardp->usb_int_cause |= his_cmdupldrdy;
-       priv->wlan_dev.upld_len = (recvlength - MESSAGE_HEADER_LEN);
+       cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
+       priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
        memcpy(cmdbuf, recvbuff + MESSAGE_HEADER_LEN,
-              priv->wlan_dev.upld_len);
+              priv->upld_len);
 
        kfree_skb(skb);
-       libertas_interrupt(priv->wlan_dev.netdev);
+       libertas_interrupt(priv->dev);
        spin_unlock(&priv->adapter->driver_lock);
 
        lbs_deb_usbd(&cardp->udev->dev,
@@ -646,7 +632,7 @@ static void if_usb_receive(struct urb *urb)
        struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
        wlan_private *priv = rinfo->priv;
        struct sk_buff *skb = rinfo->skb;
-       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->wlan_dev.card;
+       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
 
        int recvlength = urb->actual_length;
        u8 *recvbuff = NULL;
@@ -687,7 +673,7 @@ static void if_usb_receive(struct urb *urb)
        case CMD_TYPE_INDICATION:
                /* Event cause handling */
                spin_lock(&priv->adapter->driver_lock);
-               cardp->usb_event_cause = *(u32 *) (recvbuff + MESSAGE_HEADER_LEN);
+               cardp->usb_event_cause = le32_to_cpu(*(__le32 *) (recvbuff + MESSAGE_HEADER_LEN));
                lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
                            cardp->usb_event_cause);
                if (cardp->usb_event_cause & 0xffff0000) {
@@ -695,10 +681,10 @@ static void if_usb_receive(struct urb *urb)
                        spin_unlock(&priv->adapter->driver_lock);
                        break;
                }
-               cardp->usb_event_cause = le32_to_cpu(cardp->usb_event_cause) << 3;
-               cardp->usb_int_cause |= his_cardevent;
+               cardp->usb_event_cause <<= 3;
+               cardp->usb_int_cause |= MRVDRV_CARDEVENT;
                kfree_skb(skb);
-               libertas_interrupt(priv->wlan_dev.netdev);
+               libertas_interrupt(priv->dev);
                spin_unlock(&priv->adapter->driver_lock);
                goto rx_exit;
        default:
@@ -724,20 +710,20 @@ static int if_usb_host_to_card(wlan_private * priv, u8 type, u8 * payload, u16 n
 {
        int ret = -1;
        u32 tmp;
-       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->wlan_dev.card;
+       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
 
        lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
        lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
 
        if (type == MVMS_CMD) {
                tmp = cpu_to_le32(CMD_TYPE_REQUEST);
-               priv->wlan_dev.dnld_sent = DNLD_CMD_SENT;
+               priv->dnld_sent = DNLD_CMD_SENT;
                memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
                       MESSAGE_HEADER_LEN);
 
        } else {
                tmp = cpu_to_le32(CMD_TYPE_DATA);
-               priv->wlan_dev.dnld_sent = DNLD_DATA_SENT;
+               priv->dnld_sent = DNLD_DATA_SENT;
                memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
                       MESSAGE_HEADER_LEN);
        }
@@ -753,7 +739,7 @@ static int if_usb_host_to_card(wlan_private * priv, u8 type, u8 * payload, u16 n
 /* called with adapter->driver_lock held */
 static int if_usb_get_int_status(wlan_private * priv, u8 * ireg)
 {
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
 
        *ireg = cardp->usb_int_cause;
        cardp->usb_int_cause = 0;
@@ -765,26 +751,13 @@ static int if_usb_get_int_status(wlan_private * priv, u8 * ireg)
 
 static int if_usb_read_event_cause(wlan_private * priv)
 {
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
        priv->adapter->eventcause = cardp->usb_event_cause;
        /* Re-submit rx urb here to avoid event lost issue */
        if_usb_submit_rx_urb(priv);
        return 0;
 }
 
-static int reset_device(wlan_private *priv)
-{
-       int ret;
-
-       lbs_deb_enter(LBS_DEB_USB);
-       ret = libertas_prepare_and_send_command(priv, cmd_802_11_reset,
-                                   cmd_act_halt, 0, 0, NULL);
-       msleep_interruptible(10);
-
-       lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
-       return ret;
-}
-
 static int if_usb_unregister_dev(wlan_private * priv)
 {
        int ret = 0;
@@ -794,7 +767,7 @@ static int if_usb_unregister_dev(wlan_private * priv)
         * again.
         */
        if (priv)
-               reset_device(priv);
+               libertas_reset_device(priv);
 
        return ret;
 }
@@ -807,17 +780,14 @@ static int if_usb_unregister_dev(wlan_private * priv)
  */
 static int if_usb_register_dev(wlan_private * priv)
 {
-       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->wlan_dev.card;
+       struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
 
        lbs_deb_enter(LBS_DEB_USB);
 
        cardp->priv = priv;
-       cardp->eth_dev = priv->wlan_dev.netdev;
+       cardp->eth_dev = priv->dev;
        priv->hotplug_device = &(cardp->udev->dev);
 
-       SET_NETDEV_DEV(cardp->eth_dev, &(cardp->udev->dev));
-       SET_NETDEV_DEV(priv->mesh_dev, &(cardp->udev->dev));
-
        lbs_deb_usbd(&cardp->udev->dev, "udev pointer is at %p\n",
                    cardp->udev);
 
@@ -825,11 +795,35 @@ static int if_usb_register_dev(wlan_private * priv)
        return 0;
 }
 
+/**
+ *  @brief This function issues Boot command to the Boot2 code
+ *  @param ivalue   1:Boot from FW by USB-Download
+ *                  2:Boot from FW in EEPROM
+ *  @return            0
+ */
+static int if_usb_issue_boot_command(wlan_private *priv, int ivalue)
+{
+       struct usb_card_rec     *cardp = priv->card;
+       struct bootcmdstr       sbootcmd;
+       int i;
+
+       /* Prepare command */
+       sbootcmd.u32magicnumber = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
+       sbootcmd.u8cmd_tag = ivalue;
+       for (i=0; i<11; i++)
+               sbootcmd.au8dumy[i]=0x00;
+       memcpy(cardp->bulk_out_buffer, &sbootcmd, sizeof(struct bootcmdstr));
+
+       /* Issue command */
+       usb_tx_block(priv, cardp->bulk_out_buffer, sizeof(struct bootcmdstr));
 
+       return 0;
+}
 
-static int if_usb_prog_firmware(wlan_private * priv)
+
+static int if_usb_do_prog_firmware(wlan_private * priv)
 {
-       struct usb_card_rec *cardp = priv->wlan_dev.card;
+       struct usb_card_rec *cardp = priv->card;
        int i = 0;
        static int reset_count = 10;
        int ret = 0;
@@ -860,7 +854,7 @@ restart:
 
        if (cardp->bootcmdresp == 0) {
                if (--reset_count >= 0) {
-                       libertas_do_reset(priv);
+                       if_usb_reset_device(priv);
                        goto restart;
                }
                return -1;
@@ -890,7 +884,7 @@ restart:
        if (!cardp->fwdnldover) {
                lbs_pr_info("failed to load fw, resetting device!\n");
                if (--reset_count >= 0) {
-                       libertas_do_reset(priv);
+                       if_usb_reset_device(priv);
                        goto restart;
                }
 
@@ -911,6 +905,80 @@ done:
        return ret;
 }
 
+/**
+ *  @brief This function checks the validity of Boot2/FW image.
+ *
+ *  @param data              pointer to image
+ *         len               image length
+ *  @return     0 or -1
+ */
+static int check_fwfile_format(u8 *data, u32 totlen)
+{
+       u32 bincmd, exit;
+       u32 blksize, offset, len;
+       int ret;
+
+       ret = 1;
+       exit = len = 0;
+
+       do {
+               struct fwheader *fwh = (void *)data;
+
+               bincmd = le32_to_cpu(fwh->dnldcmd);
+               blksize = le32_to_cpu(fwh->datalength);
+               switch (bincmd) {
+               case FW_HAS_DATA_TO_RECV:
+                       offset = sizeof(struct fwheader) + blksize;
+                       data += offset;
+                       len += offset;
+                       if (len >= totlen)
+                               exit = 1;
+                       break;
+               case FW_HAS_LAST_BLOCK:
+                       exit = 1;
+                       ret = 0;
+                       break;
+               default:
+                       exit = 1;
+                       break;
+               }
+       } while (!exit);
+
+       if (ret)
+               lbs_pr_err("firmware file format check FAIL\n");
+       else
+               lbs_deb_fw("firmware file format check PASS\n");
+
+       return ret;
+}
+
+
+static int if_usb_prog_firmware(wlan_private *priv)
+{
+       int ret = -1;
+
+       lbs_deb_enter(LBS_DEB_FW);
+
+       if ((ret = request_firmware(&priv->firmware, libertas_fw_name,
+                                   priv->hotplug_device)) < 0) {
+               lbs_pr_err("request_firmware() failed with %#x\n", ret);
+               lbs_pr_err("firmware %s not found\n", libertas_fw_name);
+               goto done;
+       }
+
+       if (check_fwfile_format(priv->firmware->data, priv->firmware->size)) {
+               release_firmware(priv->firmware);
+               goto done;
+       }
+
+       ret = if_usb_do_prog_firmware(priv);
+
+       release_firmware(priv->firmware);
+done:
+       return ret;
+}
+
+
 #ifdef CONFIG_PM
 static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
 {
@@ -922,6 +990,19 @@ static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
        if (priv->adapter->psstate != PS_STATE_FULL_POWER)
                return -1;
 
+       if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
+               /* Mesh autostart must be activated while sleeping
+                * On resume it will go back to the current state
+                */
+               struct cmd_ds_mesh_access mesh_access;
+               memset(&mesh_access, 0, sizeof(mesh_access));
+               mesh_access.data[0] = cpu_to_le32(1);
+               libertas_prepare_and_send_command(priv,
+                               CMD_MESH_ACCESS,
+                               CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
+                               CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
+       }
+
        netif_device_detach(cardp->eth_dev);
        netif_device_detach(priv->mesh_dev);
 
@@ -949,6 +1030,19 @@ static int if_usb_resume(struct usb_interface *intf)
        netif_device_attach(cardp->eth_dev);
        netif_device_attach(priv->mesh_dev);
 
+       if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
+               /* Mesh autostart was activated while sleeping
+                * Disable it if appropriate
+                */
+               struct cmd_ds_mesh_access mesh_access;
+               memset(&mesh_access, 0, sizeof(mesh_access));
+               mesh_access.data[0] = cpu_to_le32(0);
+               libertas_prepare_and_send_command(priv,
+                               CMD_MESH_ACCESS,
+                               CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
+                               CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
+       }
+
        lbs_deb_leave(LBS_DEB_USB);
        return 0;
 }
@@ -988,14 +1082,12 @@ static int if_usb_init_module(void)
 
 static void if_usb_exit_module(void)
 {
-       int i;
+       struct usb_card_rec *cardp, *cardp_temp;
 
        lbs_deb_enter(LBS_DEB_MAIN);
 
-       for (i = 0; i<libertas_found; i++) {
-               wlan_private *priv = libertas_devs[i]->priv;
-               reset_device(priv);
-       }
+       list_for_each_entry_safe(cardp, cardp_temp, &usb_devices, list)
+               libertas_reset_device((wlan_private *) cardp->priv);
 
        /* API unregisters the driver from USB subsystem */
        usb_deregister(&if_usb_driver);