1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* NXP PCF50633 Power Management Unit (PMU) driver
4 * (C) 2006-2008 by Openmoko, Inc.
5 * Author: Harald Welte <laforge@openmoko.org>
6 * Balaji Rao <balajirrao@openmoko.org>
10 #include <linux/kernel.h>
11 #include <linux/device.h>
12 #include <linux/sysfs.h>
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/interrupt.h>
16 #include <linux/workqueue.h>
17 #include <linux/platform_device.h>
18 #include <linux/i2c.h>
20 #include <linux/slab.h>
21 #include <linux/regmap.h>
22 #include <linux/err.h>
24 #include <linux/mfd/pcf50633/core.h>
26 /* Read a block of up to 32 regs */
27 int pcf50633_read_block(struct pcf50633
*pcf
, u8 reg
,
28 int nr_regs
, u8
*data
)
32 ret
= regmap_raw_read(pcf
->regmap
, reg
, data
, nr_regs
);
38 EXPORT_SYMBOL_GPL(pcf50633_read_block
);
40 /* Write a block of up to 32 regs */
41 int pcf50633_write_block(struct pcf50633
*pcf
, u8 reg
,
42 int nr_regs
, u8
*data
)
44 return regmap_raw_write(pcf
->regmap
, reg
, data
, nr_regs
);
46 EXPORT_SYMBOL_GPL(pcf50633_write_block
);
48 u8
pcf50633_reg_read(struct pcf50633
*pcf
, u8 reg
)
53 ret
= regmap_read(pcf
->regmap
, reg
, &val
);
59 EXPORT_SYMBOL_GPL(pcf50633_reg_read
);
61 int pcf50633_reg_write(struct pcf50633
*pcf
, u8 reg
, u8 val
)
63 return regmap_write(pcf
->regmap
, reg
, val
);
65 EXPORT_SYMBOL_GPL(pcf50633_reg_write
);
67 int pcf50633_reg_set_bit_mask(struct pcf50633
*pcf
, u8 reg
, u8 mask
, u8 val
)
69 return regmap_update_bits(pcf
->regmap
, reg
, mask
, val
);
71 EXPORT_SYMBOL_GPL(pcf50633_reg_set_bit_mask
);
73 int pcf50633_reg_clear_bits(struct pcf50633
*pcf
, u8 reg
, u8 val
)
75 return regmap_update_bits(pcf
->regmap
, reg
, val
, 0);
77 EXPORT_SYMBOL_GPL(pcf50633_reg_clear_bits
);
79 /* sysfs attributes */
80 static ssize_t
show_dump_regs(struct device
*dev
, struct device_attribute
*attr
,
83 struct pcf50633
*pcf
= dev_get_drvdata(dev
);
87 static u8 address_no_read
[] = { /* must be ascending */
96 for (n
= 0; n
< 256; n
+= sizeof(dump
)) {
97 for (n1
= 0; n1
< sizeof(dump
); n1
++)
98 if (n
== address_no_read
[idx
]) {
102 dump
[n1
] = pcf50633_reg_read(pcf
, n
+ n1
);
104 buf1
+= sprintf(buf1
, "%*ph\n", (int)sizeof(dump
), dump
);
109 static DEVICE_ATTR(dump_regs
, 0400, show_dump_regs
, NULL
);
111 static ssize_t
show_resume_reason(struct device
*dev
,
112 struct device_attribute
*attr
, char *buf
)
114 struct pcf50633
*pcf
= dev_get_drvdata(dev
);
117 n
= sprintf(buf
, "%02x%02x%02x%02x%02x\n",
118 pcf
->resume_reason
[0],
119 pcf
->resume_reason
[1],
120 pcf
->resume_reason
[2],
121 pcf
->resume_reason
[3],
122 pcf
->resume_reason
[4]);
126 static DEVICE_ATTR(resume_reason
, 0400, show_resume_reason
, NULL
);
128 static struct attribute
*pcf_sysfs_entries
[] = {
129 &dev_attr_dump_regs
.attr
,
130 &dev_attr_resume_reason
.attr
,
134 static struct attribute_group pcf_attr_group
= {
135 .name
= NULL
, /* put in device directory */
136 .attrs
= pcf_sysfs_entries
,
140 pcf50633_client_dev_register(struct pcf50633
*pcf
, const char *name
,
141 struct platform_device
**pdev
)
145 *pdev
= platform_device_alloc(name
, -1);
147 dev_err(pcf
->dev
, "Failed to allocate %s\n", name
);
151 (*pdev
)->dev
.parent
= pcf
->dev
;
153 ret
= platform_device_add(*pdev
);
155 dev_err(pcf
->dev
, "Failed to register %s: %d\n", name
, ret
);
156 platform_device_put(*pdev
);
161 #ifdef CONFIG_PM_SLEEP
162 static int pcf50633_suspend(struct device
*dev
)
164 struct i2c_client
*client
= to_i2c_client(dev
);
165 struct pcf50633
*pcf
= i2c_get_clientdata(client
);
167 return pcf50633_irq_suspend(pcf
);
170 static int pcf50633_resume(struct device
*dev
)
172 struct i2c_client
*client
= to_i2c_client(dev
);
173 struct pcf50633
*pcf
= i2c_get_clientdata(client
);
175 return pcf50633_irq_resume(pcf
);
179 static SIMPLE_DEV_PM_OPS(pcf50633_pm
, pcf50633_suspend
, pcf50633_resume
);
181 static const struct regmap_config pcf50633_regmap_config
= {
186 static int pcf50633_probe(struct i2c_client
*client
,
187 const struct i2c_device_id
*ids
)
189 struct pcf50633
*pcf
;
190 struct platform_device
*pdev
;
191 struct pcf50633_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
193 int version
, variant
;
196 dev_err(&client
->dev
, "Missing IRQ\n");
200 pcf
= devm_kzalloc(&client
->dev
, sizeof(*pcf
), GFP_KERNEL
);
204 i2c_set_clientdata(client
, pcf
);
205 pcf
->dev
= &client
->dev
;
208 mutex_init(&pcf
->lock
);
210 pcf
->regmap
= devm_regmap_init_i2c(client
, &pcf50633_regmap_config
);
211 if (IS_ERR(pcf
->regmap
)) {
212 ret
= PTR_ERR(pcf
->regmap
);
213 dev_err(pcf
->dev
, "Failed to allocate register map: %d\n", ret
);
217 version
= pcf50633_reg_read(pcf
, 0);
218 variant
= pcf50633_reg_read(pcf
, 1);
219 if (version
< 0 || variant
< 0) {
220 dev_err(pcf
->dev
, "Unable to probe pcf50633\n");
225 dev_info(pcf
->dev
, "Probed device version %d variant %d\n",
228 pcf50633_irq_init(pcf
, client
->irq
);
230 /* Create sub devices */
231 pcf50633_client_dev_register(pcf
, "pcf50633-input", &pcf
->input_pdev
);
232 pcf50633_client_dev_register(pcf
, "pcf50633-rtc", &pcf
->rtc_pdev
);
233 pcf50633_client_dev_register(pcf
, "pcf50633-mbc", &pcf
->mbc_pdev
);
234 pcf50633_client_dev_register(pcf
, "pcf50633-adc", &pcf
->adc_pdev
);
235 pcf50633_client_dev_register(pcf
, "pcf50633-backlight", &pcf
->bl_pdev
);
238 for (i
= 0; i
< PCF50633_NUM_REGULATORS
; i
++) {
239 pdev
= platform_device_alloc("pcf50633-regulator", i
);
245 pdev
->dev
.parent
= pcf
->dev
;
246 ret
= platform_device_add_data(pdev
, &pdata
->reg_init_data
[i
],
247 sizeof(pdata
->reg_init_data
[i
]));
251 ret
= platform_device_add(pdev
);
255 pcf
->regulator_pdev
[i
] = pdev
;
258 ret
= sysfs_create_group(&client
->dev
.kobj
, &pcf_attr_group
);
260 dev_warn(pcf
->dev
, "error creating sysfs entries\n");
262 if (pdata
->probe_done
)
263 pdata
->probe_done(pcf
);
268 platform_device_put(pdev
);
270 for (j
= 0; j
< i
; j
++)
271 platform_device_put(pcf
->regulator_pdev
[j
]);
276 static int pcf50633_remove(struct i2c_client
*client
)
278 struct pcf50633
*pcf
= i2c_get_clientdata(client
);
281 sysfs_remove_group(&client
->dev
.kobj
, &pcf_attr_group
);
282 pcf50633_irq_free(pcf
);
284 platform_device_unregister(pcf
->input_pdev
);
285 platform_device_unregister(pcf
->rtc_pdev
);
286 platform_device_unregister(pcf
->mbc_pdev
);
287 platform_device_unregister(pcf
->adc_pdev
);
288 platform_device_unregister(pcf
->bl_pdev
);
290 for (i
= 0; i
< PCF50633_NUM_REGULATORS
; i
++)
291 platform_device_unregister(pcf
->regulator_pdev
[i
]);
296 static const struct i2c_device_id pcf50633_id_table
[] = {
300 MODULE_DEVICE_TABLE(i2c
, pcf50633_id_table
);
302 static struct i2c_driver pcf50633_driver
= {
307 .id_table
= pcf50633_id_table
,
308 .probe
= pcf50633_probe
,
309 .remove
= pcf50633_remove
,
312 static int __init
pcf50633_init(void)
314 return i2c_add_driver(&pcf50633_driver
);
317 static void __exit
pcf50633_exit(void)
319 i2c_del_driver(&pcf50633_driver
);
322 MODULE_DESCRIPTION("I2C chip driver for NXP PCF50633 PMU");
323 MODULE_AUTHOR("Harald Welte <laforge@openmoko.org>");
324 MODULE_LICENSE("GPL");
326 subsys_initcall(pcf50633_init
);
327 module_exit(pcf50633_exit
);