max77686.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * max77686.c - mfd core driver for the Maxim 77686
  3. *
  4. * Copyright (C) 2012 Samsung Electronics
  5. * Chiwoong Byun <woong.byun@smasung.com>
  6. * Jonghwa Lee <jonghwa3.lee@samsung.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. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. * This driver is based on max8997.c
  23. */
  24. #include <linux/export.h>
  25. #include <linux/slab.h>
  26. #include <linux/i2c.h>
  27. #include <linux/pm_runtime.h>
  28. #include <linux/module.h>
  29. #include <linux/mfd/core.h>
  30. #include <linux/mfd/max77686.h>
  31. #include <linux/mfd/max77686-private.h>
  32. #include <linux/err.h>
  33. #define I2C_ADDR_RTC (0x0C >> 1)
  34. static struct mfd_cell max77686_devs[] = {
  35. { .name = "max77686-pmic", },
  36. { .name = "max77686-rtc", },
  37. };
  38. static struct regmap_config max77686_regmap_config = {
  39. .reg_bits = 8,
  40. .val_bits = 8,
  41. };
  42. static int max77686_i2c_probe(struct i2c_client *i2c,
  43. const struct i2c_device_id *id)
  44. {
  45. struct max77686_dev *max77686;
  46. struct max77686_platform_data *pdata = i2c->dev.platform_data;
  47. unsigned int data;
  48. int ret = 0;
  49. max77686 = kzalloc(sizeof(struct max77686_dev), GFP_KERNEL);
  50. if (max77686 == NULL)
  51. return -ENOMEM;
  52. max77686->regmap = regmap_init_i2c(i2c, &max77686_regmap_config);
  53. if (IS_ERR(max77686->regmap)) {
  54. ret = PTR_ERR(max77686->regmap);
  55. dev_err(max77686->dev, "Failed to allocate register map: %d\n",
  56. ret);
  57. kfree(max77686);
  58. return ret;
  59. }
  60. i2c_set_clientdata(i2c, max77686);
  61. max77686->dev = &i2c->dev;
  62. max77686->i2c = i2c;
  63. max77686->type = id->driver_data;
  64. if (!pdata) {
  65. ret = -EIO;
  66. goto err;
  67. }
  68. max77686->wakeup = pdata->wakeup;
  69. max77686->irq_gpio = pdata->irq_gpio;
  70. if (regmap_read(max77686->regmap,
  71. MAX77686_REG_DEVICE_ID, &data) < 0) {
  72. dev_err(max77686->dev,
  73. "device not found on this channel (this is not an error)\n");
  74. ret = -ENODEV;
  75. goto err;
  76. } else
  77. dev_info(max77686->dev, "device found\n");
  78. max77686->rtc = i2c_new_dummy(i2c->adapter, I2C_ADDR_RTC);
  79. i2c_set_clientdata(max77686->rtc, max77686);
  80. max77686_irq_init(max77686);
  81. ret = mfd_add_devices(max77686->dev, -1, max77686_devs,
  82. ARRAY_SIZE(max77686_devs), NULL, 0);
  83. if (ret < 0)
  84. goto err_mfd;
  85. return ret;
  86. err_mfd:
  87. mfd_remove_devices(max77686->dev);
  88. i2c_unregister_device(max77686->rtc);
  89. err:
  90. kfree(max77686);
  91. return ret;
  92. }
  93. static int max77686_i2c_remove(struct i2c_client *i2c)
  94. {
  95. struct max77686_dev *max77686 = i2c_get_clientdata(i2c);
  96. mfd_remove_devices(max77686->dev);
  97. i2c_unregister_device(max77686->rtc);
  98. kfree(max77686);
  99. return 0;
  100. }
  101. static const struct i2c_device_id max77686_i2c_id[] = {
  102. { "max77686", TYPE_MAX77686 },
  103. { }
  104. };
  105. MODULE_DEVICE_TABLE(i2c, max77686_i2c_id);
  106. static struct i2c_driver max77686_i2c_driver = {
  107. .driver = {
  108. .name = "max77686",
  109. .owner = THIS_MODULE,
  110. },
  111. .probe = max77686_i2c_probe,
  112. .remove = max77686_i2c_remove,
  113. .id_table = max77686_i2c_id,
  114. };
  115. static int __init max77686_i2c_init(void)
  116. {
  117. return i2c_add_driver(&max77686_i2c_driver);
  118. }
  119. /* init early so consumer devices can complete system boot */
  120. subsys_initcall(max77686_i2c_init);
  121. static void __exit max77686_i2c_exit(void)
  122. {
  123. i2c_del_driver(&max77686_i2c_driver);
  124. }
  125. module_exit(max77686_i2c_exit);
  126. MODULE_DESCRIPTION("MAXIM 77686 multi-function core driver");
  127. MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>");
  128. MODULE_LICENSE("GPL");