]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/leds/leds-pwm.c
Merge branch 'work.uaccess-unaligned' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.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>
41c42ff5 17#include <linux/platform_device.h>
08541cbc 18#include <linux/of_platform.h>
41c42ff5
LF
19#include <linux/fb.h>
20#include <linux/leds.h>
21#include <linux/err.h>
22#include <linux/pwm.h>
23#include <linux/leds_pwm.h>
5a0e3ad6 24#include <linux/slab.h>
41c42ff5
LF
25
26struct led_pwm_data {
27 struct led_classdev cdev;
28 struct pwm_device *pwm;
dcba9105 29 unsigned int active_low;
41c42ff5 30 unsigned int period;
c971ff18 31 int duty;
41c42ff5
LF
32};
33
0f86815a
PU
34struct led_pwm_priv {
35 int num_leds;
36 struct led_pwm_data leds[0];
37};
38
c971ff18
FV
39static void __led_pwm_set(struct led_pwm_data *led_dat)
40{
41 int new_duty = led_dat->duty;
42
43 pwm_config(led_dat->pwm, new_duty, led_dat->period);
44
45 if (new_duty == 0)
46 pwm_disable(led_dat->pwm);
47 else
48 pwm_enable(led_dat->pwm);
49}
50
247bde13
TR
51static int led_pwm_set(struct led_classdev *led_cdev,
52 enum led_brightness brightness)
41c42ff5
LF
53{
54 struct led_pwm_data *led_dat =
55 container_of(led_cdev, struct led_pwm_data, cdev);
e4590620 56 unsigned int max = led_dat->cdev.max_brightness;
fc1aee03 57 unsigned long long duty = led_dat->period;
41c42ff5 58
fc1aee03
XL
59 duty *= brightness;
60 do_div(duty, max);
d19a8a70
RK
61
62 if (led_dat->active_low)
63 duty = led_dat->period - duty;
64
fc1aee03 65 led_dat->duty = duty;
c971ff18 66
9aa07625 67 __led_pwm_set(led_dat);
9aa07625 68
9aa07625 69 return 0;
41c42ff5
LF
70}
71
0f86815a
PU
72static inline size_t sizeof_pwm_leds_priv(int num_leds)
73{
74 return sizeof(struct led_pwm_priv) +
75 (sizeof(struct led_pwm_data) * num_leds);
76}
77
39236901
RK
78static void led_pwm_cleanup(struct led_pwm_priv *priv)
79{
9aa07625 80 while (priv->num_leds--)
39236901 81 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
39236901
RK
82}
83
5f7b03dc 84static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
b795e6d9 85 struct led_pwm *led, struct device_node *child)
41c42ff5 86{
5f7b03dc 87 struct led_pwm_data *led_data = &priv->leds[priv->num_leds];
1b50673d 88 struct pwm_args pargs;
aa1a6d6d 89 int ret;
41c42ff5 90
5f7b03dc 91 led_data->active_low = led->active_low;
5f7b03dc
RK
92 led_data->cdev.name = led->name;
93 led_data->cdev.default_trigger = led->default_trigger;
5f7b03dc
RK
94 led_data->cdev.brightness = LED_OFF;
95 led_data->cdev.max_brightness = led->max_brightness;
96 led_data->cdev.flags = LED_CORE_SUSPENDRESUME;
41c42ff5 97
b795e6d9
RK
98 if (child)
99 led_data->pwm = devm_of_pwm_get(dev, child, NULL);
100 else
101 led_data->pwm = devm_pwm_get(dev, led->name);
5f7b03dc
RK
102 if (IS_ERR(led_data->pwm)) {
103 ret = PTR_ERR(led_data->pwm);
104 dev_err(dev, "unable to request PWM for %s: %d\n",
105 led->name, ret);
106 return ret;
107 }
08541cbc 108
247bde13 109 led_data->cdev.brightness_set_blocking = led_pwm_set;
41c42ff5 110
1b50673d
BB
111 /*
112 * FIXME: pwm_apply_args() should be removed when switching to the
113 * atomic PWM API.
114 */
115 pwm_apply_args(led_data->pwm);
116
117 pwm_get_args(led_data->pwm, &pargs);
118
119 led_data->period = pargs.period;
7c574cf6
LT
120 if (!led_data->period && (led->pwm_period_ns > 0))
121 led_data->period = led->pwm_period_ns;
41c42ff5 122
5f7b03dc
RK
123 ret = led_classdev_register(dev, &led_data->cdev);
124 if (ret == 0) {
125 priv->num_leds++;
f1670336 126 led_pwm_set(&led_data->cdev, led_data->cdev.brightness);
5f7b03dc
RK
127 } else {
128 dev_err(dev, "failed to register PWM led for %s: %d\n",
129 led->name, ret);
130 }
131
132 return ret;
133}
c971ff18 134
b795e6d9 135static int led_pwm_create_of(struct device *dev, struct led_pwm_priv *priv)
41c42ff5 136{
08541cbc 137 struct device_node *child;
b795e6d9
RK
138 struct led_pwm led;
139 int ret = 0;
41c42ff5 140
b795e6d9 141 memset(&led, 0, sizeof(led));
08541cbc 142
b795e6d9
RK
143 for_each_child_of_node(dev->of_node, child) {
144 led.name = of_get_property(child, "label", NULL) ? :
145 child->name;
08541cbc 146
b795e6d9 147 led.default_trigger = of_get_property(child,
08541cbc 148 "linux,default-trigger", NULL);
b0571e7e 149 led.active_low = of_property_read_bool(child, "active-low");
08541cbc 150 of_property_read_u32(child, "max-brightness",
b795e6d9 151 &led.max_brightness);
c971ff18 152
b795e6d9
RK
153 ret = led_pwm_add(dev, priv, &led, child);
154 if (ret) {
08541cbc 155 of_node_put(child);
b795e6d9 156 break;
08541cbc 157 }
08541cbc
PU
158 }
159
aa1a6d6d 160 return ret;
08541cbc
PU
161}
162
163static int led_pwm_probe(struct platform_device *pdev)
164{
87aae1ea 165 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
08541cbc 166 struct led_pwm_priv *priv;
aa1a6d6d
PU
167 int count, i;
168 int ret = 0;
169
170 if (pdata)
171 count = pdata->num_leds;
172 else
173 count = of_get_child_count(pdev->dev.of_node);
174
175 if (!count)
176 return -EINVAL;
08541cbc 177
aa1a6d6d
PU
178 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
179 GFP_KERNEL);
180 if (!priv)
181 return -ENOMEM;
08541cbc 182
aa1a6d6d
PU
183 if (pdata) {
184 for (i = 0; i < count; i++) {
b795e6d9
RK
185 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i],
186 NULL);
5f7b03dc
RK
187 if (ret)
188 break;
08541cbc 189 }
08541cbc 190 } else {
b795e6d9 191 ret = led_pwm_create_of(&pdev->dev, priv);
5f7b03dc
RK
192 }
193
194 if (ret) {
195 led_pwm_cleanup(priv);
196 return ret;
41c42ff5
LF
197 }
198
0f86815a 199 platform_set_drvdata(pdev, priv);
41c42ff5
LF
200
201 return 0;
41c42ff5
LF
202}
203
678e8a6b 204static int led_pwm_remove(struct platform_device *pdev)
41c42ff5 205{
0f86815a 206 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
41c42ff5 207
39236901 208 led_pwm_cleanup(priv);
41c42ff5 209
41c42ff5
LF
210 return 0;
211}
212
08541cbc
PU
213static const struct of_device_id of_pwm_leds_match[] = {
214 { .compatible = "pwm-leds", },
215 {},
216};
217MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
218
41c42ff5
LF
219static struct platform_driver led_pwm_driver = {
220 .probe = led_pwm_probe,
df07cf81 221 .remove = led_pwm_remove,
41c42ff5
LF
222 .driver = {
223 .name = "leds_pwm",
1e08f72d 224 .of_match_table = of_pwm_leds_match,
41c42ff5
LF
225 },
226};
227
892a8843 228module_platform_driver(led_pwm_driver);
41c42ff5
LF
229
230MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
49651c6c
UKK
231MODULE_DESCRIPTION("generic PWM LED driver");
232MODULE_LICENSE("GPL v2");
41c42ff5 233MODULE_ALIAS("platform:leds-pwm");