2 * Driver for a keypad w/16 buttons connected to a PCF8574 I2C I/O expander
4 * Copyright 2005-2008 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/module.h>
10 #include <linux/input.h>
11 #include <linux/interrupt.h>
12 #include <linux/i2c.h>
13 #include <linux/slab.h>
14 #include <linux/workqueue.h>
16 #define DRV_NAME "pcf8574_keypad"
18 static const unsigned char pcf8574_kp_btncode
[] = {
39 unsigned short btncode
[ARRAY_SIZE(pcf8574_kp_btncode
)];
40 struct input_dev
*idev
;
41 struct i2c_client
*client
;
44 unsigned char laststate
;
47 static short read_state(struct kp_data
*lp
)
49 unsigned char x
, y
, a
, b
;
51 i2c_smbus_write_byte(lp
->client
, 240);
52 x
= 0xF & (~(i2c_smbus_read_byte(lp
->client
) >> 4));
54 i2c_smbus_write_byte(lp
->client
, 15);
55 y
= 0xF & (~i2c_smbus_read_byte(lp
->client
));
57 for (a
= 0; x
> 0; a
++)
59 for (b
= 0; y
> 0; b
++)
62 return ((a
- 1) * 4) + b
;
65 static irqreturn_t
pcf8574_kp_irq_handler(int irq
, void *dev_id
)
67 struct kp_data
*lp
= dev_id
;
68 unsigned char nextstate
= read_state(lp
);
70 if (lp
->laststate
!= nextstate
) {
71 int key_down
= nextstate
< ARRAY_SIZE(lp
->btncode
);
72 unsigned short keycode
= key_down
?
73 lp
->btncode
[nextstate
] : lp
->btncode
[lp
->laststate
];
75 input_report_key(lp
->idev
, keycode
, key_down
);
78 lp
->laststate
= nextstate
;
84 static int pcf8574_kp_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
87 struct input_dev
*idev
;
90 if (i2c_smbus_write_byte(client
, 240) < 0) {
91 dev_err(&client
->dev
, "probe: write fail\n");
95 lp
= kzalloc(sizeof(*lp
), GFP_KERNEL
);
99 idev
= input_allocate_device();
101 dev_err(&client
->dev
, "Can't allocate input device\n");
109 idev
->evbit
[0] = BIT_MASK(EV_KEY
);
110 idev
->keycode
= lp
->btncode
;
111 idev
->keycodesize
= sizeof(lp
->btncode
[0]);
112 idev
->keycodemax
= ARRAY_SIZE(lp
->btncode
);
114 for (i
= 0; i
< ARRAY_SIZE(pcf8574_kp_btncode
); i
++) {
115 if (lp
->btncode
[i
] <= KEY_MAX
) {
116 lp
->btncode
[i
] = pcf8574_kp_btncode
[i
];
117 __set_bit(lp
->btncode
[i
], idev
->keybit
);
120 __clear_bit(KEY_RESERVED
, idev
->keybit
);
122 sprintf(lp
->name
, DRV_NAME
);
123 sprintf(lp
->phys
, "kp_data/input0");
125 idev
->name
= lp
->name
;
126 idev
->phys
= lp
->phys
;
127 idev
->id
.bustype
= BUS_I2C
;
128 idev
->id
.vendor
= 0x0001;
129 idev
->id
.product
= 0x0001;
130 idev
->id
.version
= 0x0100;
132 lp
->laststate
= read_state(lp
);
134 ret
= request_threaded_irq(client
->irq
, NULL
, pcf8574_kp_irq_handler
,
135 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
138 dev_err(&client
->dev
, "IRQ %d is not free\n", client
->irq
);
139 goto fail_free_device
;
142 ret
= input_register_device(idev
);
144 dev_err(&client
->dev
, "input_register_device() failed\n");
148 i2c_set_clientdata(client
, lp
);
152 free_irq(client
->irq
, lp
);
154 input_free_device(idev
);
161 static int pcf8574_kp_remove(struct i2c_client
*client
)
163 struct kp_data
*lp
= i2c_get_clientdata(client
);
165 free_irq(client
->irq
, lp
);
167 input_unregister_device(lp
->idev
);
174 static int pcf8574_kp_resume(struct device
*dev
)
176 struct i2c_client
*client
= to_i2c_client(dev
);
178 enable_irq(client
->irq
);
183 static int pcf8574_kp_suspend(struct device
*dev
)
185 struct i2c_client
*client
= to_i2c_client(dev
);
187 disable_irq(client
->irq
);
192 static const struct dev_pm_ops pcf8574_kp_pm_ops
= {
193 .suspend
= pcf8574_kp_suspend
,
194 .resume
= pcf8574_kp_resume
,
198 # define pcf8574_kp_resume NULL
199 # define pcf8574_kp_suspend NULL
202 static const struct i2c_device_id pcf8574_kp_id
[] = {
206 MODULE_DEVICE_TABLE(i2c
, pcf8574_kp_id
);
208 static struct i2c_driver pcf8574_kp_driver
= {
212 .pm
= &pcf8574_kp_pm_ops
,
215 .probe
= pcf8574_kp_probe
,
216 .remove
= pcf8574_kp_remove
,
217 .id_table
= pcf8574_kp_id
,
220 module_i2c_driver(pcf8574_kp_driver
);
222 MODULE_AUTHOR("Michael Hennerich");
223 MODULE_DESCRIPTION("Keypad input driver for 16 keys connected to PCF8574");
224 MODULE_LICENSE("GPL");