blob: 0b4185315261236fd6d143fcde1eeb026be695a8 [file] [log] [blame]
Raphael Assenat22e03f32007-02-27 19:49:53 +00001/*
2 * LEDs driver for GPIOs
3 *
4 * Copyright (C) 2007 8D Technologies inc.
5 * Raphael Assenat <raph@8d.com>
Trent Piephoa7d878a2009-01-10 17:26:01 +00006 * Copyright (C) 2008 Freescale Semiconductor, Inc.
Raphael Assenat22e03f32007-02-27 19:49:53 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
Mark Brown16db7f92012-03-23 15:02:11 -070016#include <linux/gpio.h>
Raphael Assenat22e03f32007-02-27 19:49:53 +000017#include <linux/leds.h>
Grant Likelya314c5c2011-02-22 20:06:04 -070018#include <linux/of_platform.h>
19#include <linux/of_gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
David Brownell00852272007-05-10 10:51:41 +010021#include <linux/workqueue.h>
Paul Gortmaker54f4ded2011-07-03 13:56:03 -040022#include <linux/module.h>
AnilKumar Ch8fe45542012-09-01 16:16:30 +080023#include <linux/pinctrl/consumer.h>
David Brownell00852272007-05-10 10:51:41 +010024
Raphael Assenat22e03f32007-02-27 19:49:53 +000025struct gpio_led_data {
26 struct led_classdev cdev;
27 unsigned gpio;
David Brownell00852272007-05-10 10:51:41 +010028 struct work_struct work;
29 u8 new_level;
30 u8 can_sleep;
Raphael Assenat22e03f32007-02-27 19:49:53 +000031 u8 active_low;
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100032 u8 blinking;
33 int (*platform_gpio_blink_set)(unsigned gpio, int state,
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000034 unsigned long *delay_on, unsigned long *delay_off);
Raphael Assenat22e03f32007-02-27 19:49:53 +000035};
36
David Brownell00852272007-05-10 10:51:41 +010037static void gpio_led_work(struct work_struct *work)
38{
39 struct gpio_led_data *led_dat =
40 container_of(work, struct gpio_led_data, work);
41
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100042 if (led_dat->blinking) {
43 led_dat->platform_gpio_blink_set(led_dat->gpio,
44 led_dat->new_level,
45 NULL, NULL);
46 led_dat->blinking = 0;
47 } else
48 gpio_set_value_cansleep(led_dat->gpio, led_dat->new_level);
David Brownell00852272007-05-10 10:51:41 +010049}
Raphael Assenat22e03f32007-02-27 19:49:53 +000050
51static void gpio_led_set(struct led_classdev *led_cdev,
52 enum led_brightness value)
53{
54 struct gpio_led_data *led_dat =
55 container_of(led_cdev, struct gpio_led_data, cdev);
56 int level;
57
58 if (value == LED_OFF)
59 level = 0;
60 else
61 level = 1;
62
63 if (led_dat->active_low)
64 level = !level;
65
David Brownell306dd852008-03-27 00:59:02 +000066 /* Setting GPIOs with I2C/etc requires a task context, and we don't
67 * seem to have a reliable way to know if we're already in one; so
68 * let's just assume the worst.
69 */
David Brownell00852272007-05-10 10:51:41 +010070 if (led_dat->can_sleep) {
David Brownell306dd852008-03-27 00:59:02 +000071 led_dat->new_level = level;
72 schedule_work(&led_dat->work);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100073 } else {
74 if (led_dat->blinking) {
75 led_dat->platform_gpio_blink_set(led_dat->gpio, level,
76 NULL, NULL);
77 led_dat->blinking = 0;
78 } else
79 gpio_set_value(led_dat->gpio, level);
80 }
Raphael Assenat22e03f32007-02-27 19:49:53 +000081}
82
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000083static int gpio_blink_set(struct led_classdev *led_cdev,
84 unsigned long *delay_on, unsigned long *delay_off)
85{
86 struct gpio_led_data *led_dat =
87 container_of(led_cdev, struct gpio_led_data, cdev);
88
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100089 led_dat->blinking = 1;
90 return led_dat->platform_gpio_blink_set(led_dat->gpio, GPIO_LED_BLINK,
91 delay_on, delay_off);
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000092}
93
Trent Piephoa7d878a2009-01-10 17:26:01 +000094static int __devinit create_gpio_led(const struct gpio_led *template,
95 struct gpio_led_data *led_dat, struct device *parent,
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100096 int (*blink_set)(unsigned, int, unsigned long *, unsigned long *))
Trent Piephoa7d878a2009-01-10 17:26:01 +000097{
Trent Piephoed88bae2009-05-12 15:33:12 -070098 int ret, state;
Trent Piephoa7d878a2009-01-10 17:26:01 +000099
Dmitry Eremin-Solenikov0b4634f2009-11-16 01:48:32 +0300100 led_dat->gpio = -1;
101
David Brownelld379ee82009-03-05 16:46:44 -0800102 /* skip leds that aren't available */
103 if (!gpio_is_valid(template->gpio)) {
Michal Simek2fea0922009-08-06 16:04:51 -0700104 printk(KERN_INFO "Skipping unavailable LED gpio %d (%s)\n",
David Brownelld379ee82009-03-05 16:46:44 -0800105 template->gpio, template->name);
David Brownellac15e952009-04-07 17:51:49 -0700106 return 0;
David Brownelld379ee82009-03-05 16:46:44 -0800107 }
108
Trent Piephoa7d878a2009-01-10 17:26:01 +0000109 led_dat->cdev.name = template->name;
110 led_dat->cdev.default_trigger = template->default_trigger;
111 led_dat->gpio = template->gpio;
112 led_dat->can_sleep = gpio_cansleep(template->gpio);
113 led_dat->active_low = template->active_low;
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +1000114 led_dat->blinking = 0;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000115 if (blink_set) {
116 led_dat->platform_gpio_blink_set = blink_set;
117 led_dat->cdev.blink_set = gpio_blink_set;
118 }
119 led_dat->cdev.brightness_set = gpio_led_set;
Trent Piephoed88bae2009-05-12 15:33:12 -0700120 if (template->default_state == LEDS_GPIO_DEFSTATE_KEEP)
David Daneydabc69c2011-10-31 17:12:17 -0700121 state = !!gpio_get_value_cansleep(led_dat->gpio) ^ led_dat->active_low;
Trent Piephoed88bae2009-05-12 15:33:12 -0700122 else
123 state = (template->default_state == LEDS_GPIO_DEFSTATE_ON);
124 led_dat->cdev.brightness = state ? LED_FULL : LED_OFF;
Richard Purdiedefb5122009-02-17 15:04:07 +0000125 if (!template->retain_state_suspended)
126 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000127
Jingoo Hana99d76f2012-10-23 05:17:11 -0700128 ret = gpio_request_one(template->gpio,
129 GPIOF_DIR_OUT | (led_dat->active_low ^ state),
130 template->name);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000131 if (ret < 0)
Jingoo Hana99d76f2012-10-23 05:17:11 -0700132 return ret;
133
Trent Piephoa7d878a2009-01-10 17:26:01 +0000134 INIT_WORK(&led_dat->work, gpio_led_work);
135
136 ret = led_classdev_register(parent, &led_dat->cdev);
137 if (ret < 0)
138 goto err;
139
140 return 0;
141err:
142 gpio_free(led_dat->gpio);
143 return ret;
144}
145
146static void delete_gpio_led(struct gpio_led_data *led)
147{
David Brownelld379ee82009-03-05 16:46:44 -0800148 if (!gpio_is_valid(led->gpio))
149 return;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000150 led_classdev_unregister(&led->cdev);
151 cancel_work_sync(&led->work);
152 gpio_free(led->gpio);
153}
154
Grant Likelya314c5c2011-02-22 20:06:04 -0700155struct gpio_leds_priv {
156 int num_leds;
157 struct gpio_led_data leds[];
Raphael Assenat22e03f32007-02-27 19:49:53 +0000158};
159
Grant Likelya314c5c2011-02-22 20:06:04 -0700160static inline int sizeof_gpio_leds_priv(int num_leds)
161{
162 return sizeof(struct gpio_leds_priv) +
163 (sizeof(struct gpio_led_data) * num_leds);
164}
Trent Piephoa7d878a2009-01-10 17:26:01 +0000165
166/* Code to create from OpenFirmware platform devices */
Shawn Guo2bcc7ed2011-05-31 16:23:43 +0800167#ifdef CONFIG_OF_GPIO
Grant Likelya314c5c2011-02-22 20:06:04 -0700168static struct gpio_leds_priv * __devinit gpio_leds_create_of(struct platform_device *pdev)
Trent Piephoa7d878a2009-01-10 17:26:01 +0000169{
Grant Likelya314c5c2011-02-22 20:06:04 -0700170 struct device_node *np = pdev->dev.of_node, *child;
171 struct gpio_leds_priv *priv;
Tobias Klauser127aedc2012-08-21 17:21:53 +0800172 int count, ret;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000173
Grant Likelya314c5c2011-02-22 20:06:04 -0700174 /* count LEDs in this device, so we know how much to allocate */
Tobias Klauser127aedc2012-08-21 17:21:53 +0800175 count = of_get_child_count(np);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000176 if (!count)
Grant Likelya314c5c2011-02-22 20:06:04 -0700177 return NULL;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000178
Sachin Kamat198b8612012-07-04 11:35:44 +0800179 priv = devm_kzalloc(&pdev->dev, sizeof_gpio_leds_priv(count),
180 GFP_KERNEL);
Grant Likelya314c5c2011-02-22 20:06:04 -0700181 if (!priv)
182 return NULL;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000183
Trent Piephoa7d878a2009-01-10 17:26:01 +0000184 for_each_child_of_node(np, child) {
Anton Vorontsov0493a4f2010-03-11 13:58:47 -0800185 struct gpio_led led = {};
Trent Piephoa7d878a2009-01-10 17:26:01 +0000186 enum of_gpio_flags flags;
Trent Piephoed88bae2009-05-12 15:33:12 -0700187 const char *state;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000188
189 led.gpio = of_get_gpio_flags(child, 0, &flags);
190 led.active_low = flags & OF_GPIO_ACTIVE_LOW;
191 led.name = of_get_property(child, "label", NULL) ? : child->name;
192 led.default_trigger =
193 of_get_property(child, "linux,default-trigger", NULL);
Trent Piephoed88bae2009-05-12 15:33:12 -0700194 state = of_get_property(child, "default-state", NULL);
195 if (state) {
196 if (!strcmp(state, "keep"))
197 led.default_state = LEDS_GPIO_DEFSTATE_KEEP;
Grant Likelya314c5c2011-02-22 20:06:04 -0700198 else if (!strcmp(state, "on"))
Trent Piephoed88bae2009-05-12 15:33:12 -0700199 led.default_state = LEDS_GPIO_DEFSTATE_ON;
200 else
201 led.default_state = LEDS_GPIO_DEFSTATE_OFF;
202 }
Trent Piephoa7d878a2009-01-10 17:26:01 +0000203
Grant Likelya314c5c2011-02-22 20:06:04 -0700204 ret = create_gpio_led(&led, &priv->leds[priv->num_leds++],
205 &pdev->dev, NULL);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000206 if (ret < 0) {
207 of_node_put(child);
208 goto err;
209 }
210 }
211
Grant Likelya314c5c2011-02-22 20:06:04 -0700212 return priv;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000213
214err:
Grant Likelya314c5c2011-02-22 20:06:04 -0700215 for (count = priv->num_leds - 2; count >= 0; count--)
216 delete_gpio_led(&priv->leds[count]);
Grant Likelya314c5c2011-02-22 20:06:04 -0700217 return NULL;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000218}
219
220static const struct of_device_id of_gpio_leds_match[] = {
221 { .compatible = "gpio-leds", },
222 {},
223};
Shawn Guo2bcc7ed2011-05-31 16:23:43 +0800224#else /* CONFIG_OF_GPIO */
Grant Likelya314c5c2011-02-22 20:06:04 -0700225static struct gpio_leds_priv * __devinit gpio_leds_create_of(struct platform_device *pdev)
226{
227 return NULL;
228}
Shawn Guo2bcc7ed2011-05-31 16:23:43 +0800229#endif /* CONFIG_OF_GPIO */
Trent Piephoa7d878a2009-01-10 17:26:01 +0000230
Grant Likelya314c5c2011-02-22 20:06:04 -0700231
232static int __devinit gpio_led_probe(struct platform_device *pdev)
233{
234 struct gpio_led_platform_data *pdata = pdev->dev.platform_data;
235 struct gpio_leds_priv *priv;
AnilKumar Ch8fe45542012-09-01 16:16:30 +0800236 struct pinctrl *pinctrl;
Grant Likelya314c5c2011-02-22 20:06:04 -0700237 int i, ret = 0;
238
AnilKumar Ch8fe45542012-09-01 16:16:30 +0800239 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
240 if (IS_ERR(pinctrl))
241 dev_warn(&pdev->dev,
242 "pins are not configured from the driver\n");
243
Grant Likelya314c5c2011-02-22 20:06:04 -0700244 if (pdata && pdata->num_leds) {
Sachin Kamat198b8612012-07-04 11:35:44 +0800245 priv = devm_kzalloc(&pdev->dev,
246 sizeof_gpio_leds_priv(pdata->num_leds),
247 GFP_KERNEL);
Grant Likelya314c5c2011-02-22 20:06:04 -0700248 if (!priv)
249 return -ENOMEM;
250
251 priv->num_leds = pdata->num_leds;
252 for (i = 0; i < priv->num_leds; i++) {
253 ret = create_gpio_led(&pdata->leds[i],
254 &priv->leds[i],
255 &pdev->dev, pdata->gpio_blink_set);
256 if (ret < 0) {
257 /* On failure: unwind the led creations */
258 for (i = i - 1; i >= 0; i--)
259 delete_gpio_led(&priv->leds[i]);
Grant Likelya314c5c2011-02-22 20:06:04 -0700260 return ret;
261 }
262 }
263 } else {
264 priv = gpio_leds_create_of(pdev);
265 if (!priv)
266 return -ENODEV;
267 }
268
269 platform_set_drvdata(pdev, priv);
270
271 return 0;
272}
273
274static int __devexit gpio_led_remove(struct platform_device *pdev)
275{
Tobias Klauser59c4dce2012-08-16 18:36:13 +0800276 struct gpio_leds_priv *priv = platform_get_drvdata(pdev);
Grant Likelya314c5c2011-02-22 20:06:04 -0700277 int i;
278
279 for (i = 0; i < priv->num_leds; i++)
280 delete_gpio_led(&priv->leds[i]);
281
Tobias Klauser59c4dce2012-08-16 18:36:13 +0800282 platform_set_drvdata(pdev, NULL);
Grant Likelya314c5c2011-02-22 20:06:04 -0700283
284 return 0;
285}
286
287static struct platform_driver gpio_led_driver = {
288 .probe = gpio_led_probe,
289 .remove = __devexit_p(gpio_led_remove),
290 .driver = {
291 .name = "leds-gpio",
292 .owner = THIS_MODULE,
Tobias Klauser6ebcebd2012-08-16 18:35:36 +0800293 .of_match_table = of_match_ptr(of_gpio_leds_match),
Trent Piephoa7d878a2009-01-10 17:26:01 +0000294 },
Trent Piephoa7d878a2009-01-10 17:26:01 +0000295};
Grant Likelya314c5c2011-02-22 20:06:04 -0700296
Axel Lin892a8842012-01-10 15:09:24 -0800297module_platform_driver(gpio_led_driver);
Richard Purdieb2bdc3e2009-02-02 23:04:42 +0000298
Trent Piephoa7d878a2009-01-10 17:26:01 +0000299MODULE_AUTHOR("Raphael Assenat <raph@8d.com>, Trent Piepho <tpiepho@freescale.com>");
Raphael Assenat22e03f32007-02-27 19:49:53 +0000300MODULE_DESCRIPTION("GPIO LED driver");
301MODULE_LICENSE("GPL");
Axel Lin892a8842012-01-10 15:09:24 -0800302MODULE_ALIAS("platform:leds-gpio");