Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
policy.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12
13#ifndef ZEPHYR_INCLUDE_PM_POLICY_H_
14#define ZEPHYR_INCLUDE_PM_POLICY_H_
15
16#include <stdbool.h>
17#include <stdint.h>
18
19#include <zephyr/device.h>
20#include <zephyr/pm/state.h>
21#include <zephyr/sys/slist.h>
22#include <zephyr/toolchain.h>
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
34
42typedef void (*pm_policy_latency_changed_cb_t)(int32_t latency);
43
55
63 sys_snode_t node;
64 uint32_t value_us;
66};
67
75 sys_snode_t node;
76 int64_t uptime_ticks;
78};
79
81
95const struct pm_state_info *pm_policy_next_state(uint8_t cpu, int32_t ticks);
96
98
100#define PM_ALL_SUBSTATES (UINT8_MAX)
101
102#if defined(CONFIG_PM) || defined(__DOXYGEN__)
122
133
140
145
160
175
187
201
212
236void pm_policy_event_register(struct pm_policy_event *evt, int64_t uptime_ticks);
237
251void pm_policy_event_update(struct pm_policy_event *evt, int64_t uptime_ticks);
252
263
281
282#if defined(CONFIG_PM_CUSTOM_TICKS_HOOK) || defined(__DOXYGEN__)
297#endif /* CONFIG_PM_CUSTOM_TICKS_HOOK */
298
299#else
301{
302 ARG_UNUSED(state);
303 ARG_UNUSED(substate_id);
304}
305
307{
308 ARG_UNUSED(state);
309 ARG_UNUSED(substate_id);
310}
311
312static inline void pm_policy_state_all_lock_get(void)
313{
314}
315
316static inline void pm_policy_state_all_lock_put(void)
317{
318}
319
321{
322 ARG_UNUSED(state);
323 ARG_UNUSED(substate_id);
324
325 return false;
326}
327
328static inline void pm_policy_event_register(struct pm_policy_event *evt, int64_t uptime_ticks)
329{
330 ARG_UNUSED(evt);
331 ARG_UNUSED(uptime_ticks);
332}
333
334static inline void pm_policy_event_update(struct pm_policy_event *evt, int64_t uptime_ticks)
335{
336 ARG_UNUSED(evt);
337 ARG_UNUSED(uptime_ticks);
338}
339
340static inline void pm_policy_event_unregister(struct pm_policy_event *evt)
341{
342 ARG_UNUSED(evt);
343}
344
345static inline int64_t pm_policy_next_event_ticks(void)
346{
347 return -1;
348}
349#ifdef CONFIG_PM_CUSTOM_TICKS_HOOK
350
351static inline int64_t pm_policy_next_custom_ticks(void)
352{
353 return -1;
354}
355#endif /* CONFIG_PM_CUSTOM_TICKS_HOOK */
356
357#endif /* CONFIG_PM */
358
359#if defined(CONFIG_PM_POLICY_DEVICE_CONSTRAINTS) || defined(__DOXYGEN__)
372
385
400
401#else
402
403static inline void pm_policy_device_power_lock_get(const struct device *dev)
404{
405 ARG_UNUSED(dev);
406}
407
408static inline void pm_policy_device_power_lock_put(const struct device *dev)
409{
410 ARG_UNUSED(dev);
411}
412
413static inline bool pm_policy_device_is_disabling_state(const struct device *dev,
414 enum pm_state state,
416{
417 ARG_UNUSED(dev);
418 ARG_UNUSED(state);
419 ARG_UNUSED(substate_id);
420
421 return false;
422}
423#endif /* CONFIG_PM_POLICY_DEVICE_CONSTRAINTS */
424
425#if defined(CONFIG_PM) || defined(CONFIG_PM_POLICY_LATENCY_STANDALONE) || defined(__DOXYGEN__)
436 uint32_t value_us);
437
445 uint32_t value_us);
446
453
462
469#else
470static inline void pm_policy_latency_request_add(
471 struct pm_policy_latency_request *req, uint32_t value_us)
472{
473 ARG_UNUSED(req);
474 ARG_UNUSED(value_us);
475}
476
477static inline void pm_policy_latency_request_update(
478 struct pm_policy_latency_request *req, uint32_t value_us)
479{
480 ARG_UNUSED(req);
481 ARG_UNUSED(value_us);
482}
483
484static inline void pm_policy_latency_request_remove(
485 struct pm_policy_latency_request *req)
486{
487 ARG_UNUSED(req);
488}
489#endif /* CONFIG_PM CONFIG_PM_POLICY_LATENCY_STANDALONE */
490
494
495#ifdef __cplusplus
496}
497#endif
498
499#endif /* ZEPHYR_INCLUDE_PM_POLICY_H_ */
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:42
pm_state
Power management state.
Definition state.h:34
void pm_policy_event_update(struct pm_policy_event *evt, int64_t uptime_ticks)
Update an event.
bool pm_policy_state_any_active(void)
Check if any power state can be used.
void pm_policy_state_lock_put(enum pm_state state, uint8_t substate_id)
Decrease a power state lock counter.
bool pm_policy_state_is_available(enum pm_state state, uint8_t substate_id)
Check if a power state is available.
bool pm_policy_state_lock_is_active(enum pm_state state, uint8_t substate_id)
Check if a power state lock is active (not allowed).
void pm_policy_state_constraints_get(struct pm_state_constraints *constraints)
Apply power state constraints by locking the specified states.
bool pm_policy_device_is_disabling_state(const struct device *dev, enum pm_state state, uint8_t substate_id)
Check if a state will disable a device.
void pm_policy_event_register(struct pm_policy_event *evt, int64_t uptime_ticks)
Register an event.
void pm_policy_latency_request_update(struct pm_policy_latency_request *req, uint32_t value_us)
Update a latency requirement.
int64_t pm_policy_next_custom_ticks(void)
Get ticks to custom next event for PM policy.
void pm_policy_device_power_lock_get(const struct device *dev)
Increase power state locks.
void pm_policy_state_constraints_put(struct pm_state_constraints *constraints)
Remove power state constraints by unlocking the specified states.
void pm_policy_latency_request_add(struct pm_policy_latency_request *req, uint32_t value_us)
Add a new latency requirement.
void pm_policy_latency_changed_unsubscribe(struct pm_policy_latency_subscription *req)
Unsubscribe to maximum latency changes.
void pm_policy_event_unregister(struct pm_policy_event *evt)
Unregister an event.
void pm_policy_latency_request_remove(struct pm_policy_latency_request *req)
Remove a latency requirement.
void(* pm_policy_latency_changed_cb_t)(int32_t latency)
Callback to notify when maximum latency changes.
Definition policy.h:42
void pm_policy_state_lock_get(enum pm_state state, uint8_t substate_id)
Increase a power state lock counter.
void pm_policy_latency_changed_subscribe(struct pm_policy_latency_subscription *req, pm_policy_latency_changed_cb_t cb)
Subscribe to maximum latency changes.
void pm_policy_state_all_lock_put(void)
Release locking of all power states.
int64_t pm_policy_next_event_ticks(void)
Returns the ticks until the next event.
void pm_policy_state_all_lock_get(void)
Request to lock all power states.
void pm_policy_device_power_lock_put(const struct device *dev)
Decrease power state locks.
state
Definition parser_state.h:29
Header file for the single-linked list API.
Header file for System Power Management state definitions.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__INT64_TYPE__ int64_t
Definition stdint.h:75
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
Event.
Definition policy.h:73
Latency request.
Definition policy.h:61
Latency change subscription.
Definition policy.h:49
Collection of multiple power state constraints.
Definition state.h:198
Information about a power management state.
Definition state.h:121
uint8_t substate_id
Some platforms have multiple states that map to one Zephyr power state.
Definition state.h:149
Macros to abstract toolchain specific capabilities.