blob: 4d81ed285fa2b02061ce0ecc71ca46251e54e097 [file] [log] [blame]
Chanwoo Choi83871c02012-05-14 22:50:39 +02001/*
2 * max77693.c - mfd core driver for the MAX 77693
3 *
4 * Copyright (C) 2012 Samsung Electronics
5 * SangYoung Son <hello.son@smasung.com>
6 *
7 * This program is not provided / owned by Maxim Integrated Products.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * This driver is based on max8997.c
24 */
25
26#include <linux/module.h>
27#include <linux/slab.h>
28#include <linux/i2c.h>
29#include <linux/err.h>
30#include <linux/interrupt.h>
31#include <linux/pm_runtime.h>
32#include <linux/mutex.h>
33#include <linux/mfd/core.h>
34#include <linux/mfd/max77693.h>
35#include <linux/mfd/max77693-private.h>
36#include <linux/regulator/machine.h>
37#include <linux/regmap.h>
38
39#define I2C_ADDR_PMIC (0xCC >> 1) /* Charger, Flash LED */
40#define I2C_ADDR_MUIC (0x4A >> 1)
41#define I2C_ADDR_HAPTIC (0x90 >> 1)
42
43static struct mfd_cell max77693_devs[] = {
44 { .name = "max77693-pmic", },
45 { .name = "max77693-charger", },
46 { .name = "max77693-flash", },
47 { .name = "max77693-muic", },
48 { .name = "max77693-haptic", },
49};
50
51int max77693_read_reg(struct regmap *map, u8 reg, u8 *dest)
52{
53 unsigned int val;
54 int ret;
55
56 ret = regmap_read(map, reg, &val);
57 *dest = val;
58
59 return ret;
60}
61EXPORT_SYMBOL_GPL(max77693_read_reg);
62
63int max77693_bulk_read(struct regmap *map, u8 reg, int count, u8 *buf)
64{
65 int ret;
66
67 ret = regmap_bulk_read(map, reg, buf, count);
68
69 return ret;
70}
71EXPORT_SYMBOL_GPL(max77693_bulk_read);
72
73int max77693_write_reg(struct regmap *map, u8 reg, u8 value)
74{
75 int ret;
76
77 ret = regmap_write(map, reg, value);
78
79 return ret;
80}
81EXPORT_SYMBOL_GPL(max77693_write_reg);
82
83int max77693_bulk_write(struct regmap *map, u8 reg, int count, u8 *buf)
84{
85 int ret;
86
87 ret = regmap_bulk_write(map, reg, buf, count);
88
89 return ret;
90}
91EXPORT_SYMBOL_GPL(max77693_bulk_write);
92
93int max77693_update_reg(struct regmap *map, u8 reg, u8 val, u8 mask)
94{
95 int ret;
96
97 ret = regmap_update_bits(map, reg, mask, val);
98
99 return ret;
100}
101EXPORT_SYMBOL_GPL(max77693_update_reg);
102
103static const struct regmap_config max77693_regmap_config = {
104 .reg_bits = 8,
105 .val_bits = 8,
106 .max_register = MAX77693_PMIC_REG_END,
107};
108
109static int max77693_i2c_probe(struct i2c_client *i2c,
110 const struct i2c_device_id *id)
111{
112 struct max77693_dev *max77693;
Chanwoo Choi83871c02012-05-14 22:50:39 +0200113 u8 reg_data;
114 int ret = 0;
115
116 max77693 = devm_kzalloc(&i2c->dev,
117 sizeof(struct max77693_dev), GFP_KERNEL);
118 if (max77693 == NULL)
119 return -ENOMEM;
120
Chanwoo Choi83871c02012-05-14 22:50:39 +0200121 i2c_set_clientdata(i2c, max77693);
122 max77693->dev = &i2c->dev;
123 max77693->i2c = i2c;
124 max77693->irq = i2c->irq;
125 max77693->type = id->driver_data;
126
Axel Lin2429d862012-12-25 00:28:36 +0800127 max77693->regmap = devm_regmap_init_i2c(i2c, &max77693_regmap_config);
128 if (IS_ERR(max77693->regmap)) {
129 ret = PTR_ERR(max77693->regmap);
130 dev_err(max77693->dev, "failed to allocate register map: %d\n",
131 ret);
132 return ret;
133 }
Chanwoo Choi83871c02012-05-14 22:50:39 +0200134
Axel Lin2429d862012-12-25 00:28:36 +0800135 ret = max77693_read_reg(max77693->regmap, MAX77693_PMIC_REG_PMIC_ID2,
136 &reg_data);
137 if (ret < 0) {
Chanwoo Choi83871c02012-05-14 22:50:39 +0200138 dev_err(max77693->dev, "device not found on this channel\n");
Axel Lin2429d862012-12-25 00:28:36 +0800139 return ret;
Chanwoo Choi83871c02012-05-14 22:50:39 +0200140 } else
141 dev_info(max77693->dev, "device ID: 0x%x\n", reg_data);
142
143 max77693->muic = i2c_new_dummy(i2c->adapter, I2C_ADDR_MUIC);
144 i2c_set_clientdata(max77693->muic, max77693);
145
146 max77693->haptic = i2c_new_dummy(i2c->adapter, I2C_ADDR_HAPTIC);
147 i2c_set_clientdata(max77693->haptic, max77693);
148
Chanwoo Choib186b122012-08-21 15:16:23 +0900149 /*
150 * Initialize register map for MUIC device because use regmap-muic
151 * instance of MUIC device when irq of max77693 is initialized
152 * before call max77693-muic probe() function.
153 */
154 max77693->regmap_muic = devm_regmap_init_i2c(max77693->muic,
155 &max77693_regmap_config);
156 if (IS_ERR(max77693->regmap_muic)) {
157 ret = PTR_ERR(max77693->regmap_muic);
158 dev_err(max77693->dev,
159 "failed to allocate register map: %d\n", ret);
Axel Lin2429d862012-12-25 00:28:36 +0800160 goto err_regmap_muic;
Chanwoo Choib186b122012-08-21 15:16:23 +0900161 }
162
Chanwoo Choi6592ebb2012-05-14 22:54:20 +0200163 ret = max77693_irq_init(max77693);
164 if (ret < 0)
Axel Linff2b7ac2012-06-08 08:35:37 +0800165 goto err_irq;
Chanwoo Choi6592ebb2012-05-14 22:54:20 +0200166
Chanwoo Choi83871c02012-05-14 22:50:39 +0200167 pm_runtime_set_active(max77693->dev);
168
169 ret = mfd_add_devices(max77693->dev, -1, max77693_devs,
Mark Brown0848c942012-09-11 15:16:36 +0800170 ARRAY_SIZE(max77693_devs), NULL, 0, NULL);
Chanwoo Choi83871c02012-05-14 22:50:39 +0200171 if (ret < 0)
172 goto err_mfd;
173
174 return ret;
175
176err_mfd:
Axel Linff2b7ac2012-06-08 08:35:37 +0800177 max77693_irq_exit(max77693);
178err_irq:
Axel Lin2429d862012-12-25 00:28:36 +0800179err_regmap_muic:
Chanwoo Choi83871c02012-05-14 22:50:39 +0200180 i2c_unregister_device(max77693->muic);
181 i2c_unregister_device(max77693->haptic);
Chanwoo Choi83871c02012-05-14 22:50:39 +0200182 return ret;
183}
184
185static int max77693_i2c_remove(struct i2c_client *i2c)
186{
187 struct max77693_dev *max77693 = i2c_get_clientdata(i2c);
188
189 mfd_remove_devices(max77693->dev);
Axel Linff2b7ac2012-06-08 08:35:37 +0800190 max77693_irq_exit(max77693);
Chanwoo Choi83871c02012-05-14 22:50:39 +0200191 i2c_unregister_device(max77693->muic);
192 i2c_unregister_device(max77693->haptic);
193
194 return 0;
195}
196
197static const struct i2c_device_id max77693_i2c_id[] = {
198 { "max77693", TYPE_MAX77693 },
199 { }
200};
201MODULE_DEVICE_TABLE(i2c, max77693_i2c_id);
202
Chanwoo Choi6592ebb2012-05-14 22:54:20 +0200203static int max77693_suspend(struct device *dev)
204{
205 struct i2c_client *i2c = container_of(dev, struct i2c_client, dev);
206 struct max77693_dev *max77693 = i2c_get_clientdata(i2c);
207
208 if (device_may_wakeup(dev))
209 irq_set_irq_wake(max77693->irq, 1);
210 return 0;
211}
212
213static int max77693_resume(struct device *dev)
214{
215 struct i2c_client *i2c = container_of(dev, struct i2c_client, dev);
216 struct max77693_dev *max77693 = i2c_get_clientdata(i2c);
217
218 if (device_may_wakeup(dev))
219 irq_set_irq_wake(max77693->irq, 0);
220 return max77693_irq_resume(max77693);
221}
222
Mark Brown12477a32012-06-05 16:15:59 +0100223static const struct dev_pm_ops max77693_pm = {
Chanwoo Choi6592ebb2012-05-14 22:54:20 +0200224 .suspend = max77693_suspend,
225 .resume = max77693_resume,
226};
227
Andrzej Hajda46571852013-09-27 09:27:46 +0200228#ifdef CONFIG_OF
229static struct of_device_id max77693_dt_match[] = {
230 { .compatible = "maxim,max77693" },
231 {},
232};
233#endif
234
Chanwoo Choi83871c02012-05-14 22:50:39 +0200235static struct i2c_driver max77693_i2c_driver = {
236 .driver = {
237 .name = "max77693",
238 .owner = THIS_MODULE,
Chanwoo Choi6592ebb2012-05-14 22:54:20 +0200239 .pm = &max77693_pm,
Andrzej Hajda46571852013-09-27 09:27:46 +0200240 .of_match_table = of_match_ptr(max77693_dt_match),
Chanwoo Choi83871c02012-05-14 22:50:39 +0200241 },
242 .probe = max77693_i2c_probe,
243 .remove = max77693_i2c_remove,
244 .id_table = max77693_i2c_id,
245};
246
247static int __init max77693_i2c_init(void)
248{
249 return i2c_add_driver(&max77693_i2c_driver);
250}
251/* init early so consumer devices can complete system boot */
252subsys_initcall(max77693_i2c_init);
253
254static void __exit max77693_i2c_exit(void)
255{
256 i2c_del_driver(&max77693_i2c_driver);
257}
258module_exit(max77693_i2c_exit);
259
260MODULE_DESCRIPTION("MAXIM 77693 multi-function core driver");
261MODULE_AUTHOR("SangYoung, Son <hello.son@samsung.com>");
262MODULE_LICENSE("GPL");