Skip to content

Commit 4b55f99

Browse files
kspraveeenkrish2718
authored andcommitted
nrf_wifi : Update to latest firmware
Pull in all the recent updates done to firmware and corresponding rpu shared file changes. Signed-off-by: Praveen Kankipati <[email protected]>
1 parent f3b5a7c commit 4b55f99

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

drivers/nrf_wifi/fw_if/umac_if/inc/fw/host_rpu_sys_if.h

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ enum nrf_wifi_sys_events {
202202
NRF_WIFI_EVENT_FILTER_SET_DONE,
203203
/** Tx done event for the Raw Tx */
204204
NRF_WIFI_EVENT_RAW_TX_DONE,
205+
/** Command status events for offloaded raw tx commands */
206+
NRF_WIFI_EVENT_OFFLOADED_RAWTX_STATUS,
205207
};
206208

207209
/**
@@ -1434,7 +1436,7 @@ struct nrf_wifi_event_raw_config_filter {
14341436
/** mode filter configured. */
14351437
unsigned char filter;
14361438
/** capture len configured. */
1437-
unsigned char capture_len;
1439+
unsigned short capture_len;
14381440
/** status of the set raw filter command, success(0)/Fail(-1). */
14391441
int status;
14401442
} __NRF_WIFI_PKD;
@@ -1644,14 +1646,16 @@ struct nrf_wifi_umac_event_stats {
16441646
} __NRF_WIFI_PKD;
16451647

16461648
/**
1647-
* @brief This enum defines various error status values that may occur during a radio test.
1648-
*
1649+
* @brief This enum defines various command status values that can occur
1650+
* during radio tests and offloaded raw transmissions.
16491651
*/
1650-
enum nrf_wifi_radio_test_err_status {
1652+
enum nrf_wifi_cmd_status {
16511653
/** Command success */
16521654
NRF_WIFI_UMAC_CMD_SUCCESS = 1,
16531655
/** Invalid channel error */
1654-
NRF_WIFI_UMAC_INVALID_CHNL
1656+
NRF_WIFI_UMAC_INVALID_CHNL,
1657+
/** Invalid power error wrt configured regulatory domain */
1658+
NRF_WIFI_UMAC_INVALID_TXPWR
16551659
};
16561660

16571661
/**

zephyr/module.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,46 +6,46 @@ build:
66
blobs:
77

88
- path: wifi_fw_bins/default/nrf70.bin
9-
sha256: ac5e295d85597fecb6dc8d3fac46b314426f963841b1c0ed24adb5075fa9f320
9+
sha256: a23be8484a95f3f3377a356d9724d45fd891ac66b17504ceea5c6287aaa97e0e
1010
type: img
1111
version: '1.0.0'
1212
license-path: ./LICENSE.txt
13-
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/fw_bins/default/nrf70.bin
13+
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/bin/zephyr/default/nrf70.bin
1414
description: "nRF70 series firmware patch binary for default"
15-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/doc
15+
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/doc
1616

1717
- path: wifi_fw_bins/scan_only/nrf70.bin
18-
sha256: d680b0f6ab23e927b8be78afa7df01526a4b61532f50776c1f303dfa056b0a32
18+
sha256: 486241d4e4c93d2397d901ac0ec4045d4ae3f8d020f4fdc8da33c590ba5382eb
1919
type: img
2020
version: '1.0.0'
2121
license-path: ./LICENSE.txt
22-
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/fw_bins/scan_only/nrf70.bin
22+
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/bin/zephyr/scan_only/nrf70.bin
2323
description: "nRF70 series firmware patch binary for scan_only"
24-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/doc
24+
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/doc
2525

2626
- path: wifi_fw_bins/radio_test/nrf70.bin
27-
sha256: 8288b4fd81734442b8d05dc88268e0d4968192780c796c3d19c693d7fdb97660
27+
sha256: de2a1fd286ce575a1082b80e651d7b709c4ccb3c854d1c98265cae865c32642e
2828
type: img
2929
version: '1.0.0'
3030
license-path: ./LICENSE.txt
31-
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/fw_bins/radio_test/nrf70.bin
31+
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/bin/zephyr/radio_test/nrf70.bin
3232
description: "nRF70 series firmware patch binary for radio_test"
33-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/doc
33+
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/doc
3434

3535
- path: wifi_fw_bins/system_with_raw/nrf70.bin
36-
sha256: 48de2298ddfd5fcded4241681f9f527df2dcf8254c5c0caeffd2583c81b867cd
36+
sha256: 61b0f409766a0a306e71f1c0c0052d16c1a0e6471aa31c2f5ed6f02149c4246b
3737
type: img
3838
version: '1.0.0'
3939
license-path: ./LICENSE.txt
40-
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/fw_bins/system_with_raw/nrf70.bin
40+
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/bin/zephyr/system_with_raw/nrf70.bin
4141
description: "nRF70 series firmware patch binary for system_with_raw"
42-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/doc
42+
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/doc
4343

4444
- path: wifi_fw_bins/offloaded_raw_tx/nrf70.bin
45-
sha256: d98e1cc13f5005796ddaa6ea7ba249da1ddcfc5d6345c2e626b773c6c2ee82c7
45+
sha256: b69a1177a0ae10390aaf227fa8d35fbf92b6a3ef6185940a93758e9d65dba734
4646
type: img
4747
version: '1.0.0'
4848
license-path: ./LICENSE.txt
49-
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/fw_bins/offloaded_raw_tx/nrf70.bin
49+
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/bin/zephyr/offloaded_raw_tx/nrf70.bin
5050
description: "nRF70 series firmware patch binary for offloaded_raw_tx"
51-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/2ae0ad9dd2d030ab44d65a4200b17383fc2c46be/nrf_wifi/doc
51+
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/e9dfe1f7b0304665ddd6a987f1e4bc8f729f8fe7/nrf_wifi/doc

0 commit comments

Comments
 (0)