From adf95c891755bb2022b222885de238a8461bc83f Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Tue, 28 Nov 2023 15:58:05 +0000 Subject: [PATCH 01/14] drivers: gpio: Add PM Action for MCUX LPC driver Add PM action for MCUX LPC driver Signed-off-by: Mahesh Mahadevan --- drivers/gpio/gpio_mcux_lpc.c | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/drivers/gpio/gpio_mcux_lpc.c b/drivers/gpio/gpio_mcux_lpc.c index 6a103a77dc82..75d4f185260d 100644 --- a/drivers/gpio/gpio_mcux_lpc.c +++ b/drivers/gpio/gpio_mcux_lpc.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -406,14 +407,34 @@ static int gpio_mcux_lpc_manage_cb(const struct device *port, return gpio_manage_callback(&data->callbacks, callback, set); } -static int gpio_mcux_lpc_init(const struct device *dev) +static int gpio_mcux_lpc_pm_action(const struct device *dev, enum pm_device_action action) { - const struct gpio_mcux_lpc_config *config = dev->config; - GPIO_PortInit(config->gpio_base, config->port_no); + switch (action) { + case PM_DEVICE_ACTION_RESUME: + break; + case PM_DEVICE_ACTION_SUSPEND: + break; + case PM_DEVICE_ACTION_TURN_OFF: + break; + case PM_DEVICE_ACTION_TURN_ON: + const struct gpio_mcux_lpc_config *config = dev->config; + GPIO_PortInit(config->gpio_base, config->port_no); + break; + default: + return -ENOTSUP; + } return 0; } +static int gpio_mcux_lpc_init(const struct device *dev) +{ + /* Rest of the init is done from the PM_DEVICE_TURN_ON action + * which is invoked by pm_device_driver_init(). + */ + return pm_device_driver_init(dev, gpio_mcux_lpc_pm_action); +} + static DEVICE_API(gpio, gpio_mcux_lpc_driver_api) = { .pin_configure = gpio_mcux_lpc_configure, .port_get_raw = gpio_mcux_lpc_port_get_raw, @@ -465,7 +486,10 @@ static DEVICE_API(gpio, gpio_mcux_lpc_driver_api) = { \ static struct gpio_mcux_lpc_data gpio_mcux_lpc_data_##n; \ \ - DEVICE_DT_INST_DEFINE(n, lpc_gpio_init_##n, NULL, \ + PM_DEVICE_DT_INST_DEFINE(n, gpio_mcux_lpc_pm_action); \ + \ + DEVICE_DT_INST_DEFINE(n, lpc_gpio_init_##n, \ + PM_DEVICE_DT_INST_GET(n), \ &gpio_mcux_lpc_data_##n, \ &gpio_mcux_lpc_config_##n, PRE_KERNEL_1, \ CONFIG_GPIO_INIT_PRIORITY, \ From ea2e388caf236dd2f293c2dbcb1b29aa7e2401f8 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Mon, 3 Feb 2025 16:36:44 -0600 Subject: [PATCH 02/14] drivers: uart: Add PM action for NXP UART Flexcomm driver Add power action callback handlers to the driver. Signed-off-by: Mahesh Mahadevan --- drivers/serial/uart_mcux_flexcomm.c | 98 +++++++++++++++++++++++++++-- dts/arm/nxp/nxp_rw6xx_common.dtsi | 5 ++ 2 files changed, 98 insertions(+), 5 deletions(-) diff --git a/drivers/serial/uart_mcux_flexcomm.c b/drivers/serial/uart_mcux_flexcomm.c index fcb7f41121e0..a7b709a26d70 100644 --- a/drivers/serial/uart_mcux_flexcomm.c +++ b/drivers/serial/uart_mcux_flexcomm.c @@ -14,7 +14,9 @@ #include #include #include +#include #include +#include #include #include #include @@ -86,8 +88,33 @@ struct mcux_flexcomm_data { #ifdef CONFIG_UART_USE_RUNTIME_CONFIGURE struct uart_config uart_config; #endif +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + bool pm_policy_state_lock; +#endif }; +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS +static void mcux_flexcomm_pm_policy_state_lock_get(const struct device *dev) +{ + struct mcux_flexcomm_data *data = dev->data; + + if (!data->pm_policy_state_lock) { + data->pm_policy_state_lock = true; + pm_policy_device_power_lock_get(dev); + } +} + +static void mcux_flexcomm_pm_policy_state_lock_put(const struct device *dev) +{ + struct mcux_flexcomm_data *data = dev->data; + + if (data->pm_policy_state_lock) { + data->pm_policy_state_lock = false; + pm_policy_device_power_lock_put(dev); + } +} +#endif + static int mcux_flexcomm_poll_in(const struct device *dev, unsigned char *c) { const struct mcux_flexcomm_config *config = dev->config; @@ -179,6 +206,14 @@ static void mcux_flexcomm_irq_tx_enable(const struct device *dev) const struct mcux_flexcomm_config *config = dev->config; uint32_t mask = kUSART_TxLevelInterruptEnable; + /* Indicates that this device started a transaction that should + * not be interrupted by putting the SoC in states that would + * interfere with this transfer. + */ +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + mcux_flexcomm_pm_policy_state_lock_get(dev); +#endif + USART_EnableInterrupts(config->base, mask); } @@ -187,6 +222,10 @@ static void mcux_flexcomm_irq_tx_disable(const struct device *dev) const struct mcux_flexcomm_config *config = dev->config; uint32_t mask = kUSART_TxLevelInterruptEnable; +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + mcux_flexcomm_pm_policy_state_lock_put(dev); +#endif + USART_DisableInterrupts(config->base, mask); } @@ -467,11 +506,19 @@ static int mcux_flexcomm_uart_tx(const struct device *dev, const uint8_t *buf, /* Enable TX DMA requests */ USART_EnableTxDMA(config->base, true); + /* Do not allow the system to suspend until the transmission has completed */ +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + mcux_flexcomm_pm_policy_state_lock_get(dev); +#endif + /* Trigger the DMA to start transfer */ ret = dma_start(config->tx_dma.dev, config->tx_dma.channel); if (ret) { irq_unlock(key); - return ret; +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + mcux_flexcomm_pm_policy_state_lock_put(dev); +#endif + return ret; } /* Schedule a TX abort for @param timeout */ @@ -993,6 +1040,10 @@ static void mcux_flexcomm_isr(const struct device *dev) data->tx_data.xfer_buf = NULL; async_user_callback(dev, &tx_done_event); + +#ifdef CONFIG_PM_POLICY_DEVICE_CONSTRAINTS + mcux_flexcomm_pm_policy_state_lock_put(dev); +#endif } } @@ -1000,8 +1051,7 @@ static void mcux_flexcomm_isr(const struct device *dev) } #endif /* CONFIG_UART_MCUX_FLEXCOMM_ISR_SUPPORT */ - -static int mcux_flexcomm_init(const struct device *dev) +static int mcux_flexcomm_init_common(const struct device *dev) { const struct mcux_flexcomm_config *config = dev->config; #ifdef CONFIG_UART_USE_RUNTIME_CONFIGURE @@ -1067,6 +1117,42 @@ static int mcux_flexcomm_init(const struct device *dev) return 0; } +static uint32_t usart_intenset; +static int mcux_flexcomm_pm_action(const struct device *dev, enum pm_device_action action) +{ + const struct mcux_flexcomm_config *config = dev->config; + + usart_intenset = USART_GetEnabledInterrupts(config->base); + + switch (action) { + case PM_DEVICE_ACTION_RESUME: + break; + case PM_DEVICE_ACTION_SUSPEND: + break; + case PM_DEVICE_ACTION_TURN_OFF: + break; + case PM_DEVICE_ACTION_TURN_ON: + int ret = mcux_flexcomm_init_common(dev); + + if (ret) { + return ret; + } + USART_EnableInterrupts(config->base, usart_intenset); + break; + default: + return -ENOTSUP; + } + return 0; +} + +static int mcux_flexcomm_init(const struct device *dev) +{ + /* Rest of the init is done from the PM_DEVICE_TURN_ON action + * which is invoked by pm_device_driver_init(). + */ + return pm_device_driver_init(dev, mcux_flexcomm_pm_action); +} + static DEVICE_API(uart, mcux_flexcomm_driver_api) = { .poll_in = mcux_flexcomm_poll_in, .poll_out = mcux_flexcomm_poll_out, @@ -1202,9 +1288,11 @@ static const struct mcux_flexcomm_config mcux_flexcomm_##n##_config = { \ \ static const struct mcux_flexcomm_config mcux_flexcomm_##n##_config; \ \ + PM_DEVICE_DT_INST_DEFINE(n, mcux_flexcomm_pm_action); \ + \ DEVICE_DT_INST_DEFINE(n, \ - mcux_flexcomm_init, \ - NULL, \ + &mcux_flexcomm_init, \ + PM_DEVICE_DT_INST_GET(n), \ &mcux_flexcomm_##n##_data, \ &mcux_flexcomm_##n##_config, \ PRE_KERNEL_1, \ diff --git a/dts/arm/nxp/nxp_rw6xx_common.dtsi b/dts/arm/nxp/nxp_rw6xx_common.dtsi index 3923a1421143..4fc2e509a195 100644 --- a/dts/arm/nxp/nxp_rw6xx_common.dtsi +++ b/dts/arm/nxp/nxp_rw6xx_common.dtsi @@ -225,6 +225,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 8)>; dmas = <&dma0 0>, <&dma0 1>; dma-names = "rx", "tx"; + zephyr,disabling-power-states = <&suspend>; status = "disabled"; }; @@ -236,6 +237,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 9)>; dmas = <&dma0 2>, <&dma0 3>; dma-names = "rx", "tx"; + zephyr,disabling-power-states = <&suspend>; status = "disabled"; }; @@ -247,6 +249,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 10)>; dmas = <&dma0 4>, <&dma0 5>; dma-names = "rx", "tx"; + zephyr,disabling-power-states = <&suspend>; status = "disabled"; }; @@ -258,6 +261,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 11)>; dmas = <&dma0 6>, <&dma0 7>; dma-names = "rx", "tx"; + zephyr,disabling-power-states = <&suspend>; status = "disabled"; }; @@ -269,6 +273,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 22)>; dmas = <&dma0 26>, <&dma0 27>; dma-names = "rx", "tx"; + zephyr,disabling-power-states = <&suspend>; status = "disabled"; }; From 6d7691f6d5089c48c4b4c45fbb2a9f8bf652c541 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Mon, 3 Feb 2025 16:39:34 -0600 Subject: [PATCH 03/14] dts: nxp_rw6xx: Add support for standby power mode This maps to Power Mode 3 in the SoC. Add RTC node that is used to wakeup from this mode. Signed-off-by: Mahesh Mahadevan --- dts/arm/nxp/nxp_rw6xx_common.dtsi | 37 ++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/dts/arm/nxp/nxp_rw6xx_common.dtsi b/dts/arm/nxp/nxp_rw6xx_common.dtsi index 4fc2e509a195..11123ba624e6 100644 --- a/dts/arm/nxp/nxp_rw6xx_common.dtsi +++ b/dts/arm/nxp/nxp_rw6xx_common.dtsi @@ -30,7 +30,7 @@ reg = <0>; #address-cells = <1>; #size-cells = <1>; - cpu-power-states = <&idle &suspend>; + cpu-power-states = <&idle &suspend &standby>; mpu: mpu@e000ed90 { compatible = "arm,armv8m-mpu"; @@ -58,6 +58,20 @@ <0x100>, <0x0>; }; + /* This is the setting for Sleep Mode */ + standby: standby { + compatible = "nxp,pdcfg-power", "zephyr,power-state"; + power-state-name = "standby"; + /* TODO: Revisit latency numbers */ + min-residency-us = <5000>; + exit-latency-us = <1000>; + deep-sleep-config = <0x180000>, + <0x0>, + <0x4>, + <0x100>, + <0x0>; + status = "disabled"; + }; }; }; @@ -225,7 +239,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 8)>; dmas = <&dma0 0>, <&dma0 1>; dma-names = "rx", "tx"; - zephyr,disabling-power-states = <&suspend>; + zephyr,disabling-power-states = <&suspend &standby>; status = "disabled"; }; @@ -237,7 +251,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 9)>; dmas = <&dma0 2>, <&dma0 3>; dma-names = "rx", "tx"; - zephyr,disabling-power-states = <&suspend>; + zephyr,disabling-power-states = <&suspend &standby>; status = "disabled"; }; @@ -249,7 +263,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 10)>; dmas = <&dma0 4>, <&dma0 5>; dma-names = "rx", "tx"; - zephyr,disabling-power-states = <&suspend>; + zephyr,disabling-power-states = <&suspend &standby>; status = "disabled"; }; @@ -261,7 +275,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 11)>; dmas = <&dma0 6>, <&dma0 7>; dma-names = "rx", "tx"; - zephyr,disabling-power-states = <&suspend>; + zephyr,disabling-power-states = <&suspend &standby>; status = "disabled"; }; @@ -273,7 +287,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(0, 22)>; dmas = <&dma0 26>, <&dma0 27>; dma-names = "rx", "tx"; - zephyr,disabling-power-states = <&suspend>; + zephyr,disabling-power-states = <&suspend &standby>; status = "disabled"; }; @@ -327,6 +341,17 @@ dmas = <&dma0 0>; }; + rtc: rtc@30000 { + compatible = "nxp,lpc-rtc"; + reg = <0x30000 0x1000>; + interrupts = <32 0>; + status = "disabled"; + rtc_highres: rtc_highres { + compatible = "nxp,lpc-rtc-highres"; + status = "disabled"; + }; + }; + ctimer0: ctimer@28000 { compatible = "nxp,lpc-ctimer"; reg = <0x28000 0x1000>; From 6bf0a68301f5423ad308ec2868cc8e4300223842 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Thu, 30 Jan 2025 17:13:44 -0600 Subject: [PATCH 04/14] dts: nxp_rw6xx: Add Power Domain Support This is required to re-initialize the peripherals on exit from Power Mode 3. Signed-off-by: Mahesh Mahadevan --- dts/arm/nxp/nxp_rw6xx_common.dtsi | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dts/arm/nxp/nxp_rw6xx_common.dtsi b/dts/arm/nxp/nxp_rw6xx_common.dtsi index 11123ba624e6..7777fd81439d 100644 --- a/dts/arm/nxp/nxp_rw6xx_common.dtsi +++ b/dts/arm/nxp/nxp_rw6xx_common.dtsi @@ -83,6 +83,11 @@ ranges = <0x0 0x443C0000 DT_SIZE_K(140)>; }; + power_mode3_domain: power_mode3_domain { + compatible = "power-domain-soc-state-change"; + onoff-power-states = <&standby>; + #power-domain-cells = <0>; + }; }; &sram { @@ -189,6 +194,7 @@ reg = <0x14000 0x1000>; status = "okay"; interrupts = <123 0>; + power-domains = <&power_mode3_domain>; }; wwdt: watchdog@e000 { @@ -211,6 +217,7 @@ #gpio-cells = <2>; reg = <0>; int-source = "pint"; + power-domains = <&power_mode3_domain>; }; hsgpio1: gpio@1 { @@ -219,6 +226,7 @@ #gpio-cells = <2>; reg = <1>; int-source = "pint"; + power-domains = <&power_mode3_domain>; }; }; @@ -228,6 +236,7 @@ interrupts = <50 1>; interrupt-names = "usb_otg"; num-bidir-endpoints = <8>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -240,6 +249,7 @@ dmas = <&dma0 0>, <&dma0 1>; dma-names = "rx", "tx"; zephyr,disabling-power-states = <&suspend &standby>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -252,6 +262,7 @@ dmas = <&dma0 2>, <&dma0 3>; dma-names = "rx", "tx"; zephyr,disabling-power-states = <&suspend &standby>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -264,6 +275,7 @@ dmas = <&dma0 4>, <&dma0 5>; dma-names = "rx", "tx"; zephyr,disabling-power-states = <&suspend &standby>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -276,6 +288,7 @@ dmas = <&dma0 6>, <&dma0 7>; dma-names = "rx", "tx"; zephyr,disabling-power-states = <&suspend &standby>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -288,6 +301,7 @@ dmas = <&dma0 26>, <&dma0 27>; dma-names = "rx", "tx"; zephyr,disabling-power-states = <&suspend &standby>; + power-domains = <&power_mode3_domain>; status = "disabled"; }; @@ -319,6 +333,7 @@ compatible = "nxp,wifi"; /* first index is the imu interrupt, the second is the wakeup done interrupt */ interrupts = <72 2>, <64 2>; + power-domains = <&power_mode3_domain>; }; dma0: dma-controller@104000 { @@ -328,6 +343,7 @@ status = "disabled"; #dma-cells = <1>; dma-channels = <33>; + power-domains = <&power_mode3_domain>; }; lcdic: lcdic@128000 { @@ -339,6 +355,7 @@ #size-cells = <0>; clocks = <&clkctl1 MCUX_LCDIC_CLK>; dmas = <&dma0 0>; + power-domains = <&power_mode3_domain>; }; rtc: rtc@30000 { @@ -362,6 +379,7 @@ mode = <0>; input = <0>; prescale = <0>; + power-domains = <&power_mode3_domain>; }; ctimer1: ctimer@29000 { @@ -374,6 +392,7 @@ mode = <0>; input = <0>; prescale = <0>; + power-domains = <&power_mode3_domain>; }; ctimer2: ctimer@2a000 { @@ -386,6 +405,7 @@ mode = <0>; input = <0>; prescale = <0>; + power-domains = <&power_mode3_domain>; }; ctimer3: ctimer@2b000 { @@ -398,6 +418,7 @@ mode = <0>; input = <0>; prescale = <0>; + power-domains = <&power_mode3_domain>; }; sctimer: pwm@146000 { @@ -408,6 +429,7 @@ status = "disabled"; prescaler = <8>; #pwm-cells = <3>; + power-domains = <&power_mode3_domain>; }; mrt0: mrt@2d000 { @@ -420,6 +442,7 @@ resets = <&rstctl1 NXP_SYSCON_RESET(2, 8)>; #address-cells = <1>; #size-cells = <0>; + power-domains = <&power_mode3_domain>; mrt0_channel0: mrt0_channel@0 { compatible = "nxp,mrt-channel"; @@ -453,6 +476,7 @@ resets = <&rstctl0 NXP_SYSCON_RESET(2, 26)>; #address-cells = <1>; #size-cells = <0>; + power-domains = <&power_mode3_domain>; mrt1_channel0: mrt1_channel@0 { compatible = "nxp,mrt-channel"; @@ -484,6 +508,7 @@ interrupts = <25 0>; status = "disabled"; clocks = <&clkctl1 MCUX_DMIC_CLK>; + power-domains = <&power_mode3_domain>; pdmc0: dmic-channel@0 { reg = <0>; @@ -521,6 +546,7 @@ interrupts = <112 0>; status = "disabled"; #io-channel-cells = <1>; + power-domains = <&power_mode3_domain>; }; adc1: gau_adc1@38100 { @@ -529,6 +555,7 @@ interrupts = <111 0>; status = "disabled"; #io-channel-cells = <1>; + power-domains = <&power_mode3_domain>; }; dac0: dac@38200 { @@ -537,6 +564,7 @@ interrupts = <108 0>; status = "disabled"; #io-channel-cells = <0>; + power-domains = <&power_mode3_domain>; }; }; @@ -555,12 +583,14 @@ hci: hci_ble { compatible = "nxp,hci-ble"; + power-domains = <&power_mode3_domain>; }; hdlc_rcp_if: hdlc_rcp_if { compatible = "nxp,hdlc-rcp-if"; interrupts = <90 2>, <82 2>; interrupt-names = "hdlc_rcp_if_int", "wakeup_int"; + power-domains = <&power_mode3_domain>; }; enet: enet@138000 { @@ -574,18 +604,21 @@ nxp,mdio = <&enet_mdio>; nxp,ptp-clock = <&enet_ptp_clock>; status = "disabled"; + power-domains = <&power_mode3_domain>; }; enet_mdio: mdio { compatible = "nxp,enet-mdio"; status = "disabled"; #address-cells = <1>; #size-cells = <0>; + power-domains = <&power_mode3_domain>; }; enet_ptp_clock: ptp-clock { compatible = "nxp,enet-ptp-clock"; interrupts = <116 0>; status = "disabled"; clocks = <&clkctl1 MCUX_ENET_PLL>; + power-domains = <&power_mode3_domain>; }; }; }; From 1e49a38439ae050ad78b6b7e701fcc219c805af1 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Sat, 22 Jun 2024 21:31:26 +0100 Subject: [PATCH 05/14] soc: nxp_rw6xx: Add support for XTAL32K clock This clock is used for certain peripherals such as RTC. On certain RW612 boards such as rd_rw612_bga, XTAL32K and ENET share pins. Add code to check if ENET and XTAL32 are enabled at the same time. Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/Kconfig | 5 +++++ soc/nxp/rw/soc.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/soc/nxp/rw/Kconfig b/soc/nxp/rw/Kconfig index 13b6b4e5dc90..a32483ad0c12 100644 --- a/soc/nxp/rw/Kconfig +++ b/soc/nxp/rw/Kconfig @@ -55,4 +55,9 @@ endif # NXP_RW6XX_BOOT_HEADER rsource "../common/Kconfig.flexspi_xip" rsource "../common/Kconfig.nbu" +config XTAL32K + bool "Use the External 32K clock" + help + This clock is used by certain peripherals such as RTC. + endif # SOC_SERIES_RW6XX diff --git a/soc/nxp/rw/soc.c b/soc/nxp/rw/soc.c index 6da997315b1d..a936978995ba 100644 --- a/soc/nxp/rw/soc.c +++ b/soc/nxp/rw/soc.c @@ -201,6 +201,10 @@ __weak __ramfunc void clock_init(void) #if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(flexcomm14), nxp_lpc_i2c, okay)) && CONFIG_I2C CLOCK_AttachClk(kSFRO_to_FLEXCOMM14); #endif +#if CONFIG_XTAL32K + CLOCK_EnableXtal32K(true); + CLOCK_AttachClk(kXTAL32K_to_CLK32K); +#endif /* Clock flexcomms when used as SPI */ #ifdef CONFIG_SPI From 31ec4c56336deea2c7b6600aef9257b477624330 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Sun, 23 Jun 2024 03:51:03 +0100 Subject: [PATCH 06/14] soc: nxp_rw6xx: Update SYS_CLOCK_TICKS_PER_SEC for PM mode 3 Since the clock source when running in PM mode 3 is the slower 1KHx clock, we adjust the SYS_CLOCK_TICKS_PER_SEC value to get better accuracy. Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/Kconfig.defconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/soc/nxp/rw/Kconfig.defconfig b/soc/nxp/rw/Kconfig.defconfig index 581dc43582f3..3c4677b784cf 100644 --- a/soc/nxp/rw/Kconfig.defconfig +++ b/soc/nxp/rw/Kconfig.defconfig @@ -57,4 +57,12 @@ if WIFI orsource "Kconfig.defconfig.wifi" endif # WIFI +if PM +# For PM mode 3 we change this config to get better accuracy +# when using the iKHz RTC clock as system clock. +config SYS_CLOCK_TICKS_PER_SEC + default 1000 + depends on $(dt_nodelabel_enabled,standby) +endif + endif # SOC_SERIES_RW6XX From 0c7e9fc2bb62c68f9cd5ae0722afa5cc3d66e9b8 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Sat, 22 Jun 2024 23:14:43 +0100 Subject: [PATCH 07/14] soc: nxp_rw6xx: Add support for Power Mode 3 This maps to Zephyr power state Standby. In this power state the OS Timer cannot be used as a wakeup source as it will be powered off. Hence the counter is enabled and RTC is used to keep track of system ticks and wakeup the system. Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/Kconfig.defconfig | 29 +++++++++- soc/nxp/rw/power.c | 107 ++++++++++++++++++++++++++++++++++- 2 files changed, 134 insertions(+), 2 deletions(-) diff --git a/soc/nxp/rw/Kconfig.defconfig b/soc/nxp/rw/Kconfig.defconfig index 3c4677b784cf..f1890af7cf91 100644 --- a/soc/nxp/rw/Kconfig.defconfig +++ b/soc/nxp/rw/Kconfig.defconfig @@ -63,6 +63,33 @@ if PM config SYS_CLOCK_TICKS_PER_SEC default 1000 depends on $(dt_nodelabel_enabled,standby) -endif + +# Enable PM_DEVICE by default if STANDBY mode is enabled +# as we use the TURN_OFF and TURN_ON actions to recover +# from Standby mode (PM Mode 3) +config PM_DEVICE + default y + depends on "$(dt_nodelabel_enabled,standby)" + +# Enable PM_POLICY_DEVICE_CONSTRAINTS by default when doing PM_DEVICE. +# This will allow support of device power states. +config PM_POLICY_DEVICE_CONSTRAINTS + default y if PM_DEVICE + +# Enable the counter if STANDBY mode is enabled +# RTC counter is the wakeup source from STANDBY mode +config COUNTER + default y + depends on "$(dt_nodelabel_enabled,standby)" + +config MCUX_OS_TIMER_PM_POWERED_OFF + default y + +# PM code that runs from the idle loop has a large +# footprint. Hence increase the size when PM is enabled. +config IDLE_STACK_SIZE + default 640 + +endif # PM endif # SOC_SERIES_RW6XX diff --git a/soc/nxp/rw/power.c b/soc/nxp/rw/power.c index f4176b6349cf..fdc24019dd7f 100644 --- a/soc/nxp/rw/power.c +++ b/soc/nxp/rw/power.c @@ -1,5 +1,5 @@ /* - * Copyright 2023, NXP + * Copyright 2023-2025 NXP * * SPDX-License-Identifier: Apache-2.0 */ @@ -11,6 +11,8 @@ #include "fsl_power.h" #include +#include + LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL); /* Active mode */ @@ -26,6 +28,8 @@ LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL); #define NODE_ID DT_INST(0, nxp_pdcfg_power) +extern void clock_init(void); + power_sleep_config_t slp_cfg; #if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) || DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin1)) @@ -56,6 +60,81 @@ static void pin1_isr(const struct device *dev) } #endif +#ifdef CONFIG_MPU + +#define MPU_NUM_REGIONS 8 + +typedef struct mpu_conf { + uint32_t CTRL; + uint32_t RNR; + uint32_t RBAR[MPU_NUM_REGIONS]; + uint32_t RLAR[MPU_NUM_REGIONS]; + uint32_t RBAR_A1; + uint32_t RLAR_A1; + uint32_t RBAR_A2; + uint32_t RLAR_A2; + uint32_t RBAR_A3; + uint32_t RLAR_A3; + uint32_t MAIR0; + uint32_t MAIR1; +} mpu_conf; +mpu_conf saved_mpu_conf; + +static void save_mpu_state(void) +{ + uint32_t index; + + /* + * MPU is divided in `MPU_NUM_REGIONS` regions. + * Here we save those regions configuration to be restored after PM3 entry + */ + for (index = 0U; index < MPU_NUM_REGIONS; index++) { + MPU->RNR = index; + saved_mpu_conf.RBAR[index] = MPU->RBAR; + saved_mpu_conf.RLAR[index] = MPU->RLAR; + } + + saved_mpu_conf.CTRL = MPU->CTRL; + saved_mpu_conf.RNR = MPU->RNR; + saved_mpu_conf.RBAR_A1 = MPU->RBAR_A1; + saved_mpu_conf.RLAR_A1 = MPU->RLAR_A1; + saved_mpu_conf.RBAR_A2 = MPU->RBAR_A2; + saved_mpu_conf.RLAR_A2 = MPU->RLAR_A2; + saved_mpu_conf.RBAR_A3 = MPU->RBAR_A3; + saved_mpu_conf.RLAR_A3 = MPU->RLAR_A3; + saved_mpu_conf.MAIR0 = MPU->MAIR0; + saved_mpu_conf.MAIR1 = MPU->MAIR1; +} + +static void restore_mpu_state(void) +{ + uint32_t index; + + for (index = 0U; index < MPU_NUM_REGIONS; index++) { + MPU->RNR = index; + MPU->RBAR = saved_mpu_conf.RBAR[index]; + MPU->RLAR = saved_mpu_conf.RLAR[index]; + } + + MPU->RNR = saved_mpu_conf.RNR; + MPU->RBAR_A1 = saved_mpu_conf.RBAR_A1; + MPU->RLAR_A1 = saved_mpu_conf.RLAR_A1; + MPU->RBAR_A2 = saved_mpu_conf.RBAR_A2; + MPU->RLAR_A2 = saved_mpu_conf.RLAR_A2; + MPU->RBAR_A3 = saved_mpu_conf.RBAR_A3; + MPU->RLAR_A3 = saved_mpu_conf.RLAR_A3; + MPU->MAIR0 = saved_mpu_conf.MAIR0; + MPU->MAIR1 = saved_mpu_conf.MAIR1; + + /* + * CTRL register must be restored last in case MPU was enabled, + * because some MPU registers can't be programmed while the MPU is enabled + */ + MPU->CTRL = saved_mpu_conf.CTRL; +} + +#endif /* CONFIG_MPU */ + /* Invoke Low Power/System Off specific Tasks */ __weak void pm_state_set(enum pm_state state, uint8_t substate_id) { @@ -92,6 +171,28 @@ __weak void pm_state_set(enum pm_state state, uint8_t substate_id) break; case PM_STATE_SUSPEND_TO_IDLE: POWER_EnterPowerMode(POWER_MODE2, &slp_cfg); + break; + case PM_STATE_STANDBY: +#ifdef CONFIG_MPU + /* Save MPU state before entering PM3 */ + save_mpu_state(); +#endif /* CONFIG_MPU */ + + POWER_EnableWakeup(DT_IRQN(DT_NODELABEL(rtc))); + if (POWER_EnterPowerMode(POWER_MODE3, &slp_cfg)) { +#ifdef CONFIG_MPU + /* Restore MPU as is lost after PM3 exit*/ + restore_mpu_state(); +#endif /* CONFIG_MPU */ + clock_init(); + + sys_clock_idle_exit(); + } + + /* Clear the RTC wakeup bits */ + POWER_ClearWakeupStatus(DT_IRQN(DT_NODELABEL(rtc))); + POWER_DisableWakeup(DT_IRQN(DT_NODELABEL(rtc))); + break; default: LOG_DBG("Unsupported power state %u", state); @@ -142,4 +243,8 @@ void nxp_rw6xx_power_init(void) IRQ_CONNECT(DT_IRQN(DT_NODELABEL(pin1)), DT_IRQ(DT_NODELABEL(pin1), priority), pin1_isr, NULL, 0); #endif + + /* Clear the RTC wakeup bits */ + POWER_ClearWakeupStatus(DT_IRQN(DT_NODELABEL(rtc))); + POWER_DisableWakeup(DT_IRQN(DT_NODELABEL(rtc))); } From 20105ef45c0be7aeb353c43b8aa78513d7069fd2 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Fri, 16 Aug 2024 11:13:27 -0500 Subject: [PATCH 08/14] soc: nxp_rw6xx: Do not enable unused clocks Update the clock init code to gate off unused clocks. Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/soc.c | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/soc/nxp/rw/soc.c b/soc/nxp/rw/soc.c index a936978995ba..e3a54f26d384 100644 --- a/soc/nxp/rw/soc.c +++ b/soc/nxp/rw/soc.c @@ -67,12 +67,6 @@ __imx_boot_ivt_section void (*const image_vector_table[])(void) = { }; #endif /* CONFIG_NXP_RW6XX_BOOT_HEADER */ -const clock_avpll_config_t avpll_config = { - .ch1Freq = kCLOCK_AvPllChFreq12p288m, - .ch2Freq = kCLOCK_AvPllChFreq64m, - .enableCali = true -}; - /** * @brief Initialize the system clocks and peripheral clocks * @@ -95,8 +89,6 @@ __weak __ramfunc void clock_init(void) /* Initialize T3 clocks and t3pll_mci_48_60m_irc configured to 48.3MHz */ CLOCK_InitT3RefClk(kCLOCK_T3MciIrc48m); - /* Enable FFRO */ - CLOCK_EnableClock(kCLOCK_T3PllMciIrcClk); /* Enable T3 256M clock and SFRO */ CLOCK_EnableClock(kCLOCK_T3PllMci256mClk); @@ -114,17 +106,9 @@ __weak __ramfunc void clock_init(void) /* Enable tcpu_mci_clk 260MHz. Keep tcpu_mci_flexspi_clk gated. */ CLOCK_EnableClock(kCLOCK_TcpuMciClk); - /* tddr_mci_flexspi_clk 320MHz */ - CLOCK_InitTddrRefClk(kCLOCK_TddrFlexspiDiv10); - CLOCK_EnableClock(kCLOCK_TddrMciFlexspiClk); /* 320MHz */ - /* Enable AUX0 PLL to 260 MHz */ CLOCK_SetClkDiv(kCLOCK_DivAux0PllClk, 1U); - /* Init AVPLL and enable both channels */ - CLOCK_InitAvPll(&avpll_config); - CLOCK_SetClkDiv(kCLOCK_DivAudioPllClk, 1U); - /* Configure MainPll to 260MHz, then let CM33 run on Main PLL. */ CLOCK_SetClkDiv(kCLOCK_DivSysCpuAhbClk, 1U); CLOCK_SetClkDiv(kCLOCK_DivMainPllClk, 1U); @@ -229,7 +213,17 @@ __weak __ramfunc void clock_init(void) #endif #endif /* CONFIG_SPI */ -#if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(dmic0)) && CONFIG_AUDIO_DMIC_MCUX +#if (DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(dmic0)) && CONFIG_AUDIO_DMIC_MCUX) || CONFIG_I2S + const clock_avpll_config_t avpll_config = { + .ch1Freq = kCLOCK_AvPllChFreq12p288m, + .ch2Freq = kCLOCK_AvPllChFreq64m, + .enableCali = true + }; + + /* Init AVPLL and enable both channels */ + CLOCK_InitAvPll(&avpll_config); + CLOCK_SetClkDiv(kCLOCK_DivAudioPllClk, 1U); + /* Clock DMIC from Audio PLL. PLL output is sourced from AVPLL * channel 1, which is clocked at 12.288 MHz. We can divide this * by 4 to achieve the desired DMIC bit clk of 3.072 MHz From 2d3610be7e0de1e2616b2a3af590acc6b5f9fbee Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Thu, 30 Jan 2025 17:21:05 -0600 Subject: [PATCH 09/14] soc: nxp_rw6xx: Enable Power Domain Kconfig Power Domains are used to re-enable peripherals when exit Power Mode 3 (Standby). Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/Kconfig.defconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/soc/nxp/rw/Kconfig.defconfig b/soc/nxp/rw/Kconfig.defconfig index f1890af7cf91..d2da02597fd0 100644 --- a/soc/nxp/rw/Kconfig.defconfig +++ b/soc/nxp/rw/Kconfig.defconfig @@ -92,4 +92,11 @@ config IDLE_STACK_SIZE endif # PM +if PM_DEVICE + +config POWER_DOMAIN + default y + +endif # PM_DEVICE + endif # SOC_SERIES_RW6XX From 2fedafe09cd5ca56cbd2e4b31448b9ee392e254d Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Mon, 24 Jun 2024 10:41:29 -0500 Subject: [PATCH 10/14] drivers: gpio_mcux_lpc: Provide an API to fire callbacks Provide an API for other drivers to fire GPIO callbacks Signed-off-by: Mahesh Mahadevan --- drivers/gpio/gpio_mcux_lpc.c | 7 ++++++ include/zephyr/drivers/gpio/gpio_mcux_lpc.h | 24 +++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 include/zephyr/drivers/gpio/gpio_mcux_lpc.h diff --git a/drivers/gpio/gpio_mcux_lpc.c b/drivers/gpio/gpio_mcux_lpc.c index 75d4f185260d..8b68ca2d35bc 100644 --- a/drivers/gpio/gpio_mcux_lpc.c +++ b/drivers/gpio/gpio_mcux_lpc.c @@ -399,6 +399,13 @@ static int gpio_mcux_lpc_pin_interrupt_configure(const struct device *dev, #endif } +void gpio_mcux_lpc_trigger_cb(const struct device *dev, uint32_t pins) +{ + struct gpio_mcux_lpc_data *data = dev->data; + + gpio_fire_callbacks(&data->callbacks, dev, pins); +} + static int gpio_mcux_lpc_manage_cb(const struct device *port, struct gpio_callback *callback, bool set) { diff --git a/include/zephyr/drivers/gpio/gpio_mcux_lpc.h b/include/zephyr/drivers/gpio/gpio_mcux_lpc.h new file mode 100644 index 000000000000..74101a0ab9e5 --- /dev/null +++ b/include/zephyr/drivers/gpio/gpio_mcux_lpc.h @@ -0,0 +1,24 @@ +/* + * Copyright 2024 NXP + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_MCUX_LPC_H_ +#define ZEPHYR_INCLUDE_DRIVERS_GPIO_MCUX_LPC_H_ + +#include +#include + +/** + * @brief Trigger a callback for a given pin. + * + * This allows other drivers to fire callbacks for the pin. + * + * @param dev Pointer to the device structure for the driver instance. + * @param pins The actual pin mask that triggered the interrupt. + * + */ +void gpio_mcux_lpc_trigger_cb(const struct device *dev, uint32_t pins); + +#endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_MCUX_LPC_H_ */ From 59bed98dab98de2170bb4365784b55463f4f0dfd Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Mon, 24 Jun 2024 10:39:55 -0500 Subject: [PATCH 11/14] soc: nxp_rw6xx: Add code to fire the GPIO callback Call the API provided to fire a GPIO interrupt if registered on wakeup from PM Mode 3. Signed-off-by: Mahesh Mahadevan --- soc/nxp/rw/power.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/soc/nxp/rw/power.c b/soc/nxp/rw/power.c index fdc24019dd7f..09734d2f5056 100644 --- a/soc/nxp/rw/power.c +++ b/soc/nxp/rw/power.c @@ -7,6 +7,10 @@ #include #include #include +#if CONFIG_GPIO && (DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) || \ + DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin1))) +#include +#endif #include "fsl_power.h" @@ -34,6 +38,9 @@ power_sleep_config_t slp_cfg; #if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) || DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin1)) pinctrl_soc_pin_t pin_cfg; +#if CONFIG_GPIO +const struct device *gpio; +#endif #endif #if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) @@ -206,6 +213,15 @@ __weak void pm_state_exit_post_ops(enum pm_state state, uint8_t substate_id) ARG_UNUSED(state); ARG_UNUSED(substate_id); +#if CONFIG_GPIO && (DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) || \ + DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin1))) + if (state == PM_STATE_STANDBY) { + /* GPIO_0_24 & GPIO_0_25 are used for wakeup */ + uint32_t pins = PMU->WAKEUP_STATUS & + (PMU_WAKEUP_STATUS_PIN0_MASK | PMU_WAKEUP_STATUS_PIN1_MASK); + gpio_mcux_lpc_trigger_cb(gpio, (pins << 24)); + } +#endif /* Clear PRIMASK */ __enable_irq(); } @@ -247,4 +263,12 @@ void nxp_rw6xx_power_init(void) /* Clear the RTC wakeup bits */ POWER_ClearWakeupStatus(DT_IRQN(DT_NODELABEL(rtc))); POWER_DisableWakeup(DT_IRQN(DT_NODELABEL(rtc))); + +#if CONFIG_GPIO && (DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin0)) || \ + DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(pin1))) + gpio = DEVICE_DT_GET(DT_NODELABEL(hsgpio0)); + if (!device_is_ready(gpio)) { + return; + } +#endif } From 8ed46f9f9a29d812391b0e9d56b4de00f03a5e57 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Thu, 30 Jan 2025 14:38:17 -0600 Subject: [PATCH 12/14] boards: nxp_rw6xx: Enable RTC counter support for RW6XX. This is used as wakeup source to wakeup from Power Modes 3 and 4. Signed-off-by: Mahesh Mahadevan --- boards/nxp/frdm_rw612/frdm_rw612_common.dtsi | 7 +++++++ boards/nxp/rd_rw612_bga/rd_rw612_bga.dtsi | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/boards/nxp/frdm_rw612/frdm_rw612_common.dtsi b/boards/nxp/frdm_rw612/frdm_rw612_common.dtsi index e026cbf4d282..859019a9864d 100644 --- a/boards/nxp/frdm_rw612/frdm_rw612_common.dtsi +++ b/boards/nxp/frdm_rw612/frdm_rw612_common.dtsi @@ -187,6 +187,7 @@ &os_timer { status = "okay"; wakeup-source; + deep-sleep-counter = <&rtc_highres>; }; &systick { @@ -207,6 +208,12 @@ pinctrl-names = "default"; }; +/* RTC is the wakeup source for PM modes 3,4 */ +&rtc_highres { + status = "okay"; + wakeup-source; +}; + &nbu { status = "okay"; wakeup-source; diff --git a/boards/nxp/rd_rw612_bga/rd_rw612_bga.dtsi b/boards/nxp/rd_rw612_bga/rd_rw612_bga.dtsi index 8d8bd71cd61a..71ea2d079899 100644 --- a/boards/nxp/rd_rw612_bga/rd_rw612_bga.dtsi +++ b/boards/nxp/rd_rw612_bga/rd_rw612_bga.dtsi @@ -270,6 +270,12 @@ nxp_8080_touch_panel_i2c: &arduino_i2c { pinctrl-names = "default"; }; +/* RTC is the wakeup source for PM modes 3,4 */ +&rtc_highres { + status = "okay"; + wakeup-source; +}; + &pmu { reset-causes-en = , , @@ -288,6 +294,7 @@ nxp_8080_touch_panel_i2c: &arduino_i2c { &os_timer { status = "okay"; wakeup-source; + deep-sleep-counter = <&rtc_highres>; }; &systick { From 35d2cd39d04811da4f8864b303a10b0c0ec59f4d Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Fri, 23 Aug 2024 11:13:36 -0500 Subject: [PATCH 13/14] tests: pm: Enable standby power mode support on NXP RW612 Boards Enable PM mode 3 on NXP FRDM_RW612 and RD_RW612 boards. Signed-off-by: Mahesh Mahadevan --- tests/subsys/pm/power_mgmt_soc/boards/frdm_rw612.overlay | 9 +++++++++ .../subsys/pm/power_mgmt_soc/boards/rd_rw612_bga.overlay | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 tests/subsys/pm/power_mgmt_soc/boards/frdm_rw612.overlay create mode 100644 tests/subsys/pm/power_mgmt_soc/boards/rd_rw612_bga.overlay diff --git a/tests/subsys/pm/power_mgmt_soc/boards/frdm_rw612.overlay b/tests/subsys/pm/power_mgmt_soc/boards/frdm_rw612.overlay new file mode 100644 index 000000000000..986cdef3ff7e --- /dev/null +++ b/tests/subsys/pm/power_mgmt_soc/boards/frdm_rw612.overlay @@ -0,0 +1,9 @@ +/* + * Copyright 2024 NXP + * + * SPDX-License-Identifier: Apache-2.0 + */ + +&standby { + status = "okay"; +}; diff --git a/tests/subsys/pm/power_mgmt_soc/boards/rd_rw612_bga.overlay b/tests/subsys/pm/power_mgmt_soc/boards/rd_rw612_bga.overlay new file mode 100644 index 000000000000..986cdef3ff7e --- /dev/null +++ b/tests/subsys/pm/power_mgmt_soc/boards/rd_rw612_bga.overlay @@ -0,0 +1,9 @@ +/* + * Copyright 2024 NXP + * + * SPDX-License-Identifier: Apache-2.0 + */ + +&standby { + status = "okay"; +}; From 14d43cf0f5dbc673b32e4b37da5ac9253cdbc454 Mon Sep 17 00:00:00 2001 From: Mahesh Mahadevan Date: Thu, 13 Mar 2025 21:41:12 -0500 Subject: [PATCH 14/14] samples: button: Enable PM Mode 3 on NXP RD_RW612 Enable testing this sample with PM Mode 3 Signed-off-by: Mahesh Mahadevan --- samples/basic/button/boards/rd_rw612_bga.conf | 6 ++++++ samples/basic/button/boards/rd_rw612_bga.overlay | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 samples/basic/button/boards/rd_rw612_bga.conf create mode 100644 samples/basic/button/boards/rd_rw612_bga.overlay diff --git a/samples/basic/button/boards/rd_rw612_bga.conf b/samples/basic/button/boards/rd_rw612_bga.conf new file mode 100644 index 000000000000..b0995a93b88d --- /dev/null +++ b/samples/basic/button/boards/rd_rw612_bga.conf @@ -0,0 +1,6 @@ +# +# Copyright 2025 NXP +# +# SPDX-License-Identifier: Apache-2.0 +# +CONFIG_PM=y diff --git a/samples/basic/button/boards/rd_rw612_bga.overlay b/samples/basic/button/boards/rd_rw612_bga.overlay new file mode 100644 index 000000000000..65821c8b3eb5 --- /dev/null +++ b/samples/basic/button/boards/rd_rw612_bga.overlay @@ -0,0 +1,9 @@ +/* + * Copyright 2025 NXP + * + * SPDX-License-Identifier: Apache-2.0 + */ + +&standby { + status = "okay"; +};