blob: 8d456dc6c5bfecb68daab1b753754d062e862193 [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>
Luotao Fu41c42ff2009-02-11 13:24:40 -080025
26struct led_pwm_data {
27 struct led_classdev cdev;
28 struct pwm_device *pwm;
Sachin Kamatdcba9102012-11-25 12:24:55 +053029 unsigned int active_low;
Luotao Fu41c42ff2009-02-11 13:24:40 -080030 unsigned int period;
Florian Vaussardc971ff12013-01-28 06:00:59 -080031 int duty;
Luotao Fu41c42ff2009-02-11 13:24:40 -080032};
33
Peter Ujfalusi0f868152012-12-21 01:43:56 -080034struct led_pwm_priv {
35 int num_leds;
36 struct led_pwm_data leds[0];
37};
38
Florian Vaussardc971ff12013-01-28 06:00:59 -080039static 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
Thierry Reding247bde12017-01-04 09:37:56 +010051static int led_pwm_set(struct led_classdev *led_cdev,
52 enum led_brightness brightness)
Luotao Fu41c42ff2009-02-11 13:24:40 -080053{
54 struct led_pwm_data *led_dat =
55 container_of(led_cdev, struct led_pwm_data, cdev);
Lars-Peter Clausene4590622009-11-27 06:17:38 +010056 unsigned int max = led_dat->cdev.max_brightness;
Xiubo Lifc1aee02013-12-11 01:19:42 -080057 unsigned long long duty = led_dat->period;
Luotao Fu41c42ff2009-02-11 13:24:40 -080058
Xiubo Lifc1aee02013-12-11 01:19:42 -080059 duty *= brightness;
60 do_div(duty, max);
Russell Kingd19a8a72014-04-06 15:20:18 -070061
62 if (led_dat->active_low)
63 duty = led_dat->period - duty;
64
Xiubo Lifc1aee02013-12-11 01:19:42 -080065 led_dat->duty = duty;
Florian Vaussardc971ff12013-01-28 06:00:59 -080066
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020067 __led_pwm_set(led_dat);
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020068
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020069 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -080070}
71
Peter Ujfalusi0f868152012-12-21 01:43:56 -080072static 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
Russell King39236902014-04-06 15:20:03 -070078static void led_pwm_cleanup(struct led_pwm_priv *priv)
79{
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020080 while (priv->num_leds--)
Russell King39236902014-04-06 15:20:03 -070081 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
Russell King39236902014-04-06 15:20:03 -070082}
83
Russell King5f7b03d2014-04-06 15:20:08 -070084static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
Russell Kingb795e6d2014-04-06 15:20:13 -070085 struct led_pwm *led, struct device_node *child)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080086{
Russell King5f7b03d2014-04-06 15:20:08 -070087 struct led_pwm_data *led_data = &priv->leds[priv->num_leds];
Boris Brezillon1b506732016-04-14 21:17:26 +020088 struct pwm_args pargs;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -080089 int ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080090
Russell King5f7b03d2014-04-06 15:20:08 -070091 led_data->active_low = led->active_low;
Russell King5f7b03d2014-04-06 15:20:08 -070092 led_data->cdev.name = led->name;
93 led_data->cdev.default_trigger = led->default_trigger;
Russell King5f7b03d2014-04-06 15:20:08 -070094 led_data->cdev.brightness = LED_OFF;
95 led_data->cdev.max_brightness = led->max_brightness;
96 led_data->cdev.flags = LED_CORE_SUSPENDRESUME;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080097
Russell Kingb795e6d2014-04-06 15:20:13 -070098 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);
Russell King5f7b03d2014-04-06 15:20:08 -0700102 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;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800107 }
108
Thierry Reding247bde12017-01-04 09:37:56 +0100109 led_data->cdev.brightness_set_blocking = led_pwm_set;
Russell King5f7b03d2014-04-06 15:20:08 -0700110
Boris Brezillon1b506732016-04-14 21:17:26 +0200111 /*
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;
Linus Torvalds7c574cf2014-06-12 13:08:09 -0700120 if (!led_data->period && (led->pwm_period_ns > 0))
121 led_data->period = led->pwm_period_ns;
122
Russell King5f7b03d2014-04-06 15:20:08 -0700123 ret = led_classdev_register(dev, &led_data->cdev);
124 if (ret == 0) {
125 priv->num_leds++;
Markus Hofstaetterf1670332015-11-11 12:40:29 +0100126 led_pwm_set(&led_data->cdev, led_data->cdev.brightness);
Russell King5f7b03d2014-04-06 15:20:08 -0700127 } else {
128 dev_err(dev, "failed to register PWM led for %s: %d\n",
129 led->name, ret);
130 }
131
132 return ret;
133}
134
Russell Kingb795e6d2014-04-06 15:20:13 -0700135static int led_pwm_create_of(struct device *dev, struct led_pwm_priv *priv)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800136{
137 struct device_node *child;
Russell Kingb795e6d2014-04-06 15:20:13 -0700138 struct led_pwm led;
139 int ret = 0;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800140
Russell Kingb795e6d2014-04-06 15:20:13 -0700141 memset(&led, 0, sizeof(led));
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800142
Russell Kingb795e6d2014-04-06 15:20:13 -0700143 for_each_child_of_node(dev->of_node, child) {
144 led.name = of_get_property(child, "label", NULL) ? :
145 child->name;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800146
Russell Kingb795e6d2014-04-06 15:20:13 -0700147 led.default_trigger = of_get_property(child,
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800148 "linux,default-trigger", NULL);
Russell Kingb0571e72014-04-06 15:20:24 -0700149 led.active_low = of_property_read_bool(child, "active-low");
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800150 of_property_read_u32(child, "max-brightness",
Russell Kingb795e6d2014-04-06 15:20:13 -0700151 &led.max_brightness);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800152
Russell Kingb795e6d2014-04-06 15:20:13 -0700153 ret = led_pwm_add(dev, priv, &led, child);
154 if (ret) {
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800155 of_node_put(child);
Russell Kingb795e6d2014-04-06 15:20:13 -0700156 break;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800157 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800158 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800159
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800160 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800161}
162
Luotao Fu41c42ff2009-02-11 13:24:40 -0800163static int led_pwm_probe(struct platform_device *pdev)
164{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700165 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800166 struct led_pwm_priv *priv;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800167 int count, i;
168 int ret = 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800169
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800170 if (pdata)
171 count = pdata->num_leds;
172 else
173 count = of_get_child_count(pdev->dev.of_node);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800174
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800175 if (!count)
176 return -EINVAL;
177
178 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
179 GFP_KERNEL);
180 if (!priv)
181 return -ENOMEM;
182
183 if (pdata) {
184 for (i = 0; i < count; i++) {
Russell Kingb795e6d2014-04-06 15:20:13 -0700185 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i],
186 NULL);
Russell King5f7b03d2014-04-06 15:20:08 -0700187 if (ret)
188 break;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800189 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800190 } else {
Russell Kingb795e6d2014-04-06 15:20:13 -0700191 ret = led_pwm_create_of(&pdev->dev, priv);
Russell King5f7b03d2014-04-06 15:20:08 -0700192 }
193
194 if (ret) {
195 led_pwm_cleanup(priv);
196 return ret;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800197 }
198
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800199 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800200
201 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800202}
203
Bill Pemberton678e8a62012-11-19 13:26:00 -0500204static int led_pwm_remove(struct platform_device *pdev)
Luotao Fu41c42ff2009-02-11 13:24:40 -0800205{
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800206 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800207
Russell King39236902014-04-06 15:20:03 -0700208 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800209
Luotao Fu41c42ff2009-02-11 13:24:40 -0800210 return 0;
211}
212
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800213static const struct of_device_id of_pwm_leds_match[] = {
214 { .compatible = "pwm-leds", },
215 {},
216};
217MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
218
Luotao Fu41c42ff2009-02-11 13:24:40 -0800219static struct platform_driver led_pwm_driver = {
220 .probe = led_pwm_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500221 .remove = led_pwm_remove,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800222 .driver = {
223 .name = "leds_pwm",
Sachin Kamat1e08f722013-09-28 04:38:31 -0700224 .of_match_table = of_pwm_leds_match,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800225 },
226};
227
Axel Lin892a8842012-01-10 15:09:24 -0800228module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800229
230MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
Uwe Kleine-König49651c62013-11-25 21:43:45 +0100231MODULE_DESCRIPTION("generic PWM LED driver");
232MODULE_LICENSE("GPL v2");
Luotao Fu41c42ff2009-02-11 13:24:40 -0800233MODULE_ALIAS("platform:leds-pwm");