leds-lp5521.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * LP5521 LED chip driver.
  3. *
  4. * Copyright (C) 2010 Nokia Corporation
  5. *
  6. * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * version 2 as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA
  21. */
  22. #ifndef __LINUX_LP5521_H
  23. #define __LINUX_LP5521_H
  24. /* See Documentation/leds/leds-lp5521.txt */
  25. struct lp5521_led_config {
  26. char *name;
  27. u8 chan_nr;
  28. u8 led_current; /* mA x10, 0 if led is not connected */
  29. u8 max_current;
  30. };
  31. struct lp5521_led_pattern {
  32. u8 *r;
  33. u8 *g;
  34. u8 *b;
  35. u8 size_r;
  36. u8 size_g;
  37. u8 size_b;
  38. };
  39. #define LP5521_CLOCK_AUTO 0
  40. #define LP5521_CLOCK_INT 1
  41. #define LP5521_CLOCK_EXT 2
  42. /* Bits in CONFIG register */
  43. #define LP5521_PWM_HF 0x40 /* PWM: 0 = 256Hz, 1 = 558Hz */
  44. #define LP5521_PWRSAVE_EN 0x20 /* 1 = Power save mode */
  45. #define LP5521_CP_MODE_OFF 0 /* Charge pump (CP) off */
  46. #define LP5521_CP_MODE_BYPASS 8 /* CP forced to bypass mode */
  47. #define LP5521_CP_MODE_1X5 0x10 /* CP forced to 1.5x mode */
  48. #define LP5521_CP_MODE_AUTO 0x18 /* Automatic mode selection */
  49. #define LP5521_R_TO_BATT 4 /* R out: 0 = CP, 1 = Vbat */
  50. #define LP5521_CLK_SRC_EXT 0 /* Ext-clk source (CLK_32K) */
  51. #define LP5521_CLK_INT 1 /* Internal clock */
  52. #define LP5521_CLK_AUTO 2 /* Automatic clock selection */
  53. struct lp5521_platform_data {
  54. struct lp5521_led_config *led_config;
  55. u8 num_channels;
  56. u8 clock_mode;
  57. int (*setup_resources)(void);
  58. void (*release_resources)(void);
  59. void (*enable)(bool state);
  60. const char *label;
  61. u8 update_config;
  62. struct lp5521_led_pattern *patterns;
  63. int num_patterns;
  64. };
  65. #endif /* __LINUX_LP5521_H */