2023-01-23 06:54:25

by Hector Martin

[permalink] [raw]
Subject: [PATCH] soc: apple: rtkit: Add apple_rtkit_idle() function

This is yet another low power mode, used by DCP.

Signed-off-by: Hector Martin <[email protected]>
---
drivers/soc/apple/rtkit.c | 21 +++++++++++++++++++++
include/linux/soc/apple/rtkit.h | 5 +++++
2 files changed, 26 insertions(+)

diff --git a/drivers/soc/apple/rtkit.c b/drivers/soc/apple/rtkit.c
index ceb4516e442c..509b050cf040 100644
--- a/drivers/soc/apple/rtkit.c
+++ b/drivers/soc/apple/rtkit.c
@@ -9,6 +9,7 @@
enum {
APPLE_RTKIT_PWR_STATE_OFF = 0x00, /* power off, cannot be restarted */
APPLE_RTKIT_PWR_STATE_SLEEP = 0x01, /* sleeping, can be restarted */
+ APPLE_RTKIT_PWR_STATE_IDLE = 0x201, /* sleeping, retain state */
APPLE_RTKIT_PWR_STATE_QUIESCED = 0x10, /* running but no communication */
APPLE_RTKIT_PWR_STATE_ON = 0x20, /* normal operating state */
};
@@ -882,6 +883,26 @@ int apple_rtkit_shutdown(struct apple_rtkit *rtk)
}
EXPORT_SYMBOL_GPL(apple_rtkit_shutdown);

+int apple_rtkit_idle(struct apple_rtkit *rtk)
+{
+ int ret;
+
+ /* if OFF is used here the co-processor will not wake up again */
+ ret = apple_rtkit_set_ap_power_state(rtk,
+ APPLE_RTKIT_PWR_STATE_IDLE);
+ if (ret)
+ return ret;
+
+ ret = apple_rtkit_set_iop_power_state(rtk, APPLE_RTKIT_PWR_STATE_IDLE);
+ if (ret)
+ return ret;
+
+ rtk->iop_power_state = APPLE_RTKIT_PWR_STATE_IDLE;
+ rtk->ap_power_state = APPLE_RTKIT_PWR_STATE_IDLE;
+ return 0;
+}
+EXPORT_SYMBOL_GPL(apple_rtkit_idle);
+
int apple_rtkit_quiesce(struct apple_rtkit *rtk)
{
int ret;
diff --git a/include/linux/soc/apple/rtkit.h b/include/linux/soc/apple/rtkit.h
index 2a0edb5fa6fe..f8d9cc0691de 100644
--- a/include/linux/soc/apple/rtkit.h
+++ b/include/linux/soc/apple/rtkit.h
@@ -132,6 +132,11 @@ int apple_rtkit_wake(struct apple_rtkit *rtk);
*/
int apple_rtkit_shutdown(struct apple_rtkit *rtk);

+/*
+ * Put the co-processor into idle mode
+ */
+int apple_rtkit_idle(struct apple_rtkit *rtk);
+
/*
* Checks if RTKit is running and ready to handle messages.
*/
--
2.35.1



2023-01-23 11:12:07

by Eric Curtin

[permalink] [raw]
Subject: Re: [PATCH] soc: apple: rtkit: Add apple_rtkit_idle() function

On Mon, 23 Jan 2023 at 07:03, Hector Martin <[email protected]> wrote:
>
> This is yet another low power mode, used by DCP.
>
> Signed-off-by: Hector Martin <[email protected]>
> ---

New power state, nice

Reviewed-by: Eric Curtin <[email protected]>

Is mise le meas/Regards,

Eric Curtin

> drivers/soc/apple/rtkit.c | 21 +++++++++++++++++++++
> include/linux/soc/apple/rtkit.h | 5 +++++
> 2 files changed, 26 insertions(+)
>
> diff --git a/drivers/soc/apple/rtkit.c b/drivers/soc/apple/rtkit.c
> index ceb4516e442c..509b050cf040 100644
> --- a/drivers/soc/apple/rtkit.c
> +++ b/drivers/soc/apple/rtkit.c
> @@ -9,6 +9,7 @@
> enum {
> APPLE_RTKIT_PWR_STATE_OFF = 0x00, /* power off, cannot be restarted */
> APPLE_RTKIT_PWR_STATE_SLEEP = 0x01, /* sleeping, can be restarted */
> + APPLE_RTKIT_PWR_STATE_IDLE = 0x201, /* sleeping, retain state */
> APPLE_RTKIT_PWR_STATE_QUIESCED = 0x10, /* running but no communication */
> APPLE_RTKIT_PWR_STATE_ON = 0x20, /* normal operating state */
> };
> @@ -882,6 +883,26 @@ int apple_rtkit_shutdown(struct apple_rtkit *rtk)
> }
> EXPORT_SYMBOL_GPL(apple_rtkit_shutdown);
>
> +int apple_rtkit_idle(struct apple_rtkit *rtk)
> +{
> + int ret;
> +
> + /* if OFF is used here the co-processor will not wake up again */
> + ret = apple_rtkit_set_ap_power_state(rtk,
> + APPLE_RTKIT_PWR_STATE_IDLE);
> + if (ret)
> + return ret;
> +
> + ret = apple_rtkit_set_iop_power_state(rtk, APPLE_RTKIT_PWR_STATE_IDLE);
> + if (ret)
> + return ret;
> +
> + rtk->iop_power_state = APPLE_RTKIT_PWR_STATE_IDLE;
> + rtk->ap_power_state = APPLE_RTKIT_PWR_STATE_IDLE;
> + return 0;
> +}
> +EXPORT_SYMBOL_GPL(apple_rtkit_idle);
> +
> int apple_rtkit_quiesce(struct apple_rtkit *rtk)
> {
> int ret;
> diff --git a/include/linux/soc/apple/rtkit.h b/include/linux/soc/apple/rtkit.h
> index 2a0edb5fa6fe..f8d9cc0691de 100644
> --- a/include/linux/soc/apple/rtkit.h
> +++ b/include/linux/soc/apple/rtkit.h
> @@ -132,6 +132,11 @@ int apple_rtkit_wake(struct apple_rtkit *rtk);
> */
> int apple_rtkit_shutdown(struct apple_rtkit *rtk);
>
> +/*
> + * Put the co-processor into idle mode
> + */
> +int apple_rtkit_idle(struct apple_rtkit *rtk);
> +
> /*
> * Checks if RTKit is running and ready to handle messages.
> */
> --
> 2.35.1
>
>


2023-01-28 11:37:48

by Sven Peter

[permalink] [raw]
Subject: Re: [PATCH] soc: apple: rtkit: Add apple_rtkit_idle() function

On Mon, Jan 23, 2023, at 07:53, Hector Martin wrote:
> This is yet another low power mode, used by DCP.
>
> Signed-off-by: Hector Martin <[email protected]>
> ---

Reviewed-by: Sven Peter <[email protected]>


Sven

2023-01-31 11:41:13

by Hector Martin

[permalink] [raw]
Subject: Re: [PATCH] soc: apple: rtkit: Add apple_rtkit_idle() function

On 23/01/2023 15.53, Hector Martin wrote:
> This is yet another low power mode, used by DCP.
>
> Signed-off-by: Hector Martin <[email protected]>
> ---
> drivers/soc/apple/rtkit.c | 21 +++++++++++++++++++++
> include/linux/soc/apple/rtkit.h | 5 +++++
> 2 files changed, 26 insertions(+)
>

Thanks for the reviews, applied to asahi-soc/soc!

- Hector