power_supply.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file power supply device driver interface
  8. */
  9. #ifndef __INCLUDE_POWER_SUPPLY_H__
  10. #define __INCLUDE_POWER_SUPPLY_H__
  11. #include <stdint.h>
  12. #include <device.h>
  13. #include <board_cfg.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @defgroup power_supply_apis Power Supply APIs
  19. * @ingroup driver_apis
  20. * @{
  21. */
  22. /** Input Device Names */
  23. //#define CONFIG_ACTS_BATTERY_DEV_NAME DT_LABEL(DT_INST(0, actions_acts_batadc))
  24. #define BATTERY_CAPCTR_STA_PASSED (1)
  25. #define BATTERY_CAPCTR_STA_FAILED (0)
  26. #define BATTERY_CAPCTR_DISABLE (0)
  27. #define BATTERY_CAPCTR_ENABLE (1)
  28. /** power supply status enum */
  29. enum power_supply_status{
  30. /** power supply unknown */
  31. POWER_SUPPLY_STATUS_UNKNOWN = 0,
  32. /** battery not exist */
  33. POWER_SUPPLY_STATUS_BAT_NOTEXIST,
  34. /** battery discharge */
  35. POWER_SUPPLY_STATUS_DISCHARGE,
  36. /** battery in charge */
  37. POWER_SUPPLY_STATUS_CHARGING,
  38. /** battery voltage full */
  39. POWER_SUPPLY_STATUS_FULL,
  40. /** dc5v plug out */
  41. POWER_SUPPLY_STATUS_DC5V_OUT,
  42. /** dc5v plug in */
  43. POWER_SUPPLY_STATUS_DC5V_IN,
  44. /** dc5v pending */
  45. POWER_SUPPLY_STATUS_DC5V_PENDING,
  46. /** dc5v standby */
  47. POWER_SUPPLY_STATUS_DC5V_STANDBY
  48. };
  49. /** power supply property enum */
  50. enum power_supply_property {
  51. /** get power supply status */
  52. POWER_SUPPLY_PROP_STATUS = 0,
  53. /** no use */
  54. POWER_SUPPLY_PROP_ONLINE,
  55. /** get current battery voltage */
  56. POWER_SUPPLY_PROP_VOLTAGE_NOW,
  57. /** get current battery capacity */
  58. POWER_SUPPLY_PROP_CAPACITY,
  59. /** get current dc5v plug in or out status */
  60. POWER_SUPPLY_PROP_DC5V,
  61. /** get dc5v status for charger box */
  62. POWER_SUPPLY_PROP_DC5V_STATUS,
  63. /** get current dc5v voltage */
  64. POWER_SUPPLY_PROP_DC5V_VOLTAGE,
  65. /** set power supply feature */
  66. POWER_SUPPLY_SET_PROP_FEATURE,
  67. /** set dc5v pulldown, used for charger box */
  68. POWER_SUPPLY_SET_DC5V_PULLDOWM,
  69. /** wakeup charger box */
  70. POWER_SUPPLY_WAKE_CHARGER_BOX,
  71. };
  72. /** battery charge event enum */
  73. typedef enum
  74. {
  75. /** dc5v plug in event */
  76. BAT_CHG_EVENT_DC5V_IN = 1,
  77. /** dc5v plug out event */
  78. BAT_CHG_EVENT_DC5V_OUT,
  79. /** charger box enter standby */
  80. BAT_CHG_EVENT_DC5V_STANDBY,
  81. /** start charging */
  82. BAT_CHG_EVENT_CHARGE_START,
  83. /** stop charging */
  84. BAT_CHG_EVENT_CHARGE_STOP,
  85. /** charge full event */
  86. BAT_CHG_EVENT_CHARGE_FULL,
  87. /** battery voltage changed */
  88. BAT_CHG_EVENT_VOLTAGE_CHANGE,
  89. /** battery capacity changed */
  90. BAT_CHG_EVENT_CAP_CHANGE,
  91. /** battery power low */
  92. BAT_CHG_EVENT_BATTERY_LOW,
  93. /** battery power lower */
  94. BAT_CHG_EVENT_BATTERY_LOW_EX,
  95. /** battery power too low */
  96. BAT_CHG_EVENT_BATTERY_TOO_LOW,
  97. /** battery power full */
  98. BAT_CHG_EVENT_BATTERY_FULL,
  99. } bat_charge_event_t;
  100. /** battery event param */
  101. typedef union {
  102. uint32_t voltage_val; /**< Battery voltage value*/
  103. uint32_t cap; /**< Battery capacity percent*/
  104. } bat_charge_event_para_t;
  105. typedef void (*bat_charge_callback_t)(bat_charge_event_t event, bat_charge_event_para_t *para);
  106. /** power supply property value */
  107. union power_supply_propval {
  108. /** property value */
  109. int intval;
  110. /** property string */
  111. const char *strval;
  112. };
  113. struct battery_capctr_info {
  114. uint8_t capctr_enable_flag;
  115. uint8_t capctr_minval;
  116. uint8_t capctr_maxval;
  117. };
  118. /** power supply driver api */
  119. struct power_supply_driver_api {
  120. /**< get property from power supply driver */
  121. int (*get_property)(struct device *dev, enum power_supply_property psp,
  122. union power_supply_propval *val);
  123. /**< set property to power supply driver */
  124. void (*set_property)(struct device *dev, enum power_supply_property psp,
  125. union power_supply_propval *val);
  126. /**< register notify callback to power supply driver */
  127. void (*register_notify)(struct device *dev, bat_charge_callback_t cb);
  128. /**< enable battery charge */
  129. void (*enable)(struct device *dev);
  130. /**< disable battery charge */
  131. void (*disable)(struct device *dev);
  132. };
  133. /**
  134. * @brief get property from power supply driver
  135. *
  136. * This routine calls to get information from power supply driver
  137. *
  138. * Example:
  139. *
  140. * @code
  141. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  142. * if (!dev) {
  143. * SYS_LOG_ERR("cannot found battery device");
  144. * return -ENODEV;
  145. * }
  146. * psp = POWER_SUPPLY_PROP_CAPACITY;
  147. * ret = power_supply_get_property(dev, psp, &val);
  148. * if (ret < 0) {
  149. * SYS_LOG_ERR("cannot get property, ret %d", ret);
  150. * return -EINVAL;
  151. * }
  152. * @endcode
  153. *
  154. * @param dev pointer to the battery device.
  155. * @param psp the property need to get from driver
  156. * @param val pointer to the inf getting from driver
  157. *
  158. * @return 0 : succsess. others: fail
  159. */
  160. static inline int power_supply_get_property(struct device *dev, enum power_supply_property psp,
  161. union power_supply_propval *val)
  162. {
  163. const struct power_supply_driver_api *api = dev->api;
  164. return api->get_property(dev, psp, val);
  165. }
  166. /**
  167. * @brief set property to power supply driver
  168. *
  169. * This routine calls to set property to power supply driver
  170. *
  171. * Example:
  172. *
  173. * @code
  174. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  175. * if (!dev) {
  176. * SYS_LOG_ERR("cannot found battery device");
  177. * return -ENODEV;
  178. * }
  179. * psp = POWER_SUPPLY_SET_DC5V_PULLDOWM;
  180. * power_supply_set_property(dev, psp, NULL);
  181. *
  182. * @endcode
  183. *
  184. * @param dev pointer to the battery device.
  185. * @param psp the property need to set
  186. * @param val pointer to the property value which need to set
  187. *
  188. */
  189. static inline void power_supply_set_property(struct device *dev, enum power_supply_property psp,
  190. union power_supply_propval *val)
  191. {
  192. const struct power_supply_driver_api *api = dev->api;
  193. api->set_property(dev, psp, val);
  194. }
  195. /**
  196. * @brief register notify callback to power supply driver
  197. *
  198. * This routine calls to set callback to driver
  199. *
  200. * Example:
  201. *
  202. * @code
  203. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  204. * if (!dev) {
  205. * SYS_LOG_ERR("cannot found battery device");
  206. * return -ENODEV;
  207. * }
  208. *
  209. * power_supply_register_notify(dev, power_supply_report);
  210. *
  211. * @endcode
  212. *
  213. * @param dev pointer to the battery device.
  214. * @param cb callback function.
  215. */
  216. static inline void power_supply_register_notify(struct device *dev, bat_charge_callback_t cb)
  217. {
  218. const struct power_supply_driver_api *api = dev->api;
  219. api->register_notify(dev, cb);
  220. }
  221. /**
  222. * @brief enable battery charge
  223. *
  224. * This routine calls to enable battery charge.
  225. *
  226. * Example:
  227. *
  228. * @code
  229. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  230. * if (!dev) {
  231. * SYS_LOG_ERR("cannot found battery device");
  232. * return -ENODEV;
  233. * }
  234. *
  235. * power_supply_enable(dev);
  236. *
  237. * @endcode
  238. *
  239. * @param dev pointer to the battery device.
  240. */
  241. static inline void power_supply_enable(struct device *dev)
  242. {
  243. const struct power_supply_driver_api *api = dev->api;
  244. api->enable(dev);
  245. }
  246. /**
  247. * @brief disable battery charge
  248. *
  249. * This routine calls to disable battery charge.
  250. *
  251. * Example:
  252. *
  253. * @code
  254. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  255. * if (!dev) {
  256. * SYS_LOG_ERR("cannot found battery device");
  257. * return -ENODEV;
  258. * }
  259. *
  260. * power_supply_disable(dev);
  261. *
  262. * @endcode
  263. *
  264. * @param dev pointer to the battery device.
  265. *
  266. */
  267. static inline void power_supply_disable(struct device *dev)
  268. {
  269. const struct power_supply_driver_api *api = dev->api;
  270. api->disable(dev);
  271. }
  272. #ifdef CONFIG_ACTS_BATTERY_SUPPLY_EXT_COULOMETER
  273. /** extern coulometer driver api */
  274. struct coulometer_driver_api {
  275. /**< get property from coulometer driver */
  276. int (*get_property)(const struct device *dev, enum power_supply_property psp,
  277. union power_supply_propval *val);
  278. /**< set property to coulometer driver */
  279. void (*set_property)(const struct device *dev, enum power_supply_property psp,
  280. union power_supply_propval *val);
  281. /**< enable coulometer */
  282. void (*enable)(const struct device *dev);
  283. /**< disable coulometer */
  284. void (*disable)(const struct device *dev);
  285. };
  286. static inline int coulometer_get_property(const struct device *dev, enum power_supply_property psp,
  287. union power_supply_propval *val)
  288. {
  289. const struct coulometer_driver_api *api = dev->api;
  290. return api->get_property(dev, psp, val);
  291. }
  292. static inline void coulometer_set_property(const struct device *dev, enum power_supply_property psp,
  293. union power_supply_propval *val)
  294. {
  295. const struct coulometer_driver_api *api = dev->api;
  296. api->set_property(dev, psp, val);
  297. }
  298. static inline void coulometer_enable(const struct device *dev)
  299. {
  300. const struct coulometer_driver_api *api = dev->api;
  301. api->enable(dev);
  302. }
  303. static inline void coulometer_disable(const struct device *dev)
  304. {
  305. const struct coulometer_driver_api *api = dev->api;
  306. api->disable(dev);
  307. }
  308. #endif
  309. /**
  310. * @} end defgroup power_supply_apis
  311. */
  312. #ifdef __cplusplus
  313. }
  314. #endif
  315. #endif /* __INCLUDE_POWER_SUPPLY_H__ */