Skip to content

Commit 52ec69b

Browse files
committed
tests: driver: flash: Add Flash driver for RZ/A3UL, T2M, N2L
Add Flash driver for RZ/A3UL, T2M, N2L Signed-off-by: Tien Nguyen <[email protected]> tests: temp Signed-off-by: Tien Nguyen <[email protected]>
1 parent 47c0736 commit 52ec69b

File tree

7 files changed

+40
-0
lines changed

7 files changed

+40
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (c) 2025 Renesas Electronics Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_TEST_DRIVER_FLASH_SIZE=16777216
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
&at25ql128a {
7+
status = "okay";
8+
};
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (c) 2025 Renesas Electronics Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_TEST_DRIVER_FLASH_SIZE=67108864
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
&mx25u51245g {
7+
status = "okay";
8+
};
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (c) 2025 Renesas Electronics Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_TEST_DRIVER_FLASH_SIZE=67108864
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
&mx25u51245g {
7+
status = "okay";
8+
};

tests/drivers/flash/common/src/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
#define TEST_AREA_DEV_NODE DT_INST(0, jedec_mspi_nor)
2323
#elif defined(CONFIG_FLASH_RENESAS_RA_QSPI)
2424
#define TEST_AREA_DEV_NODE DT_INST(0, renesas_ra_qspi_nor)
25+
#elif defined(CONFIG_FLASH_RENESAS_RZ_QSPI_XSPI)
26+
#define TEST_AREA_DEV_NODE DT_INST(0, renesas_rz_qspi_xspi)
27+
#elif defined(CONFIG_FLASH_RENESAS_RZ_QSPI_SPIBSC)
28+
#define TEST_AREA_DEV_NODE DT_INST(0, renesas_rz_qspi_spibsc)
2529
#else
2630
#define TEST_AREA storage_partition
2731
#endif

0 commit comments

Comments
 (0)