leds-s3c24xx.c 3.8 KB

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