blob: 203e332967b2aa765fb35493f255c200caf7a0b5 [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>
Luotao Fu41c42ff2009-02-11 13:24:40 -080017#include <linux/platform_device.h>
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080018#include <linux/of_platform.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080019#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Florian Vaussardc971ff12013-01-28 06:00:59 -080025#include <linux/workqueue.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080026
27struct led_pwm_data {
28 struct led_classdev cdev;
29 struct pwm_device *pwm;
Florian Vaussardc971ff12013-01-28 06:00:59 -080030 struct work_struct work;
Sachin Kamatdcba9102012-11-25 12:24:55 +053031 unsigned int active_low;
Luotao Fu41c42ff2009-02-11 13:24:40 -080032 unsigned int period;
Florian Vaussardc971ff12013-01-28 06:00:59 -080033 int duty;
34 bool can_sleep;
Luotao Fu41c42ff2009-02-11 13:24:40 -080035};
36
Peter Ujfalusi0f868152012-12-21 01:43:56 -080037struct led_pwm_priv {
38 int num_leds;
39 struct led_pwm_data leds[0];
40};
41
Florian Vaussardc971ff12013-01-28 06:00:59 -080042static void __led_pwm_set(struct led_pwm_data *led_dat)
43{
44 int new_duty = led_dat->duty;
45
46 pwm_config(led_dat->pwm, new_duty, led_dat->period);
47
48 if (new_duty == 0)
49 pwm_disable(led_dat->pwm);
50 else
51 pwm_enable(led_dat->pwm);
52}
53
54static void led_pwm_work(struct work_struct *work)
55{
56 struct led_pwm_data *led_dat =
57 container_of(work, struct led_pwm_data, work);
58
59 __led_pwm_set(led_dat);
60}
61
Luotao Fu41c42ff2009-02-11 13:24:40 -080062static void led_pwm_set(struct led_classdev *led_cdev,
63 enum led_brightness brightness)
64{
65 struct led_pwm_data *led_dat =
66 container_of(led_cdev, struct led_pwm_data, cdev);
Lars-Peter Clausene4590622009-11-27 06:17:38 +010067 unsigned int max = led_dat->cdev.max_brightness;
Xiubo Lifc1aee02013-12-11 01:19:42 -080068 unsigned long long duty = led_dat->period;
Luotao Fu41c42ff2009-02-11 13:24:40 -080069
Xiubo Lifc1aee02013-12-11 01:19:42 -080070 duty *= brightness;
71 do_div(duty, max);
72 led_dat->duty = duty;
Florian Vaussardc971ff12013-01-28 06:00:59 -080073
74 if (led_dat->can_sleep)
75 schedule_work(&led_dat->work);
76 else
77 __led_pwm_set(led_dat);
Luotao Fu41c42ff2009-02-11 13:24:40 -080078}
79
Peter Ujfalusi0f868152012-12-21 01:43:56 -080080static inline size_t sizeof_pwm_leds_priv(int num_leds)
81{
82 return sizeof(struct led_pwm_priv) +
83 (sizeof(struct led_pwm_data) * num_leds);
84}
85
Russell King39236902014-04-06 15:20:03 -070086static void led_pwm_cleanup(struct led_pwm_priv *priv)
87{
88 while (priv->num_leds--) {
89 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
90 if (priv->leds[priv->num_leds].can_sleep)
91 cancel_work_sync(&priv->leds[priv->num_leds].work);
92 }
93}
94
Russell King5f7b03d2014-04-06 15:20:08 -070095static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
96 struct led_pwm *led)
97{
98 struct led_pwm_data *led_data = &priv->leds[priv->num_leds];
99 int ret;
100
101 led_data->active_low = led->active_low;
102 led_data->period = led->pwm_period_ns;
103 led_data->cdev.name = led->name;
104 led_data->cdev.default_trigger = led->default_trigger;
105 led_data->cdev.brightness_set = led_pwm_set;
106 led_data->cdev.brightness = LED_OFF;
107 led_data->cdev.max_brightness = led->max_brightness;
108 led_data->cdev.flags = LED_CORE_SUSPENDRESUME;
109
110 led_data->pwm = devm_pwm_get(dev, led->name);
111 if (IS_ERR(led_data->pwm)) {
112 ret = PTR_ERR(led_data->pwm);
113 dev_err(dev, "unable to request PWM for %s: %d\n",
114 led->name, ret);
115 return ret;
116 }
117
118 led_data->can_sleep = pwm_can_sleep(led_data->pwm);
119 if (led_data->can_sleep)
120 INIT_WORK(&led_data->work, led_pwm_work);
121
122 ret = led_classdev_register(dev, &led_data->cdev);
123 if (ret == 0) {
124 priv->num_leds++;
125 } else {
126 dev_err(dev, "failed to register PWM led for %s: %d\n",
127 led->name, ret);
128 }
129
130 return ret;
131}
132
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800133static int led_pwm_create_of(struct platform_device *pdev,
134 struct led_pwm_priv *priv)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800135{
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800136 struct device_node *child;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800137 int ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800138
Olof Johansson33fc9452013-12-11 16:11:42 -0800139 for_each_child_of_node(pdev->dev.of_node, child) {
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800140 struct led_pwm_data *led_dat = &priv->leds[priv->num_leds];
141
142 led_dat->cdev.name = of_get_property(child, "label",
143 NULL) ? : child->name;
144
145 led_dat->pwm = devm_of_pwm_get(&pdev->dev, child, NULL);
146 if (IS_ERR(led_dat->pwm)) {
147 dev_err(&pdev->dev, "unable to request PWM for %s\n",
148 led_dat->cdev.name);
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800149 ret = PTR_ERR(led_dat->pwm);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800150 goto err;
151 }
152 /* Get the period from PWM core when n*/
153 led_dat->period = pwm_get_period(led_dat->pwm);
154
155 led_dat->cdev.default_trigger = of_get_property(child,
156 "linux,default-trigger", NULL);
157 of_property_read_u32(child, "max-brightness",
158 &led_dat->cdev.max_brightness);
159
160 led_dat->cdev.brightness_set = led_pwm_set;
161 led_dat->cdev.brightness = LED_OFF;
162 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
163
Florian Vaussardc971ff12013-01-28 06:00:59 -0800164 led_dat->can_sleep = pwm_can_sleep(led_dat->pwm);
165 if (led_dat->can_sleep)
166 INIT_WORK(&led_dat->work, led_pwm_work);
167
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800168 ret = led_classdev_register(&pdev->dev, &led_dat->cdev);
169 if (ret < 0) {
170 dev_err(&pdev->dev, "failed to register for %s\n",
171 led_dat->cdev.name);
172 of_node_put(child);
173 goto err;
174 }
175 priv->num_leds++;
176 }
177
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800178 return 0;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800179err:
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800180 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800181}
182
Luotao Fu41c42ff2009-02-11 13:24:40 -0800183static int led_pwm_probe(struct platform_device *pdev)
184{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700185 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800186 struct led_pwm_priv *priv;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800187 int count, i;
188 int ret = 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800189
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800190 if (pdata)
191 count = pdata->num_leds;
192 else
193 count = of_get_child_count(pdev->dev.of_node);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800194
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800195 if (!count)
196 return -EINVAL;
197
198 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
199 GFP_KERNEL);
200 if (!priv)
201 return -ENOMEM;
202
203 if (pdata) {
204 for (i = 0; i < count; i++) {
Russell King5f7b03d2014-04-06 15:20:08 -0700205 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i]);
206 if (ret)
207 break;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800208 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800209 } else {
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800210 ret = led_pwm_create_of(pdev, priv);
Russell King5f7b03d2014-04-06 15:20:08 -0700211 }
212
213 if (ret) {
214 led_pwm_cleanup(priv);
215 return ret;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800216 }
217
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800218 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800219
220 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800221}
222
Bill Pemberton678e8a62012-11-19 13:26:00 -0500223static int led_pwm_remove(struct platform_device *pdev)
Luotao Fu41c42ff2009-02-11 13:24:40 -0800224{
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800225 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800226
Russell King39236902014-04-06 15:20:03 -0700227 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800228
Luotao Fu41c42ff2009-02-11 13:24:40 -0800229 return 0;
230}
231
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800232static const struct of_device_id of_pwm_leds_match[] = {
233 { .compatible = "pwm-leds", },
234 {},
235};
236MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
237
Luotao Fu41c42ff2009-02-11 13:24:40 -0800238static struct platform_driver led_pwm_driver = {
239 .probe = led_pwm_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500240 .remove = led_pwm_remove,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800241 .driver = {
242 .name = "leds_pwm",
243 .owner = THIS_MODULE,
Sachin Kamat1e08f722013-09-28 04:38:31 -0700244 .of_match_table = of_pwm_leds_match,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800245 },
246};
247
Axel Lin892a8842012-01-10 15:09:24 -0800248module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800249
250MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
251MODULE_DESCRIPTION("PWM LED driver for PXA");
252MODULE_LICENSE("GPL");
253MODULE_ALIAS("platform:leds-pwm");