fby4: wf: Avoid CXL DIMM polling during Set EID and DIMM init#2725
Open
Wiwynn-Evan wants to merge 1 commit into
Open
fby4: wf: Avoid CXL DIMM polling during Set EID and DIMM init#2725Wiwynn-Evan wants to merge 1 commit into
Wiwynn-Evan wants to merge 1 commit into
Conversation
Contributor
|
@facebook-github-bot has imported this pull request. If you are a Meta employee, you can view this in D106388120. (Because this pull request was imported automatically, there will not be any future comments.) |
5f4fe26 to
b27c94c
Compare
|
@Wiwynn-Evan has updated the pull request. You must reimport the pull request before landing. |
b27c94c to
ff8989e
Compare
|
@Wiwynn-Evan has updated the pull request. You must reimport the pull request before landing. |
Summary: # [Issue Description] - YV4T1M-2265 - BMC recorded "CXL DEASSERTED" SEL after conducting SD BIC update with CXL 3.2.2. # [Root Cause] WF may perform CXL Set EID, DIMM present initialization, and DIMM temperature sensor polling at overlapping timing. During these timing windows, CXL may not receive the expected response from WF BIC. Based on the CXL team's previous explanation, when WF BIC does not respond as expected, the Vistara I2C Master may hang indefinitely and eventually trigger the watchdog, resulting in a CXL crash. Since the CXL team believes that improving CXL's I2C timeout handling may impact the underlying I2C driver code, this scenario has been treated as a CXL limitation. # [Solution] - This change is mainly a workaround for the CXL limitation previously raised by the CXL team. - This change can only reduce the failure rate, but cannot fully resolve the CXL limitation. - Added a per-CXL flag while WF is performing Set EID to CXL. - Adjusted the execution timing between DIMM presence checking and sensor polling. - Avoid performing DIMM temperature polling to CXL while the corresponding CXL is under Set EID or DIMM present initialization. - Addressed the reviewdog suggestion.
ff8989e to
d683e31
Compare
|
@Wiwynn-Evan has updated the pull request. You must reimport the pull request before landing. |
Contributor
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.

[Issue Description]
[Root Cause]
WF may perform CXL Set EID, DIMM present initialization, and DIMM temperature sensor polling at overlapping timing. During these timing windows, CXL may not receive the expected response from WF BIC. Based on the CXL team's previous explanation, when WF BIC does not respond as expected, the Vistara I2C Master may hang indefinitely and eventually trigger the watchdog, resulting in a CXL crash. Since the CXL team believes that improving CXL's I2C timeout handling may impact the underlying I2C driver code, this scenario has been treated as a CXL limitation.
[Solution]