Skip to content

Commit ef3d429

Browse files
adamkondraciukjukkar
authored andcommitted
[nrf fromlist] 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. Upstream PR #: 94180 Signed-off-by: Adam Kondraciuk <[email protected]> (cherry picked from commit 63febf7)
1 parent 8c4e301 commit ef3d429

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,14 @@ slot3_partition: &cpurad_slot1_partition {
264264
};
265265

266266
&gpio6 {
267-
status = "okay";
267+
status = "disabled";
268268
};
269269

270270
&exmif {
271271
pinctrl-0 = <&exmif_default>;
272272
pinctrl-1 = <&exmif_sleep>;
273273
pinctrl-names = "default", "sleep";
274-
status = "okay";
274+
status = "disabled";
275275

276276
mx25uw63: mx25uw6345g@0 {
277277
compatible = "mxicy,mx25u", "jedec,mspi-nor";

samples/drivers/jesd216/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7+
&gpio6 {
8+
status = "okay";
9+
zephyr,pm-device-runtime-auto;
10+
};
11+
12+
&exmif {
13+
status = "okay";
14+
zephyr,pm-device-runtime-auto;
15+
};
16+
717
&mx25uw63 {
818
status = "okay";
919
};

samples/drivers/spi_flash/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7+
&gpio6 {
8+
status = "okay";
9+
zephyr,pm-device-runtime-auto;
10+
};
11+
12+
&exmif {
13+
status = "okay";
14+
zephyr,pm-device-runtime-auto;
15+
};
16+
717
&mx25uw63 {
818
status = "okay";
919
};

tests/drivers/flash/common/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7+
&gpio6 {
8+
status = "okay";
9+
zephyr,pm-device-runtime-auto;
10+
};
11+
12+
&exmif {
13+
status = "okay";
14+
zephyr,pm-device-runtime-auto;
15+
};
16+
717
&mx25uw63 {
818
status = "okay";
919
};

0 commit comments

Comments
 (0)