btrfs: scrub: use GFP_KERNEL on the submission path
[linux-2.6/btrfs-unstable.git] / drivers / pwm / sysfs.c
blob9c90886f41234153d044d24f94a9ae1e82efbd83
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;
31 static struct pwm_export *child_to_pwm_export(struct device *child)
33 return container_of(child, struct pwm_export, child);
36 static struct pwm_device *child_to_pwm_device(struct device *child)
38 struct pwm_export *export = child_to_pwm_export(child);
40 return export->pwm;
43 static ssize_t period_show(struct device *child,
44 struct device_attribute *attr,
45 char *buf)
47 const struct pwm_device *pwm = child_to_pwm_device(child);
49 return sprintf(buf, "%u\n", pwm_get_period(pwm));
52 static ssize_t period_store(struct device *child,
53 struct device_attribute *attr,
54 const char *buf, size_t size)
56 struct pwm_device *pwm = child_to_pwm_device(child);
57 unsigned int val;
58 int ret;
60 ret = kstrtouint(buf, 0, &val);
61 if (ret)
62 return ret;
64 ret = pwm_config(pwm, pwm_get_duty_cycle(pwm), val);
66 return ret ? : size;
69 static ssize_t duty_cycle_show(struct device *child,
70 struct device_attribute *attr,
71 char *buf)
73 const struct pwm_device *pwm = child_to_pwm_device(child);
75 return sprintf(buf, "%u\n", pwm_get_duty_cycle(pwm));
78 static ssize_t duty_cycle_store(struct device *child,
79 struct device_attribute *attr,
80 const char *buf, size_t size)
82 struct pwm_device *pwm = child_to_pwm_device(child);
83 unsigned int val;
84 int ret;
86 ret = kstrtouint(buf, 0, &val);
87 if (ret)
88 return ret;
90 ret = pwm_config(pwm, val, pwm_get_period(pwm));
92 return ret ? : size;
95 static ssize_t enable_show(struct device *child,
96 struct device_attribute *attr,
97 char *buf)
99 const struct pwm_device *pwm = child_to_pwm_device(child);
101 return sprintf(buf, "%d\n", pwm_is_enabled(pwm));
104 static ssize_t enable_store(struct device *child,
105 struct device_attribute *attr,
106 const char *buf, size_t size)
108 struct pwm_device *pwm = child_to_pwm_device(child);
109 int val, ret;
111 ret = kstrtoint(buf, 0, &val);
112 if (ret)
113 return ret;
115 switch (val) {
116 case 0:
117 pwm_disable(pwm);
118 break;
119 case 1:
120 ret = pwm_enable(pwm);
121 break;
122 default:
123 ret = -EINVAL;
124 break;
127 return ret ? : size;
130 static ssize_t polarity_show(struct device *child,
131 struct device_attribute *attr,
132 char *buf)
134 const struct pwm_device *pwm = child_to_pwm_device(child);
135 const char *polarity = "unknown";
137 switch (pwm_get_polarity(pwm)) {
138 case PWM_POLARITY_NORMAL:
139 polarity = "normal";
140 break;
142 case PWM_POLARITY_INVERSED:
143 polarity = "inversed";
144 break;
147 return sprintf(buf, "%s\n", polarity);
150 static ssize_t polarity_store(struct device *child,
151 struct device_attribute *attr,
152 const char *buf, size_t size)
154 struct pwm_device *pwm = child_to_pwm_device(child);
155 enum pwm_polarity polarity;
156 int ret;
158 if (sysfs_streq(buf, "normal"))
159 polarity = PWM_POLARITY_NORMAL;
160 else if (sysfs_streq(buf, "inversed"))
161 polarity = PWM_POLARITY_INVERSED;
162 else
163 return -EINVAL;
165 ret = pwm_set_polarity(pwm, polarity);
167 return ret ? : size;
170 static DEVICE_ATTR_RW(period);
171 static DEVICE_ATTR_RW(duty_cycle);
172 static DEVICE_ATTR_RW(enable);
173 static DEVICE_ATTR_RW(polarity);
175 static struct attribute *pwm_attrs[] = {
176 &dev_attr_period.attr,
177 &dev_attr_duty_cycle.attr,
178 &dev_attr_enable.attr,
179 &dev_attr_polarity.attr,
180 NULL
182 ATTRIBUTE_GROUPS(pwm);
184 static void pwm_export_release(struct device *child)
186 struct pwm_export *export = child_to_pwm_export(child);
188 kfree(export);
191 static int pwm_export_child(struct device *parent, struct pwm_device *pwm)
193 struct pwm_export *export;
194 int ret;
196 if (test_and_set_bit(PWMF_EXPORTED, &pwm->flags))
197 return -EBUSY;
199 export = kzalloc(sizeof(*export), GFP_KERNEL);
200 if (!export) {
201 clear_bit(PWMF_EXPORTED, &pwm->flags);
202 return -ENOMEM;
205 export->pwm = pwm;
207 export->child.release = pwm_export_release;
208 export->child.parent = parent;
209 export->child.devt = MKDEV(0, 0);
210 export->child.groups = pwm_groups;
211 dev_set_name(&export->child, "pwm%u", pwm->hwpwm);
213 ret = device_register(&export->child);
214 if (ret) {
215 clear_bit(PWMF_EXPORTED, &pwm->flags);
216 kfree(export);
217 return ret;
220 return 0;
223 static int pwm_unexport_match(struct device *child, void *data)
225 return child_to_pwm_device(child) == data;
228 static int pwm_unexport_child(struct device *parent, struct pwm_device *pwm)
230 struct device *child;
232 if (!test_and_clear_bit(PWMF_EXPORTED, &pwm->flags))
233 return -ENODEV;
235 child = device_find_child(parent, pwm, pwm_unexport_match);
236 if (!child)
237 return -ENODEV;
239 /* for device_find_child() */
240 put_device(child);
241 device_unregister(child);
242 pwm_put(pwm);
244 return 0;
247 static ssize_t export_store(struct device *parent,
248 struct device_attribute *attr,
249 const char *buf, size_t len)
251 struct pwm_chip *chip = dev_get_drvdata(parent);
252 struct pwm_device *pwm;
253 unsigned int hwpwm;
254 int ret;
256 ret = kstrtouint(buf, 0, &hwpwm);
257 if (ret < 0)
258 return ret;
260 if (hwpwm >= chip->npwm)
261 return -ENODEV;
263 pwm = pwm_request_from_chip(chip, hwpwm, "sysfs");
264 if (IS_ERR(pwm))
265 return PTR_ERR(pwm);
267 ret = pwm_export_child(parent, pwm);
268 if (ret < 0)
269 pwm_put(pwm);
271 return ret ? : len;
273 static DEVICE_ATTR_WO(export);
275 static ssize_t unexport_store(struct device *parent,
276 struct device_attribute *attr,
277 const char *buf, size_t len)
279 struct pwm_chip *chip = dev_get_drvdata(parent);
280 unsigned int hwpwm;
281 int ret;
283 ret = kstrtouint(buf, 0, &hwpwm);
284 if (ret < 0)
285 return ret;
287 if (hwpwm >= chip->npwm)
288 return -ENODEV;
290 ret = pwm_unexport_child(parent, &chip->pwms[hwpwm]);
292 return ret ? : len;
294 static DEVICE_ATTR_WO(unexport);
296 static ssize_t npwm_show(struct device *parent, struct device_attribute *attr,
297 char *buf)
299 const struct pwm_chip *chip = dev_get_drvdata(parent);
301 return sprintf(buf, "%u\n", chip->npwm);
303 static DEVICE_ATTR_RO(npwm);
305 static struct attribute *pwm_chip_attrs[] = {
306 &dev_attr_export.attr,
307 &dev_attr_unexport.attr,
308 &dev_attr_npwm.attr,
309 NULL,
311 ATTRIBUTE_GROUPS(pwm_chip);
313 static struct class pwm_class = {
314 .name = "pwm",
315 .owner = THIS_MODULE,
316 .dev_groups = pwm_chip_groups,
319 static int pwmchip_sysfs_match(struct device *parent, const void *data)
321 return dev_get_drvdata(parent) == data;
324 void pwmchip_sysfs_export(struct pwm_chip *chip)
326 struct device *parent;
329 * If device_create() fails the pwm_chip is still usable by
330 * the kernel its just not exported.
332 parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip,
333 "pwmchip%d", chip->base);
334 if (IS_ERR(parent)) {
335 dev_warn(chip->dev,
336 "device_create failed for pwm_chip sysfs export\n");
340 void pwmchip_sysfs_unexport(struct pwm_chip *chip)
342 struct device *parent;
344 parent = class_find_device(&pwm_class, NULL, chip,
345 pwmchip_sysfs_match);
346 if (parent) {
347 /* for class_find_device() */
348 put_device(parent);
349 device_unregister(parent);
353 static int __init pwm_sysfs_init(void)
355 return class_register(&pwm_class);
357 subsys_initcall(pwm_sysfs_init);