rn5t618.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * MFD core driver for Ricoh RN5T618 PMIC
  3. *
  4. * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * You should have received a copy of the GNU General Public License
  11. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. #include <linux/i2c.h>
  14. #include <linux/mfd/core.h>
  15. #include <linux/mfd/rn5t618.h>
  16. #include <linux/module.h>
  17. #include <linux/regmap.h>
  18. static const struct mfd_cell rn5t618_cells[] = {
  19. { .name = "rn5t618-regulator" },
  20. { .name = "rn5t618-wdt" },
  21. };
  22. static bool rn5t618_volatile_reg(struct device *dev, unsigned int reg)
  23. {
  24. switch (reg) {
  25. case RN5T618_WATCHDOGCNT:
  26. case RN5T618_DCIRQ:
  27. case RN5T618_ILIMDATAH ... RN5T618_AIN0DATAL:
  28. case RN5T618_IR_ADC1 ... RN5T618_IR_ADC3:
  29. case RN5T618_IR_GPR:
  30. case RN5T618_IR_GPF:
  31. case RN5T618_MON_IOIN:
  32. case RN5T618_INTMON:
  33. return true;
  34. default:
  35. return false;
  36. }
  37. }
  38. static const struct regmap_config rn5t618_regmap_config = {
  39. .reg_bits = 8,
  40. .val_bits = 8,
  41. .volatile_reg = rn5t618_volatile_reg,
  42. .max_register = RN5T618_MAX_REG,
  43. .cache_type = REGCACHE_RBTREE,
  44. };
  45. static struct rn5t618 *rn5t618_pm_power_off;
  46. static void rn5t618_power_off(void)
  47. {
  48. /* disable automatic repower-on */
  49. regmap_update_bits(rn5t618_pm_power_off->regmap, RN5T618_REPCNT,
  50. RN5T618_REPCNT_REPWRON, 0);
  51. /* start power-off sequence */
  52. regmap_update_bits(rn5t618_pm_power_off->regmap, RN5T618_SLPCNT,
  53. RN5T618_SLPCNT_SWPWROFF, RN5T618_SLPCNT_SWPWROFF);
  54. }
  55. static int rn5t618_i2c_probe(struct i2c_client *i2c,
  56. const struct i2c_device_id *id)
  57. {
  58. struct rn5t618 *priv;
  59. int ret;
  60. priv = devm_kzalloc(&i2c->dev, sizeof(*priv), GFP_KERNEL);
  61. if (!priv)
  62. return -ENOMEM;
  63. i2c_set_clientdata(i2c, priv);
  64. priv->regmap = devm_regmap_init_i2c(i2c, &rn5t618_regmap_config);
  65. if (IS_ERR(priv->regmap)) {
  66. ret = PTR_ERR(priv->regmap);
  67. dev_err(&i2c->dev, "regmap init failed: %d\n", ret);
  68. return ret;
  69. }
  70. ret = mfd_add_devices(&i2c->dev, -1, rn5t618_cells,
  71. ARRAY_SIZE(rn5t618_cells), NULL, 0, NULL);
  72. if (ret) {
  73. dev_err(&i2c->dev, "failed to add sub-devices: %d\n", ret);
  74. return ret;
  75. }
  76. if (!pm_power_off) {
  77. rn5t618_pm_power_off = priv;
  78. pm_power_off = rn5t618_power_off;
  79. }
  80. return 0;
  81. }
  82. static int rn5t618_i2c_remove(struct i2c_client *i2c)
  83. {
  84. struct rn5t618 *priv = i2c_get_clientdata(i2c);
  85. if (priv == rn5t618_pm_power_off) {
  86. rn5t618_pm_power_off = NULL;
  87. pm_power_off = NULL;
  88. }
  89. mfd_remove_devices(&i2c->dev);
  90. return 0;
  91. }
  92. static const struct of_device_id rn5t618_of_match[] = {
  93. { .compatible = "ricoh,rn5t618" },
  94. { }
  95. };
  96. MODULE_DEVICE_TABLE(of, rn5t618_of_match);
  97. static const struct i2c_device_id rn5t618_i2c_id[] = {
  98. { }
  99. };
  100. MODULE_DEVICE_TABLE(i2c, rn5t618_i2c_id);
  101. static struct i2c_driver rn5t618_i2c_driver = {
  102. .driver = {
  103. .name = "rn5t618",
  104. .of_match_table = of_match_ptr(rn5t618_of_match),
  105. },
  106. .probe = rn5t618_i2c_probe,
  107. .remove = rn5t618_i2c_remove,
  108. .id_table = rn5t618_i2c_id,
  109. };
  110. module_i2c_driver(rn5t618_i2c_driver);
  111. MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
  112. MODULE_DESCRIPTION("Ricoh RN5T618 MFD driver");
  113. MODULE_LICENSE("GPL v2");