boards: nordic: nrf54h20dk: Disable EXMIF and GPIO6 by default

External flash memory is typically not used, so it should
be disabled by default. The GPIO6 port used by this device
should also be disabled.

Signed-off-by: Adam Kondraciuk <adam.kondraciuk@nordicsemi.no>
This commit is contained in:
Adam Kondraciuk
2025-08-06 17:57:20 +02:00
committed by Benjamin Cabé
parent 0a1d63f75a
commit 612fd940fa
4 changed files with 32 additions and 2 deletions

View File

@@ -258,14 +258,14 @@ slot3_partition: &cpurad_slot1_partition {
};
&gpio6 {
status = "okay";
status = "disabled";
};
&exmif {
pinctrl-0 = <&exmif_default>;
pinctrl-1 = <&exmif_sleep>;
pinctrl-names = "default", "sleep";
status = "okay";
status = "disabled";
mx25uw63: mx25uw6345g@0 {
compatible = "mxicy,mx25u", "jedec,mspi-nor";

View File

@@ -4,6 +4,16 @@
* SPDX-License-Identifier: Apache-2.0
*/
&gpio6 {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&exmif {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&mx25uw63 {
status = "okay";
};

View File

@@ -4,6 +4,16 @@
* SPDX-License-Identifier: Apache-2.0
*/
&gpio6 {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&exmif {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&mx25uw63 {
status = "okay";
};

View File

@@ -4,6 +4,16 @@
* SPDX-License-Identifier: Apache-2.0
*/
&gpio6 {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&exmif {
status = "okay";
zephyr,pm-device-runtime-auto;
};
&mx25uw63 {
status = "okay";
};