2 * Generic Syscon LEDs Driver
4 * Copyright (c) 2014, Linaro Limited
5 * Author: Linus Walleij <linus.walleij@linaro.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 #include <linux/of_device.h>
24 #include <linux/of_address.h>
25 #include <linux/platform_device.h>
26 #include <linux/stat.h>
27 #include <linux/slab.h>
28 #include <linux/mfd/syscon.h>
29 #include <linux/regmap.h>
30 #include <linux/leds.h>
33 * struct syscon_led - state container for syscon based LEDs
34 * @cdev: LED class device for this LED
35 * @map: regmap to access the syscon device backing this LED
36 * @offset: the offset into the syscon regmap for the LED register
37 * @mask: the bit in the register corresponding to the LED
38 * @state: current state of the LED
41 struct led_classdev cdev;
48 static void syscon_led_set(struct led_classdev *led_cdev,
49 enum led_brightness value)
51 struct syscon_led *sled =
52 container_of(led_cdev, struct syscon_led, cdev);
56 if (value == LED_OFF) {
64 ret = regmap_update_bits(sled->map, sled->offset, sled->mask, val);
66 dev_err(sled->cdev.dev, "error updating LED status\n");
69 static int __init syscon_leds_spawn(struct device_node *np,
73 struct device_node *child;
76 for_each_available_child_of_node(np, child) {
77 struct syscon_led *sled;
80 /* Only check for register-bit-leds */
81 if (of_property_match_string(child, "compatible",
82 "register-bit-led") < 0)
85 sled = devm_kzalloc(dev, sizeof(*sled), GFP_KERNEL);
91 if (of_property_read_u32(child, "offset", &sled->offset))
93 if (of_property_read_u32(child, "mask", &sled->mask))
96 of_get_property(child, "label", NULL) ? : child->name;
97 sled->cdev.default_trigger =
98 of_get_property(child, "linux,default-trigger", NULL);
100 state = of_get_property(child, "default-state", NULL);
102 if (!strcmp(state, "keep")) {
105 ret = regmap_read(map, sled->offset, &val);
108 sled->state = !!(val & sled->mask);
109 } else if (!strcmp(state, "on")) {
111 ret = regmap_update_bits(map, sled->offset,
118 ret = regmap_update_bits(map, sled->offset,
124 sled->cdev.brightness_set = syscon_led_set;
126 ret = led_classdev_register(dev, &sled->cdev);
130 dev_info(dev, "registered LED %s\n", sled->cdev.name);
135 static int __init syscon_leds_init(void)
137 struct device_node *np;
139 for_each_of_allnodes(np) {
140 struct platform_device *pdev;
144 if (!of_device_is_compatible(np, "syscon"))
147 map = syscon_node_to_regmap(np);
149 pr_err("error getting regmap for syscon LEDs\n");
154 * If the map is there, the device should be there, we allocate
155 * memory on the syscon device's behalf here.
157 pdev = of_find_device_by_node(np);
160 ret = syscon_leds_spawn(np, &pdev->dev, map);
162 dev_err(&pdev->dev, "could not spawn syscon LEDs\n");
167 device_initcall(syscon_leds_init);