Commit 6d35fdfc authored by David Woodhouse's avatar David Woodhouse Committed by David S. Miller

libertas: cope with device which already has firmware loaded

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent a63b22bb
...@@ -374,20 +374,23 @@ static int if_prog_firmware(struct usb_card_rec *cardp) ...@@ -374,20 +374,23 @@ static int if_prog_firmware(struct usb_card_rec *cardp)
static int if_usb_reset_device(struct usb_card_rec *cardp) static int if_usb_reset_device(struct usb_card_rec *cardp)
{ {
struct cmd_ds_command *cmd = (void *)&cardp->bulk_out_buffer[4];
int ret; int ret;
struct lbs_private *priv = cardp->priv;
lbs_deb_enter(LBS_DEB_USB); lbs_deb_enter(LBS_DEB_USB);
/* Try a USB port reset first, if that fails send the reset *(__le32 *)cardp->bulk_out_buffer = cpu_to_le32(CMD_TYPE_REQUEST);
* command to the firmware.
*/ cmd->command = cpu_to_le16(CMD_802_11_RESET);
ret = usb_reset_device(cardp->udev); cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
if (!ret && priv) { cmd->result = cpu_to_le16(0);
cmd->seqnum = cpu_to_le16(0x5a5a);
cmd->params.reset.action = cpu_to_le16(CMD_ACT_HALT);
usb_tx_block(cardp, cardp->bulk_out_buffer, 4 + S_DS_GEN + sizeof(struct cmd_ds_802_11_reset));
msleep(10); msleep(10);
ret = lbs_reset_device(priv); ret = usb_reset_device(cardp->udev);
msleep(10); msleep(10);
}
lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret); lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);
...@@ -508,9 +511,15 @@ static void if_usb_receive_fwload(struct urb *urb) ...@@ -508,9 +511,15 @@ static void if_usb_receive_fwload(struct urb *urb)
return; return;
} }
if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) { if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
lbs_pr_info( if (bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_REQUEST) ||
"boot cmd response wrong magic number (0x%x)\n", bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_DATA) ||
bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_INDICATION)) {
lbs_pr_info("Firmware already seems alive; resetting\n");
cardp->bootcmdresp = -1;
} else {
lbs_pr_info("boot cmd response wrong magic number (0x%x)\n",
le32_to_cpu(bootcmdresp.u32magicnumber)); le32_to_cpu(bootcmdresp.u32magicnumber));
}
} else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) { } else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
lbs_pr_info( lbs_pr_info(
"boot cmd response cmd_tag error (%d)\n", "boot cmd response cmd_tag error (%d)\n",
...@@ -883,7 +892,7 @@ static int if_usb_prog_firmware(struct usb_card_rec *cardp) ...@@ -883,7 +892,7 @@ static int if_usb_prog_firmware(struct usb_card_rec *cardp)
} while (cardp->bootcmdresp == 0 && j < 10); } while (cardp->bootcmdresp == 0 && j < 10);
} while (cardp->bootcmdresp == 0 && i < 5); } while (cardp->bootcmdresp == 0 && i < 5);
if (cardp->bootcmdresp == 0) { if (cardp->bootcmdresp <= 0) {
if (--reset_count >= 0) { if (--reset_count >= 0) {
if_usb_reset_device(cardp); if_usb_reset_device(cardp);
goto restart; goto restart;
......
...@@ -70,7 +70,7 @@ struct usb_card_rec { ...@@ -70,7 +70,7 @@ struct usb_card_rec {
u8 rx_urb_recall; u8 rx_urb_recall;
u8 bootcmdresp; s8 bootcmdresp;
}; };
/** fwheader */ /** fwheader */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment