pwm_bl.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /*
  2. * linux/drivers/video/backlight/pwm_bl.c
  3. *
  4. * simple PWM based backlight control, board code has to setup
  5. * 1) pin configuration so PWM waveforms can output
  6. * 2) platform_data being correctly configured
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/fb.h>
  17. #include <linux/backlight.h>
  18. #include <linux/err.h>
  19. #include <linux/pwm.h>
  20. #include <linux/pwm_backlight.h>
  21. #include <linux/slab.h>
  22. struct pwm_bl_data {
  23. struct pwm_device *pwm;
  24. struct device *dev;
  25. unsigned int period;
  26. unsigned int lth_brightness;
  27. int (*notify)(struct device *,
  28. int brightness);
  29. void (*notify_after)(struct device *,
  30. int brightness);
  31. int (*check_fb)(struct device *, struct fb_info *);
  32. };
  33. static int pwm_backlight_update_status(struct backlight_device *bl)
  34. {
  35. struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
  36. int brightness = bl->props.brightness;
  37. int max = bl->props.max_brightness;
  38. if (bl->props.power != FB_BLANK_UNBLANK)
  39. brightness = 0;
  40. if (bl->props.fb_blank != FB_BLANK_UNBLANK)
  41. brightness = 0;
  42. if (pb->notify)
  43. brightness = pb->notify(pb->dev, brightness);
  44. if (brightness == 0) {
  45. pwm_config(pb->pwm, 0, pb->period);
  46. pwm_disable(pb->pwm);
  47. } else {
  48. brightness = pb->lth_brightness +
  49. (brightness * (pb->period - pb->lth_brightness) / max);
  50. pwm_config(pb->pwm, brightness, pb->period);
  51. pwm_enable(pb->pwm);
  52. }
  53. if (pb->notify_after)
  54. pb->notify_after(pb->dev, brightness);
  55. return 0;
  56. }
  57. static int pwm_backlight_get_brightness(struct backlight_device *bl)
  58. {
  59. return bl->props.brightness;
  60. }
  61. static int pwm_backlight_check_fb(struct backlight_device *bl,
  62. struct fb_info *info)
  63. {
  64. struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
  65. return !pb->check_fb || pb->check_fb(pb->dev, info);
  66. }
  67. static const struct backlight_ops pwm_backlight_ops = {
  68. .update_status = pwm_backlight_update_status,
  69. .get_brightness = pwm_backlight_get_brightness,
  70. .check_fb = pwm_backlight_check_fb,
  71. };
  72. static int pwm_backlight_probe(struct platform_device *pdev)
  73. {
  74. struct backlight_properties props;
  75. struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
  76. struct backlight_device *bl;
  77. struct pwm_bl_data *pb;
  78. int ret;
  79. if (!data) {
  80. dev_err(&pdev->dev, "failed to find platform data\n");
  81. return -EINVAL;
  82. }
  83. if (data->init) {
  84. ret = data->init(&pdev->dev);
  85. if (ret < 0)
  86. return ret;
  87. }
  88. pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
  89. if (!pb) {
  90. dev_err(&pdev->dev, "no memory for state\n");
  91. ret = -ENOMEM;
  92. goto err_alloc;
  93. }
  94. pb->period = data->pwm_period_ns;
  95. pb->notify = data->notify;
  96. pb->notify_after = data->notify_after;
  97. pb->check_fb = data->check_fb;
  98. pb->lth_brightness = data->lth_brightness *
  99. (data->pwm_period_ns / data->max_brightness);
  100. pb->dev = &pdev->dev;
  101. pb->pwm = pwm_request(data->pwm_id, "backlight");
  102. if (IS_ERR(pb->pwm)) {
  103. dev_err(&pdev->dev, "unable to request PWM for backlight\n");
  104. ret = PTR_ERR(pb->pwm);
  105. goto err_alloc;
  106. } else
  107. dev_dbg(&pdev->dev, "got pwm for backlight\n");
  108. memset(&props, 0, sizeof(struct backlight_properties));
  109. props.type = BACKLIGHT_RAW;
  110. props.max_brightness = data->max_brightness;
  111. bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
  112. &pwm_backlight_ops, &props);
  113. if (IS_ERR(bl)) {
  114. dev_err(&pdev->dev, "failed to register backlight\n");
  115. ret = PTR_ERR(bl);
  116. goto err_bl;
  117. }
  118. bl->props.brightness = data->dft_brightness;
  119. backlight_update_status(bl);
  120. platform_set_drvdata(pdev, bl);
  121. return 0;
  122. err_bl:
  123. pwm_free(pb->pwm);
  124. err_alloc:
  125. if (data->exit)
  126. data->exit(&pdev->dev);
  127. return ret;
  128. }
  129. static int pwm_backlight_remove(struct platform_device *pdev)
  130. {
  131. struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
  132. struct backlight_device *bl = platform_get_drvdata(pdev);
  133. struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
  134. backlight_device_unregister(bl);
  135. pwm_config(pb->pwm, 0, pb->period);
  136. pwm_disable(pb->pwm);
  137. pwm_free(pb->pwm);
  138. if (data->exit)
  139. data->exit(&pdev->dev);
  140. return 0;
  141. }
  142. #ifdef CONFIG_PM
  143. static int pwm_backlight_suspend(struct device *dev)
  144. {
  145. struct backlight_device *bl = dev_get_drvdata(dev);
  146. struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
  147. if (pb->notify)
  148. pb->notify(pb->dev, 0);
  149. pwm_config(pb->pwm, 0, pb->period);
  150. pwm_disable(pb->pwm);
  151. if (pb->notify_after)
  152. pb->notify_after(pb->dev, 0);
  153. return 0;
  154. }
  155. static int pwm_backlight_resume(struct device *dev)
  156. {
  157. struct backlight_device *bl = dev_get_drvdata(dev);
  158. backlight_update_status(bl);
  159. return 0;
  160. }
  161. static SIMPLE_DEV_PM_OPS(pwm_backlight_pm_ops, pwm_backlight_suspend,
  162. pwm_backlight_resume);
  163. #endif
  164. static struct platform_driver pwm_backlight_driver = {
  165. .driver = {
  166. .name = "pwm-backlight",
  167. .owner = THIS_MODULE,
  168. #ifdef CONFIG_PM
  169. .pm = &pwm_backlight_pm_ops,
  170. #endif
  171. },
  172. .probe = pwm_backlight_probe,
  173. .remove = pwm_backlight_remove,
  174. };
  175. module_platform_driver(pwm_backlight_driver);
  176. MODULE_DESCRIPTION("PWM based Backlight Driver");
  177. MODULE_LICENSE("GPL");
  178. MODULE_ALIAS("platform:pwm-backlight");