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

manifest: sdk-zephyr: [nrf fromlist] drivers: mspi: Add driver for Designware SSI based controllers #18005

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

Conversation

NordicBuilder
Copy link
Contributor

Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-zephyr#2136

@NordicBuilder NordicBuilder requested a review from a team as a code owner October 18, 2024 10:19
@github-actions github-actions bot added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Oct 18, 2024
@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Oct 18, 2024

The following west manifest projects have been modified in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@1e549f5 nrfconnect/sdk-zephyr#2136 nrfconnect/sdk-zephyr#2136/files

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

@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Oct 18, 2024

CI Information

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

Inputs:

Sources:

sdk-nrf: PR head: 875adbd7f07092b5e5cf1af98ccd80c088fd45fa
zephyr: PR head: 8e1183e0e829c1eb6e7414d79d285c0946411769

more details

sdk-nrf:

PR head: 875adbd7f07092b5e5cf1af98ccd80c088fd45fa
merge base: ab0f67e322a4f78a63e018b42abc2bd358167119
target head (main): d34297a836f9a1c0cd3730a1529cc17a0966a7f5
Diff

zephyr:

PR head: 8e1183e0e829c1eb6e7414d79d285c0946411769
merge base: 1e549f5f6eb8ff6cf212af7fc2b5df7082a0d3c3
target head (main): dab9c11bdcc80f1e0670ef686e6066ee3304ac47
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 (50)
tests
│  ├── benchmarks
│  │  ├── peripheral_load
│  │  │  ├── src
│  │  │  │  │ flash_thread.c
│  │  ├── power_consumption
│  │  │  ├── flash
│  │  │  │  ├── src
│  │  │  │  │  │ driver_test.c
west.yml
zephyr
│  ├── .github
│  │  │ test-spec.yml
│  ├── arch
│  │  ├── arm
│  │  │  ├── core
│  │  │  │  ├── cortex_m
│  │  │  │  │  │ pm_s2ram.S
│  ├── boards
│  │  ├── nordic
│  │  │  ├── nrf54h20dk
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── nrf54h20dk_nrf54h20-pinctrl.dtsi
│  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.dts
│  │  │  ├── nrf9280pdk
│  │  │  │  ├── nrf9280pdk_nrf9280-pinctrl.dtsi
│  │  │  │  │ nrf9280pdk_nrf9280_cpuapp.dts
│  ├── drivers
│  │  ├── dp
│  │  │  │ swdp_bitbang.c
│  │  ├── flash
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.mspi
│  │  │  │ flash_mspi_nor.c
│  │  ├── mspi
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.dw
│  │  │  ├── mspi_dw.c
│  │  │  │ mspi_dw.h
│  │  ├── pinctrl
│  │  │  │ pinctrl_nrf.c
│  │  ├── pwm
│  │  │  │ pwm_nrfx.c
│  │  ├── spi
│  │  │  ├── spi_dw.c
│  │  │  │ spi_nrfx_spim.c
│  │  ├── wifi
│  │  │  ├── nrfwifi
│  │  │  │  │ Kconfig.nrfwifi
│  ├── dts
│  │  ├── bindings
│  │  │  ├── mspi
│  │  │  │  │ snps,designware-ssi.yaml
│  │  │  ├── mtd
│  │  │  │  │ jedec,mspi-nor.yaml
│  │  │  ├── spi
│  │  │  │  │ nordic,nrf-exmif.yaml
│  │  ├── common
│  │  │  ├── nordic
│  │  │  │  ├── nrf54h20.dtsi
│  │  │  │  │ nrf9280.dtsi
│  ├── include
│  │  ├── zephyr
│  │  │  ├── dt-bindings
│  │  │  │  ├── pinctrl
│  │  │  │  │  │ nrf-pinctrl.h
│  ├── modules
│  │  ├── Kconfig.mcuboot
│  │  ├── hal_nordic
│  │  │  ├── nrfs
│  │  │  │  │ Kconfig
│  ├── samples
│  │  ├── drivers
│  │  │  ├── jesd216
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── spi_flash
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  ├── subsys
│  │  │  ├── mgmt
│  │  │  │  ├── mcumgr
│  │  │  │  │  ├── smp_svr
│  │  │  │  │  │  │ prj.conf
│  ├── soc
│  │  ├── nordic
│  │  │  ├── nrf54h
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── mram.c
│  │  │  │  ├── pm_s2ram.c
│  │  │  │  │ power.c
│  ├── subsys
│  │  ├── mgmt
│  │  │  ├── mcumgr
│  │  │  │  ├── grp
│  │  │  │  │  ├── img_mgmt
│  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  ├── mgmt
│  │  │  │  │  │  │  │  ├── mcumgr
│  │  │  │  │  │  │  │  │  ├── grp
│  │  │  │  │  │  │  │  │  │  ├── img_mgmt
│  │  │  │  │  │  │  │  │  │  │  │ img_mgmt_priv.h
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── img_mgmt.c
│  │  │  │  │  │  │  │ img_mgmt_state.c
│  ├── tests
│  │  ├── drivers
│  │  │  ├── flash
│  │  │  │  ├── common
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c

Outputs:

Toolchain

Version: b81a7cd864
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:b81a7cd864_912848a074

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

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
    • sdk-nrf test count: 1334
    • sdk-zephyr test count: 9848
  • ❌ Integration tests
    • ✅ test-sdk-audio
    • ✅ test-fw-nrfconnect-boot
    • ✅ test-fw-nrfconnect-chip
    • ✅ test-fw-nrfconnect-nfc
    • ❌ test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • ✅ test-fw-nrfconnect-nrf-iot_thingy91
    • ✅ test-fw-nrfconnect-rs
    • ✅ test-fw-nrfconnect-fem
    • ✅ test-fw-nrfconnect-thread
    • ✅ test-fw-nrfconnect-zigbee
    • ✅ test-sdk-find-my
    • ✅ test-fw-nrfconnect-nrf-iot_mosh
    • ✅ test-fw-nrfconnect-nrf-iot_positioning
    • ✅ test-sdk-sidewalk
    • ✅ test-low-level
    • ✅ test-sdk-mcuboot
    • ✅ 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-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • 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-tfm
    • test-sdk-pmic-samples
    • test-sdk-wifi

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

@NordicBuilder
Copy link
Contributor Author

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 Publishing GitHub Action.

@thst-nordic
Copy link
Contributor

CI/Jenkins/toolchain Failing after 5m — building toolchain
rebase will fix this

@anangl
Copy link
Contributor

anangl commented Oct 18, 2024

Rebased.

@anangl anangl force-pushed the auto-manifest-sdk-zephyr-2136 branch from ae89a01 to f8a956a Compare October 21, 2024 11:17
@anangl anangl requested a review from a team as a code owner October 21, 2024 11:17
@anangl
Copy link
Contributor

anangl commented Nov 5, 2024

Rebased.

... so that the tests can be built for nRF54H20 and nRF9280 after they
are switched to use the new MSPI driver for EXMIF.

Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
@anangl
Copy link
Contributor

anangl commented Nov 15, 2024

Rebased.

Automatically created by Github Action

Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
@NordicBuilder
Copy link
Contributor Author

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.

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. DNM manifest manifest-zephyr
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants