Skip to content
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

wifi: Pull nrf_wifi driver restructuring #19147

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

krish2718
Copy link
Contributor

nRF70 Wi-Fi driver is now restructured, pull these changes to NCS.

@github-actions github-actions bot added doc-required PR must not be merged without tech writer approval. manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Nov 28, 2024
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Nov 28, 2024

The following west manifest projects have changed revision in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@53f5e6d nrfconnect/sdk-zephyr@bc80cbd nrfconnect/[email protected]

All manifest checks OK

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@NordicBuilder
Copy link
Contributor

NordicBuilder commented Nov 28, 2024

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 10

Inputs:

Sources:

sdk-nrf: PR head: e08c7adee380f9f972e6bf1bef3872b6ae2a2789
zephyr: PR head: bc80cbda202a69435c7333544c9c5359e4aef0fc

more details

sdk-nrf:

PR head: e08c7adee380f9f972e6bf1bef3872b6ae2a2789
merge base: c4e70ba8eaac8d22816dfc1a2b42315264c67681
target head (main): c4e70ba8eaac8d22816dfc1a2b42315264c67681
Diff

zephyr:

PR head: bc80cbda202a69435c7333544c9c5359e4aef0fc
merge base: 53f5e6dae760d95db2dcb5efac83b83023484043
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (54)
doc
│  ├── nrf
│  │  ├── drivers
│  │  │  ├── wifi
│  │  │  │  ├── nrf70_native.rst
│  │  │  │  │ nrf70_portable.rst
│  │  ├── protocols
│  │  │  ├── wifi
│  │  │  │  ├── advanced_modes
│  │  │  │  │  │ offloaded_raw_tx.rst
samples
│  ├── wifi
│  │  ├── offloaded_raw_tx
│  │  │  ├── src
│  │  │  │  │ main.c
subsys
│  ├── net
│  │  ├── lib
│  │  │  ├── nrf70_fw_ext
│  │  │  │  │ CMakeLists.txt
west.yml
zephyr
│  ├── MAINTAINERS.yml
│  ├── drivers
│  │  ├── wifi
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── nrf_wifi
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.nrfwifi
│  │  │  │  ├── inc
│  │  │  │  │  ├── coex.h
│  │  │  │  │  ├── coex_struct.h
│  │  │  │  │  ├── fmac_main.h
│  │  │  │  │  ├── net_if.h
│  │  │  │  │  ├── wifi_mgmt.h
│  │  │  │  │  ├── wifi_mgmt_scan.h
│  │  │  │  │  │ wpa_supp_if.h
│  │  │  │  ├── off_raw_tx
│  │  │  │  │  ├── inc
│  │  │  │  │  │  │ off_raw_tx.h
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ off_raw_tx_api.c
│  │  │  │  ├── src
│  │  │  │  │  ├── coex.c
│  │  │  │  │  ├── fmac_main.c
│  │  │  │  │  ├── fw_load.c
│  │  │  │  │  ├── net_if.c
│  │  │  │  │  ├── qspi
│  │  │  │  │  │  ├── inc
│  │  │  │  │  │  │  ├── ficr_prog.h
│  │  │  │  │  │  │  ├── qspi_if.h
│  │  │  │  │  │  │  ├── rpu_hw_if.h
│  │  │  │  │  │  │  ├── spi_if.h
│  │  │  │  │  │  │  │ spi_nor.h
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── device.c
│  │  │  │  │  │  │  ├── ficr_prog.c
│  │  │  │  │  │  │  ├── qspi_if.c
│  │  │  │  │  │  │  ├── rpu_hw_if.c
│  │  │  │  │  │  │  │ spi_if.c
│  │  │  │  │  ├── wifi_mgmt.c
│  │  │  │  │  ├── wifi_mgmt_scan.c
│  │  │  │  │  ├── wifi_util.c
│  │  │  │  │  ├── wifi_util.h
│  │  │  │  │  │ wpa_supp_if.c
│  │  │  ├── nrfwifi
│  │  │  │  │ CMakeLists.txt
│  ├── include
│  │  ├── zephyr
│  │  │  ├── drivers
│  │  │  │  ├── wifi
│  │  │  │  │  ├── nrf_wifi
│  │  │  │  │  │  ├── off_raw_tx
│  │  │  │  │  │  │  │ off_raw_tx_api.h
│  ├── modules
│  │  ├── nrf_wifi
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── shim.c
│  │  │  ├── shim.h
│  │  │  ├── timer.c
│  │  │  ├── timer.h
│  │  │  ├── work.c
│  │  │  │ work.h
│  ├── tests
│  │  ├── drivers
│  │  │  ├── wifi
│  │  │  │  ├── nrf_wifi
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │ west.yml

Outputs:

Toolchain

Version: b77d8c1312
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:b77d8c1312_912848a074

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ❌ Build twister
    • sdk-nrf test count: 445
    • sdk-zephyr test count: 6195
  • ❌ Integration tests
    • ❌ test-fw-nrfconnect-nrf-iot_thingy91
    • ❌ test-fw-nrfconnect-nrf-iot_mosh
    • ❌ test-fw-nrfconnect-nrf-iot_positioning
    • ❌ test-sdk-wifi
    • ❌ test-low-level
    • ❌ test-sdk-dfu
    • ⚠️ test-fw-nrfconnect-nrf-iot_cloud
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test_ble_nrf_config
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-ble_samples
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-chip
    • test-fw-nrfconnect-fem
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-rs
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-thread
    • test-fw-nrfconnect-zigbee
    • test-sdk-audio
    • test-sdk-find-my
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

Copy link
Contributor

@bjarki-andreasen bjarki-andreasen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super cool :)

@NordicBuilder
Copy link
Contributor

You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds.

Note: This comment is automatically posted by the Documentation Publish GitHub Action.

@shanthanordic shanthanordic added this to the 2.9.0 milestone Nov 29, 2024
nRF70 driver is now restructred upstream.

Signed-off-by: Chaitanya Tata <[email protected]>
Fix the name of the directory.

Signed-off-by: Chaitanya Tata <[email protected]>
nRF70 driver now uses a new module "nrf_wifi", add it to the allow list.

Signed-off-by: Chaitanya Tata <[email protected]>
@NordicBuilder NordicBuilder removed the DNM label Dec 2, 2024
@krish2718
Copy link
Contributor Author

There are two twister failure related to hostap crypto, one I have resolved, working on best solution for the Enterprise mode MBEDTLS_PEM_CERTIFICATE_FORMAT resolution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. doc-required PR must not be merged without tech writer approval. manifest manifest-zephyr
Projects
None yet
Development

Successfully merging this pull request may close these issues.