PM: add stability governer
only when first time change state can hold WFI for enough time thresh, allow second time goto target state, suitable for the case when wakeup from sleep too slow, etc. Signed-off-by: buxiasen <buxiasen@xiaomi.com>
This commit is contained in:
parent
d144a2a80b
commit
07f0e0c166
@ -43,6 +43,12 @@ if(CONFIG_PM)
|
||||
|
||||
# Governor implementations
|
||||
|
||||
if(CONFIG_PM_GOVERNOR_STABILITY)
|
||||
|
||||
list(APPEND SRCS stability_governor.c)
|
||||
|
||||
endif()
|
||||
|
||||
if(CONFIG_PM_GOVERNOR_ACTIVITY)
|
||||
|
||||
list(APPEND SRCS activity_governor.c)
|
||||
|
@ -47,6 +47,16 @@ config PM_GOVERNOR_GREEDY
|
||||
considering any states locked by calls to pm_stay() (accessible
|
||||
via BOARDIOC_PM_STAY boardctl calls).
|
||||
|
||||
config PM_GOVERNOR_STABILITY
|
||||
bool "Stability governor"
|
||||
---help---
|
||||
This governor will hold power state to ensure the request is stable
|
||||
enough, other behavior is similar with greedy.
|
||||
only when stay in WFI for enough time allow goto target state, or
|
||||
will backward to the last state used.
|
||||
considering any states locked by calls to pm_stay() (accessible
|
||||
via BOARDIOC_PM_STAY boardctl calls).
|
||||
|
||||
config PM_GOVERNOR_ACTIVITY
|
||||
bool "Activity based"
|
||||
---help---
|
||||
@ -77,6 +87,40 @@ config PM_GOVERNOR_EXPLICIT_RELAX
|
||||
if set to timeout (unit: ms), that means pm_staytimeout(ms).
|
||||
pm_relax() will be auto called after timeout.
|
||||
|
||||
if PM_GOVERNOR_STABILITY
|
||||
|
||||
config PM_GOVERNOR_STABILITY_IDLE_THRESH
|
||||
int "Enter idle thresh >= (ticks)"
|
||||
default 0
|
||||
---help---
|
||||
Only if first time try goto idle, can remain wfi for (ticks)
|
||||
and second time still try goto this state, goto idle,
|
||||
otherwise keep last state.
|
||||
only if remained for >=(ticks), allow goto idle state.
|
||||
set to 0 disable stability check for idle state.
|
||||
|
||||
config PM_GOVERNOR_STABILITY_STANDBY_THRESH
|
||||
int "Enter standby thresh >= (ticks)"
|
||||
default 0
|
||||
---help---
|
||||
Only if first time try goto standby, can remain wfi for (ticks)
|
||||
and second time still try goto this state, goto standby,
|
||||
otherwise keep last state.
|
||||
only if remained for >=(ticks), allow goto standby state.
|
||||
set to 0 disable stability check for standby state.
|
||||
|
||||
config PM_GOVERNOR_STABILITY_SLEEP_THRESH
|
||||
int "Enter sleep thresh >= (ticks)"
|
||||
default 0
|
||||
---help---
|
||||
Only if first time try goto sleep, can remain wfi for (ticks)
|
||||
and second time still try goto this state, goto sleep,
|
||||
otherwise keep last state.
|
||||
only if remained for >=(ticks), allow goto sleep state.
|
||||
set to 0 disable stability check for sleep state.
|
||||
|
||||
endif # PM_GOVERNOR_STABILITY
|
||||
|
||||
if PM_GOVERNOR_ACTIVITY
|
||||
|
||||
config PM_GOVERNOR_SLICEMS
|
||||
|
@ -39,6 +39,12 @@ endif
|
||||
|
||||
# Governor implementations
|
||||
|
||||
ifeq ($(CONFIG_PM_GOVERNOR_STABILITY),y)
|
||||
|
||||
CSRCS += stability_governor.c
|
||||
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_PM_GOVERNOR_ACTIVITY),y)
|
||||
|
||||
CSRCS += activity_governor.c
|
||||
|
@ -89,6 +89,8 @@ void pm_initialize(void)
|
||||
gov = pm_greedy_governor_initialize();
|
||||
#elif defined(CONFIG_PM_GOVERNOR_ACTIVITY)
|
||||
gov = pm_activity_governor_initialize();
|
||||
#elif defined(CONFIG_PM_GOVERNOR_STABILITY)
|
||||
gov = pm_stability_governor_initialize();
|
||||
#else
|
||||
static struct pm_governor_s null;
|
||||
gov = &null;
|
||||
|
239
drivers/power/pm/stability_governor.c
Normal file
239
drivers/power/pm/stability_governor.c
Normal file
@ -0,0 +1,239 @@
|
||||
/****************************************************************************
|
||||
* drivers/power/pm/stability_governor.c
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership. The
|
||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance with the
|
||||
* License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/clock.h>
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <nuttx/wdog.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <nuttx/power/pm.h>
|
||||
|
||||
#include "pm.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Type Declarations
|
||||
****************************************************************************/
|
||||
|
||||
struct pm_stability_governor_domain_s
|
||||
{
|
||||
/* Timer to wakeup system, delay the sleep request */
|
||||
|
||||
struct wdog_s wdog;
|
||||
|
||||
/* The Idle is wakeup from the governor wdog itself */
|
||||
|
||||
bool wdog_wakeup;
|
||||
|
||||
/* This state has not been maintained long enough to meet the threshold. */
|
||||
|
||||
enum pm_state_e state_pending;
|
||||
};
|
||||
|
||||
struct pm_stability_governor_s
|
||||
{
|
||||
struct pm_stability_governor_domain_s domain[CONFIG_PM_NDOMAINS];
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Private Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
/* PM governor methods */
|
||||
|
||||
static void stability_governor_statechanged(int domain,
|
||||
enum pm_state_e newstate);
|
||||
static enum pm_state_e stability_governor_checkstate(int domain);
|
||||
static void stability_governor_activity(int domain, int count);
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
static const struct pm_governor_s g_stability_governor_ops =
|
||||
{
|
||||
NULL, /* initialize */
|
||||
NULL, /* deinitialize */
|
||||
stability_governor_statechanged, /* statechanged */
|
||||
stability_governor_checkstate, /* checkstate */
|
||||
stability_governor_activity, /* activity */
|
||||
NULL /* priv */
|
||||
};
|
||||
|
||||
static const clock_t g_stability_governor_thresh[PM_COUNT] =
|
||||
{
|
||||
0,
|
||||
CONFIG_PM_GOVERNOR_STABILITY_IDLE_THRESH,
|
||||
CONFIG_PM_GOVERNOR_STABILITY_STANDBY_THRESH,
|
||||
CONFIG_PM_GOVERNOR_STABILITY_SLEEP_THRESH,
|
||||
};
|
||||
|
||||
static struct pm_stability_governor_s g_stability_governor;
|
||||
|
||||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
/* Timer cb only to make sure system will wake from WFI */
|
||||
|
||||
static void stability_governor_timer_cb(wdparm_t arg)
|
||||
{
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: stability_governor_statechanged
|
||||
****************************************************************************/
|
||||
|
||||
static void stability_governor_statechanged(int domain,
|
||||
enum pm_state_e newstate)
|
||||
{
|
||||
if (newstate == PM_RESTORE)
|
||||
{
|
||||
if (WDOG_ISACTIVE(&g_stability_governor.domain[domain].wdog))
|
||||
{
|
||||
sclock_t left;
|
||||
|
||||
/* The left tick from wdog, if >0 should be other irq source */
|
||||
|
||||
left = wd_gettime(&g_stability_governor.domain[domain].wdog);
|
||||
if (left <= 0)
|
||||
{
|
||||
g_stability_governor.domain[domain].wdog_wakeup = true;
|
||||
}
|
||||
|
||||
/* Don't have to execute callback */
|
||||
|
||||
wd_cancel(&g_stability_governor.domain[domain].wdog);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
enum pm_state_e state;
|
||||
clock_t thresh;
|
||||
|
||||
state = g_stability_governor.domain[domain].state_pending;
|
||||
thresh = g_stability_governor_thresh[state];
|
||||
|
||||
if (thresh > 0 && state != newstate)
|
||||
{
|
||||
wd_start(&g_stability_governor.domain[domain].wdog, thresh,
|
||||
stability_governor_timer_cb, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: user_governor_checkstate
|
||||
****************************************************************************/
|
||||
|
||||
static enum pm_state_e stability_governor_checkstate(int domain)
|
||||
{
|
||||
FAR struct pm_stability_governor_domain_s *gdom;
|
||||
FAR struct pm_domain_s *pdom;
|
||||
enum pm_state_e state_pending;
|
||||
enum pm_state_e state;
|
||||
irqstate_t flags;
|
||||
bool wdog_wakeup;
|
||||
|
||||
gdom = &g_stability_governor.domain[domain];
|
||||
pdom = &g_pmglobals.domain[domain];
|
||||
state = PM_NORMAL;
|
||||
|
||||
/* We disable interrupts since pm_stay()/pm_relax() could be simultaneously
|
||||
* invoked, which modifies the stay count which we are about to read
|
||||
*/
|
||||
|
||||
flags = pm_domain_lock(domain);
|
||||
|
||||
/* Find the lowest power-level which is not locked. */
|
||||
|
||||
while (dq_empty(&pdom->wakelock[state]) && state < (PM_COUNT - 1))
|
||||
{
|
||||
state++;
|
||||
}
|
||||
|
||||
state_pending = gdom->state_pending;
|
||||
wdog_wakeup = gdom->wdog_wakeup;
|
||||
gdom->state_pending = state;
|
||||
gdom->wdog_wakeup = false;
|
||||
|
||||
/* If pm stability check disabled state or pm stable enough, do nothing */
|
||||
|
||||
if (g_stability_governor_thresh[state] > 0 &&
|
||||
(!wdog_wakeup || state_pending != state))
|
||||
{
|
||||
state = pdom->state;
|
||||
if (g_stability_governor_thresh[state] > 0)
|
||||
{
|
||||
/* The domain last state can not be backward, need to holding
|
||||
* to the lowest power-level with stability check disabled
|
||||
*/
|
||||
|
||||
for (; state > PM_NORMAL; state--)
|
||||
{
|
||||
if (g_stability_governor_thresh[state] == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pm_domain_unlock(domain, flags);
|
||||
|
||||
/* Return the found state */
|
||||
|
||||
return state;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: greedy_activity
|
||||
****************************************************************************/
|
||||
|
||||
static void stability_governor_activity(int domain, int count)
|
||||
{
|
||||
pm_staytimeout(domain, PM_NORMAL, (count ? count : 1) * 1000);
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Name: pm_stability_governor_initialize
|
||||
*
|
||||
* Description:
|
||||
* Register the user_governor driver as the specified device.
|
||||
*
|
||||
* Returned Value:
|
||||
* Zero (OK) is returned on success. Otherwise a negated errno value is
|
||||
* returned to indicate the nature of the failure.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
FAR const struct pm_governor_s *pm_stability_governor_initialize(void)
|
||||
{
|
||||
return &g_stability_governor_ops;
|
||||
}
|
@ -364,6 +364,19 @@ extern "C"
|
||||
|
||||
void pm_initialize(void);
|
||||
|
||||
/****************************************************************************
|
||||
* Name: pm_stability_governor_initialize
|
||||
*
|
||||
* Description:
|
||||
* Return the stability governor instance.
|
||||
*
|
||||
* Returned Value:
|
||||
* A pointer to the governor struct. Otherwise NULL is returned on error.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
FAR const struct pm_governor_s *pm_stability_governor_initialize(void);
|
||||
|
||||
/****************************************************************************
|
||||
* Name: pm_greedy_governor_initialize
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user