blob: 35c1c5f144dc87fe58a925dda04618871319b27b [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,
Russell Kingb795e6d2014-04-06 15:20:13 -070096 struct led_pwm *led, struct device_node *child)
Russell King5f7b03d2014-04-06 15:20:08 -070097{
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
Russell Kingb795e6d2014-04-06 15:20:13 -0700110 if (child)
111 led_data->pwm = devm_of_pwm_get(dev, child, NULL);
112 else
113 led_data->pwm = devm_pwm_get(dev, led->name);
Russell King5f7b03d2014-04-06 15:20:08 -0700114 if (IS_ERR(led_data->pwm)) {
115 ret = PTR_ERR(led_data->pwm);
116 dev_err(dev, "unable to request PWM for %s: %d\n",
117 led->name, ret);
118 return ret;
119 }
120
Russell Kingb795e6d2014-04-06 15:20:13 -0700121 if (child)
122 led_data->period = pwm_get_period(led_data->pwm);
123
Russell King5f7b03d2014-04-06 15:20:08 -0700124 led_data->can_sleep = pwm_can_sleep(led_data->pwm);
125 if (led_data->can_sleep)
126 INIT_WORK(&led_data->work, led_pwm_work);
127
128 ret = led_classdev_register(dev, &led_data->cdev);
129 if (ret == 0) {
130 priv->num_leds++;
131 } else {
132 dev_err(dev, "failed to register PWM led for %s: %d\n",
133 led->name, ret);
134 }
135
136 return ret;
137}
138
Russell Kingb795e6d2014-04-06 15:20:13 -0700139static int led_pwm_create_of(struct device *dev, struct led_pwm_priv *priv)
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800140{
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800141 struct device_node *child;
Russell Kingb795e6d2014-04-06 15:20:13 -0700142 struct led_pwm led;
143 int ret = 0;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800144
Russell Kingb795e6d2014-04-06 15:20:13 -0700145 memset(&led, 0, sizeof(led));
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800146
Russell Kingb795e6d2014-04-06 15:20:13 -0700147 for_each_child_of_node(dev->of_node, child) {
148 led.name = of_get_property(child, "label", NULL) ? :
149 child->name;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800150
Russell Kingb795e6d2014-04-06 15:20:13 -0700151 led.default_trigger = of_get_property(child,
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800152 "linux,default-trigger", NULL);
153 of_property_read_u32(child, "max-brightness",
Russell Kingb795e6d2014-04-06 15:20:13 -0700154 &led.max_brightness);
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800155
Russell Kingb795e6d2014-04-06 15:20:13 -0700156 ret = led_pwm_add(dev, priv, &led, child);
157 if (ret) {
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800158 of_node_put(child);
Russell Kingb795e6d2014-04-06 15:20:13 -0700159 break;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800160 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800161 }
162
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800163 return ret;
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800164}
165
Luotao Fu41c42ff2009-02-11 13:24:40 -0800166static int led_pwm_probe(struct platform_device *pdev)
167{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700168 struct led_pwm_platform_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800169 struct led_pwm_priv *priv;
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800170 int count, i;
171 int ret = 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800172
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800173 if (pdata)
174 count = pdata->num_leds;
175 else
176 count = of_get_child_count(pdev->dev.of_node);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800177
Peter Ujfalusiaa1a6d62013-11-28 01:06:38 -0800178 if (!count)
179 return -EINVAL;
180
181 priv = devm_kzalloc(&pdev->dev, sizeof_pwm_leds_priv(count),
182 GFP_KERNEL);
183 if (!priv)
184 return -ENOMEM;
185
186 if (pdata) {
187 for (i = 0; i < count; i++) {
Russell Kingb795e6d2014-04-06 15:20:13 -0700188 ret = led_pwm_add(&pdev->dev, priv, &pdata->leds[i],
189 NULL);
Russell King5f7b03d2014-04-06 15:20:08 -0700190 if (ret)
191 break;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800192 }
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800193 } else {
Russell Kingb795e6d2014-04-06 15:20:13 -0700194 ret = led_pwm_create_of(&pdev->dev, priv);
Russell King5f7b03d2014-04-06 15:20:08 -0700195 }
196
197 if (ret) {
198 led_pwm_cleanup(priv);
199 return ret;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800200 }
201
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800202 platform_set_drvdata(pdev, priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800203
204 return 0;
Luotao Fu41c42ff2009-02-11 13:24:40 -0800205}
206
Bill Pemberton678e8a62012-11-19 13:26:00 -0500207static int led_pwm_remove(struct platform_device *pdev)
Luotao Fu41c42ff2009-02-11 13:24:40 -0800208{
Peter Ujfalusi0f868152012-12-21 01:43:56 -0800209 struct led_pwm_priv *priv = platform_get_drvdata(pdev);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800210
Russell King39236902014-04-06 15:20:03 -0700211 led_pwm_cleanup(priv);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800212
Luotao Fu41c42ff2009-02-11 13:24:40 -0800213 return 0;
214}
215
Peter Ujfalusi08541cb2012-12-21 01:44:01 -0800216static const struct of_device_id of_pwm_leds_match[] = {
217 { .compatible = "pwm-leds", },
218 {},
219};
220MODULE_DEVICE_TABLE(of, of_pwm_leds_match);
221
Luotao Fu41c42ff2009-02-11 13:24:40 -0800222static struct platform_driver led_pwm_driver = {
223 .probe = led_pwm_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500224 .remove = led_pwm_remove,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800225 .driver = {
226 .name = "leds_pwm",
227 .owner = THIS_MODULE,
Sachin Kamat1e08f722013-09-28 04:38:31 -0700228 .of_match_table = of_pwm_leds_match,
Luotao Fu41c42ff2009-02-11 13:24:40 -0800229 },
230};
231
Axel Lin892a8842012-01-10 15:09:24 -0800232module_platform_driver(led_pwm_driver);
Luotao Fu41c42ff2009-02-11 13:24:40 -0800233
234MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
235MODULE_DESCRIPTION("PWM LED driver for PXA");
236MODULE_LICENSE("GPL");
237MODULE_ALIAS("platform:leds-pwm");