Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79132
b: refs/heads/master
c: 6d35fdf
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse authored and David S. Miller committed Jan 28, 2008
1 parent f6ba5c7 commit 023736f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a63b22bb5bb58d7a1d1b38aeac9a55c51565131c
refs/heads/master: 6d35fdfced3922aa27f130eec2b28857c39298fd
35 changes: 22 additions & 13 deletions trunk/drivers/net/wireless/libertas/if_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
struct cmd_ds_command *cmd = (void *)&cardp->bulk_out_buffer[4];
int ret;
struct lbs_private *priv = cardp->priv;

lbs_deb_enter(LBS_DEB_USB);

/* Try a USB port reset first, if that fails send the reset
* command to the firmware.
*/
*(__le32 *)cardp->bulk_out_buffer = cpu_to_le32(CMD_TYPE_REQUEST);

cmd->command = cpu_to_le16(CMD_802_11_RESET);
cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
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);
ret = usb_reset_device(cardp->udev);
if (!ret && priv) {
msleep(10);
ret = lbs_reset_device(priv);
msleep(10);
}
msleep(10);

lbs_deb_leave_args(LBS_DEB_USB, "ret %d", ret);

Expand Down Expand Up @@ -508,9 +511,15 @@ static void if_usb_receive_fwload(struct urb *urb)
return;
}
if (bootcmdresp.u32magicnumber != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
lbs_pr_info(
"boot cmd response wrong magic number (0x%x)\n",
le32_to_cpu(bootcmdresp.u32magicnumber));
if (bootcmdresp.u32magicnumber == cpu_to_le32(CMD_TYPE_REQUEST) ||
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));
}
} else if (bootcmdresp.u8cmd_tag != BOOT_CMD_FW_BY_USB) {
lbs_pr_info(
"boot cmd response cmd_tag error (%d)\n",
Expand Down Expand Up @@ -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 && i < 5);

if (cardp->bootcmdresp == 0) {
if (cardp->bootcmdresp <= 0) {
if (--reset_count >= 0) {
if_usb_reset_device(cardp);
goto restart;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/libertas/if_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct usb_card_rec {

u8 rx_urb_recall;

u8 bootcmdresp;
s8 bootcmdresp;
};

/** fwheader */
Expand Down

0 comments on commit 023736f

Please sign in to comment.