2 * I2C driver for Maxim MAX8925
4 * Copyright (C) 2009 Marvell International Ltd.
5 * Haojian Zhuang <haojian.zhuang@marvell.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/i2c.h>
15 #include <linux/mfd/max8925.h>
16 #include <linux/slab.h>
18 #define RTC_I2C_ADDR 0x68
19 #define ADC_I2C_ADDR 0x47
21 static inline int max8925_read_device(struct i2c_client
*i2c
,
22 int reg
, int bytes
, void *dest
)
27 ret
= i2c_smbus_read_i2c_block_data(i2c
, reg
, bytes
, dest
);
29 ret
= i2c_smbus_read_byte_data(i2c
, reg
);
32 *(unsigned char *)dest
= (unsigned char)ret
;
37 static inline int max8925_write_device(struct i2c_client
*i2c
,
38 int reg
, int bytes
, void *src
)
43 buf
[0] = (unsigned char)reg
;
44 memcpy(&buf
[1], src
, bytes
);
46 ret
= i2c_master_send(i2c
, buf
, bytes
+ 1);
52 int max8925_reg_read(struct i2c_client
*i2c
, int reg
)
54 struct max8925_chip
*chip
= i2c_get_clientdata(i2c
);
55 unsigned char data
= 0;
58 mutex_lock(&chip
->io_lock
);
59 ret
= max8925_read_device(i2c
, reg
, 1, &data
);
60 mutex_unlock(&chip
->io_lock
);
67 EXPORT_SYMBOL(max8925_reg_read
);
69 int max8925_reg_write(struct i2c_client
*i2c
, int reg
,
72 struct max8925_chip
*chip
= i2c_get_clientdata(i2c
);
75 mutex_lock(&chip
->io_lock
);
76 ret
= max8925_write_device(i2c
, reg
, 1, &data
);
77 mutex_unlock(&chip
->io_lock
);
81 EXPORT_SYMBOL(max8925_reg_write
);
83 int max8925_bulk_read(struct i2c_client
*i2c
, int reg
,
84 int count
, unsigned char *buf
)
86 struct max8925_chip
*chip
= i2c_get_clientdata(i2c
);
89 mutex_lock(&chip
->io_lock
);
90 ret
= max8925_read_device(i2c
, reg
, count
, buf
);
91 mutex_unlock(&chip
->io_lock
);
95 EXPORT_SYMBOL(max8925_bulk_read
);
97 int max8925_bulk_write(struct i2c_client
*i2c
, int reg
,
98 int count
, unsigned char *buf
)
100 struct max8925_chip
*chip
= i2c_get_clientdata(i2c
);
103 mutex_lock(&chip
->io_lock
);
104 ret
= max8925_write_device(i2c
, reg
, count
, buf
);
105 mutex_unlock(&chip
->io_lock
);
109 EXPORT_SYMBOL(max8925_bulk_write
);
111 int max8925_set_bits(struct i2c_client
*i2c
, int reg
,
112 unsigned char mask
, unsigned char data
)
114 struct max8925_chip
*chip
= i2c_get_clientdata(i2c
);
118 mutex_lock(&chip
->io_lock
);
119 ret
= max8925_read_device(i2c
, reg
, 1, &value
);
124 ret
= max8925_write_device(i2c
, reg
, 1, &value
);
126 mutex_unlock(&chip
->io_lock
);
129 EXPORT_SYMBOL(max8925_set_bits
);
132 static const struct i2c_device_id max8925_id_table
[] = {
136 MODULE_DEVICE_TABLE(i2c
, max8925_id_table
);
138 static int max8925_dt_init(struct device_node
*np
, struct device
*dev
,
139 struct max8925_platform_data
*pdata
)
143 ret
= of_property_read_u32(np
, "maxim,tsc-irq", &pdata
->tsc_irq
);
145 dev_err(dev
, "Not found maxim,tsc-irq property\n");
151 static int max8925_probe(struct i2c_client
*client
,
152 const struct i2c_device_id
*id
)
154 struct max8925_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
155 static struct max8925_chip
*chip
;
156 struct device_node
*node
= client
->dev
.of_node
;
158 if (node
&& !pdata
) {
159 /* parse DT to get platform data */
160 pdata
= devm_kzalloc(&client
->dev
,
161 sizeof(struct max8925_platform_data
),
166 if (max8925_dt_init(node
, &client
->dev
, pdata
))
169 pr_info("%s: platform data is missing\n", __func__
);
173 chip
= devm_kzalloc(&client
->dev
,
174 sizeof(struct max8925_chip
), GFP_KERNEL
);
178 chip
->dev
= &client
->dev
;
179 i2c_set_clientdata(client
, chip
);
180 dev_set_drvdata(chip
->dev
, chip
);
181 mutex_init(&chip
->io_lock
);
183 chip
->rtc
= i2c_new_dummy(chip
->i2c
->adapter
, RTC_I2C_ADDR
);
185 dev_err(chip
->dev
, "Failed to allocate I2C device for RTC\n");
188 i2c_set_clientdata(chip
->rtc
, chip
);
190 chip
->adc
= i2c_new_dummy(chip
->i2c
->adapter
, ADC_I2C_ADDR
);
192 dev_err(chip
->dev
, "Failed to allocate I2C device for ADC\n");
193 i2c_unregister_device(chip
->rtc
);
196 i2c_set_clientdata(chip
->adc
, chip
);
198 device_init_wakeup(&client
->dev
, 1);
200 max8925_device_init(chip
, pdata
);
205 static int max8925_remove(struct i2c_client
*client
)
207 struct max8925_chip
*chip
= i2c_get_clientdata(client
);
209 max8925_device_exit(chip
);
210 i2c_unregister_device(chip
->adc
);
211 i2c_unregister_device(chip
->rtc
);
215 #ifdef CONFIG_PM_SLEEP
216 static int max8925_suspend(struct device
*dev
)
218 struct i2c_client
*client
= container_of(dev
, struct i2c_client
, dev
);
219 struct max8925_chip
*chip
= i2c_get_clientdata(client
);
221 if (device_may_wakeup(dev
) && chip
->wakeup_flag
)
222 enable_irq_wake(chip
->core_irq
);
226 static int max8925_resume(struct device
*dev
)
228 struct i2c_client
*client
= container_of(dev
, struct i2c_client
, dev
);
229 struct max8925_chip
*chip
= i2c_get_clientdata(client
);
231 if (device_may_wakeup(dev
) && chip
->wakeup_flag
)
232 disable_irq_wake(chip
->core_irq
);
237 static SIMPLE_DEV_PM_OPS(max8925_pm_ops
, max8925_suspend
, max8925_resume
);
239 static const struct of_device_id max8925_dt_ids
[] = {
240 { .compatible
= "maxim,max8925", },
243 MODULE_DEVICE_TABLE(of
, max8925_dt_ids
);
245 static struct i2c_driver max8925_driver
= {
248 .owner
= THIS_MODULE
,
249 .pm
= &max8925_pm_ops
,
250 .of_match_table
= max8925_dt_ids
,
252 .probe
= max8925_probe
,
253 .remove
= max8925_remove
,
254 .id_table
= max8925_id_table
,
257 static int __init
max8925_i2c_init(void)
261 ret
= i2c_add_driver(&max8925_driver
);
263 pr_err("Failed to register MAX8925 I2C driver: %d\n", ret
);
267 subsys_initcall(max8925_i2c_init
);
269 static void __exit
max8925_i2c_exit(void)
271 i2c_del_driver(&max8925_driver
);
273 module_exit(max8925_i2c_exit
);
275 MODULE_DESCRIPTION("I2C Driver for Maxim 8925");
276 MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>");
277 MODULE_LICENSE("GPL");