summaryrefslogtreecommitdiff
path: root/zephyr/shim/include/power/power.h
blob: 6ea244470540e572c10a3996abc64c285d920b37 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef ZEPHYR_CHROME_POWER_POWER_H
#define ZEPHYR_CHROME_POWER_POWER_H

#include <zephyr/devicetree.h>
#include <zephyr/drivers/gpio.h>

#define POWER_SIGNAL_LIST_NODE                                                \
	DT_NODELABEL(power_signal_list)

#define SYSTEM_DT_POWER_SIGNAL_CONFIG                                         \
	DT_NODE_EXISTS(POWER_SIGNAL_LIST_NODE)

#if (SYSTEM_DT_POWER_SIGNAL_CONFIG)

#define GEN_POWER_SIGNAL_STRUCT_ENTRY_GPIO(cid)                               \
	DT_STRING_UPPER_TOKEN(                                                \
		DT_PROP(                                                      \
			cid,                                                  \
			power_gpio_pin                                        \
		),                                                            \
		enum_name                                                     \
	)
#define GEN_POWER_SIGNAL_STRUCT_ENTRY_FLAGS(cid)                              \
(                                                                             \
	DT_GPIO_FLAGS(                                                        \
		DT_PROP(                                                      \
			cid,                                                  \
			power_gpio_pin                                        \
		),                                                            \
		gpios                                                         \
	) & GPIO_ACTIVE_LOW                                                   \
		? POWER_SIGNAL_ACTIVE_LOW                                     \
		: POWER_SIGNAL_ACTIVE_HIGH                                    \
)
#define GEN_POWER_SIGNAL_STRUCT_ENTRY_NAME(cid)                               \
	DT_PROP(                                                              \
		cid,                                                          \
		power_enum_name                                               \
	)

#define GEN_POWER_SIGNAL_STRUCT_ENTRY(cid)                                    \
{                                                                             \
	.gpio = GEN_POWER_SIGNAL_STRUCT_ENTRY_GPIO(cid),                      \
	.flags = GEN_POWER_SIGNAL_STRUCT_ENTRY_FLAGS(cid),                    \
	.name = GEN_POWER_SIGNAL_STRUCT_ENTRY_NAME(cid)                       \
}
#define GEN_POWER_SIGNAL_STRUCT(cid)                                          \
	[GEN_POWER_SIGNAL_ENUM_ENTRY(cid)] =                                  \
		GEN_POWER_SIGNAL_STRUCT_ENTRY(cid),


#define GEN_POWER_SIGNAL_ENUM_ENTRY(cid)                                      \
	DT_STRING_UPPER_TOKEN(                                                \
		cid,                                                          \
		power_enum_name                                               \
	)
#define GEN_POWER_SIGNAL_ENUM_ENTRY_COMMA(cid)                                \
	GEN_POWER_SIGNAL_ENUM_ENTRY(cid),

enum power_signal {
	DT_FOREACH_CHILD(
		POWER_SIGNAL_LIST_NODE,
		GEN_POWER_SIGNAL_ENUM_ENTRY_COMMA)
	POWER_SIGNAL_COUNT
};

/*
 * Verify the number of required power-signals are specified in
 * the DeviceTree
 */
#define POWER_SIGNALS_REQUIRED                                                \
	DT_PROP(                                                              \
		POWER_SIGNAL_LIST_NODE,                                       \
		power_signals_required                                        \
	)
BUILD_ASSERT(POWER_SIGNALS_REQUIRED == POWER_SIGNAL_COUNT);

#endif /* SYSTEM_DT_POWER_SIGNAL_CONFIG */
#endif /* ZEPHYR_CHROME_POWER_POWER_H */