blob: 2254ad93b7840b044a78cdb237094476fa98d3b4 [file] [log] [blame]
Liam Girdwood571a3542008-04-30 15:42:28 +01001/*
2 * driver.h -- SoC Regulator driver support.
3 *
4 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
5 *
6 * Author: Liam Girdwood <lg@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Regulator Driver Interface.
13 */
14
15#ifndef __LINUX_REGULATOR_DRIVER_H_
16#define __LINUX_REGULATOR_DRIVER_H_
17
18#include <linux/device.h>
19#include <linux/regulator/consumer.h>
20
Liam Girdwood571a3542008-04-30 15:42:28 +010021struct regulator_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +010022struct regulator_init_data;
Liam Girdwood571a3542008-04-30 15:42:28 +010023
David Brownell853116a2009-01-14 23:03:17 -080024enum regulator_status {
25 REGULATOR_STATUS_OFF,
26 REGULATOR_STATUS_ON,
27 REGULATOR_STATUS_ERROR,
28 /* fast/normal/idle/standby are flavors of "on" */
29 REGULATOR_STATUS_FAST,
30 REGULATOR_STATUS_NORMAL,
31 REGULATOR_STATUS_IDLE,
32 REGULATOR_STATUS_STANDBY,
33};
34
Liam Girdwood571a3542008-04-30 15:42:28 +010035/**
36 * struct regulator_ops - regulator operations.
37 *
Mark Brownc8e7e462008-12-31 12:52:42 +000038 * This struct describes regulator operations which can be implemented by
39 * regulator chip drivers.
40 *
41 * @enable: Enable the regulator.
42 * @disable: Disable the regulator.
Randy Dunlap0ba48872009-01-08 11:50:23 -080043 * @is_enabled: Return 1 if the regulator is enabled, 0 otherwise.
Mark Brownc8e7e462008-12-31 12:52:42 +000044 *
45 * @set_voltage: Set the voltage for the regulator within the range specified.
46 * The driver should select the voltage closest to min_uV.
47 * @get_voltage: Return the currently configured voltage for the regulator.
48 *
Mark Brownc8e7e462008-12-31 12:52:42 +000049 * @set_current_limit: Configure a limit for a current-limited regulator.
50 * @get_current_limit: Get the limit for a current-limited regulator.
51 *
52 * @set_mode: Set the operating mode for the regulator.
53 * @get_mode: Get the current operating mode for the regulator.
54 * @get_optimum_mode: Get the most efficient operating mode for the regulator
55 * when running with the specified parameters.
56 *
57 * @set_suspend_voltage: Set the voltage for the regulator when the system
58 * is suspended.
59 * @set_suspend_enable: Mark the regulator as enabled when the system is
60 * suspended.
61 * @set_suspend_disable: Mark the regulator as disabled when the system is
62 * suspended.
63 * @set_suspend_mode: Set the operating mode for the regulator when the
64 * system is suspended.
Liam Girdwood571a3542008-04-30 15:42:28 +010065 */
66struct regulator_ops {
67
68 /* get/set regulator voltage */
69 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV);
70 int (*get_voltage) (struct regulator_dev *);
71
72 /* get/set regulator current */
73 int (*set_current_limit) (struct regulator_dev *,
74 int min_uA, int max_uA);
75 int (*get_current_limit) (struct regulator_dev *);
76
77 /* enable/disable regulator */
78 int (*enable) (struct regulator_dev *);
79 int (*disable) (struct regulator_dev *);
80 int (*is_enabled) (struct regulator_dev *);
81
82 /* get/set regulator operating mode (defined in regulator.h) */
83 int (*set_mode) (struct regulator_dev *, unsigned int mode);
84 unsigned int (*get_mode) (struct regulator_dev *);
85
David Brownell853116a2009-01-14 23:03:17 -080086 /* report regulator status ... most other accessors report
87 * control inputs, this reports results of combining inputs
88 * from Linux (and other sources) with the actual load.
89 */
90 int (*get_status)(struct regulator_dev *);
91
Liam Girdwood571a3542008-04-30 15:42:28 +010092 /* get most efficient regulator operating mode for load */
93 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
94 int output_uV, int load_uA);
95
96 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +010097 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +010098
99 /* set regulator suspend voltage */
100 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
101
102 /* enable/disable regulator in suspend state */
103 int (*set_suspend_enable) (struct regulator_dev *);
104 int (*set_suspend_disable) (struct regulator_dev *);
105
106 /* set regulator suspend operating mode (defined in regulator.h) */
107 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
108};
109
110/*
111 * Regulators can either control voltage or current.
112 */
113enum regulator_type {
114 REGULATOR_VOLTAGE,
115 REGULATOR_CURRENT,
116};
117
118/**
119 * struct regulator_desc - Regulator descriptor
120 *
Mark Brownc8e7e462008-12-31 12:52:42 +0000121 * Each regulator registered with the core is described with a structure of
122 * this type.
123 *
124 * @name: Identifying name for the regulator.
125 * @id: Numerical identifier for the regulator.
126 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800127 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000128 * @type: Indicates if the regulator is a voltage or current regulator.
129 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100130 */
131struct regulator_desc {
132 const char *name;
133 int id;
134 struct regulator_ops *ops;
135 int irq;
136 enum regulator_type type;
137 struct module *owner;
138};
139
Liam Girdwood571a3542008-04-30 15:42:28 +0100140struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brown05271002009-01-19 13:37:02 +0000141 struct device *dev, struct regulator_init_data *init_data,
142 void *driver_data);
Liam Girdwood571a3542008-04-30 15:42:28 +0100143void regulator_unregister(struct regulator_dev *rdev);
144
145int regulator_notifier_call_chain(struct regulator_dev *rdev,
146 unsigned long event, void *data);
147
148void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100149struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100150int rdev_get_id(struct regulator_dev *rdev);
151
Liam Girdwooda5766f12008-10-10 13:22:20 +0100152void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
153
Liam Girdwood571a3542008-04-30 15:42:28 +0100154#endif