Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file contains functions used in USB interface module. |
| 3 | */ |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 4 | |
| 5 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 6 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 7 | #include <linux/delay.h> |
Paul Gortmaker | ac5c24e9 | 2011-08-30 14:18:44 -0400 | [diff] [blame] | 8 | #include <linux/module.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 9 | #include <linux/firmware.h> |
| 10 | #include <linux/netdevice.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 12 | #include <linux/usb.h> |
Andres Salomon | 3bf9428 | 2012-07-11 01:16:29 -0700 | [diff] [blame] | 13 | #include <linux/olpc-ec.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 14 | |
David Woodhouse | b77ec4c | 2008-05-20 16:48:52 +0100 | [diff] [blame] | 15 | #ifdef CONFIG_OLPC |
| 16 | #include <asm/olpc.h> |
| 17 | #endif |
| 18 | |
Holger Schurig | ec3eef2 | 2007-05-25 12:49:10 -0400 | [diff] [blame] | 19 | #define DRV_NAME "usb8xxx" |
| 20 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 21 | #include "host.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 22 | #include "decl.h" |
| 23 | #include "defs.h" |
| 24 | #include "dev.h" |
Dan Williams | 14e865b | 2007-12-10 15:11:23 -0500 | [diff] [blame] | 25 | #include "cmd.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 26 | #include "if_usb.h" |
| 27 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 28 | #define INSANEDEBUG 0 |
| 29 | #define lbs_deb_usb2(...) do { if (INSANEDEBUG) lbs_deb_usbd(__VA_ARGS__); } while (0) |
| 30 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 31 | #define MESSAGE_HEADER_LEN 4 |
| 32 | |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 33 | MODULE_FIRMWARE("libertas/usb8388_v9.bin"); |
| 34 | MODULE_FIRMWARE("libertas/usb8388_v5.bin"); |
| 35 | MODULE_FIRMWARE("libertas/usb8388.bin"); |
| 36 | MODULE_FIRMWARE("libertas/usb8682.bin"); |
Ben Hutchings | a974a4b | 2009-11-07 22:00:03 +0000 | [diff] [blame] | 37 | MODULE_FIRMWARE("usb8388.bin"); |
| 38 | |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 39 | enum { |
| 40 | MODEL_UNKNOWN = 0x0, |
| 41 | MODEL_8388 = 0x1, |
| 42 | MODEL_8682 = 0x2 |
| 43 | }; |
| 44 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 45 | /* table of firmware file names */ |
| 46 | static const struct lbs_fw_table fw_table[] = { |
| 47 | { MODEL_8388, "libertas/usb8388_olpc.bin", NULL }, |
| 48 | { MODEL_8388, "libertas/usb8388_v9.bin", NULL }, |
| 49 | { MODEL_8388, "libertas/usb8388_v5.bin", NULL }, |
| 50 | { MODEL_8388, "libertas/usb8388.bin", NULL }, |
| 51 | { MODEL_8388, "usb8388.bin", NULL }, |
| 52 | { MODEL_8682, "libertas/usb8682.bin", NULL } |
| 53 | }; |
| 54 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 55 | static struct usb_device_id if_usb_table[] = { |
| 56 | /* Enter the device signature inside */ |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 57 | { USB_DEVICE(0x1286, 0x2001), .driver_info = MODEL_8388 }, |
| 58 | { USB_DEVICE(0x05a3, 0x8388), .driver_info = MODEL_8388 }, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 59 | {} /* Terminating entry */ |
| 60 | }; |
| 61 | |
| 62 | MODULE_DEVICE_TABLE(usb, if_usb_table); |
| 63 | |
| 64 | static void if_usb_receive(struct urb *urb); |
| 65 | static void if_usb_receive_fwload(struct urb *urb); |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 66 | static void if_usb_prog_firmware(struct lbs_private *priv, int ret, |
| 67 | const struct firmware *fw, |
| 68 | const struct firmware *unused); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 69 | static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type, |
| 70 | uint8_t *payload, uint16_t nb); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 71 | static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload, |
| 72 | uint16_t nb); |
| 73 | static void if_usb_free(struct if_usb_card *cardp); |
| 74 | static int if_usb_submit_rx_urb(struct if_usb_card *cardp); |
| 75 | static int if_usb_reset_device(struct if_usb_card *cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 76 | |
| 77 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 78 | * if_usb_write_bulk_callback - callback function to handle the status |
| 79 | * of the URB |
| 80 | * @urb: pointer to &urb structure |
| 81 | * returns: N/A |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 82 | */ |
| 83 | static void if_usb_write_bulk_callback(struct urb *urb) |
| 84 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 85 | struct if_usb_card *cardp = (struct if_usb_card *) urb->context; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 86 | |
| 87 | /* handle the transmission complete validations */ |
| 88 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 89 | if (urb->status == 0) { |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 90 | struct lbs_private *priv = cardp->priv; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 91 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 92 | lbs_deb_usb2(&urb->dev->dev, "URB status is successful\n"); |
| 93 | lbs_deb_usb2(&urb->dev->dev, "Actual length transmitted %d\n", |
| 94 | urb->actual_length); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 95 | |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 96 | /* Boot commands such as UPDATE_FW and UPDATE_BOOT2 are not |
| 97 | * passed up to the lbs level. |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 98 | */ |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 99 | if (priv && priv->dnld_sent != DNLD_BOOTCMD_SENT) |
David Woodhouse | e775ed7 | 2007-12-06 14:36:11 +0000 | [diff] [blame] | 100 | lbs_host_to_card_done(priv); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 101 | } else { |
| 102 | /* print the failure status number for debug */ |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 103 | pr_info("URB in failure status: %d\n", urb->status); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 104 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 108 | * if_usb_free - free tx/rx urb, skb and rx buffer |
| 109 | * @cardp: pointer to &if_usb_card |
| 110 | * returns: N/A |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 111 | */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 112 | static void if_usb_free(struct if_usb_card *cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 113 | { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 114 | lbs_deb_enter(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 115 | |
| 116 | /* Unlink tx & rx urb */ |
| 117 | usb_kill_urb(cardp->tx_urb); |
| 118 | usb_kill_urb(cardp->rx_urb); |
| 119 | |
| 120 | usb_free_urb(cardp->tx_urb); |
| 121 | cardp->tx_urb = NULL; |
| 122 | |
| 123 | usb_free_urb(cardp->rx_urb); |
| 124 | cardp->rx_urb = NULL; |
| 125 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 126 | kfree(cardp->ep_out_buf); |
| 127 | cardp->ep_out_buf = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 128 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 129 | lbs_deb_leave(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 130 | } |
| 131 | |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 132 | static void if_usb_setup_firmware(struct lbs_private *priv) |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 133 | { |
Holger Schurig | 4365929 | 2008-01-16 15:52:58 +0100 | [diff] [blame] | 134 | struct if_usb_card *cardp = priv->card; |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 135 | struct cmd_ds_set_boot2_ver b2_cmd; |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 136 | struct cmd_ds_802_11_fw_wake_method wake_method; |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 137 | |
David Woodhouse | 9fae899 | 2007-12-15 03:46:44 -0500 | [diff] [blame] | 138 | b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd)); |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 139 | b2_cmd.action = 0; |
Holger Schurig | 4365929 | 2008-01-16 15:52:58 +0100 | [diff] [blame] | 140 | b2_cmd.version = cardp->boot2_version; |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 141 | |
David Woodhouse | b23b206 | 2007-12-15 01:22:09 -0500 | [diff] [blame] | 142 | if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd)) |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 143 | lbs_deb_usb("Setting boot2 version failed\n"); |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 144 | |
| 145 | priv->wol_gpio = 2; /* Wake via GPIO2... */ |
| 146 | priv->wol_gap = 20; /* ... after 20ms */ |
Anna Neal | 582c1b5 | 2008-10-20 16:46:56 -0700 | [diff] [blame] | 147 | lbs_host_sleep_cfg(priv, EHS_WAKE_ON_UNICAST_DATA, |
| 148 | (struct wol_config *) NULL); |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 149 | |
| 150 | wake_method.hdr.size = cpu_to_le16(sizeof(wake_method)); |
| 151 | wake_method.action = cpu_to_le16(CMD_ACT_GET); |
| 152 | if (lbs_cmd_with_response(priv, CMD_802_11_FW_WAKE_METHOD, &wake_method)) { |
Joe Perches | f3a57fd | 2011-05-02 16:49:15 -0700 | [diff] [blame] | 153 | netdev_info(priv->dev, "Firmware does not seem to support PS mode\n"); |
Andrey Yurovsky | e0d6133 | 2009-06-16 13:20:01 -0700 | [diff] [blame] | 154 | priv->fwcapinfo &= ~FW_CAPINFO_PS; |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 155 | } else { |
| 156 | if (le16_to_cpu(wake_method.method) == CMD_WAKE_METHOD_COMMAND_INT) { |
| 157 | lbs_deb_usb("Firmware seems to support PS with wake-via-command\n"); |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 158 | } else { |
| 159 | /* The versions which boot up this way don't seem to |
| 160 | work even if we set it to the command interrupt */ |
Andrey Yurovsky | e0d6133 | 2009-06-16 13:20:01 -0700 | [diff] [blame] | 161 | priv->fwcapinfo &= ~FW_CAPINFO_PS; |
Joe Perches | f3a57fd | 2011-05-02 16:49:15 -0700 | [diff] [blame] | 162 | netdev_info(priv->dev, |
| 163 | "Firmware doesn't wake via command interrupt; disabling PS mode\n"); |
David Woodhouse | 4694961 | 2007-12-17 14:42:33 -0500 | [diff] [blame] | 164 | } |
| 165 | } |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 166 | } |
| 167 | |
David Woodhouse | 2fd6cfe | 2007-12-11 17:44:10 -0500 | [diff] [blame] | 168 | static void if_usb_fw_timeo(unsigned long priv) |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 169 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 170 | struct if_usb_card *cardp = (void *)priv; |
David Woodhouse | 04c80f1 | 2007-12-06 12:51:00 +0000 | [diff] [blame] | 171 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 172 | if (cardp->fwdnldover) { |
| 173 | lbs_deb_usb("Download complete, no event. Assuming success\n"); |
| 174 | } else { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 175 | pr_err("Download timed out\n"); |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 176 | cardp->surprise_removed = 1; |
| 177 | } |
| 178 | wake_up(&cardp->fw_wq); |
| 179 | } |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 180 | |
David Woodhouse | b77ec4c | 2008-05-20 16:48:52 +0100 | [diff] [blame] | 181 | #ifdef CONFIG_OLPC |
| 182 | static void if_usb_reset_olpc_card(struct lbs_private *priv) |
| 183 | { |
| 184 | printk(KERN_CRIT "Resetting OLPC wireless via EC...\n"); |
| 185 | olpc_ec_cmd(0x25, NULL, 0, NULL, 0); |
| 186 | } |
| 187 | #endif |
| 188 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 189 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 190 | * if_usb_probe - sets the configuration values |
| 191 | * @intf: &usb_interface pointer |
| 192 | * @id: pointer to usb_device_id |
| 193 | * returns: 0 on success, error code on failure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 194 | */ |
| 195 | static int if_usb_probe(struct usb_interface *intf, |
| 196 | const struct usb_device_id *id) |
| 197 | { |
| 198 | struct usb_device *udev; |
| 199 | struct usb_host_interface *iface_desc; |
| 200 | struct usb_endpoint_descriptor *endpoint; |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 201 | struct lbs_private *priv; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 202 | struct if_usb_card *cardp; |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 203 | int r = -ENOMEM; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 204 | int i; |
| 205 | |
| 206 | udev = interface_to_usbdev(intf); |
| 207 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 208 | cardp = kzalloc(sizeof(struct if_usb_card), GFP_KERNEL); |
Joe Perches | e404dec | 2012-01-29 12:56:23 +0000 | [diff] [blame] | 209 | if (!cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 210 | goto error; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 211 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 212 | setup_timer(&cardp->fw_timeout, if_usb_fw_timeo, (unsigned long)cardp); |
| 213 | init_waitqueue_head(&cardp->fw_wq); |
David Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 214 | |
Holger Schurig | 435a1ac | 2007-05-25 12:41:52 -0400 | [diff] [blame] | 215 | cardp->udev = udev; |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 216 | cardp->model = (uint32_t) id->driver_info; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 217 | iface_desc = intf->cur_altsetting; |
| 218 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 219 | lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X" |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 220 | " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n", |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 221 | le16_to_cpu(udev->descriptor.bcdUSB), |
| 222 | udev->descriptor.bDeviceClass, |
| 223 | udev->descriptor.bDeviceSubClass, |
| 224 | udev->descriptor.bDeviceProtocol); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 225 | |
| 226 | for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) { |
| 227 | endpoint = &iface_desc->endpoint[i].desc; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 228 | if (usb_endpoint_is_bulk_in(endpoint)) { |
| 229 | cardp->ep_in_size = le16_to_cpu(endpoint->wMaxPacketSize); |
| 230 | cardp->ep_in = usb_endpoint_num(endpoint); |
| 231 | |
| 232 | lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n", cardp->ep_in); |
| 233 | lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n", cardp->ep_in_size); |
| 234 | |
| 235 | } else if (usb_endpoint_is_bulk_out(endpoint)) { |
| 236 | cardp->ep_out_size = le16_to_cpu(endpoint->wMaxPacketSize); |
| 237 | cardp->ep_out = usb_endpoint_num(endpoint); |
| 238 | |
| 239 | lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n", cardp->ep_out); |
| 240 | lbs_deb_usbd(&udev->dev, "Bulk out size is %d\n", cardp->ep_out_size); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 241 | } |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 242 | } |
| 243 | if (!cardp->ep_out_size || !cardp->ep_in_size) { |
| 244 | lbs_deb_usbd(&udev->dev, "Endpoints not found\n"); |
| 245 | goto dealloc; |
| 246 | } |
| 247 | if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) { |
| 248 | lbs_deb_usbd(&udev->dev, "Rx URB allocation failed\n"); |
| 249 | goto dealloc; |
| 250 | } |
| 251 | if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) { |
| 252 | lbs_deb_usbd(&udev->dev, "Tx URB allocation failed\n"); |
| 253 | goto dealloc; |
| 254 | } |
| 255 | cardp->ep_out_buf = kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE, GFP_KERNEL); |
| 256 | if (!cardp->ep_out_buf) { |
| 257 | lbs_deb_usbd(&udev->dev, "Could not allocate buffer\n"); |
| 258 | goto dealloc; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 259 | } |
| 260 | |
Daniel Drake | 8e92f2a | 2011-07-21 20:43:44 +0100 | [diff] [blame] | 261 | if (!(priv = lbs_add_card(cardp, &intf->dev))) |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 262 | goto err_add_card; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 263 | |
| 264 | cardp->priv = priv; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 265 | |
Holger Schurig | 208fdd2 | 2007-05-25 12:17:06 -0400 | [diff] [blame] | 266 | priv->hw_host_to_card = if_usb_host_to_card; |
Amitkumar Karwar | 4912545 | 2009-09-30 20:04:38 -0700 | [diff] [blame] | 267 | priv->enter_deep_sleep = NULL; |
| 268 | priv->exit_deep_sleep = NULL; |
| 269 | priv->reset_deep_sleep_wakeup = NULL; |
David Woodhouse | b77ec4c | 2008-05-20 16:48:52 +0100 | [diff] [blame] | 270 | #ifdef CONFIG_OLPC |
| 271 | if (machine_is_olpc()) |
| 272 | priv->reset_card = if_usb_reset_olpc_card; |
| 273 | #endif |
| 274 | |
Holger Schurig | 4365929 | 2008-01-16 15:52:58 +0100 | [diff] [blame] | 275 | cardp->boot2_version = udev->descriptor.bcdDevice; |
Holger Schurig | 208fdd2 | 2007-05-25 12:17:06 -0400 | [diff] [blame] | 276 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 277 | usb_get_dev(udev); |
Holger Schurig | 435a1ac | 2007-05-25 12:41:52 -0400 | [diff] [blame] | 278 | usb_set_intfdata(intf, cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 279 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 280 | r = lbs_get_firmware_async(priv, &udev->dev, cardp->model, |
| 281 | fw_table, if_usb_prog_firmware); |
| 282 | if (r) |
| 283 | goto err_get_fw; |
Deepak Saxena | ae63a33 | 2010-10-31 13:40:33 +0000 | [diff] [blame] | 284 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 285 | return 0; |
| 286 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 287 | err_get_fw: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 288 | lbs_remove_card(priv); |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 289 | err_add_card: |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 290 | if_usb_reset_device(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 291 | dealloc: |
Holger Schurig | 435a1ac | 2007-05-25 12:41:52 -0400 | [diff] [blame] | 292 | if_usb_free(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 293 | |
| 294 | error: |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 295 | return r; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 299 | * if_usb_disconnect - free resource and cleanup |
| 300 | * @intf: USB interface structure |
| 301 | * returns: N/A |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 302 | */ |
| 303 | static void if_usb_disconnect(struct usb_interface *intf) |
| 304 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 305 | struct if_usb_card *cardp = usb_get_intfdata(intf); |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 306 | struct lbs_private *priv = cardp->priv; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 307 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 308 | lbs_deb_enter(LBS_DEB_MAIN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 309 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 310 | cardp->surprise_removed = 1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 311 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 312 | if (priv) { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 313 | lbs_stop_card(priv); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 314 | lbs_remove_card(priv); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 315 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 316 | |
| 317 | /* Unlink and free urb */ |
| 318 | if_usb_free(cardp); |
| 319 | |
| 320 | usb_set_intfdata(intf, NULL); |
| 321 | usb_put_dev(interface_to_usbdev(intf)); |
| 322 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 323 | lbs_deb_leave(LBS_DEB_MAIN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 327 | * if_usb_send_fw_pkt - download FW |
| 328 | * @cardp: pointer to &struct if_usb_card |
| 329 | * returns: 0 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 330 | */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 331 | static int if_usb_send_fw_pkt(struct if_usb_card *cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 332 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 333 | struct fwdata *fwdata = cardp->ep_out_buf; |
David Woodhouse | 6dfff89 | 2008-05-23 18:37:51 +0100 | [diff] [blame] | 334 | const uint8_t *firmware = cardp->fw->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 335 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 336 | /* If we got a CRC failure on the last block, back |
| 337 | up and retry it */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 338 | if (!cardp->CRC_OK) { |
| 339 | cardp->totalbytes = cardp->fwlastblksent; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 340 | cardp->fwseqnum--; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 341 | } |
| 342 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 343 | lbs_deb_usb2(&cardp->udev->dev, "totalbytes = %d\n", |
| 344 | cardp->totalbytes); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 345 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 346 | /* struct fwdata (which we sent to the card) has an |
| 347 | extra __le32 field in between the header and the data, |
| 348 | which is not in the struct fwheader in the actual |
| 349 | firmware binary. Insert the seqnum in the middle... */ |
| 350 | memcpy(&fwdata->hdr, &firmware[cardp->totalbytes], |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 351 | sizeof(struct fwheader)); |
| 352 | |
| 353 | cardp->fwlastblksent = cardp->totalbytes; |
| 354 | cardp->totalbytes += sizeof(struct fwheader); |
| 355 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 356 | memcpy(fwdata->data, &firmware[cardp->totalbytes], |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 357 | le32_to_cpu(fwdata->hdr.datalength)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 358 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 359 | lbs_deb_usb2(&cardp->udev->dev, "Data length = %d\n", |
| 360 | le32_to_cpu(fwdata->hdr.datalength)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 361 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 362 | fwdata->seqnum = cpu_to_le32(++cardp->fwseqnum); |
| 363 | cardp->totalbytes += le32_to_cpu(fwdata->hdr.datalength); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 364 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 365 | usb_tx_block(cardp, cardp->ep_out_buf, sizeof(struct fwdata) + |
| 366 | le32_to_cpu(fwdata->hdr.datalength)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 367 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 368 | if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) { |
| 369 | lbs_deb_usb2(&cardp->udev->dev, "There are data to follow\n"); |
| 370 | lbs_deb_usb2(&cardp->udev->dev, "seqnum = %d totalbytes = %d\n", |
| 371 | cardp->fwseqnum, cardp->totalbytes); |
| 372 | } else if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) { |
| 373 | lbs_deb_usb2(&cardp->udev->dev, "Host has finished FW downloading\n"); |
| 374 | lbs_deb_usb2(&cardp->udev->dev, "Donwloading FW JUMP BLOCK\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 375 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 376 | cardp->fwfinalblk = 1; |
| 377 | } |
| 378 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 379 | lbs_deb_usb2(&cardp->udev->dev, "Firmware download done; size %d\n", |
| 380 | cardp->totalbytes); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 385 | static int if_usb_reset_device(struct if_usb_card *cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 386 | { |
Dan Williams | 0bb6408 | 2010-07-27 13:08:08 -0700 | [diff] [blame] | 387 | struct cmd_header *cmd = cardp->ep_out_buf + 4; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 388 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 389 | |
Holger Schurig | 3874d0f | 2007-05-25 12:01:42 -0400 | [diff] [blame] | 390 | lbs_deb_enter(LBS_DEB_USB); |
| 391 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 392 | *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST); |
David Woodhouse | 6d35fdf | 2007-12-08 23:49:06 +0000 | [diff] [blame] | 393 | |
| 394 | cmd->command = cpu_to_le16(CMD_802_11_RESET); |
Dan Williams | 0bb6408 | 2010-07-27 13:08:08 -0700 | [diff] [blame] | 395 | cmd->size = cpu_to_le16(sizeof(cmd)); |
David Woodhouse | 6d35fdf | 2007-12-08 23:49:06 +0000 | [diff] [blame] | 396 | cmd->result = cpu_to_le16(0); |
| 397 | cmd->seqnum = cpu_to_le16(0x5a5a); |
Dan Williams | f8e77ca | 2008-09-10 09:04:33 -0400 | [diff] [blame] | 398 | usb_tx_block(cardp, cardp->ep_out_buf, 4 + sizeof(struct cmd_header)); |
David Woodhouse | 6d35fdf | 2007-12-08 23:49:06 +0000 | [diff] [blame] | 399 | |
David Woodhouse | c8ba39d | 2007-12-10 18:53:34 -0500 | [diff] [blame] | 400 | msleep(100); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 401 | ret = usb_reset_device(cardp->udev); |
David Woodhouse | c8ba39d | 2007-12-10 18:53:34 -0500 | [diff] [blame] | 402 | msleep(100); |
Holger Schurig | 3874d0f | 2007-05-25 12:01:42 -0400 | [diff] [blame] | 403 | |
David Woodhouse | b77ec4c | 2008-05-20 16:48:52 +0100 | [diff] [blame] | 404 | #ifdef CONFIG_OLPC |
| 405 | if (ret && machine_is_olpc()) |
| 406 | if_usb_reset_olpc_card(NULL); |
| 407 | #endif |
| 408 | |
Holger Schurig | 3874d0f | 2007-05-25 12:01:42 -0400 | [diff] [blame] | 409 | lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret); |
| 410 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 411 | return ret; |
| 412 | } |
| 413 | |
| 414 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 415 | * usb_tx_block - transfer the data to the device |
| 416 | * @cardp: pointer to &struct if_usb_card |
| 417 | * @payload: pointer to payload data |
| 418 | * @nb: data length |
| 419 | * returns: 0 for success or negative error code |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 420 | */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 421 | static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload, uint16_t nb) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 422 | { |
Paul Fox | 4f329c0 | 2010-10-13 20:14:56 +0100 | [diff] [blame] | 423 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 424 | |
| 425 | /* check if device is removed */ |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 426 | if (cardp->surprise_removed) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 427 | lbs_deb_usbd(&cardp->udev->dev, "Device removed\n"); |
Paul Fox | 4f329c0 | 2010-10-13 20:14:56 +0100 | [diff] [blame] | 428 | ret = -ENODEV; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 429 | goto tx_ret; |
| 430 | } |
| 431 | |
| 432 | usb_fill_bulk_urb(cardp->tx_urb, cardp->udev, |
| 433 | usb_sndbulkpipe(cardp->udev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 434 | cardp->ep_out), |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 435 | payload, nb, if_usb_write_bulk_callback, cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 436 | |
| 437 | cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET; |
| 438 | |
| 439 | if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) { |
David Woodhouse | 0856e68 | 2007-12-07 15:12:26 +0000 | [diff] [blame] | 440 | lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 441 | } else { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 442 | lbs_deb_usb2(&cardp->udev->dev, "usb_submit_urb success\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 443 | ret = 0; |
| 444 | } |
| 445 | |
| 446 | tx_ret: |
| 447 | return ret; |
| 448 | } |
| 449 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 450 | static int __if_usb_submit_rx_urb(struct if_usb_card *cardp, |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 451 | void (*callbackfn)(struct urb *urb)) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 452 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 453 | struct sk_buff *skb; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 454 | int ret = -1; |
| 455 | |
| 456 | if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 457 | pr_err("No free skb\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 458 | goto rx_ret; |
| 459 | } |
| 460 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 461 | cardp->rx_skb = skb; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 462 | |
| 463 | /* Fill the receive configuration URB and initialise the Rx call back */ |
| 464 | usb_fill_bulk_urb(cardp->rx_urb, cardp->udev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 465 | usb_rcvbulkpipe(cardp->udev, cardp->ep_in), |
David Woodhouse | e9024a0 | 2009-10-30 17:45:14 +0000 | [diff] [blame] | 466 | skb->data + IPFIELD_ALIGN_OFFSET, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 467 | MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 468 | cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 469 | |
| 470 | cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET; |
| 471 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 472 | lbs_deb_usb2(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 473 | if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) { |
David Woodhouse | 0856e68 | 2007-12-07 15:12:26 +0000 | [diff] [blame] | 474 | lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret); |
David Woodhouse | 77d8cf2 | 2007-11-28 16:20:51 +0000 | [diff] [blame] | 475 | kfree_skb(skb); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 476 | cardp->rx_skb = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 477 | ret = -1; |
| 478 | } else { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 479 | lbs_deb_usb2(&cardp->udev->dev, "Submit Rx URB success\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 480 | ret = 0; |
| 481 | } |
| 482 | |
| 483 | rx_ret: |
| 484 | return ret; |
| 485 | } |
| 486 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 487 | static int if_usb_submit_rx_urb_fwload(struct if_usb_card *cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 488 | { |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 489 | return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 490 | } |
| 491 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 492 | static int if_usb_submit_rx_urb(struct if_usb_card *cardp) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 493 | { |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 494 | return __if_usb_submit_rx_urb(cardp, &if_usb_receive); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | static void if_usb_receive_fwload(struct urb *urb) |
| 498 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 499 | struct if_usb_card *cardp = urb->context; |
| 500 | struct sk_buff *skb = cardp->rx_skb; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 501 | struct fwsyncheader *syncfwheader; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 502 | struct bootcmdresp bootcmdresp; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 503 | |
| 504 | if (urb->status) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 505 | lbs_deb_usbd(&cardp->udev->dev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 506 | "URB status is failed during fw load\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 507 | kfree_skb(skb); |
| 508 | return; |
| 509 | } |
| 510 | |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 511 | if (cardp->fwdnldover) { |
| 512 | __le32 *tmp = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET); |
| 513 | |
| 514 | if (tmp[0] == cpu_to_le32(CMD_TYPE_INDICATION) && |
| 515 | tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY)) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 516 | pr_info("Firmware ready event received\n"); |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 517 | wake_up(&cardp->fw_wq); |
| 518 | } else { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 519 | lbs_deb_usb("Waiting for confirmation; got %x %x\n", |
| 520 | le32_to_cpu(tmp[0]), le32_to_cpu(tmp[1])); |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 521 | if_usb_submit_rx_urb_fwload(cardp); |
| 522 | } |
| 523 | kfree_skb(skb); |
| 524 | return; |
| 525 | } |
David Woodhouse | c8ba39d | 2007-12-10 18:53:34 -0500 | [diff] [blame] | 526 | if (cardp->bootcmdresp <= 0) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 527 | memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET, |
| 528 | sizeof(bootcmdresp)); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 529 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 530 | if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 531 | kfree_skb(skb); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 532 | if_usb_submit_rx_urb_fwload(cardp); |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 533 | cardp->bootcmdresp = BOOT_CMD_RESP_OK; |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 534 | lbs_deb_usbd(&cardp->udev->dev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 535 | "Received valid boot command response\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 536 | return; |
| 537 | } |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 538 | if (bootcmdresp.magic != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) { |
| 539 | if (bootcmdresp.magic == cpu_to_le32(CMD_TYPE_REQUEST) || |
| 540 | bootcmdresp.magic == cpu_to_le32(CMD_TYPE_DATA) || |
| 541 | bootcmdresp.magic == cpu_to_le32(CMD_TYPE_INDICATION)) { |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 542 | if (!cardp->bootcmdresp) |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 543 | pr_info("Firmware already seems alive; resetting\n"); |
David Woodhouse | 6d35fdf | 2007-12-08 23:49:06 +0000 | [diff] [blame] | 544 | cardp->bootcmdresp = -1; |
| 545 | } else { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 546 | pr_info("boot cmd response wrong magic number (0x%x)\n", |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 547 | le32_to_cpu(bootcmdresp.magic)); |
David Woodhouse | 6d35fdf | 2007-12-08 23:49:06 +0000 | [diff] [blame] | 548 | } |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 549 | } else if ((bootcmdresp.cmd != BOOT_CMD_FW_BY_USB) && |
| 550 | (bootcmdresp.cmd != BOOT_CMD_UPDATE_FW) && |
| 551 | (bootcmdresp.cmd != BOOT_CMD_UPDATE_BOOT2)) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 552 | pr_info("boot cmd response cmd_tag error (%d)\n", |
| 553 | bootcmdresp.cmd); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 554 | } else if (bootcmdresp.result != BOOT_CMD_RESP_OK) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 555 | pr_info("boot cmd response result error (%d)\n", |
| 556 | bootcmdresp.result); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 557 | } else { |
| 558 | cardp->bootcmdresp = 1; |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 559 | lbs_deb_usbd(&cardp->udev->dev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 560 | "Received valid boot command response\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 561 | } |
| 562 | kfree_skb(skb); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 563 | if_usb_submit_rx_urb_fwload(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 564 | return; |
| 565 | } |
| 566 | |
Julia Lawall | 731a9b2 | 2010-05-15 23:12:28 +0200 | [diff] [blame] | 567 | syncfwheader = kmemdup(skb->data + IPFIELD_ALIGN_OFFSET, |
| 568 | sizeof(struct fwsyncheader), GFP_ATOMIC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 569 | if (!syncfwheader) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 570 | lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 571 | kfree_skb(skb); |
| 572 | return; |
| 573 | } |
| 574 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 575 | if (!syncfwheader->cmd) { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 576 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n"); |
| 577 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n", |
| 578 | le32_to_cpu(syncfwheader->seqnum)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 579 | cardp->CRC_OK = 1; |
| 580 | } else { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 581 | lbs_deb_usbd(&cardp->udev->dev, "FW received Blk with CRC error\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 582 | cardp->CRC_OK = 0; |
| 583 | } |
| 584 | |
| 585 | kfree_skb(skb); |
| 586 | |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 587 | /* Give device 5s to either write firmware to its RAM or eeprom */ |
| 588 | mod_timer(&cardp->fw_timeout, jiffies + (HZ*5)); |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 589 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 590 | if (cardp->fwfinalblk) { |
| 591 | cardp->fwdnldover = 1; |
| 592 | goto exit; |
| 593 | } |
| 594 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 595 | if_usb_send_fw_pkt(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 596 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 597 | exit: |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 598 | if_usb_submit_rx_urb_fwload(cardp); |
| 599 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 600 | kfree(syncfwheader); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | #define MRVDRV_MIN_PKT_LEN 30 |
| 604 | |
| 605 | static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 606 | struct if_usb_card *cardp, |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 607 | struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 608 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 609 | if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + MESSAGE_HEADER_LEN |
| 610 | || recvlength < MRVDRV_MIN_PKT_LEN) { |
| 611 | lbs_deb_usbd(&cardp->udev->dev, "Packet length is Invalid\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 612 | kfree_skb(skb); |
| 613 | return; |
| 614 | } |
| 615 | |
| 616 | skb_reserve(skb, IPFIELD_ALIGN_OFFSET); |
| 617 | skb_put(skb, recvlength); |
| 618 | skb_pull(skb, MESSAGE_HEADER_LEN); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 619 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 620 | lbs_process_rxed_packet(priv, skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 621 | } |
| 622 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 623 | static inline void process_cmdrequest(int recvlength, uint8_t *recvbuff, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 624 | struct sk_buff *skb, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 625 | struct if_usb_card *cardp, |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 626 | struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 627 | { |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 628 | u8 i; |
| 629 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 630 | if (recvlength > LBS_CMD_BUFFER_SIZE) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 631 | lbs_deb_usbd(&cardp->udev->dev, |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 632 | "The receive buffer is too large\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 633 | kfree_skb(skb); |
| 634 | return; |
| 635 | } |
| 636 | |
Alexander Beregalov | 0ee904c | 2009-04-11 14:50:23 +0000 | [diff] [blame] | 637 | BUG_ON(!in_interrupt()); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 638 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 639 | spin_lock(&priv->driver_lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 640 | |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 641 | i = (priv->resp_idx == 0) ? 1 : 0; |
| 642 | BUG_ON(priv->resp_len[i]); |
| 643 | priv->resp_len[i] = (recvlength - MESSAGE_HEADER_LEN); |
| 644 | memcpy(priv->resp_buf[i], recvbuff + MESSAGE_HEADER_LEN, |
| 645 | priv->resp_len[i]); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 646 | kfree_skb(skb); |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 647 | lbs_notify_command_response(priv, i); |
| 648 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 649 | spin_unlock(&priv->driver_lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 650 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 651 | lbs_deb_usbd(&cardp->udev->dev, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 652 | "Wake up main thread to handle cmd response\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 656 | * if_usb_receive - read the packet into the upload buffer, |
| 657 | * wake up the main thread and initialise the Rx callack |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 658 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 659 | * @urb: pointer to &struct urb |
| 660 | * returns: N/A |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 661 | */ |
| 662 | static void if_usb_receive(struct urb *urb) |
| 663 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 664 | struct if_usb_card *cardp = urb->context; |
| 665 | struct sk_buff *skb = cardp->rx_skb; |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 666 | struct lbs_private *priv = cardp->priv; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 667 | int recvlength = urb->actual_length; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 668 | uint8_t *recvbuff = NULL; |
| 669 | uint32_t recvtype = 0; |
| 670 | __le32 *pkt = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET); |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 671 | uint32_t event; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 672 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 673 | lbs_deb_enter(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 674 | |
| 675 | if (recvlength) { |
| 676 | if (urb->status) { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 677 | lbs_deb_usbd(&cardp->udev->dev, "RX URB failed: %d\n", |
| 678 | urb->status); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 679 | kfree_skb(skb); |
| 680 | goto setup_for_next; |
| 681 | } |
| 682 | |
| 683 | recvbuff = skb->data + IPFIELD_ALIGN_OFFSET; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 684 | recvtype = le32_to_cpu(pkt[0]); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 685 | lbs_deb_usbd(&cardp->udev->dev, |
Dan Williams | 8362cd4 | 2007-08-03 09:40:55 -0400 | [diff] [blame] | 686 | "Recv length = 0x%x, Recv type = 0x%X\n", |
| 687 | recvlength, recvtype); |
David Woodhouse | 77d8cf2 | 2007-11-28 16:20:51 +0000 | [diff] [blame] | 688 | } else if (urb->status) { |
| 689 | kfree_skb(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 690 | goto rx_exit; |
David Woodhouse | 77d8cf2 | 2007-11-28 16:20:51 +0000 | [diff] [blame] | 691 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 692 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 693 | switch (recvtype) { |
| 694 | case CMD_TYPE_DATA: |
| 695 | process_cmdtypedata(recvlength, skb, cardp, priv); |
| 696 | break; |
| 697 | |
| 698 | case CMD_TYPE_REQUEST: |
| 699 | process_cmdrequest(recvlength, recvbuff, skb, cardp, priv); |
| 700 | break; |
| 701 | |
| 702 | case CMD_TYPE_INDICATION: |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 703 | /* Event handling */ |
| 704 | event = le32_to_cpu(pkt[1]); |
| 705 | lbs_deb_usbd(&cardp->udev->dev, "**EVENT** 0x%X\n", event); |
| 706 | kfree_skb(skb); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 707 | |
| 708 | /* Icky undocumented magic special case */ |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 709 | if (event & 0xffff0000) { |
| 710 | u32 trycount = (event & 0xffff0000) >> 16; |
| 711 | |
| 712 | lbs_send_tx_feedback(priv, trycount); |
| 713 | } else |
| 714 | lbs_queue_event(priv, event & 0xFF); |
| 715 | break; |
| 716 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 717 | default: |
Dan Williams | 8362cd4 | 2007-08-03 09:40:55 -0400 | [diff] [blame] | 718 | lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n", |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 719 | recvtype); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 720 | kfree_skb(skb); |
| 721 | break; |
| 722 | } |
| 723 | |
| 724 | setup_for_next: |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 725 | if_usb_submit_rx_urb(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 726 | rx_exit: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 727 | lbs_deb_leave(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 731 | * if_usb_host_to_card - downloads data to FW |
| 732 | * @priv: pointer to &struct lbs_private structure |
| 733 | * @type: type of data |
| 734 | * @payload: pointer to data buffer |
| 735 | * @nb: number of bytes |
| 736 | * returns: 0 for success or negative error code |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 737 | */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 738 | static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type, |
| 739 | uint8_t *payload, uint16_t nb) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 740 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 741 | struct if_usb_card *cardp = priv->card; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 742 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 743 | lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type); |
| 744 | lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 745 | |
| 746 | if (type == MVMS_CMD) { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 747 | *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST); |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 748 | priv->dnld_sent = DNLD_CMD_SENT; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 749 | } else { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 750 | *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_DATA); |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 751 | priv->dnld_sent = DNLD_DATA_SENT; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 752 | } |
| 753 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 754 | memcpy((cardp->ep_out_buf + MESSAGE_HEADER_LEN), payload, nb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 755 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 756 | return usb_tx_block(cardp, cardp->ep_out_buf, nb + MESSAGE_HEADER_LEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 757 | } |
| 758 | |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 759 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 760 | * if_usb_issue_boot_command - issues Boot command to the Boot2 code |
| 761 | * @cardp: pointer to &if_usb_card |
| 762 | * @ivalue: 1:Boot from FW by USB-Download |
| 763 | * 2:Boot from FW in EEPROM |
| 764 | * returns: 0 for success or negative error code |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 765 | */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 766 | static int if_usb_issue_boot_command(struct if_usb_card *cardp, int ivalue) |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 767 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 768 | struct bootcmd *bootcmd = cardp->ep_out_buf; |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 769 | |
| 770 | /* Prepare command */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 771 | bootcmd->magic = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER); |
| 772 | bootcmd->cmd = ivalue; |
| 773 | memset(bootcmd->pad, 0, sizeof(bootcmd->pad)); |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 774 | |
| 775 | /* Issue command */ |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 776 | usb_tx_block(cardp, cardp->ep_out_buf, sizeof(*bootcmd)); |
Dan Williams | 9e22cb6 | 2007-08-02 11:14:49 -0400 | [diff] [blame] | 777 | |
| 778 | return 0; |
| 779 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 780 | |
| 781 | |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 782 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 783 | * check_fwfile_format - check the validity of Boot2/FW image |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 784 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 785 | * @data: pointer to image |
| 786 | * @totlen: image length |
| 787 | * returns: 0 (good) or 1 (failure) |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 788 | */ |
David Woodhouse | 6dfff89 | 2008-05-23 18:37:51 +0100 | [diff] [blame] | 789 | static int check_fwfile_format(const uint8_t *data, uint32_t totlen) |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 790 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 791 | uint32_t bincmd, exit; |
| 792 | uint32_t blksize, offset, len; |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 793 | int ret; |
| 794 | |
| 795 | ret = 1; |
| 796 | exit = len = 0; |
| 797 | |
| 798 | do { |
| 799 | struct fwheader *fwh = (void *)data; |
| 800 | |
| 801 | bincmd = le32_to_cpu(fwh->dnldcmd); |
| 802 | blksize = le32_to_cpu(fwh->datalength); |
| 803 | switch (bincmd) { |
| 804 | case FW_HAS_DATA_TO_RECV: |
| 805 | offset = sizeof(struct fwheader) + blksize; |
| 806 | data += offset; |
| 807 | len += offset; |
| 808 | if (len >= totlen) |
| 809 | exit = 1; |
| 810 | break; |
| 811 | case FW_HAS_LAST_BLOCK: |
| 812 | exit = 1; |
| 813 | ret = 0; |
| 814 | break; |
| 815 | default: |
| 816 | exit = 1; |
| 817 | break; |
| 818 | } |
| 819 | } while (!exit); |
| 820 | |
| 821 | if (ret) |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 822 | pr_err("firmware file format check FAIL\n"); |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 823 | else |
| 824 | lbs_deb_fw("firmware file format check PASS\n"); |
| 825 | |
| 826 | return ret; |
| 827 | } |
| 828 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 829 | static void if_usb_prog_firmware(struct lbs_private *priv, int ret, |
| 830 | const struct firmware *fw, |
| 831 | const struct firmware *unused) |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 832 | { |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 833 | struct if_usb_card *cardp = priv->card; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 834 | int i = 0; |
| 835 | static int reset_count = 10; |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 836 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 837 | lbs_deb_enter(LBS_DEB_USB); |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 838 | |
Dan Williams | 5cddea8 | 2010-08-07 21:13:57 -0500 | [diff] [blame] | 839 | if (ret) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 840 | pr_err("failed to find firmware (%d)\n", ret); |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 841 | goto done; |
| 842 | } |
| 843 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 844 | cardp->fw = fw; |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 845 | if (check_fwfile_format(cardp->fw->data, cardp->fw->size)) { |
| 846 | ret = -EINVAL; |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 847 | goto done; |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | /* Cancel any pending usb business */ |
| 851 | usb_kill_urb(cardp->rx_urb); |
| 852 | usb_kill_urb(cardp->tx_urb); |
| 853 | |
| 854 | cardp->fwlastblksent = 0; |
| 855 | cardp->fwdnldover = 0; |
| 856 | cardp->totalbytes = 0; |
| 857 | cardp->fwfinalblk = 0; |
| 858 | cardp->bootcmdresp = 0; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 859 | |
| 860 | restart: |
| 861 | if (if_usb_submit_rx_urb_fwload(cardp) < 0) { |
| 862 | lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n"); |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 863 | ret = -EIO; |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 864 | goto done; |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 865 | } |
| 866 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 867 | cardp->bootcmdresp = 0; |
| 868 | do { |
| 869 | int j = 0; |
| 870 | i++; |
Daniel Drake | 370803c | 2012-04-16 23:52:42 +0100 | [diff] [blame] | 871 | if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 872 | /* wait for command response */ |
| 873 | do { |
| 874 | j++; |
| 875 | msleep_interruptible(100); |
| 876 | } while (cardp->bootcmdresp == 0 && j < 10); |
| 877 | } while (cardp->bootcmdresp == 0 && i < 5); |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 878 | |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 879 | if (cardp->bootcmdresp == BOOT_CMD_RESP_NOT_SUPPORTED) { |
| 880 | /* Return to normal operation */ |
| 881 | ret = -EOPNOTSUPP; |
| 882 | usb_kill_urb(cardp->rx_urb); |
| 883 | usb_kill_urb(cardp->tx_urb); |
| 884 | if (if_usb_submit_rx_urb(cardp) < 0) |
| 885 | ret = -EIO; |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 886 | goto done; |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 887 | } else if (cardp->bootcmdresp <= 0) { |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 888 | if (--reset_count >= 0) { |
| 889 | if_usb_reset_device(cardp); |
| 890 | goto restart; |
| 891 | } |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 892 | ret = -EIO; |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 893 | goto done; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | i = 0; |
| 897 | |
| 898 | cardp->totalbytes = 0; |
| 899 | cardp->fwlastblksent = 0; |
| 900 | cardp->CRC_OK = 1; |
| 901 | cardp->fwdnldover = 0; |
| 902 | cardp->fwseqnum = -1; |
| 903 | cardp->totalbytes = 0; |
| 904 | cardp->fwfinalblk = 0; |
| 905 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 906 | /* Send the first firmware packet... */ |
| 907 | if_usb_send_fw_pkt(cardp); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 908 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 909 | /* ... and wait for the process to complete */ |
| 910 | wait_event_interruptible(cardp->fw_wq, cardp->surprise_removed || cardp->fwdnldover); |
David Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 911 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 912 | del_timer_sync(&cardp->fw_timeout); |
David Woodhouse | c9cd6f9 | 2007-12-11 13:15:25 -0500 | [diff] [blame] | 913 | usb_kill_urb(cardp->rx_urb); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 914 | |
| 915 | if (!cardp->fwdnldover) { |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 916 | pr_info("failed to load fw, resetting device!\n"); |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 917 | if (--reset_count >= 0) { |
| 918 | if_usb_reset_device(cardp); |
| 919 | goto restart; |
| 920 | } |
| 921 | |
Joe Perches | 0e4e06a | 2011-05-02 16:49:14 -0700 | [diff] [blame] | 922 | pr_info("FW download failure, time = %d ms\n", i * 100); |
Brian Cavagnolo | 1556c0f | 2008-07-21 11:02:46 -0700 | [diff] [blame] | 923 | ret = -EIO; |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 924 | goto done; |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 925 | } |
| 926 | |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 927 | cardp->priv->fw_ready = 1; |
| 928 | if_usb_submit_rx_urb(cardp); |
| 929 | |
| 930 | if (lbs_start_card(priv)) |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 931 | goto done; |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 932 | |
| 933 | if_usb_setup_firmware(priv); |
| 934 | |
| 935 | /* |
| 936 | * EHS_REMOVE_WAKEUP is not supported on all versions of the firmware. |
| 937 | */ |
| 938 | priv->wol_criteria = EHS_REMOVE_WAKEUP; |
| 939 | if (lbs_host_sleep_cfg(priv, priv->wol_criteria, NULL)) |
| 940 | priv->ehs_remove_supported = false; |
| 941 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 942 | done: |
Dan Williams | 1dfba30 | 2013-10-14 17:51:55 -0500 | [diff] [blame] | 943 | cardp->fw = NULL; |
Daniel Drake | ce84bb6 | 2012-04-16 23:53:55 +0100 | [diff] [blame] | 944 | lbs_deb_leave(LBS_DEB_USB); |
Holger Schurig | 1df4e8f | 2007-08-02 11:45:12 -0400 | [diff] [blame] | 945 | } |
| 946 | |
| 947 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 948 | #ifdef CONFIG_PM |
| 949 | static int if_usb_suspend(struct usb_interface *intf, pm_message_t message) |
| 950 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 951 | struct if_usb_card *cardp = usb_get_intfdata(intf); |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 952 | struct lbs_private *priv = cardp->priv; |
David Woodhouse | d1f7a5b | 2007-12-12 17:40:56 -0500 | [diff] [blame] | 953 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 954 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 955 | lbs_deb_enter(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 956 | |
Julia Lawall | 1e66eda | 2012-04-16 17:44:00 +0200 | [diff] [blame] | 957 | if (priv->psstate != PS_STATE_FULL_POWER) { |
| 958 | ret = -1; |
| 959 | goto out; |
| 960 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 961 | |
Daniel Drake | dfb72c4 | 2011-07-27 17:19:00 +0100 | [diff] [blame] | 962 | #ifdef CONFIG_OLPC |
| 963 | if (machine_is_olpc()) { |
| 964 | if (priv->wol_criteria == EHS_REMOVE_WAKEUP) |
| 965 | olpc_ec_wakeup_clear(EC_SCI_SRC_WLAN); |
| 966 | else |
| 967 | olpc_ec_wakeup_set(EC_SCI_SRC_WLAN); |
| 968 | } |
| 969 | #endif |
| 970 | |
David Woodhouse | d1f7a5b | 2007-12-12 17:40:56 -0500 | [diff] [blame] | 971 | ret = lbs_suspend(priv); |
| 972 | if (ret) |
| 973 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 974 | |
| 975 | /* Unlink tx & rx urb */ |
| 976 | usb_kill_urb(cardp->tx_urb); |
| 977 | usb_kill_urb(cardp->rx_urb); |
| 978 | |
David Woodhouse | d1f7a5b | 2007-12-12 17:40:56 -0500 | [diff] [blame] | 979 | out: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 980 | lbs_deb_leave(LBS_DEB_USB); |
David Woodhouse | d1f7a5b | 2007-12-12 17:40:56 -0500 | [diff] [blame] | 981 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static int if_usb_resume(struct usb_interface *intf) |
| 985 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 986 | struct if_usb_card *cardp = usb_get_intfdata(intf); |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 987 | struct lbs_private *priv = cardp->priv; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 988 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 989 | lbs_deb_enter(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 990 | |
David Woodhouse | 6bc822b | 2007-12-11 12:53:43 -0500 | [diff] [blame] | 991 | if_usb_submit_rx_urb(cardp); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 992 | |
David Woodhouse | d1f7a5b | 2007-12-12 17:40:56 -0500 | [diff] [blame] | 993 | lbs_resume(priv); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 994 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 995 | lbs_deb_leave(LBS_DEB_USB); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 996 | return 0; |
| 997 | } |
| 998 | #else |
| 999 | #define if_usb_suspend NULL |
| 1000 | #define if_usb_resume NULL |
| 1001 | #endif |
| 1002 | |
| 1003 | static struct usb_driver if_usb_driver = { |
Andres Salomon | 798fbfe | 2007-11-20 17:44:04 -0500 | [diff] [blame] | 1004 | .name = DRV_NAME, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1005 | .probe = if_usb_probe, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1006 | .disconnect = if_usb_disconnect, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1007 | .id_table = if_usb_table, |
| 1008 | .suspend = if_usb_suspend, |
| 1009 | .resume = if_usb_resume, |
andrey@cozybit.com | 7b58ccf | 2008-07-01 11:43:53 -0700 | [diff] [blame] | 1010 | .reset_resume = if_usb_resume, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 1011 | .disable_hub_initiated_lpm = 1, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1012 | }; |
| 1013 | |
Greg Kroah-Hartman | d632eb1 | 2011-11-18 09:44:20 -0800 | [diff] [blame] | 1014 | module_usb_driver(if_usb_driver); |
Holger Schurig | 084708b | 2007-05-25 12:37:58 -0400 | [diff] [blame] | 1015 | |
| 1016 | MODULE_DESCRIPTION("8388 USB WLAN Driver"); |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame] | 1017 | MODULE_AUTHOR("Marvell International Ltd. and Red Hat, Inc."); |
Holger Schurig | 084708b | 2007-05-25 12:37:58 -0400 | [diff] [blame] | 1018 | MODULE_LICENSE("GPL"); |