Page MenuHomeFreeBSD

Multipass suspend/resume
Needs ReviewPublic

Authored by jhibbits on Jun 10 2014, 7:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 8, 4:18 AM
Unknown Object (File)
Thu, Oct 17, 11:56 AM
Unknown Object (File)
Thu, Oct 17, 11:56 AM
Unknown Object (File)
Thu, Oct 17, 11:56 AM
Unknown Object (File)
Thu, Oct 17, 11:36 AM
Unknown Object (File)
Oct 2 2024, 9:31 AM
Unknown Object (File)
Sep 29 2024, 10:09 AM
Unknown Object (File)
Sep 15 2024, 6:53 PM
Subscribers

Details

Reviewers
jhb
Summary

This adds multi pass suspend/resume to the new bus framework, and changes some drivers to be multi pass aware. I've only tested this on PowerMac hardware, I do not have hardware to test on x86.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

jhibbits retitled this revision from to Multipass suspend/resume.
jhibbits updated this object.
jhibbits edited the test plan for this revision. (Show Details)
jhibbits added a reviewer: jhb.
jhibbits added a subscriber: imp.

In general I think the suspend_child/resume_child changes are on track (modulo the DS_SUSPENDED issue I mentioned). We might want to start with just getting those changes into the tree and converting any other bus drivers that use custom suspend/resume methods to switch to using those instead. After that we can work on the multipass stuff next. I do think the multipass logic for root_suspend() and in the new bus_generic_suspend/resume methods generally looks correct as well.

dev/adb/adb_buttons.c
121 ↗(On Diff #360)

The devctl changes here look to be a separate change that should be split out and committed on their own.

dev/pci/pci.c
3712

Presumably this logic would need to be codified by using early drivers for these devices? I think one problem though is that some of the devices probably don't have drivers (e.g. most of the PCIC_BASEPERIPH devices). Perhaps that won't matter, but we may need to keep a pci_resume() method that duplicates bus_generic_resume() but adds additional logic to resume these devices on the first pass if there is no driver attached to them.

kern/subr_bus.c
3668

I think you want a separate flag or bool in device_t instead of using a DS_ state. Busy devices need to be suspend, and devices that aren't attached also need to be suspend (e.g. if ACPI requests D2 for S3 for some system peripheral that doesn't have a driver, we still have to power that device down to D2 as part of going into S3).

In D203#4, @jhb wrote:

In general I think the suspend_child/resume_child changes are on track (modulo the DS_SUSPENDED issue I mentioned). We might want to start with just getting those changes into the tree and converting any other bus drivers that use custom suspend/resume methods to switch to using those instead. After that we can work on the multipass stuff next. I do think the multipass logic for root_suspend() and in the new bus_generic_suspend/resume methods generally looks correct as well.

I'll break these up into smaller chunks for easier review and committing. Changing to use a flag should be trivial.

dev/adb/adb_buttons.c
121 ↗(On Diff #360)

Right, this and most of the powerpc-specific changes are not related specifically to the multi pass suspend/resume, it's a (mostly) cleaned up diff of my branch.

On second thought, this really has nothing to do with the branch itself, so it makes more sense to just merge it separately anyway.

dev/pci/pci.c
3712

Would it make more sense to have a simple driver that attaches (lowest priority) to all those devices? Why first pass, and not last pass, anyway?

kern/subr_bus.c
3668

This makes sense. This was originally how I had designed it. I went with the state method because it conceptually is a change in device state. However, I never considered that another source (ACPI) would request suspending of an unattached device.

In my opinion, busy devices should never be suspended, because there's other hardware state that could get lost if you suspend the knowledge of a hardware device that can't actually be suspended.

dev/pci/pci.c
3712

The problem with a simple driver is we don't currently have a good way of forcing those drivers to detach if a "real" driver is kldloaded. You would want these in the first pass to resume (so early pass) to match the existing logic below.

kern/subr_bus.c
3668

Busy devices are just devices whose driver is trying to prevent kldunload. If you shut the lid on a laptop, you don't want that driver to keep your laptop from suspending by failing the suspend request. Also, in a suspend, all hardware needs to be powered down whether it has an attached driver or not.

dev/pci/pci.c
3712

Understood. I *think* this could be solved by making all devices the same pass level as the parent upon creation. When a device gets a driver, the new driver will give it a new pass number.

kern/subr_bus.c
3668

Ah, okay. My understanding of the DS_BUSY was mistaken.

jhibbits edited edge metadata.

Reduce the diff to the multipass suspend/resume, removing other unrelated changes.

Switch to using a flag instead of a state for suspend.