blob: 9328193189ba83681f6d52b9d89a13b3d82916fa [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Luotao Fu41c42ff2009-02-11 13:24:40 -08002/*
3 * linux/drivers/leds-pwm.c
4 *
5 * simple PWM based LED control
6 *
7 * Copyright 2009 Luotao Fu @ Pengutronix (l.fu@pengutronix.de)
8 *
9 * based on leds-gpio.c by Raphael Assenat <raph@8d.com>
Luotao Fu41c42ff2009-02-11 13:24:40 -080010 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080014#include <linux/platform_device.h>
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080015#include <linux/of_platform.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080016#include <linux/leds.h>
17#include <linux/err.h>
18#include <linux/pwm.h>
19#include <linux/leds_pwm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Luotao Fu41c42ff2009-02-11 13:24:40 -080021
22struct led_pwm_data {
23 struct led_classdev cdev;
24 struct pwm_device *pwm;
Sachin Kamatdcba9102012-11-25 12:24:55 +053025 unsigned int active_low;
Luotao Fu41c42ff2009-02-11 13:24:40 -080026 unsigned int period;
Florian Vaussardc971ff12013-01-28 06:00:59 -080027 int duty;
Luotao Fu41c42ff2009-02-11 13:24:40 -080028};
29
Peter Ujfalusi0f868152012-12-21 01:43:56 -080030struct led_pwm_priv {
31 int num_leds;
32 struct led_pwm_data leds[0];
33};
34
Florian Vaussardc971ff12013-01-28 06:00:59 -080035static void __led_pwm_set(struct led_pwm_data *led_dat)
36{
37 int new_duty = led_dat->duty;
38
39 pwm_config(led_dat->pwm, new_duty, led_dat->period);
40
41 if (new_duty == 0)
42 pwm_disable(led_dat->pwm);
43 else
44 pwm_enable(led_dat->pwm);
45}
46
Thierry Reding247bde12017-01-04 09:37:56 +010047static int led_pwm_set(struct led_classdev *led_cdev,
48 enum led_brightness brightness)
Luotao Fu41c42ff2009-02-11 13:24:40 -080049{
50 struct led_pwm_data *led_dat =
51 container_of(led_cdev, struct led_pwm_data, cdev);
Lars-Peter Clausene4590622009-11-27 06:17:38 +010052 unsigned int max = led_dat->cdev.max_brightness;
Xiubo Lifc1aee02013-12-11 01:19:42 -080053 unsigned long long duty = led_dat->period;
Luotao Fu41c42ff2009-02-11 13:24:40 -080054
Xiubo Lifc1aee02013-12-11 01:19:42 -080055 duty *= brightness;
56 do_div(duty, max);
Russell Kingd19a8a72014-04-06 15:20:18 -070057
58 if (led_dat->active_low)
59 duty = led_dat->period - duty;
60
Xiubo Lifc1aee02013-12-11 01:19:42 -080061 led_dat->duty = duty;
Florian Vaussardc971ff12013-01-28 06:00:59 -080062
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020063 __led_pwm_set(led_dat);
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020064
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020065 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -080066}
67
Peter Ujfalusi0f868152012-12-21 01:43:56 -080068static inline size_t sizeof_pwm_leds_priv(int num_leds)
69{
70 return sizeof(struct led_pwm_priv) +
71 (sizeof(struct led_pwm_data) * num_leds);
72}
73
Russell King5f7b03d2014-04-06 15:20:08 -070074static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
Russell Kingb795e6d2014-04-06 15:20:13 -070075 struct led_pwm *led, struct device_node *child)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080076{
Russell King5f7b03d2014-04-06 15:20:08 -070077 struct led_pwm_data *led_data = &priv->leds[priv->num_leds];
Boris Brezillon1b506732016-04-14 21:17:26 +020078 struct pwm_args pargs;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -080079 int ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080080
Russell King5f7b03d2014-04-06 15:20:08 -070081 led_data->active_low = led->active_low;
Russell King5f7b03d2014-04-06 15:20:08 -070082 led_data->cdev.name = led->name;
83 led_data->cdev.default_trigger = led->default_trigger;
Russell King5f7b03d2014-04-06 15:20:08 -070084 led_data->cdev.brightness = LED_OFF;
85 led_data->cdev.max_brightness = led->max_brightness;
86 led_data->cdev.flags = LED_CORE_SUSPENDRESUME;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080087
Russell Kingb795e6d2014-04-06 15:20:13 -070088 if (child)
89 led_data->pwm = devm_of_pwm_get(dev, child, NULL);
90 else
91 led_data->pwm = devm_pwm_get(dev, led->name);
Russell King5f7b03d2014-04-06 15:20:08 -070092 if (IS_ERR(led_data->pwm)) {
93 ret = PTR_ERR(led_data->pwm);
Jerome Brunet9aec3032018-09-06 15:59:04 +020094 if (ret != -EPROBE_DEFER)
95 dev_err(dev, "unable to request PWM for %s: %d\n",
96 led->name, ret);
Russell King5f7b03d2014-04-06 15:20:08 -070097 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080098 }
99
Thierry Reding247bde12017-01-04 09:37:56 +0100100 led_data->cdev.brightness_set_blocking = led_pwm_set;
Russell King5f7b03d2014-04-06 15:20:08 -0700101
Boris Brezillon1b506732016-04-14 21:17:26 +0200102 /*
103 * FIXME: pwm_apply_args() should be removed when switching to the
104 * atomic PWM API.
105 */
106 pwm_apply_args(led_data->pwm);
107
108 pwm_get_args(led_data->pwm, &pargs);
109
110 led_data->period = pargs.period;
Linus Torvalds7c574cf2014-06-12 13:08:09 -0700111 if (!led_data->period && (led->pwm_period_ns > 0))
112 led_data->period = led->pwm_period_ns;
113
Krzysztof Kozlowskicb14e6d2018-12-07 13:32:52 +0100114 ret = devm_of_led_classdev_register(dev, child, &led_data->cdev);
Russell King5f7b03d2014-04-06 15:20:08 -0700115 if (ret == 0) {
116 priv->num_leds++;
Markus Hofstaetterf1670332015-11-11 12:40:29 +0100117 led_pwm_set(&led_data->cdev, led_data->cdev.brightness);
Russell King5f7b03d2014-04-06 15:20:08 -0700118 } else {
119 dev_err(dev, "failed to register PWM led for %s: %d\n",
120 led->name, ret);
121 }
122
123 return ret;
124}
125
Russell Kingb795e6d2014-04-06 15:20:13 -0700126static int led_pwm_create_of(struct device *dev, struct led_pwm_priv *priv)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800127{
128 struct device_node *child;
Russell Kingb795e6d2014-04-06 15:20:13 -0700129 struct led_pwm led;
130 int ret = 0;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800131
Russell Kingb795e6d2014-04-06 15:20:13 -0700132 memset(&led, 0, sizeof(led));
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800133
Russell Kingb795e6d2014-04-06 15:20:13 -0700134 for_each_child_of_node(dev->of_node, child) {
135 led.name = of_get_property(child, "label", NULL) ? :
136 child->name;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800137
Russell Kingb795e6d2014-04-06 15:20:13 -0700138 led.default_trigger = of_get_property(child,
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800139 "linux,default-trigger", NULL);
Russell Kingb0571e72014-04-06 15:20:24 -0700140 led.active_low = of_property_read_bool(child, "active-low");
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800141 of_property_read_u32(child, "max-brightness",
Russell Kingb795e6d2014-04-06 15:20:13 -0700142 &led.max_brightness);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800143
Russell Kingb795e6d2014-04-06 15:20:13 -0700144 ret = led_pwm_add(dev, priv, &led, child);
145 if (ret) {
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800146 of_node_put(child);
Russell Kingb795e6d2014-04-06 15:20:13 -0700147 break;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800148 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800149 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800150
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800151 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800152}
153
Luotao Fu41c42ff2009-02-11 13:24:40 -0800154static int led_pwm_probe(struct platform_device *pdev)
155{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700156 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800157 struct led_pwm_priv *priv;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800158 int count, i;
159 int ret = 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800160
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800161 if (pdata)
162 count = pdata->num_leds;
163 else
164 count = of_get_child_count(pdev->dev.of_node);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800165
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800166 if (!count)
167 return -EINVAL;
168
169 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
170 GFP_KERNEL);
171 if (!priv)
172 return -ENOMEM;
173
174 if (pdata) {
175 for (i = 0; i < count; i++) {
Russell Kingb795e6d2014-04-06 15:20:13 -0700176 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i],
177 NULL);
Russell King5f7b03d2014-04-06 15:20:08 -0700178 if (ret)
179 break;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800180 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800181 } else {
Russell Kingb795e6d2014-04-06 15:20:13 -0700182 ret = led_pwm_create_of(&pdev->dev, priv);
Russell King5f7b03d2014-04-06 15:20:08 -0700183 }
184
Krzysztof Kozlowskie5a04362018-12-07 13:32:51 +0100185 if (ret)
Russell King5f7b03d2014-04-06 15:20:08 -0700186 return ret;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800187
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800188 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800189
190 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800191}
192
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800193static const struct of_device_id of_pwm_leds_match[] = {
194 { .compatible = "pwm-leds", },
195 {},
196};
197MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
198
Luotao Fu41c42ff2009-02-11 13:24:40 -0800199static struct platform_driver led_pwm_driver = {
200 .probe = led_pwm_probe,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800201 .driver = {
202 .name = "leds_pwm",
Sachin Kamat1e08f722013-09-28 04:38:31 -0700203 .of_match_table = of_pwm_leds_match,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800204 },
205};
206
Axel Lin892a8842012-01-10 15:09:24 -0800207module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800208
209MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
Uwe Kleine-König49651c62013-11-25 21:43:45 +0100210MODULE_DESCRIPTION("generic PWM LED driver");
211MODULE_LICENSE("GPL v2");
Luotao Fu41c42ff2009-02-11 13:24:40 -0800212MODULE_ALIAS("platform:leds-pwm");