tps65218.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. * linux/mfd/tps65218.h
  3. *
  4. * Functions to access TPS65219 power management chip.
  5. *
  6. * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  13. * kind, whether expressed or implied; without even the implied warranty
  14. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License version 2 for more details.
  16. */
  17. #ifndef __LINUX_MFD_TPS65218_H
  18. #define __LINUX_MFD_TPS65218_H
  19. #include <linux/i2c.h>
  20. #include <linux/regulator/driver.h>
  21. #include <linux/regulator/machine.h>
  22. #include <linux/bitops.h>
  23. /* TPS chip id list */
  24. #define TPS65218 0xF0
  25. /* I2C ID for TPS65218 part */
  26. #define TPS65218_I2C_ID 0x24
  27. /* All register addresses */
  28. #define TPS65218_REG_CHIPID 0x00
  29. #define TPS65218_REG_INT1 0x01
  30. #define TPS65218_REG_INT2 0x02
  31. #define TPS65218_REG_INT_MASK1 0x03
  32. #define TPS65218_REG_INT_MASK2 0x04
  33. #define TPS65218_REG_STATUS 0x05
  34. #define TPS65218_REG_CONTROL 0x06
  35. #define TPS65218_REG_FLAG 0x07
  36. #define TPS65218_REG_PASSWORD 0x10
  37. #define TPS65218_REG_ENABLE1 0x11
  38. #define TPS65218_REG_ENABLE2 0x12
  39. #define TPS65218_REG_CONFIG1 0x13
  40. #define TPS65218_REG_CONFIG2 0x14
  41. #define TPS65218_REG_CONFIG3 0x15
  42. #define TPS65218_REG_CONTROL_DCDC1 0x16
  43. #define TPS65218_REG_CONTROL_DCDC2 0x17
  44. #define TPS65218_REG_CONTROL_DCDC3 0x18
  45. #define TPS65218_REG_CONTROL_DCDC4 0x19
  46. #define TPS65218_REG_CONTRL_SLEW_RATE 0x1A
  47. #define TPS65218_REG_CONTROL_LDO1 0x1B
  48. #define TPS65218_REG_SEQ1 0x20
  49. #define TPS65218_REG_SEQ2 0x21
  50. #define TPS65218_REG_SEQ3 0x22
  51. #define TPS65218_REG_SEQ4 0x23
  52. #define TPS65218_REG_SEQ5 0x24
  53. #define TPS65218_REG_SEQ6 0x25
  54. #define TPS65218_REG_SEQ7 0x26
  55. /* Register field definitions */
  56. #define TPS65218_CHIPID_CHIP_MASK 0xF8
  57. #define TPS65218_CHIPID_REV_MASK 0x07
  58. #define TPS65218_REV_1_0 0x0
  59. #define TPS65218_REV_1_1 0x1
  60. #define TPS65218_REV_2_0 0x2
  61. #define TPS65218_REV_2_1 0x3
  62. #define TPS65218_INT1_VPRG BIT(5)
  63. #define TPS65218_INT1_AC BIT(4)
  64. #define TPS65218_INT1_PB BIT(3)
  65. #define TPS65218_INT1_HOT BIT(2)
  66. #define TPS65218_INT1_CC_AQC BIT(1)
  67. #define TPS65218_INT1_PRGC BIT(0)
  68. #define TPS65218_INT2_LS3_F BIT(5)
  69. #define TPS65218_INT2_LS2_F BIT(4)
  70. #define TPS65218_INT2_LS1_F BIT(3)
  71. #define TPS65218_INT2_LS3_I BIT(2)
  72. #define TPS65218_INT2_LS2_I BIT(1)
  73. #define TPS65218_INT2_LS1_I BIT(0)
  74. #define TPS65218_INT_MASK1_VPRG BIT(5)
  75. #define TPS65218_INT_MASK1_AC BIT(4)
  76. #define TPS65218_INT_MASK1_PB BIT(3)
  77. #define TPS65218_INT_MASK1_HOT BIT(2)
  78. #define TPS65218_INT_MASK1_CC_AQC BIT(1)
  79. #define TPS65218_INT_MASK1_PRGC BIT(0)
  80. #define TPS65218_INT_MASK2_LS3_F BIT(5)
  81. #define TPS65218_INT_MASK2_LS2_F BIT(4)
  82. #define TPS65218_INT_MASK2_LS1_F BIT(3)
  83. #define TPS65218_INT_MASK2_LS3_I BIT(2)
  84. #define TPS65218_INT_MASK2_LS2_I BIT(1)
  85. #define TPS65218_INT_MASK2_LS1_I BIT(0)
  86. #define TPS65218_STATUS_FSEAL BIT(7)
  87. #define TPS65218_STATUS_EE BIT(6)
  88. #define TPS65218_STATUS_AC_STATE BIT(5)
  89. #define TPS65218_STATUS_PB_STATE BIT(4)
  90. #define TPS65218_STATUS_STATE_MASK 0xC
  91. #define TPS65218_STATUS_CC_STAT 0x3
  92. #define TPS65218_CONTROL_OFFNPFO BIT(1)
  93. #define TPS65218_CONTROL_CC_AQ BIT(0)
  94. #define TPS65218_FLAG_GPO3_FLG BIT(7)
  95. #define TPS65218_FLAG_GPO2_FLG BIT(6)
  96. #define TPS65218_FLAG_GPO1_FLG BIT(5)
  97. #define TPS65218_FLAG_LDO1_FLG BIT(4)
  98. #define TPS65218_FLAG_DC4_FLG BIT(3)
  99. #define TPS65218_FLAG_DC3_FLG BIT(2)
  100. #define TPS65218_FLAG_DC2_FLG BIT(1)
  101. #define TPS65218_FLAG_DC1_FLG BIT(0)
  102. #define TPS65218_ENABLE1_DC6_EN BIT(5)
  103. #define TPS65218_ENABLE1_DC5_EN BIT(4)
  104. #define TPS65218_ENABLE1_DC4_EN BIT(3)
  105. #define TPS65218_ENABLE1_DC3_EN BIT(2)
  106. #define TPS65218_ENABLE1_DC2_EN BIT(1)
  107. #define TPS65218_ENABLE1_DC1_EN BIT(0)
  108. #define TPS65218_ENABLE2_GPIO3 BIT(6)
  109. #define TPS65218_ENABLE2_GPIO2 BIT(5)
  110. #define TPS65218_ENABLE2_GPIO1 BIT(4)
  111. #define TPS65218_ENABLE2_LS3_EN BIT(3)
  112. #define TPS65218_ENABLE2_LS2_EN BIT(2)
  113. #define TPS65218_ENABLE2_LS1_EN BIT(1)
  114. #define TPS65218_ENABLE2_LDO1_EN BIT(0)
  115. #define TPS65218_CONFIG1_TRST BIT(7)
  116. #define TPS65218_CONFIG1_GPO2_BUF BIT(6)
  117. #define TPS65218_CONFIG1_IO1_SEL BIT(5)
  118. #define TPS65218_CONFIG1_PGDLY_MASK 0x18
  119. #define TPS65218_CONFIG1_STRICT BIT(2)
  120. #define TPS65218_CONFIG1_UVLO_MASK 0x3
  121. #define TPS65218_CONFIG1_UVLO_2750000 0x0
  122. #define TPS65218_CONFIG1_UVLO_2950000 0x1
  123. #define TPS65218_CONFIG1_UVLO_3250000 0x2
  124. #define TPS65218_CONFIG1_UVLO_3350000 0x3
  125. #define TPS65218_CONFIG2_DC12_RST BIT(7)
  126. #define TPS65218_CONFIG2_UVLOHYS BIT(6)
  127. #define TPS65218_CONFIG2_LS3ILIM_MASK 0xC
  128. #define TPS65218_CONFIG2_LS2ILIM_MASK 0x3
  129. #define TPS65218_CONFIG3_LS3NPFO BIT(5)
  130. #define TPS65218_CONFIG3_LS2NPFO BIT(4)
  131. #define TPS65218_CONFIG3_LS1NPFO BIT(3)
  132. #define TPS65218_CONFIG3_LS3DCHRG BIT(2)
  133. #define TPS65218_CONFIG3_LS2DCHRG BIT(1)
  134. #define TPS65218_CONFIG3_LS1DCHRG BIT(0)
  135. #define TPS65218_CONTROL_DCDC1_PFM BIT(7)
  136. #define TPS65218_CONTROL_DCDC1_MASK 0x7F
  137. #define TPS65218_CONTROL_DCDC2_PFM BIT(7)
  138. #define TPS65218_CONTROL_DCDC2_MASK 0x3F
  139. #define TPS65218_CONTROL_DCDC3_PFM BIT(7)
  140. #define TPS65218_CONTROL_DCDC3_MASK 0x3F
  141. #define TPS65218_CONTROL_DCDC4_PFM BIT(7)
  142. #define TPS65218_CONTROL_DCDC4_MASK 0x3F
  143. #define TPS65218_SLEW_RATE_GO BIT(7)
  144. #define TPS65218_SLEW_RATE_GODSBL BIT(6)
  145. #define TPS65218_SLEW_RATE_SLEW_MASK 0x7
  146. #define TPS65218_CONTROL_LDO1_MASK 0x3F
  147. #define TPS65218_SEQ1_DLY8 BIT(7)
  148. #define TPS65218_SEQ1_DLY7 BIT(6)
  149. #define TPS65218_SEQ1_DLY6 BIT(5)
  150. #define TPS65218_SEQ1_DLY5 BIT(4)
  151. #define TPS65218_SEQ1_DLY4 BIT(3)
  152. #define TPS65218_SEQ1_DLY3 BIT(2)
  153. #define TPS65218_SEQ1_DLY2 BIT(1)
  154. #define TPS65218_SEQ1_DLY1 BIT(0)
  155. #define TPS65218_SEQ2_DLYFCTR BIT(7)
  156. #define TPS65218_SEQ2_DLY9 BIT(0)
  157. #define TPS65218_SEQ3_DC2_SEQ_MASK 0xF0
  158. #define TPS65218_SEQ3_DC1_SEQ_MASK 0xF
  159. #define TPS65218_SEQ4_DC4_SEQ_MASK 0xF0
  160. #define TPS65218_SEQ4_DC3_SEQ_MASK 0xF
  161. #define TPS65218_SEQ5_DC6_SEQ_MASK 0xF0
  162. #define TPS65218_SEQ5_DC5_SEQ_MASK 0xF
  163. #define TPS65218_SEQ6_LS1_SEQ_MASK 0xF0
  164. #define TPS65218_SEQ6_LDO1_SEQ_MASK 0xF
  165. #define TPS65218_SEQ7_GPO3_SEQ_MASK 0xF0
  166. #define TPS65218_SEQ7_GPO1_SEQ_MASK 0xF
  167. #define TPS65218_PROTECT_NONE 0
  168. #define TPS65218_PROTECT_L1 1
  169. enum tps65218_regulator_id {
  170. /* DCDC's */
  171. TPS65218_DCDC_1,
  172. TPS65218_DCDC_2,
  173. TPS65218_DCDC_3,
  174. TPS65218_DCDC_4,
  175. TPS65218_DCDC_5,
  176. TPS65218_DCDC_6,
  177. /* LDOs */
  178. TPS65218_LDO_1,
  179. /* LS's */
  180. TPS65218_LS_2,
  181. TPS65218_LS_3,
  182. };
  183. #define TPS65218_MAX_REG_ID TPS65218_LDO_1
  184. /* Number of step-down converters available */
  185. #define TPS65218_NUM_DCDC 6
  186. /* Number of LDO voltage regulators available */
  187. #define TPS65218_NUM_LDO 1
  188. /* Number of total LS current regulators available */
  189. #define TPS65218_NUM_LS 2
  190. /* Number of total regulators available */
  191. #define TPS65218_NUM_REGULATOR (TPS65218_NUM_DCDC + TPS65218_NUM_LDO \
  192. + TPS65218_NUM_LS)
  193. /* Define the TPS65218 IRQ numbers */
  194. enum tps65218_irqs {
  195. /* INT1 registers */
  196. TPS65218_PRGC_IRQ,
  197. TPS65218_CC_AQC_IRQ,
  198. TPS65218_HOT_IRQ,
  199. TPS65218_PB_IRQ,
  200. TPS65218_AC_IRQ,
  201. TPS65218_VPRG_IRQ,
  202. TPS65218_INVALID1_IRQ,
  203. TPS65218_INVALID2_IRQ,
  204. /* INT2 registers */
  205. TPS65218_LS1_I_IRQ,
  206. TPS65218_LS2_I_IRQ,
  207. TPS65218_LS3_I_IRQ,
  208. TPS65218_LS1_F_IRQ,
  209. TPS65218_LS2_F_IRQ,
  210. TPS65218_LS3_F_IRQ,
  211. TPS65218_INVALID3_IRQ,
  212. TPS65218_INVALID4_IRQ,
  213. };
  214. /**
  215. * struct tps65218 - tps65218 sub-driver chip access routines
  216. *
  217. * Device data may be used to access the TPS65218 chip
  218. */
  219. struct tps65218 {
  220. struct device *dev;
  221. unsigned int id;
  222. u8 rev;
  223. struct mutex tps_lock; /* lock guarding the data structure */
  224. /* IRQ Data */
  225. int irq;
  226. u32 irq_mask;
  227. struct regmap_irq_chip_data *irq_data;
  228. struct regulator_desc desc[TPS65218_NUM_REGULATOR];
  229. struct regmap *regmap;
  230. u8 *strobes;
  231. };
  232. int tps65218_reg_write(struct tps65218 *tps, unsigned int reg,
  233. unsigned int val, unsigned int level);
  234. int tps65218_set_bits(struct tps65218 *tps, unsigned int reg,
  235. unsigned int mask, unsigned int val, unsigned int level);
  236. int tps65218_clear_bits(struct tps65218 *tps, unsigned int reg,
  237. unsigned int mask, unsigned int level);
  238. #endif /* __LINUX_MFD_TPS65218_H */