supply.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * supply.h -- Power Supply Driver for Wolfson WM8350 PMIC
  3. *
  4. * Copyright 2007 Wolfson Microelectronics PLC
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. *
  11. */
  12. #ifndef __LINUX_MFD_WM8350_SUPPLY_H_
  13. #define __LINUX_MFD_WM8350_SUPPLY_H_
  14. #include <linux/mutex.h>
  15. #include <linux/power_supply.h>
  16. /*
  17. * Charger registers
  18. */
  19. #define WM8350_BATTERY_CHARGER_CONTROL_1 0xA8
  20. #define WM8350_BATTERY_CHARGER_CONTROL_2 0xA9
  21. #define WM8350_BATTERY_CHARGER_CONTROL_3 0xAA
  22. /*
  23. * R168 (0xA8) - Battery Charger Control 1
  24. */
  25. #define WM8350_CHG_ENA_R168 0x8000
  26. #define WM8350_CHG_THR 0x2000
  27. #define WM8350_CHG_EOC_SEL_MASK 0x1C00
  28. #define WM8350_CHG_TRICKLE_TEMP_CHOKE 0x0200
  29. #define WM8350_CHG_TRICKLE_USB_CHOKE 0x0100
  30. #define WM8350_CHG_RECOVER_T 0x0080
  31. #define WM8350_CHG_END_ACT 0x0040
  32. #define WM8350_CHG_FAST 0x0020
  33. #define WM8350_CHG_FAST_USB_THROTTLE 0x0010
  34. #define WM8350_CHG_NTC_MON 0x0008
  35. #define WM8350_CHG_BATT_HOT_MON 0x0004
  36. #define WM8350_CHG_BATT_COLD_MON 0x0002
  37. #define WM8350_CHG_CHIP_TEMP_MON 0x0001
  38. /*
  39. * R169 (0xA9) - Battery Charger Control 2
  40. */
  41. #define WM8350_CHG_ACTIVE 0x8000
  42. #define WM8350_CHG_PAUSE 0x4000
  43. #define WM8350_CHG_STS_MASK 0x3000
  44. #define WM8350_CHG_TIME_MASK 0x0F00
  45. #define WM8350_CHG_MASK_WALL_FB 0x0080
  46. #define WM8350_CHG_TRICKLE_SEL 0x0040
  47. #define WM8350_CHG_VSEL_MASK 0x0030
  48. #define WM8350_CHG_ISEL_MASK 0x000F
  49. #define WM8350_CHG_STS_OFF 0x0000
  50. #define WM8350_CHG_STS_TRICKLE 0x1000
  51. #define WM8350_CHG_STS_FAST 0x2000
  52. /*
  53. * R170 (0xAA) - Battery Charger Control 3
  54. */
  55. #define WM8350_CHG_THROTTLE_T_MASK 0x0060
  56. #define WM8350_CHG_SMART 0x0010
  57. #define WM8350_CHG_TIMER_ADJT_MASK 0x000F
  58. /*
  59. * Charger Interrupts
  60. */
  61. #define WM8350_IRQ_CHG_BAT_HOT 0
  62. #define WM8350_IRQ_CHG_BAT_COLD 1
  63. #define WM8350_IRQ_CHG_BAT_FAIL 2
  64. #define WM8350_IRQ_CHG_TO 3
  65. #define WM8350_IRQ_CHG_END 4
  66. #define WM8350_IRQ_CHG_START 5
  67. #define WM8350_IRQ_CHG_FAST_RDY 6
  68. #define WM8350_IRQ_CHG_VBATT_LT_3P9 10
  69. #define WM8350_IRQ_CHG_VBATT_LT_3P1 11
  70. #define WM8350_IRQ_CHG_VBATT_LT_2P85 12
  71. /*
  72. * Charger Policy
  73. */
  74. #define WM8350_CHG_TRICKLE_50mA (0 << 6)
  75. #define WM8350_CHG_TRICKLE_100mA (1 << 6)
  76. #define WM8350_CHG_4_05V (0 << 4)
  77. #define WM8350_CHG_4_10V (1 << 4)
  78. #define WM8350_CHG_4_15V (2 << 4)
  79. #define WM8350_CHG_4_20V (3 << 4)
  80. #define WM8350_CHG_FAST_LIMIT_mA(x) ((x / 50) & 0xf)
  81. #define WM8350_CHG_EOC_mA(x) (((x - 10) & 0x7) << 10)
  82. #define WM8350_CHG_TRICKLE_3_1V (0 << 13)
  83. #define WM8350_CHG_TRICKLE_3_9V (1 << 13)
  84. /*
  85. * Supply Registers.
  86. */
  87. #define WM8350_USB_VOLTAGE_READBACK 0x9C
  88. #define WM8350_LINE_VOLTAGE_READBACK 0x9D
  89. #define WM8350_BATT_VOLTAGE_READBACK 0x9E
  90. /*
  91. * Supply Interrupts.
  92. */
  93. #define WM8350_IRQ_USB_LIMIT 15
  94. #define WM8350_IRQ_EXT_USB_FB 36
  95. #define WM8350_IRQ_EXT_WALL_FB 37
  96. #define WM8350_IRQ_EXT_BAT_FB 38
  97. /*
  98. * Policy to control charger state machine.
  99. */
  100. struct wm8350_charger_policy {
  101. /* charger state machine policy - set in machine driver */
  102. int eoc_mA; /* end of charge current (mA) */
  103. int charge_mV; /* charge voltage */
  104. int fast_limit_mA; /* fast charge current limit */
  105. int fast_limit_USB_mA; /* USB fast charge current limit */
  106. int charge_timeout; /* charge timeout (mins) */
  107. int trickle_start_mV; /* trickle charge starts at mV */
  108. int trickle_charge_mA; /* trickle charge current */
  109. int trickle_charge_USB_mA; /* USB trickle charge current */
  110. };
  111. struct wm8350_power {
  112. struct platform_device *pdev;
  113. struct power_supply *battery;
  114. struct power_supply *usb;
  115. struct power_supply *ac;
  116. struct wm8350_charger_policy *policy;
  117. int rev_g_coeff;
  118. };
  119. #endif