leds-s3c24xx.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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/init.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/leds.h>
  17. #include <linux/gpio.h>
  18. #include <linux/slab.h>
  19. #include <linux/module.h>
  20. #include <mach/hardware.h>
  21. #include <mach/regs-gpio.h>
  22. #include <linux/platform_data/leds-s3c24xx.h>
  23. /* our context */
  24. struct s3c24xx_gpio_led {
  25. struct led_classdev cdev;
  26. struct s3c24xx_led_platdata *pdata;
  27. };
  28. static inline struct s3c24xx_gpio_led *pdev_to_gpio(struct platform_device *dev)
  29. {
  30. return platform_get_drvdata(dev);
  31. }
  32. static inline struct s3c24xx_gpio_led *to_gpio(struct led_classdev *led_cdev)
  33. {
  34. return container_of(led_cdev, struct s3c24xx_gpio_led, cdev);
  35. }
  36. static void s3c24xx_led_set(struct led_classdev *led_cdev,
  37. enum led_brightness value)
  38. {
  39. struct s3c24xx_gpio_led *led = to_gpio(led_cdev);
  40. struct s3c24xx_led_platdata *pd = led->pdata;
  41. int state = (value ? 1 : 0) ^ (pd->flags & S3C24XX_LEDF_ACTLOW);
  42. /* there will be a short delay between setting the output and
  43. * going from output to input when using tristate. */
  44. gpio_set_value(pd->gpio, state);
  45. if (pd->flags & S3C24XX_LEDF_TRISTATE) {
  46. if (value)
  47. gpio_direction_output(pd->gpio, state);
  48. else
  49. gpio_direction_input(pd->gpio);
  50. }
  51. }
  52. static int s3c24xx_led_remove(struct platform_device *dev)
  53. {
  54. struct s3c24xx_gpio_led *led = pdev_to_gpio(dev);
  55. led_classdev_unregister(&led->cdev);
  56. return 0;
  57. }
  58. static int s3c24xx_led_probe(struct platform_device *dev)
  59. {
  60. struct s3c24xx_led_platdata *pdata = dev->dev.platform_data;
  61. struct s3c24xx_gpio_led *led;
  62. int ret;
  63. led = devm_kzalloc(&dev->dev, sizeof(struct s3c24xx_gpio_led),
  64. GFP_KERNEL);
  65. if (led == NULL) {
  66. dev_err(&dev->dev, "No memory for device\n");
  67. return -ENOMEM;
  68. }
  69. platform_set_drvdata(dev, led);
  70. led->cdev.brightness_set = s3c24xx_led_set;
  71. led->cdev.default_trigger = pdata->def_trigger;
  72. led->cdev.name = pdata->name;
  73. led->cdev.flags |= LED_CORE_SUSPENDRESUME;
  74. led->pdata = pdata;
  75. ret = devm_gpio_request(&dev->dev, pdata->gpio, "S3C24XX_LED");
  76. if (ret < 0)
  77. return ret;
  78. /* no point in having a pull-up if we are always driving */
  79. s3c_gpio_setpull(pdata->gpio, S3C_GPIO_PULL_NONE);
  80. if (pdata->flags & S3C24XX_LEDF_TRISTATE)
  81. gpio_direction_input(pdata->gpio);
  82. else
  83. gpio_direction_output(pdata->gpio,
  84. pdata->flags & S3C24XX_LEDF_ACTLOW ? 1 : 0);
  85. /* register our new led device */
  86. ret = led_classdev_register(&dev->dev, &led->cdev);
  87. if (ret < 0)
  88. dev_err(&dev->dev, "led_classdev_register failed\n");
  89. return ret;
  90. }
  91. static struct platform_driver s3c24xx_led_driver = {
  92. .probe = s3c24xx_led_probe,
  93. .remove = s3c24xx_led_remove,
  94. .driver = {
  95. .name = "s3c24xx_led",
  96. .owner = THIS_MODULE,
  97. },
  98. };
  99. module_platform_driver(s3c24xx_led_driver);
  100. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  101. MODULE_DESCRIPTION("S3C24XX LED driver");
  102. MODULE_LICENSE("GPL");
  103. MODULE_ALIAS("platform:s3c24xx_led");