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>
20 #include <linux/interrupt.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/mutex.h>
23 #include <linux/mfd/core.h>
24 #include <linux/mfd/samsung/core.h>
25 #include <linux/mfd/samsung/irq.h>
26 #include <linux/mfd/samsung/rtc.h>
27 #include <linux/regmap.h>
29 static struct mfd_cell s5m8751_devs
[] = {
31 .name
= "s5m8751-pmic",
33 .name
= "s5m-charger",
35 .name
= "s5m8751-codec",
39 static struct mfd_cell s5m8763_devs
[] = {
41 .name
= "s5m8763-pmic",
45 .name
= "s5m-charger",
49 static struct mfd_cell s5m8767_devs
[] = {
51 .name
= "s5m8767-pmic",
57 static struct mfd_cell s2mps11_devs
[] = {
59 .name
= "s2mps11-pmic",
63 int sec_reg_read(struct sec_pmic_dev
*sec_pmic
, u8 reg
, void *dest
)
65 return regmap_read(sec_pmic
->regmap
, reg
, dest
);
67 EXPORT_SYMBOL_GPL(sec_reg_read
);
69 int sec_bulk_read(struct sec_pmic_dev
*sec_pmic
, u8 reg
, int count
, u8
*buf
)
71 return regmap_bulk_read(sec_pmic
->regmap
, reg
, buf
, count
);
73 EXPORT_SYMBOL_GPL(sec_bulk_read
);
75 int sec_reg_write(struct sec_pmic_dev
*sec_pmic
, u8 reg
, u8 value
)
77 return regmap_write(sec_pmic
->regmap
, reg
, value
);
79 EXPORT_SYMBOL_GPL(sec_reg_write
);
81 int sec_bulk_write(struct sec_pmic_dev
*sec_pmic
, u8 reg
, int count
, u8
*buf
)
83 return regmap_raw_write(sec_pmic
->regmap
, reg
, buf
, count
);
85 EXPORT_SYMBOL_GPL(sec_bulk_write
);
87 int sec_reg_update(struct sec_pmic_dev
*sec_pmic
, u8 reg
, u8 val
, u8 mask
)
89 return regmap_update_bits(sec_pmic
->regmap
, reg
, mask
, val
);
91 EXPORT_SYMBOL_GPL(sec_reg_update
);
93 static struct regmap_config sec_regmap_config
= {
98 static int sec_pmic_probe(struct i2c_client
*i2c
,
99 const struct i2c_device_id
*id
)
101 struct sec_platform_data
*pdata
= i2c
->dev
.platform_data
;
102 struct sec_pmic_dev
*sec_pmic
;
105 sec_pmic
= devm_kzalloc(&i2c
->dev
, sizeof(struct sec_pmic_dev
),
107 if (sec_pmic
== NULL
)
110 i2c_set_clientdata(i2c
, sec_pmic
);
111 sec_pmic
->dev
= &i2c
->dev
;
113 sec_pmic
->irq
= i2c
->irq
;
114 sec_pmic
->type
= id
->driver_data
;
117 sec_pmic
->device_type
= pdata
->device_type
;
118 sec_pmic
->ono
= pdata
->ono
;
119 sec_pmic
->irq_base
= pdata
->irq_base
;
120 sec_pmic
->wakeup
= pdata
->wakeup
;
123 sec_pmic
->regmap
= devm_regmap_init_i2c(i2c
, &sec_regmap_config
);
124 if (IS_ERR(sec_pmic
->regmap
)) {
125 ret
= PTR_ERR(sec_pmic
->regmap
);
126 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
131 sec_pmic
->rtc
= i2c_new_dummy(i2c
->adapter
, RTC_I2C_ADDR
);
132 i2c_set_clientdata(sec_pmic
->rtc
, sec_pmic
);
134 if (pdata
&& pdata
->cfg_pmic_irq
)
135 pdata
->cfg_pmic_irq();
137 sec_irq_init(sec_pmic
);
139 pm_runtime_set_active(sec_pmic
->dev
);
141 switch (sec_pmic
->device_type
) {
143 ret
= mfd_add_devices(sec_pmic
->dev
, -1, s5m8751_devs
,
144 ARRAY_SIZE(s5m8751_devs
), NULL
, 0, NULL
);
147 ret
= mfd_add_devices(sec_pmic
->dev
, -1, s5m8763_devs
,
148 ARRAY_SIZE(s5m8763_devs
), NULL
, 0, NULL
);
151 ret
= mfd_add_devices(sec_pmic
->dev
, -1, s5m8767_devs
,
152 ARRAY_SIZE(s5m8767_devs
), NULL
, 0, NULL
);
155 ret
= mfd_add_devices(sec_pmic
->dev
, -1, s2mps11_devs
,
156 ARRAY_SIZE(s2mps11_devs
), NULL
, 0, NULL
);
159 /* If this happens the probe function is problem */
169 mfd_remove_devices(sec_pmic
->dev
);
170 sec_irq_exit(sec_pmic
);
171 i2c_unregister_device(sec_pmic
->rtc
);
175 static int sec_pmic_remove(struct i2c_client
*i2c
)
177 struct sec_pmic_dev
*sec_pmic
= i2c_get_clientdata(i2c
);
179 mfd_remove_devices(sec_pmic
->dev
);
180 sec_irq_exit(sec_pmic
);
181 i2c_unregister_device(sec_pmic
->rtc
);
185 static const struct i2c_device_id sec_pmic_id
[] = {
189 MODULE_DEVICE_TABLE(i2c
, sec_pmic_id
);
191 static struct i2c_driver sec_pmic_driver
= {
194 .owner
= THIS_MODULE
,
196 .probe
= sec_pmic_probe
,
197 .remove
= sec_pmic_remove
,
198 .id_table
= sec_pmic_id
,
201 static int __init
sec_pmic_init(void)
203 return i2c_add_driver(&sec_pmic_driver
);
206 subsys_initcall(sec_pmic_init
);
208 static void __exit
sec_pmic_exit(void)
210 i2c_del_driver(&sec_pmic_driver
);
212 module_exit(sec_pmic_exit
);
214 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
215 MODULE_DESCRIPTION("Core support for the S5M MFD");
216 MODULE_LICENSE("GPL");