leds-s3c24xx.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* drivers/leds/leds-s3c24xx.c
  2. *
  3. * (c) 2006 Simtec Electronics
  4. * http://armlinux.simtec.co.uk/
  5. * Ben Dooks <ben@simtec.co.uk>
  6. *
  7. * S3C24XX - LEDs GPIO driver
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/leds.h>
  16. #include <linux/gpio.h>
  17. #include <linux/slab.h>
  18. #include <linux/module.h>
  19. #include <linux/platform_data/leds-s3c24xx.h>
  20. #include <mach/regs-gpio.h>
  21. #include <plat/gpio-cfg.h>
  22. /* our context */
  23. struct s3c24xx_gpio_led {
  24. struct led_classdev cdev;
  25. struct s3c24xx_led_platdata *pdata;
  26. };
  27. static inline struct s3c24xx_gpio_led *to_gpio(struct led_classdev *led_cdev)
  28. {
  29. return container_of(led_cdev, struct s3c24xx_gpio_led, cdev);
  30. }
  31. static void s3c24xx_led_set(struct led_classdev *led_cdev,
  32. enum led_brightness value)
  33. {
  34. struct s3c24xx_gpio_led *led = to_gpio(led_cdev);
  35. struct s3c24xx_led_platdata *pd = led->pdata;
  36. int state = (value ? 1 : 0) ^ (pd->flags & S3C24XX_LEDF_ACTLOW);
  37. /* there will be a short delay between setting the output and
  38. * going from output to input when using tristate. */
  39. gpio_set_value(pd->gpio, state);
  40. if (pd->flags & S3C24XX_LEDF_TRISTATE) {
  41. if (value)
  42. gpio_direction_output(pd->gpio, state);
  43. else
  44. gpio_direction_input(pd->gpio);
  45. }
  46. }
  47. static int s3c24xx_led_probe(struct platform_device *dev)
  48. {
  49. struct s3c24xx_led_platdata *pdata = dev_get_platdata(&dev->dev);
  50. struct s3c24xx_gpio_led *led;
  51. int ret;
  52. led = devm_kzalloc(&dev->dev, sizeof(struct s3c24xx_gpio_led),
  53. GFP_KERNEL);
  54. if (!led)
  55. return -ENOMEM;
  56. led->cdev.brightness_set = s3c24xx_led_set;
  57. led->cdev.default_trigger = pdata->def_trigger;
  58. led->cdev.name = pdata->name;
  59. led->cdev.flags |= LED_CORE_SUSPENDRESUME;
  60. led->pdata = pdata;
  61. ret = devm_gpio_request(&dev->dev, pdata->gpio, "S3C24XX_LED");
  62. if (ret < 0)
  63. return ret;
  64. /* no point in having a pull-up if we are always driving */
  65. s3c_gpio_setpull(pdata->gpio, S3C_GPIO_PULL_NONE);
  66. if (pdata->flags & S3C24XX_LEDF_TRISTATE)
  67. gpio_direction_input(pdata->gpio);
  68. else
  69. gpio_direction_output(pdata->gpio,
  70. pdata->flags & S3C24XX_LEDF_ACTLOW ? 1 : 0);
  71. /* register our new led device */
  72. ret = devm_led_classdev_register(&dev->dev, &led->cdev);
  73. if (ret < 0)
  74. dev_err(&dev->dev, "led_classdev_register failed\n");
  75. return ret;
  76. }
  77. static struct platform_driver s3c24xx_led_driver = {
  78. .probe = s3c24xx_led_probe,
  79. .driver = {
  80. .name = "s3c24xx_led",
  81. },
  82. };
  83. module_platform_driver(s3c24xx_led_driver);
  84. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  85. MODULE_DESCRIPTION("S3C24XX LED driver");
  86. MODULE_LICENSE("GPL");
  87. MODULE_ALIAS("platform:s3c24xx_led");