blob: 2ff6c77cd765fe3791b8939d96c1c6abfb9f69b6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren61f5ddc2016-07-13 13:45:31 -06002/*
3 * Copyright (c) 2016, NVIDIA CORPORATION.
Stephen Warren61f5ddc2016-07-13 13:45:31 -06004 */
5
6#ifndef _POWER_DOMAIN_H
7#define _POWER_DOMAIN_H
8
9/**
10 * A power domain is a portion of an SoC or chip that is powered by a
11 * switchable source of power. In many cases, software has control over the
12 * power domain, and can turn the power source on or off. This is typically
13 * done to save power by powering off unused devices, or to enable software
14 * sequencing of initial powerup at boot. This API provides a means for
15 * drivers to turn power domains on and off.
16 *
17 * A driver that implements UCLASS_POWER_DOMAIN is a power domain controller or
18 * provider. A controller will often implement multiple separate power domains,
19 * since the hardware it manages often has this capability.
20 * power-domain-uclass.h describes the interface which power domain controllers
21 * must implement.
22 *
23 * Depending on the power domain controller hardware, changing the state of a
24 * power domain may require performing related operations on other resources.
25 * For example, some power domains may require certain clocks to be enabled
26 * whenever the power domain is powered on, or during the time when the power
27 * domain is transitioning state. These details are implementation-specific
28 * and should ideally be encapsulated entirely within the provider driver, or
29 * configured through mechanisms (e.g. device tree) that do not require client
30 * drivers to provide extra configuration information.
31 *
32 * Power domain consumers/clients are the drivers for HW modules within the
33 * power domain. This header file describes the API used by those drivers.
34 *
35 * In many cases, a single complex IO controller (e.g. a PCIe controller) will
36 * be the sole logic contained within a power domain. In such cases, it is
37 * logical for the relevant device driver to directly control that power
38 * domain. In other cases, multiple controllers, each with their own driver,
39 * may be contained in a single power domain. Any logic require to co-ordinate
40 * between drivers for these multiple controllers is beyond the scope of this
41 * API at present. Equally, this API does not define or implement any policy
42 * by which power domains are managed.
43 */
44
45struct udevice;
46
47/**
48 * struct power_domain - A handle to (allowing control of) a single power domain.
49 *
50 * Clients provide storage for power domain handles. The content of the
51 * structure is managed solely by the power domain API and power domain
52 * drivers. A power domain struct is initialized by "get"ing the power domain
53 * struct. The power domain struct is passed to all other power domain APIs to
54 * identify which power domain to operate upon.
55 *
56 * @dev: The device which implements the power domain.
57 * @id: The power domain ID within the provider.
Lokesh Vutlafd4e7be2019-06-07 19:24:44 +053058 * @priv: Private data corresponding to each power domain.
Stephen Warren61f5ddc2016-07-13 13:45:31 -060059 */
60struct power_domain {
61 struct udevice *dev;
Stephen Warren61f5ddc2016-07-13 13:45:31 -060062 unsigned long id;
Lokesh Vutlafd4e7be2019-06-07 19:24:44 +053063 void *priv;
Stephen Warren61f5ddc2016-07-13 13:45:31 -060064};
65
66/**
67 * power_domain_get - Get/request the power domain for a device.
68 *
69 * This looks up and requests a power domain. Each device is assumed to have
70 * a single (or, at least one) power domain associated with it somehow, and
71 * that domain, or the first/default domain. The mapping of client device to
72 * provider power domain may be via device-tree properties, board-provided
73 * mapping tables, or some other mechanism.
74 *
75 * @dev: The client device.
76 * @power_domain A pointer to a power domain struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010077 * Return: 0 if OK, or a negative error code.
Stephen Warren61f5ddc2016-07-13 13:45:31 -060078 */
Peng Fan58d3de12018-07-27 10:20:36 +080079#if CONFIG_IS_ENABLED(POWER_DOMAIN)
Stephen Warren61f5ddc2016-07-13 13:45:31 -060080int power_domain_get(struct udevice *dev, struct power_domain *power_domain);
Peng Fan58d3de12018-07-27 10:20:36 +080081#else
82static inline
83int power_domain_get(struct udevice *dev, struct power_domain *power_domain)
84{
85 return -ENOSYS;
86}
87#endif
Stephen Warren61f5ddc2016-07-13 13:45:31 -060088
89/**
Lokesh Vutla2618cf32018-08-27 15:57:44 +053090 * power_domain_get_by_index - Get the indexed power domain for a device.
91 *
92 * @dev: The client device.
93 * @power_domain: A pointer to a power domain struct to initialize.
94 * @index: Power domain index to be powered on.
95 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010096 * Return: 0 if OK, or a negative error code.
Lokesh Vutla2618cf32018-08-27 15:57:44 +053097 */
98#if CONFIG_IS_ENABLED(POWER_DOMAIN)
99int power_domain_get_by_index(struct udevice *dev,
100 struct power_domain *power_domain, int index);
101#else
102static inline
103int power_domain_get_by_index(struct udevice *dev,
104 struct power_domain *power_domain, int index)
105{
106 return -ENOSYS;
107}
108#endif
109
110/**
Marek Vasut63c390a2022-04-13 00:42:52 +0200111 * power_domain_get_by_name - Get the named power domain for a device.
112 *
113 * @dev: The client device.
114 * @power_domain: A pointer to a power domain struct to initialize.
115 * @name: Power domain name to be powered on.
116 *
117 * Return: 0 if OK, or a negative error code.
118 */
119#if CONFIG_IS_ENABLED(POWER_DOMAIN)
120int power_domain_get_by_name(struct udevice *dev,
121 struct power_domain *power_domain, const char *name);
122#else
123static inline
124int power_domain_get_by_name(struct udevice *dev,
125 struct power_domain *power_domain, const char *name)
126{
127 return -ENOSYS;
128}
129#endif
130
131/**
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600132 * power_domain_free - Free a previously requested power domain.
133 *
134 * @power_domain: A power domain struct that was previously successfully
135 * requested by power_domain_get().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100136 * Return: 0 if OK, or a negative error code.
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600137 */
Peng Fan58d3de12018-07-27 10:20:36 +0800138#if CONFIG_IS_ENABLED(POWER_DOMAIN)
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600139int power_domain_free(struct power_domain *power_domain);
Peng Fan58d3de12018-07-27 10:20:36 +0800140#else
141static inline int power_domain_free(struct power_domain *power_domain)
142{
143 return -ENOSYS;
144}
145#endif
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600146
147/**
148 * power_domain_on - Enable power to a power domain.
149 *
150 * @power_domain: A power domain struct that was previously successfully
151 * requested by power_domain_get().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100152 * Return: 0 if OK, or a negative error code.
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600153 */
Peng Fan58d3de12018-07-27 10:20:36 +0800154#if CONFIG_IS_ENABLED(POWER_DOMAIN)
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600155int power_domain_on(struct power_domain *power_domain);
Peng Fan58d3de12018-07-27 10:20:36 +0800156#else
157static inline int power_domain_on(struct power_domain *power_domain)
158{
159 return -ENOSYS;
160}
161#endif
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600162
163/**
Anatolij Gustschinf752e572019-07-10 10:03:13 +0200164 * power_domain_off - Disable power to a power domain.
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600165 *
166 * @power_domain: A power domain struct that was previously successfully
167 * requested by power_domain_get().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100168 * Return: 0 if OK, or a negative error code.
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600169 */
Peng Fan58d3de12018-07-27 10:20:36 +0800170#if CONFIG_IS_ENABLED(POWER_DOMAIN)
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600171int power_domain_off(struct power_domain *power_domain);
Peng Fan58d3de12018-07-27 10:20:36 +0800172#else
173static inline int power_domain_off(struct power_domain *power_domain)
174{
175 return -ENOSYS;
176}
177#endif
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600178
Peng Fan9c1e9822019-09-17 09:29:19 +0000179/**
180 * dev_power_domain_on - Enable power domains for a device .
181 *
182 * @dev: The client device.
183 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100184 * Return: 0 if OK, or a negative error code.
Peng Fan9c1e9822019-09-17 09:29:19 +0000185 */
Simon Glass414cc152021-08-07 07:24:03 -0600186#if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(POWER_DOMAIN)
Peng Fan9c1e9822019-09-17 09:29:19 +0000187int dev_power_domain_on(struct udevice *dev);
188#else
189static inline int dev_power_domain_on(struct udevice *dev)
190{
191 return 0;
192}
193#endif
194
Lokesh Vutla0cf795a2019-09-27 13:48:14 +0530195/**
196 * dev_power_domain_off - Disable power domains for a device .
197 *
198 * @dev: The client device.
199 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100200 * Return: 0 if OK, or a negative error code.
Lokesh Vutla0cf795a2019-09-27 13:48:14 +0530201 */
Simon Glass414cc152021-08-07 07:24:03 -0600202#if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(POWER_DOMAIN)
Lokesh Vutla0cf795a2019-09-27 13:48:14 +0530203int dev_power_domain_off(struct udevice *dev);
204#else
205static inline int dev_power_domain_off(struct udevice *dev)
206{
207 return 0;
208}
209#endif
210
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600211#endif