boards: mimxrt1xxx: change flash controller to correct node

flash controller on RT boards should be the flash device, rather than
the flexspi, as the flash device's driver implements flash APIs.

Fixes #45505

Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
Daniel DeGrasse 2022-05-11 17:34:13 -05:00 committed by David Leach
commit dfabb2e3e5
9 changed files with 9 additions and 9 deletions

View file

@ -19,7 +19,7 @@
}; };
chosen { chosen {
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp064;
zephyr,flash = &is25wp064; zephyr,flash = &is25wp064;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,sram = &sdram0; zephyr,sram = &sdram0;

View file

@ -20,7 +20,7 @@
}; };
chosen { chosen {
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp032;
zephyr,flash = &is25wp032; zephyr,flash = &is25wp032;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,sram = &sdram0; zephyr,sram = &sdram0;

View file

@ -10,7 +10,7 @@
/ { / {
chosen { chosen {
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp064;
zephyr,flash = &is25wp064; zephyr,flash = &is25wp064;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
}; };

View file

@ -21,7 +21,7 @@
}; };
chosen { chosen {
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp064;
zephyr,flash = &is25wp064; zephyr,flash = &is25wp064;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,sram = &sdram0; zephyr,sram = &sdram0;

View file

@ -22,7 +22,7 @@
}; };
chosen { chosen {
zephyr,flash-controller = &flexspi2; zephyr,flash-controller = &is25wp064;
zephyr,flash = &w25q32jvwj0; zephyr,flash = &w25q32jvwj0;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,sram = &sdram0; zephyr,sram = &sdram0;

View file

@ -23,7 +23,7 @@
zephyr,sram = &sram1; zephyr,sram = &sram1;
zephyr,console = &lpuart1; zephyr,console = &lpuart1;
zephyr,shell-uart = &lpuart1; zephyr,shell-uart = &lpuart1;
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp128;
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
}; };

View file

@ -20,7 +20,7 @@
zephyr,console = &lpuart1; zephyr,console = &lpuart1;
zephyr,shell-uart = &lpuart1; zephyr,shell-uart = &lpuart1;
zephyr,canbus = &flexcan3; zephyr,canbus = &flexcan3;
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp128;
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
}; };

View file

@ -24,7 +24,7 @@
zephyr,console = &lpuart1; zephyr,console = &lpuart1;
zephyr,shell-uart = &lpuart1; zephyr,shell-uart = &lpuart1;
zephyr,canbus = &flexcan2; zephyr,canbus = &flexcan2;
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp128;
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
}; };

View file

@ -24,7 +24,7 @@
zephyr,console = &lpuart1; zephyr,console = &lpuart1;
zephyr,shell-uart = &lpuart1; zephyr,shell-uart = &lpuart1;
zephyr,canbus = &flexcan3; zephyr,canbus = &flexcan3;
zephyr,flash-controller = &flexspi; zephyr,flash-controller = &is25wp128;
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,display = &lcdif; zephyr,display = &lcdif;