pwm-backlight: handle BL_CORE_FBBLANK state
[linux-2.6-block.git] / include / linux / pwm.h
CommitLineData
1a189b97
RK
1#ifndef __LINUX_PWM_H
2#define __LINUX_PWM_H
3
0bcf168b 4#include <linux/err.h>
7299ab70
TR
5#include <linux/of.h>
6
1a189b97 7struct pwm_device;
62099abf 8struct seq_file;
1a189b97 9
0bcf168b 10#if IS_ENABLED(CONFIG_PWM) || IS_ENABLED(CONFIG_HAVE_PWM)
1a189b97
RK
11/*
12 * pwm_request - request a PWM device
13 */
14struct pwm_device *pwm_request(int pwm_id, const char *label);
15
16/*
17 * pwm_free - free a PWM device
18 */
19void pwm_free(struct pwm_device *pwm);
20
21/*
22 * pwm_config - change a PWM device configuration
23 */
24int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns);
25
26/*
27 * pwm_enable - start a PWM output toggling
28 */
29int pwm_enable(struct pwm_device *pwm);
30
31/*
32 * pwm_disable - stop a PWM output toggling
33 */
34void pwm_disable(struct pwm_device *pwm);
0bcf168b
TB
35#else
36static inline struct pwm_device *pwm_request(int pwm_id, const char *label)
37{
38 return ERR_PTR(-ENODEV);
39}
40
41static inline void pwm_free(struct pwm_device *pwm)
42{
43}
44
45static inline int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
46{
47 return -EINVAL;
48}
49
50static inline int pwm_enable(struct pwm_device *pwm)
51{
52 return -EINVAL;
53}
54
55static inline void pwm_disable(struct pwm_device *pwm)
56{
57}
58#endif
1a189b97 59
0c2498f1
SH
60struct pwm_chip;
61
0aa0869c
PA
62/**
63 * enum pwm_polarity - polarity of a PWM signal
64 * @PWM_POLARITY_NORMAL: a high signal for the duration of the duty-
65 * cycle, followed by a low signal for the remainder of the pulse
66 * period
67 * @PWM_POLARITY_INVERSED: a low signal for the duration of the duty-
68 * cycle, followed by a high signal for the remainder of the pulse
69 * period
70 */
71enum pwm_polarity {
72 PWM_POLARITY_NORMAL,
73 PWM_POLARITY_INVERSED,
74};
75
f051c466
TR
76enum {
77 PWMF_REQUESTED = 1 << 0,
78 PWMF_ENABLED = 1 << 1,
79};
80
81struct pwm_device {
82 const char *label;
83 unsigned long flags;
84 unsigned int hwpwm;
85 unsigned int pwm;
86 struct pwm_chip *chip;
87 void *chip_data;
88
89 unsigned int period; /* in nanoseconds */
90};
91
92static inline void pwm_set_period(struct pwm_device *pwm, unsigned int period)
93{
94 if (pwm)
95 pwm->period = period;
96}
97
98static inline unsigned int pwm_get_period(struct pwm_device *pwm)
99{
100 return pwm ? pwm->period : 0;
101}
102
0aa0869c
PA
103/*
104 * pwm_set_polarity - configure the polarity of a PWM signal
105 */
106int pwm_set_polarity(struct pwm_device *pwm, enum pwm_polarity polarity);
107
0c2498f1
SH
108/**
109 * struct pwm_ops - PWM controller operations
110 * @request: optional hook for requesting a PWM
111 * @free: optional hook for freeing a PWM
112 * @config: configure duty cycles and period length for this PWM
0aa0869c 113 * @set_polarity: configure the polarity of this PWM
0c2498f1
SH
114 * @enable: enable PWM output toggling
115 * @disable: disable PWM output toggling
62099abf 116 * @dbg_show: optional routine to show contents in debugfs
0c2498f1
SH
117 * @owner: helps prevent removal of modules exporting active PWMs
118 */
119struct pwm_ops {
f051c466
TR
120 int (*request)(struct pwm_chip *chip,
121 struct pwm_device *pwm);
122 void (*free)(struct pwm_chip *chip,
123 struct pwm_device *pwm);
124 int (*config)(struct pwm_chip *chip,
125 struct pwm_device *pwm,
126 int duty_ns, int period_ns);
0aa0869c
PA
127 int (*set_polarity)(struct pwm_chip *chip,
128 struct pwm_device *pwm,
129 enum pwm_polarity polarity);
f051c466
TR
130 int (*enable)(struct pwm_chip *chip,
131 struct pwm_device *pwm);
132 void (*disable)(struct pwm_chip *chip,
133 struct pwm_device *pwm);
62099abf
TR
134#ifdef CONFIG_DEBUG_FS
135 void (*dbg_show)(struct pwm_chip *chip,
136 struct seq_file *s);
137#endif
0c2498f1
SH
138 struct module *owner;
139};
140
141/**
f051c466
TR
142 * struct pwm_chip - abstract a PWM controller
143 * @dev: device providing the PWMs
144 * @list: list node for internal use
145 * @ops: callbacks for this PWM controller
146 * @base: number of first PWM controlled by this chip
147 * @npwm: number of PWMs controlled by this chip
148 * @pwms: array of PWM devices allocated by the framework
0c2498f1
SH
149 */
150struct pwm_chip {
f051c466
TR
151 struct device *dev;
152 struct list_head list;
153 const struct pwm_ops *ops;
154 int base;
155 unsigned int npwm;
156
157 struct pwm_device *pwms;
7299ab70
TR
158
159 struct pwm_device * (*of_xlate)(struct pwm_chip *pc,
160 const struct of_phandle_args *args);
161 unsigned int of_pwm_n_cells;
0c2498f1
SH
162};
163
0bcf168b 164#if IS_ENABLED(CONFIG_PWM)
f051c466
TR
165int pwm_set_chip_data(struct pwm_device *pwm, void *data);
166void *pwm_get_chip_data(struct pwm_device *pwm);
167
0c2498f1
SH
168int pwmchip_add(struct pwm_chip *chip);
169int pwmchip_remove(struct pwm_chip *chip);
f051c466
TR
170struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
171 unsigned int index,
172 const char *label);
8138d2dd 173
83af2402
PA
174struct pwm_device *of_pwm_xlate_with_flags(struct pwm_chip *pc,
175 const struct of_phandle_args *args);
176
8138d2dd
TR
177struct pwm_device *pwm_get(struct device *dev, const char *consumer);
178void pwm_put(struct pwm_device *pwm);
179
6354316d
AC
180struct pwm_device *devm_pwm_get(struct device *dev, const char *consumer);
181void devm_pwm_put(struct device *dev, struct pwm_device *pwm);
0bcf168b
TB
182#else
183static inline int pwm_set_chip_data(struct pwm_device *pwm, void *data)
184{
185 return -EINVAL;
186}
187
188static inline void *pwm_get_chip_data(struct pwm_device *pwm)
189{
190 return NULL;
191}
192
193static inline int pwmchip_add(struct pwm_chip *chip)
194{
195 return -EINVAL;
196}
197
198static inline int pwmchip_remove(struct pwm_chip *chip)
199{
200 return -EINVAL;
201}
202
203static inline struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
204 unsigned int index,
205 const char *label)
206{
207 return ERR_PTR(-ENODEV);
208}
209
210static inline struct pwm_device *pwm_get(struct device *dev,
211 const char *consumer)
212{
213 return ERR_PTR(-ENODEV);
214}
215
216static inline void pwm_put(struct pwm_device *pwm)
217{
218}
219
220static inline struct pwm_device *devm_pwm_get(struct device *dev,
221 const char *consumer)
222{
223 return ERR_PTR(-ENODEV);
224}
225
226static inline void devm_pwm_put(struct device *dev, struct pwm_device *pwm)
227{
228}
229#endif
6354316d 230
8138d2dd
TR
231struct pwm_lookup {
232 struct list_head list;
233 const char *provider;
234 unsigned int index;
235 const char *dev_id;
236 const char *con_id;
237};
238
239#define PWM_LOOKUP(_provider, _index, _dev_id, _con_id) \
240 { \
241 .provider = _provider, \
242 .index = _index, \
243 .dev_id = _dev_id, \
244 .con_id = _con_id, \
245 }
246
0bcf168b 247#if IS_ENABLED(CONFIG_PWM)
8138d2dd 248void pwm_add_table(struct pwm_lookup *table, size_t num);
0bcf168b
TB
249#else
250static inline void pwm_add_table(struct pwm_lookup *table, size_t num)
251{
252}
0c2498f1
SH
253#endif
254
5243ef8b 255#endif /* __LINUX_PWM_H */