blob: 1e9c716421436c9a5f6aabec5a73a5396b641a7b [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Mark Brown0cdfcc02013-09-11 13:15:40 +01002/*
3 * internal.h -- Voltage/Current Regulator framework internal code
4 *
5 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
6 * Copyright 2008 SlimLogic Ltd.
7 *
8 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brown0cdfcc02013-09-11 13:15:40 +01009 */
10
11#ifndef __REGULATOR_INTERNAL_H
12#define __REGULATOR_INTERNAL_H
13
Chunyan Zhangc360a6d2018-01-26 21:08:44 +080014#include <linux/suspend.h>
15
16#define REGULATOR_STATES_NUM (PM_SUSPEND_MAX + 1)
17
Matti Vaittinen157d2232021-06-03 08:41:37 +030018#define rdev_crit(rdev, fmt, ...) \
19 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
20#define rdev_err(rdev, fmt, ...) \
21 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
22#define rdev_warn(rdev, fmt, ...) \
23 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
24#define rdev_info(rdev, fmt, ...) \
25 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
26#define rdev_dbg(rdev, fmt, ...) \
27 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
28
Chunyan Zhangc360a6d2018-01-26 21:08:44 +080029struct regulator_voltage {
30 int min_uV;
31 int max_uV;
32};
33
Mark Brown0cdfcc02013-09-11 13:15:40 +010034/*
35 * struct regulator
36 *
37 * One for each consumer device.
Chunyan Zhangc360a6d2018-01-26 21:08:44 +080038 * @voltage - a voltage array for each state of runtime, i.e.:
39 * PM_SUSPEND_ON
40 * PM_SUSPEND_TO_IDLE
41 * PM_SUSPEND_STANDBY
42 * PM_SUSPEND_MEM
43 * PM_SUSPEND_MAX
Mark Brown0cdfcc02013-09-11 13:15:40 +010044 */
45struct regulator {
46 struct device *dev;
47 struct list_head list;
48 unsigned int always_on:1;
49 unsigned int bypass:1;
Saravana Kannanb59b6542019-11-14 16:04:38 -080050 unsigned int device_link:1;
Mark Brown0cdfcc02013-09-11 13:15:40 +010051 int uA_load;
Douglas Anderson54517812018-11-20 09:52:53 -080052 unsigned int enable_count;
53 unsigned int deferred_disables;
Chunyan Zhangc360a6d2018-01-26 21:08:44 +080054 struct regulator_voltage voltage[REGULATOR_STATES_NUM];
Stephen Boyd0630b612017-03-16 18:07:14 -070055 const char *supply_name;
Mark Brown0cdfcc02013-09-11 13:15:40 +010056 struct device_attribute dev_attr;
57 struct regulator_dev *rdev;
58 struct dentry *debugfs;
59};
60
Maciej Purski148096a2018-01-22 15:30:06 +010061extern struct class regulator_class;
62
63static inline struct regulator_dev *dev_to_rdev(struct device *dev)
64{
65 return container_of(dev, struct regulator_dev, dev);
66}
67
Mark Brownef126a42014-09-10 15:17:01 +010068#ifdef CONFIG_OF
Changbin Du08813e02018-05-02 21:44:57 +080069struct regulator_dev *of_find_regulator_by_node(struct device_node *np);
Mark Browna0c7b162014-09-09 23:13:57 +010070struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
71 const struct regulator_desc *desc,
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +010072 struct regulator_config *config,
Mark Browna0c7b162014-09-09 23:13:57 +010073 struct device_node **node);
Maciej Purskia085a312018-04-23 16:33:39 +020074
75struct regulator_dev *of_parse_coupled_regulator(struct regulator_dev *rdev,
76 int index);
77
78int of_get_n_coupled(struct regulator_dev *rdev);
79
80bool of_check_coupling_data(struct regulator_dev *rdev);
81
Mark Brownef126a42014-09-10 15:17:01 +010082#else
Changbin Du08813e02018-05-02 21:44:57 +080083static inline struct regulator_dev *
84of_find_regulator_by_node(struct device_node *np)
85{
86 return NULL;
87}
88
Mark Brownef126a42014-09-10 15:17:01 +010089static inline struct regulator_init_data *
90regulator_of_get_init_data(struct device *dev,
91 const struct regulator_desc *desc,
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +010092 struct regulator_config *config,
Mark Brownef126a42014-09-10 15:17:01 +010093 struct device_node **node)
94{
95 return NULL;
96}
Mark Browna0c7b162014-09-09 23:13:57 +010097
Maciej Purskia085a312018-04-23 16:33:39 +020098static inline struct regulator_dev *
99of_parse_coupled_regulator(struct regulator_dev *rdev,
100 int index)
101{
102 return NULL;
103}
104
105static inline int of_get_n_coupled(struct regulator_dev *rdev)
106{
107 return 0;
108}
109
110static inline bool of_check_coupling_data(struct regulator_dev *rdev)
111{
112 return false;
113}
114
115#endif
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -0800116enum regulator_get_type {
117 NORMAL_GET,
118 EXCLUSIVE_GET,
119 OPTIONAL_GET,
120 MAX_GET_TYPE
121};
122
123struct regulator *_regulator_get(struct device *dev, const char *id,
124 enum regulator_get_type get_type);
Mark Brown0cdfcc02013-09-11 13:15:40 +0100125#endif