Skip to content

Commit

Permalink
[nrf fromlist] samples|tests: drivers: flash: Add support for "jedec,…
Browse files Browse the repository at this point in the history
…mspi-nor" devices

Extend several flash samples and tests so that they can also be used
with "jedec,mspi-nor" devices.
Add configurations needed for the nrf54h20dk/nrf54h20/cpuapp target.

Signed-off-by: Andrzej Głąbek <[email protected]>
(cherry picked from commit 280e331a584d80925711077fed8eefa09843e5bf)

Upstream PR: zephyrproject-rtos/zephyr#80042
  • Loading branch information
anangl committed Oct 18, 2024
1 parent 5a1ae24 commit 2f1e2cf
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#

CONFIG_SPI=n
CONFIG_SPI_NOR=n
4 changes: 3 additions & 1 deletion samples/drivers/jesd216/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#if DT_HAS_COMPAT_STATUS_OKAY(jedec_spi_nor)
#define FLASH_NODE DT_COMPAT_GET_ANY_STATUS_OKAY(jedec_spi_nor)
#elif DT_HAS_COMPAT_STATUS_OKAY(jedec_mspi_nor)
#define FLASH_NODE DT_COMPAT_GET_ANY_STATUS_OKAY(jedec_mspi_nor)
#elif DT_HAS_COMPAT_STATUS_OKAY(nordic_qspi_nor)
#define FLASH_NODE DT_COMPAT_GET_ANY_STATUS_OKAY(nordic_qspi_nor)
#elif DT_HAS_COMPAT_STATUS_OKAY(st_stm32_qspi_nor)
Expand Down Expand Up @@ -201,7 +203,7 @@ static void summarize_dw15(const struct jesd216_param_header *php,
printf("0-4-4 Mode methods: entry 0x%01x ; exit 0x%02x\n",
dw15.entry_044, dw15.exit_044);
} else {
printf("0-4-4 Mode: not supported");
printf("0-4-4 Mode: not supported\n");
}
printf("4-4-4 Mode sequences: enable 0x%02x ; disable 0x%01x\n",
dw15.enable_444, dw15.disable_444);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#

CONFIG_SPI=n
2 changes: 1 addition & 1 deletion samples/drivers/spi_flash/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tests:
- flash
filter: dt_compat_enabled("jedec,spi-nor") or dt_compat_enabled("st,stm32-qspi-nor")
or dt_compat_enabled("st,stm32-ospi-nor") or dt_compat_enabled("st,stm32-xspi-nor")
or (dt_compat_enabled("nordic,qspi-nor") and CONFIG_NORDIC_QSPI_NOR)
or dt_compat_enabled("nordic,qspi-nor") or dt_compat_enabled("jedec,spi-nor")
platform_exclude: hifive_unmatched
harness: console
harness_config:
Expand Down
2 changes: 2 additions & 0 deletions samples/drivers/spi_flash/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

#if DT_HAS_COMPAT_STATUS_OKAY(jedec_spi_nor)
#define SPI_FLASH_COMPAT jedec_spi_nor
#elif DT_HAS_COMPAT_STATUS_OKAY(jedec_mspi_nor)
#define SPI_FLASH_COMPAT jedec_mspi_nor
#elif DT_HAS_COMPAT_STATUS_OKAY(st_stm32_qspi_nor)
#define SPI_FLASH_COMPAT st_stm32_qspi_nor
#elif DT_HAS_COMPAT_STATUS_OKAY(st_stm32_ospi_nor)
Expand Down
2 changes: 2 additions & 0 deletions tests/drivers/flash/common/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#define TEST_AREA_DEV_NODE DT_INST(0, nordic_qspi_nor)
#elif defined(CONFIG_SPI_NOR)
#define TEST_AREA_DEV_NODE DT_INST(0, jedec_spi_nor)
#elif defined(CONFIG_FLASH_MSPI_NOR)
#define TEST_AREA_DEV_NODE DT_INST(0, jedec_mspi_nor)
#else
#define TEST_AREA storage_partition
#endif
Expand Down

0 comments on commit 2f1e2cf

Please sign in to comment.