]> git.zerfleddert.de Git - ms2-fixes/blob - debounce.c
be78a44777d86a7a1b1900a06823755a6cdb6feb
[ms2-fixes] / debounce.c
1 #include <linux/module.h>
2 #include <linux/device.h>
3 #include <linux/platform_device.h>
4 #include <linux/gpio_event.h>
5 #include <mach/gpio.h>
6
7 #define PREFIX "debounce: "
8
9 static unsigned old_flags = 0;
10 static ktime_t old_debounce_delay;
11 static ktime_t old_settle_time;
12 static ktime_t old_poll_time;
13 static struct gpio_event_matrix_info *gpio_evmi = NULL;
14 static int hw_debounce = 0;
15 static int hw_debounce_time = 0;
16
17 static int find_ms2_dev(struct device *dev, void *data)
18 {
19 if (!strncmp((char*)data, dev_name(dev), strlen((char*)data))) {
20 printk(KERN_INFO PREFIX "Found it\n");
21 return 1;
22 }
23 return 0;
24 }
25
26 /* hardware debounce: (time + 1) * 31us */
27 static void hw_debounce_set(int enable, int time) {
28 int i;
29
30 if (gpio_evmi == NULL)
31 return;
32
33 for (i = 0; i < gpio_evmi->ninputs; i++) {
34 int gpio = gpio_evmi->input_gpios[i];
35
36 if (enable != -1) {
37 printk(KERN_INFO PREFIX "%sabling hardware debounce for GPIO %d\n", (enable?"En":"Dis"), gpio);
38 omap_set_gpio_debounce(gpio, enable);
39 }
40
41 if (time != -1) {
42 printk(KERN_INFO PREFIX "Setting hardware debounce time for GPIO %d to %d (%dus)\n", gpio, time, (time+1)*31);
43 omap_set_gpio_debounce_time(gpio, time);
44 }
45 }
46 }
47
48
49 static ssize_t show_debounce_delay(struct device *dev, struct device_attribute *attr, char *buf)
50 {
51 if (!gpio_evmi)
52 return -ENODEV;
53
54 return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->debounce_delay.tv.nsec / NSEC_PER_MSEC));
55 }
56
57 static void set_debounce_delay(long delay)
58 {
59 if (gpio_evmi->debounce_delay.tv.nsec != delay * NSEC_PER_MSEC) {
60 printk(KERN_INFO PREFIX "Changing debounce_delay\n");
61 gpio_evmi->debounce_delay.tv.nsec = delay * NSEC_PER_MSEC;
62 printk(KERN_INFO PREFIX "debounce_delay: %u\n", gpio_evmi->debounce_delay.tv.nsec);
63 }
64
65 #if 0
66 if (gpio_evmi->debounce_delay.tv.nsec != 0) {
67 if (!(gpio_evmi->flags & GPIOKPF_DEBOUNCE)) {
68 printk(KERN_INFO PREFIX "Activating debounce\n");
69 gpio_evmi->flags |= GPIOKPF_DEBOUNCE;
70 }
71 } else {
72 if (gpio_evmi->flags & GPIOKPF_DEBOUNCE) {
73 printk(KERN_INFO PREFIX "Deactivating debounce\n");
74 gpio_evmi->flags &= ~GPIOKPF_DEBOUNCE;
75 }
76 }
77 #endif
78 }
79
80 static ssize_t store_debounce_delay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
81 {
82 long int delay;
83
84 if (!gpio_evmi)
85 return -ENODEV;
86
87 sscanf(buf, "%ld", &delay);
88 set_debounce_delay(delay);
89
90 return count;
91 }
92
93 static ssize_t show_settle_time(struct device *dev, struct device_attribute *attr, char *buf)
94 {
95 if (!gpio_evmi)
96 return -ENODEV;
97
98 return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->settle_time.tv.nsec / NSEC_PER_USEC));
99 }
100
101 static ssize_t store_settle_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
102 {
103 long int delay;
104
105 if (!gpio_evmi)
106 return -ENODEV;
107
108 sscanf(buf, "%ld", &delay);
109 gpio_evmi->settle_time.tv.nsec = delay * NSEC_PER_USEC;
110
111 return count;
112 }
113
114 static ssize_t show_poll_time(struct device *dev, struct device_attribute *attr, char *buf)
115 {
116 if (!gpio_evmi)
117 return -ENODEV;
118
119 return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->poll_time.tv.nsec / NSEC_PER_MSEC));
120 }
121
122 static ssize_t store_poll_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
123 {
124 long int delay;
125
126 if (!gpio_evmi)
127 return -ENODEV;
128
129 sscanf(buf, "%ld", &delay);
130 gpio_evmi->poll_time.tv.nsec = delay * NSEC_PER_MSEC;
131
132 return count;
133 }
134
135 static ssize_t show_flags(struct device *dev, struct device_attribute *attr, char *buf)
136 {
137 if (!gpio_evmi)
138 return -ENODEV;
139
140 return snprintf(buf, PAGE_SIZE, "0x%x\n", gpio_evmi->flags);
141 }
142
143 static ssize_t store_flags(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
144 {
145 unsigned flags;
146
147 if (!gpio_evmi)
148 return -ENODEV;
149
150 sscanf(buf, "0x%x", &flags);
151
152 printk(KERN_INFO PREFIX "flags: 0x%x\n", flags);
153
154 gpio_evmi->flags = flags;
155
156 return count;
157 }
158
159 static ssize_t show_debounce_flag(struct device *dev, struct device_attribute *attr, char *buf)
160 {
161 if (!gpio_evmi)
162 return -ENODEV;
163
164 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_DEBOUNCE) ? 1 : 0);
165 }
166
167 static ssize_t store_debounce_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
168 {
169 unsigned flag;
170
171 if (!gpio_evmi)
172 return -ENODEV;
173
174 sscanf(buf, "%u", &flag);
175
176 if (flag) {
177 gpio_evmi->flags |= GPIOKPF_DEBOUNCE;
178 } else {
179 gpio_evmi->flags &= ~GPIOKPF_DEBOUNCE;
180 }
181
182 return count;
183 }
184
185 static ssize_t show_remove_some_phantom_keys_flag(struct device *dev, struct device_attribute *attr, char *buf)
186 {
187 if (!gpio_evmi)
188 return -ENODEV;
189
190 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_REMOVE_SOME_PHANTOM_KEYS) ? 1 : 0);
191 }
192
193 static ssize_t store_remove_some_phantom_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
194 {
195 unsigned flag;
196
197 if (!gpio_evmi)
198 return -ENODEV;
199
200 sscanf(buf, "%u", &flag);
201
202 if (flag) {
203 gpio_evmi->flags |= GPIOKPF_REMOVE_SOME_PHANTOM_KEYS;
204 } else {
205 gpio_evmi->flags &= ~GPIOKPF_REMOVE_SOME_PHANTOM_KEYS;
206 }
207
208 return count;
209 }
210
211 static ssize_t show_print_unmapped_keys_flag(struct device *dev, struct device_attribute *attr, char *buf)
212 {
213 if (!gpio_evmi)
214 return -ENODEV;
215
216 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_PRINT_UNMAPPED_KEYS) ? 1 : 0);
217 }
218
219 static ssize_t store_print_unmapped_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
220 {
221 unsigned flag;
222
223 if (!gpio_evmi)
224 return -ENODEV;
225
226 sscanf(buf, "%u", &flag);
227
228 if (flag) {
229 gpio_evmi->flags |= GPIOKPF_PRINT_UNMAPPED_KEYS;
230 } else {
231 gpio_evmi->flags &= ~GPIOKPF_PRINT_UNMAPPED_KEYS;
232 }
233
234 return count;
235 }
236
237 static ssize_t show_print_mapped_keys_flag(struct device *dev, struct device_attribute *attr, char *buf)
238 {
239 if (!gpio_evmi)
240 return -ENODEV;
241
242 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_PRINT_MAPPED_KEYS) ? 1 : 0);
243 }
244
245 static ssize_t store_print_mapped_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
246 {
247 unsigned flag;
248
249 if (!gpio_evmi)
250 return -ENODEV;
251
252 sscanf(buf, "%u", &flag);
253
254 if (flag) {
255 gpio_evmi->flags |= GPIOKPF_PRINT_MAPPED_KEYS;
256 } else {
257 gpio_evmi->flags &= ~GPIOKPF_PRINT_MAPPED_KEYS;
258 }
259
260 return count;
261 }
262
263 static ssize_t show_print_phantom_keys_flag(struct device *dev, struct device_attribute *attr, char *buf)
264 {
265 if (!gpio_evmi)
266 return -ENODEV;
267
268 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_PRINT_PHANTOM_KEYS) ? 1 : 0);
269 }
270
271 static ssize_t store_print_phantom_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
272 {
273 unsigned flag;
274
275 if (!gpio_evmi)
276 return -ENODEV;
277
278 sscanf(buf, "%u", &flag);
279
280 if (flag) {
281 gpio_evmi->flags |= GPIOKPF_PRINT_PHANTOM_KEYS;
282 } else {
283 gpio_evmi->flags &= ~GPIOKPF_PRINT_PHANTOM_KEYS;
284 }
285
286 return count;
287 }
288
289 static ssize_t show_active_high_flag(struct device *dev, struct device_attribute *attr, char *buf)
290 {
291 if (!gpio_evmi)
292 return -ENODEV;
293
294 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_ACTIVE_HIGH) ? 1 : 0);
295 }
296
297 static ssize_t store_active_high_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
298 {
299 unsigned flag;
300
301 if (!gpio_evmi)
302 return -ENODEV;
303
304 sscanf(buf, "%u", &flag);
305
306 if (flag) {
307 gpio_evmi->flags |= GPIOKPF_ACTIVE_HIGH;
308 } else {
309 gpio_evmi->flags &= ~GPIOKPF_ACTIVE_HIGH;
310 }
311
312 return count;
313 }
314
315 static ssize_t show_drive_inactive_flag(struct device *dev, struct device_attribute *attr, char *buf)
316 {
317 if (!gpio_evmi)
318 return -ENODEV;
319
320 return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_DRIVE_INACTIVE) ? 1 : 0);
321 }
322
323 static ssize_t store_drive_inactive_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
324 {
325 unsigned flag;
326
327 if (!gpio_evmi)
328 return -ENODEV;
329
330 sscanf(buf, "%u", &flag);
331
332 if (flag) {
333 gpio_evmi->flags |= GPIOKPF_DRIVE_INACTIVE;
334 } else {
335 gpio_evmi->flags &= ~GPIOKPF_DRIVE_INACTIVE;
336 }
337
338 return count;
339 }
340
341 static ssize_t show_hw_debounce(struct device *dev, struct device_attribute *attr, char *buf)
342 {
343 return snprintf(buf, PAGE_SIZE, "%d\n", hw_debounce);
344 }
345
346 static ssize_t store_hw_debounce(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
347 {
348 int enable;
349
350 sscanf(buf, "%d", &enable);
351
352 if (enable) {
353 hw_debounce_set(1, -1);
354 hw_debounce = 1;
355 }
356 else {
357 hw_debounce_set(0, -1);
358 hw_debounce = 0;
359 }
360
361 return count;
362 }
363
364 static ssize_t show_hw_debounce_time(struct device *dev, struct device_attribute *attr, char *buf)
365 {
366 return snprintf(buf, PAGE_SIZE, "%d\n", hw_debounce_time);
367 }
368
369 static ssize_t store_hw_debounce_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
370 {
371 int time;
372
373 sscanf(buf, "%d", &time);
374
375 if ((time < 0) || (time > 0xff))
376 return count;
377
378 hw_debounce_set(-1, time);
379 hw_debounce_time = time;
380
381 return count;
382 }
383
384 static DEVICE_ATTR(debounce_delay, (S_IRUGO | S_IWUGO), show_debounce_delay, store_debounce_delay);
385 static DEVICE_ATTR(settle_time, (S_IRUGO | S_IWUGO), show_settle_time, store_settle_time);
386 static DEVICE_ATTR(poll_time, (S_IRUGO | S_IWUGO), show_poll_time, store_poll_time);
387 static DEVICE_ATTR(flags, (S_IRUGO), show_flags, store_flags);
388 static DEVICE_ATTR(debounce_flag, (S_IRUGO | S_IWUGO), show_debounce_flag, store_debounce_flag);
389 static DEVICE_ATTR(remove_some_phantom_keys_flag, (S_IRUGO | S_IWUGO), show_remove_some_phantom_keys_flag, store_remove_some_phantom_keys_flag);
390 static DEVICE_ATTR(print_unmapped_keys_flag, (S_IRUGO | S_IWUGO), show_print_unmapped_keys_flag, store_print_unmapped_keys_flag);
391 static DEVICE_ATTR(print_mapped_keys_flag, (S_IRUGO | S_IWUGO), show_print_mapped_keys_flag, store_print_mapped_keys_flag);
392 static DEVICE_ATTR(print_phantom_keys_flag, (S_IRUGO | S_IWUGO), show_print_phantom_keys_flag, store_print_phantom_keys_flag);
393 static DEVICE_ATTR(active_high_flag, (S_IRUGO), show_active_high_flag, store_active_high_flag);
394 static DEVICE_ATTR(drive_inactive_flag, (S_IRUGO | S_IWUGO), show_drive_inactive_flag, store_drive_inactive_flag);
395 static DEVICE_ATTR(hw_debounce, (S_IRUGO | S_IWUGO), show_hw_debounce, store_hw_debounce);
396 static DEVICE_ATTR(hw_debounce_time, (S_IRUGO | S_IWUGO), show_hw_debounce_time, store_hw_debounce_time);
397
398 static void debounce_release(struct device *dev)
399 {
400 }
401
402 static struct device debounce_device = {
403 .init_name = "debounce",
404 .release = debounce_release,
405 };
406
407 static int __init debounce_init(void)
408 {
409 struct device *event_dev = NULL;
410 struct gpio_event_platform_data *gpio_epd;
411 struct gpio_event_info *gpio_ei;
412 int err = 0;
413
414 printk(KERN_INFO PREFIX "Searching for " GPIO_EVENT_DEV_NAME "...\n");
415
416 event_dev = device_find_child(&platform_bus, GPIO_EVENT_DEV_NAME, find_ms2_dev);
417 if (event_dev == NULL)
418 return -ENODEV;
419
420 gpio_epd = (struct gpio_event_platform_data*)event_dev->platform_data;
421 printk(KERN_INFO PREFIX "And there is a %s connected...\n", gpio_epd->name);
422 if (strcmp(gpio_epd->name, "sholes-keypad"))
423 return -ENODEV;
424
425 gpio_ei = (struct gpio_event_info*)gpio_epd->info[0];
426 gpio_evmi = container_of(gpio_ei, struct gpio_event_matrix_info, info);
427
428 err = device_register(&debounce_device);
429 if (err) {
430 return err;
431 }
432
433 err = device_create_file(&debounce_device, &dev_attr_debounce_delay);
434 err = device_create_file(&debounce_device, &dev_attr_settle_time);
435 err = device_create_file(&debounce_device, &dev_attr_poll_time);
436 err = device_create_file(&debounce_device, &dev_attr_flags);
437 err = device_create_file(&debounce_device, &dev_attr_debounce_flag);
438 err = device_create_file(&debounce_device, &dev_attr_remove_some_phantom_keys_flag);
439 err = device_create_file(&debounce_device, &dev_attr_print_unmapped_keys_flag);
440 err = device_create_file(&debounce_device, &dev_attr_print_mapped_keys_flag);
441 err = device_create_file(&debounce_device, &dev_attr_print_phantom_keys_flag);
442 err = device_create_file(&debounce_device, &dev_attr_active_high_flag);
443 err = device_create_file(&debounce_device, &dev_attr_drive_inactive_flag);
444 err = device_create_file(&debounce_device, &dev_attr_hw_debounce);
445 err = device_create_file(&debounce_device, &dev_attr_hw_debounce_time);
446
447 printk(KERN_INFO PREFIX "settle_time: %u\n", gpio_evmi->settle_time.tv.nsec);
448 printk(KERN_INFO PREFIX "poll_time: %u\n", gpio_evmi->poll_time.tv.nsec);
449 printk(KERN_INFO PREFIX "debounce_delay: %u\n", gpio_evmi->debounce_delay.tv.nsec);
450 printk(KERN_INFO PREFIX "flags: 0x%x\n", gpio_evmi->flags);
451
452 old_debounce_delay = gpio_evmi->debounce_delay;
453 old_settle_time = gpio_evmi->settle_time;
454 old_poll_time = gpio_evmi->poll_time;
455 old_flags = gpio_evmi->flags;
456
457 printk(KERN_INFO PREFIX "flags: 0x%x\n", gpio_evmi->flags);
458
459 return 0;
460 }
461
462 static void __exit debounce_exit(void)
463 {
464 if (gpio_evmi) {
465 if (gpio_evmi->debounce_delay.tv.nsec != old_debounce_delay.tv.nsec) {
466 printk(KERN_INFO PREFIX "Restoring debounce_delay\n");
467 gpio_evmi->debounce_delay = old_debounce_delay;
468 printk(KERN_INFO PREFIX "debounce_delay: %u\n", gpio_evmi->debounce_delay.tv.nsec);
469 }
470 if (gpio_evmi->flags != old_flags) {
471 printk(KERN_INFO PREFIX "Restoring flags\n");
472 gpio_evmi->flags = old_flags;
473 printk(KERN_INFO PREFIX "flags: 0x%x\n", gpio_evmi->flags);
474 }
475 gpio_evmi->settle_time = old_settle_time;
476 gpio_evmi->poll_time = old_poll_time;
477 }
478 hw_debounce_set(0, 0);
479 device_remove_file(&debounce_device, &dev_attr_debounce_delay);
480 device_remove_file(&debounce_device, &dev_attr_settle_time);
481 device_remove_file(&debounce_device, &dev_attr_poll_time);
482 device_remove_file(&debounce_device, &dev_attr_flags);
483 device_remove_file(&debounce_device, &dev_attr_debounce_flag);
484 device_remove_file(&debounce_device, &dev_attr_remove_some_phantom_keys_flag);
485 device_remove_file(&debounce_device, &dev_attr_print_unmapped_keys_flag);
486 device_remove_file(&debounce_device, &dev_attr_print_mapped_keys_flag);
487 device_remove_file(&debounce_device, &dev_attr_print_phantom_keys_flag);
488 device_remove_file(&debounce_device, &dev_attr_active_high_flag);
489 device_remove_file(&debounce_device, &dev_attr_drive_inactive_flag);
490 device_remove_file(&debounce_device, &dev_attr_hw_debounce);
491 device_remove_file(&debounce_device, &dev_attr_hw_debounce_time);
492 device_unregister(&debounce_device);
493 }
494
495 module_init(debounce_init);
496 module_exit(debounce_exit);
497
498 MODULE_LICENSE("GPL");
499 MODULE_AUTHOR("Michael Gernoth <michael@gernoth.net>");
Impressum, Datenschutz