power_supply.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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. /** battery error */
  49. POWER_SUPPLY_STATUS_BAT_ERROR,
  50. /** battery lowpower */
  51. POWER_SUPPLY_STATUS_BAT_LOWPOWER
  52. };
  53. /** power supply property enum */
  54. enum power_supply_property {
  55. /** get power supply status */
  56. POWER_SUPPLY_PROP_STATUS = 0,
  57. /** no use */
  58. POWER_SUPPLY_PROP_ONLINE,
  59. /** get current battery voltage */
  60. POWER_SUPPLY_PROP_VOLTAGE_NOW,
  61. /** get current battery capacity */
  62. POWER_SUPPLY_PROP_CAPACITY,
  63. /** get current dc5v plug in or out status */
  64. POWER_SUPPLY_PROP_DC5V,
  65. /** get dc5v status for charger box */
  66. POWER_SUPPLY_PROP_DC5V_STATUS,
  67. /** get current dc5v voltage */
  68. POWER_SUPPLY_PROP_DC5V_VOLTAGE,
  69. /** set power supply feature */
  70. POWER_SUPPLY_SET_PROP_FEATURE,
  71. /** set dc5v pulldown, used for charger box */
  72. POWER_SUPPLY_SET_DC5V_PULLDOWM,
  73. /** wakeup charger box */
  74. POWER_SUPPLY_WAKE_CHARGER_BOX,
  75. /** set init battery voltage */
  76. POWER_SUPPLY_SET_INIT_VOL,
  77. /** set system consume current */
  78. POWER_SUPPLY_SET_CONSUME_MA,
  79. /** set current before poweroff */
  80. POWER_SUPPLY_SET_BEFORE_ENTER_S4,
  81. };
  82. /** battery charge event enum */
  83. typedef enum
  84. {
  85. /** dc5v plug in event */
  86. BAT_CHG_EVENT_DC5V_IN = 1,
  87. /** dc5v plug out event */
  88. BAT_CHG_EVENT_DC5V_OUT,
  89. /** charger box enter standby */
  90. BAT_CHG_EVENT_DC5V_STANDBY,
  91. /** start charging */
  92. BAT_CHG_EVENT_CHARGE_START,
  93. /** stop charging */
  94. BAT_CHG_EVENT_CHARGE_STOP,
  95. /** charge full event */
  96. BAT_CHG_EVENT_CHARGE_FULL,
  97. /** battery voltage changed */
  98. BAT_CHG_EVENT_VOLTAGE_CHANGE,
  99. /** battery capacity changed */
  100. BAT_CHG_EVENT_CAP_CHANGE,
  101. /** battery power low */
  102. BAT_CHG_EVENT_BATTERY_LOW,
  103. /** battery power lower */
  104. BAT_CHG_EVENT_BATTERY_LOW_EX,
  105. /** battery power too low */
  106. BAT_CHG_EVENT_BATTERY_TOO_LOW,
  107. /** battery power full */
  108. BAT_CHG_EVENT_BATTERY_FULL,
  109. /** battery charge exit mini charge */
  110. BAT_CHG_EVENT_EXIT_MINI_CHARGE,
  111. } bat_charge_event_t;
  112. /** battery event param */
  113. typedef union {
  114. uint32_t voltage_val; /**< Battery voltage value*/
  115. uint32_t cap; /**< Battery capacity percent*/
  116. } bat_charge_event_para_t;
  117. typedef void (*bat_charge_callback_t)(bat_charge_event_t event, bat_charge_event_para_t *para);
  118. /** power supply property value */
  119. union power_supply_propval {
  120. /** property value */
  121. int intval;
  122. /** property string */
  123. const char *strval;
  124. };
  125. struct battery_capctr_info {
  126. uint8_t capctr_enable_flag;
  127. uint8_t capctr_minval;
  128. uint8_t capctr_maxval;
  129. };
  130. /** power supply driver api */
  131. struct power_supply_driver_api {
  132. /**< get property from power supply driver */
  133. int (*get_property)(struct device *dev, enum power_supply_property psp,
  134. union power_supply_propval *val);
  135. /**< set property to power supply driver */
  136. void (*set_property)(struct device *dev, enum power_supply_property psp,
  137. union power_supply_propval *val);
  138. /**< register notify callback to power supply driver */
  139. void (*register_notify)(struct device *dev, bat_charge_callback_t cb);
  140. /**< enable battery charge */
  141. void (*enable)(struct device *dev);
  142. /**< disable battery charge */
  143. void (*disable)(struct device *dev);
  144. };
  145. /**
  146. * @brief get property from power supply driver
  147. *
  148. * This routine calls to get information from power supply driver
  149. *
  150. * Example:
  151. *
  152. * @code
  153. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  154. * if (!dev) {
  155. * SYS_LOG_ERR("cannot found battery device");
  156. * return -ENODEV;
  157. * }
  158. * psp = POWER_SUPPLY_PROP_CAPACITY;
  159. * ret = power_supply_get_property(dev, psp, &val);
  160. * if (ret < 0) {
  161. * SYS_LOG_ERR("cannot get property, ret %d", ret);
  162. * return -EINVAL;
  163. * }
  164. * @endcode
  165. *
  166. * @param dev pointer to the battery device.
  167. * @param psp the property need to get from driver
  168. * @param val pointer to the inf getting from driver
  169. *
  170. * @return 0 : succsess. others: fail
  171. */
  172. static inline int power_supply_get_property(struct device *dev, enum power_supply_property psp,
  173. union power_supply_propval *val)
  174. {
  175. const struct power_supply_driver_api *api = (const struct power_supply_driver_api *) dev->api;
  176. return api->get_property(dev, psp, val);
  177. }
  178. /**
  179. * @brief set property to power supply driver
  180. *
  181. * This routine calls to set property to power supply driver
  182. *
  183. * Example:
  184. *
  185. * @code
  186. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  187. * if (!dev) {
  188. * SYS_LOG_ERR("cannot found battery device");
  189. * return -ENODEV;
  190. * }
  191. * psp = POWER_SUPPLY_SET_DC5V_PULLDOWM;
  192. * power_supply_set_property(dev, psp, NULL);
  193. *
  194. * @endcode
  195. *
  196. * @param dev pointer to the battery device.
  197. * @param psp the property need to set
  198. * @param val pointer to the property value which need to set
  199. *
  200. */
  201. static inline void power_supply_set_property(struct device *dev, enum power_supply_property psp,
  202. union power_supply_propval *val)
  203. {
  204. const struct power_supply_driver_api *api = (const struct power_supply_driver_api *) dev->api;
  205. api->set_property(dev, psp, val);
  206. }
  207. /**
  208. * @brief register notify callback to power supply driver
  209. *
  210. * This routine calls to set callback to driver
  211. *
  212. * Example:
  213. *
  214. * @code
  215. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  216. * if (!dev) {
  217. * SYS_LOG_ERR("cannot found battery device");
  218. * return -ENODEV;
  219. * }
  220. *
  221. * power_supply_register_notify(dev, power_supply_report);
  222. *
  223. * @endcode
  224. *
  225. * @param dev pointer to the battery device.
  226. * @param cb callback function.
  227. */
  228. static inline void power_supply_register_notify(struct device *dev, bat_charge_callback_t cb)
  229. {
  230. const struct power_supply_driver_api *api = (const struct power_supply_driver_api *) dev->api;
  231. api->register_notify(dev, cb);
  232. }
  233. /**
  234. * @brief enable battery charge
  235. *
  236. * This routine calls to enable battery charge.
  237. *
  238. * Example:
  239. *
  240. * @code
  241. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  242. * if (!dev) {
  243. * SYS_LOG_ERR("cannot found battery device");
  244. * return -ENODEV;
  245. * }
  246. *
  247. * power_supply_enable(dev);
  248. *
  249. * @endcode
  250. *
  251. * @param dev pointer to the battery device.
  252. */
  253. static inline void power_supply_enable(struct device *dev)
  254. {
  255. const struct power_supply_driver_api *api = (const struct power_supply_driver_api *) dev->api;
  256. api->enable(dev);
  257. }
  258. /**
  259. * @brief disable battery charge
  260. *
  261. * This routine calls to disable battery charge.
  262. *
  263. * Example:
  264. *
  265. * @code
  266. * dev = device_get_binding(CONFIG_ACTS_BATTERY_DEV_NAME);
  267. * if (!dev) {
  268. * SYS_LOG_ERR("cannot found battery device");
  269. * return -ENODEV;
  270. * }
  271. *
  272. * power_supply_disable(dev);
  273. *
  274. * @endcode
  275. *
  276. * @param dev pointer to the battery device.
  277. *
  278. */
  279. static inline void power_supply_disable(struct device *dev)
  280. {
  281. const struct power_supply_driver_api *api = (const struct power_supply_driver_api *) dev->api;
  282. api->disable(dev);
  283. }
  284. #ifdef CONFIG_ACTS_BATTERY_SUPPLY_EXT_COULOMETER
  285. /** extern coulometer driver api */
  286. struct coulometer_driver_api {
  287. /**< get property from coulometer driver */
  288. int (*get_property)(const struct device *dev, enum power_supply_property psp,
  289. union power_supply_propval *val);
  290. /**< set property to coulometer driver */
  291. void (*set_property)(const struct device *dev, enum power_supply_property psp,
  292. union power_supply_propval *val);
  293. /**< enable coulometer */
  294. void (*enable)(const struct device *dev);
  295. /**< disable coulometer */
  296. void (*disable)(const struct device *dev);
  297. };
  298. static inline int coulometer_get_property(const struct device *dev, enum power_supply_property psp,
  299. union power_supply_propval *val)
  300. {
  301. const struct coulometer_driver_api *api = dev->api;
  302. return api->get_property(dev, psp, val);
  303. }
  304. static inline void coulometer_set_property(const struct device *dev, enum power_supply_property psp,
  305. union power_supply_propval *val)
  306. {
  307. const struct coulometer_driver_api *api = dev->api;
  308. api->set_property(dev, psp, val);
  309. }
  310. static inline void coulometer_enable(const struct device *dev)
  311. {
  312. const struct coulometer_driver_api *api = dev->api;
  313. api->enable(dev);
  314. }
  315. static inline void coulometer_disable(const struct device *dev)
  316. {
  317. const struct coulometer_driver_api *api = dev->api;
  318. api->disable(dev);
  319. }
  320. #endif
  321. /**
  322. * @} end defgroup power_supply_apis
  323. */
  324. #ifdef __cplusplus
  325. }
  326. #endif
  327. #endif /* __INCLUDE_POWER_SUPPLY_H__ */