blob: 815983419375a28fb5db6d87843d7acc2d193501 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +01002/*
3 * consumer.h -- SoC Regulator consumer support.
4 *
5 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
6 *
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +01008 *
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +01009 * Regulator Consumer Interface.
10 *
11 * A Power Management Regulator framework for SoC based devices.
12 * Features:-
13 * o Voltage and current level control.
14 * o Operating mode control.
15 * o Regulator status.
16 * o sysfs entries for showing client devices and status
17 *
18 * EXPERIMENTAL FEATURES:
19 * Dynamic Regulator operating Mode Switching (DRMS) - allows regulators
20 * to use most efficient operating mode depending upon voltage and load and
21 * is transparent to client drivers.
22 *
23 * e.g. Devices x,y,z share regulator r. Device x and y draw 20mA each during
24 * IO and 1mA at idle. Device z draws 100mA when under load and 5mA when
25 * idling. Regulator r has > 90% efficiency in NORMAL mode at loads > 100mA
26 * but this drops rapidly to 60% when below 100mA. Regulator r has > 90%
27 * efficiency in IDLE mode at loads < 10mA. Thus regulator r will operate
28 * in normal mode for loads > 10mA and in IDLE mode for load <= 10mA.
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +010029 */
30
31#ifndef __LINUX_REGULATOR_CONSUMER_H_
32#define __LINUX_REGULATOR_CONSUMER_H_
33
Guenter Roeck174e9642014-10-09 12:43:27 -070034#include <linux/err.h>
35
Paul Gortmaker313162d2012-01-30 11:46:54 -050036struct device;
37struct notifier_block;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +030038struct regmap;
Liam Girdwoodb56daf12009-11-11 14:16:10 +000039
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +010040/*
41 * Regulator operating modes.
42 *
43 * Regulators can run in a variety of different operating modes depending on
44 * output load. This allows further system power savings by selecting the
45 * best (and most efficient) regulator mode for a desired load.
46 *
47 * Most drivers will only care about NORMAL. The modes below are generic and
48 * will probably not match the naming convention of your regulator data sheet
49 * but should match the use cases in the datasheet.
50 *
51 * In order of power efficiency (least efficient at top).
52 *
53 * Mode Description
54 * FAST Regulator can handle fast changes in it's load.
55 * e.g. useful in CPU voltage & frequency scaling where
56 * load can quickly increase with CPU frequency increases.
57 *
58 * NORMAL Normal regulator power supply mode. Most drivers will
59 * use this mode.
60 *
61 * IDLE Regulator runs in a more efficient mode for light
62 * loads. Can be used for devices that have a low power
63 * requirement during periods of inactivity. This mode
64 * may be more noisy than NORMAL and may not be able
65 * to handle fast load switching.
66 *
67 * STANDBY Regulator runs in the most efficient mode for very
68 * light loads. Can be used by devices when they are
69 * in a sleep/standby state. This mode is likely to be
70 * the most noisy and may not be able to handle fast load
71 * switching.
72 *
73 * NOTE: Most regulators will only support a subset of these modes. Some
74 * will only just support NORMAL.
75 *
76 * These modes can be OR'ed together to make up a mask of valid register modes.
77 */
78
Douglas Anderson02f37032018-04-18 08:54:18 -070079#define REGULATOR_MODE_INVALID 0x0
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +010080#define REGULATOR_MODE_FAST 0x1
81#define REGULATOR_MODE_NORMAL 0x2
82#define REGULATOR_MODE_IDLE 0x4
83#define REGULATOR_MODE_STANDBY 0x8
84
85/*
86 * Regulator notifier events.
87 *
88 * UNDER_VOLTAGE Regulator output is under voltage.
89 * OVER_CURRENT Regulator output current is too high.
90 * REGULATION_OUT Regulator output is out of regulation.
91 * FAIL Regulator output has failed.
92 * OVER_TEMP Regulator over temp.
Mark Brown84b68262009-12-01 21:12:27 +000093 * FORCE_DISABLE Regulator forcibly shut down by software.
Jonathan Cameronb136fb42009-01-19 18:20:58 +000094 * VOLTAGE_CHANGE Regulator voltage changed.
Heiko Stübner71795692014-08-28 12:36:04 -070095 * Data passed is old voltage cast to (void *).
Mark Brown84b68262009-12-01 21:12:27 +000096 * DISABLE Regulator was disabled.
Heiko Stübner71795692014-08-28 12:36:04 -070097 * PRE_VOLTAGE_CHANGE Regulator is about to have voltage changed.
98 * Data passed is "struct pre_voltage_change_data"
99 * ABORT_VOLTAGE_CHANGE Regulator voltage change failed for some reason.
100 * Data passed is old voltage cast to (void *).
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +0000101 * PRE_DISABLE Regulator is about to be disabled
102 * ABORT_DISABLE Regulator disable failed for some reason
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100103 *
104 * NOTE: These events can be OR'ed together when passed into handler.
105 */
106
107#define REGULATOR_EVENT_UNDER_VOLTAGE 0x01
108#define REGULATOR_EVENT_OVER_CURRENT 0x02
109#define REGULATOR_EVENT_REGULATION_OUT 0x04
110#define REGULATOR_EVENT_FAIL 0x08
111#define REGULATOR_EVENT_OVER_TEMP 0x10
112#define REGULATOR_EVENT_FORCE_DISABLE 0x20
Jonathan Cameronb136fb42009-01-19 18:20:58 +0000113#define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
Geert Uytterhoeven5c9e7192015-02-23 17:10:03 +0100114#define REGULATOR_EVENT_DISABLE 0x80
Heiko Stübner71795692014-08-28 12:36:04 -0700115#define REGULATOR_EVENT_PRE_VOLTAGE_CHANGE 0x100
116#define REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE 0x200
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +0000117#define REGULATOR_EVENT_PRE_DISABLE 0x400
118#define REGULATOR_EVENT_ABORT_DISABLE 0x800
Harald Geyer264b88c2017-02-23 17:06:52 +0000119#define REGULATOR_EVENT_ENABLE 0x1000
Heiko Stübner71795692014-08-28 12:36:04 -0700120
Axel Haslam1b5b4222016-11-03 12:11:42 +0100121/*
122 * Regulator errors that can be queried using regulator_get_error_flags
123 *
124 * UNDER_VOLTAGE Regulator output is under voltage.
125 * OVER_CURRENT Regulator output current is too high.
126 * REGULATION_OUT Regulator output is out of regulation.
127 * FAIL Regulator output has failed.
128 * OVER_TEMP Regulator over temp.
129 *
130 * NOTE: These errors can be OR'ed together.
131 */
132
133#define REGULATOR_ERROR_UNDER_VOLTAGE BIT(1)
134#define REGULATOR_ERROR_OVER_CURRENT BIT(2)
135#define REGULATOR_ERROR_REGULATION_OUT BIT(3)
136#define REGULATOR_ERROR_FAIL BIT(4)
137#define REGULATOR_ERROR_OVER_TEMP BIT(5)
138
139
Heiko Stübner71795692014-08-28 12:36:04 -0700140/**
141 * struct pre_voltage_change_data - Data sent with PRE_VOLTAGE_CHANGE event
142 *
143 * @old_uV: Current voltage before change.
144 * @min_uV: Min voltage we'll change to.
145 * @max_uV: Max voltage we'll change to.
146 */
147struct pre_voltage_change_data {
148 unsigned long old_uV;
149 unsigned long min_uV;
150 unsigned long max_uV;
151};
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100152
153struct regulator;
154
155/**
156 * struct regulator_bulk_data - Data used for bulk regulator operations.
157 *
Mark Brown69279fb2008-12-31 12:52:41 +0000158 * @supply: The name of the supply. Initialised by the user before
159 * using the bulk regulator APIs.
160 * @consumer: The regulator consumer for the supply. This will be managed
161 * by the bulk API.
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100162 *
163 * The regulator APIs provide a series of regulator_bulk_() API calls as
164 * a convenience to consumers which require multiple supplies. This
165 * structure is used to manage data for these calls.
166 */
167struct regulator_bulk_data {
168 const char *supply;
169 struct regulator *consumer;
Mark Brownf21e0e82011-05-24 08:12:40 +0800170
Randy Dunlapbff747c2011-09-08 10:16:47 -0700171 /* private: Internal use */
Mark Brownf21e0e82011-05-24 08:12:40 +0800172 int ret;
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100173};
174
175#if defined(CONFIG_REGULATOR)
176
177/* regulator get and put */
178struct regulator *__must_check regulator_get(struct device *dev,
179 const char *id);
Stephen Boyd070b9072012-01-16 19:39:58 -0800180struct regulator *__must_check devm_regulator_get(struct device *dev,
181 const char *id);
Mark Brown5ffbd132009-07-21 16:00:23 +0100182struct regulator *__must_check regulator_get_exclusive(struct device *dev,
183 const char *id);
Matthias Kaehlcke9efdd272013-08-25 17:54:13 +0200184struct regulator *__must_check devm_regulator_get_exclusive(struct device *dev,
185 const char *id);
Mark Brownde1dd9f2013-07-29 21:42:42 +0100186struct regulator *__must_check regulator_get_optional(struct device *dev,
187 const char *id);
188struct regulator *__must_check devm_regulator_get_optional(struct device *dev,
189 const char *id);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100190void regulator_put(struct regulator *regulator);
Axel Lin2950c4b2012-01-29 17:52:37 +0800191void devm_regulator_put(struct regulator *regulator);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100192
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100193int regulator_register_supply_alias(struct device *dev, const char *id,
194 struct device *alias_dev,
195 const char *alias_id);
196void regulator_unregister_supply_alias(struct device *dev, const char *id);
197
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100198int regulator_bulk_register_supply_alias(struct device *dev,
199 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100200 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100201 const char *const *alias_id,
202 int num_id);
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100203void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100204 const char * const *id, int num_id);
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100205
206int devm_regulator_register_supply_alias(struct device *dev, const char *id,
207 struct device *alias_dev,
208 const char *alias_id);
209void devm_regulator_unregister_supply_alias(struct device *dev,
210 const char *id);
211
212int devm_regulator_bulk_register_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100213 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100214 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100215 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100216 int num_id);
217void devm_regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100218 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100219 int num_id);
220
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100221/* regulator output control and status */
Mark Brownc8801a82012-03-19 16:35:48 +0000222int __must_check regulator_enable(struct regulator *regulator);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100223int regulator_disable(struct regulator *regulator);
224int regulator_force_disable(struct regulator *regulator);
225int regulator_is_enabled(struct regulator *regulator);
Mark Brownda07ecd2011-09-11 09:53:50 +0100226int regulator_disable_deferred(struct regulator *regulator, int ms);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100227
Mark Brownc8801a82012-03-19 16:35:48 +0000228int __must_check regulator_bulk_get(struct device *dev, int num_consumers,
229 struct regulator_bulk_data *consumers);
230int __must_check devm_regulator_bulk_get(struct device *dev, int num_consumers,
231 struct regulator_bulk_data *consumers);
232int __must_check regulator_bulk_enable(int num_consumers,
233 struct regulator_bulk_data *consumers);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100234int regulator_bulk_disable(int num_consumers,
235 struct regulator_bulk_data *consumers);
Donggeun Kime1de2f42012-01-03 16:22:03 +0900236int regulator_bulk_force_disable(int num_consumers,
237 struct regulator_bulk_data *consumers);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100238void regulator_bulk_free(int num_consumers,
239 struct regulator_bulk_data *consumers);
240
David Brownell4367cfd2009-02-26 11:48:36 -0800241int regulator_count_voltages(struct regulator *regulator);
242int regulator_list_voltage(struct regulator *regulator, unsigned selector);
Mark Browna7a1ad902009-07-21 16:00:24 +0100243int regulator_is_supported_voltage(struct regulator *regulator,
244 int min_uV, int max_uV);
Paul Walmsley2a668a82013-06-07 08:06:56 +0000245unsigned int regulator_get_linear_step(struct regulator *regulator);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100246int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV);
Linus Walleij88cd222b2011-03-17 13:24:52 +0100247int regulator_set_voltage_time(struct regulator *regulator,
248 int old_uV, int new_uV);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100249int regulator_get_voltage(struct regulator *regulator);
Mark Brown606a2562010-12-16 15:49:36 +0000250int regulator_sync_voltage(struct regulator *regulator);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100251int regulator_set_current_limit(struct regulator *regulator,
252 int min_uA, int max_uA);
253int regulator_get_current_limit(struct regulator *regulator);
254
255int regulator_set_mode(struct regulator *regulator, unsigned int mode);
256unsigned int regulator_get_mode(struct regulator *regulator);
Axel Haslam1b5b4222016-11-03 12:11:42 +0100257int regulator_get_error_flags(struct regulator *regulator,
258 unsigned int *flags);
Bjorn Anderssone39ce482015-02-11 19:35:27 -0800259int regulator_set_load(struct regulator *regulator, int load_uA);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100260
Mark Brownf59c8f92012-08-31 10:36:37 -0700261int regulator_allow_bypass(struct regulator *regulator, bool allow);
262
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +0300263struct regmap *regulator_get_regmap(struct regulator *regulator);
264int regulator_get_hardware_vsel_register(struct regulator *regulator,
265 unsigned *vsel_reg,
266 unsigned *vsel_mask);
267int regulator_list_hardware_vsel(struct regulator *regulator,
268 unsigned selector);
269
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100270/* regulator notifier block */
271int regulator_register_notifier(struct regulator *regulator,
272 struct notifier_block *nb);
Charles Keepax046db762015-03-05 15:39:20 +0000273int devm_regulator_register_notifier(struct regulator *regulator,
274 struct notifier_block *nb);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100275int regulator_unregister_notifier(struct regulator *regulator,
276 struct notifier_block *nb);
Charles Keepax046db762015-03-05 15:39:20 +0000277void devm_regulator_unregister_notifier(struct regulator *regulator,
278 struct notifier_block *nb);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100279
280/* driver data - core doesn't touch */
281void *regulator_get_drvdata(struct regulator *regulator);
282void regulator_set_drvdata(struct regulator *regulator, void *data);
283
284#else
285
286/*
287 * Make sure client drivers will still build on systems with no software
288 * controllable voltage or current regulators.
289 */
290static inline struct regulator *__must_check regulator_get(struct device *dev,
291 const char *id)
292{
293 /* Nothing except the stubbed out regulator API should be
294 * looking at the value except to check if it is an error
Jean Delvarebe1a50d2010-04-03 17:37:45 +0200295 * value. Drivers are free to handle NULL specifically by
296 * skipping all regulator API calls, but they don't have to.
297 * Drivers which don't, should make sure they properly handle
298 * corner cases of the API, such as regulator_get_voltage()
299 * returning 0.
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100300 */
Jean Delvarebe1a50d2010-04-03 17:37:45 +0200301 return NULL;
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100302}
Stephen Boyd070b9072012-01-16 19:39:58 -0800303
304static inline struct regulator *__must_check
305devm_regulator_get(struct device *dev, const char *id)
306{
307 return NULL;
308}
309
Mark Brownde1dd9f2013-07-29 21:42:42 +0100310static inline struct regulator *__must_check
Mark Brown4bdfb272013-07-29 21:00:53 +0100311regulator_get_exclusive(struct device *dev, const char *id)
312{
Mark Brown70b946f2014-10-24 21:56:58 +0100313 return ERR_PTR(-ENODEV);
Mark Brown4bdfb272013-07-29 21:00:53 +0100314}
315
Mark Brownde1dd9f2013-07-29 21:42:42 +0100316static inline struct regulator *__must_check
317regulator_get_optional(struct device *dev, const char *id)
318{
Tim Krygerdf7926f2014-04-17 11:55:24 -0700319 return ERR_PTR(-ENODEV);
Mark Brownde1dd9f2013-07-29 21:42:42 +0100320}
321
Mark Brown4bdfb272013-07-29 21:00:53 +0100322
323static inline struct regulator *__must_check
Mark Brownde1dd9f2013-07-29 21:42:42 +0100324devm_regulator_get_optional(struct device *dev, const char *id)
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100325{
Tim Krygerdf7926f2014-04-17 11:55:24 -0700326 return ERR_PTR(-ENODEV);
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100327}
328
329static inline void regulator_put(struct regulator *regulator)
330{
331}
332
Axel Lin2950c4b2012-01-29 17:52:37 +0800333static inline void devm_regulator_put(struct regulator *regulator)
334{
335}
336
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100337static inline int regulator_register_supply_alias(struct device *dev,
338 const char *id,
339 struct device *alias_dev,
340 const char *alias_id)
341{
342 return 0;
343}
344
345static inline void regulator_unregister_supply_alias(struct device *dev,
346 const char *id)
347{
348}
349
350static inline int regulator_bulk_register_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100351 const char *const *id,
352 struct device *alias_dev,
353 const char * const *alias_id,
354 int num_id)
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100355{
356 return 0;
357}
358
359static inline void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100360 const char * const *id,
361 int num_id)
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100362{
363}
364
365static inline int devm_regulator_register_supply_alias(struct device *dev,
366 const char *id,
367 struct device *alias_dev,
368 const char *alias_id)
369{
370 return 0;
371}
372
373static inline void devm_regulator_unregister_supply_alias(struct device *dev,
374 const char *id)
375{
376}
377
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100378static inline int devm_regulator_bulk_register_supply_alias(struct device *dev,
379 const char *const *id,
380 struct device *alias_dev,
381 const char *const *alias_id,
382 int num_id)
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100383{
384 return 0;
385}
386
387static inline void devm_regulator_bulk_unregister_supply_alias(
Lee Jones9f8c0fe2014-05-23 16:44:10 +0100388 struct device *dev, const char *const *id, int num_id)
Charles Keepaxa06ccd92013-10-15 20:14:20 +0100389{
390}
391
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100392static inline int regulator_enable(struct regulator *regulator)
393{
394 return 0;
395}
396
397static inline int regulator_disable(struct regulator *regulator)
398{
399 return 0;
400}
401
MyungJoo Ham935a52102012-01-02 18:49:32 +0900402static inline int regulator_force_disable(struct regulator *regulator)
403{
404 return 0;
405}
406
Mark Brownda07ecd2011-09-11 09:53:50 +0100407static inline int regulator_disable_deferred(struct regulator *regulator,
408 int ms)
409{
410 return 0;
411}
412
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100413static inline int regulator_is_enabled(struct regulator *regulator)
414{
415 return 1;
416}
417
418static inline int regulator_bulk_get(struct device *dev,
419 int num_consumers,
420 struct regulator_bulk_data *consumers)
421{
422 return 0;
423}
424
Axel Line24abd62012-01-27 12:55:28 +0800425static inline int devm_regulator_bulk_get(struct device *dev, int num_consumers,
426 struct regulator_bulk_data *consumers)
427{
428 return 0;
429}
430
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100431static inline int regulator_bulk_enable(int num_consumers,
432 struct regulator_bulk_data *consumers)
433{
434 return 0;
435}
436
437static inline int regulator_bulk_disable(int num_consumers,
438 struct regulator_bulk_data *consumers)
439{
440 return 0;
441}
442
Donggeun Kime1de2f42012-01-03 16:22:03 +0900443static inline int regulator_bulk_force_disable(int num_consumers,
444 struct regulator_bulk_data *consumers)
445{
446 return 0;
447}
448
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100449static inline void regulator_bulk_free(int num_consumers,
450 struct regulator_bulk_data *consumers)
451{
452}
453
454static inline int regulator_set_voltage(struct regulator *regulator,
455 int min_uV, int max_uV)
456{
457 return 0;
458}
459
Viresh Kumard660e922014-05-27 17:37:29 +0530460static inline int regulator_set_voltage_time(struct regulator *regulator,
461 int old_uV, int new_uV)
462{
463 return 0;
464}
465
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100466static inline int regulator_get_voltage(struct regulator *regulator)
467{
Mark Brown08aed2f2012-06-11 20:14:24 +0800468 return -EINVAL;
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100469}
470
Philip Rakity4fe23792012-06-30 16:05:36 -0700471static inline int regulator_is_supported_voltage(struct regulator *regulator,
472 int min_uV, int max_uV)
473{
474 return 0;
475}
476
Arnd Bergmann72872752019-03-04 20:38:29 +0100477static inline unsigned int regulator_get_linear_step(struct regulator *regulator)
478{
479 return 0;
480}
481
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100482static inline int regulator_set_current_limit(struct regulator *regulator,
483 int min_uA, int max_uA)
484{
485 return 0;
486}
487
488static inline int regulator_get_current_limit(struct regulator *regulator)
489{
490 return 0;
491}
492
493static inline int regulator_set_mode(struct regulator *regulator,
494 unsigned int mode)
495{
496 return 0;
497}
498
499static inline unsigned int regulator_get_mode(struct regulator *regulator)
500{
501 return REGULATOR_MODE_NORMAL;
502}
503
David Lechner30103b52016-12-04 16:52:31 -0600504static inline int regulator_get_error_flags(struct regulator *regulator,
505 unsigned int *flags)
Axel Haslam1b5b4222016-11-03 12:11:42 +0100506{
507 return -EINVAL;
508}
509
Bjorn Anderssone39ce482015-02-11 19:35:27 -0800510static inline int regulator_set_load(struct regulator *regulator, int load_uA)
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100511{
Mark Brownf1abf672018-11-16 19:19:30 -0800512 return 0;
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100513}
514
Mark Brownf59c8f92012-08-31 10:36:37 -0700515static inline int regulator_allow_bypass(struct regulator *regulator,
516 bool allow)
517{
518 return 0;
519}
520
Mark Brown3bc03122014-07-25 19:07:11 +0100521static inline struct regmap *regulator_get_regmap(struct regulator *regulator)
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +0300522{
523 return ERR_PTR(-EOPNOTSUPP);
524}
525
Mark Brown3bc03122014-07-25 19:07:11 +0100526static inline int regulator_get_hardware_vsel_register(struct regulator *regulator,
527 unsigned *vsel_reg,
528 unsigned *vsel_mask)
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +0300529{
530 return -EOPNOTSUPP;
531}
532
Mark Brown3bc03122014-07-25 19:07:11 +0100533static inline int regulator_list_hardware_vsel(struct regulator *regulator,
534 unsigned selector)
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +0300535{
536 return -EOPNOTSUPP;
537}
538
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100539static inline int regulator_register_notifier(struct regulator *regulator,
540 struct notifier_block *nb)
541{
542 return 0;
543}
544
Charles Keepax046db762015-03-05 15:39:20 +0000545static inline int devm_regulator_register_notifier(struct regulator *regulator,
546 struct notifier_block *nb)
547{
548 return 0;
549}
550
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100551static inline int regulator_unregister_notifier(struct regulator *regulator,
552 struct notifier_block *nb)
553{
554 return 0;
555}
556
Charles Keepax046db762015-03-05 15:39:20 +0000557static inline int devm_regulator_unregister_notifier(struct regulator *regulator,
558 struct notifier_block *nb)
559{
560 return 0;
561}
562
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100563static inline void *regulator_get_drvdata(struct regulator *regulator)
564{
565 return NULL;
566}
567
568static inline void regulator_set_drvdata(struct regulator *regulator,
569 void *data)
570{
571}
572
Philip Rakity1a8f85d2012-11-20 18:07:41 +0100573static inline int regulator_count_voltages(struct regulator *regulator)
574{
575 return 0;
576}
Suzuki K. Poulose5127e312015-07-10 16:26:38 +0100577
578static inline int regulator_list_voltage(struct regulator *regulator, unsigned selector)
579{
580 return -EINVAL;
581}
582
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100583#endif
584
Viresh Kumar30f93ca2015-08-17 08:16:51 +0530585static inline int regulator_set_voltage_triplet(struct regulator *regulator,
586 int min_uV, int target_uV,
587 int max_uV)
588{
589 if (regulator_set_voltage(regulator, target_uV, max_uV) == 0)
590 return 0;
591
592 return regulator_set_voltage(regulator, min_uV, max_uV);
593}
594
Shawn Guo3f196572012-08-05 23:05:20 +0800595static inline int regulator_set_voltage_tol(struct regulator *regulator,
596 int new_uV, int tol_uV)
597{
Mark Browndc9ceed2013-07-04 17:27:14 +0100598 if (regulator_set_voltage(regulator, new_uV, new_uV + tol_uV) == 0)
599 return 0;
600 else
601 return regulator_set_voltage(regulator,
602 new_uV - tol_uV, new_uV + tol_uV);
Shawn Guo3f196572012-08-05 23:05:20 +0800603}
604
Mark Brownfe1e43f2012-11-14 16:47:10 +0900605static inline int regulator_is_supported_voltage_tol(struct regulator *regulator,
606 int target_uV, int tol_uV)
607{
608 return regulator_is_supported_voltage(regulator,
609 target_uV - tol_uV,
610 target_uV + tol_uV);
611}
612
Liam Girdwoode2ce4eaa2008-04-30 15:10:07 +0100613#endif