pmic.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * Copyright (C) 2014-2015 Samsung Electronics
  3. * Przemyslaw Marczak <p.marczak@samsung.com>
  4. *
  5. * Copyright (C) 2011-2012 Samsung Electronics
  6. * Lukasz Majewski <l.majewski@samsung.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __CORE_PMIC_H_
  11. #define __CORE_PMIC_H_
  12. #include <linux/list.h>
  13. #include <spi.h>
  14. #include <i2c.h>
  15. #include <power/power_chrg.h>
  16. enum { PMIC_I2C, PMIC_SPI, PMIC_NONE};
  17. #ifdef CONFIG_POWER
  18. enum { I2C_PMIC, I2C_NUM, };
  19. enum { PMIC_READ, PMIC_WRITE, };
  20. enum { PMIC_SENSOR_BYTE_ORDER_LITTLE, PMIC_SENSOR_BYTE_ORDER_BIG, };
  21. enum {
  22. PMIC_CHARGER_DISABLE,
  23. PMIC_CHARGER_ENABLE,
  24. };
  25. struct p_i2c {
  26. unsigned char addr;
  27. unsigned char *buf;
  28. unsigned char tx_num;
  29. };
  30. struct p_spi {
  31. unsigned int cs;
  32. unsigned int mode;
  33. unsigned int bitlen;
  34. unsigned int clk;
  35. unsigned int flags;
  36. u32 (*prepare_tx)(u32 reg, u32 *val, u32 write);
  37. };
  38. struct pmic;
  39. struct power_fg {
  40. int (*fg_battery_check) (struct pmic *p, struct pmic *bat);
  41. int (*fg_battery_update) (struct pmic *p, struct pmic *bat);
  42. };
  43. struct power_chrg {
  44. int (*chrg_type) (struct pmic *p);
  45. int (*chrg_bat_present) (struct pmic *p);
  46. int (*chrg_state) (struct pmic *p, int state, int current);
  47. };
  48. struct power_battery {
  49. struct battery *bat;
  50. int (*battery_init) (struct pmic *bat, struct pmic *p1,
  51. struct pmic *p2, struct pmic *p3);
  52. int (*battery_charge) (struct pmic *bat);
  53. /* Keep info about power devices involved with battery operation */
  54. struct pmic *chrg, *fg, *muic;
  55. };
  56. struct pmic {
  57. const char *name;
  58. unsigned char bus;
  59. unsigned char interface;
  60. unsigned char sensor_byte_order;
  61. unsigned int number_of_regs;
  62. union hw {
  63. struct p_i2c i2c;
  64. struct p_spi spi;
  65. } hw;
  66. void (*low_power_mode) (void);
  67. struct power_battery *pbat;
  68. struct power_chrg *chrg;
  69. struct power_fg *fg;
  70. struct pmic *parent;
  71. struct list_head list;
  72. };
  73. #endif /* CONFIG_POWER */
  74. #ifdef CONFIG_DM_PMIC
  75. /**
  76. * U-Boot PMIC Framework
  77. * =====================
  78. *
  79. * UCLASS_PMIC - The is designed to provide an I/O interface for PMIC devices.
  80. *
  81. * For the multi-function PMIC devices, this can be used as parent I/O device
  82. * for each IC's interface. Then, each children uses its parent for read/write.
  83. *
  84. * The driver model tree could look like this:
  85. *
  86. *_ root device
  87. * |_ BUS 0 device (e.g. I2C0) - UCLASS_I2C/SPI/...
  88. * | |_ PMIC device (READ/WRITE ops) - UCLASS_PMIC
  89. * | |_ REGULATOR device (ldo/buck/... ops) - UCLASS_REGULATOR
  90. * | |_ CHARGER device (charger ops) - UCLASS_CHARGER (in the future)
  91. * | |_ MUIC device (microUSB connector ops) - UCLASS_MUIC (in the future)
  92. * | |_ ...
  93. * |
  94. * |_ BUS 1 device (e.g. I2C1) - UCLASS_I2C/SPI/...
  95. * |_ PMIC device (READ/WRITE ops) - UCLASS_PMIC
  96. * |_ RTC device (rtc ops) - UCLASS_RTC (in the future)
  97. *
  98. * We can find two PMIC cases in boards design:
  99. * - single I/O interface
  100. * - multiple I/O interfaces
  101. * We bind single PMIC device for each interface, to provide an I/O as a parent,
  102. * of proper child devices. Each child usually implements a different function,
  103. * controlled by the same interface.
  104. *
  105. * The binding should be done automatically. If device tree nodes/subnodes are
  106. * proper defined, then:
  107. *
  108. * |_ the ROOT driver will bind the device for I2C/SPI node:
  109. * |_ the I2C/SPI driver should bind a device for pmic node:
  110. * |_ the PMIC driver should bind devices for its childs:
  111. * |_ regulator (child)
  112. * |_ charger (child)
  113. * |_ other (child)
  114. *
  115. * The same for other device nodes, for multi-interface PMIC.
  116. *
  117. * Note:
  118. * Each PMIC interface driver should use a different compatible string.
  119. *
  120. * If each pmic child device driver need access the PMIC-specific registers,
  121. * it need know only the register address and the access can be done through
  122. * the parent pmic driver. Like in the example:
  123. *
  124. *_ root driver
  125. * |_ dev: bus I2C0 - UCLASS_I2C
  126. * | |_ dev: my_pmic (read/write) (is parent) - UCLASS_PMIC
  127. * | |_ dev: my_regulator (set value/etc..) (is child) - UCLASS_REGULATOR
  128. *
  129. * To ensure such device relationship, the pmic device driver should also bind
  130. * all its child devices, like in the example below. It should be done by call
  131. * the 'pmic_bind_childs()' - please refer to the description of this function
  132. * in this header file. This function, should be called in the driver's '.bind'
  133. * method.
  134. *
  135. * For the example driver, please refer the MAX77686 driver:
  136. * - 'drivers/power/pmic/max77686.c'
  137. */
  138. /**
  139. * struct dm_pmic_ops - PMIC device I/O interface
  140. *
  141. * Should be implemented by UCLASS_PMIC device drivers. The standard
  142. * device operations provides the I/O interface for it's childs.
  143. *
  144. * @reg_count: devices register count
  145. * @read: read 'len' bytes at "reg" and store it into the 'buffer'
  146. * @write: write 'len' bytes from the 'buffer' to the register at 'reg' address
  147. */
  148. struct dm_pmic_ops {
  149. int reg_count;
  150. int (*read)(struct udevice *dev, uint reg, uint8_t *buffer, int len);
  151. int (*write)(struct udevice *dev, uint reg, const uint8_t *buffer,
  152. int len);
  153. };
  154. /* enum pmic_op_type - used for various pmic devices operation calls,
  155. * for reduce a number of lines with the same code for read/write or get/set.
  156. *
  157. * @PMIC_OP_GET - get operation
  158. * @PMIC_OP_SET - set operation
  159. */
  160. enum pmic_op_type {
  161. PMIC_OP_GET,
  162. PMIC_OP_SET,
  163. };
  164. /**
  165. * struct pmic_child_info - basic device's child info for bind child nodes with
  166. * the driver by the node name prefix and driver name. This is a helper struct
  167. * for function: pmic_bind_childs().
  168. *
  169. * @prefix - child node name prefix (or its name if is unique or single)
  170. * @driver - driver name for the sub-node with prefix
  171. */
  172. struct pmic_child_info {
  173. const char *prefix;
  174. const char *driver;
  175. };
  176. /* drivers/power/pmic-uclass.c */
  177. /**
  178. * pmic_bind_childs() - bind drivers for given parent pmic, using child info
  179. * found in 'child_info' array.
  180. *
  181. * @pmic - pmic device - the parent of found child's
  182. * @child_info - N-childs info array
  183. * @return a positive number of childs, or 0 if no child found (error)
  184. *
  185. * Note: For N-childs the child_info array should have N+1 entries and the last
  186. * entry prefix should be NULL - the same as for drivers compatible.
  187. *
  188. * For example, a single prefix info (N=1):
  189. * static const struct pmic_child_info bind_info[] = {
  190. * { .prefix = "ldo", .driver = "ldo_driver" },
  191. * { },
  192. * };
  193. *
  194. * This function is useful for regulator sub-nodes:
  195. * my_regulator@0xa {
  196. * reg = <0xa>;
  197. * (pmic - bind automatically by compatible)
  198. * compatible = "my_pmic";
  199. * ...
  200. * (pmic's childs - bind by pmic_bind_childs())
  201. * (nodes prefix: "ldo", driver: "my_regulator_ldo")
  202. * ldo1 { ... };
  203. * ldo2 { ... };
  204. *
  205. * (nodes prefix: "buck", driver: "my_regulator_buck")
  206. * buck1 { ... };
  207. * buck2 { ... };
  208. * };
  209. */
  210. int pmic_bind_childs(struct udevice *pmic, int offset,
  211. const struct pmic_child_info *child_info);
  212. /**
  213. * pmic_get: get the pmic device using its name
  214. *
  215. * @name - device name
  216. * @devp - returned pointer to the pmic device
  217. * @return 0 on success or negative value of errno.
  218. *
  219. * The returned devp device can be used with pmic_read/write calls
  220. */
  221. int pmic_get(const char *name, struct udevice **devp);
  222. /**
  223. * pmic_reg_count: get the pmic register count
  224. *
  225. * The required pmic device can be obtained by 'pmic_get()'
  226. *
  227. * @dev - pointer to the UCLASS_PMIC device
  228. * @return register count value on success or negative value of errno.
  229. */
  230. int pmic_reg_count(struct udevice *dev);
  231. /**
  232. * pmic_read/write: read/write to the UCLASS_PMIC device
  233. *
  234. * The required pmic device can be obtained by 'pmic_get()'
  235. *
  236. * @pmic - pointer to the UCLASS_PMIC device
  237. * @reg - device register offset
  238. * @buffer - pointer to read/write buffer
  239. * @len - byte count for read/write
  240. * @return 0 on success or negative value of errno.
  241. */
  242. int pmic_read(struct udevice *dev, uint reg, uint8_t *buffer, int len);
  243. int pmic_write(struct udevice *dev, uint reg, const uint8_t *buffer, int len);
  244. #endif /* CONFIG_DM_PMIC */
  245. #ifdef CONFIG_POWER
  246. int pmic_init(unsigned char bus);
  247. int power_init_board(void);
  248. int pmic_dialog_init(unsigned char bus);
  249. int check_reg(struct pmic *p, u32 reg);
  250. struct pmic *pmic_alloc(void);
  251. struct pmic *pmic_get(const char *s);
  252. int pmic_probe(struct pmic *p);
  253. int pmic_reg_read(struct pmic *p, u32 reg, u32 *val);
  254. int pmic_reg_write(struct pmic *p, u32 reg, u32 val);
  255. int pmic_set_output(struct pmic *p, u32 reg, int ldo, int on);
  256. #endif
  257. #define pmic_i2c_addr (p->hw.i2c.addr)
  258. #define pmic_i2c_tx_num (p->hw.i2c.tx_num)
  259. #define pmic_spi_bitlen (p->hw.spi.bitlen)
  260. #define pmic_spi_flags (p->hw.spi.flags)
  261. #endif /* __CORE_PMIC_H_ */