4 * Copyright (c) 2012 Samsung Electronics Co., Ltd
5 * http://www.samsung.com
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/i2c.h>
21 #include <linux/of_irq.h>
22 #include <linux/interrupt.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/mutex.h>
25 #include <linux/mfd/core.h>
26 #include <linux/mfd/samsung/core.h>
27 #include <linux/mfd/samsung/irq.h>
28 #include <linux/mfd/samsung/s2mpa01.h>
29 #include <linux/mfd/samsung/s2mps11.h>
30 #include <linux/mfd/samsung/s2mps13.h>
31 #include <linux/mfd/samsung/s2mps14.h>
32 #include <linux/mfd/samsung/s2mps15.h>
33 #include <linux/mfd/samsung/s2mpu02.h>
34 #include <linux/mfd/samsung/s5m8763.h>
35 #include <linux/mfd/samsung/s5m8767.h>
36 #include <linux/regmap.h>
38 static const struct mfd_cell s5m8751_devs
[] = {
40 .name
= "s5m8751-pmic",
42 .name
= "s5m-charger",
44 .name
= "s5m8751-codec",
48 static const struct mfd_cell s5m8763_devs
[] = {
50 .name
= "s5m8763-pmic",
54 .name
= "s5m-charger",
58 static const struct mfd_cell s5m8767_devs
[] = {
60 .name
= "s5m8767-pmic",
64 .name
= "s5m8767-clk",
65 .of_compatible
= "samsung,s5m8767-clk",
69 static const struct mfd_cell s2mps11_devs
[] = {
71 .name
= "s2mps11-regulator",
73 .name
= "s2mps14-rtc",
75 .name
= "s2mps11-clk",
76 .of_compatible
= "samsung,s2mps11-clk",
80 static const struct mfd_cell s2mps13_devs
[] = {
81 { .name
= "s2mps13-regulator", },
82 { .name
= "s2mps13-rtc", },
84 .name
= "s2mps13-clk",
85 .of_compatible
= "samsung,s2mps13-clk",
89 static const struct mfd_cell s2mps14_devs
[] = {
91 .name
= "s2mps14-regulator",
93 .name
= "s2mps14-rtc",
95 .name
= "s2mps14-clk",
96 .of_compatible
= "samsung,s2mps14-clk",
100 static const struct mfd_cell s2mps15_devs
[] = {
102 .name
= "s2mps15-regulator",
104 .name
= "s2mps15-rtc",
106 .name
= "s2mps13-clk",
107 .of_compatible
= "samsung,s2mps13-clk",
111 static const struct mfd_cell s2mpa01_devs
[] = {
113 .name
= "s2mpa01-pmic",
117 static const struct mfd_cell s2mpu02_devs
[] = {
119 .name
= "s2mpu02-regulator",
124 static const struct of_device_id sec_dt_match
[] = {
125 { .compatible
= "samsung,s5m8767-pmic",
126 .data
= (void *)S5M8767X
,
128 .compatible
= "samsung,s2mps11-pmic",
129 .data
= (void *)S2MPS11X
,
131 .compatible
= "samsung,s2mps13-pmic",
132 .data
= (void *)S2MPS13X
,
134 .compatible
= "samsung,s2mps14-pmic",
135 .data
= (void *)S2MPS14X
,
137 .compatible
= "samsung,s2mps15-pmic",
138 .data
= (void *)S2MPS15X
,
140 .compatible
= "samsung,s2mpa01-pmic",
141 .data
= (void *)S2MPA01
,
143 .compatible
= "samsung,s2mpu02-pmic",
144 .data
= (void *)S2MPU02
,
151 static bool s2mpa01_volatile(struct device
*dev
, unsigned int reg
)
154 case S2MPA01_REG_INT1M
:
155 case S2MPA01_REG_INT2M
:
156 case S2MPA01_REG_INT3M
:
163 static bool s2mps11_volatile(struct device
*dev
, unsigned int reg
)
166 case S2MPS11_REG_INT1M
:
167 case S2MPS11_REG_INT2M
:
168 case S2MPS11_REG_INT3M
:
175 static bool s2mpu02_volatile(struct device
*dev
, unsigned int reg
)
178 case S2MPU02_REG_INT1M
:
179 case S2MPU02_REG_INT2M
:
180 case S2MPU02_REG_INT3M
:
187 static bool s5m8763_volatile(struct device
*dev
, unsigned int reg
)
190 case S5M8763_REG_IRQM1
:
191 case S5M8763_REG_IRQM2
:
192 case S5M8763_REG_IRQM3
:
193 case S5M8763_REG_IRQM4
:
200 static const struct regmap_config sec_regmap_config
= {
205 static const struct regmap_config s2mpa01_regmap_config
= {
209 .max_register
= S2MPA01_REG_LDO_OVCB4
,
210 .volatile_reg
= s2mpa01_volatile
,
211 .cache_type
= REGCACHE_FLAT
,
214 static const struct regmap_config s2mps11_regmap_config
= {
218 .max_register
= S2MPS11_REG_L38CTRL
,
219 .volatile_reg
= s2mps11_volatile
,
220 .cache_type
= REGCACHE_FLAT
,
223 static const struct regmap_config s2mps13_regmap_config
= {
227 .max_register
= S2MPS13_REG_LDODSCH5
,
228 .volatile_reg
= s2mps11_volatile
,
229 .cache_type
= REGCACHE_FLAT
,
232 static const struct regmap_config s2mps14_regmap_config
= {
236 .max_register
= S2MPS14_REG_LDODSCH3
,
237 .volatile_reg
= s2mps11_volatile
,
238 .cache_type
= REGCACHE_FLAT
,
241 static const struct regmap_config s2mps15_regmap_config
= {
245 .max_register
= S2MPS15_REG_LDODSCH4
,
246 .volatile_reg
= s2mps11_volatile
,
247 .cache_type
= REGCACHE_FLAT
,
250 static const struct regmap_config s2mpu02_regmap_config
= {
254 .max_register
= S2MPU02_REG_DVSDATA
,
255 .volatile_reg
= s2mpu02_volatile
,
256 .cache_type
= REGCACHE_FLAT
,
259 static const struct regmap_config s5m8763_regmap_config
= {
263 .max_register
= S5M8763_REG_LBCNFG2
,
264 .volatile_reg
= s5m8763_volatile
,
265 .cache_type
= REGCACHE_FLAT
,
268 static const struct regmap_config s5m8767_regmap_config
= {
272 .max_register
= S5M8767_REG_LDO28CTRL
,
273 .volatile_reg
= s2mps11_volatile
,
274 .cache_type
= REGCACHE_FLAT
,
277 static void sec_pmic_dump_rev(struct sec_pmic_dev
*sec_pmic
)
281 /* For each device type, the REG_ID is always the first register */
282 if (!regmap_read(sec_pmic
->regmap_pmic
, S2MPS11_REG_ID
, &val
))
283 dev_dbg(sec_pmic
->dev
, "Revision: 0x%x\n", val
);
286 static void sec_pmic_configure(struct sec_pmic_dev
*sec_pmic
)
290 if (sec_pmic
->device_type
!= S2MPS13X
)
293 if (sec_pmic
->pdata
->disable_wrstbi
) {
295 * If WRSTBI pin is pulled down this feature must be disabled
296 * because each Suspend to RAM will trigger buck voltage reset
299 err
= regmap_update_bits(sec_pmic
->regmap_pmic
,
301 S2MPS13_REG_WRSTBI_MASK
, 0x0);
303 dev_warn(sec_pmic
->dev
,
304 "Cannot initialize WRSTBI config: %d\n",
311 * Only the common platform data elements for s5m8767 are parsed here from the
312 * device tree. Other sub-modules of s5m8767 such as pmic, rtc , charger and
313 * others have to parse their own platform data elements from device tree.
315 * The s5m8767 platform data structure is instantiated here and the drivers for
316 * the sub-modules need not instantiate another instance while parsing their
319 static struct sec_platform_data
*sec_pmic_i2c_parse_dt_pdata(
322 struct sec_platform_data
*pd
;
324 pd
= devm_kzalloc(dev
, sizeof(*pd
), GFP_KERNEL
);
326 return ERR_PTR(-ENOMEM
);
329 * ToDo: the 'wakeup' member in the platform data is more of a linux
330 * specfic information. Hence, there is no binding for that yet and
334 pd
->manual_poweroff
= of_property_read_bool(dev
->of_node
,
335 "samsung,s2mps11-acokb-ground");
336 pd
->disable_wrstbi
= of_property_read_bool(dev
->of_node
,
337 "samsung,s2mps11-wrstbi-ground");
341 static struct sec_platform_data
*sec_pmic_i2c_parse_dt_pdata(
348 static inline unsigned long sec_i2c_get_driver_data(struct i2c_client
*i2c
,
349 const struct i2c_device_id
*id
)
352 if (i2c
->dev
.of_node
) {
353 const struct of_device_id
*match
;
355 match
= of_match_node(sec_dt_match
, i2c
->dev
.of_node
);
356 return (unsigned long)match
->data
;
359 return id
->driver_data
;
362 static int sec_pmic_probe(struct i2c_client
*i2c
,
363 const struct i2c_device_id
*id
)
365 struct sec_platform_data
*pdata
= dev_get_platdata(&i2c
->dev
);
366 const struct regmap_config
*regmap
;
367 const struct mfd_cell
*sec_devs
;
368 struct sec_pmic_dev
*sec_pmic
;
369 unsigned long device_type
;
370 int ret
, num_sec_devs
;
372 sec_pmic
= devm_kzalloc(&i2c
->dev
, sizeof(struct sec_pmic_dev
),
374 if (sec_pmic
== NULL
)
377 i2c_set_clientdata(i2c
, sec_pmic
);
378 sec_pmic
->dev
= &i2c
->dev
;
380 sec_pmic
->irq
= i2c
->irq
;
381 device_type
= sec_i2c_get_driver_data(i2c
, id
);
383 if (sec_pmic
->dev
->of_node
) {
384 pdata
= sec_pmic_i2c_parse_dt_pdata(sec_pmic
->dev
);
386 ret
= PTR_ERR(pdata
);
389 pdata
->device_type
= device_type
;
392 sec_pmic
->device_type
= pdata
->device_type
;
393 sec_pmic
->irq_base
= pdata
->irq_base
;
394 sec_pmic
->wakeup
= pdata
->wakeup
;
395 sec_pmic
->pdata
= pdata
;
398 switch (sec_pmic
->device_type
) {
400 regmap
= &s2mpa01_regmap_config
;
403 regmap
= &s2mps11_regmap_config
;
406 regmap
= &s2mps13_regmap_config
;
409 regmap
= &s2mps14_regmap_config
;
412 regmap
= &s2mps15_regmap_config
;
415 regmap
= &s5m8763_regmap_config
;
418 regmap
= &s5m8767_regmap_config
;
421 regmap
= &s2mpu02_regmap_config
;
424 regmap
= &sec_regmap_config
;
428 sec_pmic
->regmap_pmic
= devm_regmap_init_i2c(i2c
, regmap
);
429 if (IS_ERR(sec_pmic
->regmap_pmic
)) {
430 ret
= PTR_ERR(sec_pmic
->regmap_pmic
);
431 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
436 if (pdata
&& pdata
->cfg_pmic_irq
)
437 pdata
->cfg_pmic_irq();
439 sec_irq_init(sec_pmic
);
441 pm_runtime_set_active(sec_pmic
->dev
);
443 switch (sec_pmic
->device_type
) {
445 sec_devs
= s5m8751_devs
;
446 num_sec_devs
= ARRAY_SIZE(s5m8751_devs
);
449 sec_devs
= s5m8763_devs
;
450 num_sec_devs
= ARRAY_SIZE(s5m8763_devs
);
453 sec_devs
= s5m8767_devs
;
454 num_sec_devs
= ARRAY_SIZE(s5m8767_devs
);
457 sec_devs
= s2mpa01_devs
;
458 num_sec_devs
= ARRAY_SIZE(s2mpa01_devs
);
461 sec_devs
= s2mps11_devs
;
462 num_sec_devs
= ARRAY_SIZE(s2mps11_devs
);
465 sec_devs
= s2mps13_devs
;
466 num_sec_devs
= ARRAY_SIZE(s2mps13_devs
);
469 sec_devs
= s2mps14_devs
;
470 num_sec_devs
= ARRAY_SIZE(s2mps14_devs
);
473 sec_devs
= s2mps15_devs
;
474 num_sec_devs
= ARRAY_SIZE(s2mps15_devs
);
477 sec_devs
= s2mpu02_devs
;
478 num_sec_devs
= ARRAY_SIZE(s2mpu02_devs
);
481 /* If this happens the probe function is problem */
484 ret
= devm_mfd_add_devices(sec_pmic
->dev
, -1, sec_devs
, num_sec_devs
,
489 device_init_wakeup(sec_pmic
->dev
, sec_pmic
->wakeup
);
490 sec_pmic_configure(sec_pmic
);
491 sec_pmic_dump_rev(sec_pmic
);
496 static void sec_pmic_shutdown(struct i2c_client
*i2c
)
498 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
499 unsigned int reg
, mask
;
501 if (!sec_pmic
->pdata
->manual_poweroff
)
504 switch (sec_pmic
->device_type
) {
506 reg
= S2MPS11_REG_CTRL1
;
507 mask
= S2MPS11_CTRL1_PWRHOLD_MASK
;
511 * Currently only one board with S2MPS11 needs this, so just
514 dev_warn(sec_pmic
->dev
,
515 "Unsupported device %lu for manual power off\n",
516 sec_pmic
->device_type
);
520 regmap_update_bits(sec_pmic
->regmap_pmic
, reg
, mask
, 0);
523 #ifdef CONFIG_PM_SLEEP
524 static int sec_pmic_suspend(struct device
*dev
)
526 struct i2c_client
*i2c
= to_i2c_client(dev
);
527 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
529 if (device_may_wakeup(dev
))
530 enable_irq_wake(sec_pmic
->irq
);
532 * PMIC IRQ must be disabled during suspend for RTC alarm
534 * When device is woken up from suspend, an
535 * interrupt occurs before resuming I2C bus controller.
536 * The interrupt is handled by regmap_irq_thread which tries
537 * to read RTC registers. This read fails (I2C is still
538 * suspended) and RTC Alarm interrupt is disabled.
540 disable_irq(sec_pmic
->irq
);
545 static int sec_pmic_resume(struct device
*dev
)
547 struct i2c_client
*i2c
= to_i2c_client(dev
);
548 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
550 if (device_may_wakeup(dev
))
551 disable_irq_wake(sec_pmic
->irq
);
552 enable_irq(sec_pmic
->irq
);
556 #endif /* CONFIG_PM_SLEEP */
558 static SIMPLE_DEV_PM_OPS(sec_pmic_pm_ops
, sec_pmic_suspend
, sec_pmic_resume
);
560 static const struct i2c_device_id sec_pmic_id
[] = {
564 MODULE_DEVICE_TABLE(i2c
, sec_pmic_id
);
566 static struct i2c_driver sec_pmic_driver
= {
569 .pm
= &sec_pmic_pm_ops
,
570 .of_match_table
= of_match_ptr(sec_dt_match
),
572 .probe
= sec_pmic_probe
,
573 .shutdown
= sec_pmic_shutdown
,
574 .id_table
= sec_pmic_id
,
577 static int __init
sec_pmic_init(void)
579 return i2c_add_driver(&sec_pmic_driver
);
582 subsys_initcall(sec_pmic_init
);
584 static void __exit
sec_pmic_exit(void)
586 i2c_del_driver(&sec_pmic_driver
);
588 module_exit(sec_pmic_exit
);
590 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
591 MODULE_DESCRIPTION("Core support for the S5M MFD");
592 MODULE_LICENSE("GPL");