Linux 4.19.133
[linux/fpc-iii.git] / drivers / pwm / sysfs.c
blob72bdda4ccebfd27d27a07205c6d4aa03299a567b
1 /*
2 * A simple sysfs interface for the generic PWM framework
4 * Copyright (C) 2013 H Hartley Sweeten <hsweeten@visionengravers.com>
6 * Based on previous work by Lars Poeschel <poeschel@lemonage.de>
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.
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.
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>
26 struct pwm_export {
27 struct device child;
28 struct pwm_device *pwm;
29 struct mutex lock;
32 static struct pwm_export *child_to_pwm_export(struct device *child)
34 return container_of(child, struct pwm_export, child);
37 static struct pwm_device *child_to_pwm_device(struct device *child)
39 struct pwm_export *export = child_to_pwm_export(child);
41 return export->pwm;
44 static ssize_t period_show(struct device *child,
45 struct device_attribute *attr,
46 char *buf)
48 const struct pwm_device *pwm = child_to_pwm_device(child);
49 struct pwm_state state;
51 pwm_get_state(pwm, &state);
53 return sprintf(buf, "%u\n", state.period);
56 static ssize_t period_store(struct device *child,
57 struct device_attribute *attr,
58 const char *buf, size_t size)
60 struct pwm_export *export = child_to_pwm_export(child);
61 struct pwm_device *pwm = export->pwm;
62 struct pwm_state state;
63 unsigned int val;
64 int ret;
66 ret = kstrtouint(buf, 0, &val);
67 if (ret)
68 return ret;
70 mutex_lock(&export->lock);
71 pwm_get_state(pwm, &state);
72 state.period = val;
73 ret = pwm_apply_state(pwm, &state);
74 mutex_unlock(&export->lock);
76 return ret ? : size;
79 static ssize_t duty_cycle_show(struct device *child,
80 struct device_attribute *attr,
81 char *buf)
83 const struct pwm_device *pwm = child_to_pwm_device(child);
84 struct pwm_state state;
86 pwm_get_state(pwm, &state);
88 return sprintf(buf, "%u\n", state.duty_cycle);
91 static ssize_t duty_cycle_store(struct device *child,
92 struct device_attribute *attr,
93 const char *buf, size_t size)
95 struct pwm_export *export = child_to_pwm_export(child);
96 struct pwm_device *pwm = export->pwm;
97 struct pwm_state state;
98 unsigned int val;
99 int ret;
101 ret = kstrtouint(buf, 0, &val);
102 if (ret)
103 return ret;
105 mutex_lock(&export->lock);
106 pwm_get_state(pwm, &state);
107 state.duty_cycle = val;
108 ret = pwm_apply_state(pwm, &state);
109 mutex_unlock(&export->lock);
111 return ret ? : size;
114 static ssize_t enable_show(struct device *child,
115 struct device_attribute *attr,
116 char *buf)
118 const struct pwm_device *pwm = child_to_pwm_device(child);
119 struct pwm_state state;
121 pwm_get_state(pwm, &state);
123 return sprintf(buf, "%d\n", state.enabled);
126 static ssize_t enable_store(struct device *child,
127 struct device_attribute *attr,
128 const char *buf, size_t size)
130 struct pwm_export *export = child_to_pwm_export(child);
131 struct pwm_device *pwm = export->pwm;
132 struct pwm_state state;
133 int val, ret;
135 ret = kstrtoint(buf, 0, &val);
136 if (ret)
137 return ret;
139 mutex_lock(&export->lock);
141 pwm_get_state(pwm, &state);
143 switch (val) {
144 case 0:
145 state.enabled = false;
146 break;
147 case 1:
148 state.enabled = true;
149 break;
150 default:
151 ret = -EINVAL;
152 goto unlock;
155 ret = pwm_apply_state(pwm, &state);
157 unlock:
158 mutex_unlock(&export->lock);
159 return ret ? : size;
162 static ssize_t polarity_show(struct device *child,
163 struct device_attribute *attr,
164 char *buf)
166 const struct pwm_device *pwm = child_to_pwm_device(child);
167 const char *polarity = "unknown";
168 struct pwm_state state;
170 pwm_get_state(pwm, &state);
172 switch (state.polarity) {
173 case PWM_POLARITY_NORMAL:
174 polarity = "normal";
175 break;
177 case PWM_POLARITY_INVERSED:
178 polarity = "inversed";
179 break;
182 return sprintf(buf, "%s\n", polarity);
185 static ssize_t polarity_store(struct device *child,
186 struct device_attribute *attr,
187 const char *buf, size_t size)
189 struct pwm_export *export = child_to_pwm_export(child);
190 struct pwm_device *pwm = export->pwm;
191 enum pwm_polarity polarity;
192 struct pwm_state state;
193 int ret;
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;
202 mutex_lock(&export->lock);
203 pwm_get_state(pwm, &state);
204 state.polarity = polarity;
205 ret = pwm_apply_state(pwm, &state);
206 mutex_unlock(&export->lock);
208 return ret ? : size;
211 static ssize_t capture_show(struct device *child,
212 struct device_attribute *attr,
213 char *buf)
215 struct pwm_device *pwm = child_to_pwm_device(child);
216 struct pwm_capture result;
217 int ret;
219 ret = pwm_capture(pwm, &result, jiffies_to_msecs(HZ));
220 if (ret)
221 return ret;
223 return sprintf(buf, "%u %u\n", result.period, result.duty_cycle);
226 static DEVICE_ATTR_RW(period);
227 static DEVICE_ATTR_RW(duty_cycle);
228 static DEVICE_ATTR_RW(enable);
229 static DEVICE_ATTR_RW(polarity);
230 static DEVICE_ATTR_RO(capture);
232 static 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,
237 &dev_attr_capture.attr,
238 NULL
240 ATTRIBUTE_GROUPS(pwm);
242 static void pwm_export_release(struct device *child)
244 struct pwm_export *export = child_to_pwm_export(child);
246 kfree(export);
249 static int pwm_export_child(struct device *parent, struct pwm_device *pwm)
251 struct pwm_export *export;
252 int ret;
254 if (test_and_set_bit(PWMF_EXPORTED, &pwm->flags))
255 return -EBUSY;
257 export = kzalloc(sizeof(*export), GFP_KERNEL);
258 if (!export) {
259 clear_bit(PWMF_EXPORTED, &pwm->flags);
260 return -ENOMEM;
263 export->pwm = pwm;
264 mutex_init(&export->lock);
266 export->child.release = pwm_export_release;
267 export->child.parent = parent;
268 export->child.devt = MKDEV(0, 0);
269 export->child.groups = pwm_groups;
270 dev_set_name(&export->child, "pwm%u", pwm->hwpwm);
272 ret = device_register(&export->child);
273 if (ret) {
274 clear_bit(PWMF_EXPORTED, &pwm->flags);
275 put_device(&export->child);
276 export = NULL;
277 return ret;
280 return 0;
283 static int pwm_unexport_match(struct device *child, void *data)
285 return child_to_pwm_device(child) == data;
288 static int pwm_unexport_child(struct device *parent, struct pwm_device *pwm)
290 struct device *child;
292 if (!test_and_clear_bit(PWMF_EXPORTED, &pwm->flags))
293 return -ENODEV;
295 child = device_find_child(parent, pwm, pwm_unexport_match);
296 if (!child)
297 return -ENODEV;
299 /* for device_find_child() */
300 put_device(child);
301 device_unregister(child);
302 pwm_put(pwm);
304 return 0;
307 static ssize_t export_store(struct device *parent,
308 struct device_attribute *attr,
309 const char *buf, size_t len)
311 struct pwm_chip *chip = dev_get_drvdata(parent);
312 struct pwm_device *pwm;
313 unsigned int hwpwm;
314 int ret;
316 ret = kstrtouint(buf, 0, &hwpwm);
317 if (ret < 0)
318 return ret;
320 if (hwpwm >= chip->npwm)
321 return -ENODEV;
323 pwm = pwm_request_from_chip(chip, hwpwm, "sysfs");
324 if (IS_ERR(pwm))
325 return PTR_ERR(pwm);
327 ret = pwm_export_child(parent, pwm);
328 if (ret < 0)
329 pwm_put(pwm);
331 return ret ? : len;
333 static DEVICE_ATTR_WO(export);
335 static ssize_t unexport_store(struct device *parent,
336 struct device_attribute *attr,
337 const char *buf, size_t len)
339 struct pwm_chip *chip = dev_get_drvdata(parent);
340 unsigned int hwpwm;
341 int ret;
343 ret = kstrtouint(buf, 0, &hwpwm);
344 if (ret < 0)
345 return ret;
347 if (hwpwm >= chip->npwm)
348 return -ENODEV;
350 ret = pwm_unexport_child(parent, &chip->pwms[hwpwm]);
352 return ret ? : len;
354 static DEVICE_ATTR_WO(unexport);
356 static ssize_t npwm_show(struct device *parent, struct device_attribute *attr,
357 char *buf)
359 const struct pwm_chip *chip = dev_get_drvdata(parent);
361 return sprintf(buf, "%u\n", chip->npwm);
363 static DEVICE_ATTR_RO(npwm);
365 static struct attribute *pwm_chip_attrs[] = {
366 &dev_attr_export.attr,
367 &dev_attr_unexport.attr,
368 &dev_attr_npwm.attr,
369 NULL,
371 ATTRIBUTE_GROUPS(pwm_chip);
373 static struct class pwm_class = {
374 .name = "pwm",
375 .owner = THIS_MODULE,
376 .dev_groups = pwm_chip_groups,
379 static int pwmchip_sysfs_match(struct device *parent, const void *data)
381 return dev_get_drvdata(parent) == data;
384 void pwmchip_sysfs_export(struct pwm_chip *chip)
386 struct device *parent;
389 * If device_create() fails the pwm_chip is still usable by
390 * the kernel its just not exported.
392 parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip,
393 "pwmchip%d", chip->base);
394 if (IS_ERR(parent)) {
395 dev_warn(chip->dev,
396 "device_create failed for pwm_chip sysfs export\n");
400 void pwmchip_sysfs_unexport(struct pwm_chip *chip)
402 struct device *parent;
403 unsigned int i;
405 parent = class_find_device(&pwm_class, NULL, chip,
406 pwmchip_sysfs_match);
407 if (!parent)
408 return;
410 for (i = 0; i < chip->npwm; i++) {
411 struct pwm_device *pwm = &chip->pwms[i];
413 if (test_bit(PWMF_EXPORTED, &pwm->flags))
414 pwm_unexport_child(parent, pwm);
417 put_device(parent);
418 device_unregister(parent);
421 static int __init pwm_sysfs_init(void)
423 return class_register(&pwm_class);
425 subsys_initcall(pwm_sysfs_init);