camera(Camera_NHX): add NHX validation + CAMX helpers + LAVA integration#261
Merged
abbajaj806 merged 5 commits intoqualcomm-linux:mainfrom Jan 30, 2026
Merged
camera(Camera_NHX): add NHX validation + CAMX helpers + LAVA integration#261abbajaj806 merged 5 commits intoqualcomm-linux:mainfrom
abbajaj806 merged 5 commits intoqualcomm-linux:mainfrom
Conversation
…rrors filtering/output Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
…ecksum validation) Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
abbajaj806
reviewed
Jan 30, 2026
|
|
||
| while IFS= read -r f; do | ||
| [ -n "$f" ] || continue | ||
|
|
Contributor
There was a problem hiding this comment.
while read loops have inverted logic
This skips non-empty lines and processes only empty ones (opposite of what you want).
Contributor
Author
There was a problem hiding this comment.
while read loops have inverted logic This skips non-empty lines and processes only empty ones (opposite of what you want).
if line is empty → -n is false → false || continue → continue → empty lines skipped
if line is non-empty → -n is true → true || continue → does not continue → line processed
So it does not “skip non-empty lines and process only empty ones”.
…idation and deps via functestlib Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
70f412d to
d12c7e0
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 adds an end-to-end Camera_NHX validation flow for CAMX/NHX-based camera stacks, and wires it into LAVA in the standard qcom-linux-testkit style.
What’s included
Notes
Sensor enumeration is warn-only (NHX may still run), but CAMX graph bind and required firmware are gated.
Dump validation ensures files exist and are non-zero; checksums are generated for traceability.