blob: 3af4f2bff83f9357bedb1dbf35bca38bed61a353 [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 */
Xiubo Li4cc72342014-09-28 01:57:14 -070013#include <linux/err.h>
Mark Brown16db7f92012-03-23 15:02:11 -070014#include <linux/gpio.h>
Mika Westerberg5c512772014-10-27 23:29:32 +010015#include <linux/gpio/consumer.h>
Xiubo Li4cc72342014-09-28 01:57:14 -070016#include <linux/kernel.h>
Raphael Assenat22e03f32007-02-27 19:49:53 +000017#include <linux/leds.h>
Xiubo Li4cc72342014-09-28 01:57:14 -070018#include <linux/module.h>
Geert Uytterhoeven403097f2015-05-07 01:08:09 -070019#include <linux/of.h>
Xiubo Li4cc72342014-09-28 01:57:14 -070020#include <linux/platform_device.h>
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +010021#include <linux/property.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
David Brownell00852272007-05-10 10:51:41 +010023#include <linux/workqueue.h>
24
Raphael Assenat22e03f32007-02-27 19:49:53 +000025struct gpio_led_data {
26 struct led_classdev cdev;
Mika Westerberg5c512772014-10-27 23:29:32 +010027 struct gpio_desc *gpiod;
David Brownell00852272007-05-10 10:51:41 +010028 struct work_struct work;
29 u8 new_level;
30 u8 can_sleep;
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100031 u8 blinking;
Mika Westerbergc673a2b2014-10-31 13:40:58 +020032 int (*platform_gpio_blink_set)(struct gpio_desc *desc, int state,
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000033 unsigned long *delay_on, unsigned long *delay_off);
Raphael Assenat22e03f32007-02-27 19:49:53 +000034};
35
David Brownell00852272007-05-10 10:51:41 +010036static void gpio_led_work(struct work_struct *work)
37{
Xiubo Lia4c84e62014-09-28 01:57:16 -070038 struct gpio_led_data *led_dat =
David Brownell00852272007-05-10 10:51:41 +010039 container_of(work, struct gpio_led_data, work);
40
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100041 if (led_dat->blinking) {
Mika Westerbergc673a2b2014-10-31 13:40:58 +020042 led_dat->platform_gpio_blink_set(led_dat->gpiod,
43 led_dat->new_level, NULL, NULL);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100044 led_dat->blinking = 0;
45 } else
Mika Westerberg5c512772014-10-27 23:29:32 +010046 gpiod_set_value_cansleep(led_dat->gpiod, led_dat->new_level);
David Brownell00852272007-05-10 10:51:41 +010047}
Raphael Assenat22e03f32007-02-27 19:49:53 +000048
49static void gpio_led_set(struct led_classdev *led_cdev,
50 enum led_brightness value)
51{
52 struct gpio_led_data *led_dat =
53 container_of(led_cdev, struct gpio_led_data, cdev);
54 int level;
55
56 if (value == LED_OFF)
57 level = 0;
58 else
59 level = 1;
60
David Brownell306dd852008-03-27 00:59:02 +000061 /* Setting GPIOs with I2C/etc requires a task context, and we don't
62 * seem to have a reliable way to know if we're already in one; so
63 * let's just assume the worst.
64 */
David Brownell00852272007-05-10 10:51:41 +010065 if (led_dat->can_sleep) {
David Brownell306dd852008-03-27 00:59:02 +000066 led_dat->new_level = level;
67 schedule_work(&led_dat->work);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100068 } else {
69 if (led_dat->blinking) {
Mika Westerbergc673a2b2014-10-31 13:40:58 +020070 led_dat->platform_gpio_blink_set(led_dat->gpiod, level,
71 NULL, NULL);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100072 led_dat->blinking = 0;
73 } else
Mika Westerberg5c512772014-10-27 23:29:32 +010074 gpiod_set_value(led_dat->gpiod, level);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100075 }
Raphael Assenat22e03f32007-02-27 19:49:53 +000076}
77
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000078static int gpio_blink_set(struct led_classdev *led_cdev,
79 unsigned long *delay_on, unsigned long *delay_off)
80{
81 struct gpio_led_data *led_dat =
82 container_of(led_cdev, struct gpio_led_data, cdev);
83
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100084 led_dat->blinking = 1;
Mika Westerbergc673a2b2014-10-31 13:40:58 +020085 return led_dat->platform_gpio_blink_set(led_dat->gpiod, GPIO_LED_BLINK,
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +100086 delay_on, delay_off);
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +000087}
88
Bill Pemberton98ea1ea2012-11-19 13:23:02 -050089static int create_gpio_led(const struct gpio_led *template,
Trent Piephoa7d878a2009-01-10 17:26:01 +000090 struct gpio_led_data *led_dat, struct device *parent,
Mika Westerbergc673a2b2014-10-31 13:40:58 +020091 int (*blink_set)(struct gpio_desc *, int, unsigned long *,
92 unsigned long *))
Trent Piephoa7d878a2009-01-10 17:26:01 +000093{
Trent Piephoed88bae2009-05-12 15:33:12 -070094 int ret, state;
Trent Piephoa7d878a2009-01-10 17:26:01 +000095
Geert Uytterhoevenec98a492014-11-06 12:23:23 +010096 led_dat->gpiod = template->gpiod;
97 if (!led_dat->gpiod) {
Mika Westerbergc673a2b2014-10-31 13:40:58 +020098 /*
99 * This is the legacy code path for platform code that
100 * still uses GPIO numbers. Ultimately we would like to get
101 * rid of this block completely.
102 */
Mika Westerberg5c512772014-10-27 23:29:32 +0100103 unsigned long flags = 0;
Dmitry Eremin-Solenikov0b4634f2009-11-16 01:48:32 +0300104
Mika Westerberg5c512772014-10-27 23:29:32 +0100105 /* skip leds that aren't available */
106 if (!gpio_is_valid(template->gpio)) {
107 dev_info(parent, "Skipping unavailable LED gpio %d (%s)\n",
108 template->gpio, template->name);
109 return 0;
110 }
111
112 if (template->active_low)
113 flags |= GPIOF_ACTIVE_LOW;
114
115 ret = devm_gpio_request_one(parent, template->gpio, flags,
116 template->name);
117 if (ret < 0)
118 return ret;
119
120 led_dat->gpiod = gpio_to_desc(template->gpio);
121 if (IS_ERR(led_dat->gpiod))
122 return PTR_ERR(led_dat->gpiod);
David Brownelld379ee82009-03-05 16:46:44 -0800123 }
124
Trent Piephoa7d878a2009-01-10 17:26:01 +0000125 led_dat->cdev.name = template->name;
126 led_dat->cdev.default_trigger = template->default_trigger;
Geert Uytterhoevenec98a492014-11-06 12:23:23 +0100127 led_dat->can_sleep = gpiod_cansleep(led_dat->gpiod);
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +1000128 led_dat->blinking = 0;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000129 if (blink_set) {
130 led_dat->platform_gpio_blink_set = blink_set;
131 led_dat->cdev.blink_set = gpio_blink_set;
132 }
133 led_dat->cdev.brightness_set = gpio_led_set;
Trent Piephoed88bae2009-05-12 15:33:12 -0700134 if (template->default_state == LEDS_GPIO_DEFSTATE_KEEP)
Mika Westerberg5c512772014-10-27 23:29:32 +0100135 state = !!gpiod_get_value_cansleep(led_dat->gpiod);
Trent Piephoed88bae2009-05-12 15:33:12 -0700136 else
137 state = (template->default_state == LEDS_GPIO_DEFSTATE_ON);
138 led_dat->cdev.brightness = state ? LED_FULL : LED_OFF;
Richard Purdiedefb5122009-02-17 15:04:07 +0000139 if (!template->retain_state_suspended)
140 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000141
Mika Westerberg5c512772014-10-27 23:29:32 +0100142 ret = gpiod_direction_output(led_dat->gpiod, state);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000143 if (ret < 0)
Jingoo Hana99d76f2012-10-23 05:17:11 -0700144 return ret;
145
Trent Piephoa7d878a2009-01-10 17:26:01 +0000146 INIT_WORK(&led_dat->work, gpio_led_work);
147
Mika Westerberg5c512772014-10-27 23:29:32 +0100148 return led_classdev_register(parent, &led_dat->cdev);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000149}
150
151static void delete_gpio_led(struct gpio_led_data *led)
152{
153 led_classdev_unregister(&led->cdev);
154 cancel_work_sync(&led->work);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000155}
156
Grant Likelya314c5c2011-02-22 20:06:04 -0700157struct gpio_leds_priv {
158 int num_leds;
159 struct gpio_led_data leds[];
Raphael Assenat22e03f32007-02-27 19:49:53 +0000160};
161
Grant Likelya314c5c2011-02-22 20:06:04 -0700162static inline int sizeof_gpio_leds_priv(int num_leds)
163{
164 return sizeof(struct gpio_leds_priv) +
165 (sizeof(struct gpio_led_data) * num_leds);
166}
Trent Piephoa7d878a2009-01-10 17:26:01 +0000167
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100168static struct gpio_leds_priv *gpio_leds_create(struct platform_device *pdev)
Trent Piephoa7d878a2009-01-10 17:26:01 +0000169{
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100170 struct device *dev = &pdev->dev;
171 struct fwnode_handle *child;
Grant Likelya314c5c2011-02-22 20:06:04 -0700172 struct gpio_leds_priv *priv;
Tobias Klauser127aedc2012-08-21 17:21:53 +0800173 int count, ret;
Fabio Estevam29470ea2014-12-04 02:28:19 +0100174 struct device_node *np;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000175
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100176 count = device_get_child_node_count(dev);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000177 if (!count)
Roland Stigge04553e92012-10-28 08:34:59 -0700178 return ERR_PTR(-ENODEV);
179
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100180 priv = devm_kzalloc(dev, sizeof_gpio_leds_priv(count), GFP_KERNEL);
Grant Likelya314c5c2011-02-22 20:06:04 -0700181 if (!priv)
Roland Stigge04553e92012-10-28 08:34:59 -0700182 return ERR_PTR(-ENOMEM);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000183
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100184 device_for_each_child_node(dev, child) {
Anton Vorontsov0493a4f2010-03-11 13:58:47 -0800185 struct gpio_led led = {};
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100186 const char *state = NULL;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000187
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100188 led.gpiod = devm_get_gpiod_from_child(dev, NULL, child);
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100189 if (IS_ERR(led.gpiod)) {
190 fwnode_handle_put(child);
Soren Brinkmannc6e71f82015-01-31 19:15:00 -0800191 ret = PTR_ERR(led.gpiod);
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100192 goto err;
193 }
194
Fabio Estevam29470ea2014-12-04 02:28:19 +0100195 np = of_node(child);
196
197 if (fwnode_property_present(child, "label")) {
198 fwnode_property_read_string(child, "label", &led.name);
199 } else {
200 if (IS_ENABLED(CONFIG_OF) && !led.name && np)
201 led.name = np->name;
Jacek Anaszewski0e14e0b2015-04-16 00:30:50 -0700202 if (!led.name) {
203 ret = -EINVAL;
204 goto err;
205 }
Fabio Estevam29470ea2014-12-04 02:28:19 +0100206 }
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100207 fwnode_property_read_string(child, "linux,default-trigger",
208 &led.default_trigger);
209
Fabio Estevamd735d252014-12-10 01:57:07 +0100210 if (!fwnode_property_read_string(child, "default-state",
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100211 &state)) {
Trent Piephoed88bae2009-05-12 15:33:12 -0700212 if (!strcmp(state, "keep"))
213 led.default_state = LEDS_GPIO_DEFSTATE_KEEP;
Grant Likelya314c5c2011-02-22 20:06:04 -0700214 else if (!strcmp(state, "on"))
Trent Piephoed88bae2009-05-12 15:33:12 -0700215 led.default_state = LEDS_GPIO_DEFSTATE_ON;
216 else
217 led.default_state = LEDS_GPIO_DEFSTATE_OFF;
218 }
Trent Piephoa7d878a2009-01-10 17:26:01 +0000219
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100220 if (fwnode_property_present(child, "retain-state-suspended"))
Robin Gong4270a782014-01-20 03:41:26 -0800221 led.retain_state_suspended = 1;
222
Sebastian Hesselbarth65c6b7e2015-04-14 14:23:30 -0700223 ret = create_gpio_led(&led, &priv->leds[priv->num_leds],
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100224 dev, NULL);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000225 if (ret < 0) {
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100226 fwnode_handle_put(child);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000227 goto err;
228 }
Sebastian Hesselbarth65c6b7e2015-04-14 14:23:30 -0700229 priv->num_leds++;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000230 }
231
Grant Likelya314c5c2011-02-22 20:06:04 -0700232 return priv;
Trent Piephoa7d878a2009-01-10 17:26:01 +0000233
234err:
Sebastian Hesselbarth65c6b7e2015-04-14 14:23:30 -0700235 for (count = priv->num_leds - 1; count >= 0; count--)
Grant Likelya314c5c2011-02-22 20:06:04 -0700236 delete_gpio_led(&priv->leds[count]);
Soren Brinkmannc6e71f82015-01-31 19:15:00 -0800237 return ERR_PTR(ret);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000238}
239
240static const struct of_device_id of_gpio_leds_match[] = {
241 { .compatible = "gpio-leds", },
242 {},
243};
Paolo Pisati472b8542014-03-06 09:18:37 -0800244
245MODULE_DEVICE_TABLE(of, of_gpio_leds_match);
Trent Piephoa7d878a2009-01-10 17:26:01 +0000246
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500247static int gpio_led_probe(struct platform_device *pdev)
Grant Likelya314c5c2011-02-22 20:06:04 -0700248{
Jingoo Han87aae1e2013-07-30 01:07:35 -0700249 struct gpio_led_platform_data *pdata = dev_get_platdata(&pdev->dev);
Grant Likelya314c5c2011-02-22 20:06:04 -0700250 struct gpio_leds_priv *priv;
251 int i, ret = 0;
252
253 if (pdata && pdata->num_leds) {
Sachin Kamat198b8612012-07-04 11:35:44 +0800254 priv = devm_kzalloc(&pdev->dev,
255 sizeof_gpio_leds_priv(pdata->num_leds),
256 GFP_KERNEL);
Grant Likelya314c5c2011-02-22 20:06:04 -0700257 if (!priv)
258 return -ENOMEM;
259
260 priv->num_leds = pdata->num_leds;
261 for (i = 0; i < priv->num_leds; i++) {
262 ret = create_gpio_led(&pdata->leds[i],
263 &priv->leds[i],
264 &pdev->dev, pdata->gpio_blink_set);
265 if (ret < 0) {
266 /* On failure: unwind the led creations */
267 for (i = i - 1; i >= 0; i--)
268 delete_gpio_led(&priv->leds[i]);
Grant Likelya314c5c2011-02-22 20:06:04 -0700269 return ret;
270 }
271 }
272 } else {
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100273 priv = gpio_leds_create(pdev);
Roland Stigge04553e92012-10-28 08:34:59 -0700274 if (IS_ERR(priv))
275 return PTR_ERR(priv);
Grant Likelya314c5c2011-02-22 20:06:04 -0700276 }
277
278 platform_set_drvdata(pdev, priv);
279
280 return 0;
281}
282
Bill Pemberton678e8a62012-11-19 13:26:00 -0500283static int gpio_led_remove(struct platform_device *pdev)
Grant Likelya314c5c2011-02-22 20:06:04 -0700284{
Tobias Klauser59c4dce2012-08-16 18:36:13 +0800285 struct gpio_leds_priv *priv = platform_get_drvdata(pdev);
Grant Likelya314c5c2011-02-22 20:06:04 -0700286 int i;
287
288 for (i = 0; i < priv->num_leds; i++)
289 delete_gpio_led(&priv->leds[i]);
290
Grant Likelya314c5c2011-02-22 20:06:04 -0700291 return 0;
292}
293
294static struct platform_driver gpio_led_driver = {
295 .probe = gpio_led_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500296 .remove = gpio_led_remove,
Grant Likelya314c5c2011-02-22 20:06:04 -0700297 .driver = {
298 .name = "leds-gpio",
Rafael J. Wysockia43f2cb2014-10-27 23:30:10 +0100299 .of_match_table = of_gpio_leds_match,
Trent Piephoa7d878a2009-01-10 17:26:01 +0000300 },
Trent Piephoa7d878a2009-01-10 17:26:01 +0000301};
Grant Likelya314c5c2011-02-22 20:06:04 -0700302
Axel Lin892a8842012-01-10 15:09:24 -0800303module_platform_driver(gpio_led_driver);
Richard Purdieb2bdc3e2009-02-02 23:04:42 +0000304
Trent Piephoa7d878a2009-01-10 17:26:01 +0000305MODULE_AUTHOR("Raphael Assenat <raph@8d.com>, Trent Piepho <tpiepho@freescale.com>");
Raphael Assenat22e03f32007-02-27 19:49:53 +0000306MODULE_DESCRIPTION("GPIO LED driver");
307MODULE_LICENSE("GPL");
Axel Lin892a8842012-01-10 15:09:24 -0800308MODULE_ALIAS("platform:leds-gpio");