summaryrefslogtreecommitdiff
path: root/zephyr/shim/chip/it8xxx2/power_policy.c
blob: c8efb0ca965b6c2211ae03808db1447e6a952bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Copyright 2021 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <zephyr/pm/pm.h>
#include <zephyr/pm/policy.h>
#include <soc.h>
#include <zephyr/kernel.h>

#include "system.h"

static const struct pm_state_info pm_states[] =
	PM_STATE_INFO_LIST_FROM_DT_CPU(DT_NODELABEL(cpu0));

/* CROS PM policy handler */
const struct pm_state_info *pm_policy_next_state(uint8_t cpu, int32_t ticks)
{
	ARG_UNUSED(cpu);

	/* Deep sleep is allowed */
	if (DEEP_SLEEP_ALLOWED) {
		/*
		 * If there are multiple power states, iterating backward
		 * is needed to take priority into account.
		 */
		for (int i = 0; i < ARRAY_SIZE(pm_states); i++) {
			/*
			 * To check if given power state is enabled and
			 * could be used.
			 */
			if (pm_policy_state_lock_is_active(pm_states[i].state,
							   PM_ALL_SUBSTATES)) {
				continue;
			}

			return &pm_states[i];
		}
	}

	return NULL;
}