2 * AD7879-1/AD7889-1 touchscreen (I2C bus)
4 * Copyright (C) 2008-2010 Michael Hennerich, 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>
17 #define AD7879_DEVID 0x79 /* AD7879-1/AD7889-1 */
20 static int ad7879_i2c_suspend(struct device
*dev
)
22 struct i2c_client
*client
= to_i2c_client(dev
);
23 struct ad7879
*ts
= i2c_get_clientdata(client
);
30 static int ad7879_i2c_resume(struct device
*dev
)
32 struct i2c_client
*client
= to_i2c_client(dev
);
33 struct ad7879
*ts
= i2c_get_clientdata(client
);
40 static SIMPLE_DEV_PM_OPS(ad7879_i2c_pm
, ad7879_i2c_suspend
, ad7879_i2c_resume
);
43 /* All registers are word-sized.
44 * AD7879 uses a high-byte first convention.
46 static int ad7879_i2c_read(struct device
*dev
, u8 reg
)
48 struct i2c_client
*client
= to_i2c_client(dev
);
50 return swab16(i2c_smbus_read_word_data(client
, reg
));
53 static int ad7879_i2c_multi_read(struct device
*dev
,
54 u8 first_reg
, u8 count
, u16
*buf
)
56 struct i2c_client
*client
= to_i2c_client(dev
);
59 i2c_smbus_read_i2c_block_data(client
, first_reg
, count
* 2, (u8
*)buf
);
61 for (idx
= 0; idx
< count
; ++idx
)
62 buf
[idx
] = swab16(buf
[idx
]);
67 static int ad7879_i2c_write(struct device
*dev
, u8 reg
, u16 val
)
69 struct i2c_client
*client
= to_i2c_client(dev
);
71 return i2c_smbus_write_word_data(client
, reg
, swab16(val
));
74 static const struct ad7879_bus_ops ad7879_i2c_bus_ops
= {
76 .read
= ad7879_i2c_read
,
77 .multi_read
= ad7879_i2c_multi_read
,
78 .write
= ad7879_i2c_write
,
81 static int __devinit
ad7879_i2c_probe(struct i2c_client
*client
,
82 const struct i2c_device_id
*id
)
86 if (!i2c_check_functionality(client
->adapter
,
87 I2C_FUNC_SMBUS_WORD_DATA
)) {
88 dev_err(&client
->dev
, "SMBUS Word Data not Supported\n");
92 ts
= ad7879_probe(&client
->dev
, AD7879_DEVID
, client
->irq
,
97 i2c_set_clientdata(client
, ts
);
102 static int __devexit
ad7879_i2c_remove(struct i2c_client
*client
)
104 struct ad7879
*ts
= i2c_get_clientdata(client
);
111 static const struct i2c_device_id ad7879_id
[] = {
116 MODULE_DEVICE_TABLE(i2c
, ad7879_id
);
118 static struct i2c_driver ad7879_i2c_driver
= {
121 .owner
= THIS_MODULE
,
123 .pm
= &ad7879_i2c_pm
,
126 .probe
= ad7879_i2c_probe
,
127 .remove
= __devexit_p(ad7879_i2c_remove
),
128 .id_table
= ad7879_id
,
131 static int __init
ad7879_i2c_init(void)
133 return i2c_add_driver(&ad7879_i2c_driver
);
135 module_init(ad7879_i2c_init
);
137 static void __exit
ad7879_i2c_exit(void)
139 i2c_del_driver(&ad7879_i2c_driver
);
141 module_exit(ad7879_i2c_exit
);
143 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
144 MODULE_DESCRIPTION("AD7879(-1) touchscreen I2C bus driver");
145 MODULE_LICENSE("GPL");
146 MODULE_ALIAS("i2c:ad7879");