-
Notifications
You must be signed in to change notification settings - Fork 317
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
v2.6: Pull latest wifi fixes #1443
v2.6: Pull latest wifi fixes #1443
Conversation
[SHEL-2947] QoS null frame based legacy power save support. Signed-off-by: Ajay Parida <[email protected]>
[SHEL-2947] Changing naming of power save mode to mechanism(Text change). Signed-off-by: Ajay Parida <[email protected]>
FMAC relies on these callbacks to perform a RPU recovery i.e., coldboot the device in a clean way, this is achieved by performing an interface down and then up, this properly cleans up the driver, performs a cold boot and either through NET_IF events (for scan only) or WPA_S events (for full Wi-Fi) notifies the applications. Implements SHEL-2726. Signed-off-by: Chaitanya Tata <[email protected]>
Backport ae13090. Signed-off-by: Chaitanya Tata <[email protected]>
RPU hostport uses OR logic to manage both normal event IRQ line and watchdog IRQ line, so, for every IRQ check for both sources independently. Signed-off-by: Chaitanya Tata <[email protected]> Signed-off-by: srinivasa raju chintalapati <[email protected]>
* As RPU recovery can triggered called from multiple places, use a tasklet with a lock to trigger RPU recovery. * In case RPU is stuck in sleep, FW based watchdog interrupt will not be received, so, recovery cannot be triggered. So, in case of RPU wakeup failure, trigger the recovery. Fixes SHEL-2810. Signed-off-by: Chaitanya Tata <[email protected]>
In case host is asserting wakeup_now, don't rely on RPU PS state, as that is derived from multiples sources wakeup_now, RPU interrupt etc. Use a dedicated flag to track. Signed-off-by: Chaitanya Tata <[email protected]>
During watchdog (or any) interrupt processing, RPU accesses are being made and they assert the wakeup_now flag this causes RPU recovery to not trigger. New false or true recovery detection algo: Check the time difference b/w last de-assert and assert, and if it exceeds minimum time needed for RPU to enter sleep, then not the timestamp. This timestamp will be used to compare when a watchdog interrupt is received and see if during the last window if host has given a chance for RPU to attempt sleep, if yes, then attempt recovery else ignore watchdog. Also, add a Kconfig for the 10s active time that triggers recovery, this needs to be passed to the FW (once we have enough patch memory). Also, add a Kconfig for the minimum time needed for RPU to attempt sleep in positive case. Also, add a new _ms API for time stamp fetch, this is to avoid precision loss when converting to and from ms to us and also makes code readable by avoiding *1000 and /1000. Signed-off-by: Chaitanya Tata <[email protected]>
Add a missing NULL check for RX buffers, without this we see a crash during RPU recovery. Signed-off-by: Chaitanya Tata <[email protected]>
These are helpful for debugging RPU recovery only. Signed-off-by: Chaitanya Tata <[email protected]>
The original fix is too big to backport, so, a simple check is added to fix race condition during de-init causing mulitple crashes. Signed-off-by: Chaitanya Tata <[email protected]>
This helps us understand OOM issues. Signed-off-by: Chaitanya Tata <[email protected]>
When HAL is being de-initialized drain the events to free up the memory and also to avoid accessing any freed up variables. Signed-off-by: Chaitanya Tata <[email protected]>
Commit e1fc1137e ("nrf_wifi: Add support for recovering RPU stuck in sleep") introduced a memory leak where recovery spin lock isn't freed. Signed-off-by: Chaitanya Tata <[email protected]>
Fix RPU recovery protection to solve build failures when RPU recovery is disabled. As recovery is primarily based on power-management, add a Kconfig dependency to enforce, this simplies the macros to protect the code. Signed-off-by: Chaitanya Tata <[email protected]>
During interface down in case TX has pending buffers in either TXQ or Pending_Q then they are not freed instead the Q itself is freed. Fix by traversing the Q and freeing all members. Signed-off-by: Chaitanya Tata <[email protected]>
These are very frequent, so, a separate debug is added for debugging host RPU recovery logic. Signed-off-by: Chaitanya Tata <[email protected]>
This is useful to understand the reason for comms trigger b/w host and RPU. Signed-off-by: Chaitanya Tata <[email protected]>
OSAL Shim only as 256 bytes for logs, causign recovery logs to be truncated. Signed-off-by: Chaitanya Tata <[email protected]>
cca8cda
to
b69e29b
Compare
a9594a8
to
3a79896
Compare
With this offload, host doesn't need to manage RX buffers for management frames, and this saves Host-RPU comms and thus giving RPU to sleep more often and is essential to test RPU recovery. Signed-off-by: Chaitanya Tata <[email protected]>
To handle interoperability issue with few APs, add a feature to keep sending keepalive frames periodically to avoid AP disconnecting the STA. This is disabled by default to avoid unnecessary power consumption as it's only seen with few old APs. Signed-off-by: Chaitanya Tata <[email protected]>
3a79896
to
7017fe5
Compare
4fe2ab3
to
3cd1123
Compare
User can configure watchdog timer using Kconfig and this needs to be sent to FW. This is primarily needed for crowded channel where RPU can stay awake for more than 10s. Signed-off-by: Chaitanya Tata <[email protected]>
3cd1123
to
1258f3c
Compare
UMAC: Fixes from v2.5 branch 1) Added watchdog timer programming from Host. 2) Handling TRIGGER_SWITCH_PS from LMAC. 3) Clearing and re-enabling watchdog before sending any event from UMAC to Host. 4) [SHEL-2995] : Parsing keep alive parameters from host in command init and sending to LMAC. LMAC: Fixes/features from 2.5 branch 1) Keep alive logic 2) Null frame based power save 3) TSF sync 4) Updated lma cpath bimg location to 0x8004b400 Signed-off-by: Karun Kumar Eagalapati <[email protected]>
PHY: Fix for low TX power [SHEL-2583] : Tx power reduces due to incorrect backoff values applied when an inaccurate vbat value is provided. Signed-off-by: Mahammadyunus Patil <[email protected]>
It depends on links to other repos and errors are unavoidable. Signed-off-by: Thomas Stilwell <[email protected]>
4ba7d99
to
9c75989
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved from scope perspective
Asked matter team approval before merging @LuDuda |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved for now with integration CI being green 👍
When release procedure would start we want to run more extensive testing.
Btw. In the commits I do see quite a few bugfixes (also with memory leaks). Do we have a known-issues entries in the doc targeting for example to NCS 2.6.0/2.6.1 with them?
No description provided.