1 // SPDX-License-Identifier: GPL-2.0+
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd
4 // http://www.samsung.com
6 #include <linux/module.h>
7 #include <linux/moduleparam.h>
8 #include <linux/init.h>
10 #include <linux/slab.h>
11 #include <linux/i2c.h>
13 #include <linux/of_device.h>
14 #include <linux/of_irq.h>
15 #include <linux/interrupt.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/mutex.h>
18 #include <linux/mfd/core.h>
19 #include <linux/mfd/samsung/core.h>
20 #include <linux/mfd/samsung/irq.h>
21 #include <linux/mfd/samsung/s2mpa01.h>
22 #include <linux/mfd/samsung/s2mps11.h>
23 #include <linux/mfd/samsung/s2mps13.h>
24 #include <linux/mfd/samsung/s2mps14.h>
25 #include <linux/mfd/samsung/s2mps15.h>
26 #include <linux/mfd/samsung/s2mpu02.h>
27 #include <linux/mfd/samsung/s5m8763.h>
28 #include <linux/mfd/samsung/s5m8767.h>
29 #include <linux/regmap.h>
31 static const struct mfd_cell s5m8751_devs[] = {
32 { .name = "s5m8751-pmic", },
33 { .name = "s5m-charger", },
34 { .name = "s5m8751-codec", },
37 static const struct mfd_cell s5m8763_devs[] = {
38 { .name = "s5m8763-pmic", },
39 { .name = "s5m-rtc", },
40 { .name = "s5m-charger", },
43 static const struct mfd_cell s5m8767_devs[] = {
44 { .name = "s5m8767-pmic", },
45 { .name = "s5m-rtc", },
47 .name = "s5m8767-clk",
48 .of_compatible = "samsung,s5m8767-clk",
52 static const struct mfd_cell s2mps11_devs[] = {
53 { .name = "s2mps11-regulator", },
54 { .name = "s2mps14-rtc", },
56 .name = "s2mps11-clk",
57 .of_compatible = "samsung,s2mps11-clk",
61 static const struct mfd_cell s2mps13_devs[] = {
62 { .name = "s2mps13-regulator", },
63 { .name = "s2mps13-rtc", },
65 .name = "s2mps13-clk",
66 .of_compatible = "samsung,s2mps13-clk",
70 static const struct mfd_cell s2mps14_devs[] = {
71 { .name = "s2mps14-regulator", },
72 { .name = "s2mps14-rtc", },
74 .name = "s2mps14-clk",
75 .of_compatible = "samsung,s2mps14-clk",
79 static const struct mfd_cell s2mps15_devs[] = {
80 { .name = "s2mps15-regulator", },
81 { .name = "s2mps15-rtc", },
83 .name = "s2mps13-clk",
84 .of_compatible = "samsung,s2mps13-clk",
88 static const struct mfd_cell s2mpa01_devs[] = {
89 { .name = "s2mpa01-pmic", },
90 { .name = "s2mps14-rtc", },
93 static const struct mfd_cell s2mpu02_devs[] = {
94 { .name = "s2mpu02-regulator", },
97 static const struct of_device_id sec_dt_match[] = {
99 .compatible = "samsung,s5m8767-pmic",
100 .data = (void *)S5M8767X,
102 .compatible = "samsung,s2mps11-pmic",
103 .data = (void *)S2MPS11X,
105 .compatible = "samsung,s2mps13-pmic",
106 .data = (void *)S2MPS13X,
108 .compatible = "samsung,s2mps14-pmic",
109 .data = (void *)S2MPS14X,
111 .compatible = "samsung,s2mps15-pmic",
112 .data = (void *)S2MPS15X,
114 .compatible = "samsung,s2mpa01-pmic",
115 .data = (void *)S2MPA01,
117 .compatible = "samsung,s2mpu02-pmic",
118 .data = (void *)S2MPU02,
123 MODULE_DEVICE_TABLE(of, sec_dt_match);
125 static bool s2mpa01_volatile(struct device *dev, unsigned int reg)
128 case S2MPA01_REG_INT1M:
129 case S2MPA01_REG_INT2M:
130 case S2MPA01_REG_INT3M:
137 static bool s2mps11_volatile(struct device *dev, unsigned int reg)
140 case S2MPS11_REG_INT1M:
141 case S2MPS11_REG_INT2M:
142 case S2MPS11_REG_INT3M:
149 static bool s2mpu02_volatile(struct device *dev, unsigned int reg)
152 case S2MPU02_REG_INT1M:
153 case S2MPU02_REG_INT2M:
154 case S2MPU02_REG_INT3M:
161 static bool s5m8763_volatile(struct device *dev, unsigned int reg)
164 case S5M8763_REG_IRQM1:
165 case S5M8763_REG_IRQM2:
166 case S5M8763_REG_IRQM3:
167 case S5M8763_REG_IRQM4:
174 static const struct regmap_config sec_regmap_config = {
179 static const struct regmap_config s2mpa01_regmap_config = {
183 .max_register = S2MPA01_REG_LDO_OVCB4,
184 .volatile_reg = s2mpa01_volatile,
185 .cache_type = REGCACHE_FLAT,
188 static const struct regmap_config s2mps11_regmap_config = {
192 .max_register = S2MPS11_REG_L38CTRL,
193 .volatile_reg = s2mps11_volatile,
194 .cache_type = REGCACHE_FLAT,
197 static const struct regmap_config s2mps13_regmap_config = {
201 .max_register = S2MPS13_REG_LDODSCH5,
202 .volatile_reg = s2mps11_volatile,
203 .cache_type = REGCACHE_FLAT,
206 static const struct regmap_config s2mps14_regmap_config = {
210 .max_register = S2MPS14_REG_LDODSCH3,
211 .volatile_reg = s2mps11_volatile,
212 .cache_type = REGCACHE_FLAT,
215 static const struct regmap_config s2mps15_regmap_config = {
219 .max_register = S2MPS15_REG_LDODSCH4,
220 .volatile_reg = s2mps11_volatile,
221 .cache_type = REGCACHE_FLAT,
224 static const struct regmap_config s2mpu02_regmap_config = {
228 .max_register = S2MPU02_REG_DVSDATA,
229 .volatile_reg = s2mpu02_volatile,
230 .cache_type = REGCACHE_FLAT,
233 static const struct regmap_config s5m8763_regmap_config = {
237 .max_register = S5M8763_REG_LBCNFG2,
238 .volatile_reg = s5m8763_volatile,
239 .cache_type = REGCACHE_FLAT,
242 static const struct regmap_config s5m8767_regmap_config = {
246 .max_register = S5M8767_REG_LDO28CTRL,
247 .volatile_reg = s2mps11_volatile,
248 .cache_type = REGCACHE_FLAT,
251 static void sec_pmic_dump_rev(struct sec_pmic_dev *sec_pmic)
255 /* For each device type, the REG_ID is always the first register */
256 if (!regmap_read(sec_pmic->regmap_pmic, S2MPS11_REG_ID, &val))
257 dev_dbg(sec_pmic->dev, "Revision: 0x%x\n", val);
260 static void sec_pmic_configure(struct sec_pmic_dev *sec_pmic)
264 if (sec_pmic->device_type != S2MPS13X)
267 if (sec_pmic->pdata->disable_wrstbi) {
269 * If WRSTBI pin is pulled down this feature must be disabled
270 * because each Suspend to RAM will trigger buck voltage reset
273 err = regmap_update_bits(sec_pmic->regmap_pmic,
275 S2MPS13_REG_WRSTBI_MASK, 0x0);
277 dev_warn(sec_pmic->dev,
278 "Cannot initialize WRSTBI config: %d\n",
284 * Only the common platform data elements for s5m8767 are parsed here from the
285 * device tree. Other sub-modules of s5m8767 such as pmic, rtc , charger and
286 * others have to parse their own platform data elements from device tree.
288 * The s5m8767 platform data structure is instantiated here and the drivers for
289 * the sub-modules need not instantiate another instance while parsing their
292 static struct sec_platform_data *
293 sec_pmic_i2c_parse_dt_pdata(struct device *dev)
295 struct sec_platform_data *pd;
297 pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
299 return ERR_PTR(-ENOMEM);
301 pd->manual_poweroff = of_property_read_bool(dev->of_node,
302 "samsung,s2mps11-acokb-ground");
303 pd->disable_wrstbi = of_property_read_bool(dev->of_node,
304 "samsung,s2mps11-wrstbi-ground");
308 static int sec_pmic_probe(struct i2c_client *i2c,
309 const struct i2c_device_id *id)
311 const struct regmap_config *regmap;
312 struct sec_platform_data *pdata;
313 const struct mfd_cell *sec_devs;
314 struct sec_pmic_dev *sec_pmic;
315 int ret, num_sec_devs;
317 sec_pmic = devm_kzalloc(&i2c->dev, sizeof(struct sec_pmic_dev),
319 if (sec_pmic == NULL)
322 i2c_set_clientdata(i2c, sec_pmic);
323 sec_pmic->dev = &i2c->dev;
325 sec_pmic->irq = i2c->irq;
327 pdata = sec_pmic_i2c_parse_dt_pdata(sec_pmic->dev);
329 ret = PTR_ERR(pdata);
333 sec_pmic->device_type = (unsigned long)of_device_get_match_data(sec_pmic->dev);
334 sec_pmic->pdata = pdata;
336 switch (sec_pmic->device_type) {
338 regmap = &s2mpa01_regmap_config;
341 regmap = &s2mps11_regmap_config;
344 regmap = &s2mps13_regmap_config;
347 regmap = &s2mps14_regmap_config;
350 regmap = &s2mps15_regmap_config;
353 regmap = &s5m8763_regmap_config;
356 regmap = &s5m8767_regmap_config;
359 regmap = &s2mpu02_regmap_config;
362 regmap = &sec_regmap_config;
366 sec_pmic->regmap_pmic = devm_regmap_init_i2c(i2c, regmap);
367 if (IS_ERR(sec_pmic->regmap_pmic)) {
368 ret = PTR_ERR(sec_pmic->regmap_pmic);
369 dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
374 sec_irq_init(sec_pmic);
376 pm_runtime_set_active(sec_pmic->dev);
378 switch (sec_pmic->device_type) {
380 sec_devs = s5m8751_devs;
381 num_sec_devs = ARRAY_SIZE(s5m8751_devs);
384 sec_devs = s5m8763_devs;
385 num_sec_devs = ARRAY_SIZE(s5m8763_devs);
388 sec_devs = s5m8767_devs;
389 num_sec_devs = ARRAY_SIZE(s5m8767_devs);
392 sec_devs = s2mpa01_devs;
393 num_sec_devs = ARRAY_SIZE(s2mpa01_devs);
396 sec_devs = s2mps11_devs;
397 num_sec_devs = ARRAY_SIZE(s2mps11_devs);
400 sec_devs = s2mps13_devs;
401 num_sec_devs = ARRAY_SIZE(s2mps13_devs);
404 sec_devs = s2mps14_devs;
405 num_sec_devs = ARRAY_SIZE(s2mps14_devs);
408 sec_devs = s2mps15_devs;
409 num_sec_devs = ARRAY_SIZE(s2mps15_devs);
412 sec_devs = s2mpu02_devs;
413 num_sec_devs = ARRAY_SIZE(s2mpu02_devs);
416 dev_err(&i2c->dev, "Unsupported device type (%lu)\n",
417 sec_pmic->device_type);
420 ret = devm_mfd_add_devices(sec_pmic->dev, -1, sec_devs, num_sec_devs,
425 sec_pmic_configure(sec_pmic);
426 sec_pmic_dump_rev(sec_pmic);
431 static void sec_pmic_shutdown(struct i2c_client *i2c)
433 struct sec_pmic_dev *sec_pmic = i2c_get_clientdata(i2c);
434 unsigned int reg, mask;
436 if (!sec_pmic->pdata->manual_poweroff)
439 switch (sec_pmic->device_type) {
441 reg = S2MPS11_REG_CTRL1;
442 mask = S2MPS11_CTRL1_PWRHOLD_MASK;
446 * Currently only one board with S2MPS11 needs this, so just
449 dev_warn(sec_pmic->dev,
450 "Unsupported device %lu for manual power off\n",
451 sec_pmic->device_type);
455 regmap_update_bits(sec_pmic->regmap_pmic, reg, mask, 0);
458 #ifdef CONFIG_PM_SLEEP
459 static int sec_pmic_suspend(struct device *dev)
461 struct i2c_client *i2c = to_i2c_client(dev);
462 struct sec_pmic_dev *sec_pmic = i2c_get_clientdata(i2c);
464 if (device_may_wakeup(dev))
465 enable_irq_wake(sec_pmic->irq);
467 * PMIC IRQ must be disabled during suspend for RTC alarm
469 * When device is woken up from suspend, an
470 * interrupt occurs before resuming I2C bus controller.
471 * The interrupt is handled by regmap_irq_thread which tries
472 * to read RTC registers. This read fails (I2C is still
473 * suspended) and RTC Alarm interrupt is disabled.
475 disable_irq(sec_pmic->irq);
480 static int sec_pmic_resume(struct device *dev)
482 struct i2c_client *i2c = to_i2c_client(dev);
483 struct sec_pmic_dev *sec_pmic = i2c_get_clientdata(i2c);
485 if (device_may_wakeup(dev))
486 disable_irq_wake(sec_pmic->irq);
487 enable_irq(sec_pmic->irq);
491 #endif /* CONFIG_PM_SLEEP */
493 static SIMPLE_DEV_PM_OPS(sec_pmic_pm_ops, sec_pmic_suspend, sec_pmic_resume);
495 static struct i2c_driver sec_pmic_driver = {
498 .pm = &sec_pmic_pm_ops,
499 .of_match_table = sec_dt_match,
501 .probe = sec_pmic_probe,
502 .shutdown = sec_pmic_shutdown,
504 module_i2c_driver(sec_pmic_driver);
506 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
507 MODULE_DESCRIPTION("Core support for the S5M MFD");
508 MODULE_LICENSE("GPL");