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/s2mpu02.h>
33 #include <linux/mfd/samsung/s5m8763.h>
34 #include <linux/mfd/samsung/s5m8767.h>
35 #include <linux/regmap.h>
37 static const struct mfd_cell s5m8751_devs
[] = {
39 .name
= "s5m8751-pmic",
41 .name
= "s5m-charger",
43 .name
= "s5m8751-codec",
47 static const struct mfd_cell s5m8763_devs
[] = {
49 .name
= "s5m8763-pmic",
53 .name
= "s5m-charger",
57 static const struct mfd_cell s5m8767_devs
[] = {
59 .name
= "s5m8767-pmic",
63 .name
= "s5m8767-clk",
64 .of_compatible
= "samsung,s5m8767-clk",
68 static const struct mfd_cell s2mps11_devs
[] = {
70 .name
= "s2mps11-pmic",
72 .name
= "s2mps11-clk",
73 .of_compatible
= "samsung,s2mps11-clk",
77 static const struct mfd_cell s2mps13_devs
[] = {
78 { .name
= "s2mps13-pmic", },
79 { .name
= "s2mps13-rtc", },
81 .name
= "s2mps13-clk",
82 .of_compatible
= "samsung,s2mps13-clk",
86 static const struct mfd_cell s2mps14_devs
[] = {
88 .name
= "s2mps14-pmic",
90 .name
= "s2mps14-rtc",
92 .name
= "s2mps14-clk",
93 .of_compatible
= "samsung,s2mps14-clk",
97 static const struct mfd_cell s2mpa01_devs
[] = {
99 .name
= "s2mpa01-pmic",
103 static const struct mfd_cell s2mpu02_devs
[] = {
104 { .name
= "s2mpu02-pmic", },
105 { .name
= "s2mpu02-rtc", },
107 .name
= "s2mpu02-clk",
108 .of_compatible
= "samsung,s2mpu02-clk",
113 static const struct of_device_id sec_dt_match
[] = {
114 { .compatible
= "samsung,s5m8767-pmic",
115 .data
= (void *)S5M8767X
,
117 .compatible
= "samsung,s2mps11-pmic",
118 .data
= (void *)S2MPS11X
,
120 .compatible
= "samsung,s2mps13-pmic",
121 .data
= (void *)S2MPS13X
,
123 .compatible
= "samsung,s2mps14-pmic",
124 .data
= (void *)S2MPS14X
,
126 .compatible
= "samsung,s2mpa01-pmic",
127 .data
= (void *)S2MPA01
,
129 .compatible
= "samsung,s2mpu02-pmic",
130 .data
= (void *)S2MPU02
,
137 static bool s2mpa01_volatile(struct device
*dev
, unsigned int reg
)
140 case S2MPA01_REG_INT1M
:
141 case S2MPA01_REG_INT2M
:
142 case S2MPA01_REG_INT3M
:
149 static bool s2mps11_volatile(struct device
*dev
, unsigned int reg
)
152 case S2MPS11_REG_INT1M
:
153 case S2MPS11_REG_INT2M
:
154 case S2MPS11_REG_INT3M
:
161 static bool s2mpu02_volatile(struct device
*dev
, unsigned int reg
)
164 case S2MPU02_REG_INT1M
:
165 case S2MPU02_REG_INT2M
:
166 case S2MPU02_REG_INT3M
:
173 static bool s5m8763_volatile(struct device
*dev
, unsigned int reg
)
176 case S5M8763_REG_IRQM1
:
177 case S5M8763_REG_IRQM2
:
178 case S5M8763_REG_IRQM3
:
179 case S5M8763_REG_IRQM4
:
186 static const struct regmap_config sec_regmap_config
= {
191 static const struct regmap_config s2mpa01_regmap_config
= {
195 .max_register
= S2MPA01_REG_LDO_OVCB4
,
196 .volatile_reg
= s2mpa01_volatile
,
197 .cache_type
= REGCACHE_FLAT
,
200 static const struct regmap_config s2mps11_regmap_config
= {
204 .max_register
= S2MPS11_REG_L38CTRL
,
205 .volatile_reg
= s2mps11_volatile
,
206 .cache_type
= REGCACHE_FLAT
,
209 static const struct regmap_config s2mps13_regmap_config
= {
213 .max_register
= S2MPS13_REG_LDODSCH5
,
214 .volatile_reg
= s2mps11_volatile
,
215 .cache_type
= REGCACHE_FLAT
,
218 static const struct regmap_config s2mps14_regmap_config
= {
222 .max_register
= S2MPS14_REG_LDODSCH3
,
223 .volatile_reg
= s2mps11_volatile
,
224 .cache_type
= REGCACHE_FLAT
,
227 static const struct regmap_config s2mpu02_regmap_config
= {
231 .max_register
= S2MPU02_REG_DVSDATA
,
232 .volatile_reg
= s2mpu02_volatile
,
233 .cache_type
= REGCACHE_FLAT
,
236 static const struct regmap_config s5m8763_regmap_config
= {
240 .max_register
= S5M8763_REG_LBCNFG2
,
241 .volatile_reg
= s5m8763_volatile
,
242 .cache_type
= REGCACHE_FLAT
,
245 static const struct regmap_config s5m8767_regmap_config
= {
249 .max_register
= S5M8767_REG_LDO28CTRL
,
250 .volatile_reg
= s2mps11_volatile
,
251 .cache_type
= REGCACHE_FLAT
,
256 * Only the common platform data elements for s5m8767 are parsed here from the
257 * device tree. Other sub-modules of s5m8767 such as pmic, rtc , charger and
258 * others have to parse their own platform data elements from device tree.
260 * The s5m8767 platform data structure is instantiated here and the drivers for
261 * the sub-modules need not instantiate another instance while parsing their
264 static struct sec_platform_data
*sec_pmic_i2c_parse_dt_pdata(
267 struct sec_platform_data
*pd
;
269 pd
= devm_kzalloc(dev
, sizeof(*pd
), GFP_KERNEL
);
271 dev_err(dev
, "could not allocate memory for pdata\n");
272 return ERR_PTR(-ENOMEM
);
276 * ToDo: the 'wakeup' member in the platform data is more of a linux
277 * specfic information. Hence, there is no binding for that yet and
284 static struct sec_platform_data
*sec_pmic_i2c_parse_dt_pdata(
291 static inline unsigned long sec_i2c_get_driver_data(struct i2c_client
*i2c
,
292 const struct i2c_device_id
*id
)
295 if (i2c
->dev
.of_node
) {
296 const struct of_device_id
*match
;
298 match
= of_match_node(sec_dt_match
, i2c
->dev
.of_node
);
299 return (unsigned long)match
->data
;
302 return id
->driver_data
;
305 static int sec_pmic_probe(struct i2c_client
*i2c
,
306 const struct i2c_device_id
*id
)
308 struct sec_platform_data
*pdata
= dev_get_platdata(&i2c
->dev
);
309 const struct regmap_config
*regmap
;
310 const struct mfd_cell
*sec_devs
;
311 struct sec_pmic_dev
*sec_pmic
;
312 unsigned long device_type
;
313 int ret
, num_sec_devs
;
315 sec_pmic
= devm_kzalloc(&i2c
->dev
, sizeof(struct sec_pmic_dev
),
317 if (sec_pmic
== NULL
)
320 i2c_set_clientdata(i2c
, sec_pmic
);
321 sec_pmic
->dev
= &i2c
->dev
;
323 sec_pmic
->irq
= i2c
->irq
;
324 device_type
= sec_i2c_get_driver_data(i2c
, id
);
326 if (sec_pmic
->dev
->of_node
) {
327 pdata
= sec_pmic_i2c_parse_dt_pdata(sec_pmic
->dev
);
329 ret
= PTR_ERR(pdata
);
332 pdata
->device_type
= device_type
;
335 sec_pmic
->device_type
= pdata
->device_type
;
336 sec_pmic
->ono
= pdata
->ono
;
337 sec_pmic
->irq_base
= pdata
->irq_base
;
338 sec_pmic
->wakeup
= pdata
->wakeup
;
339 sec_pmic
->pdata
= pdata
;
342 switch (sec_pmic
->device_type
) {
344 regmap
= &s2mpa01_regmap_config
;
347 regmap
= &s2mps11_regmap_config
;
350 regmap
= &s2mps13_regmap_config
;
353 regmap
= &s2mps14_regmap_config
;
356 regmap
= &s5m8763_regmap_config
;
359 regmap
= &s5m8767_regmap_config
;
362 regmap
= &s2mpu02_regmap_config
;
365 regmap
= &sec_regmap_config
;
369 sec_pmic
->regmap_pmic
= devm_regmap_init_i2c(i2c
, regmap
);
370 if (IS_ERR(sec_pmic
->regmap_pmic
)) {
371 ret
= PTR_ERR(sec_pmic
->regmap_pmic
);
372 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
377 if (pdata
&& pdata
->cfg_pmic_irq
)
378 pdata
->cfg_pmic_irq();
380 sec_irq_init(sec_pmic
);
382 pm_runtime_set_active(sec_pmic
->dev
);
384 switch (sec_pmic
->device_type
) {
386 sec_devs
= s5m8751_devs
;
387 num_sec_devs
= ARRAY_SIZE(s5m8751_devs
);
390 sec_devs
= s5m8763_devs
;
391 num_sec_devs
= ARRAY_SIZE(s5m8763_devs
);
394 sec_devs
= s5m8767_devs
;
395 num_sec_devs
= ARRAY_SIZE(s5m8767_devs
);
398 sec_devs
= s2mpa01_devs
;
399 num_sec_devs
= ARRAY_SIZE(s2mpa01_devs
);
402 sec_devs
= s2mps11_devs
;
403 num_sec_devs
= ARRAY_SIZE(s2mps11_devs
);
406 sec_devs
= s2mps13_devs
;
407 num_sec_devs
= ARRAY_SIZE(s2mps13_devs
);
410 sec_devs
= s2mps14_devs
;
411 num_sec_devs
= ARRAY_SIZE(s2mps14_devs
);
414 sec_devs
= s2mpu02_devs
;
415 num_sec_devs
= ARRAY_SIZE(s2mpu02_devs
);
418 /* If this happens the probe function is problem */
421 ret
= mfd_add_devices(sec_pmic
->dev
, -1, sec_devs
, num_sec_devs
, NULL
,
426 device_init_wakeup(sec_pmic
->dev
, sec_pmic
->wakeup
);
431 sec_irq_exit(sec_pmic
);
435 static int sec_pmic_remove(struct i2c_client
*i2c
)
437 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
439 mfd_remove_devices(sec_pmic
->dev
);
440 sec_irq_exit(sec_pmic
);
444 #ifdef CONFIG_PM_SLEEP
445 static int sec_pmic_suspend(struct device
*dev
)
447 struct i2c_client
*i2c
= container_of(dev
, struct i2c_client
, dev
);
448 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
450 if (device_may_wakeup(dev
))
451 enable_irq_wake(sec_pmic
->irq
);
453 * PMIC IRQ must be disabled during suspend for RTC alarm
455 * When device is woken up from suspend, an
456 * interrupt occurs before resuming I2C bus controller.
457 * The interrupt is handled by regmap_irq_thread which tries
458 * to read RTC registers. This read fails (I2C is still
459 * suspended) and RTC Alarm interrupt is disabled.
461 disable_irq(sec_pmic
->irq
);
466 static int sec_pmic_resume(struct device
*dev
)
468 struct i2c_client
*i2c
= container_of(dev
, struct i2c_client
, dev
);
469 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
471 if (device_may_wakeup(dev
))
472 disable_irq_wake(sec_pmic
->irq
);
473 enable_irq(sec_pmic
->irq
);
477 #endif /* CONFIG_PM_SLEEP */
479 static SIMPLE_DEV_PM_OPS(sec_pmic_pm_ops
, sec_pmic_suspend
, sec_pmic_resume
);
481 static const struct i2c_device_id sec_pmic_id
[] = {
485 MODULE_DEVICE_TABLE(i2c
, sec_pmic_id
);
487 static struct i2c_driver sec_pmic_driver
= {
490 .owner
= THIS_MODULE
,
491 .pm
= &sec_pmic_pm_ops
,
492 .of_match_table
= of_match_ptr(sec_dt_match
),
494 .probe
= sec_pmic_probe
,
495 .remove
= sec_pmic_remove
,
496 .id_table
= sec_pmic_id
,
499 static int __init
sec_pmic_init(void)
501 return i2c_add_driver(&sec_pmic_driver
);
504 subsys_initcall(sec_pmic_init
);
506 static void __exit
sec_pmic_exit(void)
508 i2c_del_driver(&sec_pmic_driver
);
510 module_exit(sec_pmic_exit
);
512 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
513 MODULE_DESCRIPTION("Core support for the S5M MFD");
514 MODULE_LICENSE("GPL");