ArmPkg: Handle FFA_BUSY response for MM communication#1825
Merged
Conversation
Contributor
✅ QEMU Validation PassedSource Dependencies
Results
Workflow run: https://github.com/microsoft/mu_basecore/actions/runs/27988252833 This comment was automatically generated by the Mu QEMU PR Validation workflow. |
os-d
approved these changes
Jun 17, 2026
os-d
left a comment
Contributor
There was a problem hiding this comment.
Submit to edk2 in parallel?
Contributor
Author
Well, this is actually one of many issues with this function. It's the most pressing so prioritizing it. Thinking is that we need a more complete fix we can probably do upstream first. |
Contributor
|
Tested on physical arm platform and booted to Windows 11 desktop. |
kuqin12
approved these changes
Jun 17, 2026
yoeinhor
reviewed
Jun 17, 2026
Raymond-MS
reviewed
Jun 18, 2026
Raymond-MS
approved these changes
Jun 18, 2026
MM communicate is used at runtime, and the secure partition it is communicating with may provide services access through other means then the UEFI runtime services. As such, the MM communication library must not assume that the partition will be in the waiting state. Instead it must handle the case where the partition is busy and retry the communication to some limit. Signed-off-by: Chris Fernald <chfernal@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
MM communicate is used at runtime, and the secure partition it is communicating with may provide services access through other means then the UEFI runtime services. As such, the MM communication library must not assume that the partition will be in the waiting state. Instead, it must handle the case where the partition is busy and retry the communication to some limit.
Observed issue
This specifically resolves a bugcheck observed booting to Windows on multiple platforms where the variable services are access through the runtime services at the same time that the TPM PPI is invoking StMM to access the PPI variables. This causes a busy response in the runtime services, which are not currently handled. The inverse is already handled as the ACPI FFH opregion handling for FF-A already accounts for busy responses.
How This Was Tested
Integration Instructions
N/A