Skip to content

Commit d34cb70

Browse files
butoknashif
authored andcommitted
tests: littlefs: add mimxrt1064/1160-evk support
Adds support for mimxrt1064-evk and mimxrt1160-evk boards to the littlefs test. Signed-off-by: Andrej Butok <[email protected]>
1 parent 069cd4b commit d34cb70

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/delete-node/ &storage_partition;
8+
9+
&is25wp064 {
10+
partitions {
11+
large_partition: partition@400000 {
12+
label = "large";
13+
reg = <0x00400000 DT_SIZE_M(3)>;
14+
};
15+
medium_partition: partition@700000 {
16+
label = "medium";
17+
reg = <0x00700000 DT_SIZE_K(960)>;
18+
};
19+
small_partition: partition@7F0000 {
20+
label = "small";
21+
reg = <0x007F0000 DT_SIZE_K(64)>;
22+
};
23+
};
24+
};
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/delete-node/ &storage_partition;
8+
9+
&is25wp128 {
10+
partitions {
11+
large_partition: partition@C00000 {
12+
label = "large";
13+
reg = <0x00C00000 DT_SIZE_M(3)>;
14+
};
15+
medium_partition: partition@F00000 {
16+
label = "medium";
17+
reg = <0x00F00000 DT_SIZE_K(960)>;
18+
};
19+
small_partition: partition@FF0000 {
20+
label = "small";
21+
reg = <0x00FF0000 DT_SIZE_K(64)>;
22+
};
23+
};
24+
};

tests/subsys/fs/littlefs/testcase.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ common:
1414
- mimxrt1040_evk
1515
- mimxrt1050_evk/mimxrt1052/hyperflash
1616
- mimxrt1060_evk/mimxrt1062/qspi
17+
- mimxrt1064_evk
18+
- mimxrt1160_evk/mimxrt1166/cm7
1719
- mimxrt1170_evk/mimxrt1176/cm7
1820
- mimxrt1180_evk/mimxrt1189/cm33
1921
- mimxrt595_evk/mimxrt595s/cm33

0 commit comments

Comments
 (0)