Camera_RDI_FrameCapture: stabilize RDI capture via parsed media-graph config + richer CI diagnostics#166
Merged
abbajaj806 merged 1 commit intoqualcomm-linux:mainfrom Sep 15, 2025
Conversation
d158efc to
5493a04
Compare
…I logs.
Camera RDI capture was flaky after reboot and only passed when the media graph was configured manually.
This change keeps the original pipeline parsing/flow intact while making the runner more robust and easier to debug.
Key changes:
- Add clear banner: ----- Pipeline N: <sensor> <node> [pads:<mbus>] [video:<pixfmt>] -----
- Print the exact commands that will run (for CI/debug):
- media-ctl --reset, all -V pad formats (with runtime pixfmt), all -l links
- yavta pre/post control writes and capture command (size, format, frames)
- Do a light global media-ctl -r once before pipeline setup (matches manual flow)
- Add a single automatic retry after a graph reset on first failure
- Improve prechecks & visibility (non-gating except where noted):
- Kernel config checks via existing check_kernel_config() for CONFIG_VIDEO_QCOM_CAMSS, CONFIG_MEDIA_CONTROLLER, CONFIG_V4L2_FWNODE
- Best-effort CAMCC symbol discovery (name varies per tree)
- Readiness gate accepts module/builtin/device nodes/dmesg evidence
- Tidy output formatting (bullet lists for nodes/modules)
Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
5493a04 to
59e072f
Compare
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.
This PR fixes #165