lkml.org 
[lkml]   [2009]   [Dec]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH] Toshiba Bluetooth enabler (rfkill)
From
On 12/4/09, Jes Sorensen <jes.sorensen@gmail.com> wrote:
> Hi,
>
> This patch adds a new driver to catch RFKill events to the Bluetooth
> device on modern Toshiba laptops. Without it, the Bluetooth device is
> simply lost on my Portege R500 when the RFKill switch is flipped, and
> doesn't come back until after a reboot.
>
> It binds to the TOS6205 ACPI device and doesn't touch any existing
> code.
>
> Cheers,
> Jes

Cool. This must be the shortest ACPI driver :-).

Try to send patches inline if possible, it makes them easier to review.


>
> +static int toshiba_bt_rfkill_add(struct acpi_device *device);
>

I think it's simpler to avoid the need for forward declarations, e.g.
by putting the driver structure after the ops functions. I suppose
it's a matter of taste though.

>
> +static struct acpi_driver toshiba_bt_rfkill_driver = {
> + .name = "Toshiba BT",
> + .class = "Toshiba",
> + .ids = bt_device_ids,
> + .ops = {
>

Please also set

.owner = THIS_MODULE,

in order to provide the correct information under
/sys/module/x/drivers and /sys/bus/acpi/drivers/x/module

>
> +static int toshiba_bluetooth_enable(acpi_handle handle)
> +{
> + acpi_status res1, res2;
> + acpi_integer result;
> +
> + /* Query ACPI to verify RFKill switch is set to on */
> + res1 = acpi_evaluate_integer(handle, "BTST", NULL, &result);
> + if (ACPI_FAILURE(res1) || !(result & 0x01))
> + return -EBUSY;
...
> +static int toshiba_bt_resume(struct acpi_device *device)
> +{
> + return toshiba_bluetooth_enable(device->handle);
> +}
>

Good to see you're handling resume, but what happens if the rfkill
switch is _not_ set to on? It looks like resume will return an error,
which will produce a warning message in the kernel log. I don't think
we want that.

> +static int toshiba_bt_rfkill_add(struct acpi_device *device)
> +{
> + acpi_status status;
> + acpi_integer bt_present;
> + int result = -ENODEV;
> +
> + status = acpi_evaluate_integer(device->handle, "_STA", NULL,
> + &bt_present);

I think this would benefit from an explanation.


/* Some models include a placeholder for the TOS6205 device, but don't
use it */ ?

/* May be disabled in BIOS */ ?

/* This device has _STA, not sure why, but let's honour it if disabled */ ?


That might give us an idea of what to do if we find a model which
doesn't have _STA :-).

Personally I'd err on the side of allowing for models without _STA.
You could handle that by checking that it exists before trying to
evaluate it. If there's some reason for not doing this, I think it
should also be mentioned in a comment.

>
> + result = acpi_bus_register_driver(&toshiba_bt_rfkill_driver);
> + if (result < 0) {
> + ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
> + "Error registering driver\n"));
> + return -ENODEV;
> + }

I would suggest you return result, instead of ignoring it and always
returning ENODEV.

> + depends on RFKILL
> + depends on BT

But you doesn't use either of these subsystems :-). The BT one
definitely seems bogus; please drop it.

I think you _could_ export an rfkill device. It would at least be
useful for trouble-shooting, because it lets userspace read the
current state in a generic way. So I would recommend doing so in the
future, even though most current userspaces won't do anything
interesting with it. Given that the BIOS sets the state when the
switch is turned off, I would recommend you expose it as a "hard"
block - so you don't let userspace change the state.

But I wouldn't let that hold the driver up, since it serves an
important purpose even without creating an rfkill device.

Regards
Alan


\
 
 \ /
  Last update: 2009-12-08 11:07    [W:0.088 / U:0.280 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site