Skip to content

Commit

Permalink
Bluetooth: bluecard: fix LED behavior
Browse files Browse the repository at this point in the history
Keep power LED on during activity.

LED timer races with power LED disabling in hci_close(), resulting in
power LED left on after closing.
Stop LED timer before disabling power LED.

BTW. On cards without an activity LED, the behavior is a bit weird:
The LED is on after hci_open() but only until the first data transfer.
Then it's off in idle and on during activity.
It could be improved by keeping the LED on in idle and flashing during
activity.

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Ondrej Zary authored and Marcel Holtmann committed Aug 7, 2017
1 parent df44f53 commit 859d235
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions drivers/bluetooth/bluecard_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static void bluecard_activity_led_timeout(u_long arg)
unsigned int iobase = info->p_dev->resource[0]->start;

if (test_bit(CARD_HAS_ACTIVITY_LED, &(info->hw_state))) {
/* Disable activity LED */
/* Disable activity LED, keep power LED enabled */
outb(0x08 | 0x20, iobase + 0x30);
} else {
/* Disable power LED */
Expand All @@ -175,8 +175,8 @@ static void bluecard_enable_activity_led(struct bluecard_info *info)
unsigned int iobase = info->p_dev->resource[0]->start;

if (test_bit(CARD_HAS_ACTIVITY_LED, &(info->hw_state))) {
/* Enable activity LED */
outb(0x10 | 0x40, iobase + 0x30);
/* Enable activity LED, keep power LED enabled */
outb(0x18 | 0x60, iobase + 0x30);

/* Stop the LED after HZ/4 */
mod_timer(&(info->timer), jiffies + HZ / 4);
Expand Down Expand Up @@ -624,7 +624,7 @@ static int bluecard_hci_open(struct hci_dev *hdev)
if (test_bit(CARD_HAS_PCCARD_ID, &(info->hw_state)))
bluecard_hci_set_baud_rate(hdev, DEFAULT_BAUD_RATE);

/* Enable LED */
/* Enable power LED */
outb(0x08 | 0x20, iobase + 0x30);

return 0;
Expand All @@ -638,7 +638,10 @@ static int bluecard_hci_close(struct hci_dev *hdev)

bluecard_hci_flush(hdev);

/* Disable LED */
/* Stop LED timer */
del_timer_sync(&(info->timer));

/* Disable power LED */
outb(0x00, iobase + 0x30);

return 0;
Expand Down

0 comments on commit 859d235

Please sign in to comment.