schemas: pci-device: Allow wake-gpios property in device node #170
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Right now, wake-gpios property is only allowed in the PCI bridge node along with reset-gpios property. This works perfectly fine for connectors conforming to the standards like PCIe CEM, M.2 and all components underneath sharing the same WAKE# signal.
But the spec didn't restrict the designers from connecting each WAKE# routed to the components to individual GPIOs in the host (assuming WAKE# is implemented as a GPIO). This was brought up while adding the WAKE# support in the PCI core for DT platforms in Linux Kernel:
https://lore.kernel.org/linux-pci/20250801212725.GA3506354@bhelgaas/
So allow the wake-gpios property to be defined in the endpoint nodes so that if separate GPIOs were routed for WAKE#, then it will allow the OS to identify each WAKE# signal connected to the components. This is not possible if the property is only available in the upstream bridge node.