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
= "s2mps14-rtc",
74 .name
= "s2mps11-clk",
75 .of_compatible
= "samsung,s2mps11-clk",
79 static const struct mfd_cell s2mps13_devs
[] = {
80 { .name
= "s2mps13-pmic", },
81 { .name
= "s2mps13-rtc", },
83 .name
= "s2mps13-clk",
84 .of_compatible
= "samsung,s2mps13-clk",
88 static const struct mfd_cell s2mps14_devs
[] = {
90 .name
= "s2mps14-pmic",
92 .name
= "s2mps14-rtc",
94 .name
= "s2mps14-clk",
95 .of_compatible
= "samsung,s2mps14-clk",
99 static const struct mfd_cell s2mpa01_devs
[] = {
101 .name
= "s2mpa01-pmic",
105 static const struct mfd_cell s2mpu02_devs
[] = {
106 { .name
= "s2mpu02-pmic", },
107 { .name
= "s2mpu02-rtc", },
109 .name
= "s2mpu02-clk",
110 .of_compatible
= "samsung,s2mpu02-clk",
115 static const struct of_device_id sec_dt_match
[] = {
116 { .compatible
= "samsung,s5m8767-pmic",
117 .data
= (void *)S5M8767X
,
119 .compatible
= "samsung,s2mps11-pmic",
120 .data
= (void *)S2MPS11X
,
122 .compatible
= "samsung,s2mps13-pmic",
123 .data
= (void *)S2MPS13X
,
125 .compatible
= "samsung,s2mps14-pmic",
126 .data
= (void *)S2MPS14X
,
128 .compatible
= "samsung,s2mpa01-pmic",
129 .data
= (void *)S2MPA01
,
131 .compatible
= "samsung,s2mpu02-pmic",
132 .data
= (void *)S2MPU02
,
139 static bool s2mpa01_volatile(struct device
*dev
, unsigned int reg
)
142 case S2MPA01_REG_INT1M
:
143 case S2MPA01_REG_INT2M
:
144 case S2MPA01_REG_INT3M
:
151 static bool s2mps11_volatile(struct device
*dev
, unsigned int reg
)
154 case S2MPS11_REG_INT1M
:
155 case S2MPS11_REG_INT2M
:
156 case S2MPS11_REG_INT3M
:
163 static bool s2mpu02_volatile(struct device
*dev
, unsigned int reg
)
166 case S2MPU02_REG_INT1M
:
167 case S2MPU02_REG_INT2M
:
168 case S2MPU02_REG_INT3M
:
175 static bool s5m8763_volatile(struct device
*dev
, unsigned int reg
)
178 case S5M8763_REG_IRQM1
:
179 case S5M8763_REG_IRQM2
:
180 case S5M8763_REG_IRQM3
:
181 case S5M8763_REG_IRQM4
:
188 static const struct regmap_config sec_regmap_config
= {
193 static const struct regmap_config s2mpa01_regmap_config
= {
197 .max_register
= S2MPA01_REG_LDO_OVCB4
,
198 .volatile_reg
= s2mpa01_volatile
,
199 .cache_type
= REGCACHE_FLAT
,
202 static const struct regmap_config s2mps11_regmap_config
= {
206 .max_register
= S2MPS11_REG_L38CTRL
,
207 .volatile_reg
= s2mps11_volatile
,
208 .cache_type
= REGCACHE_FLAT
,
211 static const struct regmap_config s2mps13_regmap_config
= {
215 .max_register
= S2MPS13_REG_LDODSCH5
,
216 .volatile_reg
= s2mps11_volatile
,
217 .cache_type
= REGCACHE_FLAT
,
220 static const struct regmap_config s2mps14_regmap_config
= {
224 .max_register
= S2MPS14_REG_LDODSCH3
,
225 .volatile_reg
= s2mps11_volatile
,
226 .cache_type
= REGCACHE_FLAT
,
229 static const struct regmap_config s2mpu02_regmap_config
= {
233 .max_register
= S2MPU02_REG_DVSDATA
,
234 .volatile_reg
= s2mpu02_volatile
,
235 .cache_type
= REGCACHE_FLAT
,
238 static const struct regmap_config s5m8763_regmap_config
= {
242 .max_register
= S5M8763_REG_LBCNFG2
,
243 .volatile_reg
= s5m8763_volatile
,
244 .cache_type
= REGCACHE_FLAT
,
247 static const struct regmap_config s5m8767_regmap_config
= {
251 .max_register
= S5M8767_REG_LDO28CTRL
,
252 .volatile_reg
= s2mps11_volatile
,
253 .cache_type
= REGCACHE_FLAT
,
258 * Only the common platform data elements for s5m8767 are parsed here from the
259 * device tree. Other sub-modules of s5m8767 such as pmic, rtc , charger and
260 * others have to parse their own platform data elements from device tree.
262 * The s5m8767 platform data structure is instantiated here and the drivers for
263 * the sub-modules need not instantiate another instance while parsing their
266 static struct sec_platform_data
*sec_pmic_i2c_parse_dt_pdata(
269 struct sec_platform_data
*pd
;
271 pd
= devm_kzalloc(dev
, sizeof(*pd
), GFP_KERNEL
);
273 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
->irq_base
= pdata
->irq_base
;
337 sec_pmic
->wakeup
= pdata
->wakeup
;
338 sec_pmic
->pdata
= pdata
;
341 switch (sec_pmic
->device_type
) {
343 regmap
= &s2mpa01_regmap_config
;
346 regmap
= &s2mps11_regmap_config
;
349 regmap
= &s2mps13_regmap_config
;
352 regmap
= &s2mps14_regmap_config
;
355 regmap
= &s5m8763_regmap_config
;
358 regmap
= &s5m8767_regmap_config
;
361 regmap
= &s2mpu02_regmap_config
;
364 regmap
= &sec_regmap_config
;
368 sec_pmic
->regmap_pmic
= devm_regmap_init_i2c(i2c
, regmap
);
369 if (IS_ERR(sec_pmic
->regmap_pmic
)) {
370 ret
= PTR_ERR(sec_pmic
->regmap_pmic
);
371 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
376 if (pdata
&& pdata
->cfg_pmic_irq
)
377 pdata
->cfg_pmic_irq();
379 sec_irq_init(sec_pmic
);
381 pm_runtime_set_active(sec_pmic
->dev
);
383 switch (sec_pmic
->device_type
) {
385 sec_devs
= s5m8751_devs
;
386 num_sec_devs
= ARRAY_SIZE(s5m8751_devs
);
389 sec_devs
= s5m8763_devs
;
390 num_sec_devs
= ARRAY_SIZE(s5m8763_devs
);
393 sec_devs
= s5m8767_devs
;
394 num_sec_devs
= ARRAY_SIZE(s5m8767_devs
);
397 sec_devs
= s2mpa01_devs
;
398 num_sec_devs
= ARRAY_SIZE(s2mpa01_devs
);
401 sec_devs
= s2mps11_devs
;
402 num_sec_devs
= ARRAY_SIZE(s2mps11_devs
);
405 sec_devs
= s2mps13_devs
;
406 num_sec_devs
= ARRAY_SIZE(s2mps13_devs
);
409 sec_devs
= s2mps14_devs
;
410 num_sec_devs
= ARRAY_SIZE(s2mps14_devs
);
413 sec_devs
= s2mpu02_devs
;
414 num_sec_devs
= ARRAY_SIZE(s2mpu02_devs
);
417 /* If this happens the probe function is problem */
420 ret
= mfd_add_devices(sec_pmic
->dev
, -1, sec_devs
, num_sec_devs
, NULL
,
425 device_init_wakeup(sec_pmic
->dev
, sec_pmic
->wakeup
);
430 sec_irq_exit(sec_pmic
);
434 static int sec_pmic_remove(struct i2c_client
*i2c
)
436 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
438 mfd_remove_devices(sec_pmic
->dev
);
439 sec_irq_exit(sec_pmic
);
443 #ifdef CONFIG_PM_SLEEP
444 static int sec_pmic_suspend(struct device
*dev
)
446 struct i2c_client
*i2c
= container_of(dev
, struct i2c_client
, dev
);
447 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
449 if (device_may_wakeup(dev
))
450 enable_irq_wake(sec_pmic
->irq
);
452 * PMIC IRQ must be disabled during suspend for RTC alarm
454 * When device is woken up from suspend, an
455 * interrupt occurs before resuming I2C bus controller.
456 * The interrupt is handled by regmap_irq_thread which tries
457 * to read RTC registers. This read fails (I2C is still
458 * suspended) and RTC Alarm interrupt is disabled.
460 disable_irq(sec_pmic
->irq
);
465 static int sec_pmic_resume(struct device
*dev
)
467 struct i2c_client
*i2c
= container_of(dev
, struct i2c_client
, dev
);
468 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
470 if (device_may_wakeup(dev
))
471 disable_irq_wake(sec_pmic
->irq
);
472 enable_irq(sec_pmic
->irq
);
476 #endif /* CONFIG_PM_SLEEP */
478 static SIMPLE_DEV_PM_OPS(sec_pmic_pm_ops
, sec_pmic_suspend
, sec_pmic_resume
);
480 static const struct i2c_device_id sec_pmic_id
[] = {
484 MODULE_DEVICE_TABLE(i2c
, sec_pmic_id
);
486 static struct i2c_driver sec_pmic_driver
= {
489 .owner
= THIS_MODULE
,
490 .pm
= &sec_pmic_pm_ops
,
491 .of_match_table
= of_match_ptr(sec_dt_match
),
493 .probe
= sec_pmic_probe
,
494 .remove
= sec_pmic_remove
,
495 .id_table
= sec_pmic_id
,
498 static int __init
sec_pmic_init(void)
500 return i2c_add_driver(&sec_pmic_driver
);
503 subsys_initcall(sec_pmic_init
);
505 static void __exit
sec_pmic_exit(void)
507 i2c_del_driver(&sec_pmic_driver
);
509 module_exit(sec_pmic_exit
);
511 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
512 MODULE_DESCRIPTION("Core support for the S5M MFD");
513 MODULE_LICENSE("GPL");