Thomas Gleixner | 3e0a4e8 | 2019-05-23 11:14:55 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 2 | /* |
| 3 | * A simple sysfs interface for the generic PWM framework |
| 4 | * |
| 5 | * Copyright (C) 2013 H Hartley Sweeten <hsweeten@visionengravers.com> |
| 6 | * |
| 7 | * Based on previous work by Lars Poeschel <poeschel@lemonage.de> |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/device.h> |
| 11 | #include <linux/mutex.h> |
| 12 | #include <linux/err.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/kdev_t.h> |
| 15 | #include <linux/pwm.h> |
| 16 | |
| 17 | struct pwm_export { |
| 18 | struct device child; |
| 19 | struct pwm_device *pwm; |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 20 | struct mutex lock; |
Yoshihiro Shimoda | 7fd4edc | 2019-05-31 18:55:00 +0900 | [diff] [blame] | 21 | struct pwm_state suspend; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | static struct pwm_export *child_to_pwm_export(struct device *child) |
| 25 | { |
| 26 | return container_of(child, struct pwm_export, child); |
| 27 | } |
| 28 | |
| 29 | static struct pwm_device *child_to_pwm_device(struct device *child) |
| 30 | { |
| 31 | struct pwm_export *export = child_to_pwm_export(child); |
| 32 | |
| 33 | return export->pwm; |
| 34 | } |
| 35 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 36 | static ssize_t period_show(struct device *child, |
| 37 | struct device_attribute *attr, |
| 38 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 39 | { |
| 40 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 41 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 42 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 43 | pwm_get_state(pwm, &state); |
| 44 | |
Guru Das Srinagesh | a9d887d | 2020-06-02 15:31:16 -0700 | [diff] [blame] | 45 | return sprintf(buf, "%llu\n", state.period); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 46 | } |
| 47 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 48 | static ssize_t period_store(struct device *child, |
| 49 | struct device_attribute *attr, |
| 50 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 51 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 52 | struct pwm_export *export = child_to_pwm_export(child); |
| 53 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 54 | struct pwm_state state; |
Guru Das Srinagesh | a9d887d | 2020-06-02 15:31:16 -0700 | [diff] [blame] | 55 | u64 val; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 56 | int ret; |
| 57 | |
Guru Das Srinagesh | a9d887d | 2020-06-02 15:31:16 -0700 | [diff] [blame] | 58 | ret = kstrtou64(buf, 0, &val); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 59 | if (ret) |
| 60 | return ret; |
| 61 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 62 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 63 | pwm_get_state(pwm, &state); |
| 64 | state.period = val; |
| 65 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 66 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 67 | |
| 68 | return ret ? : size; |
| 69 | } |
| 70 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 71 | static ssize_t duty_cycle_show(struct device *child, |
| 72 | struct device_attribute *attr, |
| 73 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 74 | { |
| 75 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 76 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 77 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 78 | pwm_get_state(pwm, &state); |
| 79 | |
Guru Das Srinagesh | a9d887d | 2020-06-02 15:31:16 -0700 | [diff] [blame] | 80 | return sprintf(buf, "%llu\n", state.duty_cycle); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 83 | static ssize_t duty_cycle_store(struct device *child, |
| 84 | struct device_attribute *attr, |
| 85 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 86 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 87 | struct pwm_export *export = child_to_pwm_export(child); |
| 88 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 89 | struct pwm_state state; |
Jarkko Nikula | 1f2bd22 | 2020-08-24 17:55:39 +0300 | [diff] [blame] | 90 | u64 val; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 91 | int ret; |
| 92 | |
Jarkko Nikula | 1f2bd22 | 2020-08-24 17:55:39 +0300 | [diff] [blame] | 93 | ret = kstrtou64(buf, 0, &val); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 94 | if (ret) |
| 95 | return ret; |
| 96 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 97 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 98 | pwm_get_state(pwm, &state); |
| 99 | state.duty_cycle = val; |
| 100 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 101 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 102 | |
| 103 | return ret ? : size; |
| 104 | } |
| 105 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 106 | static ssize_t enable_show(struct device *child, |
| 107 | struct device_attribute *attr, |
| 108 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 109 | { |
| 110 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 111 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 112 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 113 | pwm_get_state(pwm, &state); |
| 114 | |
| 115 | return sprintf(buf, "%d\n", state.enabled); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 118 | static ssize_t enable_store(struct device *child, |
| 119 | struct device_attribute *attr, |
| 120 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 121 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 122 | struct pwm_export *export = child_to_pwm_export(child); |
| 123 | struct pwm_device *pwm = export->pwm; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 124 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 125 | int val, ret; |
| 126 | |
| 127 | ret = kstrtoint(buf, 0, &val); |
| 128 | if (ret) |
| 129 | return ret; |
| 130 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 131 | mutex_lock(&export->lock); |
| 132 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 133 | pwm_get_state(pwm, &state); |
| 134 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 135 | switch (val) { |
| 136 | case 0: |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 137 | state.enabled = false; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 138 | break; |
| 139 | case 1: |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 140 | state.enabled = true; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 141 | break; |
| 142 | default: |
| 143 | ret = -EINVAL; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 144 | goto unlock; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Ryo Kodama | fe5aa34 | 2016-06-08 10:58:23 +0900 | [diff] [blame] | 147 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 148 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 149 | unlock: |
| 150 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 151 | return ret ? : size; |
| 152 | } |
| 153 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 154 | static ssize_t polarity_show(struct device *child, |
| 155 | struct device_attribute *attr, |
| 156 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 157 | { |
| 158 | const struct pwm_device *pwm = child_to_pwm_device(child); |
Thierry Reding | 5a063d8 | 2015-07-20 09:56:05 +0200 | [diff] [blame] | 159 | const char *polarity = "unknown"; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 160 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 161 | |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 162 | pwm_get_state(pwm, &state); |
| 163 | |
| 164 | switch (state.polarity) { |
Thierry Reding | 5a063d8 | 2015-07-20 09:56:05 +0200 | [diff] [blame] | 165 | case PWM_POLARITY_NORMAL: |
| 166 | polarity = "normal"; |
| 167 | break; |
| 168 | |
| 169 | case PWM_POLARITY_INVERSED: |
| 170 | polarity = "inversed"; |
| 171 | break; |
| 172 | } |
| 173 | |
| 174 | return sprintf(buf, "%s\n", polarity); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 177 | static ssize_t polarity_store(struct device *child, |
| 178 | struct device_attribute *attr, |
| 179 | const char *buf, size_t size) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 180 | { |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 181 | struct pwm_export *export = child_to_pwm_export(child); |
| 182 | struct pwm_device *pwm = export->pwm; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 183 | enum pwm_polarity polarity; |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 184 | struct pwm_state state; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 185 | int ret; |
| 186 | |
| 187 | if (sysfs_streq(buf, "normal")) |
| 188 | polarity = PWM_POLARITY_NORMAL; |
| 189 | else if (sysfs_streq(buf, "inversed")) |
| 190 | polarity = PWM_POLARITY_INVERSED; |
| 191 | else |
| 192 | return -EINVAL; |
| 193 | |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 194 | mutex_lock(&export->lock); |
Boris Brezillon | 39100ce | 2016-04-14 21:17:43 +0200 | [diff] [blame] | 195 | pwm_get_state(pwm, &state); |
| 196 | state.polarity = polarity; |
| 197 | ret = pwm_apply_state(pwm, &state); |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 198 | mutex_unlock(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 199 | |
| 200 | return ret ? : size; |
| 201 | } |
| 202 | |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 203 | static ssize_t capture_show(struct device *child, |
| 204 | struct device_attribute *attr, |
| 205 | char *buf) |
| 206 | { |
| 207 | struct pwm_device *pwm = child_to_pwm_device(child); |
| 208 | struct pwm_capture result; |
| 209 | int ret; |
| 210 | |
| 211 | ret = pwm_capture(pwm, &result, jiffies_to_msecs(HZ)); |
| 212 | if (ret) |
| 213 | return ret; |
| 214 | |
| 215 | return sprintf(buf, "%u %u\n", result.period, result.duty_cycle); |
| 216 | } |
| 217 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 218 | static DEVICE_ATTR_RW(period); |
| 219 | static DEVICE_ATTR_RW(duty_cycle); |
| 220 | static DEVICE_ATTR_RW(enable); |
| 221 | static DEVICE_ATTR_RW(polarity); |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 222 | static DEVICE_ATTR_RO(capture); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 223 | |
| 224 | static struct attribute *pwm_attrs[] = { |
| 225 | &dev_attr_period.attr, |
| 226 | &dev_attr_duty_cycle.attr, |
| 227 | &dev_attr_enable.attr, |
| 228 | &dev_attr_polarity.attr, |
Lee Jones | 1a366fe | 2016-06-08 10:21:25 +0100 | [diff] [blame] | 229 | &dev_attr_capture.attr, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 230 | NULL |
| 231 | }; |
Axel Lin | 6ca142a | 2013-12-04 18:29:53 +0800 | [diff] [blame] | 232 | ATTRIBUTE_GROUPS(pwm); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 233 | |
| 234 | static void pwm_export_release(struct device *child) |
| 235 | { |
| 236 | struct pwm_export *export = child_to_pwm_export(child); |
| 237 | |
| 238 | kfree(export); |
| 239 | } |
| 240 | |
| 241 | static int pwm_export_child(struct device *parent, struct pwm_device *pwm) |
| 242 | { |
| 243 | struct pwm_export *export; |
Fabrice Gasnier | 552c02e | 2018-10-01 15:23:57 +0200 | [diff] [blame] | 244 | char *pwm_prop[2]; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 245 | int ret; |
| 246 | |
| 247 | if (test_and_set_bit(PWMF_EXPORTED, &pwm->flags)) |
| 248 | return -EBUSY; |
| 249 | |
| 250 | export = kzalloc(sizeof(*export), GFP_KERNEL); |
| 251 | if (!export) { |
| 252 | clear_bit(PWMF_EXPORTED, &pwm->flags); |
| 253 | return -ENOMEM; |
| 254 | } |
| 255 | |
| 256 | export->pwm = pwm; |
Boris BREZILLON | 459a25a | 2016-03-30 22:03:27 +0200 | [diff] [blame] | 257 | mutex_init(&export->lock); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 258 | |
| 259 | export->child.release = pwm_export_release; |
| 260 | export->child.parent = parent; |
| 261 | export->child.devt = MKDEV(0, 0); |
Axel Lin | 6ca142a | 2013-12-04 18:29:53 +0800 | [diff] [blame] | 262 | export->child.groups = pwm_groups; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 263 | dev_set_name(&export->child, "pwm%u", pwm->hwpwm); |
| 264 | |
| 265 | ret = device_register(&export->child); |
| 266 | if (ret) { |
| 267 | clear_bit(PWMF_EXPORTED, &pwm->flags); |
Arvind Yadav | 8bbf5b4 | 2018-03-08 15:27:37 +0530 | [diff] [blame] | 268 | put_device(&export->child); |
| 269 | export = NULL; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 270 | return ret; |
| 271 | } |
Fabrice Gasnier | 552c02e | 2018-10-01 15:23:57 +0200 | [diff] [blame] | 272 | pwm_prop[0] = kasprintf(GFP_KERNEL, "EXPORT=pwm%u", pwm->hwpwm); |
| 273 | pwm_prop[1] = NULL; |
| 274 | kobject_uevent_env(&parent->kobj, KOBJ_CHANGE, pwm_prop); |
| 275 | kfree(pwm_prop[0]); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | static int pwm_unexport_match(struct device *child, void *data) |
| 281 | { |
| 282 | return child_to_pwm_device(child) == data; |
| 283 | } |
| 284 | |
| 285 | static int pwm_unexport_child(struct device *parent, struct pwm_device *pwm) |
| 286 | { |
| 287 | struct device *child; |
Fabrice Gasnier | 552c02e | 2018-10-01 15:23:57 +0200 | [diff] [blame] | 288 | char *pwm_prop[2]; |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 289 | |
| 290 | if (!test_and_clear_bit(PWMF_EXPORTED, &pwm->flags)) |
| 291 | return -ENODEV; |
| 292 | |
| 293 | child = device_find_child(parent, pwm, pwm_unexport_match); |
| 294 | if (!child) |
| 295 | return -ENODEV; |
| 296 | |
Fabrice Gasnier | 552c02e | 2018-10-01 15:23:57 +0200 | [diff] [blame] | 297 | pwm_prop[0] = kasprintf(GFP_KERNEL, "UNEXPORT=pwm%u", pwm->hwpwm); |
| 298 | pwm_prop[1] = NULL; |
| 299 | kobject_uevent_env(&parent->kobj, KOBJ_CHANGE, pwm_prop); |
| 300 | kfree(pwm_prop[0]); |
| 301 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 302 | /* for device_find_child() */ |
| 303 | put_device(child); |
| 304 | device_unregister(child); |
| 305 | pwm_put(pwm); |
| 306 | |
| 307 | return 0; |
| 308 | } |
| 309 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 310 | static ssize_t export_store(struct device *parent, |
| 311 | struct device_attribute *attr, |
| 312 | const char *buf, size_t len) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 313 | { |
| 314 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 315 | struct pwm_device *pwm; |
| 316 | unsigned int hwpwm; |
| 317 | int ret; |
| 318 | |
| 319 | ret = kstrtouint(buf, 0, &hwpwm); |
| 320 | if (ret < 0) |
| 321 | return ret; |
| 322 | |
| 323 | if (hwpwm >= chip->npwm) |
| 324 | return -ENODEV; |
| 325 | |
| 326 | pwm = pwm_request_from_chip(chip, hwpwm, "sysfs"); |
| 327 | if (IS_ERR(pwm)) |
| 328 | return PTR_ERR(pwm); |
| 329 | |
| 330 | ret = pwm_export_child(parent, pwm); |
| 331 | if (ret < 0) |
| 332 | pwm_put(pwm); |
| 333 | |
| 334 | return ret ? : len; |
| 335 | } |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 336 | static DEVICE_ATTR_WO(export); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 337 | |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 338 | static ssize_t unexport_store(struct device *parent, |
| 339 | struct device_attribute *attr, |
| 340 | const char *buf, size_t len) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 341 | { |
| 342 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 343 | unsigned int hwpwm; |
| 344 | int ret; |
| 345 | |
| 346 | ret = kstrtouint(buf, 0, &hwpwm); |
| 347 | if (ret < 0) |
| 348 | return ret; |
| 349 | |
| 350 | if (hwpwm >= chip->npwm) |
| 351 | return -ENODEV; |
| 352 | |
| 353 | ret = pwm_unexport_child(parent, &chip->pwms[hwpwm]); |
| 354 | |
| 355 | return ret ? : len; |
| 356 | } |
Olliver Schinagl | 65cdc69 | 2015-10-26 22:32:37 +0100 | [diff] [blame] | 357 | static DEVICE_ATTR_WO(unexport); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 358 | |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 359 | static ssize_t npwm_show(struct device *parent, struct device_attribute *attr, |
| 360 | char *buf) |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 361 | { |
| 362 | const struct pwm_chip *chip = dev_get_drvdata(parent); |
| 363 | |
| 364 | return sprintf(buf, "%u\n", chip->npwm); |
| 365 | } |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 366 | static DEVICE_ATTR_RO(npwm); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 367 | |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 368 | static struct attribute *pwm_chip_attrs[] = { |
| 369 | &dev_attr_export.attr, |
| 370 | &dev_attr_unexport.attr, |
| 371 | &dev_attr_npwm.attr, |
| 372 | NULL, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 373 | }; |
Greg Kroah-Hartman | 9da0175 | 2013-07-24 15:05:39 -0700 | [diff] [blame] | 374 | ATTRIBUTE_GROUPS(pwm_chip); |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 375 | |
Yoshihiro Shimoda | 7fd4edc | 2019-05-31 18:55:00 +0900 | [diff] [blame] | 376 | /* takes export->lock on success */ |
| 377 | static struct pwm_export *pwm_class_get_state(struct device *parent, |
| 378 | struct pwm_device *pwm, |
| 379 | struct pwm_state *state) |
| 380 | { |
| 381 | struct device *child; |
| 382 | struct pwm_export *export; |
| 383 | |
| 384 | if (!test_bit(PWMF_EXPORTED, &pwm->flags)) |
| 385 | return NULL; |
| 386 | |
| 387 | child = device_find_child(parent, pwm, pwm_unexport_match); |
| 388 | if (!child) |
| 389 | return NULL; |
| 390 | |
| 391 | export = child_to_pwm_export(child); |
| 392 | put_device(child); /* for device_find_child() */ |
| 393 | |
| 394 | mutex_lock(&export->lock); |
| 395 | pwm_get_state(pwm, state); |
| 396 | |
| 397 | return export; |
| 398 | } |
| 399 | |
| 400 | static int pwm_class_apply_state(struct pwm_export *export, |
| 401 | struct pwm_device *pwm, |
| 402 | struct pwm_state *state) |
| 403 | { |
| 404 | int ret = pwm_apply_state(pwm, state); |
| 405 | |
| 406 | /* release lock taken in pwm_class_get_state */ |
| 407 | mutex_unlock(&export->lock); |
| 408 | |
| 409 | return ret; |
| 410 | } |
| 411 | |
| 412 | static int pwm_class_resume_npwm(struct device *parent, unsigned int npwm) |
| 413 | { |
| 414 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 415 | unsigned int i; |
| 416 | int ret = 0; |
| 417 | |
| 418 | for (i = 0; i < npwm; i++) { |
| 419 | struct pwm_device *pwm = &chip->pwms[i]; |
| 420 | struct pwm_state state; |
| 421 | struct pwm_export *export; |
| 422 | |
| 423 | export = pwm_class_get_state(parent, pwm, &state); |
| 424 | if (!export) |
| 425 | continue; |
| 426 | |
| 427 | state.enabled = export->suspend.enabled; |
| 428 | ret = pwm_class_apply_state(export, pwm, &state); |
| 429 | if (ret < 0) |
| 430 | break; |
| 431 | } |
| 432 | |
| 433 | return ret; |
| 434 | } |
| 435 | |
| 436 | static int __maybe_unused pwm_class_suspend(struct device *parent) |
| 437 | { |
| 438 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 439 | unsigned int i; |
| 440 | int ret = 0; |
| 441 | |
| 442 | for (i = 0; i < chip->npwm; i++) { |
| 443 | struct pwm_device *pwm = &chip->pwms[i]; |
| 444 | struct pwm_state state; |
| 445 | struct pwm_export *export; |
| 446 | |
| 447 | export = pwm_class_get_state(parent, pwm, &state); |
| 448 | if (!export) |
| 449 | continue; |
| 450 | |
| 451 | export->suspend = state; |
| 452 | state.enabled = false; |
| 453 | ret = pwm_class_apply_state(export, pwm, &state); |
| 454 | if (ret < 0) { |
| 455 | /* |
| 456 | * roll back the PWM devices that were disabled by |
| 457 | * this suspend function. |
| 458 | */ |
| 459 | pwm_class_resume_npwm(parent, i); |
| 460 | break; |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | return ret; |
| 465 | } |
| 466 | |
| 467 | static int __maybe_unused pwm_class_resume(struct device *parent) |
| 468 | { |
| 469 | struct pwm_chip *chip = dev_get_drvdata(parent); |
| 470 | |
| 471 | return pwm_class_resume_npwm(parent, chip->npwm); |
| 472 | } |
| 473 | |
| 474 | static SIMPLE_DEV_PM_OPS(pwm_class_pm_ops, pwm_class_suspend, pwm_class_resume); |
| 475 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 476 | static struct class pwm_class = { |
Thierry Reding | 412820d | 2015-07-20 09:58:09 +0200 | [diff] [blame] | 477 | .name = "pwm", |
| 478 | .owner = THIS_MODULE, |
| 479 | .dev_groups = pwm_chip_groups, |
Yoshihiro Shimoda | 7fd4edc | 2019-05-31 18:55:00 +0900 | [diff] [blame] | 480 | .pm = &pwm_class_pm_ops, |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 481 | }; |
| 482 | |
| 483 | static int pwmchip_sysfs_match(struct device *parent, const void *data) |
| 484 | { |
| 485 | return dev_get_drvdata(parent) == data; |
| 486 | } |
| 487 | |
| 488 | void pwmchip_sysfs_export(struct pwm_chip *chip) |
| 489 | { |
| 490 | struct device *parent; |
| 491 | |
| 492 | /* |
| 493 | * If device_create() fails the pwm_chip is still usable by |
Uwe Kleine-König | 9ff0667 | 2019-03-12 10:25:47 +0100 | [diff] [blame] | 494 | * the kernel it's just not exported. |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 495 | */ |
| 496 | parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip, |
| 497 | "pwmchip%d", chip->base); |
| 498 | if (IS_ERR(parent)) { |
| 499 | dev_warn(chip->dev, |
| 500 | "device_create failed for pwm_chip sysfs export\n"); |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | void pwmchip_sysfs_unexport(struct pwm_chip *chip) |
| 505 | { |
| 506 | struct device *parent; |
David Hsu | 0733424 | 2016-08-09 14:57:46 -0700 | [diff] [blame] | 507 | unsigned int i; |
| 508 | |
| 509 | parent = class_find_device(&pwm_class, NULL, chip, |
| 510 | pwmchip_sysfs_match); |
| 511 | if (!parent) |
| 512 | return; |
| 513 | |
| 514 | for (i = 0; i < chip->npwm; i++) { |
| 515 | struct pwm_device *pwm = &chip->pwms[i]; |
| 516 | |
| 517 | if (test_bit(PWMF_EXPORTED, &pwm->flags)) |
| 518 | pwm_unexport_child(parent, pwm); |
| 519 | } |
Johan Hovold | 0e1614a | 2016-11-01 11:46:39 +0100 | [diff] [blame] | 520 | |
| 521 | put_device(parent); |
Phong Hoang | 347ab94 | 2019-03-19 19:40:08 +0900 | [diff] [blame] | 522 | device_unregister(parent); |
David Hsu | 0733424 | 2016-08-09 14:57:46 -0700 | [diff] [blame] | 523 | } |
| 524 | |
H Hartley Sweeten | 76abbdde | 2013-06-11 10:38:59 -0700 | [diff] [blame] | 525 | static int __init pwm_sysfs_init(void) |
| 526 | { |
| 527 | return class_register(&pwm_class); |
| 528 | } |
| 529 | subsys_initcall(pwm_sysfs_init); |