ep93xx_bl.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Driver for the Cirrus EP93xx lcd backlight
  3. *
  4. * Copyright (c) 2010 H Hartley Sweeten <hsweeten@visionengravers.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This driver controls the pulse width modulated brightness control output,
  11. * BRIGHT, on the Cirrus EP9307, EP9312, and EP9315 processors.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/module.h>
  16. #include <linux/io.h>
  17. #include <linux/fb.h>
  18. #include <linux/backlight.h>
  19. #include <mach/hardware.h>
  20. #define EP93XX_RASTER_REG(x) (EP93XX_RASTER_BASE + (x))
  21. #define EP93XX_RASTER_BRIGHTNESS EP93XX_RASTER_REG(0x20)
  22. #define EP93XX_MAX_COUNT 255
  23. #define EP93XX_MAX_BRIGHT 255
  24. #define EP93XX_DEF_BRIGHT 128
  25. struct ep93xxbl {
  26. void __iomem *mmio;
  27. int brightness;
  28. };
  29. static int ep93xxbl_set(struct backlight_device *bl, int brightness)
  30. {
  31. struct ep93xxbl *ep93xxbl = bl_get_data(bl);
  32. __raw_writel((brightness << 8) | EP93XX_MAX_COUNT, ep93xxbl->mmio);
  33. ep93xxbl->brightness = brightness;
  34. return 0;
  35. }
  36. static int ep93xxbl_update_status(struct backlight_device *bl)
  37. {
  38. int brightness = bl->props.brightness;
  39. if (bl->props.power != FB_BLANK_UNBLANK ||
  40. bl->props.fb_blank != FB_BLANK_UNBLANK)
  41. brightness = 0;
  42. return ep93xxbl_set(bl, brightness);
  43. }
  44. static int ep93xxbl_get_brightness(struct backlight_device *bl)
  45. {
  46. struct ep93xxbl *ep93xxbl = bl_get_data(bl);
  47. return ep93xxbl->brightness;
  48. }
  49. static const struct backlight_ops ep93xxbl_ops = {
  50. .update_status = ep93xxbl_update_status,
  51. .get_brightness = ep93xxbl_get_brightness,
  52. };
  53. static int __init ep93xxbl_probe(struct platform_device *dev)
  54. {
  55. struct ep93xxbl *ep93xxbl;
  56. struct backlight_device *bl;
  57. struct backlight_properties props;
  58. ep93xxbl = devm_kzalloc(&dev->dev, sizeof(*ep93xxbl), GFP_KERNEL);
  59. if (!ep93xxbl)
  60. return -ENOMEM;
  61. /*
  62. * This register is located in the range already ioremap'ed by
  63. * the framebuffer driver. A MFD driver seems a bit of overkill
  64. * to handle this so use the static I/O mapping; this address
  65. * is already virtual.
  66. *
  67. * NOTE: No locking is required; the framebuffer does not touch
  68. * this register.
  69. */
  70. ep93xxbl->mmio = EP93XX_RASTER_BRIGHTNESS;
  71. memset(&props, 0, sizeof(struct backlight_properties));
  72. props.type = BACKLIGHT_RAW;
  73. props.max_brightness = EP93XX_MAX_BRIGHT;
  74. bl = backlight_device_register(dev->name, &dev->dev, ep93xxbl,
  75. &ep93xxbl_ops, &props);
  76. if (IS_ERR(bl))
  77. return PTR_ERR(bl);
  78. bl->props.brightness = EP93XX_DEF_BRIGHT;
  79. platform_set_drvdata(dev, bl);
  80. ep93xxbl_update_status(bl);
  81. return 0;
  82. }
  83. static int ep93xxbl_remove(struct platform_device *dev)
  84. {
  85. struct backlight_device *bl = platform_get_drvdata(dev);
  86. backlight_device_unregister(bl);
  87. platform_set_drvdata(dev, NULL);
  88. return 0;
  89. }
  90. #ifdef CONFIG_PM
  91. static int ep93xxbl_suspend(struct platform_device *dev, pm_message_t state)
  92. {
  93. struct backlight_device *bl = platform_get_drvdata(dev);
  94. return ep93xxbl_set(bl, 0);
  95. }
  96. static int ep93xxbl_resume(struct platform_device *dev)
  97. {
  98. struct backlight_device *bl = platform_get_drvdata(dev);
  99. backlight_update_status(bl);
  100. return 0;
  101. }
  102. #else
  103. #define ep93xxbl_suspend NULL
  104. #define ep93xxbl_resume NULL
  105. #endif
  106. static struct platform_driver ep93xxbl_driver = {
  107. .driver = {
  108. .name = "ep93xx-bl",
  109. .owner = THIS_MODULE,
  110. },
  111. .probe = ep93xxbl_probe,
  112. .remove = __devexit_p(ep93xxbl_remove),
  113. .suspend = ep93xxbl_suspend,
  114. .resume = ep93xxbl_resume,
  115. };
  116. module_platform_driver(ep93xxbl_driver);
  117. MODULE_DESCRIPTION("EP93xx Backlight Driver");
  118. MODULE_AUTHOR("H Hartley Sweeten <hsweeten@visionengravers.com>");
  119. MODULE_LICENSE("GPL");
  120. MODULE_ALIAS("platform:ep93xx-bl");