Message ID | 562A022D.1020302@gmail.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > >In my opinion it is better to ignore user key press after resume, if it > >fix our problem. Better as false-positive event. > > The following appears to work really well. The notification arrives > before rbtn_resume() has been executed, so the extra event is ignored. > > diff --git a/drivers/platform/x86/dell-rbtn.c > b/drivers/platform/x86/dell-rbtn.c > index cd410e3..1d64b72 100644 > --- a/drivers/platform/x86/dell-rbtn.c > +++ b/drivers/platform/x86/dell-rbtn.c > @@ -28,6 +28,7 @@ struct rbtn_data { > enum rbtn_type type; > struct rfkill *rfkill; > struct input_dev *input_dev; > + bool suspended; > }; > > > @@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > { "", 0 }, > }; > > +#ifdef CONFIG_PM_SLEEP > +static int rbtn_suspend(struct device *dev) > +{ > + struct acpi_device *device = to_acpi_device(dev); > + struct rbtn_data *rbtn_data = acpi_driver_data(device); > + > + rbtn_data->suspended = true; > + > + return 0; > +} > + > +static int rbtn_resume(struct device *dev) > +{ > + struct acpi_device *device = to_acpi_device(dev); > + struct rbtn_data *rbtn_data = acpi_driver_data(device); > + > + rbtn_data->suspended = false; > + > + return 0; > +} > +#endif > +static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > + > static struct acpi_driver rbtn_driver = { > .name = "dell-rbtn", > .ids = rbtn_ids, > + .drv.pm = &rbtn_pm_ops, > .ops = { > .add = rbtn_add, > .remove = rbtn_remove, > @@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > event) > { > struct rbtn_data *rbtn_data = device->driver_data; > > + if (rbtn_data->suspended) > + return; > + > if (event != 0x80) { > dev_info(&device->dev, "Received unknown event (0x%x)\n", > event); > Great, but is not there a better way to turn off .notify ACPI function when that ACPI device is suspended? Is not this ACPI device driver bug that it allows to call .notify method even if device is suspended?
On 23/10/2015 13:14, Pali Rohár wrote: > On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: >>> In my opinion it is better to ignore user key press after resume, if it >>> fix our problem. Better as false-positive event. >> >> The following appears to work really well. The notification arrives >> before rbtn_resume() has been executed, so the extra event is ignored. >> >> diff --git a/drivers/platform/x86/dell-rbtn.c >> b/drivers/platform/x86/dell-rbtn.c >> index cd410e3..1d64b72 100644 >> --- a/drivers/platform/x86/dell-rbtn.c >> +++ b/drivers/platform/x86/dell-rbtn.c >> @@ -28,6 +28,7 @@ struct rbtn_data { >> enum rbtn_type type; >> struct rfkill *rfkill; >> struct input_dev *input_dev; >> + bool suspended; >> }; >> >> >> @@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { >> { "", 0 }, >> }; >> >> +#ifdef CONFIG_PM_SLEEP >> +static int rbtn_suspend(struct device *dev) >> +{ >> + struct acpi_device *device = to_acpi_device(dev); >> + struct rbtn_data *rbtn_data = acpi_driver_data(device); >> + >> + rbtn_data->suspended = true; >> + >> + return 0; >> +} >> + >> +static int rbtn_resume(struct device *dev) >> +{ >> + struct acpi_device *device = to_acpi_device(dev); >> + struct rbtn_data *rbtn_data = acpi_driver_data(device); >> + >> + rbtn_data->suspended = false; >> + >> + return 0; >> +} >> +#endif >> +static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); >> + >> static struct acpi_driver rbtn_driver = { >> .name = "dell-rbtn", >> .ids = rbtn_ids, >> + .drv.pm = &rbtn_pm_ops, >> .ops = { >> .add = rbtn_add, >> .remove = rbtn_remove, >> @@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 >> event) >> { >> struct rbtn_data *rbtn_data = device->driver_data; >> >> + if (rbtn_data->suspended) >> + return; >> + >> if (event != 0x80) { >> dev_info(&device->dev, "Received unknown event (0x%x)\n", >> event); >> > > Great, but is not there a better way to turn off .notify ACPI function > when that ACPI device is suspended? > > Is not this ACPI device driver bug that it allows to call .notify method > even if device is suspended? I was surprised this worked, I was assuming that nothing could run before the resume callback, but I was wrong. I think it makes sense to treat ACPI devices in a special way, but I really don't know, we need someone more knowledgeable to answer these questions. However, while I was trying to figure things out, I stumbled upon the following: e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Fri, Oct 23, 2015 at 08:03:19PM +0200, Gabriele Mazzotta wrote: > On 23/10/2015 13:14, Pali Rohár wrote: > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > >>>In my opinion it is better to ignore user key press after resume, if it > >>>fix our problem. Better as false-positive event. > >> > >>The following appears to work really well. The notification arrives > >>before rbtn_resume() has been executed, so the extra event is ignored. > >> > >>diff --git a/drivers/platform/x86/dell-rbtn.c > >>b/drivers/platform/x86/dell-rbtn.c > >>index cd410e3..1d64b72 100644 > >>--- a/drivers/platform/x86/dell-rbtn.c > >>+++ b/drivers/platform/x86/dell-rbtn.c > >>@@ -28,6 +28,7 @@ struct rbtn_data { > >> enum rbtn_type type; > >> struct rfkill *rfkill; > >> struct input_dev *input_dev; > >>+ bool suspended; > >> }; > >> > >> > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > >> { "", 0 }, > >> }; > >> > >>+#ifdef CONFIG_PM_SLEEP > >>+static int rbtn_suspend(struct device *dev) > >>+{ > >>+ struct acpi_device *device = to_acpi_device(dev); > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >>+ > >>+ rbtn_data->suspended = true; > >>+ > >>+ return 0; > >>+} > >>+ > >>+static int rbtn_resume(struct device *dev) > >>+{ > >>+ struct acpi_device *device = to_acpi_device(dev); > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >>+ > >>+ rbtn_data->suspended = false; > >>+ > >>+ return 0; > >>+} > >>+#endif > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > >>+ > >> static struct acpi_driver rbtn_driver = { > >> .name = "dell-rbtn", > >> .ids = rbtn_ids, > >>+ .drv.pm = &rbtn_pm_ops, > >> .ops = { > >> .add = rbtn_add, > >> .remove = rbtn_remove, > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > >>event) > >> { > >> struct rbtn_data *rbtn_data = device->driver_data; > >> > >>+ if (rbtn_data->suspended) > >>+ return; > >>+ > >> if (event != 0x80) { > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > >> event); > >> > > > >Great, but is not there a better way to turn off .notify ACPI function > >when that ACPI device is suspended? > > > >Is not this ACPI device driver bug that it allows to call .notify method > >even if device is suspended? > > I was surprised this worked, I was assuming that nothing could run > before the resume callback, but I was wrong. I think it makes sense to > treat ACPI devices in a special way, but I really don't know, we need > someone more knowledgeable to answer these questions. However, while I > was trying to figure things out, I stumbled upon the following: > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > My understanding here though is that laptops with a Fn+RBTN key which changes the state of the radio in firmware should be handled via the rfkill interface rather than the inpu interface - so while this patch may appear to work, it's using the input interface to copy the rfkill interface/state. The proper solution, if I'm understanding this correctly - and apologies if not, some of this is new territory for me as well - would be for this device to be detected as firmware controlled (what we refer to as a SLIDER in the code - which needs to be renamed IMHO). Let's sort out this point, then we can pull in Rafael to make sure this is how to best deal with the spurious event on resume.
On Monday 26 October 2015 23:38:13 Darren Hart wrote: > My understanding here though is that laptops with a Fn+RBTN key which changes > the state of the radio in firmware should be handled via the rfkill interface > rather than the inpu interface - so while this patch may appear to work, it's > using the input interface to copy the rfkill interface/state. > Here is problem: ACPI device ABCE/RBTN (handled by dell-rbtn.ko) just receive events. It cannot set or change wireless state. For changing rfkill/wireless state is there Dell SMBIOS api and it is implemented in dell-laptop.ko. But due to bugs in that module, it is disabled for XPS machines. And problem is that on machines without HW switch you do not know if wifi switch is in ON or OFF mode. ACPI tell you just "key pressed". So for this reason Alex decided to export that event via input layer, because it is really just key press, not changing state. > The proper solution, if I'm understanding this correctly - and apologies if not, > some of this is new territory for me as well - would be for this device to be > detected as firmware controlled (what we refer to as a SLIDER in the code - > which needs to be renamed IMHO). > I understood that if you blacklist dell-rbtn.ko on that XPS machine, then firmware takes control and automatically turn ON/OFF wifi card. > Let's sort out this point, then we can pull in Rafael to make sure this is how > to best deal with the spurious event on resume. > For me solution (=ignore events when ACPI device is suspended) sounds good. I do not know if there is better way to implement it, maybe general linux device model should provide function "am_i_suspended?" instead tracking "suspend" state internally in each driver. But if such support in linux device or acpi model is not implemented, I'm fine with provided patch if it really works.
On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > On 23/10/2015 13:14, Pali Rohár wrote: > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > >>>In my opinion it is better to ignore user key press after resume, if it > >>>fix our problem. Better as false-positive event. > >> > >>The following appears to work really well. The notification arrives > >>before rbtn_resume() has been executed, so the extra event is ignored. > >> > >>diff --git a/drivers/platform/x86/dell-rbtn.c > >>b/drivers/platform/x86/dell-rbtn.c > >>index cd410e3..1d64b72 100644 > >>--- a/drivers/platform/x86/dell-rbtn.c > >>+++ b/drivers/platform/x86/dell-rbtn.c > >>@@ -28,6 +28,7 @@ struct rbtn_data { > >> enum rbtn_type type; > >> struct rfkill *rfkill; > >> struct input_dev *input_dev; > >>+ bool suspended; > >> }; > >> > >> > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > >> { "", 0 }, > >> }; > >> > >>+#ifdef CONFIG_PM_SLEEP > >>+static int rbtn_suspend(struct device *dev) > >>+{ > >>+ struct acpi_device *device = to_acpi_device(dev); > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >>+ > >>+ rbtn_data->suspended = true; > >>+ > >>+ return 0; > >>+} > >>+ > >>+static int rbtn_resume(struct device *dev) > >>+{ > >>+ struct acpi_device *device = to_acpi_device(dev); > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >>+ > >>+ rbtn_data->suspended = false; > >>+ > >>+ return 0; > >>+} > >>+#endif > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > >>+ > >> static struct acpi_driver rbtn_driver = { > >> .name = "dell-rbtn", > >> .ids = rbtn_ids, > >>+ .drv.pm = &rbtn_pm_ops, > >> .ops = { > >> .add = rbtn_add, > >> .remove = rbtn_remove, > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > >>event) > >> { > >> struct rbtn_data *rbtn_data = device->driver_data; > >> > >>+ if (rbtn_data->suspended) > >>+ return; > >>+ > >> if (event != 0x80) { > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > >> event); > >> > > > >Great, but is not there a better way to turn off .notify ACPI function > >when that ACPI device is suspended? > > > >Is not this ACPI device driver bug that it allows to call .notify method > >even if device is suspended? > > I was surprised this worked, I was assuming that nothing could run > before the resume callback, but I was wrong. I think it makes sense to > treat ACPI devices in a special way, but I really don't know, we need > someone more knowledgeable to answer these questions. However, while I > was trying to figure things out, I stumbled upon the following: > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). Gabriele, are you going to send this patch? I think that patch should be OK as it drop events when device is in suspend state (when it should not receive events)... Darren, what do you think about it?
On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > > On 23/10/2015 13:14, Pali Rohár wrote: > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > > >>>In my opinion it is better to ignore user key press after resume, if it > > >>>fix our problem. Better as false-positive event. > > >> > > >>The following appears to work really well. The notification arrives > > >>before rbtn_resume() has been executed, so the extra event is ignored. > > >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c > > >>b/drivers/platform/x86/dell-rbtn.c > > >>index cd410e3..1d64b72 100644 > > >>--- a/drivers/platform/x86/dell-rbtn.c > > >>+++ b/drivers/platform/x86/dell-rbtn.c > > >>@@ -28,6 +28,7 @@ struct rbtn_data { > > >> enum rbtn_type type; > > >> struct rfkill *rfkill; > > >> struct input_dev *input_dev; > > >>+ bool suspended; > > >> }; > > >> > > >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > > >> { "", 0 }, > > >> }; > > >> > > >>+#ifdef CONFIG_PM_SLEEP > > >>+static int rbtn_suspend(struct device *dev) > > >>+{ > > >>+ struct acpi_device *device = to_acpi_device(dev); > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > >>+ > > >>+ rbtn_data->suspended = true; > > >>+ > > >>+ return 0; > > >>+} > > >>+ > > >>+static int rbtn_resume(struct device *dev) > > >>+{ > > >>+ struct acpi_device *device = to_acpi_device(dev); > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > >>+ > > >>+ rbtn_data->suspended = false; > > >>+ > > >>+ return 0; > > >>+} > > >>+#endif > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > > >>+ > > >> static struct acpi_driver rbtn_driver = { > > >> .name = "dell-rbtn", > > >> .ids = rbtn_ids, > > >>+ .drv.pm = &rbtn_pm_ops, > > >> .ops = { > > >> .add = rbtn_add, > > >> .remove = rbtn_remove, > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > > >>event) > > >> { > > >> struct rbtn_data *rbtn_data = device->driver_data; > > >> > > >>+ if (rbtn_data->suspended) > > >>+ return; > > >>+ > > >> if (event != 0x80) { > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > > >> event); > > >> > > > > > >Great, but is not there a better way to turn off .notify ACPI function > > >when that ACPI device is suspended? > > > > > >Is not this ACPI device driver bug that it allows to call .notify method > > >even if device is suspended? > > > > I was surprised this worked, I was assuming that nothing could run > > before the resume callback, but I was wrong. I think it makes sense to > > treat ACPI devices in a special way, but I really don't know, we need > > someone more knowledgeable to answer these questions. However, while I > > was trying to figure things out, I stumbled upon the following: > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > > Gabriele, are you going to send this patch? > > I think that patch should be OK as it drop events when device is in > suspend state (when it should not receive events)... > > Darren, what do you think about it? > Sorry, this one has been difficult for me to track, but it's clearly an issue, and new systems are experiencing it as well. I'd like to get Rafael's opinion on disabling .notify ACPI function while suspended. +Rafael Has Dell been involved here? +Jared
On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: > On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: > > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > > > On 23/10/2015 13:14, Pali Rohár wrote: > > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > > > >>>In my opinion it is better to ignore user key press after resume, if it > > > >>>fix our problem. Better as false-positive event. > > > >> > > > >>The following appears to work really well. The notification arrives > > > >>before rbtn_resume() has been executed, so the extra event is ignored. > > > >> > > > >>diff --git a/drivers/platform/x86/dell-rbtn.c > > > >>b/drivers/platform/x86/dell-rbtn.c > > > >>index cd410e3..1d64b72 100644 > > > >>--- a/drivers/platform/x86/dell-rbtn.c > > > >>+++ b/drivers/platform/x86/dell-rbtn.c > > > >>@@ -28,6 +28,7 @@ struct rbtn_data { > > > >> enum rbtn_type type; > > > >> struct rfkill *rfkill; > > > >> struct input_dev *input_dev; > > > >>+ bool suspended; > > > >> }; > > > >> > > > >> > > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > > > >> { "", 0 }, > > > >> }; > > > >> > > > >>+#ifdef CONFIG_PM_SLEEP > > > >>+static int rbtn_suspend(struct device *dev) > > > >>+{ > > > >>+ struct acpi_device *device = to_acpi_device(dev); > > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > > >>+ > > > >>+ rbtn_data->suspended = true; > > > >>+ > > > >>+ return 0; > > > >>+} > > > >>+ > > > >>+static int rbtn_resume(struct device *dev) > > > >>+{ > > > >>+ struct acpi_device *device = to_acpi_device(dev); > > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > > >>+ > > > >>+ rbtn_data->suspended = false; > > > >>+ > > > >>+ return 0; > > > >>+} > > > >>+#endif > > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > > > >>+ > > > >> static struct acpi_driver rbtn_driver = { > > > >> .name = "dell-rbtn", > > > >> .ids = rbtn_ids, > > > >>+ .drv.pm = &rbtn_pm_ops, > > > >> .ops = { > > > >> .add = rbtn_add, > > > >> .remove = rbtn_remove, > > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > > > >>event) > > > >> { > > > >> struct rbtn_data *rbtn_data = device->driver_data; > > > >> > > > >>+ if (rbtn_data->suspended) > > > >>+ return; > > > >>+ > > > >> if (event != 0x80) { > > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > > > >> event); > > > >> > > > > > > > >Great, but is not there a better way to turn off .notify ACPI function > > > >when that ACPI device is suspended? > > > > > > > >Is not this ACPI device driver bug that it allows to call .notify method > > > >even if device is suspended? > > > > > > I was surprised this worked, I was assuming that nothing could run > > > before the resume callback, but I was wrong. I think it makes sense to > > > treat ACPI devices in a special way, but I really don't know, we need > > > someone more knowledgeable to answer these questions. However, while I > > > was trying to figure things out, I stumbled upon the following: > > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > > > > Gabriele, are you going to send this patch? > > > > I think that patch should be OK as it drop events when device is in > > suspend state (when it should not receive events)... > > > > Darren, what do you think about it? > > > > Sorry, this one has been difficult for me to track, but it's clearly an issue, > and new systems are experiencing it as well. > > I'd like to get Rafael's opinion on disabling .notify ACPI function while > suspended. > > +Rafael This by far wouldn't be enough, because drivers may install ACPI notify handlers by themselves and those are hooked up directly into the ACPICA code. Besides, some drivers may actually want to receive those events while the system is suspending or resuming, so I think this has to be addressed on a per-driver basis. > Has Dell been involved here? Not that I know of. Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: > On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: >> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: >> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: >> > > On 23/10/2015 13:14, Pali Rohár wrote: >> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: >> > > >>>In my opinion it is better to ignore user key press after resume, if it >> > > >>>fix our problem. Better as false-positive event. >> > > >> >> > > >>The following appears to work really well. The notification arrives >> > > >>before rbtn_resume() has been executed, so the extra event is ignored. >> > > >> >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c >> > > >>b/drivers/platform/x86/dell-rbtn.c >> > > >>index cd410e3..1d64b72 100644 >> > > >>--- a/drivers/platform/x86/dell-rbtn.c >> > > >>+++ b/drivers/platform/x86/dell-rbtn.c >> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { >> > > >> enum rbtn_type type; >> > > >> struct rfkill *rfkill; >> > > >> struct input_dev *input_dev; >> > > >>+ bool suspended; >> > > >> }; >> > > >> >> > > >> >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { >> > > >> { "", 0 }, >> > > >> }; >> > > >> >> > > >>+#ifdef CONFIG_PM_SLEEP >> > > >>+static int rbtn_suspend(struct device *dev) >> > > >>+{ >> > > >>+ struct acpi_device *device = to_acpi_device(dev); >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >> > > >>+ >> > > >>+ rbtn_data->suspended = true; >> > > >>+ >> > > >>+ return 0; >> > > >>+} >> > > >>+ >> > > >>+static int rbtn_resume(struct device *dev) >> > > >>+{ >> > > >>+ struct acpi_device *device = to_acpi_device(dev); >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >> > > >>+ >> > > >>+ rbtn_data->suspended = false; >> > > >>+ >> > > >>+ return 0; >> > > >>+} >> > > >>+#endif >> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); >> > > >>+ >> > > >> static struct acpi_driver rbtn_driver = { >> > > >> .name = "dell-rbtn", >> > > >> .ids = rbtn_ids, >> > > >>+ .drv.pm = &rbtn_pm_ops, >> > > >> .ops = { >> > > >> .add = rbtn_add, >> > > >> .remove = rbtn_remove, >> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 >> > > >>event) >> > > >> { >> > > >> struct rbtn_data *rbtn_data = device->driver_data; >> > > >> >> > > >>+ if (rbtn_data->suspended) >> > > >>+ return; >> > > >>+ >> > > >> if (event != 0x80) { >> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", >> > > >> event); >> > > >> >> > > > >> > > >Great, but is not there a better way to turn off .notify ACPI function >> > > >when that ACPI device is suspended? >> > > > >> > > >Is not this ACPI device driver bug that it allows to call .notify method >> > > >even if device is suspended? >> > > >> > > I was surprised this worked, I was assuming that nothing could run >> > > before the resume callback, but I was wrong. I think it makes sense to >> > > treat ACPI devices in a special way, but I really don't know, we need >> > > someone more knowledgeable to answer these questions. However, while I >> > > was trying to figure things out, I stumbled upon the following: >> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). >> > >> > Gabriele, are you going to send this patch? >> > >> > I think that patch should be OK as it drop events when device is in >> > suspend state (when it should not receive events)... >> > >> > Darren, what do you think about it? >> > >> >> Sorry, this one has been difficult for me to track, but it's clearly an issue, >> and new systems are experiencing it as well. >> >> I'd like to get Rafael's opinion on disabling .notify ACPI function while >> suspended. >> >> +Rafael > > This by far wouldn't be enough, because drivers may install ACPI notify > handlers by themselves and those are hooked up directly into the ACPICA > code. > > Besides, some drivers may actually want to receive those events while > the system is suspending or resuming, so I think this has to be addressed > on a per-driver basis. Hi, sorry, but I'm not sure I understood everything, so I'll try to briefly describe the problem and its current solution. Currently dell-rbtn listens for the notifications sent to an ACPI device and for notification sends an input event to userspace. The problem we have is that some BIOSes send an extra notification on resume and therefore we send an extra input event. What we want to do is to ignore this ACPI notification without affecting the systems whose BIOS does not send this extra notification. We know that not all of them send this notification. What I noticed is that the extra notification is issued by the _WAK method and always arrives before dell-rbtn has been resumed, so what I did is to add a flag that is set by the suspend and resume callbacks of the device driver. What we were wondering is whether this would be enough or we need to do something different, e.g. ignore all the notifications that arrived X seconds after the execution of the resume callback. Thanks, Gabriele >> Has Dell been involved here? > > Not that I know of. > > Thanks, > Rafael > -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Monday, December 21, 2015 04:34:58 PM Gabriele Mazzotta wrote: > 2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: > > On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: > >> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: > >> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > >> > > On 23/10/2015 13:14, Pali Rohár wrote: > >> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > >> > > >>>In my opinion it is better to ignore user key press after resume, if it > >> > > >>>fix our problem. Better as false-positive event. > >> > > >> > >> > > >>The following appears to work really well. The notification arrives > >> > > >>before rbtn_resume() has been executed, so the extra event is ignored. > >> > > >> > >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c > >> > > >>b/drivers/platform/x86/dell-rbtn.c > >> > > >>index cd410e3..1d64b72 100644 > >> > > >>--- a/drivers/platform/x86/dell-rbtn.c > >> > > >>+++ b/drivers/platform/x86/dell-rbtn.c > >> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { > >> > > >> enum rbtn_type type; > >> > > >> struct rfkill *rfkill; > >> > > >> struct input_dev *input_dev; > >> > > >>+ bool suspended; > >> > > >> }; > >> > > >> > >> > > >> > >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > >> > > >> { "", 0 }, > >> > > >> }; > >> > > >> > >> > > >>+#ifdef CONFIG_PM_SLEEP > >> > > >>+static int rbtn_suspend(struct device *dev) > >> > > >>+{ > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >> > > >>+ > >> > > >>+ rbtn_data->suspended = true; > >> > > >>+ > >> > > >>+ return 0; > >> > > >>+} > >> > > >>+ > >> > > >>+static int rbtn_resume(struct device *dev) > >> > > >>+{ > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > >> > > >>+ > >> > > >>+ rbtn_data->suspended = false; > >> > > >>+ > >> > > >>+ return 0; > >> > > >>+} > >> > > >>+#endif > >> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > >> > > >>+ > >> > > >> static struct acpi_driver rbtn_driver = { > >> > > >> .name = "dell-rbtn", > >> > > >> .ids = rbtn_ids, > >> > > >>+ .drv.pm = &rbtn_pm_ops, > >> > > >> .ops = { > >> > > >> .add = rbtn_add, > >> > > >> .remove = rbtn_remove, > >> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > >> > > >>event) > >> > > >> { > >> > > >> struct rbtn_data *rbtn_data = device->driver_data; > >> > > >> > >> > > >>+ if (rbtn_data->suspended) > >> > > >>+ return; > >> > > >>+ > >> > > >> if (event != 0x80) { > >> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > >> > > >> event); > >> > > >> > >> > > > > >> > > >Great, but is not there a better way to turn off .notify ACPI function > >> > > >when that ACPI device is suspended? > >> > > > > >> > > >Is not this ACPI device driver bug that it allows to call .notify method > >> > > >even if device is suspended? > >> > > > >> > > I was surprised this worked, I was assuming that nothing could run > >> > > before the resume callback, but I was wrong. I think it makes sense to > >> > > treat ACPI devices in a special way, but I really don't know, we need > >> > > someone more knowledgeable to answer these questions. However, while I > >> > > was trying to figure things out, I stumbled upon the following: > >> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > >> > > >> > Gabriele, are you going to send this patch? > >> > > >> > I think that patch should be OK as it drop events when device is in > >> > suspend state (when it should not receive events)... > >> > > >> > Darren, what do you think about it? > >> > > >> > >> Sorry, this one has been difficult for me to track, but it's clearly an issue, > >> and new systems are experiencing it as well. > >> > >> I'd like to get Rafael's opinion on disabling .notify ACPI function while > >> suspended. > >> > >> +Rafael > > > > This by far wouldn't be enough, because drivers may install ACPI notify > > handlers by themselves and those are hooked up directly into the ACPICA > > code. > > > > Besides, some drivers may actually want to receive those events while > > the system is suspending or resuming, so I think this has to be addressed > > on a per-driver basis. > > Hi, > > sorry, but I'm not sure I understood everything, so I'll try to > briefly describe the problem and its current solution. > > Currently dell-rbtn listens for the notifications sent to an ACPI > device and for notification sends an input event to userspace. > > The problem we have is that some BIOSes send an extra notification > on resume and therefore we send an extra input event. > > What we want to do is to ignore this ACPI notification without > affecting the systems whose BIOS does not send this extra > notification. We know that not all of them send this notification. > > What I noticed is that the extra notification is issued by the _WAK > method and always arrives before dell-rbtn has been resumed, so > what I did is to add a flag that is set by the suspend and resume > callbacks of the device driver. ACPI notifications are delivered asynchronously to drivers, so you'd need to flush kacpi_notify_wq in .resume(). That would make the driver wait for things it really doesn't need to wait for, so it would not be super-optimal. > What we were wondering is whether this would be enough or we > need to do something different, e.g. ignore all the notifications that > arrived X seconds after the execution of the resume callback. I'd try something like setting the flag from .suspend() and then adding a work item to clear it to kacpi_notify_wq from .resume(). Then you'll know that all of the pending notifications have been processed before your flag is cleared. That would require a new helper for adding work items to kacpi_notify_wq from drivers, but it shouldn't be too difficult to create one. Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Mon, Dec 21, 2015 at 11:34 PM, Gabriele Mazzotta <gabriele.mzt@gmail.com> wrote: > 2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: >> On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: >>> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: >>> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: >>> > > On 23/10/2015 13:14, Pali Rohár wrote: >>> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: >>> > > >>>In my opinion it is better to ignore user key press after resume, if it >>> > > >>>fix our problem. Better as false-positive event. >>> > > >> >>> > > >>The following appears to work really well. The notification arrives >>> > > >>before rbtn_resume() has been executed, so the extra event is ignored. >>> > > >> >>> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c >>> > > >>b/drivers/platform/x86/dell-rbtn.c >>> > > >>index cd410e3..1d64b72 100644 >>> > > >>--- a/drivers/platform/x86/dell-rbtn.c >>> > > >>+++ b/drivers/platform/x86/dell-rbtn.c >>> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { >>> > > >> enum rbtn_type type; >>> > > >> struct rfkill *rfkill; >>> > > >> struct input_dev *input_dev; >>> > > >>+ bool suspended; >>> > > >> }; >>> > > >> >>> > > >> >>> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { >>> > > >> { "", 0 }, >>> > > >> }; >>> > > >> >>> > > >>+#ifdef CONFIG_PM_SLEEP >>> > > >>+static int rbtn_suspend(struct device *dev) >>> > > >>+{ >>> > > >>+ struct acpi_device *device = to_acpi_device(dev); >>> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >>> > > >>+ >>> > > >>+ rbtn_data->suspended = true; >>> > > >>+ >>> > > >>+ return 0; >>> > > >>+} >>> > > >>+ >>> > > >>+static int rbtn_resume(struct device *dev) >>> > > >>+{ >>> > > >>+ struct acpi_device *device = to_acpi_device(dev); >>> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >>> > > >>+ >>> > > >>+ rbtn_data->suspended = false; >>> > > >>+ >>> > > >>+ return 0; >>> > > >>+} >>> > > >>+#endif >>> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); >>> > > >>+ >>> > > >> static struct acpi_driver rbtn_driver = { >>> > > >> .name = "dell-rbtn", >>> > > >> .ids = rbtn_ids, >>> > > >>+ .drv.pm = &rbtn_pm_ops, >>> > > >> .ops = { >>> > > >> .add = rbtn_add, >>> > > >> .remove = rbtn_remove, >>> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 >>> > > >>event) >>> > > >> { >>> > > >> struct rbtn_data *rbtn_data = device->driver_data; >>> > > >> >>> > > >>+ if (rbtn_data->suspended) >>> > > >>+ return; >>> > > >>+ >>> > > >> if (event != 0x80) { >>> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", >>> > > >> event); >>> > > >> >>> > > > >>> > > >Great, but is not there a better way to turn off .notify ACPI function >>> > > >when that ACPI device is suspended? >>> > > > >>> > > >Is not this ACPI device driver bug that it allows to call .notify method >>> > > >even if device is suspended? >>> > > >>> > > I was surprised this worked, I was assuming that nothing could run >>> > > before the resume callback, but I was wrong. I think it makes sense to >>> > > treat ACPI devices in a special way, but I really don't know, we need >>> > > someone more knowledgeable to answer these questions. However, while I >>> > > was trying to figure things out, I stumbled upon the following: >>> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). >>> > >>> > Gabriele, are you going to send this patch? >>> > >>> > I think that patch should be OK as it drop events when device is in >>> > suspend state (when it should not receive events)... >>> > >>> > Darren, what do you think about it? >>> > >>> >>> Sorry, this one has been difficult for me to track, but it's clearly an issue, >>> and new systems are experiencing it as well. >>> >>> I'd like to get Rafael's opinion on disabling .notify ACPI function while >>> suspended. >>> >>> +Rafael >> >> This by far wouldn't be enough, because drivers may install ACPI notify >> handlers by themselves and those are hooked up directly into the ACPICA >> code. >> >> Besides, some drivers may actually want to receive those events while >> the system is suspending or resuming, so I think this has to be addressed >> on a per-driver basis. > > Hi, > > sorry, but I'm not sure I understood everything, so I'll try to > briefly describe the problem and its current solution. > > Currently dell-rbtn listens for the notifications sent to an ACPI > device and for notification sends an input event to userspace. > > The problem we have is that some BIOSes send an extra notification > on resume and therefore we send an extra input event. > > What we want to do is to ignore this ACPI notification without > affecting the systems whose BIOS does not send this extra > notification. We know that not all of them send this notification. > > What I noticed is that the extra notification is issued by the _WAK > method and always arrives before dell-rbtn has been resumed, so > what I did is to add a flag that is set by the suspend and resume > callbacks of the device driver. Sorry I screw up my mail filter and I wasn't aware of this thread until now. BIOS sends this additional ACPI event for the systems with hardware switch so a driver can update its state; therefore this is done only once and therefore ignoring the ACPI event sent to dell rbtn once after resume is sufficient. I actually tried a solution similar to Gabriele's patch above (one with rbtn_suspend and rbtn_resume) a while ago and it works fine. If there is a conclusion and there is a patch to be tested, I am happy to test it on wider range (I should be able to find 5+ Dell systems that runs on dell-rbtn). > > What we were wondering is whether this would be enough or we > need to do something different, e.g. ignore all the notifications that > arrived X seconds after the execution of the resume callback. > > Thanks, > Gabriele > >>> Has Dell been involved here? >> >> Not that I know of. >> >> Thanks, >> Rafael >>
On Tuesday 22 December 2015 01:20:30 Rafael J. Wysocki wrote: > On Monday, December 21, 2015 04:34:58 PM Gabriele Mazzotta wrote: > > 2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: > > > On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: > > >> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: > > >> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > > >> > > On 23/10/2015 13:14, Pali Rohár wrote: > > >> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > > >> > > >>>In my opinion it is better to ignore user key press after resume, if it > > >> > > >>>fix our problem. Better as false-positive event. > > >> > > >> > > >> > > >>The following appears to work really well. The notification arrives > > >> > > >>before rbtn_resume() has been executed, so the extra event is ignored. > > >> > > >> > > >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c > > >> > > >>b/drivers/platform/x86/dell-rbtn.c > > >> > > >>index cd410e3..1d64b72 100644 > > >> > > >>--- a/drivers/platform/x86/dell-rbtn.c > > >> > > >>+++ b/drivers/platform/x86/dell-rbtn.c > > >> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { > > >> > > >> enum rbtn_type type; > > >> > > >> struct rfkill *rfkill; > > >> > > >> struct input_dev *input_dev; > > >> > > >>+ bool suspended; > > >> > > >> }; > > >> > > >> > > >> > > >> > > >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > > >> > > >> { "", 0 }, > > >> > > >> }; > > >> > > >> > > >> > > >>+#ifdef CONFIG_PM_SLEEP > > >> > > >>+static int rbtn_suspend(struct device *dev) > > >> > > >>+{ > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > >> > > >>+ > > >> > > >>+ rbtn_data->suspended = true; > > >> > > >>+ > > >> > > >>+ return 0; > > >> > > >>+} > > >> > > >>+ > > >> > > >>+static int rbtn_resume(struct device *dev) > > >> > > >>+{ > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > >> > > >>+ > > >> > > >>+ rbtn_data->suspended = false; > > >> > > >>+ > > >> > > >>+ return 0; > > >> > > >>+} > > >> > > >>+#endif > > >> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > > >> > > >>+ > > >> > > >> static struct acpi_driver rbtn_driver = { > > >> > > >> .name = "dell-rbtn", > > >> > > >> .ids = rbtn_ids, > > >> > > >>+ .drv.pm = &rbtn_pm_ops, > > >> > > >> .ops = { > > >> > > >> .add = rbtn_add, > > >> > > >> .remove = rbtn_remove, > > >> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > > >> > > >>event) > > >> > > >> { > > >> > > >> struct rbtn_data *rbtn_data = device->driver_data; > > >> > > >> > > >> > > >>+ if (rbtn_data->suspended) > > >> > > >>+ return; > > >> > > >>+ > > >> > > >> if (event != 0x80) { > > >> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > > >> > > >> event); > > >> > > >> > > >> > > > > > >> > > >Great, but is not there a better way to turn off .notify ACPI function > > >> > > >when that ACPI device is suspended? > > >> > > > > > >> > > >Is not this ACPI device driver bug that it allows to call .notify method > > >> > > >even if device is suspended? > > >> > > > > >> > > I was surprised this worked, I was assuming that nothing could run > > >> > > before the resume callback, but I was wrong. I think it makes sense to > > >> > > treat ACPI devices in a special way, but I really don't know, we need > > >> > > someone more knowledgeable to answer these questions. However, while I > > >> > > was trying to figure things out, I stumbled upon the following: > > >> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > > >> > > > >> > Gabriele, are you going to send this patch? > > >> > > > >> > I think that patch should be OK as it drop events when device is in > > >> > suspend state (when it should not receive events)... > > >> > > > >> > Darren, what do you think about it? > > >> > > > >> > > >> Sorry, this one has been difficult for me to track, but it's clearly an issue, > > >> and new systems are experiencing it as well. > > >> > > >> I'd like to get Rafael's opinion on disabling .notify ACPI function while > > >> suspended. > > >> > > >> +Rafael > > > > > > This by far wouldn't be enough, because drivers may install ACPI notify > > > handlers by themselves and those are hooked up directly into the ACPICA > > > code. > > > > > > Besides, some drivers may actually want to receive those events while > > > the system is suspending or resuming, so I think this has to be addressed > > > on a per-driver basis. > > > > Hi, > > > > sorry, but I'm not sure I understood everything, so I'll try to > > briefly describe the problem and its current solution. > > > > Currently dell-rbtn listens for the notifications sent to an ACPI > > device and for notification sends an input event to userspace. > > > > The problem we have is that some BIOSes send an extra notification > > on resume and therefore we send an extra input event. > > > > What we want to do is to ignore this ACPI notification without > > affecting the systems whose BIOS does not send this extra > > notification. We know that not all of them send this notification. > > > > What I noticed is that the extra notification is issued by the _WAK > > method and always arrives before dell-rbtn has been resumed, so > > what I did is to add a flag that is set by the suspend and resume > > callbacks of the device driver. > > ACPI notifications are delivered asynchronously to drivers, so you'd > need to flush kacpi_notify_wq in .resume(). That would make the driver > wait for things it really doesn't need to wait for, so it would not be > super-optimal. > > > What we were wondering is whether this would be enough or we > > need to do something different, e.g. ignore all the notifications that > > arrived X seconds after the execution of the resume callback. > > I'd try something like setting the flag from .suspend() and then adding > a work item to clear it to kacpi_notify_wq from .resume(). Then you'll > know that all of the pending notifications have been processed before > your flag is cleared. > > That would require a new helper for adding work items to kacpi_notify_wq > from drivers, but it shouldn't be too difficult to create one. > > Thanks, > Rafael > Hi all! Is there any progress or new version of this patch?
On Thursday 07 January 2016 23:35:29 Pali Rohár wrote: > On Tuesday 22 December 2015 01:20:30 Rafael J. Wysocki wrote: > > On Monday, December 21, 2015 04:34:58 PM Gabriele Mazzotta wrote: > > > 2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: > > > > On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: > > > >> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: > > > >> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: > > > >> > > On 23/10/2015 13:14, Pali Rohár wrote: > > > >> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: > > > >> > > >>>In my opinion it is better to ignore user key press after resume, if it > > > >> > > >>>fix our problem. Better as false-positive event. > > > >> > > >> > > > >> > > >>The following appears to work really well. The notification arrives > > > >> > > >>before rbtn_resume() has been executed, so the extra event is ignored. > > > >> > > >> > > > >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c > > > >> > > >>b/drivers/platform/x86/dell-rbtn.c > > > >> > > >>index cd410e3..1d64b72 100644 > > > >> > > >>--- a/drivers/platform/x86/dell-rbtn.c > > > >> > > >>+++ b/drivers/platform/x86/dell-rbtn.c > > > >> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { > > > >> > > >> enum rbtn_type type; > > > >> > > >> struct rfkill *rfkill; > > > >> > > >> struct input_dev *input_dev; > > > >> > > >>+ bool suspended; > > > >> > > >> }; > > > >> > > >> > > > >> > > >> > > > >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { > > > >> > > >> { "", 0 }, > > > >> > > >> }; > > > >> > > >> > > > >> > > >>+#ifdef CONFIG_PM_SLEEP > > > >> > > >>+static int rbtn_suspend(struct device *dev) > > > >> > > >>+{ > > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > > >> > > >>+ > > > >> > > >>+ rbtn_data->suspended = true; > > > >> > > >>+ > > > >> > > >>+ return 0; > > > >> > > >>+} > > > >> > > >>+ > > > >> > > >>+static int rbtn_resume(struct device *dev) > > > >> > > >>+{ > > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); > > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); > > > >> > > >>+ > > > >> > > >>+ rbtn_data->suspended = false; > > > >> > > >>+ > > > >> > > >>+ return 0; > > > >> > > >>+} > > > >> > > >>+#endif > > > >> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); > > > >> > > >>+ > > > >> > > >> static struct acpi_driver rbtn_driver = { > > > >> > > >> .name = "dell-rbtn", > > > >> > > >> .ids = rbtn_ids, > > > >> > > >>+ .drv.pm = &rbtn_pm_ops, > > > >> > > >> .ops = { > > > >> > > >> .add = rbtn_add, > > > >> > > >> .remove = rbtn_remove, > > > >> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 > > > >> > > >>event) > > > >> > > >> { > > > >> > > >> struct rbtn_data *rbtn_data = device->driver_data; > > > >> > > >> > > > >> > > >>+ if (rbtn_data->suspended) > > > >> > > >>+ return; > > > >> > > >>+ > > > >> > > >> if (event != 0x80) { > > > >> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", > > > >> > > >> event); > > > >> > > >> > > > >> > > > > > > >> > > >Great, but is not there a better way to turn off .notify ACPI function > > > >> > > >when that ACPI device is suspended? > > > >> > > > > > > >> > > >Is not this ACPI device driver bug that it allows to call .notify method > > > >> > > >even if device is suspended? > > > >> > > > > > >> > > I was surprised this worked, I was assuming that nothing could run > > > >> > > before the resume callback, but I was wrong. I think it makes sense to > > > >> > > treat ACPI devices in a special way, but I really don't know, we need > > > >> > > someone more knowledgeable to answer these questions. However, while I > > > >> > > was trying to figure things out, I stumbled upon the following: > > > >> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). > > > >> > > > > >> > Gabriele, are you going to send this patch? > > > >> > > > > >> > I think that patch should be OK as it drop events when device is in > > > >> > suspend state (when it should not receive events)... > > > >> > > > > >> > Darren, what do you think about it? > > > >> > > > > >> > > > >> Sorry, this one has been difficult for me to track, but it's clearly an issue, > > > >> and new systems are experiencing it as well. > > > >> > > > >> I'd like to get Rafael's opinion on disabling .notify ACPI function while > > > >> suspended. > > > >> > > > >> +Rafael > > > > > > > > This by far wouldn't be enough, because drivers may install ACPI notify > > > > handlers by themselves and those are hooked up directly into the ACPICA > > > > code. > > > > > > > > Besides, some drivers may actually want to receive those events while > > > > the system is suspending or resuming, so I think this has to be addressed > > > > on a per-driver basis. > > > > > > Hi, > > > > > > sorry, but I'm not sure I understood everything, so I'll try to > > > briefly describe the problem and its current solution. > > > > > > Currently dell-rbtn listens for the notifications sent to an ACPI > > > device and for notification sends an input event to userspace. > > > > > > The problem we have is that some BIOSes send an extra notification > > > on resume and therefore we send an extra input event. > > > > > > What we want to do is to ignore this ACPI notification without > > > affecting the systems whose BIOS does not send this extra > > > notification. We know that not all of them send this notification. > > > > > > What I noticed is that the extra notification is issued by the _WAK > > > method and always arrives before dell-rbtn has been resumed, so > > > what I did is to add a flag that is set by the suspend and resume > > > callbacks of the device driver. > > > > ACPI notifications are delivered asynchronously to drivers, so you'd > > need to flush kacpi_notify_wq in .resume(). That would make the driver > > wait for things it really doesn't need to wait for, so it would not be > > super-optimal. > > > > > What we were wondering is whether this would be enough or we > > > need to do something different, e.g. ignore all the notifications that > > > arrived X seconds after the execution of the resume callback. > > > > I'd try something like setting the flag from .suspend() and then adding > > a work item to clear it to kacpi_notify_wq from .resume(). Then you'll > > know that all of the pending notifications have been processed before > > your flag is cleared. > > > > That would require a new helper for adding work items to kacpi_notify_wq > > from drivers, but it shouldn't be too difficult to create one. > > > > Thanks, > > Rafael > > > > Hi all! Is there any progress or new version of this patch? > Gabriele, Darren, Alex... was this problem fixed? Or what is current state?
2016-03-11 10:45 GMT+01:00 Pali Rohár <pali.rohar@gmail.com>: > On Thursday 07 January 2016 23:35:29 Pali Rohár wrote: >> On Tuesday 22 December 2015 01:20:30 Rafael J. Wysocki wrote: >> > On Monday, December 21, 2015 04:34:58 PM Gabriele Mazzotta wrote: >> > > 2015-12-20 17:21 GMT+01:00 Rafael J. Wysocki <rjw@rjwysocki.net>: >> > > > On Friday, December 18, 2015 04:12:08 PM Darren Hart wrote: >> > > >> On Fri, Nov 20, 2015 at 03:44:25PM +0100, Pali Rohár wrote: >> > > >> > On Friday 23 October 2015 20:03:19 Gabriele Mazzotta wrote: >> > > >> > > On 23/10/2015 13:14, Pali Rohár wrote: >> > > >> > > >On Friday 23 October 2015 11:47:25 Gabriele Mazzotta wrote: >> > > >> > > >>>In my opinion it is better to ignore user key press after resume, if it >> > > >> > > >>>fix our problem. Better as false-positive event. >> > > >> > > >> >> > > >> > > >>The following appears to work really well. The notification arrives >> > > >> > > >>before rbtn_resume() has been executed, so the extra event is ignored. >> > > >> > > >> >> > > >> > > >>diff --git a/drivers/platform/x86/dell-rbtn.c >> > > >> > > >>b/drivers/platform/x86/dell-rbtn.c >> > > >> > > >>index cd410e3..1d64b72 100644 >> > > >> > > >>--- a/drivers/platform/x86/dell-rbtn.c >> > > >> > > >>+++ b/drivers/platform/x86/dell-rbtn.c >> > > >> > > >>@@ -28,6 +28,7 @@ struct rbtn_data { >> > > >> > > >> enum rbtn_type type; >> > > >> > > >> struct rfkill *rfkill; >> > > >> > > >> struct input_dev *input_dev; >> > > >> > > >>+ bool suspended; >> > > >> > > >> }; >> > > >> > > >> >> > > >> > > >> >> > > >> > > >>@@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { >> > > >> > > >> { "", 0 }, >> > > >> > > >> }; >> > > >> > > >> >> > > >> > > >>+#ifdef CONFIG_PM_SLEEP >> > > >> > > >>+static int rbtn_suspend(struct device *dev) >> > > >> > > >>+{ >> > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); >> > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >> > > >> > > >>+ >> > > >> > > >>+ rbtn_data->suspended = true; >> > > >> > > >>+ >> > > >> > > >>+ return 0; >> > > >> > > >>+} >> > > >> > > >>+ >> > > >> > > >>+static int rbtn_resume(struct device *dev) >> > > >> > > >>+{ >> > > >> > > >>+ struct acpi_device *device = to_acpi_device(dev); >> > > >> > > >>+ struct rbtn_data *rbtn_data = acpi_driver_data(device); >> > > >> > > >>+ >> > > >> > > >>+ rbtn_data->suspended = false; >> > > >> > > >>+ >> > > >> > > >>+ return 0; >> > > >> > > >>+} >> > > >> > > >>+#endif >> > > >> > > >>+static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); >> > > >> > > >>+ >> > > >> > > >> static struct acpi_driver rbtn_driver = { >> > > >> > > >> .name = "dell-rbtn", >> > > >> > > >> .ids = rbtn_ids, >> > > >> > > >>+ .drv.pm = &rbtn_pm_ops, >> > > >> > > >> .ops = { >> > > >> > > >> .add = rbtn_add, >> > > >> > > >> .remove = rbtn_remove, >> > > >> > > >>@@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 >> > > >> > > >>event) >> > > >> > > >> { >> > > >> > > >> struct rbtn_data *rbtn_data = device->driver_data; >> > > >> > > >> >> > > >> > > >>+ if (rbtn_data->suspended) >> > > >> > > >>+ return; >> > > >> > > >>+ >> > > >> > > >> if (event != 0x80) { >> > > >> > > >> dev_info(&device->dev, "Received unknown event (0x%x)\n", >> > > >> > > >> event); >> > > >> > > >> >> > > >> > > > >> > > >> > > >Great, but is not there a better way to turn off .notify ACPI function >> > > >> > > >when that ACPI device is suspended? >> > > >> > > > >> > > >> > > >Is not this ACPI device driver bug that it allows to call .notify method >> > > >> > > >even if device is suspended? >> > > >> > > >> > > >> > > I was surprised this worked, I was assuming that nothing could run >> > > >> > > before the resume callback, but I was wrong. I think it makes sense to >> > > >> > > treat ACPI devices in a special way, but I really don't know, we need >> > > >> > > someone more knowledgeable to answer these questions. However, while I >> > > >> > > was trying to figure things out, I stumbled upon the following: >> > > >> > > e71eeb2a6bcc ("ACPI / button: Do not propagate wakeup-from-suspend events"). >> > > >> > >> > > >> > Gabriele, are you going to send this patch? >> > > >> > >> > > >> > I think that patch should be OK as it drop events when device is in >> > > >> > suspend state (when it should not receive events)... >> > > >> > >> > > >> > Darren, what do you think about it? >> > > >> > >> > > >> >> > > >> Sorry, this one has been difficult for me to track, but it's clearly an issue, >> > > >> and new systems are experiencing it as well. >> > > >> >> > > >> I'd like to get Rafael's opinion on disabling .notify ACPI function while >> > > >> suspended. >> > > >> >> > > >> +Rafael >> > > > >> > > > This by far wouldn't be enough, because drivers may install ACPI notify >> > > > handlers by themselves and those are hooked up directly into the ACPICA >> > > > code. >> > > > >> > > > Besides, some drivers may actually want to receive those events while >> > > > the system is suspending or resuming, so I think this has to be addressed >> > > > on a per-driver basis. >> > > >> > > Hi, >> > > >> > > sorry, but I'm not sure I understood everything, so I'll try to >> > > briefly describe the problem and its current solution. >> > > >> > > Currently dell-rbtn listens for the notifications sent to an ACPI >> > > device and for notification sends an input event to userspace. >> > > >> > > The problem we have is that some BIOSes send an extra notification >> > > on resume and therefore we send an extra input event. >> > > >> > > What we want to do is to ignore this ACPI notification without >> > > affecting the systems whose BIOS does not send this extra >> > > notification. We know that not all of them send this notification. >> > > >> > > What I noticed is that the extra notification is issued by the _WAK >> > > method and always arrives before dell-rbtn has been resumed, so >> > > what I did is to add a flag that is set by the suspend and resume >> > > callbacks of the device driver. >> > >> > ACPI notifications are delivered asynchronously to drivers, so you'd >> > need to flush kacpi_notify_wq in .resume(). That would make the driver >> > wait for things it really doesn't need to wait for, so it would not be >> > super-optimal. >> > >> > > What we were wondering is whether this would be enough or we >> > > need to do something different, e.g. ignore all the notifications that >> > > arrived X seconds after the execution of the resume callback. >> > >> > I'd try something like setting the flag from .suspend() and then adding >> > a work item to clear it to kacpi_notify_wq from .resume(). Then you'll >> > know that all of the pending notifications have been processed before >> > your flag is cleared. >> > >> > That would require a new helper for adding work items to kacpi_notify_wq >> > from drivers, but it shouldn't be too difficult to create one. >> > >> > Thanks, >> > Rafael >> > >> >> Hi all! Is there any progress or new version of this patch? >> > > Gabriele, Darren, Alex... was this problem fixed? Or what is current state? As far as I know, there was no progress. I'm now going to try what Rafael suggested and see what I can do. > -- > Pali Rohár > pali.rohar@gmail.com -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Saturday 12 March 2016 00:30:37 Gabriele Mazzotta wrote: > 2016-03-11 10:45 GMT+01:00 Pali Rohár <pali.rohar@gmail.com>: > > Gabriele, Darren, Alex... was this problem fixed? Or what is current state? > > As far as I know, there was no progress. I'm now going to try what > Rafael suggested and see what I can do. Ok, thanks for info. If you have some results, let us know as we can finally fix this problem...
diff --git a/drivers/platform/x86/dell-rbtn.c b/drivers/platform/x86/dell-rbtn.c index cd410e3..1d64b72 100644 --- a/drivers/platform/x86/dell-rbtn.c +++ b/drivers/platform/x86/dell-rbtn.c @@ -28,6 +28,7 @@ struct rbtn_data { enum rbtn_type type; struct rfkill *rfkill; struct input_dev *input_dev; + bool suspended; }; @@ -220,9 +221,33 @@ static const struct acpi_device_id rbtn_ids[] = { { "", 0 }, }; +#ifdef CONFIG_PM_SLEEP +static int rbtn_suspend(struct device *dev) +{ + struct acpi_device *device = to_acpi_device(dev); + struct rbtn_data *rbtn_data = acpi_driver_data(device); + + rbtn_data->suspended = true; + + return 0; +} + +static int rbtn_resume(struct device *dev) +{ + struct acpi_device *device = to_acpi_device(dev); + struct rbtn_data *rbtn_data = acpi_driver_data(device); + + rbtn_data->suspended = false; + + return 0; +} +#endif +static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume); + static struct acpi_driver rbtn_driver = { .name = "dell-rbtn", .ids = rbtn_ids, + .drv.pm = &rbtn_pm_ops, .ops = { .add = rbtn_add, .remove = rbtn_remove, @@ -384,6 +409,9 @@ static void rbtn_notify(struct acpi_device *device, u32 event) { struct rbtn_data *rbtn_data = device->driver_data; + if (rbtn_data->suspended) + return; + if (event != 0x80) { dev_info(&device->dev, "Received unknown event (0x%x)\n",