max77686.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. { .name = "max77686-clk", },
  38. };
  39. static struct regmap_config max77686_regmap_config = {
  40. .reg_bits = 8,
  41. .val_bits = 8,
  42. };
  43. #ifdef CONFIG_OF
  44. static struct of_device_id max77686_pmic_dt_match[] = {
  45. {.compatible = "maxim,max77686", .data = NULL},
  46. {},
  47. };
  48. static struct max77686_platform_data *max77686_i2c_parse_dt_pdata(struct device
  49. *dev)
  50. {
  51. struct max77686_platform_data *pd;
  52. pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
  53. if (!pd) {
  54. dev_err(dev, "could not allocate memory for pdata\n");
  55. return NULL;
  56. }
  57. dev->platform_data = pd;
  58. return pd;
  59. }
  60. #else
  61. static struct max77686_platform_data *max77686_i2c_parse_dt_pdata(struct device
  62. *dev)
  63. {
  64. return 0;
  65. }
  66. #endif
  67. static int max77686_i2c_probe(struct i2c_client *i2c,
  68. const struct i2c_device_id *id)
  69. {
  70. struct max77686_dev *max77686 = NULL;
  71. struct max77686_platform_data *pdata = dev_get_platdata(&i2c->dev);
  72. unsigned int data;
  73. int ret = 0;
  74. if (i2c->dev.of_node)
  75. pdata = max77686_i2c_parse_dt_pdata(&i2c->dev);
  76. if (!pdata) {
  77. dev_err(&i2c->dev, "No platform data found.\n");
  78. return -EIO;
  79. }
  80. max77686 = devm_kzalloc(&i2c->dev,
  81. sizeof(struct max77686_dev), GFP_KERNEL);
  82. if (max77686 == NULL)
  83. return -ENOMEM;
  84. i2c_set_clientdata(i2c, max77686);
  85. max77686->dev = &i2c->dev;
  86. max77686->i2c = i2c;
  87. max77686->type = id->driver_data;
  88. max77686->wakeup = pdata->wakeup;
  89. max77686->irq_gpio = pdata->irq_gpio;
  90. max77686->irq = i2c->irq;
  91. max77686->regmap = regmap_init_i2c(i2c, &max77686_regmap_config);
  92. if (IS_ERR(max77686->regmap)) {
  93. ret = PTR_ERR(max77686->regmap);
  94. dev_err(max77686->dev, "Failed to allocate register map: %d\n",
  95. ret);
  96. return ret;
  97. }
  98. if (regmap_read(max77686->regmap,
  99. MAX77686_REG_DEVICE_ID, &data) < 0) {
  100. dev_err(max77686->dev,
  101. "device not found on this channel (this is not an error)\n");
  102. return -ENODEV;
  103. } else
  104. dev_info(max77686->dev, "device found\n");
  105. max77686->rtc = i2c_new_dummy(i2c->adapter, I2C_ADDR_RTC);
  106. i2c_set_clientdata(max77686->rtc, max77686);
  107. max77686_irq_init(max77686);
  108. ret = mfd_add_devices(max77686->dev, -1, max77686_devs,
  109. ARRAY_SIZE(max77686_devs), NULL, 0, NULL);
  110. if (ret < 0) {
  111. mfd_remove_devices(max77686->dev);
  112. i2c_unregister_device(max77686->rtc);
  113. }
  114. return ret;
  115. }
  116. static int max77686_i2c_remove(struct i2c_client *i2c)
  117. {
  118. struct max77686_dev *max77686 = i2c_get_clientdata(i2c);
  119. mfd_remove_devices(max77686->dev);
  120. i2c_unregister_device(max77686->rtc);
  121. return 0;
  122. }
  123. static const struct i2c_device_id max77686_i2c_id[] = {
  124. { "max77686", TYPE_MAX77686 },
  125. { }
  126. };
  127. MODULE_DEVICE_TABLE(i2c, max77686_i2c_id);
  128. static struct i2c_driver max77686_i2c_driver = {
  129. .driver = {
  130. .name = "max77686",
  131. .owner = THIS_MODULE,
  132. .of_match_table = of_match_ptr(max77686_pmic_dt_match),
  133. },
  134. .probe = max77686_i2c_probe,
  135. .remove = max77686_i2c_remove,
  136. .id_table = max77686_i2c_id,
  137. };
  138. static int __init max77686_i2c_init(void)
  139. {
  140. return i2c_add_driver(&max77686_i2c_driver);
  141. }
  142. /* init early so consumer devices can complete system boot */
  143. subsys_initcall(max77686_i2c_init);
  144. static void __exit max77686_i2c_exit(void)
  145. {
  146. i2c_del_driver(&max77686_i2c_driver);
  147. }
  148. module_exit(max77686_i2c_exit);
  149. MODULE_DESCRIPTION("MAXIM 77686 multi-function core driver");
  150. MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>");
  151. MODULE_LICENSE("GPL");