• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * LED Class Core
4  *
5  * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
6  * Copyright (C) 2005-2007 Richard Purdie <rpurdie@openedhand.com>
7  */
8 
9 #include <linux/ctype.h>
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/leds.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/property.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/timer.h>
21 #include <uapi/linux/uleds.h>
22 #include <linux/of.h>
23 #include "leds.h"
24 
25 static struct class *leds_class;
26 
brightness_show(struct device * dev,struct device_attribute * attr,char * buf)27 static ssize_t brightness_show(struct device *dev,
28 		struct device_attribute *attr, char *buf)
29 {
30 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
31 
32 	/* no lock needed for this */
33 	led_update_brightness(led_cdev);
34 
35 	return sprintf(buf, "%u\n", led_cdev->brightness);
36 }
37 
brightness_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t size)38 static ssize_t brightness_store(struct device *dev,
39 		struct device_attribute *attr, const char *buf, size_t size)
40 {
41 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
42 	unsigned long state;
43 	ssize_t ret;
44 
45 	mutex_lock(&led_cdev->led_access);
46 
47 	if (led_sysfs_is_disabled(led_cdev)) {
48 		ret = -EBUSY;
49 		goto unlock;
50 	}
51 
52 	ret = kstrtoul(buf, 10, &state);
53 	if (ret)
54 		goto unlock;
55 
56 	if (state == LED_OFF)
57 		led_trigger_remove(led_cdev);
58 	led_set_brightness(led_cdev, state);
59 	flush_work(&led_cdev->set_brightness_work);
60 
61 	ret = size;
62 unlock:
63 	mutex_unlock(&led_cdev->led_access);
64 	return ret;
65 }
66 static DEVICE_ATTR_RW(brightness);
67 
max_brightness_show(struct device * dev,struct device_attribute * attr,char * buf)68 static ssize_t max_brightness_show(struct device *dev,
69 		struct device_attribute *attr, char *buf)
70 {
71 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
72 
73 	return sprintf(buf, "%u\n", led_cdev->max_brightness);
74 }
75 static DEVICE_ATTR_RO(max_brightness);
76 
77 #ifdef CONFIG_LEDS_TRIGGERS
78 static BIN_ATTR(trigger, 0644, led_trigger_read, led_trigger_write, 0);
79 static struct bin_attribute *led_trigger_bin_attrs[] = {
80 	&bin_attr_trigger,
81 	NULL,
82 };
83 static const struct attribute_group led_trigger_group = {
84 	.bin_attrs = led_trigger_bin_attrs,
85 };
86 #endif
87 
88 static struct attribute *led_class_attrs[] = {
89 	&dev_attr_brightness.attr,
90 	&dev_attr_max_brightness.attr,
91 	NULL,
92 };
93 
94 static const struct attribute_group led_group = {
95 	.attrs = led_class_attrs,
96 };
97 
98 static const struct attribute_group *led_groups[] = {
99 	&led_group,
100 #ifdef CONFIG_LEDS_TRIGGERS
101 	&led_trigger_group,
102 #endif
103 	NULL,
104 };
105 
106 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
brightness_hw_changed_show(struct device * dev,struct device_attribute * attr,char * buf)107 static ssize_t brightness_hw_changed_show(struct device *dev,
108 		struct device_attribute *attr, char *buf)
109 {
110 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
111 
112 	if (led_cdev->brightness_hw_changed == -1)
113 		return -ENODATA;
114 
115 	return sprintf(buf, "%u\n", led_cdev->brightness_hw_changed);
116 }
117 
118 static DEVICE_ATTR_RO(brightness_hw_changed);
119 
led_add_brightness_hw_changed(struct led_classdev * led_cdev)120 static int led_add_brightness_hw_changed(struct led_classdev *led_cdev)
121 {
122 	struct device *dev = led_cdev->dev;
123 	int ret;
124 
125 	ret = device_create_file(dev, &dev_attr_brightness_hw_changed);
126 	if (ret) {
127 		dev_err(dev, "Error creating brightness_hw_changed\n");
128 		return ret;
129 	}
130 
131 	led_cdev->brightness_hw_changed_kn =
132 		sysfs_get_dirent(dev->kobj.sd, "brightness_hw_changed");
133 	if (!led_cdev->brightness_hw_changed_kn) {
134 		dev_err(dev, "Error getting brightness_hw_changed kn\n");
135 		device_remove_file(dev, &dev_attr_brightness_hw_changed);
136 		return -ENXIO;
137 	}
138 
139 	return 0;
140 }
141 
led_remove_brightness_hw_changed(struct led_classdev * led_cdev)142 static void led_remove_brightness_hw_changed(struct led_classdev *led_cdev)
143 {
144 	sysfs_put(led_cdev->brightness_hw_changed_kn);
145 	device_remove_file(led_cdev->dev, &dev_attr_brightness_hw_changed);
146 }
147 
led_classdev_notify_brightness_hw_changed(struct led_classdev * led_cdev,unsigned int brightness)148 void led_classdev_notify_brightness_hw_changed(struct led_classdev *led_cdev, unsigned int brightness)
149 {
150 	if (WARN_ON(!led_cdev->brightness_hw_changed_kn))
151 		return;
152 
153 	led_cdev->brightness_hw_changed = brightness;
154 	sysfs_notify_dirent(led_cdev->brightness_hw_changed_kn);
155 }
156 EXPORT_SYMBOL_GPL(led_classdev_notify_brightness_hw_changed);
157 #else
led_add_brightness_hw_changed(struct led_classdev * led_cdev)158 static int led_add_brightness_hw_changed(struct led_classdev *led_cdev)
159 {
160 	return 0;
161 }
led_remove_brightness_hw_changed(struct led_classdev * led_cdev)162 static void led_remove_brightness_hw_changed(struct led_classdev *led_cdev)
163 {
164 }
165 #endif
166 
167 /**
168  * led_classdev_suspend - suspend an led_classdev.
169  * @led_cdev: the led_classdev to suspend.
170  */
led_classdev_suspend(struct led_classdev * led_cdev)171 void led_classdev_suspend(struct led_classdev *led_cdev)
172 {
173 	led_cdev->flags |= LED_SUSPENDED;
174 	led_set_brightness_nopm(led_cdev, 0);
175 	flush_work(&led_cdev->set_brightness_work);
176 }
177 EXPORT_SYMBOL_GPL(led_classdev_suspend);
178 
179 /**
180  * led_classdev_resume - resume an led_classdev.
181  * @led_cdev: the led_classdev to resume.
182  */
led_classdev_resume(struct led_classdev * led_cdev)183 void led_classdev_resume(struct led_classdev *led_cdev)
184 {
185 	led_set_brightness_nopm(led_cdev, led_cdev->brightness);
186 
187 	if (led_cdev->flash_resume)
188 		led_cdev->flash_resume(led_cdev);
189 
190 	led_cdev->flags &= ~LED_SUSPENDED;
191 }
192 EXPORT_SYMBOL_GPL(led_classdev_resume);
193 
194 #ifdef CONFIG_PM_SLEEP
led_suspend(struct device * dev)195 static int led_suspend(struct device *dev)
196 {
197 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
198 
199 	if (led_cdev->flags & LED_CORE_SUSPENDRESUME)
200 		led_classdev_suspend(led_cdev);
201 
202 	return 0;
203 }
204 
led_resume(struct device * dev)205 static int led_resume(struct device *dev)
206 {
207 	struct led_classdev *led_cdev = dev_get_drvdata(dev);
208 
209 	if (led_cdev->flags & LED_CORE_SUSPENDRESUME)
210 		led_classdev_resume(led_cdev);
211 
212 	return 0;
213 }
214 #endif
215 
216 static SIMPLE_DEV_PM_OPS(leds_class_dev_pm_ops, led_suspend, led_resume);
217 
218 /**
219  * of_led_get() - request a LED device via the LED framework
220  * @np: device node to get the LED device from
221  * @index: the index of the LED
222  *
223  * Returns the LED device parsed from the phandle specified in the "leds"
224  * property of a device tree node or a negative error-code on failure.
225  */
of_led_get(struct device_node * np,int index)226 struct led_classdev *of_led_get(struct device_node *np, int index)
227 {
228 	struct device *led_dev;
229 	struct led_classdev *led_cdev;
230 	struct device_node *led_node;
231 
232 	led_node = of_parse_phandle(np, "leds", index);
233 	if (!led_node)
234 		return ERR_PTR(-ENOENT);
235 
236 	led_dev = class_find_device_by_of_node(leds_class, led_node);
237 	of_node_put(led_node);
238 	put_device(led_dev);
239 
240 	if (!led_dev)
241 		return ERR_PTR(-EPROBE_DEFER);
242 
243 	led_cdev = dev_get_drvdata(led_dev);
244 
245 	if (!try_module_get(led_cdev->dev->parent->driver->owner)) {
246 		put_device(led_cdev->dev);
247 		return ERR_PTR(-ENODEV);
248 	}
249 
250 	return led_cdev;
251 }
252 EXPORT_SYMBOL_GPL(of_led_get);
253 
254 /**
255  * led_put() - release a LED device
256  * @led_cdev: LED device
257  */
led_put(struct led_classdev * led_cdev)258 void led_put(struct led_classdev *led_cdev)
259 {
260 	module_put(led_cdev->dev->parent->driver->owner);
261 	put_device(led_cdev->dev);
262 }
263 EXPORT_SYMBOL_GPL(led_put);
264 
devm_led_release(struct device * dev,void * res)265 static void devm_led_release(struct device *dev, void *res)
266 {
267 	struct led_classdev **p = res;
268 
269 	led_put(*p);
270 }
271 
272 /**
273  * devm_of_led_get - Resource-managed request of a LED device
274  * @dev:	LED consumer
275  * @index:	index of the LED to obtain in the consumer
276  *
277  * The device node of the device is parse to find the request LED device.
278  * The LED device returned from this function is automatically released
279  * on driver detach.
280  *
281  * @return a pointer to a LED device or ERR_PTR(errno) on failure.
282  */
devm_of_led_get(struct device * dev,int index)283 struct led_classdev *__must_check devm_of_led_get(struct device *dev,
284 						  int index)
285 {
286 	struct led_classdev *led;
287 	struct led_classdev **dr;
288 
289 	if (!dev)
290 		return ERR_PTR(-EINVAL);
291 
292 	led = of_led_get(dev->of_node, index);
293 	if (IS_ERR(led))
294 		return led;
295 
296 	dr = devres_alloc(devm_led_release, sizeof(struct led_classdev *),
297 			  GFP_KERNEL);
298 	if (!dr) {
299 		led_put(led);
300 		return ERR_PTR(-ENOMEM);
301 	}
302 
303 	*dr = led;
304 	devres_add(dev, dr);
305 
306 	return led;
307 }
308 EXPORT_SYMBOL_GPL(devm_of_led_get);
309 
led_classdev_next_name(const char * init_name,char * name,size_t len)310 static int led_classdev_next_name(const char *init_name, char *name,
311 				  size_t len)
312 {
313 	unsigned int i = 0;
314 	int ret = 0;
315 	struct device *dev;
316 
317 	strlcpy(name, init_name, len);
318 
319 	while ((ret < len) &&
320 	       (dev = class_find_device_by_name(leds_class, name))) {
321 		put_device(dev);
322 		ret = snprintf(name, len, "%s_%u", init_name, ++i);
323 	}
324 
325 	if (ret >= len)
326 		return -ENOMEM;
327 
328 	return i;
329 }
330 
331 /**
332  * led_classdev_register_ext - register a new object of led_classdev class
333  *			       with init data.
334  *
335  * @parent: parent of LED device
336  * @led_cdev: the led_classdev structure for this device.
337  * @init_data: LED class device initialization data
338  */
led_classdev_register_ext(struct device * parent,struct led_classdev * led_cdev,struct led_init_data * init_data)339 int led_classdev_register_ext(struct device *parent,
340 			      struct led_classdev *led_cdev,
341 			      struct led_init_data *init_data)
342 {
343 	char composed_name[LED_MAX_NAME_SIZE];
344 	char final_name[LED_MAX_NAME_SIZE];
345 	const char *proposed_name = composed_name;
346 	int ret;
347 
348 	if (init_data) {
349 		if (init_data->devname_mandatory && !init_data->devicename) {
350 			dev_err(parent, "Mandatory device name is missing");
351 			return -EINVAL;
352 		}
353 		ret = led_compose_name(parent, init_data, composed_name);
354 		if (ret < 0)
355 			return ret;
356 
357 		if (init_data->fwnode) {
358 			fwnode_property_read_string(init_data->fwnode,
359 				"linux,default-trigger",
360 				&led_cdev->default_trigger);
361 
362 			if (fwnode_property_present(init_data->fwnode,
363 						    "retain-state-shutdown"))
364 				led_cdev->flags |= LED_RETAIN_AT_SHUTDOWN;
365 		}
366 	} else {
367 		proposed_name = led_cdev->name;
368 	}
369 
370 	ret = led_classdev_next_name(proposed_name, final_name, sizeof(final_name));
371 	if (ret < 0)
372 		return ret;
373 
374 	mutex_init(&led_cdev->led_access);
375 	mutex_lock(&led_cdev->led_access);
376 	led_cdev->dev = device_create_with_groups(leds_class, parent, 0,
377 				led_cdev, led_cdev->groups, "%s", final_name);
378 	if (IS_ERR(led_cdev->dev)) {
379 		mutex_unlock(&led_cdev->led_access);
380 		return PTR_ERR(led_cdev->dev);
381 	}
382 	if (init_data && init_data->fwnode) {
383 		led_cdev->dev->fwnode = init_data->fwnode;
384 		led_cdev->dev->of_node = to_of_node(init_data->fwnode);
385 	}
386 
387 	if (ret)
388 		dev_warn(parent, "Led %s renamed to %s due to name collision",
389 				proposed_name, dev_name(led_cdev->dev));
390 
391 	if (led_cdev->flags & LED_BRIGHT_HW_CHANGED) {
392 		ret = led_add_brightness_hw_changed(led_cdev);
393 		if (ret) {
394 			device_unregister(led_cdev->dev);
395 			led_cdev->dev = NULL;
396 			mutex_unlock(&led_cdev->led_access);
397 			return ret;
398 		}
399 	}
400 
401 	led_cdev->work_flags = 0;
402 #ifdef CONFIG_LEDS_TRIGGERS
403 	init_rwsem(&led_cdev->trigger_lock);
404 #endif
405 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
406 	led_cdev->brightness_hw_changed = -1;
407 #endif
408 	/* add to the list of leds */
409 	down_write(&leds_list_lock);
410 	list_add_tail(&led_cdev->node, &leds_list);
411 	up_write(&leds_list_lock);
412 
413 	if (!led_cdev->max_brightness)
414 		led_cdev->max_brightness = LED_FULL;
415 
416 	led_update_brightness(led_cdev);
417 
418 	led_init_core(led_cdev);
419 
420 #ifdef CONFIG_LEDS_TRIGGERS
421 	led_trigger_set_default(led_cdev);
422 #endif
423 
424 	mutex_unlock(&led_cdev->led_access);
425 
426 	dev_dbg(parent, "Registered led device: %s\n",
427 			led_cdev->name);
428 
429 	return 0;
430 }
431 EXPORT_SYMBOL_GPL(led_classdev_register_ext);
432 
433 /**
434  * led_classdev_unregister - unregisters a object of led_properties class.
435  * @led_cdev: the led device to unregister
436  *
437  * Unregisters a previously registered via led_classdev_register object.
438  */
led_classdev_unregister(struct led_classdev * led_cdev)439 void led_classdev_unregister(struct led_classdev *led_cdev)
440 {
441 	if (IS_ERR_OR_NULL(led_cdev->dev))
442 		return;
443 
444 #ifdef CONFIG_LEDS_TRIGGERS
445 	down_write(&led_cdev->trigger_lock);
446 	if (led_cdev->trigger)
447 		led_trigger_set(led_cdev, NULL);
448 	up_write(&led_cdev->trigger_lock);
449 #endif
450 
451 	led_cdev->flags |= LED_UNREGISTERING;
452 
453 	/* Stop blinking */
454 	led_stop_software_blink(led_cdev);
455 
456 	if (!(led_cdev->flags & LED_RETAIN_AT_SHUTDOWN))
457 		led_set_brightness(led_cdev, LED_OFF);
458 
459 	flush_work(&led_cdev->set_brightness_work);
460 
461 	if (led_cdev->flags & LED_BRIGHT_HW_CHANGED)
462 		led_remove_brightness_hw_changed(led_cdev);
463 
464 	device_unregister(led_cdev->dev);
465 
466 	down_write(&leds_list_lock);
467 	list_del(&led_cdev->node);
468 	up_write(&leds_list_lock);
469 
470 	mutex_destroy(&led_cdev->led_access);
471 }
472 EXPORT_SYMBOL_GPL(led_classdev_unregister);
473 
devm_led_classdev_release(struct device * dev,void * res)474 static void devm_led_classdev_release(struct device *dev, void *res)
475 {
476 	led_classdev_unregister(*(struct led_classdev **)res);
477 }
478 
479 /**
480  * devm_led_classdev_register_ext - resource managed led_classdev_register_ext()
481  *
482  * @parent: parent of LED device
483  * @led_cdev: the led_classdev structure for this device.
484  * @init_data: LED class device initialization data
485  */
devm_led_classdev_register_ext(struct device * parent,struct led_classdev * led_cdev,struct led_init_data * init_data)486 int devm_led_classdev_register_ext(struct device *parent,
487 				   struct led_classdev *led_cdev,
488 				   struct led_init_data *init_data)
489 {
490 	struct led_classdev **dr;
491 	int rc;
492 
493 	dr = devres_alloc(devm_led_classdev_release, sizeof(*dr), GFP_KERNEL);
494 	if (!dr)
495 		return -ENOMEM;
496 
497 	rc = led_classdev_register_ext(parent, led_cdev, init_data);
498 	if (rc) {
499 		devres_free(dr);
500 		return rc;
501 	}
502 
503 	*dr = led_cdev;
504 	devres_add(parent, dr);
505 
506 	return 0;
507 }
508 EXPORT_SYMBOL_GPL(devm_led_classdev_register_ext);
509 
devm_led_classdev_match(struct device * dev,void * res,void * data)510 static int devm_led_classdev_match(struct device *dev, void *res, void *data)
511 {
512 	struct led_classdev **p = res;
513 
514 	if (WARN_ON(!p || !*p))
515 		return 0;
516 
517 	return *p == data;
518 }
519 
520 /**
521  * devm_led_classdev_unregister() - resource managed led_classdev_unregister()
522  * @dev: The device to unregister.
523  * @led_cdev: the led_classdev structure for this device.
524  */
devm_led_classdev_unregister(struct device * dev,struct led_classdev * led_cdev)525 void devm_led_classdev_unregister(struct device *dev,
526 				  struct led_classdev *led_cdev)
527 {
528 	WARN_ON(devres_release(dev,
529 			       devm_led_classdev_release,
530 			       devm_led_classdev_match, led_cdev));
531 }
532 EXPORT_SYMBOL_GPL(devm_led_classdev_unregister);
533 
leds_init(void)534 static int __init leds_init(void)
535 {
536 	leds_class = class_create(THIS_MODULE, "leds");
537 	if (IS_ERR(leds_class))
538 		return PTR_ERR(leds_class);
539 	leds_class->pm = &leds_class_dev_pm_ops;
540 	leds_class->dev_groups = led_groups;
541 	return 0;
542 }
543 
leds_exit(void)544 static void __exit leds_exit(void)
545 {
546 	class_destroy(leds_class);
547 }
548 
549 subsys_initcall(leds_init);
550 module_exit(leds_exit);
551 
552 MODULE_AUTHOR("John Lenz, Richard Purdie");
553 MODULE_LICENSE("GPL");
554 MODULE_DESCRIPTION("LED Class Interface");
555