blob: ceb233dd604840bd2370dbe3c0446a751f22fe6d [file] [log] [blame]
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -07001/*
2 * A simple sysfs interface for the generic PWM framework
3 *
4 * Copyright (C) 2013 H Hartley Sweeten <hsweeten@visionengravers.com>
5 *
6 * Based on previous work by Lars Poeschel <poeschel@lemonage.de>
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 as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <linux/device.h>
20#include <linux/mutex.h>
21#include <linux/err.h>
22#include <linux/slab.h>
23#include <linux/kdev_t.h>
24#include <linux/pwm.h>
25
26struct pwm_export {
27 struct device child;
28 struct pwm_device *pwm;
Boris BREZILLON459a25a2016-03-30 22:03:27 +020029 struct mutex lock;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070030};
31
32static struct pwm_export *child_to_pwm_export(struct device *child)
33{
34 return container_of(child, struct pwm_export, child);
35}
36
37static struct pwm_device *child_to_pwm_device(struct device *child)
38{
39 struct pwm_export *export = child_to_pwm_export(child);
40
41 return export->pwm;
42}
43
Olliver Schinagl65cdc692015-10-26 22:32:37 +010044static ssize_t period_show(struct device *child,
45 struct device_attribute *attr,
46 char *buf)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070047{
48 const struct pwm_device *pwm = child_to_pwm_device(child);
Boris Brezillon39100ce2016-04-14 21:17:43 +020049 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070050
Boris Brezillon39100ce2016-04-14 21:17:43 +020051 pwm_get_state(pwm, &state);
52
53 return sprintf(buf, "%u\n", state.period);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070054}
55
Olliver Schinagl65cdc692015-10-26 22:32:37 +010056static ssize_t period_store(struct device *child,
57 struct device_attribute *attr,
58 const char *buf, size_t size)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070059{
Boris BREZILLON459a25a2016-03-30 22:03:27 +020060 struct pwm_export *export = child_to_pwm_export(child);
61 struct pwm_device *pwm = export->pwm;
Boris Brezillon39100ce2016-04-14 21:17:43 +020062 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070063 unsigned int val;
64 int ret;
65
66 ret = kstrtouint(buf, 0, &val);
67 if (ret)
68 return ret;
69
Boris BREZILLON459a25a2016-03-30 22:03:27 +020070 mutex_lock(&export->lock);
Boris Brezillon39100ce2016-04-14 21:17:43 +020071 pwm_get_state(pwm, &state);
72 state.period = val;
73 ret = pwm_apply_state(pwm, &state);
Boris BREZILLON459a25a2016-03-30 22:03:27 +020074 mutex_unlock(&export->lock);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070075
76 return ret ? : size;
77}
78
Olliver Schinagl65cdc692015-10-26 22:32:37 +010079static ssize_t duty_cycle_show(struct device *child,
80 struct device_attribute *attr,
81 char *buf)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070082{
83 const struct pwm_device *pwm = child_to_pwm_device(child);
Boris Brezillon39100ce2016-04-14 21:17:43 +020084 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070085
Boris Brezillon39100ce2016-04-14 21:17:43 +020086 pwm_get_state(pwm, &state);
87
88 return sprintf(buf, "%u\n", state.duty_cycle);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070089}
90
Olliver Schinagl65cdc692015-10-26 22:32:37 +010091static ssize_t duty_cycle_store(struct device *child,
92 struct device_attribute *attr,
93 const char *buf, size_t size)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070094{
Boris BREZILLON459a25a2016-03-30 22:03:27 +020095 struct pwm_export *export = child_to_pwm_export(child);
96 struct pwm_device *pwm = export->pwm;
Boris Brezillon39100ce2016-04-14 21:17:43 +020097 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -070098 unsigned int val;
99 int ret;
100
101 ret = kstrtouint(buf, 0, &val);
102 if (ret)
103 return ret;
104
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200105 mutex_lock(&export->lock);
Boris Brezillon39100ce2016-04-14 21:17:43 +0200106 pwm_get_state(pwm, &state);
107 state.duty_cycle = val;
108 ret = pwm_apply_state(pwm, &state);
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200109 mutex_unlock(&export->lock);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700110
111 return ret ? : size;
112}
113
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100114static ssize_t enable_show(struct device *child,
115 struct device_attribute *attr,
116 char *buf)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700117{
118 const struct pwm_device *pwm = child_to_pwm_device(child);
Boris Brezillon39100ce2016-04-14 21:17:43 +0200119 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700120
Boris Brezillon39100ce2016-04-14 21:17:43 +0200121 pwm_get_state(pwm, &state);
122
123 return sprintf(buf, "%d\n", state.enabled);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700124}
125
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100126static ssize_t enable_store(struct device *child,
127 struct device_attribute *attr,
128 const char *buf, size_t size)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700129{
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200130 struct pwm_export *export = child_to_pwm_export(child);
131 struct pwm_device *pwm = export->pwm;
Boris Brezillon39100ce2016-04-14 21:17:43 +0200132 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700133 int val, ret;
134
135 ret = kstrtoint(buf, 0, &val);
136 if (ret)
137 return ret;
138
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200139 mutex_lock(&export->lock);
140
Boris Brezillon39100ce2016-04-14 21:17:43 +0200141 pwm_get_state(pwm, &state);
142
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700143 switch (val) {
144 case 0:
Boris Brezillon39100ce2016-04-14 21:17:43 +0200145 state.enabled = false;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700146 break;
147 case 1:
Boris Brezillon39100ce2016-04-14 21:17:43 +0200148 state.enabled = true;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700149 break;
150 default:
151 ret = -EINVAL;
Boris Brezillon39100ce2016-04-14 21:17:43 +0200152 goto unlock;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700153 }
154
Ryo Kodamafe5aa342016-06-08 10:58:23 +0900155 ret = pwm_apply_state(pwm, &state);
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200156
Boris Brezillon39100ce2016-04-14 21:17:43 +0200157unlock:
158 mutex_unlock(&export->lock);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700159 return ret ? : size;
160}
161
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100162static ssize_t polarity_show(struct device *child,
163 struct device_attribute *attr,
164 char *buf)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700165{
166 const struct pwm_device *pwm = child_to_pwm_device(child);
Thierry Reding5a063d82015-07-20 09:56:05 +0200167 const char *polarity = "unknown";
Boris Brezillon39100ce2016-04-14 21:17:43 +0200168 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700169
Boris Brezillon39100ce2016-04-14 21:17:43 +0200170 pwm_get_state(pwm, &state);
171
172 switch (state.polarity) {
Thierry Reding5a063d82015-07-20 09:56:05 +0200173 case PWM_POLARITY_NORMAL:
174 polarity = "normal";
175 break;
176
177 case PWM_POLARITY_INVERSED:
178 polarity = "inversed";
179 break;
180 }
181
182 return sprintf(buf, "%s\n", polarity);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700183}
184
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100185static ssize_t polarity_store(struct device *child,
186 struct device_attribute *attr,
187 const char *buf, size_t size)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700188{
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200189 struct pwm_export *export = child_to_pwm_export(child);
190 struct pwm_device *pwm = export->pwm;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700191 enum pwm_polarity polarity;
Boris Brezillon39100ce2016-04-14 21:17:43 +0200192 struct pwm_state state;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700193 int ret;
194
195 if (sysfs_streq(buf, "normal"))
196 polarity = PWM_POLARITY_NORMAL;
197 else if (sysfs_streq(buf, "inversed"))
198 polarity = PWM_POLARITY_INVERSED;
199 else
200 return -EINVAL;
201
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200202 mutex_lock(&export->lock);
Boris Brezillon39100ce2016-04-14 21:17:43 +0200203 pwm_get_state(pwm, &state);
204 state.polarity = polarity;
205 ret = pwm_apply_state(pwm, &state);
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200206 mutex_unlock(&export->lock);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700207
208 return ret ? : size;
209}
210
Lee Jones1a366fe2016-06-08 10:21:25 +0100211static ssize_t capture_show(struct device *child,
212 struct device_attribute *attr,
213 char *buf)
214{
215 struct pwm_device *pwm = child_to_pwm_device(child);
216 struct pwm_capture result;
217 int ret;
218
219 ret = pwm_capture(pwm, &result, jiffies_to_msecs(HZ));
220 if (ret)
221 return ret;
222
223 return sprintf(buf, "%u %u\n", result.period, result.duty_cycle);
224}
225
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100226static DEVICE_ATTR_RW(period);
227static DEVICE_ATTR_RW(duty_cycle);
228static DEVICE_ATTR_RW(enable);
229static DEVICE_ATTR_RW(polarity);
Lee Jones1a366fe2016-06-08 10:21:25 +0100230static DEVICE_ATTR_RO(capture);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700231
232static struct attribute *pwm_attrs[] = {
233 &dev_attr_period.attr,
234 &dev_attr_duty_cycle.attr,
235 &dev_attr_enable.attr,
236 &dev_attr_polarity.attr,
Lee Jones1a366fe2016-06-08 10:21:25 +0100237 &dev_attr_capture.attr,
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700238 NULL
239};
Axel Lin6ca142a2013-12-04 18:29:53 +0800240ATTRIBUTE_GROUPS(pwm);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700241
242static void pwm_export_release(struct device *child)
243{
244 struct pwm_export *export = child_to_pwm_export(child);
245
246 kfree(export);
247}
248
249static int pwm_export_child(struct device *parent, struct pwm_device *pwm)
250{
251 struct pwm_export *export;
Fabrice Gasnier552c02e2018-10-01 15:23:57 +0200252 char *pwm_prop[2];
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700253 int ret;
254
255 if (test_and_set_bit(PWMF_EXPORTED, &pwm->flags))
256 return -EBUSY;
257
258 export = kzalloc(sizeof(*export), GFP_KERNEL);
259 if (!export) {
260 clear_bit(PWMF_EXPORTED, &pwm->flags);
261 return -ENOMEM;
262 }
263
264 export->pwm = pwm;
Boris BREZILLON459a25a2016-03-30 22:03:27 +0200265 mutex_init(&export->lock);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700266
267 export->child.release = pwm_export_release;
268 export->child.parent = parent;
269 export->child.devt = MKDEV(0, 0);
Axel Lin6ca142a2013-12-04 18:29:53 +0800270 export->child.groups = pwm_groups;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700271 dev_set_name(&export->child, "pwm%u", pwm->hwpwm);
272
273 ret = device_register(&export->child);
274 if (ret) {
275 clear_bit(PWMF_EXPORTED, &pwm->flags);
Arvind Yadav8bbf5b42018-03-08 15:27:37 +0530276 put_device(&export->child);
277 export = NULL;
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700278 return ret;
279 }
Fabrice Gasnier552c02e2018-10-01 15:23:57 +0200280 pwm_prop[0] = kasprintf(GFP_KERNEL, "EXPORT=pwm%u", pwm->hwpwm);
281 pwm_prop[1] = NULL;
282 kobject_uevent_env(&parent->kobj, KOBJ_CHANGE, pwm_prop);
283 kfree(pwm_prop[0]);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700284
285 return 0;
286}
287
288static int pwm_unexport_match(struct device *child, void *data)
289{
290 return child_to_pwm_device(child) == data;
291}
292
293static int pwm_unexport_child(struct device *parent, struct pwm_device *pwm)
294{
295 struct device *child;
Fabrice Gasnier552c02e2018-10-01 15:23:57 +0200296 char *pwm_prop[2];
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700297
298 if (!test_and_clear_bit(PWMF_EXPORTED, &pwm->flags))
299 return -ENODEV;
300
301 child = device_find_child(parent, pwm, pwm_unexport_match);
302 if (!child)
303 return -ENODEV;
304
Fabrice Gasnier552c02e2018-10-01 15:23:57 +0200305 pwm_prop[0] = kasprintf(GFP_KERNEL, "UNEXPORT=pwm%u", pwm->hwpwm);
306 pwm_prop[1] = NULL;
307 kobject_uevent_env(&parent->kobj, KOBJ_CHANGE, pwm_prop);
308 kfree(pwm_prop[0]);
309
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700310 /* for device_find_child() */
311 put_device(child);
312 device_unregister(child);
313 pwm_put(pwm);
314
315 return 0;
316}
317
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100318static ssize_t export_store(struct device *parent,
319 struct device_attribute *attr,
320 const char *buf, size_t len)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700321{
322 struct pwm_chip *chip = dev_get_drvdata(parent);
323 struct pwm_device *pwm;
324 unsigned int hwpwm;
325 int ret;
326
327 ret = kstrtouint(buf, 0, &hwpwm);
328 if (ret < 0)
329 return ret;
330
331 if (hwpwm >= chip->npwm)
332 return -ENODEV;
333
334 pwm = pwm_request_from_chip(chip, hwpwm, "sysfs");
335 if (IS_ERR(pwm))
336 return PTR_ERR(pwm);
337
338 ret = pwm_export_child(parent, pwm);
339 if (ret < 0)
340 pwm_put(pwm);
341
342 return ret ? : len;
343}
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100344static DEVICE_ATTR_WO(export);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700345
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100346static ssize_t unexport_store(struct device *parent,
347 struct device_attribute *attr,
348 const char *buf, size_t len)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700349{
350 struct pwm_chip *chip = dev_get_drvdata(parent);
351 unsigned int hwpwm;
352 int ret;
353
354 ret = kstrtouint(buf, 0, &hwpwm);
355 if (ret < 0)
356 return ret;
357
358 if (hwpwm >= chip->npwm)
359 return -ENODEV;
360
361 ret = pwm_unexport_child(parent, &chip->pwms[hwpwm]);
362
363 return ret ? : len;
364}
Olliver Schinagl65cdc692015-10-26 22:32:37 +0100365static DEVICE_ATTR_WO(unexport);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700366
Greg Kroah-Hartman9da01752013-07-24 15:05:39 -0700367static ssize_t npwm_show(struct device *parent, struct device_attribute *attr,
368 char *buf)
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700369{
370 const struct pwm_chip *chip = dev_get_drvdata(parent);
371
372 return sprintf(buf, "%u\n", chip->npwm);
373}
Greg Kroah-Hartman9da01752013-07-24 15:05:39 -0700374static DEVICE_ATTR_RO(npwm);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700375
Greg Kroah-Hartman9da01752013-07-24 15:05:39 -0700376static struct attribute *pwm_chip_attrs[] = {
377 &dev_attr_export.attr,
378 &dev_attr_unexport.attr,
379 &dev_attr_npwm.attr,
380 NULL,
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700381};
Greg Kroah-Hartman9da01752013-07-24 15:05:39 -0700382ATTRIBUTE_GROUPS(pwm_chip);
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700383
384static struct class pwm_class = {
Thierry Reding412820d2015-07-20 09:58:09 +0200385 .name = "pwm",
386 .owner = THIS_MODULE,
387 .dev_groups = pwm_chip_groups,
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700388};
389
390static int pwmchip_sysfs_match(struct device *parent, const void *data)
391{
392 return dev_get_drvdata(parent) == data;
393}
394
395void pwmchip_sysfs_export(struct pwm_chip *chip)
396{
397 struct device *parent;
398
399 /*
400 * If device_create() fails the pwm_chip is still usable by
401 * the kernel its just not exported.
402 */
403 parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip,
404 "pwmchip%d", chip->base);
405 if (IS_ERR(parent)) {
406 dev_warn(chip->dev,
407 "device_create failed for pwm_chip sysfs export\n");
408 }
409}
410
411void pwmchip_sysfs_unexport(struct pwm_chip *chip)
412{
413 struct device *parent;
414
415 parent = class_find_device(&pwm_class, NULL, chip,
416 pwmchip_sysfs_match);
417 if (parent) {
418 /* for class_find_device() */
419 put_device(parent);
420 device_unregister(parent);
421 }
422}
423
David Hsu07334242016-08-09 14:57:46 -0700424void pwmchip_sysfs_unexport_children(struct pwm_chip *chip)
425{
426 struct device *parent;
427 unsigned int i;
428
429 parent = class_find_device(&pwm_class, NULL, chip,
430 pwmchip_sysfs_match);
431 if (!parent)
432 return;
433
434 for (i = 0; i < chip->npwm; i++) {
435 struct pwm_device *pwm = &chip->pwms[i];
436
437 if (test_bit(PWMF_EXPORTED, &pwm->flags))
438 pwm_unexport_child(parent, pwm);
439 }
Johan Hovold0e1614a2016-11-01 11:46:39 +0100440
441 put_device(parent);
David Hsu07334242016-08-09 14:57:46 -0700442}
443
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700444static int __init pwm_sysfs_init(void)
445{
446 return class_register(&pwm_class);
447}
448subsys_initcall(pwm_sysfs_init);