blob: 75aed9d0736702007725e6fab0ee94b6b39dfeea [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains functions used in USB interface module.
3 */
4#include <linux/delay.h>
Holger Schurig084708b2007-05-25 12:37:58 -04005#include <linux/moduleparam.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006#include <linux/firmware.h>
7#include <linux/netdevice.h>
8#include <linux/usb.h>
9
Holger Schurigec3eef22007-05-25 12:49:10 -040010#define DRV_NAME "usb8xxx"
11
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include "decl.h"
14#include "defs.h"
15#include "dev.h"
Dan Williams14e865b2007-12-10 15:11:23 -050016#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020017#include "if_usb.h"
18
David Woodhouseeae86bf2007-12-14 00:47:05 -050019#define INSANEDEBUG 0
20#define lbs_deb_usb2(...) do { if (INSANEDEBUG) lbs_deb_usbd(__VA_ARGS__); } while (0)
21
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022#define MESSAGE_HEADER_LEN 4
23
Andres Salomon82209ad2007-11-20 17:43:32 -050024static char *lbs_fw_name = "usb8388.bin";
Holger Schurig10078322007-11-15 18:05:47 -050025module_param_named(fw_name, lbs_fw_name, charp, 0644);
Holger Schurig084708b2007-05-25 12:37:58 -040026
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027static struct usb_device_id if_usb_table[] = {
28 /* Enter the device signature inside */
Holger Schurig66fcc552007-05-25 00:11:58 -040029 { USB_DEVICE(0x1286, 0x2001) },
30 { USB_DEVICE(0x05a3, 0x8388) },
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020031 {} /* Terminating entry */
32};
33
34MODULE_DEVICE_TABLE(usb, if_usb_table);
35
36static void if_usb_receive(struct urb *urb);
37static void if_usb_receive_fwload(struct urb *urb);
David Woodhouseeae86bf2007-12-14 00:47:05 -050038static int if_usb_prog_firmware(struct if_usb_card *cardp);
39static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type,
40 uint8_t *payload, uint16_t nb);
41static int if_usb_get_int_status(struct lbs_private *priv, uint8_t *);
Holger Schurig69f90322007-11-23 15:43:44 +010042static int if_usb_read_event_cause(struct lbs_private *);
David Woodhouseeae86bf2007-12-14 00:47:05 -050043static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload,
44 uint16_t nb);
45static void if_usb_free(struct if_usb_card *cardp);
46static int if_usb_submit_rx_urb(struct if_usb_card *cardp);
47static int if_usb_reset_device(struct if_usb_card *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020048
49/**
50 * @brief call back function to handle the status of the URB
51 * @param urb pointer to urb structure
52 * @return N/A
53 */
54static void if_usb_write_bulk_callback(struct urb *urb)
55{
David Woodhouseeae86bf2007-12-14 00:47:05 -050056 struct if_usb_card *cardp = (struct if_usb_card *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020057
58 /* handle the transmission complete validations */
59
Dan Williams954ee162007-08-20 11:43:25 -040060 if (urb->status == 0) {
Holger Schurig69f90322007-11-23 15:43:44 +010061 struct lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040062
David Woodhouseeae86bf2007-12-14 00:47:05 -050063 lbs_deb_usb2(&urb->dev->dev, "URB status is successful\n");
64 lbs_deb_usb2(&urb->dev->dev, "Actual length transmitted %d\n",
65 urb->actual_length);
Dan Williams954ee162007-08-20 11:43:25 -040066
67 /* Used for both firmware TX and regular TX. priv isn't
68 * valid at firmware load time.
69 */
David Woodhousee775ed72007-12-06 14:36:11 +000070 if (priv)
71 lbs_host_to_card_done(priv);
Dan Williams954ee162007-08-20 11:43:25 -040072 } else {
73 /* print the failure status number for debug */
74 lbs_pr_info("URB in failure status: %d\n", urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 }
76
77 return;
78}
79
80/**
81 * @brief free tx/rx urb, skb and rx buffer
David Woodhouseeae86bf2007-12-14 00:47:05 -050082 * @param cardp pointer if_usb_card
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 * @return N/A
84 */
David Woodhouseeae86bf2007-12-14 00:47:05 -050085static void if_usb_free(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020086{
Holger Schurig9012b282007-05-25 11:27:16 -040087 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088
89 /* Unlink tx & rx urb */
90 usb_kill_urb(cardp->tx_urb);
91 usb_kill_urb(cardp->rx_urb);
92
93 usb_free_urb(cardp->tx_urb);
94 cardp->tx_urb = NULL;
95
96 usb_free_urb(cardp->rx_urb);
97 cardp->rx_urb = NULL;
98
David Woodhouseeae86bf2007-12-14 00:47:05 -050099 kfree(cardp->ep_out_buf);
100 cardp->ep_out_buf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101
Holger Schurig9012b282007-05-25 11:27:16 -0400102 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200103}
104
David Woodhouse46949612007-12-17 14:42:33 -0500105static void if_usb_setup_firmware(struct lbs_private *priv)
David Woodhouse04c80f12007-12-06 12:51:00 +0000106{
Holger Schurig43659292008-01-16 15:52:58 +0100107 struct if_usb_card *cardp = priv->card;
David Woodhouse04c80f12007-12-06 12:51:00 +0000108 struct cmd_ds_set_boot2_ver b2_cmd;
David Woodhouse46949612007-12-17 14:42:33 -0500109 struct cmd_ds_802_11_fw_wake_method wake_method;
David Woodhouse04c80f12007-12-06 12:51:00 +0000110
David Woodhouse9fae8992007-12-15 03:46:44 -0500111 b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
David Woodhouse04c80f12007-12-06 12:51:00 +0000112 b2_cmd.action = 0;
Holger Schurig43659292008-01-16 15:52:58 +0100113 b2_cmd.version = cardp->boot2_version;
David Woodhouse04c80f12007-12-06 12:51:00 +0000114
David Woodhouseb23b2062007-12-15 01:22:09 -0500115 if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
David Woodhouse04c80f12007-12-06 12:51:00 +0000116 lbs_deb_usb("Setting boot2 version failed\n");
David Woodhouse46949612007-12-17 14:42:33 -0500117
118 priv->wol_gpio = 2; /* Wake via GPIO2... */
119 priv->wol_gap = 20; /* ... after 20ms */
120 lbs_host_sleep_cfg(priv, EHS_WAKE_ON_UNICAST_DATA);
121
122 wake_method.hdr.size = cpu_to_le16(sizeof(wake_method));
123 wake_method.action = cpu_to_le16(CMD_ACT_GET);
124 if (lbs_cmd_with_response(priv, CMD_802_11_FW_WAKE_METHOD, &wake_method)) {
125 lbs_pr_info("Firmware does not seem to support PS mode\n");
126 } else {
127 if (le16_to_cpu(wake_method.method) == CMD_WAKE_METHOD_COMMAND_INT) {
128 lbs_deb_usb("Firmware seems to support PS with wake-via-command\n");
129 priv->ps_supported = 1;
130 } else {
131 /* The versions which boot up this way don't seem to
132 work even if we set it to the command interrupt */
133 lbs_pr_info("Firmware doesn't wake via command interrupt; disabling PS mode\n");
134 }
135 }
David Woodhouse04c80f12007-12-06 12:51:00 +0000136}
137
David Woodhouse2fd6cfe2007-12-11 17:44:10 -0500138static void if_usb_fw_timeo(unsigned long priv)
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500139{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500140 struct if_usb_card *cardp = (void *)priv;
David Woodhouse04c80f12007-12-06 12:51:00 +0000141
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500142 if (cardp->fwdnldover) {
143 lbs_deb_usb("Download complete, no event. Assuming success\n");
144 } else {
145 lbs_pr_err("Download timed out\n");
146 cardp->surprise_removed = 1;
147 }
148 wake_up(&cardp->fw_wq);
149}
David Woodhouseeae86bf2007-12-14 00:47:05 -0500150
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151/**
152 * @brief sets the configuration values
153 * @param ifnum interface number
154 * @param id pointer to usb_device_id
155 * @return 0 on success, error code on failure
156 */
157static int if_usb_probe(struct usb_interface *intf,
158 const struct usb_device_id *id)
159{
160 struct usb_device *udev;
161 struct usb_host_interface *iface_desc;
162 struct usb_endpoint_descriptor *endpoint;
Holger Schurig69f90322007-11-23 15:43:44 +0100163 struct lbs_private *priv;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500164 struct if_usb_card *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165 int i;
166
167 udev = interface_to_usbdev(intf);
168
David Woodhouseeae86bf2007-12-14 00:47:05 -0500169 cardp = kzalloc(sizeof(struct if_usb_card), GFP_KERNEL);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400170 if (!cardp) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 lbs_pr_err("Out of memory allocating private data.\n");
172 goto error;
173 }
174
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500175 setup_timer(&cardp->fw_timeout, if_usb_fw_timeo, (unsigned long)cardp);
176 init_waitqueue_head(&cardp->fw_wq);
David Woodhouse7e226272007-12-14 22:53:41 -0500177
Holger Schurig435a1ac2007-05-25 12:41:52 -0400178 cardp->udev = udev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200179 iface_desc = intf->cur_altsetting;
180
Holger Schurig9012b282007-05-25 11:27:16 -0400181 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
David Woodhouseeae86bf2007-12-14 00:47:05 -0500182 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400183 le16_to_cpu(udev->descriptor.bcdUSB),
184 udev->descriptor.bDeviceClass,
185 udev->descriptor.bDeviceSubClass,
186 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187
188 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
189 endpoint = &iface_desc->endpoint[i].desc;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500190 if (usb_endpoint_is_bulk_in(endpoint)) {
191 cardp->ep_in_size = le16_to_cpu(endpoint->wMaxPacketSize);
192 cardp->ep_in = usb_endpoint_num(endpoint);
193
194 lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n", cardp->ep_in);
195 lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n", cardp->ep_in_size);
196
197 } else if (usb_endpoint_is_bulk_out(endpoint)) {
198 cardp->ep_out_size = le16_to_cpu(endpoint->wMaxPacketSize);
199 cardp->ep_out = usb_endpoint_num(endpoint);
200
201 lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n", cardp->ep_out);
202 lbs_deb_usbd(&udev->dev, "Bulk out size is %d\n", cardp->ep_out_size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203 }
David Woodhouseeae86bf2007-12-14 00:47:05 -0500204 }
205 if (!cardp->ep_out_size || !cardp->ep_in_size) {
206 lbs_deb_usbd(&udev->dev, "Endpoints not found\n");
207 goto dealloc;
208 }
209 if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
210 lbs_deb_usbd(&udev->dev, "Rx URB allocation failed\n");
211 goto dealloc;
212 }
213 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
214 lbs_deb_usbd(&udev->dev, "Tx URB allocation failed\n");
215 goto dealloc;
216 }
217 cardp->ep_out_buf = kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE, GFP_KERNEL);
218 if (!cardp->ep_out_buf) {
219 lbs_deb_usbd(&udev->dev, "Could not allocate buffer\n");
220 goto dealloc;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200221 }
222
Dan Williams954ee162007-08-20 11:43:25 -0400223 /* Upload firmware */
Dan Williams954ee162007-08-20 11:43:25 -0400224 if (if_usb_prog_firmware(cardp)) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500225 lbs_deb_usbd(&udev->dev, "FW upload failed\n");
Dan Williams954ee162007-08-20 11:43:25 -0400226 goto err_prog_firmware;
227 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400228
Holger Schurig10078322007-11-15 18:05:47 -0500229 if (!(priv = lbs_add_card(cardp, &udev->dev)))
Dan Williams954ee162007-08-20 11:43:25 -0400230 goto err_prog_firmware;
231
232 cardp->priv = priv;
David Woodhousec9cd6f92007-12-11 13:15:25 -0500233 cardp->priv->fw_ready = 1;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400234
Holger Schurig208fdd22007-05-25 12:17:06 -0400235 priv->hw_host_to_card = if_usb_host_to_card;
236 priv->hw_get_int_status = if_usb_get_int_status;
237 priv->hw_read_event_cause = if_usb_read_event_cause;
Holger Schurig43659292008-01-16 15:52:58 +0100238 cardp->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400239
Dan Williams954ee162007-08-20 11:43:25 -0400240 if_usb_submit_rx_urb(cardp);
Dan Williams954ee162007-08-20 11:43:25 -0400241
Holger Schurig10078322007-11-15 18:05:47 -0500242 if (lbs_start_card(priv))
Dan Williams954ee162007-08-20 11:43:25 -0400243 goto err_start_card;
Holger Schurig32a74b72007-05-25 12:04:31 -0400244
David Woodhouse46949612007-12-17 14:42:33 -0500245 if_usb_setup_firmware(priv);
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500246
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400248 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 return 0;
251
Dan Williams954ee162007-08-20 11:43:25 -0400252err_start_card:
Holger Schurig10078322007-11-15 18:05:47 -0500253 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400254err_prog_firmware:
255 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400257 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258
259error:
260 return -ENOMEM;
261}
262
263/**
264 * @brief free resource and cleanup
Holger Schurig435a1ac2007-05-25 12:41:52 -0400265 * @param intf USB interface structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266 * @return N/A
267 */
268static void if_usb_disconnect(struct usb_interface *intf)
269{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500270 struct if_usb_card *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100271 struct lbs_private *priv = (struct lbs_private *) cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272
Dan Williams954ee162007-08-20 11:43:25 -0400273 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200274
Dan Williams954ee162007-08-20 11:43:25 -0400275 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276
Dan Williams954ee162007-08-20 11:43:25 -0400277 if (priv) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000278 priv->surpriseremoved = 1;
Holger Schurig10078322007-11-15 18:05:47 -0500279 lbs_stop_card(priv);
Holger Schurig10078322007-11-15 18:05:47 -0500280 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400281 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200282
283 /* Unlink and free urb */
284 if_usb_free(cardp);
285
286 usb_set_intfdata(intf, NULL);
287 usb_put_dev(interface_to_usbdev(intf));
288
Dan Williams954ee162007-08-20 11:43:25 -0400289 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290}
291
292/**
293 * @brief This function download FW
Holger Schurig69f90322007-11-23 15:43:44 +0100294 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 * @return 0
296 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500297static int if_usb_send_fw_pkt(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500299 struct fwdata *fwdata = cardp->ep_out_buf;
300 uint8_t *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301
David Woodhouseeae86bf2007-12-14 00:47:05 -0500302 /* If we got a CRC failure on the last block, back
303 up and retry it */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304 if (!cardp->CRC_OK) {
305 cardp->totalbytes = cardp->fwlastblksent;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500306 cardp->fwseqnum--;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 }
308
David Woodhouseeae86bf2007-12-14 00:47:05 -0500309 lbs_deb_usb2(&cardp->udev->dev, "totalbytes = %d\n",
310 cardp->totalbytes);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200311
David Woodhouseeae86bf2007-12-14 00:47:05 -0500312 /* struct fwdata (which we sent to the card) has an
313 extra __le32 field in between the header and the data,
314 which is not in the struct fwheader in the actual
315 firmware binary. Insert the seqnum in the middle... */
316 memcpy(&fwdata->hdr, &firmware[cardp->totalbytes],
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317 sizeof(struct fwheader));
318
319 cardp->fwlastblksent = cardp->totalbytes;
320 cardp->totalbytes += sizeof(struct fwheader);
321
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200322 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouseeae86bf2007-12-14 00:47:05 -0500323 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200324
David Woodhouseeae86bf2007-12-14 00:47:05 -0500325 lbs_deb_usb2(&cardp->udev->dev, "Data length = %d\n",
326 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200327
David Woodhouseeae86bf2007-12-14 00:47:05 -0500328 fwdata->seqnum = cpu_to_le32(++cardp->fwseqnum);
329 cardp->totalbytes += le32_to_cpu(fwdata->hdr.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330
David Woodhouseeae86bf2007-12-14 00:47:05 -0500331 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(struct fwdata) +
332 le32_to_cpu(fwdata->hdr.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333
David Woodhouseeae86bf2007-12-14 00:47:05 -0500334 if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
335 lbs_deb_usb2(&cardp->udev->dev, "There are data to follow\n");
336 lbs_deb_usb2(&cardp->udev->dev, "seqnum = %d totalbytes = %d\n",
337 cardp->fwseqnum, cardp->totalbytes);
338 } else if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
339 lbs_deb_usb2(&cardp->udev->dev, "Host has finished FW downloading\n");
340 lbs_deb_usb2(&cardp->udev->dev, "Donwloading FW JUMP BLOCK\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 cardp->fwfinalblk = 1;
343 }
344
David Woodhouseeae86bf2007-12-14 00:47:05 -0500345 lbs_deb_usb2(&cardp->udev->dev, "Firmware download done; size %d\n",
346 cardp->totalbytes);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200347
348 return 0;
349}
350
David Woodhouseeae86bf2007-12-14 00:47:05 -0500351static int if_usb_reset_device(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500353 struct cmd_ds_command *cmd = cardp->ep_out_buf + 4;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200355
Holger Schurig3874d0f2007-05-25 12:01:42 -0400356 lbs_deb_enter(LBS_DEB_USB);
357
David Woodhouseeae86bf2007-12-14 00:47:05 -0500358 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000359
360 cmd->command = cpu_to_le16(CMD_802_11_RESET);
361 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
362 cmd->result = cpu_to_le16(0);
363 cmd->seqnum = cpu_to_le16(0x5a5a);
364 cmd->params.reset.action = cpu_to_le16(CMD_ACT_HALT);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500365 usb_tx_block(cardp, cardp->ep_out_buf, 4 + S_DS_GEN + sizeof(struct cmd_ds_802_11_reset));
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000366
David Woodhousec8ba39d2007-12-10 18:53:34 -0500367 msleep(100);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200368 ret = usb_reset_device(cardp->udev);
David Woodhousec8ba39d2007-12-10 18:53:34 -0500369 msleep(100);
Holger Schurig3874d0f2007-05-25 12:01:42 -0400370
371 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
372
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373 return ret;
374}
375
376/**
377 * @brief This function transfer the data to the device.
Holger Schurig69f90322007-11-23 15:43:44 +0100378 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379 * @param payload pointer to payload data
380 * @param nb data length
381 * @return 0 or -1
382 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500383static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload, uint16_t nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 int ret = -1;
386
387 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400388 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400389 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390 goto tx_ret;
391 }
392
393 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
394 usb_sndbulkpipe(cardp->udev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500395 cardp->ep_out),
Dan Williams954ee162007-08-20 11:43:25 -0400396 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397
398 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
399
400 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
David Woodhouse0856e682007-12-07 15:12:26 +0000401 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200402 ret = -1;
403 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500404 lbs_deb_usb2(&cardp->udev->dev, "usb_submit_urb success\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405 ret = 0;
406 }
407
408tx_ret:
409 return ret;
410}
411
David Woodhouseeae86bf2007-12-14 00:47:05 -0500412static int __if_usb_submit_rx_urb(struct if_usb_card *cardp,
Dan Williams954ee162007-08-20 11:43:25 -0400413 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200414{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415 struct sk_buff *skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200416 int ret = -1;
417
418 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
419 lbs_pr_err("No free skb\n");
420 goto rx_ret;
421 }
422
David Woodhouseeae86bf2007-12-14 00:47:05 -0500423 cardp->rx_skb = skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424
425 /* Fill the receive configuration URB and initialise the Rx call back */
426 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500427 usb_rcvbulkpipe(cardp->udev, cardp->ep_in),
Dan Williams4269e2a2007-05-10 23:10:18 -0400428 (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200429 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500430 cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431
432 cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
433
David Woodhouseeae86bf2007-12-14 00:47:05 -0500434 lbs_deb_usb2(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
David Woodhouse0856e682007-12-07 15:12:26 +0000436 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000437 kfree_skb(skb);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500438 cardp->rx_skb = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200439 ret = -1;
440 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500441 lbs_deb_usb2(&cardp->udev->dev, "Submit Rx URB success\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442 ret = 0;
443 }
444
445rx_ret:
446 return ret;
447}
448
David Woodhouseeae86bf2007-12-14 00:47:05 -0500449static int if_usb_submit_rx_urb_fwload(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200450{
Dan Williams954ee162007-08-20 11:43:25 -0400451 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452}
453
David Woodhouseeae86bf2007-12-14 00:47:05 -0500454static int if_usb_submit_rx_urb(struct if_usb_card *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200455{
Dan Williams954ee162007-08-20 11:43:25 -0400456 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457}
458
459static void if_usb_receive_fwload(struct urb *urb)
460{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500461 struct if_usb_card *cardp = urb->context;
462 struct sk_buff *skb = cardp->rx_skb;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 struct fwsyncheader *syncfwheader;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500464 struct bootcmdresp bootcmdresp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200465
466 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400467 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500468 "URB status is failed during fw load\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200469 kfree_skb(skb);
470 return;
471 }
472
David Woodhousec9cd6f92007-12-11 13:15:25 -0500473 if (cardp->fwdnldover) {
474 __le32 *tmp = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET);
475
476 if (tmp[0] == cpu_to_le32(CMD_TYPE_INDICATION) &&
477 tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY)) {
478 lbs_pr_info("Firmware ready event received\n");
479 wake_up(&cardp->fw_wq);
480 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500481 lbs_deb_usb("Waiting for confirmation; got %x %x\n",
482 le32_to_cpu(tmp[0]), le32_to_cpu(tmp[1]));
David Woodhousec9cd6f92007-12-11 13:15:25 -0500483 if_usb_submit_rx_urb_fwload(cardp);
484 }
485 kfree_skb(skb);
486 return;
487 }
David Woodhousec8ba39d2007-12-10 18:53:34 -0500488 if (cardp->bootcmdresp <= 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
490 sizeof(bootcmdresp));
David Woodhouseeae86bf2007-12-14 00:47:05 -0500491
David Woodhouse981f1872007-05-25 23:36:54 -0400492 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400494 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400496 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500497 "Received valid boot command response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498 return;
499 }
David Woodhouseeae86bf2007-12-14 00:47:05 -0500500 if (bootcmdresp.magic != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
501 if (bootcmdresp.magic == cpu_to_le32(CMD_TYPE_REQUEST) ||
502 bootcmdresp.magic == cpu_to_le32(CMD_TYPE_DATA) ||
503 bootcmdresp.magic == cpu_to_le32(CMD_TYPE_INDICATION)) {
David Woodhousec9cd6f92007-12-11 13:15:25 -0500504 if (!cardp->bootcmdresp)
505 lbs_pr_info("Firmware already seems alive; resetting\n");
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000506 cardp->bootcmdresp = -1;
507 } else {
508 lbs_pr_info("boot cmd response wrong magic number (0x%x)\n",
David Woodhouseeae86bf2007-12-14 00:47:05 -0500509 le32_to_cpu(bootcmdresp.magic));
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000510 }
David Woodhouseeae86bf2007-12-14 00:47:05 -0500511 } else if (bootcmdresp.cmd != BOOT_CMD_FW_BY_USB) {
512 lbs_pr_info("boot cmd response cmd_tag error (%d)\n",
513 bootcmdresp.cmd);
514 } else if (bootcmdresp.result != BOOT_CMD_RESP_OK) {
515 lbs_pr_info("boot cmd response result error (%d)\n",
516 bootcmdresp.result);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200517 } else {
518 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400519 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500520 "Received valid boot command response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200521 }
522 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400523 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524 return;
525 }
526
527 syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
528 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400529 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530 kfree_skb(skb);
531 return;
532 }
533
534 memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500535 sizeof(struct fwsyncheader));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200536
537 if (!syncfwheader->cmd) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500538 lbs_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n");
539 lbs_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n",
540 le32_to_cpu(syncfwheader->seqnum));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200541 cardp->CRC_OK = 1;
542 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500543 lbs_deb_usbd(&cardp->udev->dev, "FW received Blk with CRC error\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 cardp->CRC_OK = 0;
545 }
546
547 kfree_skb(skb);
548
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500549 /* reschedule timer for 200ms hence */
550 mod_timer(&cardp->fw_timeout, jiffies + (HZ/5));
551
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552 if (cardp->fwfinalblk) {
553 cardp->fwdnldover = 1;
554 goto exit;
555 }
556
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500557 if_usb_send_fw_pkt(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200558
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500559 exit:
David Woodhousec9cd6f92007-12-11 13:15:25 -0500560 if_usb_submit_rx_urb_fwload(cardp);
561
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200562 kfree(syncfwheader);
563
564 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565}
566
567#define MRVDRV_MIN_PKT_LEN 30
568
569static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500570 struct if_usb_card *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100571 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500573 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + MESSAGE_HEADER_LEN
574 || recvlength < MRVDRV_MIN_PKT_LEN) {
575 lbs_deb_usbd(&cardp->udev->dev, "Packet length is Invalid\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576 kfree_skb(skb);
577 return;
578 }
579
580 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
581 skb_put(skb, recvlength);
582 skb_pull(skb, MESSAGE_HEADER_LEN);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500583
Holger Schurig10078322007-11-15 18:05:47 -0500584 lbs_process_rxed_packet(priv, skb);
Holger Schurig634b8f42007-05-25 13:05:16 -0400585 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586}
587
David Woodhouseeae86bf2007-12-14 00:47:05 -0500588static inline void process_cmdrequest(int recvlength, uint8_t *recvbuff,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589 struct sk_buff *skb,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500590 struct if_usb_card *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100591 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200592{
Dan Williamsddac4522007-12-11 13:49:39 -0500593 if (recvlength > LBS_CMD_BUFFER_SIZE) {
Holger Schurig9012b282007-05-25 11:27:16 -0400594 lbs_deb_usbd(&cardp->udev->dev,
David Woodhouseeae86bf2007-12-14 00:47:05 -0500595 "The receive buffer is too large\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200596 kfree_skb(skb);
597 return;
598 }
599
600 if (!in_interrupt())
601 BUG();
602
David Woodhouseaa21c002007-12-08 20:04:36 +0000603 spin_lock(&priv->driver_lock);
Holger Schurigc95c7f92007-08-02 11:49:45 -0400604 cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
Holger Schurig634b8f42007-05-25 13:05:16 -0400605 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
David Woodhouse7003b072007-12-17 15:22:43 -0500606 memcpy(priv->upld_buf, recvbuff + MESSAGE_HEADER_LEN, priv->upld_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607
608 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500609 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000610 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200611
Holger Schurig9012b282007-05-25 11:27:16 -0400612 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613 "Wake up main thread to handle cmd response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614}
615
616/**
617 * @brief This function reads of the packet into the upload buff,
618 * wake up the main thread and initialise the Rx callack.
619 *
620 * @param urb pointer to struct urb
621 * @return N/A
622 */
623static void if_usb_receive(struct urb *urb)
624{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500625 struct if_usb_card *cardp = urb->context;
626 struct sk_buff *skb = cardp->rx_skb;
Holger Schurig69f90322007-11-23 15:43:44 +0100627 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200628 int recvlength = urb->actual_length;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500629 uint8_t *recvbuff = NULL;
630 uint32_t recvtype = 0;
631 __le32 *pkt = (__le32 *)(skb->data + IPFIELD_ALIGN_OFFSET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
Holger Schurig9012b282007-05-25 11:27:16 -0400633 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634
635 if (recvlength) {
636 if (urb->status) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500637 lbs_deb_usbd(&cardp->udev->dev, "RX URB failed: %d\n",
638 urb->status);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200639 kfree_skb(skb);
640 goto setup_for_next;
641 }
642
643 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
David Woodhouseeae86bf2007-12-14 00:47:05 -0500644 recvtype = le32_to_cpu(pkt[0]);
Holger Schurig9012b282007-05-25 11:27:16 -0400645 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400646 "Recv length = 0x%x, Recv type = 0x%X\n",
647 recvlength, recvtype);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000648 } else if (urb->status) {
649 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 goto rx_exit;
David Woodhouse77d8cf22007-11-28 16:20:51 +0000651 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200652
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200653 switch (recvtype) {
654 case CMD_TYPE_DATA:
655 process_cmdtypedata(recvlength, skb, cardp, priv);
656 break;
657
658 case CMD_TYPE_REQUEST:
659 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
660 break;
661
662 case CMD_TYPE_INDICATION:
663 /* Event cause handling */
David Woodhouseaa21c002007-12-08 20:04:36 +0000664 spin_lock(&priv->driver_lock);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500665
666 cardp->usb_event_cause = le32_to_cpu(pkt[1]);
667
Holger Schurig9012b282007-05-25 11:27:16 -0400668 lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
David Woodhouseeae86bf2007-12-14 00:47:05 -0500669 cardp->usb_event_cause);
670
671 /* Icky undocumented magic special case */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200672 if (cardp->usb_event_cause & 0xffff0000) {
Holger Schurig10078322007-11-15 18:05:47 -0500673 lbs_send_tx_feedback(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000674 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200675 break;
676 }
David Woodhouse981f1872007-05-25 23:36:54 -0400677 cardp->usb_event_cause <<= 3;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400678 cardp->usb_int_cause |= MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200679 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500680 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000681 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200682 goto rx_exit;
683 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400684 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
David Woodhouseeae86bf2007-12-14 00:47:05 -0500685 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686 kfree_skb(skb);
687 break;
688 }
689
690setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400691 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400693 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694}
695
696/**
697 * @brief This function downloads data to FW
Holger Schurig69f90322007-11-23 15:43:44 +0100698 * @param priv pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699 * @param type type of data
700 * @param buf pointer to data buffer
701 * @param len number of bytes
702 * @return 0 or -1
703 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500704static int if_usb_host_to_card(struct lbs_private *priv, uint8_t type,
705 uint8_t *payload, uint16_t nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500707 struct if_usb_card *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708
Holger Schurig9012b282007-05-25 11:27:16 -0400709 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
710 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711
712 if (type == MVMS_CMD) {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500713 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400714 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200715 } else {
David Woodhouseeae86bf2007-12-14 00:47:05 -0500716 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400717 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200718 }
719
David Woodhouseeae86bf2007-12-14 00:47:05 -0500720 memcpy((cardp->ep_out_buf + MESSAGE_HEADER_LEN), payload, nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721
David Woodhouseeae86bf2007-12-14 00:47:05 -0500722 return usb_tx_block(cardp, cardp->ep_out_buf, nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723}
724
David Woodhouseaa21c002007-12-08 20:04:36 +0000725/* called with priv->driver_lock held */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500726static int if_usb_get_int_status(struct lbs_private *priv, uint8_t *ireg)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500728 struct if_usb_card *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200729
730 *ireg = cardp->usb_int_cause;
731 cardp->usb_int_cause = 0;
732
David Woodhouseeae86bf2007-12-14 00:47:05 -0500733 lbs_deb_usbd(&cardp->udev->dev, "Int cause is 0x%X\n", *ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200734
735 return 0;
736}
737
Holger Schurig69f90322007-11-23 15:43:44 +0100738static int if_usb_read_event_cause(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500740 struct if_usb_card *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400741
David Woodhouseaa21c002007-12-08 20:04:36 +0000742 priv->eventcause = cardp->usb_event_cause;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743 /* Re-submit rx urb here to avoid event lost issue */
Dan Williams954ee162007-08-20 11:43:25 -0400744 if_usb_submit_rx_urb(cardp);
David Woodhouseeae86bf2007-12-14 00:47:05 -0500745
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200746 return 0;
747}
748
Dan Williams9e22cb62007-08-02 11:14:49 -0400749/**
750 * @brief This function issues Boot command to the Boot2 code
751 * @param ivalue 1:Boot from FW by USB-Download
752 * 2:Boot from FW in EEPROM
753 * @return 0
754 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500755static int if_usb_issue_boot_command(struct if_usb_card *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400756{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500757 struct bootcmd *bootcmd = cardp->ep_out_buf;
Dan Williams9e22cb62007-08-02 11:14:49 -0400758
759 /* Prepare command */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500760 bootcmd->magic = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
761 bootcmd->cmd = ivalue;
762 memset(bootcmd->pad, 0, sizeof(bootcmd->pad));
Dan Williams9e22cb62007-08-02 11:14:49 -0400763
764 /* Issue command */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500765 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(*bootcmd));
Dan Williams9e22cb62007-08-02 11:14:49 -0400766
767 return 0;
768}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200769
770
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400771/**
772 * @brief This function checks the validity of Boot2/FW image.
773 *
774 * @param data pointer to image
775 * len image length
776 * @return 0 or -1
777 */
David Woodhouseeae86bf2007-12-14 00:47:05 -0500778static int check_fwfile_format(uint8_t *data, uint32_t totlen)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400779{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500780 uint32_t bincmd, exit;
781 uint32_t blksize, offset, len;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400782 int ret;
783
784 ret = 1;
785 exit = len = 0;
786
787 do {
788 struct fwheader *fwh = (void *)data;
789
790 bincmd = le32_to_cpu(fwh->dnldcmd);
791 blksize = le32_to_cpu(fwh->datalength);
792 switch (bincmd) {
793 case FW_HAS_DATA_TO_RECV:
794 offset = sizeof(struct fwheader) + blksize;
795 data += offset;
796 len += offset;
797 if (len >= totlen)
798 exit = 1;
799 break;
800 case FW_HAS_LAST_BLOCK:
801 exit = 1;
802 ret = 0;
803 break;
804 default:
805 exit = 1;
806 break;
807 }
808 } while (!exit);
809
810 if (ret)
811 lbs_pr_err("firmware file format check FAIL\n");
812 else
813 lbs_deb_fw("firmware file format check PASS\n");
814
815 return ret;
816}
817
818
David Woodhouseeae86bf2007-12-14 00:47:05 -0500819static int if_usb_prog_firmware(struct if_usb_card *cardp)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400820{
Dan Williams954ee162007-08-20 11:43:25 -0400821 int i = 0;
822 static int reset_count = 10;
823 int ret = 0;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400824
Dan Williams954ee162007-08-20 11:43:25 -0400825 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400826
Holger Schurig10078322007-11-15 18:05:47 -0500827 if ((ret = request_firmware(&cardp->fw, lbs_fw_name,
Dan Williams954ee162007-08-20 11:43:25 -0400828 &cardp->udev->dev)) < 0) {
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400829 lbs_pr_err("request_firmware() failed with %#x\n", ret);
Holger Schurig10078322007-11-15 18:05:47 -0500830 lbs_pr_err("firmware %s not found\n", lbs_fw_name);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400831 goto done;
832 }
833
Dan Williams954ee162007-08-20 11:43:25 -0400834 if (check_fwfile_format(cardp->fw->data, cardp->fw->size))
835 goto release_fw;
836
837restart:
838 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
839 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
840 ret = -1;
841 goto release_fw;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400842 }
843
Dan Williams954ee162007-08-20 11:43:25 -0400844 cardp->bootcmdresp = 0;
845 do {
846 int j = 0;
847 i++;
848 /* Issue Boot command = 1, Boot from Download-FW */
849 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
850 /* wait for command response */
851 do {
852 j++;
853 msleep_interruptible(100);
854 } while (cardp->bootcmdresp == 0 && j < 10);
855 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400856
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000857 if (cardp->bootcmdresp <= 0) {
Dan Williams954ee162007-08-20 11:43:25 -0400858 if (--reset_count >= 0) {
859 if_usb_reset_device(cardp);
860 goto restart;
861 }
862 return -1;
863 }
864
865 i = 0;
866
867 cardp->totalbytes = 0;
868 cardp->fwlastblksent = 0;
869 cardp->CRC_OK = 1;
870 cardp->fwdnldover = 0;
871 cardp->fwseqnum = -1;
872 cardp->totalbytes = 0;
873 cardp->fwfinalblk = 0;
874
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500875 /* Send the first firmware packet... */
876 if_usb_send_fw_pkt(cardp);
Dan Williams954ee162007-08-20 11:43:25 -0400877
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500878 /* ... and wait for the process to complete */
879 wait_event_interruptible(cardp->fw_wq, cardp->surprise_removed || cardp->fwdnldover);
David Woodhouse7e226272007-12-14 22:53:41 -0500880
David Woodhouse4f82f5c2007-12-11 00:07:58 -0500881 del_timer_sync(&cardp->fw_timeout);
David Woodhousec9cd6f92007-12-11 13:15:25 -0500882 usb_kill_urb(cardp->rx_urb);
Dan Williams954ee162007-08-20 11:43:25 -0400883
884 if (!cardp->fwdnldover) {
885 lbs_pr_info("failed to load fw, resetting device!\n");
886 if (--reset_count >= 0) {
887 if_usb_reset_device(cardp);
888 goto restart;
889 }
890
891 lbs_pr_info("FW download failure, time = %d ms\n", i * 100);
892 ret = -1;
893 goto release_fw;
894 }
895
David Woodhouseeae86bf2007-12-14 00:47:05 -0500896 release_fw:
Dan Williams954ee162007-08-20 11:43:25 -0400897 release_firmware(cardp->fw);
898 cardp->fw = NULL;
899
David Woodhouseeae86bf2007-12-14 00:47:05 -0500900 done:
Dan Williams954ee162007-08-20 11:43:25 -0400901 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400902 return ret;
903}
904
905
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906#ifdef CONFIG_PM
907static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
908{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500909 struct if_usb_card *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100910 struct lbs_private *priv = cardp->priv;
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500911 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912
Holger Schurig9012b282007-05-25 11:27:16 -0400913 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200914
David Woodhouseaa21c002007-12-08 20:04:36 +0000915 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200916 return -1;
917
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500918 ret = lbs_suspend(priv);
919 if (ret)
920 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200921
922 /* Unlink tx & rx urb */
923 usb_kill_urb(cardp->tx_urb);
924 usb_kill_urb(cardp->rx_urb);
925
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500926 out:
Holger Schurig9012b282007-05-25 11:27:16 -0400927 lbs_deb_leave(LBS_DEB_USB);
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500928 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929}
930
931static int if_usb_resume(struct usb_interface *intf)
932{
David Woodhouseeae86bf2007-12-14 00:47:05 -0500933 struct if_usb_card *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100934 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200935
Holger Schurig9012b282007-05-25 11:27:16 -0400936 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200937
David Woodhouse6bc822b2007-12-11 12:53:43 -0500938 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939
David Woodhoused1f7a5b2007-12-12 17:40:56 -0500940 lbs_resume(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200941
Holger Schurig9012b282007-05-25 11:27:16 -0400942 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943 return 0;
944}
945#else
946#define if_usb_suspend NULL
947#define if_usb_resume NULL
948#endif
949
950static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -0500951 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200952 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200954 .id_table = if_usb_table,
955 .suspend = if_usb_suspend,
956 .resume = if_usb_resume,
957};
958
Andres Salomon4fb910f2007-11-20 17:43:45 -0500959static int __init if_usb_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960{
Holger Schurig084708b2007-05-25 12:37:58 -0400961 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200962
Holger Schurig084708b2007-05-25 12:37:58 -0400963 lbs_deb_enter(LBS_DEB_MAIN);
964
Holger Schurig084708b2007-05-25 12:37:58 -0400965 ret = usb_register(&if_usb_driver);
966
967 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
968 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200969}
970
Andres Salomon4fb910f2007-11-20 17:43:45 -0500971static void __exit if_usb_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972{
Holger Schurig084708b2007-05-25 12:37:58 -0400973 lbs_deb_enter(LBS_DEB_MAIN);
974
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200975 usb_deregister(&if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -0400976
977 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200978}
Holger Schurig084708b2007-05-25 12:37:58 -0400979
980module_init(if_usb_init_module);
981module_exit(if_usb_exit_module);
982
983MODULE_DESCRIPTION("8388 USB WLAN Driver");
David Woodhouseeae86bf2007-12-14 00:47:05 -0500984MODULE_AUTHOR("Marvell International Ltd. and Red Hat, Inc.");
Holger Schurig084708b2007-05-25 12:37:58 -0400985MODULE_LICENSE("GPL");