blob: 5d64b2431415d9ea389c435850fd78851e2a86a8 [file] [log] [blame]
Luotao Fu41c42ff2009-02-11 13:24:40 -08001/*
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>
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080019#include <linux/of_platform.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080020#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Florian Vaussardc971ff12013-01-28 06:00:59 -080026#include <linux/workqueue.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080027
28struct led_pwm_data {
29 struct led_classdev cdev;
30 struct pwm_device *pwm;
Florian Vaussardc971ff12013-01-28 06:00:59 -080031 struct work_struct work;
Sachin Kamatdcba9102012-11-25 12:24:55 +053032 unsigned int active_low;
Luotao Fu41c42ff2009-02-11 13:24:40 -080033 unsigned int period;
Florian Vaussardc971ff12013-01-28 06:00:59 -080034 int duty;
35 bool can_sleep;
Luotao Fu41c42ff2009-02-11 13:24:40 -080036};
37
Peter Ujfalusi0f868152012-12-21 01:43:56 -080038struct led_pwm_priv {
39 int num_leds;
40 struct led_pwm_data leds[0];
41};
42
Florian Vaussardc971ff12013-01-28 06:00:59 -080043static 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
Luotao Fu41c42ff2009-02-11 13:24:40 -080063static 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);
Lars-Peter Clausene4590622009-11-27 06:17:38 +010068 unsigned int max = led_dat->cdev.max_brightness;
Luotao Fu41c42ff2009-02-11 13:24:40 -080069 unsigned int period = led_dat->period;
70
Florian Vaussardc971ff12013-01-28 06:00:59 -080071 led_dat->duty = brightness * period / max;
72
73 if (led_dat->can_sleep)
74 schedule_work(&led_dat->work);
75 else
76 __led_pwm_set(led_dat);
Luotao Fu41c42ff2009-02-11 13:24:40 -080077}
78
Peter Ujfalusi0f868152012-12-21 01:43:56 -080079static inline size_t sizeof_pwm_leds_priv(int num_leds)
80{
81 return sizeof(struct led_pwm_priv) +
82 (sizeof(struct led_pwm_data) * num_leds);
83}
84
Russell King5d33fff2014-04-06 15:20:03 -070085static void led_pwm_cleanup(struct led_pwm_priv *priv)
86{
87 while (priv->num_leds--) {
88 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
89 if (priv->leds[priv->num_leds].can_sleep)
90 cancel_work_sync(&priv->leds[priv->num_leds].work);
91 }
92}
93
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080094static struct led_pwm_priv *led_pwm_create_of(struct platform_device *pdev)
95{
96 struct device_node *node = pdev->dev.of_node;
97 struct device_node *child;
98 struct led_pwm_priv *priv;
99 int count, ret;
100
101 /* count LEDs in this device, so we know how much to allocate */
102 count = of_get_child_count(node);
103 if (!count)
104 return NULL;
105
106 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
107 GFP_KERNEL);
108 if (!priv)
109 return NULL;
110
111 for_each_child_of_node(node, child) {
112 struct led_pwm_data *led_dat = &priv->leds[priv->num_leds];
113
114 led_dat->cdev.name = of_get_property(child, "label",
115 NULL) ? : child->name;
116
117 led_dat->pwm = devm_of_pwm_get(&pdev->dev, child, NULL);
118 if (IS_ERR(led_dat->pwm)) {
119 dev_err(&pdev->dev, "unable to request PWM for %s\n",
120 led_dat->cdev.name);
121 goto err;
122 }
123 /* Get the period from PWM core when n*/
124 led_dat->period = pwm_get_period(led_dat->pwm);
125
126 led_dat->cdev.default_trigger = of_get_property(child,
127 "linux,default-trigger", NULL);
128 of_property_read_u32(child, "max-brightness",
129 &led_dat->cdev.max_brightness);
130
131 led_dat->cdev.brightness_set = led_pwm_set;
132 led_dat->cdev.brightness = LED_OFF;
133 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
134
Florian Vaussardc971ff12013-01-28 06:00:59 -0800135 led_dat->can_sleep = pwm_can_sleep(led_dat->pwm);
136 if (led_dat->can_sleep)
137 INIT_WORK(&led_dat->work, led_pwm_work);
138
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800139 ret = led_classdev_register(&pdev->dev, &led_dat->cdev);
140 if (ret < 0) {
141 dev_err(&pdev->dev, "failed to register for %s\n",
142 led_dat->cdev.name);
143 of_node_put(child);
144 goto err;
145 }
146 priv->num_leds++;
147 }
148
149 return priv;
150err:
Russell King5d33fff2014-04-06 15:20:03 -0700151 led_pwm_cleanup(priv);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800152
153 return NULL;
154}
155
Luotao Fu41c42ff2009-02-11 13:24:40 -0800156static int led_pwm_probe(struct platform_device *pdev)
157{
158 struct led_pwm_platform_data *pdata = pdev->dev.platform_data;
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800159 struct led_pwm_priv *priv;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800160 int i, ret = 0;
161
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800162 if (pdata && pdata->num_leds) {
163 priv = devm_kzalloc(&pdev->dev,
164 sizeof_pwm_leds_priv(pdata->num_leds),
165 GFP_KERNEL);
166 if (!priv)
167 return -ENOMEM;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800168
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800169 for (i = 0; i < pdata->num_leds; i++) {
170 struct led_pwm *cur_led = &pdata->leds[i];
171 struct led_pwm_data *led_dat = &priv->leds[i];
Luotao Fu41c42ff2009-02-11 13:24:40 -0800172
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800173 led_dat->pwm = devm_pwm_get(&pdev->dev, cur_led->name);
174 if (IS_ERR(led_dat->pwm)) {
175 ret = PTR_ERR(led_dat->pwm);
176 dev_err(&pdev->dev,
177 "unable to request PWM for %s\n",
178 cur_led->name);
179 goto err;
180 }
Luotao Fu41c42ff2009-02-11 13:24:40 -0800181
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800182 led_dat->cdev.name = cur_led->name;
183 led_dat->cdev.default_trigger = cur_led->default_trigger;
184 led_dat->active_low = cur_led->active_low;
185 led_dat->period = cur_led->pwm_period_ns;
186 led_dat->cdev.brightness_set = led_pwm_set;
187 led_dat->cdev.brightness = LED_OFF;
188 led_dat->cdev.max_brightness = cur_led->max_brightness;
189 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
190
Florian Vaussardc971ff12013-01-28 06:00:59 -0800191 led_dat->can_sleep = pwm_can_sleep(led_dat->pwm);
192 if (led_dat->can_sleep)
193 INIT_WORK(&led_dat->work, led_pwm_work);
194
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800195 ret = led_classdev_register(&pdev->dev, &led_dat->cdev);
196 if (ret < 0)
197 goto err;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800198 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800199 priv->num_leds = pdata->num_leds;
200 } else {
201 priv = led_pwm_create_of(pdev);
202 if (!priv)
203 return -ENODEV;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800204 }
205
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800206 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800207
208 return 0;
209
210err:
Russell King5d33fff2014-04-06 15:20:03 -0700211 priv->num_leds = i;
212 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800213
Luotao Fu41c42ff2009-02-11 13:24:40 -0800214 return ret;
215}
216
Bill Pemberton678e8a62012-11-19 13:26:00 -0500217static int led_pwm_remove(struct platform_device *pdev)
Luotao Fu41c42ff2009-02-11 13:24:40 -0800218{
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800219 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800220
Russell King5d33fff2014-04-06 15:20:03 -0700221 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800222
Luotao Fu41c42ff2009-02-11 13:24:40 -0800223 return 0;
224}
225
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800226static const struct of_device_id of_pwm_leds_match[] = {
227 { .compatible = "pwm-leds", },
228 {},
229};
230MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
231
Luotao Fu41c42ff2009-02-11 13:24:40 -0800232static struct platform_driver led_pwm_driver = {
233 .probe = led_pwm_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500234 .remove = led_pwm_remove,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800235 .driver = {
236 .name = "leds_pwm",
237 .owner = THIS_MODULE,
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800238 .of_match_table = of_match_ptr(of_pwm_leds_match),
Luotao Fu41c42ff2009-02-11 13:24:40 -0800239 },
240};
241
Axel Lin892a8842012-01-10 15:09:24 -0800242module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800243
244MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
245MODULE_DESCRIPTION("PWM LED driver for PXA");
246MODULE_LICENSE("GPL");
247MODULE_ALIAS("platform:leds-pwm");