leds-s3c24xx.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 <asm/arch/hardware.h>
  18. #include <asm/arch/regs-gpio.h>
  19. #include <asm/arch/leds-gpio.h>
  20. /* our context */
  21. struct s3c24xx_gpio_led {
  22. struct led_classdev cdev;
  23. struct s3c24xx_led_platdata *pdata;
  24. };
  25. static inline struct s3c24xx_gpio_led *pdev_to_gpio(struct platform_device *dev)
  26. {
  27. return platform_get_drvdata(dev);
  28. }
  29. static inline struct s3c24xx_gpio_led *to_gpio(struct led_classdev *led_cdev)
  30. {
  31. return container_of(led_cdev, struct s3c24xx_gpio_led, cdev);
  32. }
  33. static void s3c24xx_led_set(struct led_classdev *led_cdev,
  34. enum led_brightness value)
  35. {
  36. struct s3c24xx_gpio_led *led = to_gpio(led_cdev);
  37. struct s3c24xx_led_platdata *pd = led->pdata;
  38. /* there will be a sort delay between setting the output and
  39. * going from output to input when using tristate. */
  40. s3c2410_gpio_setpin(pd->gpio, (value ? 1 : 0) ^
  41. (pd->flags & S3C24XX_LEDF_ACTLOW));
  42. if (pd->flags & S3C24XX_LEDF_TRISTATE)
  43. s3c2410_gpio_cfgpin(pd->gpio,
  44. value ? S3C2410_GPIO_OUTPUT : S3C2410_GPIO_INPUT);
  45. }
  46. static int s3c24xx_led_remove(struct platform_device *dev)
  47. {
  48. struct s3c24xx_gpio_led *led = pdev_to_gpio(dev);
  49. led_classdev_unregister(&led->cdev);
  50. kfree(led);
  51. return 0;
  52. }
  53. static int s3c24xx_led_probe(struct platform_device *dev)
  54. {
  55. struct s3c24xx_led_platdata *pdata = dev->dev.platform_data;
  56. struct s3c24xx_gpio_led *led;
  57. int ret;
  58. led = kzalloc(sizeof(struct s3c24xx_gpio_led), GFP_KERNEL);
  59. if (led == NULL) {
  60. dev_err(&dev->dev, "No memory for device\n");
  61. return -ENOMEM;
  62. }
  63. platform_set_drvdata(dev, led);
  64. led->cdev.brightness_set = s3c24xx_led_set;
  65. led->cdev.default_trigger = pdata->def_trigger;
  66. led->cdev.name = pdata->name;
  67. led->pdata = pdata;
  68. /* no point in having a pull-up if we are always driving */
  69. if (pdata->flags & S3C24XX_LEDF_TRISTATE) {
  70. s3c2410_gpio_setpin(pdata->gpio, 0);
  71. s3c2410_gpio_cfgpin(pdata->gpio, S3C2410_GPIO_INPUT);
  72. } else {
  73. s3c2410_gpio_pullup(pdata->gpio, 0);
  74. s3c2410_gpio_setpin(pdata->gpio, 0);
  75. s3c2410_gpio_cfgpin(pdata->gpio, S3C2410_GPIO_OUTPUT);
  76. }
  77. /* register our new led device */
  78. ret = led_classdev_register(&dev->dev, &led->cdev);
  79. if (ret < 0) {
  80. dev_err(&dev->dev, "led_classdev_register failed\n");
  81. goto exit_err1;
  82. }
  83. return 0;
  84. exit_err1:
  85. kfree(led);
  86. return ret;
  87. }
  88. #ifdef CONFIG_PM
  89. static int s3c24xx_led_suspend(struct platform_device *dev, pm_message_t state)
  90. {
  91. struct s3c24xx_gpio_led *led = pdev_to_gpio(dev);
  92. led_classdev_suspend(&led->cdev);
  93. return 0;
  94. }
  95. static int s3c24xx_led_resume(struct platform_device *dev)
  96. {
  97. struct s3c24xx_gpio_led *led = pdev_to_gpio(dev);
  98. led_classdev_resume(&led->cdev);
  99. return 0;
  100. }
  101. #else
  102. #define s3c24xx_led_suspend NULL
  103. #define s3c24xx_led_resume NULL
  104. #endif
  105. static struct platform_driver s3c24xx_led_driver = {
  106. .probe = s3c24xx_led_probe,
  107. .remove = s3c24xx_led_remove,
  108. .suspend = s3c24xx_led_suspend,
  109. .resume = s3c24xx_led_resume,
  110. .driver = {
  111. .name = "s3c24xx_led",
  112. .owner = THIS_MODULE,
  113. },
  114. };
  115. static int __init s3c24xx_led_init(void)
  116. {
  117. return platform_driver_register(&s3c24xx_led_driver);
  118. }
  119. static void __exit s3c24xx_led_exit(void)
  120. {
  121. platform_driver_unregister(&s3c24xx_led_driver);
  122. }
  123. module_init(s3c24xx_led_init);
  124. module_exit(s3c24xx_led_exit);
  125. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  126. MODULE_DESCRIPTION("S3C24XX LED driver");
  127. MODULE_LICENSE("GPL");