-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commad status check phase1 #1239
Open
ajayparida
wants to merge
6
commits into
nrfconnect:main
Choose a base branch
from
ajayparida:cmd_status_check_phase1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
ajayparida
requested review from
udaynordic,
rajb9,
srkanordic,
krish2718,
sachinthegreen,
rado17 and
rlubos
as code owners
March 4, 2024 06:24
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
from
March 4, 2024 06:57
916550a
to
95ffd4a
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
7 times, most recently
from
March 13, 2024 07:30
594c89a
to
026f6f8
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
from
April 17, 2024 12:19
8fb844a
to
abd9581
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
April 17, 2024 12:25
abd9581
to
1969638
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
May 15, 2024 06:58
1969638
to
bfc67a0
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
May 15, 2024 10:43
bfc67a0
to
4503305
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
May 15, 2024 11:45
c581edb
to
13b5bd9
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
May 16, 2024 12:12
13b5bd9
to
564be30
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
3 times, most recently
from
May 17, 2024 07:18
e7d4b06
to
4af396b
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
July 31, 2024 06:08
b781d78
to
921e956
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
July 31, 2024 08:03
5b842cd
to
ba03d8b
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
3 times, most recently
from
August 1, 2024 11:55
e7c4abe
to
4d5c23d
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
from
August 5, 2024 06:40
4d5c23d
to
eb6b417
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
August 5, 2024 07:20
eb6b417
to
9b3886a
Compare
ajayparida
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
August 5, 2024 10:35
eb6b417
to
6ee198d
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
6 times, most recently
from
August 14, 2024 07:04
41c4d21
to
ff8f41f
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
August 21, 2024 09:40
979cf89
to
1744779
Compare
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
2 times, most recently
from
September 25, 2024 13:15
443b091
to
7fec229
Compare
Validate input parameters passed to API before using them. Signed-off-by: Ajay Parida <[email protected]>
Added NRF_WIFI_UMAC_CMD_MAX to represent maximum command supported. Signed-off-by: Ajay Parida <[email protected]>
Structure to store per vif command state information. Signed-off-by: Ajay Parida <[email protected]>
Check for command pending state for the vif before processing. Signed-off-by: Ajay Parida <[email protected]>
After sending the command, wait for command status event from firmware. There are two scenarios. Either firmware sends a specific event for the command or a generic event (NRF_WIFI_UMAC_EVENT_CMD_STATUS) where it states about the command failure/success. This commit is related to wait for NRF_WIFI_UMAC_EVENT_CMD_STATUS and it's handling. For commands expecting specific events will be added later. Signed-off-by: Ajay Parida <[email protected]>
UMAC: [SHEL-2504]:UMAC commands are providing status as failure. Signed-off-by: Rakeswara Kummetha <[email protected]>
rakeswar2001
force-pushed
the
cmd_status_check_phase1
branch
from
September 27, 2024 10:38
7fec229
to
7e233ee
Compare
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.
First PR from a series or PR to handle command status check for all the commands.
In this PR, only those commands for which no information is passed either to supplicant/user space is handled.
On sending the command, host will wait for the command status to be returned by the firmare.
Depending upon the status/timeout it will return the result to userspace/supplicant.