2 * AD714X CapTouch Programmable Controller driver (I2C bus)
4 * Copyright 2009-2011 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/input.h> /* BUS_I2C */
10 #include <linux/i2c.h>
11 #include <linux/module.h>
12 #include <linux/types.h>
16 static int __maybe_unused
ad714x_i2c_suspend(struct device
*dev
)
18 return ad714x_disable(i2c_get_clientdata(to_i2c_client(dev
)));
21 static int __maybe_unused
ad714x_i2c_resume(struct device
*dev
)
23 return ad714x_enable(i2c_get_clientdata(to_i2c_client(dev
)));
26 static SIMPLE_DEV_PM_OPS(ad714x_i2c_pm
, ad714x_i2c_suspend
, ad714x_i2c_resume
);
28 static int ad714x_i2c_write(struct ad714x_chip
*chip
,
29 unsigned short reg
, unsigned short data
)
31 struct i2c_client
*client
= to_i2c_client(chip
->dev
);
34 chip
->xfer_buf
[0] = cpu_to_be16(reg
);
35 chip
->xfer_buf
[1] = cpu_to_be16(data
);
37 error
= i2c_master_send(client
, (u8
*)chip
->xfer_buf
,
38 2 * sizeof(*chip
->xfer_buf
));
39 if (unlikely(error
< 0)) {
40 dev_err(&client
->dev
, "I2C write error: %d\n", error
);
47 static int ad714x_i2c_read(struct ad714x_chip
*chip
,
48 unsigned short reg
, unsigned short *data
, size_t len
)
50 struct i2c_client
*client
= to_i2c_client(chip
->dev
);
54 chip
->xfer_buf
[0] = cpu_to_be16(reg
);
56 error
= i2c_master_send(client
, (u8
*)chip
->xfer_buf
,
57 sizeof(*chip
->xfer_buf
));
59 error
= i2c_master_recv(client
, (u8
*)chip
->xfer_buf
,
60 len
* sizeof(*chip
->xfer_buf
));
62 if (unlikely(error
< 0)) {
63 dev_err(&client
->dev
, "I2C read error: %d\n", error
);
67 for (i
= 0; i
< len
; i
++)
68 data
[i
] = be16_to_cpu(chip
->xfer_buf
[i
]);
73 static int ad714x_i2c_probe(struct i2c_client
*client
,
74 const struct i2c_device_id
*id
)
76 struct ad714x_chip
*chip
;
78 chip
= ad714x_probe(&client
->dev
, BUS_I2C
, client
->irq
,
79 ad714x_i2c_read
, ad714x_i2c_write
);
83 i2c_set_clientdata(client
, chip
);
88 static int ad714x_i2c_remove(struct i2c_client
*client
)
90 struct ad714x_chip
*chip
= i2c_get_clientdata(client
);
97 static const struct i2c_device_id ad714x_id
[] = {
98 { "ad7142_captouch", 0 },
99 { "ad7143_captouch", 0 },
100 { "ad7147_captouch", 0 },
101 { "ad7147a_captouch", 0 },
102 { "ad7148_captouch", 0 },
105 MODULE_DEVICE_TABLE(i2c
, ad714x_id
);
107 static struct i2c_driver ad714x_i2c_driver
= {
109 .name
= "ad714x_captouch",
110 .pm
= &ad714x_i2c_pm
,
112 .probe
= ad714x_i2c_probe
,
113 .remove
= ad714x_i2c_remove
,
114 .id_table
= ad714x_id
,
117 module_i2c_driver(ad714x_i2c_driver
);
119 MODULE_DESCRIPTION("Analog Devices AD714X Capacitance Touch Sensor I2C Bus Driver");
120 MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
121 MODULE_LICENSE("GPL");