PNP: Do not disable devices on suspend when they cannot be re-enabled on resume
authorHans de Goede <hdegoede@redhat.com>
Thu, 24 Nov 2022 10:53:05 +0000 (11:53 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 25 Nov 2022 18:36:52 +0000 (19:36 +0100)
commit62a0ec9dc1dfb0f58138f1e2527e4a26567268e5
tree289ed97b4ad3664d22877bc329d33bf818b1c127
parent110d7b0325c55ff3620073ba4201845f59e22ebf
PNP: Do not disable devices on suspend when they cannot be re-enabled on resume

On an Advantech MICA-071 tablet, with a builtin barcode scanner connected
to ttyS0, the following message is shown on suspend:

serial 00:02: disabled

And after suspend/resume trying to use the barcode scanner / ttyS0 shows:

serial 00:02: LSR safety check engaged!

Indicating that the UARTs io-ports are no longer reachable.

This is caused by __pnp_bus_suspend() calling pnp_stop_dev() on the "00:02"
pnp device on suspend (this outputs the disabled message).

The problem is that pnp_can_write() returns false for the "00:02" pnp
device, so after disabling it (disabling its decoding of IO addresses)
during suspend, it cannot be re-enabled.

Add a pnp_can_write() check to the suspend path and only disable devices
which can actually be re-enabled on resume.

This fixes the Advantech MICA-071's ttyS0 no longer working after
a suspend/resume.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/pnp/driver.c