da9052-i2c.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. static int da9052_i2c_enable_multiwrite(struct da9052 *da9052)
  27. {
  28. int reg_val, ret;
  29. ret = regmap_read(da9052->regmap, DA9052_CONTROL_B_REG, &reg_val);
  30. if (ret < 0)
  31. return ret;
  32. if (reg_val & DA9052_CONTROL_B_WRITEMODE) {
  33. reg_val &= ~DA9052_CONTROL_B_WRITEMODE;
  34. ret = regmap_write(da9052->regmap, DA9052_CONTROL_B_REG,
  35. reg_val);
  36. if (ret < 0)
  37. return ret;
  38. }
  39. return 0;
  40. }
  41. static const struct i2c_device_id da9052_i2c_id[] = {
  42. {"da9052", DA9052},
  43. {"da9053-aa", DA9053_AA},
  44. {"da9053-ba", DA9053_BA},
  45. {"da9053-bb", DA9053_BB},
  46. {}
  47. };
  48. #ifdef CONFIG_OF
  49. static const struct of_device_id dialog_dt_ids[] = {
  50. { .compatible = "dlg,da9052", .data = &da9052_i2c_id[0] },
  51. { .compatible = "dlg,da9053-aa", .data = &da9052_i2c_id[1] },
  52. { .compatible = "dlg,da9053-ab", .data = &da9052_i2c_id[2] },
  53. { .compatible = "dlg,da9053-bb", .data = &da9052_i2c_id[3] },
  54. { /* sentinel */ }
  55. };
  56. #endif
  57. static int da9052_i2c_probe(struct i2c_client *client,
  58. const struct i2c_device_id *id)
  59. {
  60. struct da9052 *da9052;
  61. int ret;
  62. da9052 = devm_kzalloc(&client->dev, sizeof(struct da9052), GFP_KERNEL);
  63. if (!da9052)
  64. return -ENOMEM;
  65. if (!i2c_check_functionality(client->adapter,
  66. I2C_FUNC_SMBUS_BYTE_DATA)) {
  67. dev_info(&client->dev, "Error in %s:i2c_check_functionality\n",
  68. __func__);
  69. return -ENODEV;
  70. }
  71. da9052->dev = &client->dev;
  72. da9052->chip_irq = client->irq;
  73. i2c_set_clientdata(client, da9052);
  74. da9052->regmap = devm_regmap_init_i2c(client, &da9052_regmap_config);
  75. if (IS_ERR(da9052->regmap)) {
  76. ret = PTR_ERR(da9052->regmap);
  77. dev_err(&client->dev, "Failed to allocate register map: %d\n",
  78. ret);
  79. return ret;
  80. }
  81. ret = da9052_i2c_enable_multiwrite(da9052);
  82. if (ret < 0)
  83. return ret;
  84. #ifdef CONFIG_OF
  85. if (!id) {
  86. struct device_node *np = client->dev.of_node;
  87. const struct of_device_id *deviceid;
  88. deviceid = of_match_node(dialog_dt_ids, np);
  89. id = deviceid->data;
  90. }
  91. #endif
  92. if (!id) {
  93. ret = -ENODEV;
  94. dev_err(&client->dev, "id is null.\n");
  95. return ret;
  96. }
  97. ret = da9052_device_init(da9052, id->driver_data);
  98. if (ret != 0)
  99. return ret;
  100. return 0;
  101. }
  102. static int da9052_i2c_remove(struct i2c_client *client)
  103. {
  104. struct da9052 *da9052 = i2c_get_clientdata(client);
  105. da9052_device_exit(da9052);
  106. return 0;
  107. }
  108. static struct i2c_driver da9052_i2c_driver = {
  109. .probe = da9052_i2c_probe,
  110. .remove = da9052_i2c_remove,
  111. .id_table = da9052_i2c_id,
  112. .driver = {
  113. .name = "da9052",
  114. .owner = THIS_MODULE,
  115. #ifdef CONFIG_OF
  116. .of_match_table = dialog_dt_ids,
  117. #endif
  118. },
  119. };
  120. static int __init da9052_i2c_init(void)
  121. {
  122. int ret;
  123. ret = i2c_add_driver(&da9052_i2c_driver);
  124. if (ret != 0) {
  125. pr_err("DA9052 I2C registration failed %d\n", ret);
  126. return ret;
  127. }
  128. return 0;
  129. }
  130. subsys_initcall(da9052_i2c_init);
  131. static void __exit da9052_i2c_exit(void)
  132. {
  133. i2c_del_driver(&da9052_i2c_driver);
  134. }
  135. module_exit(da9052_i2c_exit);
  136. MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
  137. MODULE_DESCRIPTION("I2C driver for Dialog DA9052 PMIC");
  138. MODULE_LICENSE("GPL");