Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * driver.h -- SoC Regulator driver support.
4 *
5 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
6 *
7 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
8 *
9 * Regulator Driver Interface.
10 */
11
12#ifndef __LINUX_REGULATOR_DRIVER_H_
13#define __LINUX_REGULATOR_DRIVER_H_
14
15#include <linux/device.h>
16#include <linux/linear_range.h>
17#include <linux/notifier.h>
18#include <linux/regulator/consumer.h>
19#include <linux/ww_mutex.h>
20
21struct gpio_desc;
22struct regmap;
23struct regulator_dev;
24struct regulator_config;
25struct regulator_init_data;
26struct regulator_enable_gpio;
27
28enum regulator_status {
29 REGULATOR_STATUS_OFF,
30 REGULATOR_STATUS_ON,
31 REGULATOR_STATUS_ERROR,
32 /* fast/normal/idle/standby are flavors of "on" */
33 REGULATOR_STATUS_FAST,
34 REGULATOR_STATUS_NORMAL,
35 REGULATOR_STATUS_IDLE,
36 REGULATOR_STATUS_STANDBY,
37 /* The regulator is enabled but not regulating */
38 REGULATOR_STATUS_BYPASS,
39 /* in case that any other status doesn't apply */
40 REGULATOR_STATUS_UNDEFINED,
41};
42
43/* Initialize struct linear_range for regulators */
44#define REGULATOR_LINEAR_RANGE(_min_uV, _min_sel, _max_sel, _step_uV) \
45{ \
46 .min = _min_uV, \
47 .min_sel = _min_sel, \
48 .max_sel = _max_sel, \
49 .step = _step_uV, \
50}
51
52/**
53 * struct regulator_ops - regulator operations.
54 *
55 * @enable: Configure the regulator as enabled.
56 * @disable: Configure the regulator as disabled.
57 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
58 * May also return negative errno.
59 *
60 * @set_voltage: Set the voltage for the regulator within the range specified.
61 * The driver should select the voltage closest to min_uV.
62 * @set_voltage_sel: Set the voltage for the regulator using the specified
63 * selector.
64 * @map_voltage: Convert a voltage into a selector
65 * @get_voltage: Return the currently configured voltage for the regulator;
66 * return -ENOTRECOVERABLE if regulator can't be read at
67 * bootup and hasn't been set yet.
68 * @get_voltage_sel: Return the currently configured voltage selector for the
69 * regulator; return -ENOTRECOVERABLE if regulator can't
70 * be read at bootup and hasn't been set yet.
71 * @list_voltage: Return one of the supported voltages, in microvolts; zero
72 * if the selector indicates a voltage that is unusable on this system;
73 * or negative errno. Selectors range from zero to one less than
74 * regulator_desc.n_voltages. Voltages may be reported in any order.
75 *
76 * @set_current_limit: Configure a limit for a current-limited regulator.
77 * The driver should select the current closest to max_uA.
78 * @get_current_limit: Get the configured limit for a current-limited regulator.
79 * @set_input_current_limit: Configure an input limit.
80 *
81 * @set_over_current_protection: Support capability of automatically shutting
82 * down when detecting an over current event.
83 *
84 * @set_active_discharge: Set active discharge enable/disable of regulators.
85 *
86 * @set_mode: Set the configured operating mode for the regulator.
87 * @get_mode: Get the configured operating mode for the regulator.
88 * @get_error_flags: Get the current error(s) for the regulator.
89 * @get_status: Return actual (not as-configured) status of regulator, as a
90 * REGULATOR_STATUS value (or negative errno)
91 * @get_optimum_mode: Get the most efficient operating mode for the regulator
92 * when running with the specified parameters.
93 * @set_load: Set the load for the regulator.
94 *
95 * @set_bypass: Set the regulator in bypass mode.
96 * @get_bypass: Get the regulator bypass mode state.
97 *
98 * @enable_time: Time taken for the regulator voltage output voltage to
99 * stabilise after being enabled, in microseconds.
100 * @set_ramp_delay: Set the ramp delay for the regulator. The driver should
101 * select ramp delay equal to or less than(closest) ramp_delay.
102 * @set_voltage_time: Time taken for the regulator voltage output voltage
103 * to stabilise after being set to a new value, in microseconds.
104 * The function receives the from and to voltage as input, it
105 * should return the worst case.
106 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
107 * to stabilise after being set to a new value, in microseconds.
108 * The function receives the from and to voltage selector as
109 * input, it should return the worst case.
110 * @set_soft_start: Enable soft start for the regulator.
111 *
112 * @set_suspend_voltage: Set the voltage for the regulator when the system
113 * is suspended.
114 * @set_suspend_enable: Mark the regulator as enabled when the system is
115 * suspended.
116 * @set_suspend_disable: Mark the regulator as disabled when the system is
117 * suspended.
118 * @set_suspend_mode: Set the operating mode for the regulator when the
119 * system is suspended.
120 *
121 * @set_pull_down: Configure the regulator to pull down when the regulator
122 * is disabled.
123 *
124 * This struct describes regulator operations which can be implemented by
125 * regulator chip drivers.
126 */
127struct regulator_ops {
128
129 /* enumerate supported voltages */
130 int (*list_voltage) (struct regulator_dev *, unsigned selector);
131
132 /* get/set regulator voltage */
133 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
134 unsigned *selector);
135 int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
136 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
137 int (*get_voltage) (struct regulator_dev *);
138 int (*get_voltage_sel) (struct regulator_dev *);
139
140 /* get/set regulator current */
141 int (*set_current_limit) (struct regulator_dev *,
142 int min_uA, int max_uA);
143 int (*get_current_limit) (struct regulator_dev *);
144
145 int (*set_input_current_limit) (struct regulator_dev *, int lim_uA);
146 int (*set_over_current_protection) (struct regulator_dev *);
147 int (*set_active_discharge) (struct regulator_dev *, bool enable);
148
149 /* enable/disable regulator */
150 int (*enable) (struct regulator_dev *);
151 int (*disable) (struct regulator_dev *);
152 int (*is_enabled) (struct regulator_dev *);
153
154 /* get/set regulator operating mode (defined in consumer.h) */
155 int (*set_mode) (struct regulator_dev *, unsigned int mode);
156 unsigned int (*get_mode) (struct regulator_dev *);
157
158 /* retrieve current error flags on the regulator */
159 int (*get_error_flags)(struct regulator_dev *, unsigned int *flags);
160
161 /* Time taken to enable or set voltage on the regulator */
162 int (*enable_time) (struct regulator_dev *);
163 int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay);
164 int (*set_voltage_time) (struct regulator_dev *, int old_uV,
165 int new_uV);
166 int (*set_voltage_time_sel) (struct regulator_dev *,
167 unsigned int old_selector,
168 unsigned int new_selector);
169
170 int (*set_soft_start) (struct regulator_dev *);
171
172 /* report regulator status ... most other accessors report
173 * control inputs, this reports results of combining inputs
174 * from Linux (and other sources) with the actual load.
175 * returns REGULATOR_STATUS_* or negative errno.
176 */
177 int (*get_status)(struct regulator_dev *);
178
179 /* get most efficient regulator operating mode for load */
180 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
181 int output_uV, int load_uA);
182 /* set the load on the regulator */
183 int (*set_load)(struct regulator_dev *, int load_uA);
184
185 /* control and report on bypass mode */
186 int (*set_bypass)(struct regulator_dev *dev, bool enable);
187 int (*get_bypass)(struct regulator_dev *dev, bool *enable);
188
189 /* the operations below are for configuration of regulator state when
190 * its parent PMIC enters a global STANDBY/HIBERNATE state */
191
192 /* set regulator suspend voltage */
193 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
194
195 /* enable/disable regulator in suspend state */
196 int (*set_suspend_enable) (struct regulator_dev *);
197 int (*set_suspend_disable) (struct regulator_dev *);
198
199 /* set regulator suspend operating mode (defined in consumer.h) */
200 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
201
202 int (*resume)(struct regulator_dev *rdev);
203
204 int (*set_pull_down) (struct regulator_dev *);
205};
206
207/*
208 * Regulators can either control voltage or current.
209 */
210enum regulator_type {
211 REGULATOR_VOLTAGE,
212 REGULATOR_CURRENT,
213};
214
215/**
216 * struct regulator_desc - Static regulator descriptor
217 *
218 * Each regulator registered with the core is described with a
219 * structure of this type and a struct regulator_config. This
220 * structure contains the non-varying parts of the regulator
221 * description.
222 *
223 * @name: Identifying name for the regulator.
224 * @supply_name: Identifying the regulator supply
225 * @of_match: Name used to identify regulator in DT.
226 * @regulators_node: Name of node containing regulator definitions in DT.
227 * @of_parse_cb: Optional callback called only if of_match is present.
228 * Will be called for each regulator parsed from DT, during
229 * init_data parsing.
230 * The regulator_config passed as argument to the callback will
231 * be a copy of config passed to regulator_register, valid only
232 * for this particular call. Callback may freely change the
233 * config but it cannot store it for later usage.
234 * Callback should return 0 on success or negative ERRNO
235 * indicating failure.
236 * @id: Numerical identifier for the regulator.
237 * @ops: Regulator operations table.
238 * @irq: Interrupt number for the regulator.
239 * @type: Indicates if the regulator is a voltage or current regulator.
240 * @owner: Module providing the regulator, used for refcounting.
241 *
242 * @continuous_voltage_range: Indicates if the regulator can set any
243 * voltage within constrains range.
244 * @n_voltages: Number of selectors available for ops.list_voltage().
245 * @n_current_limits: Number of selectors available for current limits
246 *
247 * @min_uV: Voltage given by the lowest selector (if linear mapping)
248 * @uV_step: Voltage increase with each selector (if linear mapping)
249 * @linear_min_sel: Minimal selector for starting linear mapping
250 * @fixed_uV: Fixed voltage of rails.
251 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
252 * @min_dropout_uV: The minimum dropout voltage this regulator can handle
253 * @linear_ranges: A constant table of possible voltage ranges.
254 * @linear_range_selectors: A constant table of voltage range selectors.
255 * If pickable ranges are used each range must
256 * have corresponding selector here.
257 * @n_linear_ranges: Number of entries in the @linear_ranges (and in
258 * linear_range_selectors if used) table(s).
259 * @volt_table: Voltage mapping table (if table based mapping)
260 * @curr_table: Current limit mapping table (if table based mapping)
261 *
262 * @vsel_range_reg: Register for range selector when using pickable ranges
263 * and ``regulator_map_*_voltage_*_pickable`` functions.
264 * @vsel_range_mask: Mask for register bitfield used for range selector
265 * @vsel_reg: Register for selector when using ``regulator_map_*_voltage_*``
266 * @vsel_mask: Mask for register bitfield used for selector
267 * @vsel_step: Specify the resolution of selector stepping when setting
268 * voltage. If 0, then no stepping is done (requested selector is
269 * set directly), if >0 then the regulator API will ramp the
270 * voltage up/down gradually each time increasing/decreasing the
271 * selector by the specified step value.
272 * @csel_reg: Register for current limit selector using regmap set_current_limit
273 * @csel_mask: Mask for register bitfield used for current limit selector
274 * @apply_reg: Register for initiate voltage change on the output when
275 * using regulator_set_voltage_sel_regmap
276 * @apply_bit: Register bitfield used for initiate voltage change on the
277 * output when using regulator_set_voltage_sel_regmap
278 * @enable_reg: Register for control when using regmap enable/disable ops
279 * @enable_mask: Mask for control when using regmap enable/disable ops
280 * @enable_val: Enabling value for control when using regmap enable/disable ops
281 * @disable_val: Disabling value for control when using regmap enable/disable ops
282 * @enable_is_inverted: A flag to indicate set enable_mask bits to disable
283 * when using regulator_enable_regmap and friends APIs.
284 * @bypass_reg: Register for control when using regmap set_bypass
285 * @bypass_mask: Mask for control when using regmap set_bypass
286 * @bypass_val_on: Enabling value for control when using regmap set_bypass
287 * @bypass_val_off: Disabling value for control when using regmap set_bypass
288 * @active_discharge_off: Enabling value for control when using regmap
289 * set_active_discharge
290 * @active_discharge_on: Disabling value for control when using regmap
291 * set_active_discharge
292 * @active_discharge_mask: Mask for control when using regmap
293 * set_active_discharge
294 * @active_discharge_reg: Register for control when using regmap
295 * set_active_discharge
296 * @soft_start_reg: Register for control when using regmap set_soft_start
297 * @soft_start_mask: Mask for control when using regmap set_soft_start
298 * @soft_start_val_on: Enabling value for control when using regmap
299 * set_soft_start
300 * @pull_down_reg: Register for control when using regmap set_pull_down
301 * @pull_down_mask: Mask for control when using regmap set_pull_down
302 * @pull_down_val_on: Enabling value for control when using regmap
303 * set_pull_down
304 *
305 * @enable_time: Time taken for initial enable of regulator (in uS).
306 * @off_on_delay: guard time (in uS), before re-enabling a regulator
307 *
308 * @of_map_mode: Maps a hardware mode defined in a DeviceTree to a standard mode
309 */
310struct regulator_desc {
311 const char *name;
312 const char *supply_name;
313 const char *of_match;
314 const char *regulators_node;
315 int (*of_parse_cb)(struct device_node *,
316 const struct regulator_desc *,
317 struct regulator_config *);
318 int id;
319 unsigned int continuous_voltage_range:1;
320 unsigned n_voltages;
321 unsigned int n_current_limits;
322 const struct regulator_ops *ops;
323 int irq;
324 enum regulator_type type;
325 struct module *owner;
326
327 unsigned int min_uV;
328 unsigned int uV_step;
329 unsigned int linear_min_sel;
330 int fixed_uV;
331 unsigned int ramp_delay;
332 int min_dropout_uV;
333
334 const struct linear_range *linear_ranges;
335 const unsigned int *linear_range_selectors;
336
337 int n_linear_ranges;
338
339 const unsigned int *volt_table;
340 const unsigned int *curr_table;
341
342 unsigned int vsel_range_reg;
343 unsigned int vsel_range_mask;
344 unsigned int vsel_reg;
345 unsigned int vsel_mask;
346 unsigned int vsel_step;
347 unsigned int csel_reg;
348 unsigned int csel_mask;
349 unsigned int apply_reg;
350 unsigned int apply_bit;
351 unsigned int enable_reg;
352 unsigned int enable_mask;
353 unsigned int enable_val;
354 unsigned int disable_val;
355 bool enable_is_inverted;
356 unsigned int bypass_reg;
357 unsigned int bypass_mask;
358 unsigned int bypass_val_on;
359 unsigned int bypass_val_off;
360 unsigned int active_discharge_on;
361 unsigned int active_discharge_off;
362 unsigned int active_discharge_mask;
363 unsigned int active_discharge_reg;
364 unsigned int soft_start_reg;
365 unsigned int soft_start_mask;
366 unsigned int soft_start_val_on;
367 unsigned int pull_down_reg;
368 unsigned int pull_down_mask;
369 unsigned int pull_down_val_on;
370
371 unsigned int enable_time;
372
373 unsigned int off_on_delay;
374
375 unsigned int (*of_map_mode)(unsigned int mode);
376};
377
378/**
379 * struct regulator_config - Dynamic regulator descriptor
380 *
381 * Each regulator registered with the core is described with a
382 * structure of this type and a struct regulator_desc. This structure
383 * contains the runtime variable parts of the regulator description.
384 *
385 * @dev: struct device for the regulator
386 * @init_data: platform provided init data, passed through by driver
387 * @driver_data: private regulator data
388 * @of_node: OpenFirmware node to parse for device tree bindings (may be
389 * NULL).
390 * @regmap: regmap to use for core regmap helpers if dev_get_regmap() is
391 * insufficient.
392 * @ena_gpiod: GPIO controlling regulator enable.
393 */
394struct regulator_config {
395 struct device *dev;
396 const struct regulator_init_data *init_data;
397 void *driver_data;
398 struct device_node *of_node;
399 struct regmap *regmap;
400
401 struct gpio_desc *ena_gpiod;
402};
403
404/*
405 * struct coupling_desc
406 *
407 * Describes coupling of regulators. Each regulator should have
408 * at least a pointer to itself in coupled_rdevs array.
409 * When a new coupled regulator is resolved, n_resolved is
410 * incremented.
411 */
412struct coupling_desc {
413 struct regulator_dev **coupled_rdevs;
414 struct regulator_coupler *coupler;
415 int n_resolved;
416 int n_coupled;
417};
418
419/*
420 * struct regulator_dev
421 *
422 * Voltage / Current regulator class device. One for each
423 * regulator.
424 *
425 * This should *not* be used directly by anything except the regulator
426 * core and notification injection (which should take the mutex and do
427 * no other direct access).
428 */
429struct regulator_dev {
430 const struct regulator_desc *desc;
431 int exclusive;
432 u32 use_count;
433 u32 open_count;
434 u32 bypass_count;
435
436 /* lists we belong to */
437 struct list_head list; /* list of all regulators */
438
439 /* lists we own */
440 struct list_head consumer_list; /* consumers we supply */
441
442 struct coupling_desc coupling_desc;
443
444 struct blocking_notifier_head notifier;
445 struct ww_mutex mutex; /* consumer lock */
446 struct task_struct *mutex_owner;
447 int ref_cnt;
448 struct module *owner;
449 struct device dev;
450 struct regulation_constraints *constraints;
451 struct regulator *supply; /* for tree */
452 const char *supply_name;
453 struct regmap *regmap;
454
455 struct delayed_work disable_work;
456
457 void *reg_data; /* regulator_dev data */
458
459 struct dentry *debugfs;
460
461 struct regulator_enable_gpio *ena_pin;
462 unsigned int ena_gpio_state:1;
463
464 unsigned int is_switch:1;
465
466 /* time when this regulator was disabled last time */
467 unsigned long last_off_jiffy;
468};
469
470struct regulator_dev *
471regulator_register(const struct regulator_desc *regulator_desc,
472 const struct regulator_config *config);
473struct regulator_dev *
474devm_regulator_register(struct device *dev,
475 const struct regulator_desc *regulator_desc,
476 const struct regulator_config *config);
477void regulator_unregister(struct regulator_dev *rdev);
478void devm_regulator_unregister(struct device *dev, struct regulator_dev *rdev);
479
480int regulator_notifier_call_chain(struct regulator_dev *rdev,
481 unsigned long event, void *data);
482
483void *rdev_get_drvdata(struct regulator_dev *rdev);
484struct device *rdev_get_dev(struct regulator_dev *rdev);
485struct regmap *rdev_get_regmap(struct regulator_dev *rdev);
486int rdev_get_id(struct regulator_dev *rdev);
487
488int regulator_mode_to_status(unsigned int);
489
490int regulator_list_voltage_linear(struct regulator_dev *rdev,
491 unsigned int selector);
492int regulator_list_voltage_pickable_linear_range(struct regulator_dev *rdev,
493 unsigned int selector);
494int regulator_list_voltage_linear_range(struct regulator_dev *rdev,
495 unsigned int selector);
496int regulator_list_voltage_table(struct regulator_dev *rdev,
497 unsigned int selector);
498int regulator_map_voltage_linear(struct regulator_dev *rdev,
499 int min_uV, int max_uV);
500int regulator_map_voltage_pickable_linear_range(struct regulator_dev *rdev,
501 int min_uV, int max_uV);
502int regulator_map_voltage_linear_range(struct regulator_dev *rdev,
503 int min_uV, int max_uV);
504int regulator_map_voltage_iterate(struct regulator_dev *rdev,
505 int min_uV, int max_uV);
506int regulator_map_voltage_ascend(struct regulator_dev *rdev,
507 int min_uV, int max_uV);
508int regulator_get_voltage_sel_pickable_regmap(struct regulator_dev *rdev);
509int regulator_set_voltage_sel_pickable_regmap(struct regulator_dev *rdev,
510 unsigned int sel);
511int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
512int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
513int regulator_is_enabled_regmap(struct regulator_dev *rdev);
514int regulator_enable_regmap(struct regulator_dev *rdev);
515int regulator_disable_regmap(struct regulator_dev *rdev);
516int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
517 unsigned int old_selector,
518 unsigned int new_selector);
519int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable);
520int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable);
521int regulator_set_soft_start_regmap(struct regulator_dev *rdev);
522int regulator_set_pull_down_regmap(struct regulator_dev *rdev);
523
524int regulator_set_active_discharge_regmap(struct regulator_dev *rdev,
525 bool enable);
526int regulator_set_current_limit_regmap(struct regulator_dev *rdev,
527 int min_uA, int max_uA);
528int regulator_get_current_limit_regmap(struct regulator_dev *rdev);
529void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
530
531void regulator_lock(struct regulator_dev *rdev);
532void regulator_unlock(struct regulator_dev *rdev);
533
534/*
535 * Helper functions intended to be used by regulator drivers prior registering
536 * their regulators.
537 */
538int regulator_desc_list_voltage_linear_range(const struct regulator_desc *desc,
539 unsigned int selector);
540
541#endif