From 336fc6c82c35bec80b5ac15ace67a1a3430becba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Fri, 28 Mar 2025 11:36:52 +0100 Subject: [PATCH 1/2] [nrf fromlist] soc: nordic: nrf54h: Change PM_DEVICE_RUNTIME default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nrf54h20 device requires device runtime PM to be enabled when device PM is in use. Upstream PR #: 87807 Signed-off-by: Krzysztof Chruściński --- soc/nordic/nrf54h/Kconfig.defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/soc/nordic/nrf54h/Kconfig.defconfig b/soc/nordic/nrf54h/Kconfig.defconfig index 65023fc18ca..e1bd0aa6801 100644 --- a/soc/nordic/nrf54h/Kconfig.defconfig +++ b/soc/nordic/nrf54h/Kconfig.defconfig @@ -42,4 +42,7 @@ config SPI_DW_ACCESS_WORD_ONLY config PM_DEVICE_POWER_DOMAIN default n if PM_DEVICE +config PM_DEVICE_RUNTIME + default y if PM_DEVICE + endif # SOC_SERIES_NRF54HX From 2bd58c744c6f5ed241cdaccbd89f7c2a376be6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Thu, 3 Apr 2025 08:23:19 +0200 Subject: [PATCH 2/2] [nrf fromlist] tests: drivers: uart: uart_pm: Disable device runtime PM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Explicitly disable device runtime PM since this test is expecting it to be disabled and there are SoC now that turns on it by default. Upstream PR #: 87807 Signed-off-by: Krzysztof Chruściński --- tests/drivers/uart/uart_pm/prj.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/drivers/uart/uart_pm/prj.conf b/tests/drivers/uart/uart_pm/prj.conf index 949c1497802..a01ea2777b6 100644 --- a/tests/drivers/uart/uart_pm/prj.conf +++ b/tests/drivers/uart/uart_pm/prj.conf @@ -2,3 +2,4 @@ CONFIG_ZTEST=y CONFIG_SERIAL=y CONFIG_PM=y CONFIG_PM_DEVICE=y +CONFIG_PM_DEVICE_RUNTIME=n