now the XIP feature can work in NXP RT series boards
so enable below cases on mimxrt1060_evk with XIP
tests/kernel/xip
tests/drivers/flash
tests/subsys/fs/littlefs
samples/shell/fs
samples/subsys/fs/littlefs
for tests/subsys/fs/littlefs:
need add --erase to erase the nor flash if you are using below partition
e.g. west flash --runner=pyocd --erase
&is25wp064 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition@310000 {
label = "large";
reg = <0x00310000 DT_SIZE_M(3)>;
};
partition@610000 {
label = "image-scratch";
reg = <0x00610000 DT_SIZE_K(128)>;
};
partition@630000 {
label = "small";
reg = <0x00630000 DT_SIZE_K(64)>;
};
partition@640000 {
label = "medium";
reg = <0x00640000 DT_SIZE_K(960)>;
};
};
};
Signed-off-by: Hake Huang <hake.huang@oss.nxp.com>
17 lines
474 B
YAML
17 lines
474 B
YAML
common:
|
|
integration_platforms:
|
|
- nrf52840dk_nrf52840
|
|
|
|
tests:
|
|
drivers.flash.nrf_qspi_nor:
|
|
platform_allow: nrf52840dk_nrf52840
|
|
tags: flash nrf52 nrf_qspi_fash
|
|
extra_args: OVERLAY_CONFIG=boards/nrf52840_flash_qspi.conf
|
|
drivers.flash.soc_flash_nrf:
|
|
platform_allow: nrf52840dk_nrf52840
|
|
tags: nrf52 soc_flash_nrf
|
|
extra_args: OVERLAY_CONFIG=boards/nrf52840_flash_soc.conf
|
|
drivers.flash.default:
|
|
platform_allow: mimxrt1060_evk
|
|
tags: mcux
|