wm97xx_battery.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. /*
  2. * Battery measurement code for WM97xx
  3. *
  4. * based on tosa_battery.c
  5. *
  6. * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
  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. */
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/module.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/power_supply.h>
  18. #include <linux/wm97xx.h>
  19. #include <linux/spinlock.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/gpio.h>
  22. #include <linux/irq.h>
  23. #include <linux/slab.h>
  24. static struct work_struct bat_work;
  25. static DEFINE_MUTEX(work_lock);
  26. static int bat_status = POWER_SUPPLY_STATUS_UNKNOWN;
  27. static enum power_supply_property *prop;
  28. static unsigned long wm97xx_read_bat(struct power_supply *bat_ps)
  29. {
  30. struct wm97xx_batt_pdata *pdata = power_supply_get_drvdata(bat_ps);
  31. return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev.parent),
  32. pdata->batt_aux) * pdata->batt_mult /
  33. pdata->batt_div;
  34. }
  35. static unsigned long wm97xx_read_temp(struct power_supply *bat_ps)
  36. {
  37. struct wm97xx_batt_pdata *pdata = power_supply_get_drvdata(bat_ps);
  38. return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev.parent),
  39. pdata->temp_aux) * pdata->temp_mult /
  40. pdata->temp_div;
  41. }
  42. static int wm97xx_bat_get_property(struct power_supply *bat_ps,
  43. enum power_supply_property psp,
  44. union power_supply_propval *val)
  45. {
  46. struct wm97xx_batt_pdata *pdata = power_supply_get_drvdata(bat_ps);
  47. switch (psp) {
  48. case POWER_SUPPLY_PROP_STATUS:
  49. val->intval = bat_status;
  50. break;
  51. case POWER_SUPPLY_PROP_TECHNOLOGY:
  52. val->intval = pdata->batt_tech;
  53. break;
  54. case POWER_SUPPLY_PROP_VOLTAGE_NOW:
  55. if (pdata->batt_aux >= 0)
  56. val->intval = wm97xx_read_bat(bat_ps);
  57. else
  58. return -EINVAL;
  59. break;
  60. case POWER_SUPPLY_PROP_TEMP:
  61. if (pdata->temp_aux >= 0)
  62. val->intval = wm97xx_read_temp(bat_ps);
  63. else
  64. return -EINVAL;
  65. break;
  66. case POWER_SUPPLY_PROP_VOLTAGE_MAX:
  67. if (pdata->max_voltage >= 0)
  68. val->intval = pdata->max_voltage;
  69. else
  70. return -EINVAL;
  71. break;
  72. case POWER_SUPPLY_PROP_VOLTAGE_MIN:
  73. if (pdata->min_voltage >= 0)
  74. val->intval = pdata->min_voltage;
  75. else
  76. return -EINVAL;
  77. break;
  78. case POWER_SUPPLY_PROP_PRESENT:
  79. val->intval = 1;
  80. break;
  81. default:
  82. return -EINVAL;
  83. }
  84. return 0;
  85. }
  86. static void wm97xx_bat_external_power_changed(struct power_supply *bat_ps)
  87. {
  88. schedule_work(&bat_work);
  89. }
  90. static void wm97xx_bat_update(struct power_supply *bat_ps)
  91. {
  92. int old_status = bat_status;
  93. struct wm97xx_batt_pdata *pdata = power_supply_get_drvdata(bat_ps);
  94. mutex_lock(&work_lock);
  95. bat_status = (pdata->charge_gpio >= 0) ?
  96. (gpio_get_value(pdata->charge_gpio) ?
  97. POWER_SUPPLY_STATUS_DISCHARGING :
  98. POWER_SUPPLY_STATUS_CHARGING) :
  99. POWER_SUPPLY_STATUS_UNKNOWN;
  100. if (old_status != bat_status) {
  101. pr_debug("%s: %i -> %i\n", bat_ps->desc->name, old_status,
  102. bat_status);
  103. power_supply_changed(bat_ps);
  104. }
  105. mutex_unlock(&work_lock);
  106. }
  107. static struct power_supply *bat_psy;
  108. static struct power_supply_desc bat_psy_desc = {
  109. .type = POWER_SUPPLY_TYPE_BATTERY,
  110. .get_property = wm97xx_bat_get_property,
  111. .external_power_changed = wm97xx_bat_external_power_changed,
  112. .use_for_apm = 1,
  113. };
  114. static void wm97xx_bat_work(struct work_struct *work)
  115. {
  116. wm97xx_bat_update(bat_psy);
  117. }
  118. static irqreturn_t wm97xx_chrg_irq(int irq, void *data)
  119. {
  120. schedule_work(&bat_work);
  121. return IRQ_HANDLED;
  122. }
  123. #ifdef CONFIG_PM
  124. static int wm97xx_bat_suspend(struct device *dev)
  125. {
  126. flush_work(&bat_work);
  127. return 0;
  128. }
  129. static int wm97xx_bat_resume(struct device *dev)
  130. {
  131. schedule_work(&bat_work);
  132. return 0;
  133. }
  134. static const struct dev_pm_ops wm97xx_bat_pm_ops = {
  135. .suspend = wm97xx_bat_suspend,
  136. .resume = wm97xx_bat_resume,
  137. };
  138. #endif
  139. static int wm97xx_bat_probe(struct platform_device *dev)
  140. {
  141. int ret = 0;
  142. int props = 1; /* POWER_SUPPLY_PROP_PRESENT */
  143. int i = 0;
  144. struct wm97xx_batt_pdata *pdata = dev->dev.platform_data;
  145. struct power_supply_config cfg = {};
  146. if (!pdata) {
  147. dev_err(&dev->dev, "No platform data supplied\n");
  148. return -EINVAL;
  149. }
  150. cfg.drv_data = pdata;
  151. if (dev->id != -1)
  152. return -EINVAL;
  153. if (gpio_is_valid(pdata->charge_gpio)) {
  154. ret = gpio_request(pdata->charge_gpio, "BATT CHRG");
  155. if (ret)
  156. goto err;
  157. ret = gpio_direction_input(pdata->charge_gpio);
  158. if (ret)
  159. goto err2;
  160. ret = request_irq(gpio_to_irq(pdata->charge_gpio),
  161. wm97xx_chrg_irq, 0,
  162. "AC Detect", dev);
  163. if (ret)
  164. goto err2;
  165. props++; /* POWER_SUPPLY_PROP_STATUS */
  166. }
  167. if (pdata->batt_tech >= 0)
  168. props++; /* POWER_SUPPLY_PROP_TECHNOLOGY */
  169. if (pdata->temp_aux >= 0)
  170. props++; /* POWER_SUPPLY_PROP_TEMP */
  171. if (pdata->batt_aux >= 0)
  172. props++; /* POWER_SUPPLY_PROP_VOLTAGE_NOW */
  173. if (pdata->max_voltage >= 0)
  174. props++; /* POWER_SUPPLY_PROP_VOLTAGE_MAX */
  175. if (pdata->min_voltage >= 0)
  176. props++; /* POWER_SUPPLY_PROP_VOLTAGE_MIN */
  177. prop = kcalloc(props, sizeof(*prop), GFP_KERNEL);
  178. if (!prop) {
  179. ret = -ENOMEM;
  180. goto err3;
  181. }
  182. prop[i++] = POWER_SUPPLY_PROP_PRESENT;
  183. if (pdata->charge_gpio >= 0)
  184. prop[i++] = POWER_SUPPLY_PROP_STATUS;
  185. if (pdata->batt_tech >= 0)
  186. prop[i++] = POWER_SUPPLY_PROP_TECHNOLOGY;
  187. if (pdata->temp_aux >= 0)
  188. prop[i++] = POWER_SUPPLY_PROP_TEMP;
  189. if (pdata->batt_aux >= 0)
  190. prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_NOW;
  191. if (pdata->max_voltage >= 0)
  192. prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_MAX;
  193. if (pdata->min_voltage >= 0)
  194. prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_MIN;
  195. INIT_WORK(&bat_work, wm97xx_bat_work);
  196. if (!pdata->batt_name) {
  197. dev_info(&dev->dev, "Please consider setting proper battery "
  198. "name in platform definition file, falling "
  199. "back to name \"wm97xx-batt\"\n");
  200. bat_psy_desc.name = "wm97xx-batt";
  201. } else
  202. bat_psy_desc.name = pdata->batt_name;
  203. bat_psy_desc.properties = prop;
  204. bat_psy_desc.num_properties = props;
  205. bat_psy = power_supply_register(&dev->dev, &bat_psy_desc, &cfg);
  206. if (!IS_ERR(bat_psy)) {
  207. schedule_work(&bat_work);
  208. } else {
  209. ret = PTR_ERR(bat_psy);
  210. goto err4;
  211. }
  212. return 0;
  213. err4:
  214. kfree(prop);
  215. err3:
  216. if (gpio_is_valid(pdata->charge_gpio))
  217. free_irq(gpio_to_irq(pdata->charge_gpio), dev);
  218. err2:
  219. if (gpio_is_valid(pdata->charge_gpio))
  220. gpio_free(pdata->charge_gpio);
  221. err:
  222. return ret;
  223. }
  224. static int wm97xx_bat_remove(struct platform_device *dev)
  225. {
  226. struct wm97xx_batt_pdata *pdata = dev->dev.platform_data;
  227. if (pdata && gpio_is_valid(pdata->charge_gpio)) {
  228. free_irq(gpio_to_irq(pdata->charge_gpio), dev);
  229. gpio_free(pdata->charge_gpio);
  230. }
  231. cancel_work_sync(&bat_work);
  232. power_supply_unregister(bat_psy);
  233. kfree(prop);
  234. return 0;
  235. }
  236. static struct platform_driver wm97xx_bat_driver = {
  237. .driver = {
  238. .name = "wm97xx-battery",
  239. #ifdef CONFIG_PM
  240. .pm = &wm97xx_bat_pm_ops,
  241. #endif
  242. },
  243. .probe = wm97xx_bat_probe,
  244. .remove = wm97xx_bat_remove,
  245. };
  246. module_platform_driver(wm97xx_bat_driver);
  247. MODULE_LICENSE("GPL");
  248. MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
  249. MODULE_DESCRIPTION("WM97xx battery driver");