H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 26 | struct pwm_export { |
| 27 | struct device child; |
| 28 | struct pwm_device *pwm; |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 29 | struct mutex lock; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | static struct pwm_export *child_to_pwm_export(struct device *child) |
| 33 | { |
| 34 | return container_of(child, struct pwm_export, child); |
| 35 | } |
| 36 | |
| 37 | static 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 Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 44 | static ssize_t period_show(struct device *child, |
| 45 | struct device_attribute *attr, |
| 46 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 47 | { |
| 48 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 49 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 50 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 51 | pwm_get_state(pwm, &state); |
| 52 | |
| 53 | return sprintf(buf, "%u\n", state.period); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 56 | static ssize_t period_store(struct device *child, |
| 57 | struct device_attribute *attr, |
| 58 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 59 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 60 | struct pwm_export *export = child_to_pwm_export(child); |
| 61 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 62 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 63 | unsigned int val; |
| 64 | int ret; |
| 65 | |
| 66 | ret = kstrtouint(buf, 0, &val); |
| 67 | if (ret) |
| 68 | return ret; |
| 69 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 70 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 71 | pwm_get_state(pwm, &state); |
| 72 | state.period = val; |
| 73 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 74 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 75 | |
| 76 | return ret ? : size; |
| 77 | } |
| 78 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 79 | static ssize_t duty_cycle_show(struct device *child, |
| 80 | struct device_attribute *attr, |
| 81 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 82 | { |
| 83 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 84 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 85 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 86 | pwm_get_state(pwm, &state); |
| 87 | |
| 88 | return sprintf(buf, "%u\n", state.duty_cycle); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 91 | static ssize_t duty_cycle_store(struct device *child, |
| 92 | struct device_attribute *attr, |
| 93 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 94 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 95 | struct pwm_export *export = child_to_pwm_export(child); |
| 96 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 97 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 98 | unsigned int val; |
| 99 | int ret; |
| 100 | |
| 101 | ret = kstrtouint(buf, 0, &val); |
| 102 | if (ret) |
| 103 | return ret; |
| 104 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 105 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 106 | pwm_get_state(pwm, &state); |
| 107 | state.duty_cycle = val; |
| 108 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 109 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 110 | |
| 111 | return ret ? : size; |
| 112 | } |
| 113 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 114 | static ssize_t enable_show(struct device *child, |
| 115 | struct device_attribute *attr, |
| 116 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 117 | { |
| 118 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 119 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 120 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 121 | pwm_get_state(pwm, &state); |
| 122 | |
| 123 | return sprintf(buf, "%d\n", state.enabled); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 126 | static ssize_t enable_store(struct device *child, |
| 127 | struct device_attribute *attr, |
| 128 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 129 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 130 | struct pwm_export *export = child_to_pwm_export(child); |
| 131 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 132 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 133 | int val, ret; |
| 134 | |
| 135 | ret = kstrtoint(buf, 0, &val); |
| 136 | if (ret) |
| 137 | return ret; |
| 138 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 139 | mutex_lock(&export->lock); |
| 140 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 141 | pwm_get_state(pwm, &state); |
| 142 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 143 | switch (val) { |
| 144 | case 0: |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 145 | state.enabled = false; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 146 | break; |
| 147 | case 1: |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 148 | state.enabled = true; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 149 | break; |
| 150 | default: |
| 151 | ret = -EINVAL; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 152 | goto unlock; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Ryo Kodama | fe5aa34 | 2016-06-08 10:58:23 +0900 | [diff] [blame] | 155 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 156 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 157 | unlock: |
| 158 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 159 | return ret ? : size; |
| 160 | } |
| 161 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 162 | static ssize_t polarity_show(struct device *child, |
| 163 | struct device_attribute *attr, |
| 164 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 165 | { |
| 166 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Thierry Reding | 5a063d8 | 2015-07-20 09:56:05 +0200 | [diff] [blame] | 167 | const char *polarity = "unknown"; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 168 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 169 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 170 | pwm_get_state(pwm, &state); |
| 171 | |
| 172 | switch (state.polarity) { |
Thierry Reding | 5a063d8 | 2015-07-20 09:56:05 +0200 | [diff] [blame] | 173 | 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 Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 185 | static ssize_t polarity_store(struct device *child, |
| 186 | struct device_attribute *attr, |
| 187 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 188 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 189 | struct pwm_export *export = child_to_pwm_export(child); |
| 190 | struct pwm_device *pwm = export->pwm; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 191 | enum pwm_polarity polarity; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 192 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 193 | 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 BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 202 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 203 | pwm_get_state(pwm, &state); |
| 204 | state.polarity = polarity; |
| 205 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 206 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 207 | |
| 208 | return ret ? : size; |
| 209 | } |
| 210 | |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 211 | static 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 | |
Fenglin Wu | ccee0bb | 2017-12-04 09:56:51 +0800 | [diff] [blame^] | 226 | static ssize_t output_type_show(struct device *child, |
| 227 | struct device_attribute *attr, |
| 228 | char *buf) |
| 229 | { |
| 230 | const struct pwm_device *pwm = child_to_pwm_device(child); |
| 231 | const char *output_type = "unknown"; |
| 232 | struct pwm_state state; |
| 233 | |
| 234 | pwm_get_state(pwm, &state); |
| 235 | switch (state.output_type) { |
| 236 | case PWM_OUTPUT_FIXED: |
| 237 | output_type = "fixed"; |
| 238 | break; |
| 239 | case PWM_OUTPUT_MODULATED: |
| 240 | output_type = "modulated"; |
| 241 | break; |
| 242 | default: |
| 243 | break; |
| 244 | } |
| 245 | |
| 246 | return snprintf(buf, PAGE_SIZE, "%s\n", output_type); |
| 247 | } |
| 248 | |
| 249 | static ssize_t output_type_store(struct device *child, |
| 250 | struct device_attribute *attr, |
| 251 | const char *buf, size_t size) |
| 252 | { |
| 253 | struct pwm_export *export = child_to_pwm_export(child); |
| 254 | struct pwm_device *pwm = export->pwm; |
| 255 | struct pwm_state state; |
| 256 | int ret = -EINVAL; |
| 257 | |
| 258 | mutex_lock(&export->lock); |
| 259 | pwm_get_state(pwm, &state); |
| 260 | if (sysfs_streq(buf, "fixed")) |
| 261 | state.output_type = PWM_OUTPUT_FIXED; |
| 262 | else if (sysfs_streq(buf, "modulated")) |
| 263 | state.output_type = PWM_OUTPUT_MODULATED; |
| 264 | else |
| 265 | goto unlock; |
| 266 | |
| 267 | ret = pwm_apply_state(pwm, &state); |
| 268 | unlock: |
| 269 | mutex_unlock(&export->lock); |
| 270 | |
| 271 | return ret ? : size; |
| 272 | } |
| 273 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 274 | static DEVICE_ATTR_RW(period); |
| 275 | static DEVICE_ATTR_RW(duty_cycle); |
| 276 | static DEVICE_ATTR_RW(enable); |
| 277 | static DEVICE_ATTR_RW(polarity); |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 278 | static DEVICE_ATTR_RO(capture); |
Fenglin Wu | ccee0bb | 2017-12-04 09:56:51 +0800 | [diff] [blame^] | 279 | static DEVICE_ATTR_RW(output_type); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 280 | |
| 281 | static struct attribute *pwm_attrs[] = { |
| 282 | &dev_attr_period.attr, |
| 283 | &dev_attr_duty_cycle.attr, |
| 284 | &dev_attr_enable.attr, |
| 285 | &dev_attr_polarity.attr, |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 286 | &dev_attr_capture.attr, |
Fenglin Wu | ccee0bb | 2017-12-04 09:56:51 +0800 | [diff] [blame^] | 287 | &dev_attr_output_type.attr, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 288 | NULL |
| 289 | }; |
Axel Lin | 6ca142a | 2013-12-04 18:29:53 +0800 | [diff] [blame] | 290 | ATTRIBUTE_GROUPS(pwm); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 291 | |
| 292 | static void pwm_export_release(struct device *child) |
| 293 | { |
| 294 | struct pwm_export *export = child_to_pwm_export(child); |
| 295 | |
| 296 | kfree(export); |
| 297 | } |
| 298 | |
| 299 | static int pwm_export_child(struct device *parent, struct pwm_device *pwm) |
| 300 | { |
| 301 | struct pwm_export *export; |
| 302 | int ret; |
| 303 | |
| 304 | if (test_and_set_bit(PWMF_EXPORTED, &pwm->flags)) |
| 305 | return -EBUSY; |
| 306 | |
| 307 | export = kzalloc(sizeof(*export), GFP_KERNEL); |
| 308 | if (!export) { |
| 309 | clear_bit(PWMF_EXPORTED, &pwm->flags); |
| 310 | return -ENOMEM; |
| 311 | } |
| 312 | |
| 313 | export->pwm = pwm; |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 314 | mutex_init(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 315 | |
| 316 | export->child.release = pwm_export_release; |
| 317 | export->child.parent = parent; |
| 318 | export->child.devt = MKDEV(0, 0); |
Axel Lin | 6ca142a | 2013-12-04 18:29:53 +0800 | [diff] [blame] | 319 | export->child.groups = pwm_groups; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 320 | dev_set_name(&export->child, "pwm%u", pwm->hwpwm); |
| 321 | |
| 322 | ret = device_register(&export->child); |
| 323 | if (ret) { |
| 324 | clear_bit(PWMF_EXPORTED, &pwm->flags); |
| 325 | kfree(export); |
| 326 | return ret; |
| 327 | } |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | static int pwm_unexport_match(struct device *child, void *data) |
| 333 | { |
| 334 | return child_to_pwm_device(child) == data; |
| 335 | } |
| 336 | |
| 337 | static int pwm_unexport_child(struct device *parent, struct pwm_device *pwm) |
| 338 | { |
| 339 | struct device *child; |
| 340 | |
| 341 | if (!test_and_clear_bit(PWMF_EXPORTED, &pwm->flags)) |
| 342 | return -ENODEV; |
| 343 | |
| 344 | child = device_find_child(parent, pwm, pwm_unexport_match); |
| 345 | if (!child) |
| 346 | return -ENODEV; |
| 347 | |
| 348 | /* for device_find_child() */ |
| 349 | put_device(child); |
| 350 | device_unregister(child); |
| 351 | pwm_put(pwm); |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 356 | static ssize_t export_store(struct device *parent, |
| 357 | struct device_attribute *attr, |
| 358 | const char *buf, size_t len) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 359 | { |
| 360 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 361 | struct pwm_device *pwm; |
| 362 | unsigned int hwpwm; |
| 363 | int ret; |
| 364 | |
| 365 | ret = kstrtouint(buf, 0, &hwpwm); |
| 366 | if (ret < 0) |
| 367 | return ret; |
| 368 | |
| 369 | if (hwpwm >= chip->npwm) |
| 370 | return -ENODEV; |
| 371 | |
| 372 | pwm = pwm_request_from_chip(chip, hwpwm, "sysfs"); |
| 373 | if (IS_ERR(pwm)) |
| 374 | return PTR_ERR(pwm); |
| 375 | |
| 376 | ret = pwm_export_child(parent, pwm); |
| 377 | if (ret < 0) |
| 378 | pwm_put(pwm); |
| 379 | |
| 380 | return ret ? : len; |
| 381 | } |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 382 | static DEVICE_ATTR_WO(export); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 383 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 384 | static ssize_t unexport_store(struct device *parent, |
| 385 | struct device_attribute *attr, |
| 386 | const char *buf, size_t len) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 387 | { |
| 388 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 389 | unsigned int hwpwm; |
| 390 | int ret; |
| 391 | |
| 392 | ret = kstrtouint(buf, 0, &hwpwm); |
| 393 | if (ret < 0) |
| 394 | return ret; |
| 395 | |
| 396 | if (hwpwm >= chip->npwm) |
| 397 | return -ENODEV; |
| 398 | |
| 399 | ret = pwm_unexport_child(parent, &chip->pwms[hwpwm]); |
| 400 | |
| 401 | return ret ? : len; |
| 402 | } |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 403 | static DEVICE_ATTR_WO(unexport); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 404 | |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 405 | static ssize_t npwm_show(struct device *parent, struct device_attribute *attr, |
| 406 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 407 | { |
| 408 | const struct pwm_chip *chip = dev_get_drvdata(parent); |
| 409 | |
| 410 | return sprintf(buf, "%u\n", chip->npwm); |
| 411 | } |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 412 | static DEVICE_ATTR_RO(npwm); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 413 | |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 414 | static struct attribute *pwm_chip_attrs[] = { |
| 415 | &dev_attr_export.attr, |
| 416 | &dev_attr_unexport.attr, |
| 417 | &dev_attr_npwm.attr, |
| 418 | NULL, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 419 | }; |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 420 | ATTRIBUTE_GROUPS(pwm_chip); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 421 | |
| 422 | static struct class pwm_class = { |
Thierry Reding | 412820d | 2015-07-20 09:58:09 +0200 | [diff] [blame] | 423 | .name = "pwm", |
| 424 | .owner = THIS_MODULE, |
| 425 | .dev_groups = pwm_chip_groups, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 426 | }; |
| 427 | |
| 428 | static int pwmchip_sysfs_match(struct device *parent, const void *data) |
| 429 | { |
| 430 | return dev_get_drvdata(parent) == data; |
| 431 | } |
| 432 | |
| 433 | void pwmchip_sysfs_export(struct pwm_chip *chip) |
| 434 | { |
| 435 | struct device *parent; |
| 436 | |
| 437 | /* |
| 438 | * If device_create() fails the pwm_chip is still usable by |
| 439 | * the kernel its just not exported. |
| 440 | */ |
| 441 | parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip, |
| 442 | "pwmchip%d", chip->base); |
| 443 | if (IS_ERR(parent)) { |
| 444 | dev_warn(chip->dev, |
| 445 | "device_create failed for pwm_chip sysfs export\n"); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | void pwmchip_sysfs_unexport(struct pwm_chip *chip) |
| 450 | { |
| 451 | struct device *parent; |
| 452 | |
| 453 | parent = class_find_device(&pwm_class, NULL, chip, |
| 454 | pwmchip_sysfs_match); |
| 455 | if (parent) { |
| 456 | /* for class_find_device() */ |
| 457 | put_device(parent); |
| 458 | device_unregister(parent); |
| 459 | } |
| 460 | } |
| 461 | |
David Hsu | 0733424 | 2016-08-09 14:57:46 -0700 | [diff] [blame] | 462 | void pwmchip_sysfs_unexport_children(struct pwm_chip *chip) |
| 463 | { |
| 464 | struct device *parent; |
| 465 | unsigned int i; |
| 466 | |
| 467 | parent = class_find_device(&pwm_class, NULL, chip, |
| 468 | pwmchip_sysfs_match); |
| 469 | if (!parent) |
| 470 | return; |
| 471 | |
| 472 | for (i = 0; i < chip->npwm; i++) { |
| 473 | struct pwm_device *pwm = &chip->pwms[i]; |
| 474 | |
| 475 | if (test_bit(PWMF_EXPORTED, &pwm->flags)) |
| 476 | pwm_unexport_child(parent, pwm); |
| 477 | } |
Johan Hovold | 0e1614a | 2016-11-01 11:46:39 +0100 | [diff] [blame] | 478 | |
| 479 | put_device(parent); |
David Hsu | 0733424 | 2016-08-09 14:57:46 -0700 | [diff] [blame] | 480 | } |
| 481 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 482 | static int __init pwm_sysfs_init(void) |
| 483 | { |
| 484 | return class_register(&pwm_class); |
| 485 | } |
| 486 | subsys_initcall(pwm_sysfs_init); |