2011-09-05 03:24:27 +08:00
|
|
|
/****************************************************************************
|
2012-01-23 00:42:49 +08:00
|
|
|
* drivers/power/pm_checkstate.c
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
2021-03-31 17:15:31 +08:00
|
|
|
* 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
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
2021-03-31 17:15:31 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
2021-03-31 17:15:31 +08:00
|
|
|
* 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.
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2016-03-28 03:37:28 +08:00
|
|
|
#include <assert.h>
|
|
|
|
|
2012-01-23 00:42:49 +08:00
|
|
|
#include <nuttx/power/pm.h>
|
2011-09-05 03:24:27 +08:00
|
|
|
#include <nuttx/clock.h>
|
2016-02-14 21:32:58 +08:00
|
|
|
#include <nuttx/irq.h>
|
2011-09-05 03:24:27 +08:00
|
|
|
|
2015-12-30 08:29:24 +08:00
|
|
|
#include "pm.h"
|
2011-09-05 03:24:27 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pm_checkstate
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called from the MCU-specific IDLE loop to monitor the
|
2021-04-01 14:20:14 +08:00
|
|
|
* the power management conditions. This function returns the
|
|
|
|
* "recommended" power management state based on the PM policy applied by
|
|
|
|
* the currently chosen governor. The IDLE loop must call pm_changestate()
|
|
|
|
* in order to make the state change, which will interact with all drivers
|
|
|
|
* registered with the PM system.
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
|
|
|
* These two steps are separated because the plaform-specific IDLE loop may
|
|
|
|
* have additional situational information that is not available to the
|
|
|
|
* the PM sub-system. For example, the IDLE loop may know that the
|
|
|
|
* battery charge level is very low and may force lower power states
|
|
|
|
* even if there is activity.
|
|
|
|
*
|
|
|
|
* NOTE: That these two steps are separated in time and, hence, the IDLE
|
2011-09-05 06:16:10 +08:00
|
|
|
* loop could be suspended for a long period of time between calling
|
|
|
|
* pm_checkstate() and pm_changestate(). The IDLE loop may need to make
|
|
|
|
* these calls atomic by either disabling interrupts until the state change
|
|
|
|
* is completed.
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2016-03-28 03:03:47 +08:00
|
|
|
* domain - the PM domain to check
|
2011-09-05 03:24:27 +08:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The recommended power management state.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-03-28 03:03:47 +08:00
|
|
|
enum pm_state_e pm_checkstate(int domain)
|
2011-09-05 03:24:27 +08:00
|
|
|
{
|
2019-11-09 23:09:33 +08:00
|
|
|
DEBUGASSERT(domain >= 0 && domain < CONFIG_PM_NDOMAINS &&
|
|
|
|
g_pmglobals.governor->checkstate);
|
2011-09-05 03:24:27 +08:00
|
|
|
|
2019-11-09 23:09:33 +08:00
|
|
|
return g_pmglobals.governor->checkstate(domain);
|
2011-09-05 03:24:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_PM */
|