blob: a605d569f663a295eb149d450d94bb2ca87f56c4 [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains functions used in USB interface module.
3 */
Joe Perches0e4e06a2011-05-02 16:49:14 -07004
5#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02007#include <linux/delay.h>
Paul Gortmakerac5c24e92011-08-30 14:18:44 -04008#include <linux/module.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include <linux/firmware.h>
10#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include <linux/usb.h>
Andres Salomon3bf94282012-07-11 01:16:29 -070013#include <linux/olpc-ec.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
David Woodhouseb77ec4c2008-05-20 16:48:52 +010015#ifdef CONFIG_OLPC
16#include <asm/olpc.h>
17#endif
18
Holger Schurigec3eef22007-05-25 12:49:10 -040019#define DRV_NAME "usb8xxx"
20
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022#include "decl.h"
23#include "defs.h"
24#include "dev.h"
Dan Williams14e865b2007-12-10 15:11:23 -050025#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020026#include "if_usb.h"
27
David Woodhouseeae86bf2007-12-14 00:47:05 -050028#define INSANEDEBUG 0
29#define lbs_deb_usb2(...) do { if (INSANEDEBUG) lbs_deb_usbd(__VA_ARGS__); } while (0)
30
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020031#define MESSAGE_HEADER_LEN 4
32
Dan Williams5cddea82010-08-07 21:13:57 -050033MODULE_FIRMWARE("libertas/usb8388_v9.bin");
34MODULE_FIRMWARE("libertas/usb8388_v5.bin");
35MODULE_FIRMWARE("libertas/usb8388.bin");
36MODULE_FIRMWARE("libertas/usb8682.bin");
Ben Hutchingsa974a4b2009-11-07 22:00:03 +000037MODULE_FIRMWARE("usb8388.bin");
38
Dan Williams5cddea82010-08-07 21:13:57 -050039enum {
40 MODEL_UNKNOWN = 0x0,
41 MODEL_8388 = 0x1,
42 MODEL_8682 = 0x2
43};
44
Daniel Drakece84bb62012-04-16 23:53:55 +010045/* table of firmware file names */
46static 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 Tosatti876c9d32007-02-10 12:25:27 -020055static struct usb_device_id if_usb_table[] = {
56 /* Enter the device signature inside */
Dan Williams5cddea82010-08-07 21:13:57 -050057 { USB_DEVICE(0x1286, 0x2001), .driver_info = MODEL_8388 },
58 { USB_DEVICE(0x05a3, 0x8388), .driver_info = MODEL_8388 },
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059 {} /* Terminating entry */
60};
61
62MODULE_DEVICE_TABLE(usb, if_usb_table);
63
64static void if_usb_receive(struct urb *urb);
65static void if_usb_receive_fwload(struct urb *urb);
Daniel Drakece84bb62012-04-16 23:53:55 +010066static void if_usb_prog_firmware(struct lbs_private *priv, int ret,
67 const struct firmware *fw,
68 const struct firmware *unused);
David Woodhouseeae86bf2007-12-14 00:47:05 -050069static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type,
70 uint8_t *payload, uint16_t nb);
David Woodhouseeae86bf2007-12-14 00:47:05 -050071static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload,
72 uint16_t nb);
73static void if_usb_free(struct if_usb_card *cardp);
74static int if_usb_submit_rx_urb(struct if_usb_card *cardp);
75static int if_usb_reset_device(struct if_usb_card *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076
77/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070078 * 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 Tosatti876c9d32007-02-10 12:25:27 -020082 */
83static void if_usb_write_bulk_callback(struct urb *urb)
84{
David Woodhouseeae86bf2007-12-14 00:47:05 -050085 struct if_usb_card *cardp = (struct if_usb_card *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020086
87 /* handle the transmission complete validations */
88
Dan Williams954ee162007-08-20 11:43:25 -040089 if (urb->status == 0) {
Holger Schurig69f90322007-11-23 15:43:44 +010090 struct lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040091
David Woodhouseeae86bf2007-12-14 00:47:05 -050092 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 Williams954ee162007-08-20 11:43:25 -040095
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -070096 /* Boot commands such as UPDATE_FW and UPDATE_BOOT2 are not
97 * passed up to the lbs level.
Dan Williams954ee162007-08-20 11:43:25 -040098 */
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -070099 if (priv && priv->dnld_sent != DNLD_BOOTCMD_SENT)
David Woodhousee775ed72007-12-06 14:36:11 +0000100 lbs_host_to_card_done(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400101 } else {
102 /* print the failure status number for debug */
Joe Perches0e4e06a2011-05-02 16:49:14 -0700103 pr_info("URB in failure status: %d\n", urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200104 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200105}
106
107/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700108 * if_usb_free - free tx/rx urb, skb and rx buffer
109 * @cardp: pointer to &if_usb_card
110 * returns: N/A
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500112static void if_usb_free(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113{
Holger Schurig9012b282007-05-25 11:27:16 -0400114 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
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 Woodhouseeae86bf2007-12-14 00:47:05 -0500126 kfree(cardp->ep_out_buf);
127 cardp->ep_out_buf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128
Holger Schurig9012b282007-05-25 11:27:16 -0400129 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130}
131
David Woodhouse46949612007-12-17 14:42:33 -0500132static void if_usb_setup_firmware(struct lbs_private *priv)
David Woodhouse04c80f12007-12-06 12:51:00 +0000133{
Holger Schurig43659292008-01-16 15:52:58 +0100134 struct if_usb_card *cardp = priv->card;
David Woodhouse04c80f12007-12-06 12:51:00 +0000135 struct cmd_ds_set_boot2_ver b2_cmd;
David Woodhouse46949612007-12-17 14:42:33 -0500136 struct cmd_ds_802_11_fw_wake_method wake_method;
David Woodhouse04c80f12007-12-06 12:51:00 +0000137
David Woodhouse9fae8992007-12-15 03:46:44 -0500138 b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
David Woodhouse04c80f12007-12-06 12:51:00 +0000139 b2_cmd.action = 0;
Holger Schurig43659292008-01-16 15:52:58 +0100140 b2_cmd.version = cardp->boot2_version;
David Woodhouse04c80f12007-12-06 12:51:00 +0000141
David Woodhouseb23b2062007-12-15 01:22:09 -0500142 if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
David Woodhouse04c80f12007-12-06 12:51:00 +0000143 lbs_deb_usb("Setting boot2 version failed\n");
David Woodhouse46949612007-12-17 14:42:33 -0500144
145 priv->wol_gpio = 2; /* Wake via GPIO2... */
146 priv->wol_gap = 20; /* ... after 20ms */
Anna Neal582c1b52008-10-20 16:46:56 -0700147 lbs_host_sleep_cfg(priv, EHS_WAKE_ON_UNICAST_DATA,
148 (struct wol_config *) NULL);
David Woodhouse46949612007-12-17 14:42:33 -0500149
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 Perchesf3a57fd2011-05-02 16:49:15 -0700153 netdev_info(priv->dev, "Firmware does not seem to support PS mode\n");
Andrey Yurovskye0d61332009-06-16 13:20:01 -0700154 priv->fwcapinfo &= ~FW_CAPINFO_PS;
David Woodhouse46949612007-12-17 14:42:33 -0500155 } 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 Woodhouse46949612007-12-17 14:42:33 -0500158 } 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 Yurovskye0d61332009-06-16 13:20:01 -0700161 priv->fwcapinfo &= ~FW_CAPINFO_PS;
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700162 netdev_info(priv->dev,
163 "Firmware doesn't wake via command interrupt; disabling PS mode\n");
David Woodhouse46949612007-12-17 14:42:33 -0500164 }
165 }
David Woodhouse04c80f12007-12-06 12:51:00 +0000166}
167
David Woodhouse2fd6cfe2007-12-11 17:44:10 -0500168static void if_usb_fw_timeo(unsigned long priv)
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500169{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500170 struct if_usb_card *cardp = (void *)priv;
David Woodhouse04c80f12007-12-06 12:51:00 +0000171
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500172 if (cardp->fwdnldover) {
173 lbs_deb_usb("Download complete, no event. Assuming success\n");
174 } else {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700175 pr_err("Download timed out\n");
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500176 cardp->surprise_removed = 1;
177 }
178 wake_up(&cardp->fw_wq);
179}
David Woodhouseeae86bf2007-12-14 00:47:05 -0500180
David Woodhouseb77ec4c2008-05-20 16:48:52 +0100181#ifdef CONFIG_OLPC
182static 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 Tosatti876c9d32007-02-10 12:25:27 -0200189/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700190 * 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 Tosatti876c9d32007-02-10 12:25:27 -0200194 */
195static 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 Schurig69f90322007-11-23 15:43:44 +0100201 struct lbs_private *priv;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500202 struct if_usb_card *cardp;
Daniel Drakece84bb62012-04-16 23:53:55 +0100203 int r = -ENOMEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204 int i;
205
206 udev = interface_to_usbdev(intf);
207
David Woodhouseeae86bf2007-12-14 00:47:05 -0500208 cardp = kzalloc(sizeof(struct if_usb_card), GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +0000209 if (!cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 goto error;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500212 setup_timer(&cardp->fw_timeout, if_usb_fw_timeo, (unsigned long)cardp);
213 init_waitqueue_head(&cardp->fw_wq);
David Woodhouse7e226272007-12-14 22:53:41 -0500214
Holger Schurig435a1ac2007-05-25 12:41:52 -0400215 cardp->udev = udev;
Dan Williams5cddea82010-08-07 21:13:57 -0500216 cardp->model = (uint32_t) id->driver_info;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200217 iface_desc = intf->cur_altsetting;
218
Holger Schurig9012b282007-05-25 11:27:16 -0400219 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
David Woodhouseeae86bf2007-12-14 00:47:05 -0500220 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400221 le16_to_cpu(udev->descriptor.bcdUSB),
222 udev->descriptor.bDeviceClass,
223 udev->descriptor.bDeviceSubClass,
224 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200225
226 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
227 endpoint = &iface_desc->endpoint[i].desc;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500228 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 Tosatti876c9d32007-02-10 12:25:27 -0200241 }
David Woodhouseeae86bf2007-12-14 00:47:05 -0500242 }
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 Tosatti876c9d32007-02-10 12:25:27 -0200259 }
260
Daniel Drake8e92f2a2011-07-21 20:43:44 +0100261 if (!(priv = lbs_add_card(cardp, &intf->dev)))
Daniel Drakece84bb62012-04-16 23:53:55 +0100262 goto err_add_card;
Dan Williams954ee162007-08-20 11:43:25 -0400263
264 cardp->priv = priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400265
Holger Schurig208fdd22007-05-25 12:17:06 -0400266 priv->hw_host_to_card = if_usb_host_to_card;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700267 priv->enter_deep_sleep = NULL;
268 priv->exit_deep_sleep = NULL;
269 priv->reset_deep_sleep_wakeup = NULL;
Andreas Kemnadefae4f9f2016-01-30 18:01:52 +0100270 priv->is_polling = false;
David Woodhouseb77ec4c2008-05-20 16:48:52 +0100271#ifdef CONFIG_OLPC
272 if (machine_is_olpc())
273 priv->reset_card = if_usb_reset_olpc_card;
274#endif
275
Holger Schurig43659292008-01-16 15:52:58 +0100276 cardp->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400277
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200278 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400279 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200280
Daniel Drakece84bb62012-04-16 23:53:55 +0100281 r = lbs_get_firmware_async(priv, &udev->dev, cardp->model,
282 fw_table, if_usb_prog_firmware);
283 if (r)
284 goto err_get_fw;
Deepak Saxenaae63a332010-10-31 13:40:33 +0000285
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200286 return 0;
287
Daniel Drakece84bb62012-04-16 23:53:55 +0100288err_get_fw:
Holger Schurig10078322007-11-15 18:05:47 -0500289 lbs_remove_card(priv);
Daniel Drakece84bb62012-04-16 23:53:55 +0100290err_add_card:
Dan Williams954ee162007-08-20 11:43:25 -0400291 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400293 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200294
295error:
Daniel Drakece84bb62012-04-16 23:53:55 +0100296 return r;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200297}
298
299/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700300 * if_usb_disconnect - free resource and cleanup
301 * @intf: USB interface structure
302 * returns: N/A
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303 */
304static void if_usb_disconnect(struct usb_interface *intf)
305{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500306 struct if_usb_card *cardp = usb_get_intfdata(intf);
Joe Perches2c208892012-06-04 12:44:17 +0000307 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308
Dan Williams954ee162007-08-20 11:43:25 -0400309 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200310
Dan Williams954ee162007-08-20 11:43:25 -0400311 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200312
Dan Williams954ee162007-08-20 11:43:25 -0400313 if (priv) {
Holger Schurig10078322007-11-15 18:05:47 -0500314 lbs_stop_card(priv);
Holger Schurig10078322007-11-15 18:05:47 -0500315 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400316 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317
318 /* Unlink and free urb */
319 if_usb_free(cardp);
320
321 usb_set_intfdata(intf, NULL);
322 usb_put_dev(interface_to_usbdev(intf));
323
Dan Williams954ee162007-08-20 11:43:25 -0400324 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200325}
326
327/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700328 * if_usb_send_fw_pkt - download FW
329 * @cardp: pointer to &struct if_usb_card
330 * returns: 0
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500332static int if_usb_send_fw_pkt(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500334 struct fwdata *fwdata = cardp->ep_out_buf;
David Woodhouse6dfff892008-05-23 18:37:51 +0100335 const uint8_t *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200336
David Woodhouseeae86bf2007-12-14 00:47:05 -0500337 /* If we got a CRC failure on the last block, back
338 up and retry it */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200339 if (!cardp->CRC_OK) {
340 cardp->totalbytes = cardp->fwlastblksent;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500341 cardp->fwseqnum--;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 }
343
David Woodhouseeae86bf2007-12-14 00:47:05 -0500344 lbs_deb_usb2(&cardp->udev->dev, "totalbytes = %d\n",
345 cardp->totalbytes);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346
David Woodhouseeae86bf2007-12-14 00:47:05 -0500347 /* struct fwdata (which we sent to the card) has an
348 extra __le32 field in between the header and the data,
349 which is not in the struct fwheader in the actual
350 firmware binary. Insert the seqnum in the middle... */
351 memcpy(&fwdata->hdr, &firmware[cardp->totalbytes],
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352 sizeof(struct fwheader));
353
354 cardp->fwlastblksent = cardp->totalbytes;
355 cardp->totalbytes += sizeof(struct fwheader);
356
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouseeae86bf2007-12-14 00:47:05 -0500358 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359
David Woodhouseeae86bf2007-12-14 00:47:05 -0500360 lbs_deb_usb2(&cardp->udev->dev, "Data length = %d\n",
361 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200362
David Woodhouseeae86bf2007-12-14 00:47:05 -0500363 fwdata->seqnum = cpu_to_le32(++cardp->fwseqnum);
364 cardp->totalbytes += le32_to_cpu(fwdata->hdr.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200365
David Woodhouseeae86bf2007-12-14 00:47:05 -0500366 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(struct fwdata) +
367 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200368
David Woodhouseeae86bf2007-12-14 00:47:05 -0500369 if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
370 lbs_deb_usb2(&cardp->udev->dev, "There are data to follow\n");
371 lbs_deb_usb2(&cardp->udev->dev, "seqnum = %d totalbytes = %d\n",
372 cardp->fwseqnum, cardp->totalbytes);
373 } else if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
374 lbs_deb_usb2(&cardp->udev->dev, "Host has finished FW downloading\n");
375 lbs_deb_usb2(&cardp->udev->dev, "Donwloading FW JUMP BLOCK\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200376
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377 cardp->fwfinalblk = 1;
378 }
379
David Woodhouseeae86bf2007-12-14 00:47:05 -0500380 lbs_deb_usb2(&cardp->udev->dev, "Firmware download done; size %d\n",
381 cardp->totalbytes);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382
383 return 0;
384}
385
David Woodhouseeae86bf2007-12-14 00:47:05 -0500386static int if_usb_reset_device(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387{
Dan Williams0bb64082010-07-27 13:08:08 -0700388 struct cmd_header *cmd = cardp->ep_out_buf + 4;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390
Holger Schurig3874d0f2007-05-25 12:01:42 -0400391 lbs_deb_enter(LBS_DEB_USB);
392
David Woodhouseeae86bf2007-12-14 00:47:05 -0500393 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000394
395 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Dan Williams0bb64082010-07-27 13:08:08 -0700396 cmd->size = cpu_to_le16(sizeof(cmd));
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000397 cmd->result = cpu_to_le16(0);
398 cmd->seqnum = cpu_to_le16(0x5a5a);
Dan Williamsf8e77ca2008-09-10 09:04:33 -0400399 usb_tx_block(cardp, cardp->ep_out_buf, 4 + sizeof(struct cmd_header));
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000400
David Woodhousec8ba39d2007-12-10 18:53:34 -0500401 msleep(100);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200402 ret = usb_reset_device(cardp->udev);
David Woodhousec8ba39d2007-12-10 18:53:34 -0500403 msleep(100);
Holger Schurig3874d0f2007-05-25 12:01:42 -0400404
David Woodhouseb77ec4c2008-05-20 16:48:52 +0100405#ifdef CONFIG_OLPC
406 if (ret && machine_is_olpc())
407 if_usb_reset_olpc_card(NULL);
408#endif
409
Holger Schurig3874d0f2007-05-25 12:01:42 -0400410 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
411
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200412 return ret;
413}
414
415/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700416 * usb_tx_block - transfer the data to the device
417 * @cardp: pointer to &struct if_usb_card
418 * @payload: pointer to payload data
419 * @nb: data length
420 * returns: 0 for success or negative error code
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200421 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500422static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload, uint16_t nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423{
Paul Fox4f329c02010-10-13 20:14:56 +0100424 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425
426 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400427 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400428 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Paul Fox4f329c02010-10-13 20:14:56 +0100429 ret = -ENODEV;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 goto tx_ret;
431 }
432
433 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
434 usb_sndbulkpipe(cardp->udev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500435 cardp->ep_out),
Dan Williams954ee162007-08-20 11:43:25 -0400436 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437
438 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
439
440 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
David Woodhouse0856e682007-12-07 15:12:26 +0000441 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500443 lbs_deb_usb2(&cardp->udev->dev, "usb_submit_urb success\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200444 ret = 0;
445 }
446
447tx_ret:
448 return ret;
449}
450
David Woodhouseeae86bf2007-12-14 00:47:05 -0500451static int __if_usb_submit_rx_urb(struct if_usb_card *cardp,
Dan Williams954ee162007-08-20 11:43:25 -0400452 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200453{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454 struct sk_buff *skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200455 int ret = -1;
456
457 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700458 pr_err("No free skb\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 goto rx_ret;
460 }
461
David Woodhouseeae86bf2007-12-14 00:47:05 -0500462 cardp->rx_skb = skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463
464 /* Fill the receive configuration URB and initialise the Rx call back */
465 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500466 usb_rcvbulkpipe(cardp->udev, cardp->ep_in),
David Woodhousee9024a02009-10-30 17:45:14 +0000467 skb->data + IPFIELD_ALIGN_OFFSET,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200468 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500469 cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470
David Woodhouseeae86bf2007-12-14 00:47:05 -0500471 lbs_deb_usb2(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200472 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
David Woodhouse0856e682007-12-07 15:12:26 +0000473 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000474 kfree_skb(skb);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500475 cardp->rx_skb = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476 ret = -1;
477 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500478 lbs_deb_usb2(&cardp->udev->dev, "Submit Rx URB success\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 ret = 0;
480 }
481
482rx_ret:
483 return ret;
484}
485
David Woodhouseeae86bf2007-12-14 00:47:05 -0500486static int if_usb_submit_rx_urb_fwload(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487{
Dan Williams954ee162007-08-20 11:43:25 -0400488 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489}
490
David Woodhouseeae86bf2007-12-14 00:47:05 -0500491static int if_usb_submit_rx_urb(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200492{
Dan Williams954ee162007-08-20 11:43:25 -0400493 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494}
495
496static void if_usb_receive_fwload(struct urb *urb)
497{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500498 struct if_usb_card *cardp = urb->context;
499 struct sk_buff *skb = cardp->rx_skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 struct fwsyncheader *syncfwheader;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500501 struct bootcmdresp bootcmdresp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502
503 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400504 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500505 "URB status is failed during fw load\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200506 kfree_skb(skb);
507 return;
508 }
509
David Woodhousec9cd6f92007-12-11 13:15:25 -0500510 if (cardp->fwdnldover) {
511 __le32 *tmp = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET);
512
513 if (tmp[0] == cpu_to_le32(CMD_TYPE_INDICATION) &&
514 tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700515 pr_info("Firmware ready event received\n");
David Woodhousec9cd6f92007-12-11 13:15:25 -0500516 wake_up(&cardp->fw_wq);
517 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500518 lbs_deb_usb("Waiting for confirmation; got %x %x\n",
519 le32_to_cpu(tmp[0]), le32_to_cpu(tmp[1]));
David Woodhousec9cd6f92007-12-11 13:15:25 -0500520 if_usb_submit_rx_urb_fwload(cardp);
521 }
522 kfree_skb(skb);
523 return;
524 }
David Woodhousec8ba39d2007-12-10 18:53:34 -0500525 if (cardp->bootcmdresp <= 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200526 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
527 sizeof(bootcmdresp));
David Woodhouseeae86bf2007-12-14 00:47:05 -0500528
David Woodhouse981f1872007-05-25 23:36:54 -0400529 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400531 if_usb_submit_rx_urb_fwload(cardp);
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700532 cardp->bootcmdresp = BOOT_CMD_RESP_OK;
Holger Schurig9012b282007-05-25 11:27:16 -0400533 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500534 "Received valid boot command response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535 return;
536 }
David Woodhouseeae86bf2007-12-14 00:47:05 -0500537 if (bootcmdresp.magic != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
538 if (bootcmdresp.magic == cpu_to_le32(CMD_TYPE_REQUEST) ||
539 bootcmdresp.magic == cpu_to_le32(CMD_TYPE_DATA) ||
540 bootcmdresp.magic == cpu_to_le32(CMD_TYPE_INDICATION)) {
David Woodhousec9cd6f92007-12-11 13:15:25 -0500541 if (!cardp->bootcmdresp)
Joe Perches0e4e06a2011-05-02 16:49:14 -0700542 pr_info("Firmware already seems alive; resetting\n");
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000543 cardp->bootcmdresp = -1;
544 } else {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700545 pr_info("boot cmd response wrong magic number (0x%x)\n",
David Woodhouseeae86bf2007-12-14 00:47:05 -0500546 le32_to_cpu(bootcmdresp.magic));
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000547 }
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700548 } else if ((bootcmdresp.cmd != BOOT_CMD_FW_BY_USB) &&
549 (bootcmdresp.cmd != BOOT_CMD_UPDATE_FW) &&
550 (bootcmdresp.cmd != BOOT_CMD_UPDATE_BOOT2)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700551 pr_info("boot cmd response cmd_tag error (%d)\n",
552 bootcmdresp.cmd);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500553 } else if (bootcmdresp.result != BOOT_CMD_RESP_OK) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700554 pr_info("boot cmd response result error (%d)\n",
555 bootcmdresp.result);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200556 } else {
557 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400558 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500559 "Received valid boot command response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560 }
561 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400562 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 return;
564 }
565
Julia Lawall731a9b22010-05-15 23:12:28 +0200566 syncfwheader = kmemdup(skb->data + IPFIELD_ALIGN_OFFSET,
567 sizeof(struct fwsyncheader), GFP_ATOMIC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200568 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400569 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570 kfree_skb(skb);
571 return;
572 }
573
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200574 if (!syncfwheader->cmd) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500575 lbs_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n");
576 lbs_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n",
577 le32_to_cpu(syncfwheader->seqnum));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200578 cardp->CRC_OK = 1;
579 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500580 lbs_deb_usbd(&cardp->udev->dev, "FW received Blk with CRC error\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200581 cardp->CRC_OK = 0;
582 }
583
584 kfree_skb(skb);
585
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700586 /* Give device 5s to either write firmware to its RAM or eeprom */
587 mod_timer(&cardp->fw_timeout, jiffies + (HZ*5));
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500588
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589 if (cardp->fwfinalblk) {
590 cardp->fwdnldover = 1;
591 goto exit;
592 }
593
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500594 if_usb_send_fw_pkt(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500596 exit:
David Woodhousec9cd6f92007-12-11 13:15:25 -0500597 if_usb_submit_rx_urb_fwload(cardp);
598
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599 kfree(syncfwheader);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200600}
601
602#define MRVDRV_MIN_PKT_LEN 30
603
604static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500605 struct if_usb_card *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100606 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500608 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + MESSAGE_HEADER_LEN
609 || recvlength < MRVDRV_MIN_PKT_LEN) {
610 lbs_deb_usbd(&cardp->udev->dev, "Packet length is Invalid\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200611 kfree_skb(skb);
612 return;
613 }
614
615 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
616 skb_put(skb, recvlength);
617 skb_pull(skb, MESSAGE_HEADER_LEN);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500618
Holger Schurig10078322007-11-15 18:05:47 -0500619 lbs_process_rxed_packet(priv, skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200620}
621
David Woodhouseeae86bf2007-12-14 00:47:05 -0500622static inline void process_cmdrequest(int recvlength, uint8_t *recvbuff,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623 struct sk_buff *skb,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500624 struct if_usb_card *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100625 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626{
Holger Schurig7919b892008-04-01 14:50:43 +0200627 u8 i;
628
Dan Williamsddac4522007-12-11 13:49:39 -0500629 if (recvlength > LBS_CMD_BUFFER_SIZE) {
Holger Schurig9012b282007-05-25 11:27:16 -0400630 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500631 "The receive buffer is too large\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632 kfree_skb(skb);
633 return;
634 }
635
Alexander Beregalov0ee904c2009-04-11 14:50:23 +0000636 BUG_ON(!in_interrupt());
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637
David Woodhouseaa21c002007-12-08 20:04:36 +0000638 spin_lock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200639
Holger Schurig7919b892008-04-01 14:50:43 +0200640 i = (priv->resp_idx == 0) ? 1 : 0;
641 BUG_ON(priv->resp_len[i]);
642 priv->resp_len[i] = (recvlength - MESSAGE_HEADER_LEN);
643 memcpy(priv->resp_buf[i], recvbuff + MESSAGE_HEADER_LEN,
644 priv->resp_len[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 kfree_skb(skb);
Holger Schurig7919b892008-04-01 14:50:43 +0200646 lbs_notify_command_response(priv, i);
647
David Woodhouseaa21c002007-12-08 20:04:36 +0000648 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200649
Holger Schurig9012b282007-05-25 11:27:16 -0400650 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651 "Wake up main thread to handle cmd response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200652}
653
654/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700655 * if_usb_receive - read the packet into the upload buffer,
656 * wake up the main thread and initialise the Rx callack
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200657 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700658 * @urb: pointer to &struct urb
659 * returns: N/A
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660 */
661static void if_usb_receive(struct urb *urb)
662{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500663 struct if_usb_card *cardp = urb->context;
664 struct sk_buff *skb = cardp->rx_skb;
Holger Schurig69f90322007-11-23 15:43:44 +0100665 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200666 int recvlength = urb->actual_length;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500667 uint8_t *recvbuff = NULL;
668 uint32_t recvtype = 0;
669 __le32 *pkt = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET);
Holger Schurig7919b892008-04-01 14:50:43 +0200670 uint32_t event;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671
Holger Schurig9012b282007-05-25 11:27:16 -0400672 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200673
674 if (recvlength) {
675 if (urb->status) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500676 lbs_deb_usbd(&cardp->udev->dev, "RX URB failed: %d\n",
677 urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200678 kfree_skb(skb);
679 goto setup_for_next;
680 }
681
682 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500683 recvtype = le32_to_cpu(pkt[0]);
Holger Schurig9012b282007-05-25 11:27:16 -0400684 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400685 "Recv length = 0x%x, Recv type = 0x%X\n",
686 recvlength, recvtype);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000687 } else if (urb->status) {
688 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689 goto rx_exit;
David Woodhouse77d8cf22007-11-28 16:20:51 +0000690 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 switch (recvtype) {
693 case CMD_TYPE_DATA:
694 process_cmdtypedata(recvlength, skb, cardp, priv);
695 break;
696
697 case CMD_TYPE_REQUEST:
698 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
699 break;
700
701 case CMD_TYPE_INDICATION:
Holger Schurig7919b892008-04-01 14:50:43 +0200702 /* Event handling */
703 event = le32_to_cpu(pkt[1]);
704 lbs_deb_usbd(&cardp->udev->dev, "**EVENT** 0x%X\n", event);
705 kfree_skb(skb);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500706
707 /* Icky undocumented magic special case */
Holger Schurig7919b892008-04-01 14:50:43 +0200708 if (event & 0xffff0000) {
709 u32 trycount = (event & 0xffff0000) >> 16;
710
711 lbs_send_tx_feedback(priv, trycount);
712 } else
713 lbs_queue_event(priv, event & 0xFF);
714 break;
715
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200716 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400717 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
David Woodhouseeae86bf2007-12-14 00:47:05 -0500718 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719 kfree_skb(skb);
720 break;
721 }
722
723setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400724 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400726 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727}
728
729/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700730 * if_usb_host_to_card - downloads data to FW
731 * @priv: pointer to &struct lbs_private structure
732 * @type: type of data
733 * @payload: pointer to data buffer
734 * @nb: number of bytes
735 * returns: 0 for success or negative error code
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200736 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500737static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type,
738 uint8_t *payload, uint16_t nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500740 struct if_usb_card *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741
Holger Schurig9012b282007-05-25 11:27:16 -0400742 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
743 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200744
745 if (type == MVMS_CMD) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500746 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400747 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200748 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500749 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400750 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200751 }
752
David Woodhouseeae86bf2007-12-14 00:47:05 -0500753 memcpy((cardp->ep_out_buf + MESSAGE_HEADER_LEN), payload, nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200754
David Woodhouseeae86bf2007-12-14 00:47:05 -0500755 return usb_tx_block(cardp, cardp->ep_out_buf, nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756}
757
Dan Williams9e22cb62007-08-02 11:14:49 -0400758/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700759 * if_usb_issue_boot_command - issues Boot command to the Boot2 code
760 * @cardp: pointer to &if_usb_card
761 * @ivalue: 1:Boot from FW by USB-Download
762 * 2:Boot from FW in EEPROM
763 * returns: 0 for success or negative error code
Dan Williams9e22cb62007-08-02 11:14:49 -0400764 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500765static int if_usb_issue_boot_command(struct if_usb_card *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400766{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500767 struct bootcmd *bootcmd = cardp->ep_out_buf;
Dan Williams9e22cb62007-08-02 11:14:49 -0400768
769 /* Prepare command */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500770 bootcmd->magic = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
771 bootcmd->cmd = ivalue;
772 memset(bootcmd->pad, 0, sizeof(bootcmd->pad));
Dan Williams9e22cb62007-08-02 11:14:49 -0400773
774 /* Issue command */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500775 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(*bootcmd));
Dan Williams9e22cb62007-08-02 11:14:49 -0400776
777 return 0;
778}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200779
780
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400781/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700782 * check_fwfile_format - check the validity of Boot2/FW image
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400783 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700784 * @data: pointer to image
785 * @totlen: image length
786 * returns: 0 (good) or 1 (failure)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400787 */
David Woodhouse6dfff892008-05-23 18:37:51 +0100788static int check_fwfile_format(const uint8_t *data, uint32_t totlen)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400789{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500790 uint32_t bincmd, exit;
791 uint32_t blksize, offset, len;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400792 int ret;
793
794 ret = 1;
795 exit = len = 0;
796
797 do {
798 struct fwheader *fwh = (void *)data;
799
800 bincmd = le32_to_cpu(fwh->dnldcmd);
801 blksize = le32_to_cpu(fwh->datalength);
802 switch (bincmd) {
803 case FW_HAS_DATA_TO_RECV:
804 offset = sizeof(struct fwheader) + blksize;
805 data += offset;
806 len += offset;
807 if (len >= totlen)
808 exit = 1;
809 break;
810 case FW_HAS_LAST_BLOCK:
811 exit = 1;
812 ret = 0;
813 break;
814 default:
815 exit = 1;
816 break;
817 }
818 } while (!exit);
819
820 if (ret)
Joe Perches0e4e06a2011-05-02 16:49:14 -0700821 pr_err("firmware file format check FAIL\n");
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400822 else
823 lbs_deb_fw("firmware file format check PASS\n");
824
825 return ret;
826}
827
Daniel Drakece84bb62012-04-16 23:53:55 +0100828static void if_usb_prog_firmware(struct lbs_private *priv, int ret,
829 const struct firmware *fw,
830 const struct firmware *unused)
Dan Williams5cddea82010-08-07 21:13:57 -0500831{
Daniel Drakece84bb62012-04-16 23:53:55 +0100832 struct if_usb_card *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400833 int i = 0;
834 static int reset_count = 10;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400835
Dan Williams954ee162007-08-20 11:43:25 -0400836 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400837
Dan Williams5cddea82010-08-07 21:13:57 -0500838 if (ret) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700839 pr_err("failed to find firmware (%d)\n", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400840 goto done;
841 }
842
Daniel Drakece84bb62012-04-16 23:53:55 +0100843 cardp->fw = fw;
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700844 if (check_fwfile_format(cardp->fw->data, cardp->fw->size)) {
845 ret = -EINVAL;
Dan Williams1dfba302013-10-14 17:51:55 -0500846 goto done;
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700847 }
848
849 /* Cancel any pending usb business */
850 usb_kill_urb(cardp->rx_urb);
851 usb_kill_urb(cardp->tx_urb);
852
853 cardp->fwlastblksent = 0;
854 cardp->fwdnldover = 0;
855 cardp->totalbytes = 0;
856 cardp->fwfinalblk = 0;
857 cardp->bootcmdresp = 0;
Dan Williams954ee162007-08-20 11:43:25 -0400858
859restart:
860 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
861 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700862 ret = -EIO;
Dan Williams1dfba302013-10-14 17:51:55 -0500863 goto done;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400864 }
865
Dan Williams954ee162007-08-20 11:43:25 -0400866 cardp->bootcmdresp = 0;
867 do {
868 int j = 0;
869 i++;
Daniel Drake370803c2012-04-16 23:52:42 +0100870 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
Dan Williams954ee162007-08-20 11:43:25 -0400871 /* wait for command response */
872 do {
873 j++;
874 msleep_interruptible(100);
875 } while (cardp->bootcmdresp == 0 && j < 10);
876 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400877
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700878 if (cardp->bootcmdresp == BOOT_CMD_RESP_NOT_SUPPORTED) {
879 /* Return to normal operation */
880 ret = -EOPNOTSUPP;
881 usb_kill_urb(cardp->rx_urb);
882 usb_kill_urb(cardp->tx_urb);
883 if (if_usb_submit_rx_urb(cardp) < 0)
884 ret = -EIO;
Dan Williams1dfba302013-10-14 17:51:55 -0500885 goto done;
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700886 } else if (cardp->bootcmdresp <= 0) {
Dan Williams954ee162007-08-20 11:43:25 -0400887 if (--reset_count >= 0) {
888 if_usb_reset_device(cardp);
889 goto restart;
890 }
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700891 ret = -EIO;
Dan Williams1dfba302013-10-14 17:51:55 -0500892 goto done;
Dan Williams954ee162007-08-20 11:43:25 -0400893 }
894
895 i = 0;
896
897 cardp->totalbytes = 0;
898 cardp->fwlastblksent = 0;
899 cardp->CRC_OK = 1;
900 cardp->fwdnldover = 0;
901 cardp->fwseqnum = -1;
902 cardp->totalbytes = 0;
903 cardp->fwfinalblk = 0;
904
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500905 /* Send the first firmware packet... */
906 if_usb_send_fw_pkt(cardp);
Dan Williams954ee162007-08-20 11:43:25 -0400907
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500908 /* ... and wait for the process to complete */
909 wait_event_interruptible(cardp->fw_wq, cardp->surprise_removed || cardp->fwdnldover);
David Woodhouse7e226272007-12-14 22:53:41 -0500910
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500911 del_timer_sync(&cardp->fw_timeout);
David Woodhousec9cd6f92007-12-11 13:15:25 -0500912 usb_kill_urb(cardp->rx_urb);
Dan Williams954ee162007-08-20 11:43:25 -0400913
914 if (!cardp->fwdnldover) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700915 pr_info("failed to load fw, resetting device!\n");
Dan Williams954ee162007-08-20 11:43:25 -0400916 if (--reset_count >= 0) {
917 if_usb_reset_device(cardp);
918 goto restart;
919 }
920
Joe Perches0e4e06a2011-05-02 16:49:14 -0700921 pr_info("FW download failure, time = %d ms\n", i * 100);
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700922 ret = -EIO;
Dan Williams1dfba302013-10-14 17:51:55 -0500923 goto done;
Dan Williams954ee162007-08-20 11:43:25 -0400924 }
925
Daniel Drakece84bb62012-04-16 23:53:55 +0100926 cardp->priv->fw_ready = 1;
927 if_usb_submit_rx_urb(cardp);
928
929 if (lbs_start_card(priv))
Dan Williams1dfba302013-10-14 17:51:55 -0500930 goto done;
Daniel Drakece84bb62012-04-16 23:53:55 +0100931
932 if_usb_setup_firmware(priv);
933
934 /*
935 * EHS_REMOVE_WAKEUP is not supported on all versions of the firmware.
936 */
937 priv->wol_criteria = EHS_REMOVE_WAKEUP;
938 if (lbs_host_sleep_cfg(priv, priv->wol_criteria, NULL))
939 priv->ehs_remove_supported = false;
940
David Woodhouseeae86bf2007-12-14 00:47:05 -0500941 done:
Dan Williams1dfba302013-10-14 17:51:55 -0500942 cardp->fw = NULL;
Daniel Drakece84bb62012-04-16 23:53:55 +0100943 lbs_deb_leave(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400944}
945
946
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200947#ifdef CONFIG_PM
948static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
949{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500950 struct if_usb_card *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100951 struct lbs_private *priv = cardp->priv;
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500952 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953
Holger Schurig9012b282007-05-25 11:27:16 -0400954 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200955
Julia Lawall1e66eda2012-04-16 17:44:00 +0200956 if (priv->psstate != PS_STATE_FULL_POWER) {
957 ret = -1;
958 goto out;
959 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960
Daniel Drakedfb72c42011-07-27 17:19:00 +0100961#ifdef CONFIG_OLPC
962 if (machine_is_olpc()) {
963 if (priv->wol_criteria == EHS_REMOVE_WAKEUP)
964 olpc_ec_wakeup_clear(EC_SCI_SRC_WLAN);
965 else
966 olpc_ec_wakeup_set(EC_SCI_SRC_WLAN);
967 }
968#endif
969
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500970 ret = lbs_suspend(priv);
971 if (ret)
972 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973
974 /* Unlink tx & rx urb */
975 usb_kill_urb(cardp->tx_urb);
976 usb_kill_urb(cardp->rx_urb);
977
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500978 out:
Holger Schurig9012b282007-05-25 11:27:16 -0400979 lbs_deb_leave(LBS_DEB_USB);
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500980 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200981}
982
983static int if_usb_resume(struct usb_interface *intf)
984{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500985 struct if_usb_card *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100986 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200987
Holger Schurig9012b282007-05-25 11:27:16 -0400988 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989
David Woodhouse6bc822b2007-12-11 12:53:43 -0500990 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200991
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500992 lbs_resume(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993
Holger Schurig9012b282007-05-25 11:27:16 -0400994 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995 return 0;
996}
997#else
998#define if_usb_suspend NULL
999#define if_usb_resume NULL
1000#endif
1001
1002static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -05001003 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006 .id_table = if_usb_table,
1007 .suspend = if_usb_suspend,
1008 .resume = if_usb_resume,
andrey@cozybit.com7b58ccf2008-07-01 11:43:53 -07001009 .reset_resume = if_usb_resume,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001010 .disable_hub_initiated_lpm = 1,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011};
1012
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001013module_usb_driver(if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -04001014
1015MODULE_DESCRIPTION("8388 USB WLAN Driver");
David Woodhouseeae86bf2007-12-14 00:47:05 -05001016MODULE_AUTHOR("Marvell International Ltd. and Red Hat, Inc.");
Holger Schurig084708b2007-05-25 12:37:58 -04001017MODULE_LICENSE("GPL");