pmbus.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*
  2. * pmbus.h - Common defines and structures for PMBus devices
  3. *
  4. * Copyright (c) 2010, 2011 Ericsson AB.
  5. * Copyright (c) 2012 Guenter Roeck
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #include <linux/regulator/driver.h>
  22. #ifndef PMBUS_H
  23. #define PMBUS_H
  24. /*
  25. * Registers
  26. */
  27. #define PMBUS_PAGE 0x00
  28. #define PMBUS_OPERATION 0x01
  29. #define PMBUS_ON_OFF_CONFIG 0x02
  30. #define PMBUS_CLEAR_FAULTS 0x03
  31. #define PMBUS_PHASE 0x04
  32. #define PMBUS_CAPABILITY 0x19
  33. #define PMBUS_QUERY 0x1A
  34. #define PMBUS_VOUT_MODE 0x20
  35. #define PMBUS_VOUT_COMMAND 0x21
  36. #define PMBUS_VOUT_TRIM 0x22
  37. #define PMBUS_VOUT_CAL_OFFSET 0x23
  38. #define PMBUS_VOUT_MAX 0x24
  39. #define PMBUS_VOUT_MARGIN_HIGH 0x25
  40. #define PMBUS_VOUT_MARGIN_LOW 0x26
  41. #define PMBUS_VOUT_TRANSITION_RATE 0x27
  42. #define PMBUS_VOUT_DROOP 0x28
  43. #define PMBUS_VOUT_SCALE_LOOP 0x29
  44. #define PMBUS_VOUT_SCALE_MONITOR 0x2A
  45. #define PMBUS_COEFFICIENTS 0x30
  46. #define PMBUS_POUT_MAX 0x31
  47. #define PMBUS_FAN_CONFIG_12 0x3A
  48. #define PMBUS_FAN_COMMAND_1 0x3B
  49. #define PMBUS_FAN_COMMAND_2 0x3C
  50. #define PMBUS_FAN_CONFIG_34 0x3D
  51. #define PMBUS_FAN_COMMAND_3 0x3E
  52. #define PMBUS_FAN_COMMAND_4 0x3F
  53. #define PMBUS_VOUT_OV_FAULT_LIMIT 0x40
  54. #define PMBUS_VOUT_OV_FAULT_RESPONSE 0x41
  55. #define PMBUS_VOUT_OV_WARN_LIMIT 0x42
  56. #define PMBUS_VOUT_UV_WARN_LIMIT 0x43
  57. #define PMBUS_VOUT_UV_FAULT_LIMIT 0x44
  58. #define PMBUS_VOUT_UV_FAULT_RESPONSE 0x45
  59. #define PMBUS_IOUT_OC_FAULT_LIMIT 0x46
  60. #define PMBUS_IOUT_OC_FAULT_RESPONSE 0x47
  61. #define PMBUS_IOUT_OC_LV_FAULT_LIMIT 0x48
  62. #define PMBUS_IOUT_OC_LV_FAULT_RESPONSE 0x49
  63. #define PMBUS_IOUT_OC_WARN_LIMIT 0x4A
  64. #define PMBUS_IOUT_UC_FAULT_LIMIT 0x4B
  65. #define PMBUS_IOUT_UC_FAULT_RESPONSE 0x4C
  66. #define PMBUS_OT_FAULT_LIMIT 0x4F
  67. #define PMBUS_OT_FAULT_RESPONSE 0x50
  68. #define PMBUS_OT_WARN_LIMIT 0x51
  69. #define PMBUS_UT_WARN_LIMIT 0x52
  70. #define PMBUS_UT_FAULT_LIMIT 0x53
  71. #define PMBUS_UT_FAULT_RESPONSE 0x54
  72. #define PMBUS_VIN_OV_FAULT_LIMIT 0x55
  73. #define PMBUS_VIN_OV_FAULT_RESPONSE 0x56
  74. #define PMBUS_VIN_OV_WARN_LIMIT 0x57
  75. #define PMBUS_VIN_UV_WARN_LIMIT 0x58
  76. #define PMBUS_VIN_UV_FAULT_LIMIT 0x59
  77. #define PMBUS_IIN_OC_FAULT_LIMIT 0x5B
  78. #define PMBUS_IIN_OC_WARN_LIMIT 0x5D
  79. #define PMBUS_POUT_OP_FAULT_LIMIT 0x68
  80. #define PMBUS_POUT_OP_WARN_LIMIT 0x6A
  81. #define PMBUS_PIN_OP_WARN_LIMIT 0x6B
  82. #define PMBUS_STATUS_BYTE 0x78
  83. #define PMBUS_STATUS_WORD 0x79
  84. #define PMBUS_STATUS_VOUT 0x7A
  85. #define PMBUS_STATUS_IOUT 0x7B
  86. #define PMBUS_STATUS_INPUT 0x7C
  87. #define PMBUS_STATUS_TEMPERATURE 0x7D
  88. #define PMBUS_STATUS_CML 0x7E
  89. #define PMBUS_STATUS_OTHER 0x7F
  90. #define PMBUS_STATUS_MFR_SPECIFIC 0x80
  91. #define PMBUS_STATUS_FAN_12 0x81
  92. #define PMBUS_STATUS_FAN_34 0x82
  93. #define PMBUS_READ_VIN 0x88
  94. #define PMBUS_READ_IIN 0x89
  95. #define PMBUS_READ_VCAP 0x8A
  96. #define PMBUS_READ_VOUT 0x8B
  97. #define PMBUS_READ_IOUT 0x8C
  98. #define PMBUS_READ_TEMPERATURE_1 0x8D
  99. #define PMBUS_READ_TEMPERATURE_2 0x8E
  100. #define PMBUS_READ_TEMPERATURE_3 0x8F
  101. #define PMBUS_READ_FAN_SPEED_1 0x90
  102. #define PMBUS_READ_FAN_SPEED_2 0x91
  103. #define PMBUS_READ_FAN_SPEED_3 0x92
  104. #define PMBUS_READ_FAN_SPEED_4 0x93
  105. #define PMBUS_READ_DUTY_CYCLE 0x94
  106. #define PMBUS_READ_FREQUENCY 0x95
  107. #define PMBUS_READ_POUT 0x96
  108. #define PMBUS_READ_PIN 0x97
  109. #define PMBUS_REVISION 0x98
  110. #define PMBUS_MFR_ID 0x99
  111. #define PMBUS_MFR_MODEL 0x9A
  112. #define PMBUS_MFR_REVISION 0x9B
  113. #define PMBUS_MFR_LOCATION 0x9C
  114. #define PMBUS_MFR_DATE 0x9D
  115. #define PMBUS_MFR_SERIAL 0x9E
  116. /*
  117. * Virtual registers.
  118. * Useful to support attributes which are not supported by standard PMBus
  119. * registers but exist as manufacturer specific registers on individual chips.
  120. * Must be mapped to real registers in device specific code.
  121. *
  122. * Semantics:
  123. * Virtual registers are all word size.
  124. * READ registers are read-only; writes are either ignored or return an error.
  125. * RESET registers are read/write. Reading reset registers returns zero
  126. * (used for detection), writing any value causes the associated history to be
  127. * reset.
  128. * Virtual registers have to be handled in device specific driver code. Chip
  129. * driver code returns non-negative register values if a virtual register is
  130. * supported, or a negative error code if not. The chip driver may return
  131. * -ENODATA or any other error code in this case, though an error code other
  132. * than -ENODATA is handled more efficiently and thus preferred. Either case,
  133. * the calling PMBus core code will abort if the chip driver returns an error
  134. * code when reading or writing virtual registers.
  135. */
  136. #define PMBUS_VIRT_BASE 0x100
  137. #define PMBUS_VIRT_READ_TEMP_AVG (PMBUS_VIRT_BASE + 0)
  138. #define PMBUS_VIRT_READ_TEMP_MIN (PMBUS_VIRT_BASE + 1)
  139. #define PMBUS_VIRT_READ_TEMP_MAX (PMBUS_VIRT_BASE + 2)
  140. #define PMBUS_VIRT_RESET_TEMP_HISTORY (PMBUS_VIRT_BASE + 3)
  141. #define PMBUS_VIRT_READ_VIN_AVG (PMBUS_VIRT_BASE + 4)
  142. #define PMBUS_VIRT_READ_VIN_MIN (PMBUS_VIRT_BASE + 5)
  143. #define PMBUS_VIRT_READ_VIN_MAX (PMBUS_VIRT_BASE + 6)
  144. #define PMBUS_VIRT_RESET_VIN_HISTORY (PMBUS_VIRT_BASE + 7)
  145. #define PMBUS_VIRT_READ_IIN_AVG (PMBUS_VIRT_BASE + 8)
  146. #define PMBUS_VIRT_READ_IIN_MIN (PMBUS_VIRT_BASE + 9)
  147. #define PMBUS_VIRT_READ_IIN_MAX (PMBUS_VIRT_BASE + 10)
  148. #define PMBUS_VIRT_RESET_IIN_HISTORY (PMBUS_VIRT_BASE + 11)
  149. #define PMBUS_VIRT_READ_PIN_AVG (PMBUS_VIRT_BASE + 12)
  150. #define PMBUS_VIRT_READ_PIN_MAX (PMBUS_VIRT_BASE + 13)
  151. #define PMBUS_VIRT_RESET_PIN_HISTORY (PMBUS_VIRT_BASE + 14)
  152. #define PMBUS_VIRT_READ_POUT_AVG (PMBUS_VIRT_BASE + 15)
  153. #define PMBUS_VIRT_READ_POUT_MAX (PMBUS_VIRT_BASE + 16)
  154. #define PMBUS_VIRT_RESET_POUT_HISTORY (PMBUS_VIRT_BASE + 17)
  155. #define PMBUS_VIRT_READ_VOUT_AVG (PMBUS_VIRT_BASE + 18)
  156. #define PMBUS_VIRT_READ_VOUT_MIN (PMBUS_VIRT_BASE + 19)
  157. #define PMBUS_VIRT_READ_VOUT_MAX (PMBUS_VIRT_BASE + 20)
  158. #define PMBUS_VIRT_RESET_VOUT_HISTORY (PMBUS_VIRT_BASE + 21)
  159. #define PMBUS_VIRT_READ_IOUT_AVG (PMBUS_VIRT_BASE + 22)
  160. #define PMBUS_VIRT_READ_IOUT_MIN (PMBUS_VIRT_BASE + 23)
  161. #define PMBUS_VIRT_READ_IOUT_MAX (PMBUS_VIRT_BASE + 24)
  162. #define PMBUS_VIRT_RESET_IOUT_HISTORY (PMBUS_VIRT_BASE + 25)
  163. #define PMBUS_VIRT_READ_TEMP2_AVG (PMBUS_VIRT_BASE + 26)
  164. #define PMBUS_VIRT_READ_TEMP2_MIN (PMBUS_VIRT_BASE + 27)
  165. #define PMBUS_VIRT_READ_TEMP2_MAX (PMBUS_VIRT_BASE + 28)
  166. #define PMBUS_VIRT_RESET_TEMP2_HISTORY (PMBUS_VIRT_BASE + 29)
  167. #define PMBUS_VIRT_READ_VMON (PMBUS_VIRT_BASE + 30)
  168. #define PMBUS_VIRT_VMON_UV_WARN_LIMIT (PMBUS_VIRT_BASE + 31)
  169. #define PMBUS_VIRT_VMON_OV_WARN_LIMIT (PMBUS_VIRT_BASE + 32)
  170. #define PMBUS_VIRT_VMON_UV_FAULT_LIMIT (PMBUS_VIRT_BASE + 33)
  171. #define PMBUS_VIRT_VMON_OV_FAULT_LIMIT (PMBUS_VIRT_BASE + 34)
  172. #define PMBUS_VIRT_STATUS_VMON (PMBUS_VIRT_BASE + 35)
  173. /*
  174. * OPERATION
  175. */
  176. #define PB_OPERATION_CONTROL_ON (1<<7)
  177. /*
  178. * CAPABILITY
  179. */
  180. #define PB_CAPABILITY_SMBALERT (1<<4)
  181. #define PB_CAPABILITY_ERROR_CHECK (1<<7)
  182. /*
  183. * VOUT_MODE
  184. */
  185. #define PB_VOUT_MODE_MODE_MASK 0xe0
  186. #define PB_VOUT_MODE_PARAM_MASK 0x1f
  187. #define PB_VOUT_MODE_LINEAR 0x00
  188. #define PB_VOUT_MODE_VID 0x20
  189. #define PB_VOUT_MODE_DIRECT 0x40
  190. /*
  191. * Fan configuration
  192. */
  193. #define PB_FAN_2_PULSE_MASK ((1 << 0) | (1 << 1))
  194. #define PB_FAN_2_RPM (1 << 2)
  195. #define PB_FAN_2_INSTALLED (1 << 3)
  196. #define PB_FAN_1_PULSE_MASK ((1 << 4) | (1 << 5))
  197. #define PB_FAN_1_RPM (1 << 6)
  198. #define PB_FAN_1_INSTALLED (1 << 7)
  199. /*
  200. * STATUS_BYTE, STATUS_WORD (lower)
  201. */
  202. #define PB_STATUS_NONE_ABOVE (1<<0)
  203. #define PB_STATUS_CML (1<<1)
  204. #define PB_STATUS_TEMPERATURE (1<<2)
  205. #define PB_STATUS_VIN_UV (1<<3)
  206. #define PB_STATUS_IOUT_OC (1<<4)
  207. #define PB_STATUS_VOUT_OV (1<<5)
  208. #define PB_STATUS_OFF (1<<6)
  209. #define PB_STATUS_BUSY (1<<7)
  210. /*
  211. * STATUS_WORD (upper)
  212. */
  213. #define PB_STATUS_UNKNOWN (1<<8)
  214. #define PB_STATUS_OTHER (1<<9)
  215. #define PB_STATUS_FANS (1<<10)
  216. #define PB_STATUS_POWER_GOOD_N (1<<11)
  217. #define PB_STATUS_WORD_MFR (1<<12)
  218. #define PB_STATUS_INPUT (1<<13)
  219. #define PB_STATUS_IOUT_POUT (1<<14)
  220. #define PB_STATUS_VOUT (1<<15)
  221. /*
  222. * STATUS_IOUT
  223. */
  224. #define PB_POUT_OP_WARNING (1<<0)
  225. #define PB_POUT_OP_FAULT (1<<1)
  226. #define PB_POWER_LIMITING (1<<2)
  227. #define PB_CURRENT_SHARE_FAULT (1<<3)
  228. #define PB_IOUT_UC_FAULT (1<<4)
  229. #define PB_IOUT_OC_WARNING (1<<5)
  230. #define PB_IOUT_OC_LV_FAULT (1<<6)
  231. #define PB_IOUT_OC_FAULT (1<<7)
  232. /*
  233. * STATUS_VOUT, STATUS_INPUT
  234. */
  235. #define PB_VOLTAGE_UV_FAULT (1<<4)
  236. #define PB_VOLTAGE_UV_WARNING (1<<5)
  237. #define PB_VOLTAGE_OV_WARNING (1<<6)
  238. #define PB_VOLTAGE_OV_FAULT (1<<7)
  239. /*
  240. * STATUS_INPUT
  241. */
  242. #define PB_PIN_OP_WARNING (1<<0)
  243. #define PB_IIN_OC_WARNING (1<<1)
  244. #define PB_IIN_OC_FAULT (1<<2)
  245. /*
  246. * STATUS_TEMPERATURE
  247. */
  248. #define PB_TEMP_UT_FAULT (1<<4)
  249. #define PB_TEMP_UT_WARNING (1<<5)
  250. #define PB_TEMP_OT_WARNING (1<<6)
  251. #define PB_TEMP_OT_FAULT (1<<7)
  252. /*
  253. * STATUS_FAN
  254. */
  255. #define PB_FAN_AIRFLOW_WARNING (1<<0)
  256. #define PB_FAN_AIRFLOW_FAULT (1<<1)
  257. #define PB_FAN_FAN2_SPEED_OVERRIDE (1<<2)
  258. #define PB_FAN_FAN1_SPEED_OVERRIDE (1<<3)
  259. #define PB_FAN_FAN2_WARNING (1<<4)
  260. #define PB_FAN_FAN1_WARNING (1<<5)
  261. #define PB_FAN_FAN2_FAULT (1<<6)
  262. #define PB_FAN_FAN1_FAULT (1<<7)
  263. /*
  264. * CML_FAULT_STATUS
  265. */
  266. #define PB_CML_FAULT_OTHER_MEM_LOGIC (1<<0)
  267. #define PB_CML_FAULT_OTHER_COMM (1<<1)
  268. #define PB_CML_FAULT_PROCESSOR (1<<3)
  269. #define PB_CML_FAULT_MEMORY (1<<4)
  270. #define PB_CML_FAULT_PACKET_ERROR (1<<5)
  271. #define PB_CML_FAULT_INVALID_DATA (1<<6)
  272. #define PB_CML_FAULT_INVALID_COMMAND (1<<7)
  273. enum pmbus_sensor_classes {
  274. PSC_VOLTAGE_IN = 0,
  275. PSC_VOLTAGE_OUT,
  276. PSC_CURRENT_IN,
  277. PSC_CURRENT_OUT,
  278. PSC_POWER,
  279. PSC_TEMPERATURE,
  280. PSC_FAN,
  281. PSC_NUM_CLASSES /* Number of power sensor classes */
  282. };
  283. #define PMBUS_PAGES 32 /* Per PMBus specification */
  284. /* Functionality bit mask */
  285. #define PMBUS_HAVE_VIN (1 << 0)
  286. #define PMBUS_HAVE_VCAP (1 << 1)
  287. #define PMBUS_HAVE_VOUT (1 << 2)
  288. #define PMBUS_HAVE_IIN (1 << 3)
  289. #define PMBUS_HAVE_IOUT (1 << 4)
  290. #define PMBUS_HAVE_PIN (1 << 5)
  291. #define PMBUS_HAVE_POUT (1 << 6)
  292. #define PMBUS_HAVE_FAN12 (1 << 7)
  293. #define PMBUS_HAVE_FAN34 (1 << 8)
  294. #define PMBUS_HAVE_TEMP (1 << 9)
  295. #define PMBUS_HAVE_TEMP2 (1 << 10)
  296. #define PMBUS_HAVE_TEMP3 (1 << 11)
  297. #define PMBUS_HAVE_STATUS_VOUT (1 << 12)
  298. #define PMBUS_HAVE_STATUS_IOUT (1 << 13)
  299. #define PMBUS_HAVE_STATUS_INPUT (1 << 14)
  300. #define PMBUS_HAVE_STATUS_TEMP (1 << 15)
  301. #define PMBUS_HAVE_STATUS_FAN12 (1 << 16)
  302. #define PMBUS_HAVE_STATUS_FAN34 (1 << 17)
  303. #define PMBUS_HAVE_VMON (1 << 18)
  304. #define PMBUS_HAVE_STATUS_VMON (1 << 19)
  305. enum pmbus_data_format { linear = 0, direct, vid };
  306. struct pmbus_driver_info {
  307. int pages; /* Total number of pages */
  308. enum pmbus_data_format format[PSC_NUM_CLASSES];
  309. /*
  310. * Support one set of coefficients for each sensor type
  311. * Used for chips providing data in direct mode.
  312. */
  313. int m[PSC_NUM_CLASSES]; /* mantissa for direct data format */
  314. int b[PSC_NUM_CLASSES]; /* offset */
  315. int R[PSC_NUM_CLASSES]; /* exponent */
  316. u32 func[PMBUS_PAGES]; /* Functionality, per page */
  317. /*
  318. * The following functions map manufacturing specific register values
  319. * to PMBus standard register values. Specify only if mapping is
  320. * necessary.
  321. * Functions return the register value (read) or zero (write) if
  322. * successful. A return value of -ENODATA indicates that there is no
  323. * manufacturer specific register, but that a standard PMBus register
  324. * may exist. Any other negative return value indicates that the
  325. * register does not exist, and that no attempt should be made to read
  326. * the standard register.
  327. */
  328. int (*read_byte_data)(struct i2c_client *client, int page, int reg);
  329. int (*read_word_data)(struct i2c_client *client, int page, int reg);
  330. int (*write_word_data)(struct i2c_client *client, int page, int reg,
  331. u16 word);
  332. int (*write_byte)(struct i2c_client *client, int page, u8 value);
  333. /*
  334. * The identify function determines supported PMBus functionality.
  335. * This function is only necessary if a chip driver supports multiple
  336. * chips, and the chip functionality is not pre-determined.
  337. */
  338. int (*identify)(struct i2c_client *client,
  339. struct pmbus_driver_info *info);
  340. /* Regulator functionality, if supported by this chip driver. */
  341. int num_regulators;
  342. const struct regulator_desc *reg_desc;
  343. };
  344. /* Regulator ops */
  345. extern struct regulator_ops pmbus_regulator_ops;
  346. /* Macro for filling in array of struct regulator_desc */
  347. #define PMBUS_REGULATOR(_name, _id) \
  348. [_id] = { \
  349. .name = (_name # _id), \
  350. .id = (_id), \
  351. .of_match = of_match_ptr(_name # _id), \
  352. .regulators_node = of_match_ptr("regulators"), \
  353. .ops = &pmbus_regulator_ops, \
  354. .owner = THIS_MODULE, \
  355. }
  356. /* Function declarations */
  357. void pmbus_clear_cache(struct i2c_client *client);
  358. int pmbus_set_page(struct i2c_client *client, u8 page);
  359. int pmbus_read_word_data(struct i2c_client *client, u8 page, u8 reg);
  360. int pmbus_write_word_data(struct i2c_client *client, u8 page, u8 reg, u16 word);
  361. int pmbus_read_byte_data(struct i2c_client *client, int page, u8 reg);
  362. int pmbus_write_byte(struct i2c_client *client, int page, u8 value);
  363. int pmbus_write_byte_data(struct i2c_client *client, int page, u8 reg,
  364. u8 value);
  365. int pmbus_update_byte_data(struct i2c_client *client, int page, u8 reg,
  366. u8 mask, u8 value);
  367. void pmbus_clear_faults(struct i2c_client *client);
  368. bool pmbus_check_byte_register(struct i2c_client *client, int page, int reg);
  369. bool pmbus_check_word_register(struct i2c_client *client, int page, int reg);
  370. int pmbus_do_probe(struct i2c_client *client, const struct i2c_device_id *id,
  371. struct pmbus_driver_info *info);
  372. int pmbus_do_remove(struct i2c_client *client);
  373. const struct pmbus_driver_info *pmbus_get_driver_info(struct i2c_client
  374. *client);
  375. #endif /* PMBUS_H */