blob: b78d27c426290089b76546a8fc27d8b95f7216d0 [file] [log] [blame]
Russell King1a189b92008-04-13 21:41:55 +01001#ifndef __LINUX_PWM_H
2#define __LINUX_PWM_H
3
Tushar Behera0bcf1682012-09-12 15:31:46 +05304#include <linux/err.h>
Jonathan Richardsond1cd2142015-10-16 17:40:58 -07005#include <linux/mutex.h>
Thierry Reding7299ab72011-12-14 11:10:32 +01006#include <linux/of.h>
7
Russell King1a189b92008-04-13 21:41:55 +01008struct pwm_device;
Thierry Reding62099ab2012-03-26 09:31:48 +02009struct seq_file;
Russell King1a189b92008-04-13 21:41:55 +010010
Sascha Hauer557fe992014-01-24 08:54:16 +010011#if IS_ENABLED(CONFIG_PWM)
Russell King1a189b92008-04-13 21:41:55 +010012/*
13 * pwm_request - request a PWM device
14 */
15struct pwm_device *pwm_request(int pwm_id, const char *label);
16
17/*
18 * pwm_free - free a PWM device
19 */
20void pwm_free(struct pwm_device *pwm);
21
22/*
23 * pwm_config - change a PWM device configuration
24 */
25int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns);
26
27/*
28 * pwm_enable - start a PWM output toggling
29 */
30int pwm_enable(struct pwm_device *pwm);
31
32/*
33 * pwm_disable - stop a PWM output toggling
34 */
35void pwm_disable(struct pwm_device *pwm);
Tushar Behera0bcf1682012-09-12 15:31:46 +053036#else
37static inline struct pwm_device *pwm_request(int pwm_id, const char *label)
38{
39 return ERR_PTR(-ENODEV);
40}
Russell King1a189b92008-04-13 21:41:55 +010041
Tushar Behera0bcf1682012-09-12 15:31:46 +053042static inline void pwm_free(struct pwm_device *pwm)
43{
44}
45
46static inline int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
47{
48 return -EINVAL;
49}
50
51static inline int pwm_enable(struct pwm_device *pwm)
52{
53 return -EINVAL;
54}
55
56static inline void pwm_disable(struct pwm_device *pwm)
57{
58}
59#endif
60
Sascha Hauer0c2498f2011-01-28 09:40:40 +010061struct pwm_chip;
62
Philip, Avinash0aa0869c2012-07-24 19:35:32 +053063/**
64 * enum pwm_polarity - polarity of a PWM signal
65 * @PWM_POLARITY_NORMAL: a high signal for the duration of the duty-
66 * cycle, followed by a low signal for the remainder of the pulse
67 * period
68 * @PWM_POLARITY_INVERSED: a low signal for the duration of the duty-
69 * cycle, followed by a high signal for the remainder of the pulse
70 * period
71 */
72enum pwm_polarity {
73 PWM_POLARITY_NORMAL,
74 PWM_POLARITY_INVERSED,
75};
76
Boris Brezillone39c0df2016-04-14 21:17:21 +020077/**
78 * struct pwm_args - board-dependent PWM arguments
79 * @period: reference period
80 * @polarity: reference polarity
81 *
82 * This structure describes board-dependent arguments attached to a PWM
83 * device. These arguments are usually retrieved from the PWM lookup table or
84 * device tree.
85 *
86 * Do not confuse this with the PWM state: PWM arguments represent the initial
87 * configuration that users want to use on this PWM device rather than the
88 * current PWM hardware state.
89 */
90struct pwm_args {
91 unsigned int period;
92 enum pwm_polarity polarity;
93};
94
Thierry Redingf051c462011-12-14 11:12:23 +010095enum {
96 PWMF_REQUESTED = 1 << 0,
97 PWMF_ENABLED = 1 << 1,
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070098 PWMF_EXPORTED = 1 << 2,
Thierry Redingf051c462011-12-14 11:12:23 +010099};
100
Thierry Reding04883802015-07-27 11:58:32 +0200101/**
102 * struct pwm_device - PWM channel object
103 * @label: name of the PWM device
104 * @flags: flags associated with the PWM device
105 * @hwpwm: per-chip relative index of the PWM device
106 * @pwm: global index of the PWM device
107 * @chip: PWM chip providing this PWM device
108 * @chip_data: chip-private data associated with the PWM device
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700109 * @lock: used to serialize accesses to the PWM device where necessary
Thierry Reding04883802015-07-27 11:58:32 +0200110 * @period: period of the PWM signal (in nanoseconds)
111 * @duty_cycle: duty cycle of the PWM signal (in nanoseconds)
112 * @polarity: polarity of the PWM signal
Boris Brezillone39c0df2016-04-14 21:17:21 +0200113 * @args: PWM arguments
Thierry Reding04883802015-07-27 11:58:32 +0200114 */
Thierry Redingf051c462011-12-14 11:12:23 +0100115struct pwm_device {
Thierry Reding6bc70642015-07-27 11:57:28 +0200116 const char *label;
117 unsigned long flags;
118 unsigned int hwpwm;
119 unsigned int pwm;
120 struct pwm_chip *chip;
121 void *chip_data;
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700122 struct mutex lock;
Thierry Redingf051c462011-12-14 11:12:23 +0100123
Thierry Reding6bc70642015-07-27 11:57:28 +0200124 unsigned int period;
125 unsigned int duty_cycle;
126 enum pwm_polarity polarity;
Boris Brezillone39c0df2016-04-14 21:17:21 +0200127
128 struct pwm_args args;
Thierry Redingf051c462011-12-14 11:12:23 +0100129};
130
Boris Brezillon5c312522015-07-01 10:21:47 +0200131static inline bool pwm_is_enabled(const struct pwm_device *pwm)
132{
133 return test_bit(PWMF_ENABLED, &pwm->flags);
134}
135
Thierry Redingf051c462011-12-14 11:12:23 +0100136static inline void pwm_set_period(struct pwm_device *pwm, unsigned int period)
137{
138 if (pwm)
139 pwm->period = period;
140}
141
Boris Brezillona1cf4212015-07-01 10:21:48 +0200142static inline unsigned int pwm_get_period(const struct pwm_device *pwm)
Thierry Redingf051c462011-12-14 11:12:23 +0100143{
144 return pwm ? pwm->period : 0;
145}
146
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700147static inline void pwm_set_duty_cycle(struct pwm_device *pwm, unsigned int duty)
148{
149 if (pwm)
150 pwm->duty_cycle = duty;
151}
152
Boris Brezillona1cf4212015-07-01 10:21:48 +0200153static inline unsigned int pwm_get_duty_cycle(const struct pwm_device *pwm)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700154{
155 return pwm ? pwm->duty_cycle : 0;
156}
157
Philip, Avinash0aa0869c2012-07-24 19:35:32 +0530158/*
159 * pwm_set_polarity - configure the polarity of a PWM signal
160 */
161int pwm_set_polarity(struct pwm_device *pwm, enum pwm_polarity polarity);
162
Boris Brezillon011e7632015-07-01 10:21:49 +0200163static inline enum pwm_polarity pwm_get_polarity(const struct pwm_device *pwm)
164{
165 return pwm ? pwm->polarity : PWM_POLARITY_NORMAL;
166}
167
Boris Brezillone39c0df2016-04-14 21:17:21 +0200168static inline void pwm_get_args(const struct pwm_device *pwm,
169 struct pwm_args *args)
170{
171 *args = pwm->args;
172}
173
174static inline void pwm_apply_args(struct pwm_device *pwm)
175{
176 pwm_set_period(pwm, pwm->args.period);
177 pwm_set_polarity(pwm, pwm->args.polarity);
178}
179
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100180/**
181 * struct pwm_ops - PWM controller operations
182 * @request: optional hook for requesting a PWM
183 * @free: optional hook for freeing a PWM
184 * @config: configure duty cycles and period length for this PWM
Philip, Avinash0aa0869c2012-07-24 19:35:32 +0530185 * @set_polarity: configure the polarity of this PWM
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100186 * @enable: enable PWM output toggling
187 * @disable: disable PWM output toggling
Thierry Reding62099ab2012-03-26 09:31:48 +0200188 * @dbg_show: optional routine to show contents in debugfs
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100189 * @owner: helps prevent removal of modules exporting active PWMs
190 */
191struct pwm_ops {
Thierry Reding6bc70642015-07-27 11:57:28 +0200192 int (*request)(struct pwm_chip *chip, struct pwm_device *pwm);
193 void (*free)(struct pwm_chip *chip, struct pwm_device *pwm);
194 int (*config)(struct pwm_chip *chip, struct pwm_device *pwm,
195 int duty_ns, int period_ns);
196 int (*set_polarity)(struct pwm_chip *chip, struct pwm_device *pwm,
197 enum pwm_polarity polarity);
198 int (*enable)(struct pwm_chip *chip, struct pwm_device *pwm);
199 void (*disable)(struct pwm_chip *chip, struct pwm_device *pwm);
Thierry Reding62099ab2012-03-26 09:31:48 +0200200#ifdef CONFIG_DEBUG_FS
Thierry Reding6bc70642015-07-27 11:57:28 +0200201 void (*dbg_show)(struct pwm_chip *chip, struct seq_file *s);
Thierry Reding62099ab2012-03-26 09:31:48 +0200202#endif
Thierry Reding6bc70642015-07-27 11:57:28 +0200203 struct module *owner;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100204};
205
206/**
Thierry Redingf051c462011-12-14 11:12:23 +0100207 * struct pwm_chip - abstract a PWM controller
208 * @dev: device providing the PWMs
209 * @list: list node for internal use
210 * @ops: callbacks for this PWM controller
211 * @base: number of first PWM controlled by this chip
212 * @npwm: number of PWMs controlled by this chip
213 * @pwms: array of PWM devices allocated by the framework
Thierry Reding04883802015-07-27 11:58:32 +0200214 * @of_xlate: request a PWM device given a device tree PWM specifier
215 * @of_pwm_n_cells: number of cells expected in the device tree PWM specifier
Florian Vaussard6e69ab12013-01-28 15:00:57 +0100216 * @can_sleep: must be true if the .config(), .enable() or .disable()
217 * operations may sleep
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100218 */
219struct pwm_chip {
Thierry Reding6bc70642015-07-27 11:57:28 +0200220 struct device *dev;
221 struct list_head list;
222 const struct pwm_ops *ops;
223 int base;
224 unsigned int npwm;
Thierry Redingf051c462011-12-14 11:12:23 +0100225
Thierry Reding6bc70642015-07-27 11:57:28 +0200226 struct pwm_device *pwms;
Thierry Reding7299ab72011-12-14 11:10:32 +0100227
Thierry Reding6bc70642015-07-27 11:57:28 +0200228 struct pwm_device * (*of_xlate)(struct pwm_chip *pc,
229 const struct of_phandle_args *args);
230 unsigned int of_pwm_n_cells;
231 bool can_sleep;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100232};
233
Tushar Behera0bcf1682012-09-12 15:31:46 +0530234#if IS_ENABLED(CONFIG_PWM)
Thierry Redingf051c462011-12-14 11:12:23 +0100235int pwm_set_chip_data(struct pwm_device *pwm, void *data);
236void *pwm_get_chip_data(struct pwm_device *pwm);
237
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700238int pwmchip_add_with_polarity(struct pwm_chip *chip,
239 enum pwm_polarity polarity);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100240int pwmchip_add(struct pwm_chip *chip);
241int pwmchip_remove(struct pwm_chip *chip);
Thierry Redingf051c462011-12-14 11:12:23 +0100242struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
243 unsigned int index,
244 const char *label);
Thierry Reding8138d2d2012-03-26 08:42:48 +0200245
Philip, Avinash83af2402012-11-21 13:10:44 +0530246struct pwm_device *of_pwm_xlate_with_flags(struct pwm_chip *pc,
247 const struct of_phandle_args *args);
248
Peter Ujfalusid4c0c472012-12-21 01:43:57 -0800249struct pwm_device *pwm_get(struct device *dev, const char *con_id);
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800250struct pwm_device *of_pwm_get(struct device_node *np, const char *con_id);
Thierry Reding8138d2d2012-03-26 08:42:48 +0200251void pwm_put(struct pwm_device *pwm);
252
Peter Ujfalusid4c0c472012-12-21 01:43:57 -0800253struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id);
Peter Ujfalusi261a5ed2012-12-21 01:43:59 -0800254struct pwm_device *devm_of_pwm_get(struct device *dev, struct device_node *np,
255 const char *con_id);
Alexandre Courbot63543162012-08-01 19:20:58 +0900256void devm_pwm_put(struct device *dev, struct pwm_device *pwm);
Florian Vaussard6e69ab12013-01-28 15:00:57 +0100257
258bool pwm_can_sleep(struct pwm_device *pwm);
Tushar Behera0bcf1682012-09-12 15:31:46 +0530259#else
260static inline int pwm_set_chip_data(struct pwm_device *pwm, void *data)
261{
262 return -EINVAL;
263}
264
265static inline void *pwm_get_chip_data(struct pwm_device *pwm)
266{
267 return NULL;
268}
269
270static inline int pwmchip_add(struct pwm_chip *chip)
271{
272 return -EINVAL;
273}
274
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700275static inline int pwmchip_add_inversed(struct pwm_chip *chip)
276{
277 return -EINVAL;
278}
279
Tushar Behera0bcf1682012-09-12 15:31:46 +0530280static inline int pwmchip_remove(struct pwm_chip *chip)
281{
282 return -EINVAL;
283}
284
285static inline struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
286 unsigned int index,
287 const char *label)
288{
289 return ERR_PTR(-ENODEV);
290}
291
292static inline struct pwm_device *pwm_get(struct device *dev,
293 const char *consumer)
294{
295 return ERR_PTR(-ENODEV);
296}
297
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800298static inline struct pwm_device *of_pwm_get(struct device_node *np,
299 const char *con_id)
300{
301 return ERR_PTR(-ENODEV);
302}
303
Tushar Behera0bcf1682012-09-12 15:31:46 +0530304static inline void pwm_put(struct pwm_device *pwm)
305{
306}
307
308static inline struct pwm_device *devm_pwm_get(struct device *dev,
309 const char *consumer)
310{
311 return ERR_PTR(-ENODEV);
312}
313
Peter Ujfalusi261a5ed2012-12-21 01:43:59 -0800314static inline struct pwm_device *devm_of_pwm_get(struct device *dev,
315 struct device_node *np,
316 const char *con_id)
317{
318 return ERR_PTR(-ENODEV);
319}
320
Tushar Behera0bcf1682012-09-12 15:31:46 +0530321static inline void devm_pwm_put(struct device *dev, struct pwm_device *pwm)
322{
323}
Florian Vaussard6e69ab12013-01-28 15:00:57 +0100324
325static inline bool pwm_can_sleep(struct pwm_device *pwm)
326{
327 return false;
328}
Tushar Behera0bcf1682012-09-12 15:31:46 +0530329#endif
Alexandre Courbot63543162012-08-01 19:20:58 +0900330
Thierry Reding8138d2d2012-03-26 08:42:48 +0200331struct pwm_lookup {
332 struct list_head list;
333 const char *provider;
334 unsigned int index;
335 const char *dev_id;
336 const char *con_id;
Alexandre Belloni3796ce12014-05-19 22:42:32 +0200337 unsigned int period;
338 enum pwm_polarity polarity;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200339};
340
Alexandre Belloni42844022014-05-19 22:42:37 +0200341#define PWM_LOOKUP(_provider, _index, _dev_id, _con_id, _period, _polarity) \
Thierry Reding8138d2d2012-03-26 08:42:48 +0200342 { \
343 .provider = _provider, \
344 .index = _index, \
345 .dev_id = _dev_id, \
346 .con_id = _con_id, \
Alexandre Belloni42844022014-05-19 22:42:37 +0200347 .period = _period, \
348 .polarity = _polarity \
Thierry Reding8138d2d2012-03-26 08:42:48 +0200349 }
350
Tushar Behera0bcf1682012-09-12 15:31:46 +0530351#if IS_ENABLED(CONFIG_PWM)
Thierry Reding8138d2d2012-03-26 08:42:48 +0200352void pwm_add_table(struct pwm_lookup *table, size_t num);
Shobhit Kumarefb0de52015-05-05 15:04:18 +0530353void pwm_remove_table(struct pwm_lookup *table, size_t num);
Tushar Behera0bcf1682012-09-12 15:31:46 +0530354#else
355static inline void pwm_add_table(struct pwm_lookup *table, size_t num)
356{
357}
Shobhit Kumarefb0de52015-05-05 15:04:18 +0530358
359static inline void pwm_remove_table(struct pwm_lookup *table, size_t num)
360{
361}
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100362#endif
363
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700364#ifdef CONFIG_PWM_SYSFS
365void pwmchip_sysfs_export(struct pwm_chip *chip);
366void pwmchip_sysfs_unexport(struct pwm_chip *chip);
367#else
368static inline void pwmchip_sysfs_export(struct pwm_chip *chip)
369{
370}
371
372static inline void pwmchip_sysfs_unexport(struct pwm_chip *chip)
373{
374}
375#endif /* CONFIG_PWM_SYSFS */
376
Mark Vels5243ef82009-01-18 18:42:45 +0100377#endif /* __LINUX_PWM_H */