blob: 047cd5351a3bfe2c92b5e2cca10ff47a2f8e6ac4 [file] [log] [blame]
Russell King1a189b92008-04-13 21:41:55 +01001#ifndef __LINUX_PWM_H
2#define __LINUX_PWM_H
3
4struct pwm_device;
Thierry Reding62099ab2012-03-26 09:31:48 +02005struct seq_file;
Russell King1a189b92008-04-13 21:41:55 +01006
7/*
8 * pwm_request - request a PWM device
9 */
10struct pwm_device *pwm_request(int pwm_id, const char *label);
11
12/*
13 * pwm_free - free a PWM device
14 */
15void pwm_free(struct pwm_device *pwm);
16
17/*
18 * pwm_config - change a PWM device configuration
19 */
20int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns);
21
22/*
23 * pwm_enable - start a PWM output toggling
24 */
25int pwm_enable(struct pwm_device *pwm);
26
27/*
28 * pwm_disable - stop a PWM output toggling
29 */
30void pwm_disable(struct pwm_device *pwm);
31
Sascha Hauer0c2498f2011-01-28 09:40:40 +010032#ifdef CONFIG_PWM
33struct pwm_chip;
34
Thierry Redingf051c462011-12-14 11:12:23 +010035enum {
36 PWMF_REQUESTED = 1 << 0,
37 PWMF_ENABLED = 1 << 1,
38};
39
40struct pwm_device {
41 const char *label;
42 unsigned long flags;
43 unsigned int hwpwm;
44 unsigned int pwm;
45 struct pwm_chip *chip;
46 void *chip_data;
47
48 unsigned int period; /* in nanoseconds */
49};
50
51static inline void pwm_set_period(struct pwm_device *pwm, unsigned int period)
52{
53 if (pwm)
54 pwm->period = period;
55}
56
57static inline unsigned int pwm_get_period(struct pwm_device *pwm)
58{
59 return pwm ? pwm->period : 0;
60}
61
Sascha Hauer0c2498f2011-01-28 09:40:40 +010062/**
63 * struct pwm_ops - PWM controller operations
64 * @request: optional hook for requesting a PWM
65 * @free: optional hook for freeing a PWM
66 * @config: configure duty cycles and period length for this PWM
67 * @enable: enable PWM output toggling
68 * @disable: disable PWM output toggling
Thierry Reding62099ab2012-03-26 09:31:48 +020069 * @dbg_show: optional routine to show contents in debugfs
Sascha Hauer0c2498f2011-01-28 09:40:40 +010070 * @owner: helps prevent removal of modules exporting active PWMs
71 */
72struct pwm_ops {
Thierry Redingf051c462011-12-14 11:12:23 +010073 int (*request)(struct pwm_chip *chip,
74 struct pwm_device *pwm);
75 void (*free)(struct pwm_chip *chip,
76 struct pwm_device *pwm);
77 int (*config)(struct pwm_chip *chip,
78 struct pwm_device *pwm,
79 int duty_ns, int period_ns);
80 int (*enable)(struct pwm_chip *chip,
81 struct pwm_device *pwm);
82 void (*disable)(struct pwm_chip *chip,
83 struct pwm_device *pwm);
Thierry Reding62099ab2012-03-26 09:31:48 +020084#ifdef CONFIG_DEBUG_FS
85 void (*dbg_show)(struct pwm_chip *chip,
86 struct seq_file *s);
87#endif
Sascha Hauer0c2498f2011-01-28 09:40:40 +010088 struct module *owner;
89};
90
91/**
Thierry Redingf051c462011-12-14 11:12:23 +010092 * struct pwm_chip - abstract a PWM controller
93 * @dev: device providing the PWMs
94 * @list: list node for internal use
95 * @ops: callbacks for this PWM controller
96 * @base: number of first PWM controlled by this chip
97 * @npwm: number of PWMs controlled by this chip
98 * @pwms: array of PWM devices allocated by the framework
Sascha Hauer0c2498f2011-01-28 09:40:40 +010099 */
100struct pwm_chip {
Thierry Redingf051c462011-12-14 11:12:23 +0100101 struct device *dev;
102 struct list_head list;
103 const struct pwm_ops *ops;
104 int base;
105 unsigned int npwm;
106
107 struct pwm_device *pwms;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100108};
109
Thierry Redingf051c462011-12-14 11:12:23 +0100110int pwm_set_chip_data(struct pwm_device *pwm, void *data);
111void *pwm_get_chip_data(struct pwm_device *pwm);
112
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100113int pwmchip_add(struct pwm_chip *chip);
114int pwmchip_remove(struct pwm_chip *chip);
Thierry Redingf051c462011-12-14 11:12:23 +0100115struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
116 unsigned int index,
117 const char *label);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100118#endif
119
Mark Vels5243ef82009-01-18 18:42:45 +0100120#endif /* __LINUX_PWM_H */