blob: 8ff57a6f251fb75d307069d66ae2151463b9db11 [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
19#define MESSAGE_HEADER_LEN 4
20
Andres Salomon82209ad2007-11-20 17:43:32 -050021static char *lbs_fw_name = "usb8388.bin";
Holger Schurig10078322007-11-15 18:05:47 -050022module_param_named(fw_name, lbs_fw_name, charp, 0644);
Holger Schurig084708b2007-05-25 12:37:58 -040023
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024static struct usb_device_id if_usb_table[] = {
25 /* Enter the device signature inside */
Holger Schurig66fcc552007-05-25 00:11:58 -040026 { USB_DEVICE(0x1286, 0x2001) },
27 { USB_DEVICE(0x05a3, 0x8388) },
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 {} /* Terminating entry */
29};
30
31MODULE_DEVICE_TABLE(usb, if_usb_table);
32
33static void if_usb_receive(struct urb *urb);
34static void if_usb_receive_fwload(struct urb *urb);
Dan Williams954ee162007-08-20 11:43:25 -040035static int if_usb_prog_firmware(struct usb_card_rec *cardp);
Holger Schurig69f90322007-11-23 15:43:44 +010036static int if_usb_host_to_card(struct lbs_private *priv,
37 u8 type,
38 u8 *payload,
39 u16 nb);
40static int if_usb_get_int_status(struct lbs_private *priv, u8 *);
41static int if_usb_read_event_cause(struct lbs_private *);
Dan Williams954ee162007-08-20 11:43:25 -040042static int usb_tx_block(struct usb_card_rec *cardp, u8 *payload, u16 nb);
Holger Schurigac558ca2007-08-02 11:49:06 -040043static void if_usb_free(struct usb_card_rec *cardp);
Dan Williams954ee162007-08-20 11:43:25 -040044static int if_usb_submit_rx_urb(struct usb_card_rec *cardp);
45static int if_usb_reset_device(struct usb_card_rec *cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046
47/**
48 * @brief call back function to handle the status of the URB
49 * @param urb pointer to urb structure
50 * @return N/A
51 */
52static void if_usb_write_bulk_callback(struct urb *urb)
53{
Dan Williams954ee162007-08-20 11:43:25 -040054 struct usb_card_rec *cardp = (struct usb_card_rec *) urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055
56 /* handle the transmission complete validations */
57
Dan Williams954ee162007-08-20 11:43:25 -040058 if (urb->status == 0) {
Holger Schurig69f90322007-11-23 15:43:44 +010059 struct lbs_private *priv = cardp->priv;
Dan Williams954ee162007-08-20 11:43:25 -040060
Holger Schurig9012b282007-05-25 11:27:16 -040061 /*
62 lbs_deb_usbd(&urb->dev->dev, "URB status is successfull\n");
63 lbs_deb_usbd(&urb->dev->dev, "Actual length transmitted %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 urb->actual_length);
Holger Schurig9012b282007-05-25 11:27:16 -040065 */
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
82 * @param cardp pointer usb_card_rec
83 * @return N/A
84 */
Holger Schurigac558ca2007-08-02 11:49:06 -040085static void if_usb_free(struct usb_card_rec *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
99 kfree(cardp->bulk_out_buffer);
100 cardp->bulk_out_buffer = NULL;
101
Holger Schurig9012b282007-05-25 11:27:16 -0400102 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200103}
104
David Woodhouse04c80f12007-12-06 12:51:00 +0000105static void if_usb_set_boot2_ver(struct lbs_private *priv)
106{
107 struct cmd_ds_set_boot2_ver b2_cmd;
David Woodhouse04c80f12007-12-06 12:51:00 +0000108
109 b2_cmd.action = 0;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000110 b2_cmd.version = priv->boot2_version;
David Woodhouse04c80f12007-12-06 12:51:00 +0000111
Dan Williams14e865b2007-12-10 15:11:23 -0500112 if (lbs_cmd(priv, CMD_SET_BOOT2_VER, b2_cmd, NULL, 0))
David Woodhouse04c80f12007-12-06 12:51:00 +0000113 lbs_deb_usb("Setting boot2 version failed\n");
David Woodhouse04c80f12007-12-06 12:51:00 +0000114}
115
116
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200117/**
118 * @brief sets the configuration values
119 * @param ifnum interface number
120 * @param id pointer to usb_device_id
121 * @return 0 on success, error code on failure
122 */
123static int if_usb_probe(struct usb_interface *intf,
124 const struct usb_device_id *id)
125{
126 struct usb_device *udev;
127 struct usb_host_interface *iface_desc;
128 struct usb_endpoint_descriptor *endpoint;
Holger Schurig69f90322007-11-23 15:43:44 +0100129 struct lbs_private *priv;
Holger Schurig435a1ac2007-05-25 12:41:52 -0400130 struct usb_card_rec *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200131 int i;
132
133 udev = interface_to_usbdev(intf);
134
Holger Schurig435a1ac2007-05-25 12:41:52 -0400135 cardp = kzalloc(sizeof(struct usb_card_rec), GFP_KERNEL);
136 if (!cardp) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200137 lbs_pr_err("Out of memory allocating private data.\n");
138 goto error;
139 }
140
Holger Schurig435a1ac2007-05-25 12:41:52 -0400141 cardp->udev = udev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142 iface_desc = intf->cur_altsetting;
143
Holger Schurig9012b282007-05-25 11:27:16 -0400144 lbs_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400146 le16_to_cpu(udev->descriptor.bcdUSB),
147 udev->descriptor.bDeviceClass,
148 udev->descriptor.bDeviceSubClass,
149 udev->descriptor.bDeviceProtocol);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200150
151 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
152 endpoint = &iface_desc->endpoint[i].desc;
153 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
154 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
155 USB_ENDPOINT_XFER_BULK)) {
156 /* we found a bulk in endpoint */
Holger Schurig9012b282007-05-25 11:27:16 -0400157 lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400158 le16_to_cpu(endpoint->wMaxPacketSize));
159 if (!(cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400160 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200161 "Rx URB allocation failed\n");
162 goto dealloc;
163 }
Holger Schurig435a1ac2007-05-25 12:41:52 -0400164 cardp->rx_urb_recall = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165
Holger Schurig435a1ac2007-05-25 12:41:52 -0400166 cardp->bulk_in_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400167 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400168 cardp->bulk_in_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169 (endpoint->
170 bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400171 lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200172 endpoint->bEndpointAddress);
173 }
174
175 if (((endpoint->
176 bEndpointAddress & USB_ENDPOINT_DIR_MASK) ==
177 USB_DIR_OUT)
178 && ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
179 USB_ENDPOINT_XFER_BULK)) {
180 /* We found bulk out endpoint */
David Woodhouse981f1872007-05-25 23:36:54 -0400181 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) {
Holger Schurig9012b282007-05-25 11:27:16 -0400182 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 "Tx URB allocation failed\n");
184 goto dealloc;
185 }
186
Holger Schurig435a1ac2007-05-25 12:41:52 -0400187 cardp->bulk_out_size =
David Woodhouse981f1872007-05-25 23:36:54 -0400188 le16_to_cpu(endpoint->wMaxPacketSize);
Holger Schurig9012b282007-05-25 11:27:16 -0400189 lbs_deb_usbd(&udev->dev,
David Woodhouse981f1872007-05-25 23:36:54 -0400190 "Bulk out size is %d\n",
191 le16_to_cpu(endpoint->wMaxPacketSize));
Holger Schurig435a1ac2007-05-25 12:41:52 -0400192 cardp->bulk_out_endpointAddr =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193 endpoint->bEndpointAddress;
Holger Schurig9012b282007-05-25 11:27:16 -0400194 lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 endpoint->bEndpointAddress);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400196 cardp->bulk_out_buffer =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200197 kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
198 GFP_KERNEL);
199
Holger Schurig435a1ac2007-05-25 12:41:52 -0400200 if (!cardp->bulk_out_buffer) {
Holger Schurig9012b282007-05-25 11:27:16 -0400201 lbs_deb_usbd(&udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200202 "Could not allocate buffer\n");
203 goto dealloc;
204 }
205 }
206 }
207
Dan Williams954ee162007-08-20 11:43:25 -0400208 /* Upload firmware */
209 cardp->rinfo.cardp = cardp;
210 if (if_usb_prog_firmware(cardp)) {
211 lbs_deb_usbd(&udev->dev, "FW upload failed");
212 goto err_prog_firmware;
213 }
Holger Schurig3874d0f2007-05-25 12:01:42 -0400214
Holger Schurig10078322007-11-15 18:05:47 -0500215 if (!(priv = lbs_add_card(cardp, &udev->dev)))
Dan Williams954ee162007-08-20 11:43:25 -0400216 goto err_prog_firmware;
217
218 cardp->priv = priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400219
Holger Schurig10078322007-11-15 18:05:47 -0500220 if (lbs_add_mesh(priv, &udev->dev))
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400221 goto err_add_mesh;
Javier Cardona51d84f52007-05-25 12:06:56 -0400222
Dan Williams954ee162007-08-20 11:43:25 -0400223 cardp->eth_dev = priv->dev;
224
Holger Schurig208fdd22007-05-25 12:17:06 -0400225 priv->hw_host_to_card = if_usb_host_to_card;
226 priv->hw_get_int_status = if_usb_get_int_status;
227 priv->hw_read_event_cause = if_usb_read_event_cause;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000228 priv->boot2_version = udev->descriptor.bcdDevice;
Holger Schurig208fdd22007-05-25 12:17:06 -0400229
Dan Williams954ee162007-08-20 11:43:25 -0400230 /* Delay 200 ms to waiting for the FW ready */
231 if_usb_submit_rx_urb(cardp);
232 msleep_interruptible(200);
David Woodhouseaa21c002007-12-08 20:04:36 +0000233 priv->fw_ready = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400234
Holger Schurig10078322007-11-15 18:05:47 -0500235 if (lbs_start_card(priv))
Dan Williams954ee162007-08-20 11:43:25 -0400236 goto err_start_card;
Holger Schurig32a74b72007-05-25 12:04:31 -0400237
David Woodhouse04c80f12007-12-06 12:51:00 +0000238 if_usb_set_boot2_ver(priv);
David Woodhouse2c944042007-12-06 14:41:08 +0000239
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240 usb_get_dev(udev);
Holger Schurig435a1ac2007-05-25 12:41:52 -0400241 usb_set_intfdata(intf, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200243 return 0;
244
Dan Williams954ee162007-08-20 11:43:25 -0400245err_start_card:
Holger Schurig10078322007-11-15 18:05:47 -0500246 lbs_remove_mesh(priv);
Marcelo Tosatti6a812152007-05-25 12:09:13 -0400247err_add_mesh:
Holger Schurig10078322007-11-15 18:05:47 -0500248 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400249err_prog_firmware:
250 if_usb_reset_device(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200251dealloc:
Holger Schurig435a1ac2007-05-25 12:41:52 -0400252 if_usb_free(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200253
254error:
255 return -ENOMEM;
256}
257
258/**
259 * @brief free resource and cleanup
Holger Schurig435a1ac2007-05-25 12:41:52 -0400260 * @param intf USB interface structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261 * @return N/A
262 */
263static void if_usb_disconnect(struct usb_interface *intf)
264{
265 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100266 struct lbs_private *priv = (struct lbs_private *) cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267
Dan Williams954ee162007-08-20 11:43:25 -0400268 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200269
Dan Williams954ee162007-08-20 11:43:25 -0400270 /* Update Surprise removed to TRUE */
271 cardp->surprise_removed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272
Dan Williams954ee162007-08-20 11:43:25 -0400273 if (priv) {
Dan Williams954ee162007-08-20 11:43:25 -0400274
David Woodhouseaa21c002007-12-08 20:04:36 +0000275 priv->surpriseremoved = 1;
Holger Schurig10078322007-11-15 18:05:47 -0500276 lbs_stop_card(priv);
277 lbs_remove_mesh(priv);
278 lbs_remove_card(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400279 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200280
Andres Salomonbe13f182007-11-20 17:43:55 -0500281 /* this is (apparently?) necessary for future usage of the device */
282 lbs_prepare_and_send_command(priv, CMD_802_11_RESET, CMD_ACT_HALT,
283 0, 0, NULL);
284
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200285 /* Unlink and free urb */
286 if_usb_free(cardp);
287
288 usb_set_intfdata(intf, NULL);
289 usb_put_dev(interface_to_usbdev(intf));
290
Dan Williams954ee162007-08-20 11:43:25 -0400291 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292}
293
294/**
295 * @brief This function download FW
Holger Schurig69f90322007-11-23 15:43:44 +0100296 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200297 * @return 0
298 */
Dan Williams954ee162007-08-20 11:43:25 -0400299static int if_prog_firmware(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301 struct FWData *fwdata;
302 struct fwheader *fwheader;
Dan Williams954ee162007-08-20 11:43:25 -0400303 u8 *firmware = cardp->fw->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304
305 fwdata = kmalloc(sizeof(struct FWData), GFP_ATOMIC);
306
307 if (!fwdata)
308 return -1;
309
310 fwheader = &fwdata->fwheader;
311
312 if (!cardp->CRC_OK) {
313 cardp->totalbytes = cardp->fwlastblksent;
314 cardp->fwseqnum = cardp->lastseqnum - 1;
315 }
316
Holger Schurig9012b282007-05-25 11:27:16 -0400317 /*
318 lbs_deb_usbd(&cardp->udev->dev, "totalbytes = %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400320 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200321
322 memcpy(fwheader, &firmware[cardp->totalbytes],
323 sizeof(struct fwheader));
324
325 cardp->fwlastblksent = cardp->totalbytes;
326 cardp->totalbytes += sizeof(struct fwheader);
327
Holger Schurig9012b282007-05-25 11:27:16 -0400328 /* lbs_deb_usbd(&cardp->udev->dev,"Copy Data\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200329 memcpy(fwdata->data, &firmware[cardp->totalbytes],
David Woodhouse981f1872007-05-25 23:36:54 -0400330 le32_to_cpu(fwdata->fwheader.datalength));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331
Holger Schurig9012b282007-05-25 11:27:16 -0400332 /*
333 lbs_deb_usbd(&cardp->udev->dev,
David Woodhousebb793e22007-05-25 23:38:14 -0400334 "Data length = %d\n", le32_to_cpu(fwdata->fwheader.datalength));
Holger Schurig9012b282007-05-25 11:27:16 -0400335 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200336
337 cardp->fwseqnum = cardp->fwseqnum + 1;
338
David Woodhouse981f1872007-05-25 23:36:54 -0400339 fwdata->seqnum = cpu_to_le32(cardp->fwseqnum);
340 cardp->lastseqnum = cardp->fwseqnum;
341 cardp->totalbytes += le32_to_cpu(fwdata->fwheader.datalength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342
David Woodhouse981f1872007-05-25 23:36:54 -0400343 if (fwheader->dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400344 /*
David Woodhouse981f1872007-05-25 23:36:54 -0400345 lbs_deb_usbd(&cardp->udev->dev, "There are data to follow\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400346 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200347 "seqnum = %d totalbytes = %d\n", cardp->fwseqnum,
348 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400349 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200350 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400351 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352
David Woodhousebb793e22007-05-25 23:38:14 -0400353 } else if (fwdata->fwheader.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400354 /*
355 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200356 "Host has finished FW downloading\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400357 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200358 "Donwloading FW JUMP BLOCK\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400359 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200360 memcpy(cardp->bulk_out_buffer, fwheader, FW_DATA_XMIT_SIZE);
Dan Williams954ee162007-08-20 11:43:25 -0400361 usb_tx_block(cardp, cardp->bulk_out_buffer, FW_DATA_XMIT_SIZE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200362 cardp->fwfinalblk = 1;
363 }
364
Holger Schurig9012b282007-05-25 11:27:16 -0400365 /*
366 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200367 "The firmware download is done size is %d\n",
368 cardp->totalbytes);
Holger Schurig9012b282007-05-25 11:27:16 -0400369 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370
371 kfree(fwdata);
372
373 return 0;
374}
375
Dan Williams954ee162007-08-20 11:43:25 -0400376static int if_usb_reset_device(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377{
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000378 struct cmd_ds_command *cmd = (void *)&cardp->bulk_out_buffer[4];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380
Holger Schurig3874d0f2007-05-25 12:01:42 -0400381 lbs_deb_enter(LBS_DEB_USB);
382
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000383 *(__le32 *)cardp->bulk_out_buffer = cpu_to_le32(CMD_TYPE_REQUEST);
384
385 cmd->command = cpu_to_le16(CMD_802_11_RESET);
386 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
387 cmd->result = cpu_to_le16(0);
388 cmd->seqnum = cpu_to_le16(0x5a5a);
389 cmd->params.reset.action = cpu_to_le16(CMD_ACT_HALT);
390 usb_tx_block(cardp, cardp->bulk_out_buffer, 4 + S_DS_GEN + sizeof(struct cmd_ds_802_11_reset));
391
392 msleep(10);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200393 ret = usb_reset_device(cardp->udev);
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000394 msleep(10);
Holger Schurig3874d0f2007-05-25 12:01:42 -0400395
396 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
397
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200398 return ret;
399}
400
401/**
402 * @brief This function transfer the data to the device.
Holger Schurig69f90322007-11-23 15:43:44 +0100403 * @param priv pointer to struct lbs_private
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 * @param payload pointer to payload data
405 * @param nb data length
406 * @return 0 or -1
407 */
Dan Williams954ee162007-08-20 11:43:25 -0400408static int usb_tx_block(struct usb_card_rec *cardp, u8 * payload, u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200409{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200410 int ret = -1;
411
412 /* check if device is removed */
Dan Williams954ee162007-08-20 11:43:25 -0400413 if (cardp->surprise_removed) {
Holger Schurig9012b282007-05-25 11:27:16 -0400414 lbs_deb_usbd(&cardp->udev->dev, "Device removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415 goto tx_ret;
416 }
417
418 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev,
419 usb_sndbulkpipe(cardp->udev,
420 cardp->bulk_out_endpointAddr),
Dan Williams954ee162007-08-20 11:43:25 -0400421 payload, nb, if_usb_write_bulk_callback, cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200422
423 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET;
424
425 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) {
426 /* transfer failed */
David Woodhouse0856e682007-12-07 15:12:26 +0000427 lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200428 ret = -1;
429 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400430 /* lbs_deb_usbd(&cardp->udev->dev, "usb_submit_urb success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431 ret = 0;
432 }
433
434tx_ret:
435 return ret;
436}
437
Dan Williams954ee162007-08-20 11:43:25 -0400438static int __if_usb_submit_rx_urb(struct usb_card_rec *cardp,
439 void (*callbackfn)(struct urb *urb))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200441 struct sk_buff *skb;
442 struct read_cb_info *rinfo = &cardp->rinfo;
443 int ret = -1;
444
445 if (!(skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE))) {
446 lbs_pr_err("No free skb\n");
447 goto rx_ret;
448 }
449
450 rinfo->skb = skb;
451
452 /* Fill the receive configuration URB and initialise the Rx call back */
453 usb_fill_bulk_urb(cardp->rx_urb, cardp->udev,
454 usb_rcvbulkpipe(cardp->udev,
455 cardp->bulk_in_endpointAddr),
Dan Williams4269e2a2007-05-10 23:10:18 -0400456 (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457 MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn,
458 rinfo);
459
460 cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
461
Holger Schurig9012b282007-05-25 11:27:16 -0400462 /* lbs_deb_usbd(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 if ((ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC))) {
464 /* handle failure conditions */
David Woodhouse0856e682007-12-07 15:12:26 +0000465 lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000466 kfree_skb(skb);
467 rinfo->skb = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200468 ret = -1;
469 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400470 /* lbs_deb_usbd(&cardp->udev->dev, "Submit Rx URB success\n"); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471 ret = 0;
472 }
473
474rx_ret:
475 return ret;
476}
477
Dan Williams954ee162007-08-20 11:43:25 -0400478static int if_usb_submit_rx_urb_fwload(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479{
Dan Williams954ee162007-08-20 11:43:25 -0400480 return __if_usb_submit_rx_urb(cardp, &if_usb_receive_fwload);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481}
482
Dan Williams954ee162007-08-20 11:43:25 -0400483static int if_usb_submit_rx_urb(struct usb_card_rec *cardp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200484{
Dan Williams954ee162007-08-20 11:43:25 -0400485 return __if_usb_submit_rx_urb(cardp, &if_usb_receive);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486}
487
488static void if_usb_receive_fwload(struct urb *urb)
489{
490 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400492 struct usb_card_rec *cardp = (struct usb_card_rec *)rinfo->cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493 struct fwsyncheader *syncfwheader;
494 struct bootcmdrespStr bootcmdresp;
495
496 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400497 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498 "URB status is failed during fw load\n");
499 kfree_skb(skb);
500 return;
501 }
502
503 if (cardp->bootcmdresp == 0) {
504 memcpy (&bootcmdresp, skb->data + IPFIELD_ALIGN_OFFSET,
505 sizeof(bootcmdresp));
David Woodhouse981f1872007-05-25 23:36:54 -0400506 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400508 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200509 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400510 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200511 "Received valid boot command response\n");
512 return;
513 }
David Woodhouse981f1872007-05-25 23:36:54 -0400514 if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000515 if (bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_REQUEST) ||
516 bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_DATA) ||
517 bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_INDICATION)) {
518 lbs_pr_info("Firmware already seems alive; resetting\n");
519 cardp->bootcmdresp = -1;
520 } else {
521 lbs_pr_info("boot cmd response wrong magic number (0x%x)\n",
522 le32_to_cpu(bootcmdresp.u32magicnumber));
523 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524 } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
525 lbs_pr_info(
526 "boot cmd response cmd_tag error (%d)\n",
527 bootcmdresp.u8cmd_tag);
528 } else if (bootcmdresp.u8result != BOOT_CMD_RESP_OK) {
529 lbs_pr_info(
530 "boot cmd response result error (%d)\n",
531 bootcmdresp.u8result);
532 } else {
533 cardp->bootcmdresp = 1;
Holger Schurig9012b282007-05-25 11:27:16 -0400534 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535 "Received valid boot command response\n");
536 }
537 kfree_skb(skb);
Dan Williams954ee162007-08-20 11:43:25 -0400538 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200539 return;
540 }
541
542 syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
543 if (!syncfwheader) {
Holger Schurig9012b282007-05-25 11:27:16 -0400544 lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200545 kfree_skb(skb);
546 return;
547 }
548
549 memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET,
550 sizeof(struct fwsyncheader));
551
552 if (!syncfwheader->cmd) {
Holger Schurig9012b282007-05-25 11:27:16 -0400553 /*
554 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555 "FW received Blk with correct CRC\n");
Holger Schurig9012b282007-05-25 11:27:16 -0400556 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557 "FW received Blk seqnum = %d\n",
558 syncfwheader->seqnum);
Holger Schurig9012b282007-05-25 11:27:16 -0400559 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560 cardp->CRC_OK = 1;
561 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400562 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 "FW received Blk with CRC error\n");
564 cardp->CRC_OK = 0;
565 }
566
567 kfree_skb(skb);
568
569 if (cardp->fwfinalblk) {
570 cardp->fwdnldover = 1;
571 goto exit;
572 }
573
Dan Williams954ee162007-08-20 11:43:25 -0400574 if_prog_firmware(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200575
Dan Williams954ee162007-08-20 11:43:25 -0400576 if_usb_submit_rx_urb_fwload(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200577exit:
578 kfree(syncfwheader);
579
580 return;
581
582}
583
584#define MRVDRV_MIN_PKT_LEN 30
585
586static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
587 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100588 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589{
590 if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE +
591 MESSAGE_HEADER_LEN || recvlength < MRVDRV_MIN_PKT_LEN) {
Holger Schurig9012b282007-05-25 11:27:16 -0400592 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593 "Packet length is Invalid\n");
594 kfree_skb(skb);
595 return;
596 }
597
598 skb_reserve(skb, IPFIELD_ALIGN_OFFSET);
599 skb_put(skb, recvlength);
600 skb_pull(skb, MESSAGE_HEADER_LEN);
Holger Schurig10078322007-11-15 18:05:47 -0500601 lbs_process_rxed_packet(priv, skb);
Holger Schurig634b8f42007-05-25 13:05:16 -0400602 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603}
604
605static inline void process_cmdrequest(int recvlength, u8 *recvbuff,
606 struct sk_buff *skb,
607 struct usb_card_rec *cardp,
Holger Schurig69f90322007-11-23 15:43:44 +0100608 struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609{
610 u8 *cmdbuf;
611 if (recvlength > MRVDRV_SIZE_OF_CMD_BUFFER) {
Holger Schurig9012b282007-05-25 11:27:16 -0400612 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613 "The receive buffer is too large\n");
614 kfree_skb(skb);
615 return;
616 }
617
618 if (!in_interrupt())
619 BUG();
620
David Woodhouseaa21c002007-12-08 20:04:36 +0000621 spin_lock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622 /* take care of cur_cmd = NULL case by reading the
623 * data to clear the interrupt */
David Woodhouseaa21c002007-12-08 20:04:36 +0000624 if (!priv->cur_cmd) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400625 cmdbuf = priv->upld_buf;
David Woodhouseaa21c002007-12-08 20:04:36 +0000626 priv->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 } else
David Woodhouseaa21c002007-12-08 20:04:36 +0000628 cmdbuf = priv->cur_cmd->bufvirtualaddr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629
Holger Schurigc95c7f92007-08-02 11:49:45 -0400630 cardp->usb_int_cause |= MRVDRV_CMD_UPLD_RDY;
Holger Schurig634b8f42007-05-25 13:05:16 -0400631 priv->upld_len = (recvlength - MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632 memcpy(cmdbuf, recvbuff + MESSAGE_HEADER_LEN,
Holger Schurig634b8f42007-05-25 13:05:16 -0400633 priv->upld_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634
635 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500636 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000637 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638
Holger Schurig9012b282007-05-25 11:27:16 -0400639 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200640 "Wake up main thread to handle cmd response\n");
641
642 return;
643}
644
645/**
646 * @brief This function reads of the packet into the upload buff,
647 * wake up the main thread and initialise the Rx callack.
648 *
649 * @param urb pointer to struct urb
650 * @return N/A
651 */
652static void if_usb_receive(struct urb *urb)
653{
654 struct read_cb_info *rinfo = (struct read_cb_info *)urb->context;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655 struct sk_buff *skb = rinfo->skb;
Dan Williams954ee162007-08-20 11:43:25 -0400656 struct usb_card_rec *cardp = (struct usb_card_rec *) rinfo->cardp;
Holger Schurig69f90322007-11-23 15:43:44 +0100657 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658
659 int recvlength = urb->actual_length;
660 u8 *recvbuff = NULL;
Dan Williams8362cd42007-08-03 09:40:55 -0400661 u32 recvtype = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662
Holger Schurig9012b282007-05-25 11:27:16 -0400663 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200664
665 if (recvlength) {
Dan Williams8362cd42007-08-03 09:40:55 -0400666 __le32 tmp;
667
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200668 if (urb->status) {
Holger Schurig9012b282007-05-25 11:27:16 -0400669 lbs_deb_usbd(&cardp->udev->dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200670 "URB status is failed\n");
671 kfree_skb(skb);
672 goto setup_for_next;
673 }
674
675 recvbuff = skb->data + IPFIELD_ALIGN_OFFSET;
Dan Williams8362cd42007-08-03 09:40:55 -0400676 memcpy(&tmp, recvbuff, sizeof(u32));
677 recvtype = le32_to_cpu(tmp);
Holger Schurig9012b282007-05-25 11:27:16 -0400678 lbs_deb_usbd(&cardp->udev->dev,
Dan Williams8362cd42007-08-03 09:40:55 -0400679 "Recv length = 0x%x, Recv type = 0x%X\n",
680 recvlength, recvtype);
David Woodhouse77d8cf22007-11-28 16:20:51 +0000681 } else if (urb->status) {
682 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200683 goto rx_exit;
David Woodhouse77d8cf22007-11-28 16:20:51 +0000684 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686 switch (recvtype) {
687 case CMD_TYPE_DATA:
688 process_cmdtypedata(recvlength, skb, cardp, priv);
689 break;
690
691 case CMD_TYPE_REQUEST:
692 process_cmdrequest(recvlength, recvbuff, skb, cardp, priv);
693 break;
694
695 case CMD_TYPE_INDICATION:
696 /* Event cause handling */
David Woodhouseaa21c002007-12-08 20:04:36 +0000697 spin_lock(&priv->driver_lock);
David Woodhouse981f1872007-05-25 23:36:54 -0400698 cardp->usb_event_cause = le32_to_cpu(*(__le32 *) (recvbuff + MESSAGE_HEADER_LEN));
Holger Schurig9012b282007-05-25 11:27:16 -0400699 lbs_deb_usbd(&cardp->udev->dev,"**EVENT** 0x%X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700 cardp->usb_event_cause);
701 if (cardp->usb_event_cause & 0xffff0000) {
Holger Schurig10078322007-11-15 18:05:47 -0500702 lbs_send_tx_feedback(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000703 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200704 break;
705 }
David Woodhouse981f1872007-05-25 23:36:54 -0400706 cardp->usb_event_cause <<= 3;
Holger Schurigc95c7f92007-08-02 11:49:45 -0400707 cardp->usb_int_cause |= MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708 kfree_skb(skb);
David Woodhouse4f679492007-12-10 14:58:37 -0500709 lbs_interrupt(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000710 spin_unlock(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711 goto rx_exit;
712 default:
Dan Williams8362cd42007-08-03 09:40:55 -0400713 lbs_deb_usbd(&cardp->udev->dev, "Unknown command type 0x%X\n",
714 recvtype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200715 kfree_skb(skb);
716 break;
717 }
718
719setup_for_next:
Dan Williams954ee162007-08-20 11:43:25 -0400720 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721rx_exit:
Holger Schurig9012b282007-05-25 11:27:16 -0400722 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723}
724
725/**
726 * @brief This function downloads data to FW
Holger Schurig69f90322007-11-23 15:43:44 +0100727 * @param priv pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200728 * @param type type of data
729 * @param buf pointer to data buffer
730 * @param len number of bytes
731 * @return 0 or -1
732 */
Holger Schurig69f90322007-11-23 15:43:44 +0100733static int if_usb_host_to_card(struct lbs_private *priv,
734 u8 type,
735 u8 *payload,
736 u16 nb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737{
Holger Schurig634b8f42007-05-25 13:05:16 -0400738 struct usb_card_rec *cardp = (struct usb_card_rec *)priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
Holger Schurig9012b282007-05-25 11:27:16 -0400740 lbs_deb_usbd(&cardp->udev->dev,"*** type = %u\n", type);
741 lbs_deb_usbd(&cardp->udev->dev,"size after = %d\n", nb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200742
743 if (type == MVMS_CMD) {
Dan Williams8362cd42007-08-03 09:40:55 -0400744 __le32 tmp = cpu_to_le32(CMD_TYPE_REQUEST);
Holger Schurig634b8f42007-05-25 13:05:16 -0400745 priv->dnld_sent = DNLD_CMD_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200746 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
747 MESSAGE_HEADER_LEN);
748
749 } else {
Dan Williams8362cd42007-08-03 09:40:55 -0400750 __le32 tmp = cpu_to_le32(CMD_TYPE_DATA);
Holger Schurig634b8f42007-05-25 13:05:16 -0400751 priv->dnld_sent = DNLD_DATA_SENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752 memcpy(cardp->bulk_out_buffer, (u8 *) & tmp,
753 MESSAGE_HEADER_LEN);
754 }
755
756 memcpy((cardp->bulk_out_buffer + MESSAGE_HEADER_LEN), payload, nb);
757
Dan Williams954ee162007-08-20 11:43:25 -0400758 return usb_tx_block(cardp, cardp->bulk_out_buffer,
Dan Williams8362cd42007-08-03 09:40:55 -0400759 nb + MESSAGE_HEADER_LEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200760}
761
David Woodhouseaa21c002007-12-08 20:04:36 +0000762/* called with priv->driver_lock held */
Holger Schurig69f90322007-11-23 15:43:44 +0100763static int if_usb_get_int_status(struct lbs_private *priv, u8 *ireg)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764{
Holger Schurig634b8f42007-05-25 13:05:16 -0400765 struct usb_card_rec *cardp = priv->card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200766
767 *ireg = cardp->usb_int_cause;
768 cardp->usb_int_cause = 0;
769
Holger Schurig9012b282007-05-25 11:27:16 -0400770 lbs_deb_usbd(&cardp->udev->dev,"Int cause is 0x%X\n", *ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200771
772 return 0;
773}
774
Holger Schurig69f90322007-11-23 15:43:44 +0100775static int if_usb_read_event_cause(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200776{
Holger Schurig634b8f42007-05-25 13:05:16 -0400777 struct usb_card_rec *cardp = priv->card;
Dan Williams954ee162007-08-20 11:43:25 -0400778
David Woodhouseaa21c002007-12-08 20:04:36 +0000779 priv->eventcause = cardp->usb_event_cause;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200780 /* Re-submit rx urb here to avoid event lost issue */
Dan Williams954ee162007-08-20 11:43:25 -0400781 if_usb_submit_rx_urb(cardp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782 return 0;
783}
784
Dan Williams9e22cb62007-08-02 11:14:49 -0400785/**
786 * @brief This function issues Boot command to the Boot2 code
787 * @param ivalue 1:Boot from FW by USB-Download
788 * 2:Boot from FW in EEPROM
789 * @return 0
790 */
Dan Williams954ee162007-08-20 11:43:25 -0400791static int if_usb_issue_boot_command(struct usb_card_rec *cardp, int ivalue)
Dan Williams9e22cb62007-08-02 11:14:49 -0400792{
Dan Williams954ee162007-08-20 11:43:25 -0400793 struct bootcmdstr sbootcmd;
Dan Williams9e22cb62007-08-02 11:14:49 -0400794 int i;
795
796 /* Prepare command */
797 sbootcmd.u32magicnumber = cpu_to_le32(BOOT_CMD_MAGIC_NUMBER);
798 sbootcmd.u8cmd_tag = ivalue;
799 for (i=0; i<11; i++)
800 sbootcmd.au8dumy[i]=0x00;
801 memcpy(cardp->bulk_out_buffer, &sbootcmd, sizeof(struct bootcmdstr));
802
803 /* Issue command */
Dan Williams954ee162007-08-20 11:43:25 -0400804 usb_tx_block(cardp, cardp->bulk_out_buffer, sizeof(struct bootcmdstr));
Dan Williams9e22cb62007-08-02 11:14:49 -0400805
806 return 0;
807}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
809
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400810/**
811 * @brief This function checks the validity of Boot2/FW image.
812 *
813 * @param data pointer to image
814 * len image length
815 * @return 0 or -1
816 */
817static int check_fwfile_format(u8 *data, u32 totlen)
818{
819 u32 bincmd, exit;
820 u32 blksize, offset, len;
821 int ret;
822
823 ret = 1;
824 exit = len = 0;
825
826 do {
827 struct fwheader *fwh = (void *)data;
828
829 bincmd = le32_to_cpu(fwh->dnldcmd);
830 blksize = le32_to_cpu(fwh->datalength);
831 switch (bincmd) {
832 case FW_HAS_DATA_TO_RECV:
833 offset = sizeof(struct fwheader) + blksize;
834 data += offset;
835 len += offset;
836 if (len >= totlen)
837 exit = 1;
838 break;
839 case FW_HAS_LAST_BLOCK:
840 exit = 1;
841 ret = 0;
842 break;
843 default:
844 exit = 1;
845 break;
846 }
847 } while (!exit);
848
849 if (ret)
850 lbs_pr_err("firmware file format check FAIL\n");
851 else
852 lbs_deb_fw("firmware file format check PASS\n");
853
854 return ret;
855}
856
857
Dan Williams954ee162007-08-20 11:43:25 -0400858static int if_usb_prog_firmware(struct usb_card_rec *cardp)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400859{
Dan Williams954ee162007-08-20 11:43:25 -0400860 int i = 0;
861 static int reset_count = 10;
862 int ret = 0;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400863
Dan Williams954ee162007-08-20 11:43:25 -0400864 lbs_deb_enter(LBS_DEB_USB);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400865
Holger Schurig10078322007-11-15 18:05:47 -0500866 if ((ret = request_firmware(&cardp->fw, lbs_fw_name,
Dan Williams954ee162007-08-20 11:43:25 -0400867 &cardp->udev->dev)) < 0) {
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400868 lbs_pr_err("request_firmware() failed with %#x\n", ret);
Holger Schurig10078322007-11-15 18:05:47 -0500869 lbs_pr_err("firmware %s not found\n", lbs_fw_name);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400870 goto done;
871 }
872
Dan Williams954ee162007-08-20 11:43:25 -0400873 if (check_fwfile_format(cardp->fw->data, cardp->fw->size))
874 goto release_fw;
875
876restart:
877 if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
878 lbs_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
879 ret = -1;
880 goto release_fw;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400881 }
882
Dan Williams954ee162007-08-20 11:43:25 -0400883 cardp->bootcmdresp = 0;
884 do {
885 int j = 0;
886 i++;
887 /* Issue Boot command = 1, Boot from Download-FW */
888 if_usb_issue_boot_command(cardp, BOOT_CMD_FW_BY_USB);
889 /* wait for command response */
890 do {
891 j++;
892 msleep_interruptible(100);
893 } while (cardp->bootcmdresp == 0 && j < 10);
894 } while (cardp->bootcmdresp == 0 && i < 5);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400895
David Woodhouse6d35fdf2007-12-08 23:49:06 +0000896 if (cardp->bootcmdresp <= 0) {
Dan Williams954ee162007-08-20 11:43:25 -0400897 if (--reset_count >= 0) {
898 if_usb_reset_device(cardp);
899 goto restart;
900 }
901 return -1;
902 }
903
904 i = 0;
905
906 cardp->totalbytes = 0;
907 cardp->fwlastblksent = 0;
908 cardp->CRC_OK = 1;
909 cardp->fwdnldover = 0;
910 cardp->fwseqnum = -1;
911 cardp->totalbytes = 0;
912 cardp->fwfinalblk = 0;
913
914 if_prog_firmware(cardp);
915
916 do {
917 lbs_deb_usbd(&cardp->udev->dev,"Wlan sched timeout\n");
918 i++;
919 msleep_interruptible(100);
920 if (cardp->surprise_removed || i >= 20)
921 break;
922 } while (!cardp->fwdnldover);
923
924 if (!cardp->fwdnldover) {
925 lbs_pr_info("failed to load fw, resetting device!\n");
926 if (--reset_count >= 0) {
927 if_usb_reset_device(cardp);
928 goto restart;
929 }
930
931 lbs_pr_info("FW download failure, time = %d ms\n", i * 100);
932 ret = -1;
933 goto release_fw;
934 }
935
936release_fw:
937 release_firmware(cardp->fw);
938 cardp->fw = NULL;
939
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400940done:
Dan Williams954ee162007-08-20 11:43:25 -0400941 lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400942 return ret;
943}
944
945
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200946#ifdef CONFIG_PM
947static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
948{
949 struct usb_card_rec *cardp = usb_get_intfdata(intf);
Holger Schurig69f90322007-11-23 15:43:44 +0100950 struct lbs_private *priv = cardp->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200951
Holger Schurig9012b282007-05-25 11:27:16 -0400952 lbs_deb_enter(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953
David Woodhouseaa21c002007-12-08 20:04:36 +0000954 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200955 return -1;
956
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400957 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
958 /* Mesh autostart must be activated while sleeping
959 * On resume it will go back to the current state
960 */
961 struct cmd_ds_mesh_access mesh_access;
962 memset(&mesh_access, 0, sizeof(mesh_access));
963 mesh_access.data[0] = cpu_to_le32(1);
Holger Schurig10078322007-11-15 18:05:47 -0500964 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400965 CMD_MESH_ACCESS,
966 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
967 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
968 }
969
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 netif_device_detach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400971 netif_device_detach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972
973 /* Unlink tx & rx urb */
974 usb_kill_urb(cardp->tx_urb);
975 usb_kill_urb(cardp->rx_urb);
976
977 cardp->rx_urb_recall = 1;
978
Holger Schurig9012b282007-05-25 11:27:16 -0400979 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980 return 0;
981}
982
983static int if_usb_resume(struct usb_interface *intf)
984{
985 struct usb_card_rec *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
990 cardp->rx_urb_recall = 0;
991
992 if_usb_submit_rx_urb(cardp->priv);
993
994 netif_device_attach(cardp->eth_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400995 netif_device_attach(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400997 if (priv->mesh_dev && !priv->mesh_autostart_enabled) {
998 /* Mesh autostart was activated while sleeping
999 * Disable it if appropriate
1000 */
1001 struct cmd_ds_mesh_access mesh_access;
1002 memset(&mesh_access, 0, sizeof(mesh_access));
1003 mesh_access.data[0] = cpu_to_le32(0);
Holger Schurig10078322007-11-15 18:05:47 -05001004 lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -04001005 CMD_MESH_ACCESS,
1006 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
1007 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
1008 }
1009
Holger Schurig9012b282007-05-25 11:27:16 -04001010 lbs_deb_leave(LBS_DEB_USB);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011 return 0;
1012}
1013#else
1014#define if_usb_suspend NULL
1015#define if_usb_resume NULL
1016#endif
1017
1018static struct usb_driver if_usb_driver = {
Andres Salomon798fbfe2007-11-20 17:44:04 -05001019 .name = DRV_NAME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020 .probe = if_usb_probe,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021 .disconnect = if_usb_disconnect,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022 .id_table = if_usb_table,
1023 .suspend = if_usb_suspend,
1024 .resume = if_usb_resume,
1025};
1026
Andres Salomon4fb910f2007-11-20 17:43:45 -05001027static int __init if_usb_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028{
Holger Schurig084708b2007-05-25 12:37:58 -04001029 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030
Holger Schurig084708b2007-05-25 12:37:58 -04001031 lbs_deb_enter(LBS_DEB_MAIN);
1032
Holger Schurig084708b2007-05-25 12:37:58 -04001033 ret = usb_register(&if_usb_driver);
1034
1035 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1036 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037}
1038
Andres Salomon4fb910f2007-11-20 17:43:45 -05001039static void __exit if_usb_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040{
Holger Schurig084708b2007-05-25 12:37:58 -04001041 lbs_deb_enter(LBS_DEB_MAIN);
1042
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043 usb_deregister(&if_usb_driver);
Holger Schurig084708b2007-05-25 12:37:58 -04001044
1045 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046}
Holger Schurig084708b2007-05-25 12:37:58 -04001047
1048module_init(if_usb_init_module);
1049module_exit(if_usb_exit_module);
1050
1051MODULE_DESCRIPTION("8388 USB WLAN Driver");
1052MODULE_AUTHOR("Marvell International Ltd.");
1053MODULE_LICENSE("GPL");