blob: 4783bacb2e9d8e48c043223fd89643069d93f4b9 [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;
32 bool can_sleep;
Luotao Fu41c42ff2009-02-11 13:24:40 -080033};
34
Peter Ujfalusi0f868152012-12-21 01:43:56 -080035struct led_pwm_priv {
36 int num_leds;
37 struct led_pwm_data leds[0];
38};
39
Florian Vaussardc971ff12013-01-28 06:00:59 -080040static void __led_pwm_set(struct led_pwm_data *led_dat)
41{
42 int new_duty = led_dat->duty;
43
44 pwm_config(led_dat->pwm, new_duty, led_dat->period);
45
46 if (new_duty == 0)
47 pwm_disable(led_dat->pwm);
48 else
49 pwm_enable(led_dat->pwm);
50}
51
Luotao Fu41c42ff2009-02-11 13:24:40 -080052static void led_pwm_set(struct led_classdev *led_cdev,
53 enum led_brightness brightness)
54{
55 struct led_pwm_data *led_dat =
56 container_of(led_cdev, struct led_pwm_data, cdev);
Lars-Peter Clausene4590622009-11-27 06:17:38 +010057 unsigned int max = led_dat->cdev.max_brightness;
Xiubo Lifc1aee02013-12-11 01:19:42 -080058 unsigned long long duty = led_dat->period;
Luotao Fu41c42ff2009-02-11 13:24:40 -080059
Xiubo Lifc1aee02013-12-11 01:19:42 -080060 duty *= brightness;
61 do_div(duty, max);
Russell Kingd19a8a72014-04-06 15:20:18 -070062
63 if (led_dat->active_low)
64 duty = led_dat->period - duty;
65
Xiubo Lifc1aee02013-12-11 01:19:42 -080066 led_dat->duty = duty;
Florian Vaussardc971ff12013-01-28 06:00:59 -080067
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020068 __led_pwm_set(led_dat);
69}
70
71static int led_pwm_set_blocking(struct led_classdev *led_cdev,
72 enum led_brightness brightness)
73{
74 led_pwm_set(led_cdev, brightness);
75 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -080076}
77
Peter Ujfalusi0f868152012-12-21 01:43:56 -080078static inline size_t sizeof_pwm_leds_priv(int num_leds)
79{
80 return sizeof(struct led_pwm_priv) +
81 (sizeof(struct led_pwm_data) * num_leds);
82}
83
Russell King39236902014-04-06 15:20:03 -070084static void led_pwm_cleanup(struct led_pwm_priv *priv)
85{
Jacek Anaszewski9aa07622015-08-20 15:52:51 +020086 while (priv->num_leds--)
Russell King39236902014-04-06 15:20:03 -070087 led_classdev_unregister(&priv->leds[priv->num_leds].cdev);
Russell King39236902014-04-06 15:20:03 -070088}
89
Russell King5f7b03d2014-04-06 15:20:08 -070090static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
Russell Kingb795e6d2014-04-06 15:20:13 -070091 struct led_pwm *led, struct device_node *child)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080092{
Russell King5f7b03d2014-04-06 15:20:08 -070093 struct led_pwm_data *led_data = &priv->leds[priv->num_leds];
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -080094 int ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -080095
Russell King5f7b03d2014-04-06 15:20:08 -070096 led_data->active_low = led->active_low;
Russell King5f7b03d2014-04-06 15:20:08 -070097 led_data->cdev.name = led->name;
98 led_data->cdev.default_trigger = led->default_trigger;
Russell King5f7b03d2014-04-06 15:20:08 -070099 led_data->cdev.brightness = LED_OFF;
100 led_data->cdev.max_brightness = led->max_brightness;
101 led_data->cdev.flags = LED_CORE_SUSPENDRESUME;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800102
Russell Kingb795e6d2014-04-06 15:20:13 -0700103 if (child)
104 led_data->pwm = devm_of_pwm_get(dev, child, NULL);
105 else
106 led_data->pwm = devm_pwm_get(dev, led->name);
Russell King5f7b03d2014-04-06 15:20:08 -0700107 if (IS_ERR(led_data->pwm)) {
108 ret = PTR_ERR(led_data->pwm);
109 dev_err(dev, "unable to request PWM for %s: %d\n",
110 led->name, ret);
111 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800112 }
113
Russell King5f7b03d2014-04-06 15:20:08 -0700114 led_data->can_sleep = pwm_can_sleep(led_data->pwm);
Jacek Anaszewski9aa07622015-08-20 15:52:51 +0200115 if (!led_data->can_sleep)
116 led_data->cdev.brightness_set = led_pwm_set;
117 else
118 led_data->cdev.brightness_set_blocking = led_pwm_set_blocking;
Russell King5f7b03d2014-04-06 15:20:08 -0700119
Linus Torvalds7c574cf2014-06-12 13:08:09 -0700120 led_data->period = pwm_get_period(led_data->pwm);
121 if (!led_data->period && (led->pwm_period_ns > 0))
122 led_data->period = led->pwm_period_ns;
123
Russell King5f7b03d2014-04-06 15:20:08 -0700124 ret = led_classdev_register(dev, &led_data->cdev);
125 if (ret == 0) {
126 priv->num_leds++;
Markus Hofstaetterf1670332015-11-11 12:40:29 +0100127 led_pwm_set(&led_data->cdev, led_data->cdev.brightness);
Russell King5f7b03d2014-04-06 15:20:08 -0700128 } else {
129 dev_err(dev, "failed to register PWM led for %s: %d\n",
130 led->name, ret);
131 }
132
133 return ret;
134}
135
Russell Kingb795e6d2014-04-06 15:20:13 -0700136static int led_pwm_create_of(struct device *dev, struct led_pwm_priv *priv)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800137{
138 struct device_node *child;
Russell Kingb795e6d2014-04-06 15:20:13 -0700139 struct led_pwm led;
140 int ret = 0;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800141
Russell Kingb795e6d2014-04-06 15:20:13 -0700142 memset(&led, 0, sizeof(led));
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800143
Russell Kingb795e6d2014-04-06 15:20:13 -0700144 for_each_child_of_node(dev->of_node, child) {
145 led.name = of_get_property(child, "label", NULL) ? :
146 child->name;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800147
Russell Kingb795e6d2014-04-06 15:20:13 -0700148 led.default_trigger = of_get_property(child,
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800149 "linux,default-trigger", NULL);
Russell Kingb0571e72014-04-06 15:20:24 -0700150 led.active_low = of_property_read_bool(child, "active-low");
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800151 of_property_read_u32(child, "max-brightness",
Russell Kingb795e6d2014-04-06 15:20:13 -0700152 &led.max_brightness);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800153
Russell Kingb795e6d2014-04-06 15:20:13 -0700154 ret = led_pwm_add(dev, priv, &led, child);
155 if (ret) {
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800156 of_node_put(child);
Russell Kingb795e6d2014-04-06 15:20:13 -0700157 break;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800158 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800159 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800160
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800161 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800162}
163
Luotao Fu41c42ff2009-02-11 13:24:40 -0800164static int led_pwm_probe(struct platform_device *pdev)
165{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700166 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800167 struct led_pwm_priv *priv;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800168 int count, i;
169 int ret = 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800170
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800171 if (pdata)
172 count = pdata->num_leds;
173 else
174 count = of_get_child_count(pdev->dev.of_node);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800175
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800176 if (!count)
177 return -EINVAL;
178
179 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
180 GFP_KERNEL);
181 if (!priv)
182 return -ENOMEM;
183
184 if (pdata) {
185 for (i = 0; i < count; i++) {
Russell Kingb795e6d2014-04-06 15:20:13 -0700186 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i],
187 NULL);
Russell King5f7b03d2014-04-06 15:20:08 -0700188 if (ret)
189 break;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800190 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800191 } else {
Russell Kingb795e6d2014-04-06 15:20:13 -0700192 ret = led_pwm_create_of(&pdev->dev, priv);
Russell King5f7b03d2014-04-06 15:20:08 -0700193 }
194
195 if (ret) {
196 led_pwm_cleanup(priv);
197 return ret;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800198 }
199
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800200 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800201
202 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800203}
204
Bill Pemberton678e8a62012-11-19 13:26:00 -0500205static int led_pwm_remove(struct platform_device *pdev)
Luotao Fu41c42ff2009-02-11 13:24:40 -0800206{
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800207 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800208
Russell King39236902014-04-06 15:20:03 -0700209 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800210
Luotao Fu41c42ff2009-02-11 13:24:40 -0800211 return 0;
212}
213
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800214static const struct of_device_id of_pwm_leds_match[] = {
215 { .compatible = "pwm-leds", },
216 {},
217};
218MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
219
Luotao Fu41c42ff2009-02-11 13:24:40 -0800220static struct platform_driver led_pwm_driver = {
221 .probe = led_pwm_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500222 .remove = led_pwm_remove,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800223 .driver = {
224 .name = "leds_pwm",
Sachin Kamat1e08f722013-09-28 04:38:31 -0700225 .of_match_table = of_pwm_leds_match,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800226 },
227};
228
Axel Lin892a8842012-01-10 15:09:24 -0800229module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800230
231MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
Uwe Kleine-König49651c62013-11-25 21:43:45 +0100232MODULE_DESCRIPTION("generic PWM LED driver");
233MODULE_LICENSE("GPL v2");
Luotao Fu41c42ff2009-02-11 13:24:40 -0800234MODULE_ALIAS("platform:leds-pwm");