Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | * pwm-fan.c - Hwmon driver for fans connected to PWM lines. |
| 3 | * |
| 4 | * Copyright (c) 2014 Samsung Electronics Co., Ltd. |
| 5 | * |
| 6 | * Author: Kamil Debski <k.debski@samsung.com> |
| 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 of the License, or |
| 11 | * (at your option) 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/hwmon.h> |
| 20 | #include <linux/hwmon-sysfs.h> |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 21 | #include <linux/interrupt.h> |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/mutex.h> |
| 24 | #include <linux/of.h> |
| 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/pwm.h> |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 27 | #include <linux/regulator/consumer.h> |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 28 | #include <linux/sysfs.h> |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 29 | #include <linux/thermal.h> |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 30 | #include <linux/timer.h> |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 31 | |
| 32 | #define MAX_PWM 255 |
| 33 | |
| 34 | struct pwm_fan_ctx { |
| 35 | struct mutex lock; |
| 36 | struct pwm_device *pwm; |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 37 | struct regulator *reg_en; |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 38 | |
| 39 | int irq; |
| 40 | atomic_t pulses; |
| 41 | unsigned int rpm; |
| 42 | u8 pulses_per_revolution; |
| 43 | ktime_t sample_start; |
| 44 | struct timer_list rpm_timer; |
| 45 | |
Lukasz Majewski | 2e5219c | 2015-02-26 14:59:36 +0100 | [diff] [blame] | 46 | unsigned int pwm_value; |
| 47 | unsigned int pwm_fan_state; |
| 48 | unsigned int pwm_fan_max_state; |
| 49 | unsigned int *pwm_fan_cooling_levels; |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 50 | struct thermal_cooling_device *cdev; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 53 | /* This handler assumes self resetting edge triggered interrupt. */ |
| 54 | static irqreturn_t pulse_handler(int irq, void *dev_id) |
| 55 | { |
| 56 | struct pwm_fan_ctx *ctx = dev_id; |
| 57 | |
| 58 | atomic_inc(&ctx->pulses); |
| 59 | |
| 60 | return IRQ_HANDLED; |
| 61 | } |
| 62 | |
| 63 | static void sample_timer(struct timer_list *t) |
| 64 | { |
| 65 | struct pwm_fan_ctx *ctx = from_timer(ctx, t, rpm_timer); |
| 66 | int pulses; |
| 67 | u64 tmp; |
| 68 | |
| 69 | pulses = atomic_read(&ctx->pulses); |
| 70 | atomic_sub(pulses, &ctx->pulses); |
| 71 | tmp = (u64)pulses * ktime_ms_delta(ktime_get(), ctx->sample_start) * 60; |
| 72 | do_div(tmp, ctx->pulses_per_revolution * 1000); |
| 73 | ctx->rpm = tmp; |
| 74 | |
| 75 | ctx->sample_start = ktime_get(); |
| 76 | mod_timer(&ctx->rpm_timer, jiffies + HZ); |
| 77 | } |
| 78 | |
Lukasz Majewski | cb85ca3 | 2015-02-26 14:59:35 +0100 | [diff] [blame] | 79 | static int __set_pwm(struct pwm_fan_ctx *ctx, unsigned long pwm) |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 80 | { |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 81 | unsigned long period; |
Lukasz Majewski | cb85ca3 | 2015-02-26 14:59:35 +0100 | [diff] [blame] | 82 | int ret = 0; |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 83 | struct pwm_state state = { }; |
Boris Brezillon | 2289711 | 2016-04-14 21:17:24 +0200 | [diff] [blame] | 84 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 85 | mutex_lock(&ctx->lock); |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 86 | if (ctx->pwm_value == pwm) |
Lukasz Majewski | cb85ca3 | 2015-02-26 14:59:35 +0100 | [diff] [blame] | 87 | goto exit_set_pwm_err; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 88 | |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 89 | pwm_init_state(ctx->pwm, &state); |
| 90 | period = ctx->pwm->args.period; |
| 91 | state.duty_cycle = DIV_ROUND_UP(pwm * (period - 1), MAX_PWM); |
| 92 | state.enabled = pwm ? true : false; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 93 | |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 94 | ret = pwm_apply_state(ctx->pwm, &state); |
| 95 | if (!ret) |
| 96 | ctx->pwm_value = pwm; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 97 | exit_set_pwm_err: |
| 98 | mutex_unlock(&ctx->lock); |
| 99 | return ret; |
| 100 | } |
| 101 | |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 102 | static void pwm_fan_update_state(struct pwm_fan_ctx *ctx, unsigned long pwm) |
| 103 | { |
| 104 | int i; |
| 105 | |
| 106 | for (i = 0; i < ctx->pwm_fan_max_state; ++i) |
| 107 | if (pwm < ctx->pwm_fan_cooling_levels[i + 1]) |
| 108 | break; |
| 109 | |
| 110 | ctx->pwm_fan_state = i; |
| 111 | } |
| 112 | |
Guenter Roeck | cb1d853 | 2018-12-06 10:48:56 -0800 | [diff] [blame] | 113 | static ssize_t pwm_store(struct device *dev, struct device_attribute *attr, |
| 114 | const char *buf, size_t count) |
Lukasz Majewski | cb85ca3 | 2015-02-26 14:59:35 +0100 | [diff] [blame] | 115 | { |
| 116 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
| 117 | unsigned long pwm; |
| 118 | int ret; |
| 119 | |
| 120 | if (kstrtoul(buf, 10, &pwm) || pwm > MAX_PWM) |
| 121 | return -EINVAL; |
| 122 | |
| 123 | ret = __set_pwm(ctx, pwm); |
| 124 | if (ret) |
| 125 | return ret; |
| 126 | |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 127 | pwm_fan_update_state(ctx, pwm); |
Lukasz Majewski | cb85ca3 | 2015-02-26 14:59:35 +0100 | [diff] [blame] | 128 | return count; |
| 129 | } |
| 130 | |
Guenter Roeck | cb1d853 | 2018-12-06 10:48:56 -0800 | [diff] [blame] | 131 | static ssize_t pwm_show(struct device *dev, struct device_attribute *attr, |
| 132 | char *buf) |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 133 | { |
| 134 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
| 135 | |
| 136 | return sprintf(buf, "%u\n", ctx->pwm_value); |
| 137 | } |
| 138 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 139 | static ssize_t rpm_show(struct device *dev, |
| 140 | struct device_attribute *attr, char *buf) |
| 141 | { |
| 142 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
| 143 | |
| 144 | return sprintf(buf, "%u\n", ctx->rpm); |
| 145 | } |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 146 | |
Guenter Roeck | cb1d853 | 2018-12-06 10:48:56 -0800 | [diff] [blame] | 147 | static SENSOR_DEVICE_ATTR_RW(pwm1, pwm, 0); |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 148 | static SENSOR_DEVICE_ATTR_RO(fan1_input, rpm, 0); |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 149 | |
| 150 | static struct attribute *pwm_fan_attrs[] = { |
| 151 | &sensor_dev_attr_pwm1.dev_attr.attr, |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 152 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 153 | NULL, |
| 154 | }; |
| 155 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 156 | static umode_t pwm_fan_attrs_visible(struct kobject *kobj, struct attribute *a, |
| 157 | int n) |
| 158 | { |
| 159 | struct device *dev = container_of(kobj, struct device, kobj); |
| 160 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
| 161 | |
| 162 | /* Hide fan_input in case no interrupt is available */ |
| 163 | if (n == 1 && ctx->irq <= 0) |
| 164 | return 0; |
| 165 | |
| 166 | return a->mode; |
| 167 | } |
| 168 | |
| 169 | static const struct attribute_group pwm_fan_group = { |
| 170 | .attrs = pwm_fan_attrs, |
| 171 | .is_visible = pwm_fan_attrs_visible, |
| 172 | }; |
| 173 | |
| 174 | static const struct attribute_group *pwm_fan_groups[] = { |
| 175 | &pwm_fan_group, |
| 176 | NULL, |
| 177 | }; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 178 | |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 179 | /* thermal cooling device callbacks */ |
| 180 | static int pwm_fan_get_max_state(struct thermal_cooling_device *cdev, |
| 181 | unsigned long *state) |
| 182 | { |
| 183 | struct pwm_fan_ctx *ctx = cdev->devdata; |
| 184 | |
| 185 | if (!ctx) |
| 186 | return -EINVAL; |
| 187 | |
| 188 | *state = ctx->pwm_fan_max_state; |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | static int pwm_fan_get_cur_state(struct thermal_cooling_device *cdev, |
| 194 | unsigned long *state) |
| 195 | { |
| 196 | struct pwm_fan_ctx *ctx = cdev->devdata; |
| 197 | |
| 198 | if (!ctx) |
| 199 | return -EINVAL; |
| 200 | |
| 201 | *state = ctx->pwm_fan_state; |
| 202 | |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | static int |
| 207 | pwm_fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state) |
| 208 | { |
| 209 | struct pwm_fan_ctx *ctx = cdev->devdata; |
| 210 | int ret; |
| 211 | |
| 212 | if (!ctx || (state > ctx->pwm_fan_max_state)) |
| 213 | return -EINVAL; |
| 214 | |
| 215 | if (state == ctx->pwm_fan_state) |
| 216 | return 0; |
| 217 | |
| 218 | ret = __set_pwm(ctx, ctx->pwm_fan_cooling_levels[state]); |
| 219 | if (ret) { |
| 220 | dev_err(&cdev->device, "Cannot set pwm!\n"); |
| 221 | return ret; |
| 222 | } |
| 223 | |
| 224 | ctx->pwm_fan_state = state; |
| 225 | |
| 226 | return ret; |
| 227 | } |
| 228 | |
| 229 | static const struct thermal_cooling_device_ops pwm_fan_cooling_ops = { |
| 230 | .get_max_state = pwm_fan_get_max_state, |
| 231 | .get_cur_state = pwm_fan_get_cur_state, |
| 232 | .set_cur_state = pwm_fan_set_cur_state, |
| 233 | }; |
| 234 | |
Guenter Roeck | de52b04 | 2015-03-04 09:51:05 -0800 | [diff] [blame] | 235 | static int pwm_fan_of_get_cooling_data(struct device *dev, |
| 236 | struct pwm_fan_ctx *ctx) |
Lukasz Majewski | 2e5219c | 2015-02-26 14:59:36 +0100 | [diff] [blame] | 237 | { |
| 238 | struct device_node *np = dev->of_node; |
| 239 | int num, i, ret; |
| 240 | |
| 241 | if (!of_find_property(np, "cooling-levels", NULL)) |
| 242 | return 0; |
| 243 | |
| 244 | ret = of_property_count_u32_elems(np, "cooling-levels"); |
| 245 | if (ret <= 0) { |
| 246 | dev_err(dev, "Wrong data!\n"); |
| 247 | return ret ? : -EINVAL; |
| 248 | } |
| 249 | |
| 250 | num = ret; |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 251 | ctx->pwm_fan_cooling_levels = devm_kcalloc(dev, num, sizeof(u32), |
Lukasz Majewski | 2e5219c | 2015-02-26 14:59:36 +0100 | [diff] [blame] | 252 | GFP_KERNEL); |
| 253 | if (!ctx->pwm_fan_cooling_levels) |
| 254 | return -ENOMEM; |
| 255 | |
| 256 | ret = of_property_read_u32_array(np, "cooling-levels", |
| 257 | ctx->pwm_fan_cooling_levels, num); |
| 258 | if (ret) { |
| 259 | dev_err(dev, "Property 'cooling-levels' cannot be read!\n"); |
| 260 | return ret; |
| 261 | } |
| 262 | |
| 263 | for (i = 0; i < num; i++) { |
| 264 | if (ctx->pwm_fan_cooling_levels[i] > MAX_PWM) { |
| 265 | dev_err(dev, "PWM fan state[%d]:%d > %d\n", i, |
| 266 | ctx->pwm_fan_cooling_levels[i], MAX_PWM); |
| 267 | return -EINVAL; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | ctx->pwm_fan_max_state = num - 1; |
| 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 276 | static int pwm_fan_probe(struct platform_device *pdev) |
| 277 | { |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 278 | struct thermal_cooling_device *cdev; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 279 | struct pwm_fan_ctx *ctx; |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 280 | struct device *hwmon; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 281 | int ret; |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 282 | struct pwm_state state = { }; |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 283 | u32 ppr = 2; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 284 | |
| 285 | ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL); |
| 286 | if (!ctx) |
| 287 | return -ENOMEM; |
| 288 | |
| 289 | mutex_init(&ctx->lock); |
| 290 | |
| 291 | ctx->pwm = devm_of_pwm_get(&pdev->dev, pdev->dev.of_node, NULL); |
| 292 | if (IS_ERR(ctx->pwm)) { |
Thierry Reding | 9f67f75 | 2018-09-21 12:10:47 +0200 | [diff] [blame] | 293 | ret = PTR_ERR(ctx->pwm); |
| 294 | |
| 295 | if (ret != -EPROBE_DEFER) |
| 296 | dev_err(&pdev->dev, "Could not get PWM: %d\n", ret); |
| 297 | |
| 298 | return ret; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 299 | } |
| 300 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 301 | platform_set_drvdata(pdev, ctx); |
| 302 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 303 | ctx->irq = platform_get_irq(pdev, 0); |
| 304 | if (ctx->irq == -EPROBE_DEFER) |
| 305 | return ctx->irq; |
| 306 | |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 307 | ctx->reg_en = devm_regulator_get_optional(&pdev->dev, "fan"); |
| 308 | if (IS_ERR(ctx->reg_en)) { |
| 309 | if (PTR_ERR(ctx->reg_en) != -ENODEV) |
| 310 | return PTR_ERR(ctx->reg_en); |
| 311 | |
| 312 | ctx->reg_en = NULL; |
| 313 | } else { |
| 314 | ret = regulator_enable(ctx->reg_en); |
| 315 | if (ret) { |
| 316 | dev_err(&pdev->dev, |
| 317 | "Failed to enable fan supply: %d\n", ret); |
| 318 | return ret; |
| 319 | } |
| 320 | } |
| 321 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 322 | ctx->pwm_value = MAX_PWM; |
| 323 | |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 324 | /* Set duty cycle to maximum allowed and enable PWM output */ |
| 325 | pwm_init_state(ctx->pwm, &state); |
| 326 | state.duty_cycle = ctx->pwm->args.period - 1; |
| 327 | state.enabled = true; |
| 328 | |
| 329 | ret = pwm_apply_state(ctx->pwm, &state); |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 330 | if (ret) { |
| 331 | dev_err(&pdev->dev, "Failed to configure PWM\n"); |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 332 | goto err_reg_disable; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 333 | } |
| 334 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 335 | timer_setup(&ctx->rpm_timer, sample_timer, 0); |
| 336 | |
| 337 | of_property_read_u32(pdev->dev.of_node, "pulses-per-revolution", &ppr); |
| 338 | ctx->pulses_per_revolution = ppr; |
| 339 | if (!ctx->pulses_per_revolution) { |
| 340 | dev_err(&pdev->dev, "pulses-per-revolution can't be zero.\n"); |
| 341 | ret = -EINVAL; |
| 342 | goto err_pwm_disable; |
| 343 | } |
| 344 | |
| 345 | if (ctx->irq > 0) { |
| 346 | ret = devm_request_irq(&pdev->dev, ctx->irq, pulse_handler, 0, |
| 347 | pdev->name, ctx); |
| 348 | if (ret) { |
| 349 | dev_err(&pdev->dev, "Can't get interrupt working.\n"); |
| 350 | goto err_pwm_disable; |
| 351 | } |
| 352 | ctx->sample_start = ktime_get(); |
| 353 | mod_timer(&ctx->rpm_timer, jiffies + HZ); |
| 354 | } |
| 355 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 356 | hwmon = devm_hwmon_device_register_with_groups(&pdev->dev, "pwmfan", |
| 357 | ctx, pwm_fan_groups); |
| 358 | if (IS_ERR(hwmon)) { |
| 359 | dev_err(&pdev->dev, "Failed to register hwmon device\n"); |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 360 | ret = PTR_ERR(hwmon); |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 361 | goto err_del_timer; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 362 | } |
Lukasz Majewski | 2e5219c | 2015-02-26 14:59:36 +0100 | [diff] [blame] | 363 | |
| 364 | ret = pwm_fan_of_get_cooling_data(&pdev->dev, ctx); |
| 365 | if (ret) |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 366 | goto err_del_timer; |
Lukasz Majewski | 2e5219c | 2015-02-26 14:59:36 +0100 | [diff] [blame] | 367 | |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 368 | ctx->pwm_fan_state = ctx->pwm_fan_max_state; |
| 369 | if (IS_ENABLED(CONFIG_THERMAL)) { |
| 370 | cdev = thermal_of_cooling_device_register(pdev->dev.of_node, |
| 371 | "pwm-fan", ctx, |
| 372 | &pwm_fan_cooling_ops); |
| 373 | if (IS_ERR(cdev)) { |
| 374 | dev_err(&pdev->dev, |
| 375 | "Failed to register pwm-fan as cooling device"); |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 376 | ret = PTR_ERR(cdev); |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 377 | goto err_del_timer; |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 378 | } |
| 379 | ctx->cdev = cdev; |
| 380 | thermal_cdev_update(cdev); |
| 381 | } |
| 382 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 383 | return 0; |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 384 | |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 385 | err_del_timer: |
| 386 | del_timer_sync(&ctx->rpm_timer); |
| 387 | |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 388 | err_pwm_disable: |
| 389 | state.enabled = false; |
| 390 | pwm_apply_state(ctx->pwm, &state); |
| 391 | |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 392 | err_reg_disable: |
| 393 | if (ctx->reg_en) |
| 394 | regulator_disable(ctx->reg_en); |
| 395 | |
Bartlomiej Zolnierkiewicz | 677252a | 2017-04-24 15:13:17 +0200 | [diff] [blame] | 396 | return ret; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | static int pwm_fan_remove(struct platform_device *pdev) |
| 400 | { |
| 401 | struct pwm_fan_ctx *ctx = platform_get_drvdata(pdev); |
| 402 | |
Lukasz Majewski | b6bddec0 | 2015-02-26 14:59:37 +0100 | [diff] [blame] | 403 | thermal_cooling_device_unregister(ctx->cdev); |
Stefan Wahren | 6b1ec47 | 2019-04-11 15:30:11 +0200 | [diff] [blame^] | 404 | del_timer_sync(&ctx->rpm_timer); |
| 405 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 406 | if (ctx->pwm_value) |
| 407 | pwm_disable(ctx->pwm); |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 408 | |
| 409 | if (ctx->reg_en) |
| 410 | regulator_disable(ctx->reg_en); |
| 411 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 412 | return 0; |
| 413 | } |
| 414 | |
| 415 | #ifdef CONFIG_PM_SLEEP |
| 416 | static int pwm_fan_suspend(struct device *dev) |
| 417 | { |
| 418 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
Thierry Reding | 95dcd64 | 2018-09-21 12:10:48 +0200 | [diff] [blame] | 419 | struct pwm_args args; |
| 420 | int ret; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 421 | |
Thierry Reding | 95dcd64 | 2018-09-21 12:10:48 +0200 | [diff] [blame] | 422 | pwm_get_args(ctx->pwm, &args); |
| 423 | |
| 424 | if (ctx->pwm_value) { |
| 425 | ret = pwm_config(ctx->pwm, 0, args.period); |
| 426 | if (ret < 0) |
| 427 | return ret; |
| 428 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 429 | pwm_disable(ctx->pwm); |
Thierry Reding | 95dcd64 | 2018-09-21 12:10:48 +0200 | [diff] [blame] | 430 | } |
| 431 | |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 432 | if (ctx->reg_en) { |
| 433 | ret = regulator_disable(ctx->reg_en); |
| 434 | if (ret) { |
| 435 | dev_err(dev, "Failed to disable fan supply: %d\n", ret); |
| 436 | return ret; |
| 437 | } |
| 438 | } |
| 439 | |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 440 | return 0; |
| 441 | } |
| 442 | |
| 443 | static int pwm_fan_resume(struct device *dev) |
| 444 | { |
| 445 | struct pwm_fan_ctx *ctx = dev_get_drvdata(dev); |
Boris Brezillon | 2289711 | 2016-04-14 21:17:24 +0200 | [diff] [blame] | 446 | struct pwm_args pargs; |
Kamil Debski | 48b9d5b | 2014-11-03 15:42:55 +0100 | [diff] [blame] | 447 | unsigned long duty; |
| 448 | int ret; |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 449 | |
Stefan Wahren | b57e1d4 | 2019-02-22 14:45:24 +0100 | [diff] [blame] | 450 | if (ctx->reg_en) { |
| 451 | ret = regulator_enable(ctx->reg_en); |
| 452 | if (ret) { |
| 453 | dev_err(dev, "Failed to enable fan supply: %d\n", ret); |
| 454 | return ret; |
| 455 | } |
| 456 | } |
| 457 | |
Kamil Debski | 48b9d5b | 2014-11-03 15:42:55 +0100 | [diff] [blame] | 458 | if (ctx->pwm_value == 0) |
| 459 | return 0; |
| 460 | |
Boris Brezillon | 2289711 | 2016-04-14 21:17:24 +0200 | [diff] [blame] | 461 | pwm_get_args(ctx->pwm, &pargs); |
| 462 | duty = DIV_ROUND_UP(ctx->pwm_value * (pargs.period - 1), MAX_PWM); |
| 463 | ret = pwm_config(ctx->pwm, duty, pargs.period); |
Kamil Debski | 48b9d5b | 2014-11-03 15:42:55 +0100 | [diff] [blame] | 464 | if (ret) |
| 465 | return ret; |
| 466 | return pwm_enable(ctx->pwm); |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 467 | } |
| 468 | #endif |
| 469 | |
| 470 | static SIMPLE_DEV_PM_OPS(pwm_fan_pm, pwm_fan_suspend, pwm_fan_resume); |
| 471 | |
Fabian Frederick | d720aca | 2015-03-16 20:54:36 +0100 | [diff] [blame] | 472 | static const struct of_device_id of_pwm_fan_match[] = { |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 473 | { .compatible = "pwm-fan", }, |
| 474 | {}, |
| 475 | }; |
Luis de Bethencourt | f491e70 | 2015-09-17 18:09:55 +0200 | [diff] [blame] | 476 | MODULE_DEVICE_TABLE(of, of_pwm_fan_match); |
Kamil Debski | d82d577 | 2014-07-16 17:46:42 +0200 | [diff] [blame] | 477 | |
| 478 | static struct platform_driver pwm_fan_driver = { |
| 479 | .probe = pwm_fan_probe, |
| 480 | .remove = pwm_fan_remove, |
| 481 | .driver = { |
| 482 | .name = "pwm-fan", |
| 483 | .pm = &pwm_fan_pm, |
| 484 | .of_match_table = of_pwm_fan_match, |
| 485 | }, |
| 486 | }; |
| 487 | |
| 488 | module_platform_driver(pwm_fan_driver); |
| 489 | |
| 490 | MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>"); |
| 491 | MODULE_ALIAS("platform:pwm-fan"); |
| 492 | MODULE_DESCRIPTION("PWM FAN driver"); |
| 493 | MODULE_LICENSE("GPL"); |