da9052-i2c.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * I2C access for DA9052 PMICs.
  3. *
  4. * Copyright(c) 2011 Dialog Semiconductor Ltd.
  5. *
  6. * Author: David Dajun Chen <dchen@diasemi.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. */
  14. #include <linux/device.h>
  15. #include <linux/module.h>
  16. #include <linux/input.h>
  17. #include <linux/mfd/core.h>
  18. #include <linux/i2c.h>
  19. #include <linux/err.h>
  20. #include <linux/mfd/da9052/da9052.h>
  21. #include <linux/mfd/da9052/reg.h>
  22. #ifdef CONFIG_OF
  23. #include <linux/of.h>
  24. #include <linux/of_device.h>
  25. #endif
  26. /* I2C safe register check */
  27. static inline bool i2c_safe_reg(unsigned char reg)
  28. {
  29. switch (reg) {
  30. case DA9052_STATUS_A_REG:
  31. case DA9052_STATUS_B_REG:
  32. case DA9052_STATUS_C_REG:
  33. case DA9052_STATUS_D_REG:
  34. case DA9052_ADC_RES_L_REG:
  35. case DA9052_ADC_RES_H_REG:
  36. case DA9052_VDD_RES_REG:
  37. case DA9052_ICHG_AV_REG:
  38. case DA9052_TBAT_RES_REG:
  39. case DA9052_ADCIN4_RES_REG:
  40. case DA9052_ADCIN5_RES_REG:
  41. case DA9052_ADCIN6_RES_REG:
  42. case DA9052_TJUNC_RES_REG:
  43. case DA9052_TSI_X_MSB_REG:
  44. case DA9052_TSI_Y_MSB_REG:
  45. case DA9052_TSI_LSB_REG:
  46. case DA9052_TSI_Z_MSB_REG:
  47. return true;
  48. default:
  49. return false;
  50. }
  51. }
  52. /*
  53. * There is an issue with DA9052 and DA9053_AA/BA/BB PMIC where the PMIC
  54. * gets lockup up or fails to respond following a system reset.
  55. * This fix is to follow any read or write with a dummy read to a safe
  56. * register.
  57. */
  58. static int da9052_i2c_fix(struct da9052 *da9052, unsigned char reg)
  59. {
  60. int val;
  61. switch (da9052->chip_id) {
  62. case DA9052:
  63. case DA9053_AA:
  64. case DA9053_BA:
  65. case DA9053_BB:
  66. /* A dummy read to a safe register address. */
  67. if (!i2c_safe_reg(reg))
  68. return regmap_read(da9052->regmap,
  69. DA9052_PARK_REGISTER,
  70. &val);
  71. break;
  72. default:
  73. /*
  74. * For other chips parking of I2C register
  75. * to a safe place is not required.
  76. */
  77. break;
  78. }
  79. return 0;
  80. }
  81. /*
  82. * According to errata item 24, multiwrite mode should be avoided
  83. * in order to prevent register data corruption after power-down.
  84. */
  85. static int da9052_i2c_disable_multiwrite(struct da9052 *da9052)
  86. {
  87. int reg_val, ret;
  88. ret = regmap_read(da9052->regmap, DA9052_CONTROL_B_REG, &reg_val);
  89. if (ret < 0)
  90. return ret;
  91. if (!(reg_val & DA9052_CONTROL_B_WRITEMODE)) {
  92. reg_val |= DA9052_CONTROL_B_WRITEMODE;
  93. ret = regmap_write(da9052->regmap, DA9052_CONTROL_B_REG,
  94. reg_val);
  95. if (ret < 0)
  96. return ret;
  97. }
  98. return 0;
  99. }
  100. static const struct i2c_device_id da9052_i2c_id[] = {
  101. {"da9052", DA9052},
  102. {"da9053-aa", DA9053_AA},
  103. {"da9053-ba", DA9053_BA},
  104. {"da9053-bb", DA9053_BB},
  105. {}
  106. };
  107. #ifdef CONFIG_OF
  108. static const struct of_device_id dialog_dt_ids[] = {
  109. { .compatible = "dlg,da9052", .data = &da9052_i2c_id[0] },
  110. { .compatible = "dlg,da9053-aa", .data = &da9052_i2c_id[1] },
  111. { .compatible = "dlg,da9053-ab", .data = &da9052_i2c_id[2] },
  112. { .compatible = "dlg,da9053-bb", .data = &da9052_i2c_id[3] },
  113. { /* sentinel */ }
  114. };
  115. #endif
  116. static int da9052_i2c_probe(struct i2c_client *client,
  117. const struct i2c_device_id *id)
  118. {
  119. struct da9052 *da9052;
  120. int ret;
  121. da9052 = devm_kzalloc(&client->dev, sizeof(struct da9052), GFP_KERNEL);
  122. if (!da9052)
  123. return -ENOMEM;
  124. if (!i2c_check_functionality(client->adapter,
  125. I2C_FUNC_SMBUS_BYTE_DATA)) {
  126. dev_info(&client->dev, "Error in %s:i2c_check_functionality\n",
  127. __func__);
  128. return -ENODEV;
  129. }
  130. da9052->dev = &client->dev;
  131. da9052->chip_irq = client->irq;
  132. da9052->fix_io = da9052_i2c_fix;
  133. i2c_set_clientdata(client, da9052);
  134. da9052->regmap = devm_regmap_init_i2c(client, &da9052_regmap_config);
  135. if (IS_ERR(da9052->regmap)) {
  136. ret = PTR_ERR(da9052->regmap);
  137. dev_err(&client->dev, "Failed to allocate register map: %d\n",
  138. ret);
  139. return ret;
  140. }
  141. ret = da9052_i2c_disable_multiwrite(da9052);
  142. if (ret < 0)
  143. return ret;
  144. #ifdef CONFIG_OF
  145. if (!id) {
  146. struct device_node *np = client->dev.of_node;
  147. const struct of_device_id *deviceid;
  148. deviceid = of_match_node(dialog_dt_ids, np);
  149. id = deviceid->data;
  150. }
  151. #endif
  152. if (!id) {
  153. ret = -ENODEV;
  154. dev_err(&client->dev, "id is null.\n");
  155. return ret;
  156. }
  157. ret = da9052_device_init(da9052, id->driver_data);
  158. if (ret != 0)
  159. return ret;
  160. return 0;
  161. }
  162. static int da9052_i2c_remove(struct i2c_client *client)
  163. {
  164. struct da9052 *da9052 = i2c_get_clientdata(client);
  165. da9052_device_exit(da9052);
  166. return 0;
  167. }
  168. static struct i2c_driver da9052_i2c_driver = {
  169. .probe = da9052_i2c_probe,
  170. .remove = da9052_i2c_remove,
  171. .id_table = da9052_i2c_id,
  172. .driver = {
  173. .name = "da9052",
  174. .owner = THIS_MODULE,
  175. #ifdef CONFIG_OF
  176. .of_match_table = dialog_dt_ids,
  177. #endif
  178. },
  179. };
  180. static int __init da9052_i2c_init(void)
  181. {
  182. int ret;
  183. ret = i2c_add_driver(&da9052_i2c_driver);
  184. if (ret != 0) {
  185. pr_err("DA9052 I2C registration failed %d\n", ret);
  186. return ret;
  187. }
  188. return 0;
  189. }
  190. subsys_initcall(da9052_i2c_init);
  191. static void __exit da9052_i2c_exit(void)
  192. {
  193. i2c_del_driver(&da9052_i2c_driver);
  194. }
  195. module_exit(da9052_i2c_exit);
  196. MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
  197. MODULE_DESCRIPTION("I2C driver for Dialog DA9052 PMIC");
  198. MODULE_LICENSE("GPL");