hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// SPDX-License-Identifier: GPL-2.0-only
/* drivers/leds/leds-s3c24xx.c
 *
 * (c) 2006 Simtec Electronics
 *    http://armlinux.simtec.co.uk/
 *    Ben Dooks <ben@simtec.co.uk>
 *
 * S3C24XX - LEDs GPIO driver
*/
 
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/gpio/consumer.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/platform_data/leds-s3c24xx.h>
 
/* our context */
 
struct s3c24xx_gpio_led {
   struct led_classdev         cdev;
   struct s3c24xx_led_platdata    *pdata;
   struct gpio_desc        *gpiod;
};
 
static inline struct s3c24xx_gpio_led *to_gpio(struct led_classdev *led_cdev)
{
   return container_of(led_cdev, struct s3c24xx_gpio_led, cdev);
}
 
static void s3c24xx_led_set(struct led_classdev *led_cdev,
               enum led_brightness value)
{
   struct s3c24xx_gpio_led *led = to_gpio(led_cdev);
 
   gpiod_set_value(led->gpiod, !!value);
}
 
static int s3c24xx_led_probe(struct platform_device *dev)
{
   struct s3c24xx_led_platdata *pdata = dev_get_platdata(&dev->dev);
   struct s3c24xx_gpio_led *led;
   int ret;
 
   led = devm_kzalloc(&dev->dev, sizeof(struct s3c24xx_gpio_led),
              GFP_KERNEL);
   if (!led)
       return -ENOMEM;
 
   led->cdev.brightness_set = s3c24xx_led_set;
   led->cdev.default_trigger = pdata->def_trigger;
   led->cdev.name = pdata->name;
   led->cdev.flags |= LED_CORE_SUSPENDRESUME;
 
   led->pdata = pdata;
 
   /* Default to off */
   led->gpiod = devm_gpiod_get(&dev->dev, NULL, GPIOD_OUT_LOW);
   if (IS_ERR(led->gpiod))
       return PTR_ERR(led->gpiod);
 
   /* register our new led device */
   ret = devm_led_classdev_register(&dev->dev, &led->cdev);
   if (ret < 0)
       dev_err(&dev->dev, "led_classdev_register failed\n");
 
   return ret;
}
 
static struct platform_driver s3c24xx_led_driver = {
   .probe        = s3c24xx_led_probe,
   .driver        = {
       .name        = "s3c24xx_led",
   },
};
 
module_platform_driver(s3c24xx_led_driver);
 
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
MODULE_DESCRIPTION("S3C24XX LED driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:s3c24xx_led");