leds: leds-pwm: fix duty time overflow.
[deliverable/linux.git] / drivers / leds / leds-pwm.c
CommitLineData
41c42ff5
LF
1/*
2 * linux/drivers/leds-pwm.c
3 *
4 * simple PWM based LED control
5 *
6 * Copyright 2009 Luotao Fu @ Pengutronix (l.fu@pengutronix.de)
7 *
8 * based on leds-gpio.c by Raphael Assenat <raph@8d.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/platform_device.h>
08541cbc 19#include <linux/of_platform.h>
41c42ff5
LF
20#include <linux/fb.h>
21#include <linux/leds.h>
22#include <linux/err.h>
23#include <linux/pwm.h>
24#include <linux/leds_pwm.h>
5a0e3ad6 25#include <linux/slab.h>
c971ff18 26#include <linux/workqueue.h>
41c42ff5
LF
27
28struct led_pwm_data {
29 struct led_classdev cdev;
30 struct pwm_device *pwm;
c971ff18 31 struct work_struct work;
dcba9105 32 unsigned int active_low;
41c42ff5 33 unsigned int period;
c971ff18
FV
34 int duty;
35 bool can_sleep;
41c42ff5
LF
36};
37
0f86815a
PU
38struct led_pwm_priv {
39 int num_leds;
40 struct led_pwm_data leds[0];
41};
42
c971ff18
FV
43static void __led_pwm_set(struct led_pwm_data *led_dat)
44{
45 int new_duty = led_dat->duty;
46
47 pwm_config(led_dat->pwm, new_duty, led_dat->period);
48
49 if (new_duty == 0)
50 pwm_disable(led_dat->pwm);
51 else
52 pwm_enable(led_dat->pwm);
53}
54
55static void led_pwm_work(struct work_struct *work)
56{
57 struct led_pwm_data *led_dat =
58 container_of(work, struct led_pwm_data, work);
59
60 __led_pwm_set(led_dat);
61}
62
41c42ff5
LF
63static void led_pwm_set(struct led_classdev *led_cdev,
64 enum led_brightness brightness)
65{
66 struct led_pwm_data *led_dat =
67 container_of(led_cdev, struct led_pwm_data, cdev);
e4590620 68 unsigned int max = led_dat->cdev.max_brightness;
fc1aee03 69 unsigned long long duty = led_dat->period;
41c42ff5 70
fc1aee03
XL
71 duty *= brightness;
72 do_div(duty, max);
73 led_dat->duty = duty;
c971ff18
FV
74
75 if (led_dat->can_sleep)
76 schedule_work(&led_dat->work);
77 else
78 __led_pwm_set(led_dat);
41c42ff5
LF
79}
80
0f86815a
PU
81static inline size_t sizeof_pwm_leds_priv(int num_leds)
82{
83 return sizeof(struct led_pwm_priv) +
84 (sizeof(struct led_pwm_data) * num_leds);
85}
86
aa1a6d6d
PU
87static int led_pwm_create_of(struct platform_device *pdev,
88 struct led_pwm_priv *priv)
41c42ff5 89{
08541cbc
PU
90 struct device_node *node = pdev->dev.of_node;
91 struct device_node *child;
aa1a6d6d 92 int ret;
41c42ff5 93
08541cbc
PU
94 for_each_child_of_node(node, child) {
95 struct led_pwm_data *led_dat = &priv->leds[priv->num_leds];
41c42ff5 96
08541cbc
PU
97 led_dat->cdev.name = of_get_property(child, "label",
98 NULL) ? : child->name;
99
100 led_dat->pwm = devm_of_pwm_get(&pdev->dev, child, NULL);
41c42ff5 101 if (IS_ERR(led_dat->pwm)) {
9ea6cdac 102 dev_err(&pdev->dev, "unable to request PWM for %s\n",
08541cbc 103 led_dat->cdev.name);
aa1a6d6d 104 ret = PTR_ERR(led_dat->pwm);
41c42ff5
LF
105 goto err;
106 }
08541cbc
PU
107 /* Get the period from PWM core when n*/
108 led_dat->period = pwm_get_period(led_dat->pwm);
109
110 led_dat->cdev.default_trigger = of_get_property(child,
111 "linux,default-trigger", NULL);
112 of_property_read_u32(child, "max-brightness",
113 &led_dat->cdev.max_brightness);
41c42ff5 114
41c42ff5
LF
115 led_dat->cdev.brightness_set = led_pwm_set;
116 led_dat->cdev.brightness = LED_OFF;
117 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
118
c971ff18
FV
119 led_dat->can_sleep = pwm_can_sleep(led_dat->pwm);
120 if (led_dat->can_sleep)
121 INIT_WORK(&led_dat->work, led_pwm_work);
122
41c42ff5 123 ret = led_classdev_register(&pdev->dev, &led_dat->cdev);
08541cbc
PU
124 if (ret < 0) {
125 dev_err(&pdev->dev, "failed to register for %s\n",
126 led_dat->cdev.name);
127 of_node_put(child);
41c42ff5 128 goto err;
08541cbc
PU
129 }
130 priv->num_leds++;
131 }
132
aa1a6d6d 133 return 0;
08541cbc
PU
134err:
135 while (priv->num_leds--)
136 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
137
aa1a6d6d 138 return ret;
08541cbc
PU
139}
140
141static int led_pwm_probe(struct platform_device *pdev)
142{
87aae1ea 143 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
08541cbc 144 struct led_pwm_priv *priv;
aa1a6d6d
PU
145 int count, i;
146 int ret = 0;
147
148 if (pdata)
149 count = pdata->num_leds;
150 else
151 count = of_get_child_count(pdev->dev.of_node);
152
153 if (!count)
154 return -EINVAL;
08541cbc 155
aa1a6d6d
PU
156 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
157 GFP_KERNEL);
158 if (!priv)
159 return -ENOMEM;
08541cbc 160
aa1a6d6d
PU
161 if (pdata) {
162 for (i = 0; i < count; i++) {
08541cbc
PU
163 struct led_pwm *cur_led = &pdata->leds[i];
164 struct led_pwm_data *led_dat = &priv->leds[i];
165
166 led_dat->pwm = devm_pwm_get(&pdev->dev, cur_led->name);
167 if (IS_ERR(led_dat->pwm)) {
168 ret = PTR_ERR(led_dat->pwm);
169 dev_err(&pdev->dev,
170 "unable to request PWM for %s\n",
171 cur_led->name);
172 goto err;
173 }
174
175 led_dat->cdev.name = cur_led->name;
176 led_dat->cdev.default_trigger = cur_led->default_trigger;
177 led_dat->active_low = cur_led->active_low;
178 led_dat->period = cur_led->pwm_period_ns;
179 led_dat->cdev.brightness_set = led_pwm_set;
180 led_dat->cdev.brightness = LED_OFF;
181 led_dat->cdev.max_brightness = cur_led->max_brightness;
182 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
183
c971ff18
FV
184 led_dat->can_sleep = pwm_can_sleep(led_dat->pwm);
185 if (led_dat->can_sleep)
186 INIT_WORK(&led_dat->work, led_pwm_work);
187
08541cbc
PU
188 ret = led_classdev_register(&pdev->dev, &led_dat->cdev);
189 if (ret < 0)
190 goto err;
191 }
aa1a6d6d 192 priv->num_leds = count;
08541cbc 193 } else {
aa1a6d6d
PU
194 ret = led_pwm_create_of(pdev, priv);
195 if (ret)
196 return ret;
41c42ff5
LF
197 }
198
0f86815a 199 platform_set_drvdata(pdev, priv);
41c42ff5
LF
200
201 return 0;
202
203err:
8a66a579
PU
204 while (i--)
205 led_classdev_unregister(&priv->leds[i].cdev);
41c42ff5 206
41c42ff5
LF
207 return ret;
208}
209
678e8a6b 210static int led_pwm_remove(struct platform_device *pdev)
41c42ff5 211{
0f86815a 212 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
41c42ff5 213 int i;
41c42ff5 214
c971ff18 215 for (i = 0; i < priv->num_leds; i++) {
0f86815a 216 led_classdev_unregister(&priv->leds[i].cdev);
c971ff18
FV
217 if (priv->leds[i].can_sleep)
218 cancel_work_sync(&priv->leds[i].work);
219 }
41c42ff5 220
41c42ff5
LF
221 return 0;
222}
223
08541cbc
PU
224static const struct of_device_id of_pwm_leds_match[] = {
225 { .compatible = "pwm-leds", },
226 {},
227};
228MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
229
41c42ff5
LF
230static struct platform_driver led_pwm_driver = {
231 .probe = led_pwm_probe,
df07cf81 232 .remove = led_pwm_remove,
41c42ff5
LF
233 .driver = {
234 .name = "leds_pwm",
235 .owner = THIS_MODULE,
1e08f72d 236 .of_match_table = of_pwm_leds_match,
41c42ff5
LF
237 },
238};
239
892a8843 240module_platform_driver(led_pwm_driver);
41c42ff5
LF
241
242MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
243MODULE_DESCRIPTION("PWM LED driver for PXA");
244MODULE_LICENSE("GPL");
245MODULE_ALIAS("platform:leds-pwm");
This page took 0.323759 seconds and 5 git commands to generate.