diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-04 09:59:47 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-04 09:59:47 -0500 |
| commit | 5cb2faa6ede7ada9cb2bffc832c4ce60f53d6834 (patch) | |
| tree | 7b72b66081d042a41dc822575503133364857ce2 /drivers/input | |
| parent | e0ee98513d1a2e24d2ddbdecf4216bcca29d1158 (diff) | |
| parent | 6060e8df517847bf445ebc61de7d4d9c7faae990 (diff) | |
Merge branch 'pending-misc' (early part) into devel
Diffstat (limited to 'drivers/input')
| -rw-r--r-- | drivers/input/ff-core.c | 20 | ||||
| -rw-r--r-- | drivers/input/ff-memless.c | 26 | ||||
| -rw-r--r-- | drivers/input/input.c | 94 | ||||
| -rw-r--r-- | drivers/input/keyboard/atkbd.c | 145 | ||||
| -rw-r--r-- | drivers/input/keyboard/gpio_keys.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/input/misc/hp_sdc_rtc.c | 2 | ||||
| -rw-r--r-- | drivers/input/mouse/lifebook.c | 3 | ||||
| -rw-r--r-- | drivers/input/mouse/logips2pp.c | 2 | ||||
| -rw-r--r-- | drivers/input/mouse/psmouse-base.c | 4 | ||||
| -rw-r--r-- | drivers/input/mouse/synaptics.c | 10 | ||||
| -rw-r--r-- | drivers/input/serio/i8042-x86ia64io.h | 13 | ||||
| -rw-r--r-- | drivers/input/serio/i8042.c | 35 |
13 files changed, 249 insertions, 107 deletions
diff --git a/drivers/input/ff-core.c b/drivers/input/ff-core.c index 72c63e5dd630..38df81fcdc3a 100644 --- a/drivers/input/ff-core.c +++ b/drivers/input/ff-core.c | |||
| @@ -337,16 +337,16 @@ int input_ff_create(struct input_dev *dev, int max_effects) | |||
| 337 | dev->ff = ff; | 337 | dev->ff = ff; |
| 338 | dev->flush = flush_effects; | 338 | dev->flush = flush_effects; |
| 339 | dev->event = input_ff_event; | 339 | dev->event = input_ff_event; |
| 340 | set_bit(EV_FF, dev->evbit); | 340 | __set_bit(EV_FF, dev->evbit); |
| 341 | 341 | ||
| 342 | /* Copy "true" bits into ff device bitmap */ | 342 | /* Copy "true" bits into ff device bitmap */ |
| 343 | for (i = 0; i <= FF_MAX; i++) | 343 | for (i = 0; i <= FF_MAX; i++) |
| 344 | if (test_bit(i, dev->ffbit)) | 344 | if (test_bit(i, dev->ffbit)) |
| 345 | set_bit(i, ff->ffbit); | 345 | __set_bit(i, ff->ffbit); |
| 346 | 346 | ||
| 347 | /* we can emulate RUMBLE with periodic effects */ | 347 | /* we can emulate RUMBLE with periodic effects */ |
| 348 | if (test_bit(FF_PERIODIC, ff->ffbit)) | 348 | if (test_bit(FF_PERIODIC, ff->ffbit)) |
| 349 | set_bit(FF_RUMBLE, dev->ffbit); | 349 | __set_bit(FF_RUMBLE, dev->ffbit); |
| 350 | 350 | ||
| 351 | return 0; | 351 | return 0; |
| 352 | } | 352 | } |
| @@ -362,12 +362,14 @@ EXPORT_SYMBOL_GPL(input_ff_create); | |||
| 362 | */ | 362 | */ |
| 363 | void input_ff_destroy(struct input_dev *dev) | 363 | void input_ff_destroy(struct input_dev *dev) |
| 364 | { | 364 | { |
| 365 | clear_bit(EV_FF, dev->evbit); | 365 | struct ff_device *ff = dev->ff; |
| 366 | if (dev->ff) { | 366 | |
| 367 | if (dev->ff->destroy) | 367 | __clear_bit(EV_FF, dev->evbit); |
| 368 | dev->ff->destroy(dev->ff); | 368 | if (ff) { |
| 369 | kfree(dev->ff->private); | 369 | if (ff->destroy) |
| 370 | kfree(dev->ff); | 370 | ff->destroy(ff); |
| 371 | kfree(ff->private); | ||
| 372 | kfree(ff); | ||
| 371 | dev->ff = NULL; | 373 | dev->ff = NULL; |
| 372 | } | 374 | } |
| 373 | } | 375 | } |
diff --git a/drivers/input/ff-memless.c b/drivers/input/ff-memless.c index 2d1415e16834..b483b2995fa9 100644 --- a/drivers/input/ff-memless.c +++ b/drivers/input/ff-memless.c | |||
| @@ -61,7 +61,6 @@ struct ml_device { | |||
| 61 | struct ml_effect_state states[FF_MEMLESS_EFFECTS]; | 61 | struct ml_effect_state states[FF_MEMLESS_EFFECTS]; |
| 62 | int gain; | 62 | int gain; |
| 63 | struct timer_list timer; | 63 | struct timer_list timer; |
| 64 | spinlock_t timer_lock; | ||
| 65 | struct input_dev *dev; | 64 | struct input_dev *dev; |
| 66 | 65 | ||
| 67 | int (*play_effect)(struct input_dev *dev, void *data, | 66 | int (*play_effect)(struct input_dev *dev, void *data, |
| @@ -368,38 +367,38 @@ static void ml_effect_timer(unsigned long timer_data) | |||
| 368 | { | 367 | { |
| 369 | struct input_dev *dev = (struct input_dev *)timer_data; | 368 | struct input_dev *dev = (struct input_dev *)timer_data; |
| 370 | struct ml_device *ml = dev->ff->private; | 369 | struct ml_device *ml = dev->ff->private; |
| 370 | unsigned long flags; | ||
| 371 | 371 | ||
| 372 | debug("timer: updating effects"); | 372 | debug("timer: updating effects"); |
| 373 | 373 | ||
| 374 | spin_lock(&ml->timer_lock); | 374 | spin_lock_irqsave(&dev->event_lock, flags); |
| 375 | ml_play_effects(ml); | 375 | ml_play_effects(ml); |
| 376 | spin_unlock(&ml->timer_lock); | 376 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 377 | } | 377 | } |
| 378 | 378 | ||
| 379 | /* | ||
| 380 | * Sets requested gain for FF effects. Called with dev->event_lock held. | ||
| 381 | */ | ||
| 379 | static void ml_ff_set_gain(struct input_dev *dev, u16 gain) | 382 | static void ml_ff_set_gain(struct input_dev *dev, u16 gain) |
| 380 | { | 383 | { |
| 381 | struct ml_device *ml = dev->ff->private; | 384 | struct ml_device *ml = dev->ff->private; |
| 382 | int i; | 385 | int i; |
| 383 | 386 | ||
| 384 | spin_lock_bh(&ml->timer_lock); | ||
| 385 | |||
| 386 | ml->gain = gain; | 387 | ml->gain = gain; |
| 387 | 388 | ||
| 388 | for (i = 0; i < FF_MEMLESS_EFFECTS; i++) | 389 | for (i = 0; i < FF_MEMLESS_EFFECTS; i++) |
| 389 | __clear_bit(FF_EFFECT_PLAYING, &ml->states[i].flags); | 390 | __clear_bit(FF_EFFECT_PLAYING, &ml->states[i].flags); |
| 390 | 391 | ||
| 391 | ml_play_effects(ml); | 392 | ml_play_effects(ml); |
| 392 | |||
| 393 | spin_unlock_bh(&ml->timer_lock); | ||
| 394 | } | 393 | } |
| 395 | 394 | ||
| 395 | /* | ||
| 396 | * Start/stop specified FF effect. Called with dev->event_lock held. | ||
| 397 | */ | ||
| 396 | static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) | 398 | static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) |
| 397 | { | 399 | { |
| 398 | struct ml_device *ml = dev->ff->private; | 400 | struct ml_device *ml = dev->ff->private; |
| 399 | struct ml_effect_state *state = &ml->states[effect_id]; | 401 | struct ml_effect_state *state = &ml->states[effect_id]; |
| 400 | unsigned long flags; | ||
| 401 | |||
| 402 | spin_lock_irqsave(&ml->timer_lock, flags); | ||
| 403 | 402 | ||
| 404 | if (value > 0) { | 403 | if (value > 0) { |
| 405 | debug("initiated play"); | 404 | debug("initiated play"); |
| @@ -425,8 +424,6 @@ static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) | |||
| 425 | ml_play_effects(ml); | 424 | ml_play_effects(ml); |
| 426 | } | 425 | } |
| 427 | 426 | ||
| 428 | spin_unlock_irqrestore(&ml->timer_lock, flags); | ||
| 429 | |||
| 430 | return 0; | 427 | return 0; |
| 431 | } | 428 | } |
| 432 | 429 | ||
| @@ -436,7 +433,7 @@ static int ml_ff_upload(struct input_dev *dev, | |||
| 436 | struct ml_device *ml = dev->ff->private; | 433 | struct ml_device *ml = dev->ff->private; |
| 437 | struct ml_effect_state *state = &ml->states[effect->id]; | 434 | struct ml_effect_state *state = &ml->states[effect->id]; |
| 438 | 435 | ||
| 439 | spin_lock_bh(&ml->timer_lock); | 436 | spin_lock_irq(&dev->event_lock); |
| 440 | 437 | ||
| 441 | if (test_bit(FF_EFFECT_STARTED, &state->flags)) { | 438 | if (test_bit(FF_EFFECT_STARTED, &state->flags)) { |
| 442 | __clear_bit(FF_EFFECT_PLAYING, &state->flags); | 439 | __clear_bit(FF_EFFECT_PLAYING, &state->flags); |
| @@ -448,7 +445,7 @@ static int ml_ff_upload(struct input_dev *dev, | |||
| 448 | ml_schedule_timer(ml); | 445 | ml_schedule_timer(ml); |
| 449 | } | 446 | } |
| 450 | 447 | ||
| 451 | spin_unlock_bh(&ml->timer_lock); | 448 | spin_unlock_irq(&dev->event_lock); |
| 452 | 449 | ||
| 453 | return 0; | 450 | return 0; |
| 454 | } | 451 | } |
| @@ -482,7 +479,6 @@ int input_ff_create_memless(struct input_dev *dev, void *data, | |||
| 482 | ml->private = data; | 479 | ml->private = data; |
| 483 | ml->play_effect = play_effect; | 480 | ml->play_effect = play_effect; |
| 484 | ml->gain = 0xffff; | 481 | ml->gain = 0xffff; |
| 485 | spin_lock_init(&ml->timer_lock); | ||
| 486 | setup_timer(&ml->timer, ml_effect_timer, (unsigned long)dev); | 482 | setup_timer(&ml->timer, ml_effect_timer, (unsigned long)dev); |
| 487 | 483 | ||
| 488 | set_bit(FF_GAIN, dev->ffbit); | 484 | set_bit(FF_GAIN, dev->ffbit); |
diff --git a/drivers/input/input.c b/drivers/input/input.c index c6f88ebb40c7..2266ecbfbc01 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
| @@ -782,10 +782,29 @@ static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait) | |||
| 782 | return 0; | 782 | return 0; |
| 783 | } | 783 | } |
| 784 | 784 | ||
| 785 | union input_seq_state { | ||
| 786 | struct { | ||
| 787 | unsigned short pos; | ||
| 788 | bool mutex_acquired; | ||
| 789 | }; | ||
| 790 | void *p; | ||
| 791 | }; | ||
| 792 | |||
| 785 | static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos) | 793 | static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos) |
| 786 | { | 794 | { |
| 787 | if (mutex_lock_interruptible(&input_mutex)) | 795 | union input_seq_state *state = (union input_seq_state *)&seq->private; |
| 788 | return NULL; | 796 | int error; |
| 797 | |||
| 798 | /* We need to fit into seq->private pointer */ | ||
| 799 | BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private)); | ||
| 800 | |||
| 801 | error = mutex_lock_interruptible(&input_mutex); | ||
| 802 | if (error) { | ||
| 803 | state->mutex_acquired = false; | ||
| 804 | return ERR_PTR(error); | ||
| 805 | } | ||
| 806 | |||
| 807 | state->mutex_acquired = true; | ||
| 789 | 808 | ||
| 790 | return seq_list_start(&input_dev_list, *pos); | 809 | return seq_list_start(&input_dev_list, *pos); |
| 791 | } | 810 | } |
| @@ -795,9 +814,12 @@ static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |||
| 795 | return seq_list_next(v, &input_dev_list, pos); | 814 | return seq_list_next(v, &input_dev_list, pos); |
| 796 | } | 815 | } |
| 797 | 816 | ||
| 798 | static void input_devices_seq_stop(struct seq_file *seq, void *v) | 817 | static void input_seq_stop(struct seq_file *seq, void *v) |
| 799 | { | 818 | { |
| 800 | mutex_unlock(&input_mutex); | 819 | union input_seq_state *state = (union input_seq_state *)&seq->private; |
| 820 | |||
| 821 | if (state->mutex_acquired) | ||
| 822 | mutex_unlock(&input_mutex); | ||
| 801 | } | 823 | } |
| 802 | 824 | ||
| 803 | static void input_seq_print_bitmap(struct seq_file *seq, const char *name, | 825 | static void input_seq_print_bitmap(struct seq_file *seq, const char *name, |
| @@ -861,7 +883,7 @@ static int input_devices_seq_show(struct seq_file *seq, void *v) | |||
| 861 | static const struct seq_operations input_devices_seq_ops = { | 883 | static const struct seq_operations input_devices_seq_ops = { |
| 862 | .start = input_devices_seq_start, | 884 | .start = input_devices_seq_start, |
| 863 | .next = input_devices_seq_next, | 885 | .next = input_devices_seq_next, |
| 864 | .stop = input_devices_seq_stop, | 886 | .stop = input_seq_stop, |
| 865 | .show = input_devices_seq_show, | 887 | .show = input_devices_seq_show, |
| 866 | }; | 888 | }; |
| 867 | 889 | ||
| @@ -881,40 +903,49 @@ static const struct file_operations input_devices_fileops = { | |||
| 881 | 903 | ||
| 882 | static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos) | 904 | static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos) |
| 883 | { | 905 | { |
| 884 | if (mutex_lock_interruptible(&input_mutex)) | 906 | union input_seq_state *state = (union input_seq_state *)&seq->private; |
| 885 | return NULL; | 907 | int error; |
| 908 | |||
| 909 | /* We need to fit into seq->private pointer */ | ||
| 910 | BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private)); | ||
| 911 | |||
| 912 | error = mutex_lock_interruptible(&input_mutex); | ||
| 913 | if (error) { | ||
| 914 | state->mutex_acquired = false; | ||
| 915 | return ERR_PTR(error); | ||
| 916 | } | ||
| 917 | |||
| 918 | state->mutex_acquired = true; | ||
| 919 | state->pos = *pos; | ||
| 886 | 920 | ||
| 887 | seq->private = (void *)(unsigned long)*pos; | ||
| 888 | return seq_list_start(&input_handler_list, *pos); | 921 | return seq_list_start(&input_handler_list, *pos); |
| 889 | } | 922 | } |
| 890 | 923 | ||
| 891 | static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos) | 924 | static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 892 | { | 925 | { |
| 893 | seq->private = (void *)(unsigned long)(*pos + 1); | 926 | union input_seq_state *state = (union input_seq_state *)&seq->private; |
| 894 | return seq_list_next(v, &input_handler_list, pos); | ||
| 895 | } | ||
| 896 | 927 | ||
| 897 | static void input_handlers_seq_stop(struct seq_file *seq, void *v) | 928 | state->pos = *pos + 1; |
| 898 | { | 929 | return seq_list_next(v, &input_handler_list, pos); |
| 899 | mutex_unlock(&input_mutex); | ||
| 900 | } | 930 | } |
| 901 | 931 | ||
| 902 | static int input_handlers_seq_show(struct seq_file *seq, void *v) | 932 | static int input_handlers_seq_show(struct seq_file *seq, void *v) |
| 903 | { | 933 | { |
| 904 | struct input_handler *handler = container_of(v, struct input_handler, node); | 934 | struct input_handler *handler = container_of(v, struct input_handler, node); |
| 935 | union input_seq_state *state = (union input_seq_state *)&seq->private; | ||
| 905 | 936 | ||
| 906 | seq_printf(seq, "N: Number=%ld Name=%s", | 937 | seq_printf(seq, "N: Number=%u Name=%s", state->pos, handler->name); |
| 907 | (unsigned long)seq->private, handler->name); | ||
| 908 | if (handler->fops) | 938 | if (handler->fops) |
| 909 | seq_printf(seq, " Minor=%d", handler->minor); | 939 | seq_printf(seq, " Minor=%d", handler->minor); |
| 910 | seq_putc(seq, '\n'); | 940 | seq_putc(seq, '\n'); |
| 911 | 941 | ||
| 912 | return 0; | 942 | return 0; |
| 913 | } | 943 | } |
| 944 | |||
| 914 | static const struct seq_operations input_handlers_seq_ops = { | 945 | static const struct seq_operations input_handlers_seq_ops = { |
| 915 | .start = input_handlers_seq_start, | 946 | .start = input_handlers_seq_start, |
| 916 | .next = input_handlers_seq_next, | 947 | .next = input_handlers_seq_next, |
| 917 | .stop = input_handlers_seq_stop, | 948 | .stop = input_seq_stop, |
| 918 | .show = input_handlers_seq_show, | 949 | .show = input_handlers_seq_show, |
| 919 | }; | 950 | }; |
| 920 | 951 | ||
| @@ -1261,17 +1292,24 @@ static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env) | |||
| 1261 | return 0; | 1292 | return 0; |
| 1262 | } | 1293 | } |
| 1263 | 1294 | ||
| 1264 | #define INPUT_DO_TOGGLE(dev, type, bits, on) \ | 1295 | #define INPUT_DO_TOGGLE(dev, type, bits, on) \ |
| 1265 | do { \ | 1296 | do { \ |
| 1266 | int i; \ | 1297 | int i; \ |
| 1267 | if (!test_bit(EV_##type, dev->evbit)) \ | 1298 | bool active; \ |
| 1268 | break; \ | 1299 | \ |
| 1269 | for (i = 0; i < type##_MAX; i++) { \ | 1300 | if (!test_bit(EV_##type, dev->evbit)) \ |
| 1270 | if (!test_bit(i, dev->bits##bit) || \ | 1301 | break; \ |
| 1271 | !test_bit(i, dev->bits)) \ | 1302 | \ |
| 1272 | continue; \ | 1303 | for (i = 0; i < type##_MAX; i++) { \ |
| 1273 | dev->event(dev, EV_##type, i, on); \ | 1304 | if (!test_bit(i, dev->bits##bit)) \ |
| 1274 | } \ | 1305 | continue; \ |
| 1306 | \ | ||
| 1307 | active = test_bit(i, dev->bits); \ | ||
| 1308 | if (!active && !on) \ | ||
| 1309 | continue; \ | ||
| 1310 | \ | ||
| 1311 | dev->event(dev, EV_##type, i, on ? active : 0); \ | ||
| 1312 | } \ | ||
| 1275 | } while (0) | 1313 | } while (0) |
| 1276 | 1314 | ||
| 1277 | #ifdef CONFIG_PM | 1315 | #ifdef CONFIG_PM |
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 4709e15af607..28e6110d1ff8 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
| @@ -233,6 +233,7 @@ struct atkbd { | |||
| 233 | */ | 233 | */ |
| 234 | static void (*atkbd_platform_fixup)(struct atkbd *, const void *data); | 234 | static void (*atkbd_platform_fixup)(struct atkbd *, const void *data); |
| 235 | static void *atkbd_platform_fixup_data; | 235 | static void *atkbd_platform_fixup_data; |
| 236 | static unsigned int (*atkbd_platform_scancode_fixup)(struct atkbd *, unsigned int); | ||
| 236 | 237 | ||
| 237 | static ssize_t atkbd_attr_show_helper(struct device *dev, char *buf, | 238 | static ssize_t atkbd_attr_show_helper(struct device *dev, char *buf, |
| 238 | ssize_t (*handler)(struct atkbd *, char *)); | 239 | ssize_t (*handler)(struct atkbd *, char *)); |
| @@ -393,6 +394,9 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data, | |||
| 393 | 394 | ||
| 394 | input_event(dev, EV_MSC, MSC_RAW, code); | 395 | input_event(dev, EV_MSC, MSC_RAW, code); |
| 395 | 396 | ||
| 397 | if (atkbd_platform_scancode_fixup) | ||
| 398 | code = atkbd_platform_scancode_fixup(atkbd, code); | ||
| 399 | |||
| 396 | if (atkbd->translated) { | 400 | if (atkbd->translated) { |
| 397 | 401 | ||
| 398 | if (atkbd->emul || atkbd_need_xlate(atkbd->xl_bit, code)) { | 402 | if (atkbd->emul || atkbd_need_xlate(atkbd->xl_bit, code)) { |
| @@ -574,11 +578,22 @@ static void atkbd_event_work(struct work_struct *work) | |||
| 574 | 578 | ||
| 575 | mutex_lock(&atkbd->event_mutex); | 579 | mutex_lock(&atkbd->event_mutex); |
| 576 | 580 | ||
| 577 | if (test_and_clear_bit(ATKBD_LED_EVENT_BIT, &atkbd->event_mask)) | 581 | if (!atkbd->enabled) { |
| 578 | atkbd_set_leds(atkbd); | 582 | /* |
| 583 | * Serio ports are resumed asynchronously so while driver core | ||
| 584 | * thinks that device is already fully operational in reality | ||
| 585 | * it may not be ready yet. In this case we need to keep | ||
| 586 | * rescheduling till reconnect completes. | ||
| 587 | */ | ||
| 588 | schedule_delayed_work(&atkbd->event_work, | ||
| 589 | msecs_to_jiffies(100)); | ||
| 590 | } else { | ||
| 591 | if (test_and_clear_bit(ATKBD_LED_EVENT_BIT, &atkbd->event_mask)) | ||
| 592 | atkbd_set_leds(atkbd); | ||
| 579 | 593 | ||
| 580 | if (test_and_clear_bit(ATKBD_REP_EVENT_BIT, &atkbd->event_mask)) | 594 | if (test_and_clear_bit(ATKBD_REP_EVENT_BIT, &atkbd->event_mask)) |
| 581 | atkbd_set_repeat_rate(atkbd); | 595 | atkbd_set_repeat_rate(atkbd); |
| 596 | } | ||
| 582 | 597 | ||
| 583 | mutex_unlock(&atkbd->event_mutex); | 598 | mutex_unlock(&atkbd->event_mutex); |
| 584 | } | 599 | } |
| @@ -770,6 +785,30 @@ static int atkbd_select_set(struct atkbd *atkbd, int target_set, int allow_extra | |||
| 770 | return 3; | 785 | return 3; |
| 771 | } | 786 | } |
| 772 | 787 | ||
| 788 | static int atkbd_reset_state(struct atkbd *atkbd) | ||
| 789 | { | ||
| 790 | struct ps2dev *ps2dev = &atkbd->ps2dev; | ||
| 791 | unsigned char param[1]; | ||
| 792 | |||
| 793 | /* | ||
| 794 | * Set the LEDs to a predefined state (all off). | ||
| 795 | */ | ||
| 796 | |||
| 797 | param[0] = 0; | ||
| 798 | if (ps2_command(ps2dev, param, ATKBD_CMD_SETLEDS)) | ||
| 799 | return -1; | ||
| 800 | |||
| 801 | /* | ||
| 802 | * Set autorepeat to fastest possible. | ||
| 803 | */ | ||
| 804 | |||
| 805 | param[0] = 0; | ||
| 806 | if (ps2_command(ps2dev, param, ATKBD_CMD_SETREP)) | ||
| 807 | return -1; | ||
| 808 | |||
| 809 | return 0; | ||
| 810 | } | ||
| 811 | |||
| 773 | static int atkbd_activate(struct atkbd *atkbd) | 812 | static int atkbd_activate(struct atkbd *atkbd) |
| 774 | { | 813 | { |
| 775 | struct ps2dev *ps2dev = &atkbd->ps2dev; | 814 | struct ps2dev *ps2dev = &atkbd->ps2dev; |
| @@ -852,29 +891,6 @@ static unsigned int atkbd_hp_forced_release_keys[] = { | |||
| 852 | }; | 891 | }; |
| 853 | 892 | ||
| 854 | /* | 893 | /* |
| 855 | * Inventec system with broken key release on volume keys | ||
| 856 | */ | ||
| 857 | static unsigned int atkbd_inventec_forced_release_keys[] = { | ||
| 858 | 0xae, 0xb0, -1U | ||
| 859 | }; | ||
| 860 | |||
| 861 | /* | ||
| 862 | * Perform fixup for HP Pavilion ZV6100 laptop that doesn't generate release | ||
| 863 | * for its volume buttons | ||
| 864 | */ | ||
| 865 | static unsigned int atkbd_hp_zv6100_forced_release_keys[] = { | ||
| 866 | 0xae, 0xb0, -1U | ||
| 867 | }; | ||
| 868 | |||
| 869 | /* | ||
| 870 | * Perform fixup for HP (Compaq) Presario R4000 R4100 R4200 that don't generate | ||
| 871 | * release for their volume buttons | ||
| 872 | */ | ||
| 873 | static unsigned int atkbd_hp_r4000_forced_release_keys[] = { | ||
| 874 | 0xae, 0xb0, -1U | ||
| 875 | }; | ||
| 876 | |||
| 877 | /* | ||
| 878 | * Samsung NC10,NC20 with Fn+F? key release not working | 894 | * Samsung NC10,NC20 with Fn+F? key release not working |
| 879 | */ | 895 | */ |
| 880 | static unsigned int atkbd_samsung_forced_release_keys[] = { | 896 | static unsigned int atkbd_samsung_forced_release_keys[] = { |
| @@ -882,14 +898,6 @@ static unsigned int atkbd_samsung_forced_release_keys[] = { | |||
| 882 | }; | 898 | }; |
| 883 | 899 | ||
| 884 | /* | 900 | /* |
| 885 | * The volume up and volume down special keys on a Fujitsu Amilo PA 1510 laptop | ||
| 886 | * do not generate release events so we have to do it ourselves. | ||
| 887 | */ | ||
| 888 | static unsigned int atkbd_amilo_pa1510_forced_release_keys[] = { | ||
| 889 | 0xb0, 0xae, -1U | ||
| 890 | }; | ||
| 891 | |||
| 892 | /* | ||
| 893 | * Amilo Pi 3525 key release for Fn+Volume keys not working | 901 | * Amilo Pi 3525 key release for Fn+Volume keys not working |
| 894 | */ | 902 | */ |
| 895 | static unsigned int atkbd_amilo_pi3525_forced_release_keys[] = { | 903 | static unsigned int atkbd_amilo_pi3525_forced_release_keys[] = { |
| @@ -911,6 +919,30 @@ static unsigned int atkdb_soltech_ta12_forced_release_keys[] = { | |||
| 911 | }; | 919 | }; |
| 912 | 920 | ||
| 913 | /* | 921 | /* |
| 922 | * Many notebooks don't send key release event for volume up/down | ||
| 923 | * keys, with key list below common among them | ||
| 924 | */ | ||
| 925 | static unsigned int atkbd_volume_forced_release_keys[] = { | ||
| 926 | 0xae, 0xb0, -1U | ||
| 927 | }; | ||
| 928 | |||
| 929 | /* | ||
| 930 | * OQO 01+ multimedia keys (64--66) generate e0 6x upon release whereas | ||
| 931 | * they should be generating e4-e6 (0x80 | code). | ||
| 932 | */ | ||
| 933 | static unsigned int atkbd_oqo_01plus_scancode_fixup(struct atkbd *atkbd, | ||
| 934 | unsigned int code) | ||
| 935 | { | ||
| 936 | if (atkbd->translated && atkbd->emul == 1 && | ||
| 937 | (code == 0x64 || code == 0x65 || code == 0x66)) { | ||
| 938 | atkbd->emul = 0; | ||
| 939 | code |= 0x80; | ||
| 940 | } | ||
| 941 | |||
| 942 | return code; | ||
| 943 | } | ||
| 944 | |||
| 945 | /* | ||
| 914 | * atkbd_set_keycode_table() initializes keyboard's keycode table | 946 | * atkbd_set_keycode_table() initializes keyboard's keycode table |
| 915 | * according to the selected scancode set | 947 | * according to the selected scancode set |
| 916 | */ | 948 | */ |
| @@ -1087,6 +1119,7 @@ static int atkbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 1087 | } | 1119 | } |
| 1088 | 1120 | ||
| 1089 | atkbd->set = atkbd_select_set(atkbd, atkbd_set, atkbd_extra); | 1121 | atkbd->set = atkbd_select_set(atkbd, atkbd_set, atkbd_extra); |
| 1122 | atkbd_reset_state(atkbd); | ||
| 1090 | atkbd_activate(atkbd); | 1123 | atkbd_activate(atkbd); |
| 1091 | 1124 | ||
| 1092 | } else { | 1125 | } else { |
| @@ -1141,6 +1174,18 @@ static int atkbd_reconnect(struct serio *serio) | |||
| 1141 | return -1; | 1174 | return -1; |
| 1142 | 1175 | ||
| 1143 | atkbd_activate(atkbd); | 1176 | atkbd_activate(atkbd); |
| 1177 | |||
| 1178 | /* | ||
| 1179 | * Restore LED state and repeat rate. While input core | ||
| 1180 | * will do this for us at resume time reconnect may happen | ||
| 1181 | * because user requested it via sysfs or simply because | ||
| 1182 | * keyboard was unplugged and plugged in again so we need | ||
| 1183 | * to do it ourselves here. | ||
| 1184 | */ | ||
| 1185 | atkbd_set_leds(atkbd); | ||
| 1186 | if (!atkbd->softrepeat) | ||
| 1187 | atkbd_set_repeat_rate(atkbd); | ||
| 1188 | |||
| 1144 | } | 1189 | } |
| 1145 | 1190 | ||
| 1146 | atkbd_enable(atkbd); | 1191 | atkbd_enable(atkbd); |
| @@ -1267,6 +1312,7 @@ static ssize_t atkbd_set_extra(struct atkbd *atkbd, const char *buf, size_t coun | |||
| 1267 | 1312 | ||
| 1268 | atkbd->dev = new_dev; | 1313 | atkbd->dev = new_dev; |
| 1269 | atkbd->set = atkbd_select_set(atkbd, atkbd->set, value); | 1314 | atkbd->set = atkbd_select_set(atkbd, atkbd->set, value); |
| 1315 | atkbd_reset_state(atkbd); | ||
| 1270 | atkbd_activate(atkbd); | 1316 | atkbd_activate(atkbd); |
| 1271 | atkbd_set_keycode_table(atkbd); | 1317 | atkbd_set_keycode_table(atkbd); |
| 1272 | atkbd_set_device_attrs(atkbd); | 1318 | atkbd_set_device_attrs(atkbd); |
| @@ -1388,6 +1434,7 @@ static ssize_t atkbd_set_set(struct atkbd *atkbd, const char *buf, size_t count) | |||
| 1388 | 1434 | ||
| 1389 | atkbd->dev = new_dev; | 1435 | atkbd->dev = new_dev; |
| 1390 | atkbd->set = atkbd_select_set(atkbd, value, atkbd->extra); | 1436 | atkbd->set = atkbd_select_set(atkbd, value, atkbd->extra); |
| 1437 | atkbd_reset_state(atkbd); | ||
| 1391 | atkbd_activate(atkbd); | 1438 | atkbd_activate(atkbd); |
| 1392 | atkbd_set_keycode_table(atkbd); | 1439 | atkbd_set_keycode_table(atkbd); |
| 1393 | atkbd_set_device_attrs(atkbd); | 1440 | atkbd_set_device_attrs(atkbd); |
| @@ -1513,6 +1560,13 @@ static int __init atkbd_setup_forced_release(const struct dmi_system_id *id) | |||
| 1513 | return 0; | 1560 | return 0; |
| 1514 | } | 1561 | } |
| 1515 | 1562 | ||
| 1563 | static int __init atkbd_setup_scancode_fixup(const struct dmi_system_id *id) | ||
| 1564 | { | ||
| 1565 | atkbd_platform_scancode_fixup = id->driver_data; | ||
| 1566 | |||
| 1567 | return 0; | ||
| 1568 | } | ||
| 1569 | |||
| 1516 | static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | 1570 | static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { |
| 1517 | { | 1571 | { |
| 1518 | .ident = "Dell Laptop", | 1572 | .ident = "Dell Laptop", |
| @@ -1548,7 +1602,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1548 | DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion ZV6100"), | 1602 | DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion ZV6100"), |
| 1549 | }, | 1603 | }, |
| 1550 | .callback = atkbd_setup_forced_release, | 1604 | .callback = atkbd_setup_forced_release, |
| 1551 | .driver_data = atkbd_hp_zv6100_forced_release_keys, | 1605 | .driver_data = atkbd_volume_forced_release_keys, |
| 1552 | }, | 1606 | }, |
| 1553 | { | 1607 | { |
| 1554 | .ident = "HP Presario R4000", | 1608 | .ident = "HP Presario R4000", |
| @@ -1557,7 +1611,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1557 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4000"), | 1611 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4000"), |
| 1558 | }, | 1612 | }, |
| 1559 | .callback = atkbd_setup_forced_release, | 1613 | .callback = atkbd_setup_forced_release, |
| 1560 | .driver_data = atkbd_hp_r4000_forced_release_keys, | 1614 | .driver_data = atkbd_volume_forced_release_keys, |
| 1561 | }, | 1615 | }, |
| 1562 | { | 1616 | { |
| 1563 | .ident = "HP Presario R4100", | 1617 | .ident = "HP Presario R4100", |
| @@ -1566,7 +1620,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1566 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4100"), | 1620 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4100"), |
| 1567 | }, | 1621 | }, |
| 1568 | .callback = atkbd_setup_forced_release, | 1622 | .callback = atkbd_setup_forced_release, |
| 1569 | .driver_data = atkbd_hp_r4000_forced_release_keys, | 1623 | .driver_data = atkbd_volume_forced_release_keys, |
| 1570 | }, | 1624 | }, |
| 1571 | { | 1625 | { |
| 1572 | .ident = "HP Presario R4200", | 1626 | .ident = "HP Presario R4200", |
| @@ -1575,7 +1629,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1575 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4200"), | 1629 | DMI_MATCH(DMI_PRODUCT_NAME, "Presario R4200"), |
| 1576 | }, | 1630 | }, |
| 1577 | .callback = atkbd_setup_forced_release, | 1631 | .callback = atkbd_setup_forced_release, |
| 1578 | .driver_data = atkbd_hp_r4000_forced_release_keys, | 1632 | .driver_data = atkbd_volume_forced_release_keys, |
| 1579 | }, | 1633 | }, |
| 1580 | { | 1634 | { |
| 1581 | .ident = "Inventec Symphony", | 1635 | .ident = "Inventec Symphony", |
| @@ -1584,7 +1638,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1584 | DMI_MATCH(DMI_PRODUCT_NAME, "SYMPHONY 6.0/7.0"), | 1638 | DMI_MATCH(DMI_PRODUCT_NAME, "SYMPHONY 6.0/7.0"), |
| 1585 | }, | 1639 | }, |
| 1586 | .callback = atkbd_setup_forced_release, | 1640 | .callback = atkbd_setup_forced_release, |
| 1587 | .driver_data = atkbd_inventec_forced_release_keys, | 1641 | .driver_data = atkbd_volume_forced_release_keys, |
| 1588 | }, | 1642 | }, |
| 1589 | { | 1643 | { |
| 1590 | .ident = "Samsung NC10", | 1644 | .ident = "Samsung NC10", |
| @@ -1620,7 +1674,7 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1620 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pa 1510"), | 1674 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pa 1510"), |
| 1621 | }, | 1675 | }, |
| 1622 | .callback = atkbd_setup_forced_release, | 1676 | .callback = atkbd_setup_forced_release, |
| 1623 | .driver_data = atkbd_amilo_pa1510_forced_release_keys, | 1677 | .driver_data = atkbd_volume_forced_release_keys, |
| 1624 | }, | 1678 | }, |
| 1625 | { | 1679 | { |
| 1626 | .ident = "Fujitsu Amilo Pi 3525", | 1680 | .ident = "Fujitsu Amilo Pi 3525", |
| @@ -1649,6 +1703,15 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1649 | .callback = atkbd_setup_forced_release, | 1703 | .callback = atkbd_setup_forced_release, |
| 1650 | .driver_data = atkdb_soltech_ta12_forced_release_keys, | 1704 | .driver_data = atkdb_soltech_ta12_forced_release_keys, |
| 1651 | }, | 1705 | }, |
| 1706 | { | ||
| 1707 | .ident = "OQO Model 01+", | ||
| 1708 | .matches = { | ||
| 1709 | DMI_MATCH(DMI_SYS_VENDOR, "OQO"), | ||
| 1710 | DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"), | ||
| 1711 | }, | ||
| 1712 | .callback = atkbd_setup_scancode_fixup, | ||
| 1713 | .driver_data = atkbd_oqo_01plus_scancode_fixup, | ||
| 1714 | }, | ||
| 1652 | { } | 1715 | { } |
| 1653 | }; | 1716 | }; |
| 1654 | 1717 | ||
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index a88aff3816a0..77d130914259 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c | |||
| @@ -147,6 +147,7 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev) | |||
| 147 | } | 147 | } |
| 148 | 148 | ||
| 149 | error = request_irq(irq, gpio_keys_isr, | 149 | error = request_irq(irq, gpio_keys_isr, |
| 150 | IRQF_SHARED | | ||
| 150 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | 151 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
| 151 | button->desc ? button->desc : "gpio_keys", | 152 | button->desc ? button->desc : "gpio_keys", |
| 152 | bdata); | 153 | bdata); |
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index 02f4f8f1db6f..a9bb2544b2de 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig | |||
| @@ -227,6 +227,7 @@ config INPUT_WINBOND_CIR | |||
| 227 | depends on X86 && PNP | 227 | depends on X86 && PNP |
| 228 | select NEW_LEDS | 228 | select NEW_LEDS |
| 229 | select LEDS_CLASS | 229 | select LEDS_CLASS |
| 230 | select LEDS_TRIGGERS | ||
| 230 | select BITREVERSE | 231 | select BITREVERSE |
| 231 | help | 232 | help |
| 232 | Say Y here if you want to use the IR remote functionality found | 233 | Say Y here if you want to use the IR remote functionality found |
diff --git a/drivers/input/misc/hp_sdc_rtc.c b/drivers/input/misc/hp_sdc_rtc.c index 216a559f55ea..ea821b546969 100644 --- a/drivers/input/misc/hp_sdc_rtc.c +++ b/drivers/input/misc/hp_sdc_rtc.c | |||
| @@ -209,7 +209,7 @@ static inline int hp_sdc_rtc_read_rt(struct timeval *res) { | |||
| 209 | 209 | ||
| 210 | /* Read the i8042 fast handshake timer */ | 210 | /* Read the i8042 fast handshake timer */ |
| 211 | static inline int hp_sdc_rtc_read_fhs(struct timeval *res) { | 211 | static inline int hp_sdc_rtc_read_fhs(struct timeval *res) { |
| 212 | uint64_t raw; | 212 | int64_t raw; |
| 213 | unsigned int tenms; | 213 | unsigned int tenms; |
| 214 | 214 | ||
| 215 | raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_FHS, 2); | 215 | raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_FHS, 2); |
diff --git a/drivers/input/mouse/lifebook.c b/drivers/input/mouse/lifebook.c index 5e6308694408..82811558ec33 100644 --- a/drivers/input/mouse/lifebook.c +++ b/drivers/input/mouse/lifebook.c | |||
| @@ -107,8 +107,7 @@ static const struct dmi_system_id lifebook_dmi_table[] = { | |||
| 107 | .matches = { | 107 | .matches = { |
| 108 | DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"), | 108 | DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"), |
| 109 | }, | 109 | }, |
| 110 | .callback = lifebook_set_serio_phys, | 110 | .callback = lifebook_set_6byte_proto, |
| 111 | .driver_data = "isa0060/serio3", | ||
| 112 | }, | 111 | }, |
| 113 | { | 112 | { |
| 114 | .ident = "Lifebook B142", | 113 | .ident = "Lifebook B142", |
diff --git a/drivers/input/mouse/logips2pp.c b/drivers/input/mouse/logips2pp.c index de745d751162..ab5dc5f5fd83 100644 --- a/drivers/input/mouse/logips2pp.c +++ b/drivers/input/mouse/logips2pp.c | |||
| @@ -219,7 +219,7 @@ static const struct ps2pp_info *get_model_info(unsigned char model) | |||
| 219 | PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN | | 219 | PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN | |
| 220 | PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL }, | 220 | PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL }, |
| 221 | { 72, PS2PP_KIND_TRACKMAN, 0 }, /* T-CH11: TrackMan Marble */ | 221 | { 72, PS2PP_KIND_TRACKMAN, 0 }, /* T-CH11: TrackMan Marble */ |
| 222 | { 73, 0, PS2PP_SIDE_BTN }, | 222 | { 73, PS2PP_KIND_TRACKMAN, PS2PP_SIDE_BTN }, /* TrackMan FX */ |
| 223 | { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, | 223 | { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, |
| 224 | { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, | 224 | { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, |
| 225 | { 79, PS2PP_KIND_TRACKMAN, PS2PP_WHEEL }, /* TrackMan with wheel */ | 225 | { 79, PS2PP_KIND_TRACKMAN, PS2PP_WHEEL }, /* TrackMan with wheel */ |
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c index 690aed905436..07c53798301a 100644 --- a/drivers/input/mouse/psmouse-base.c +++ b/drivers/input/mouse/psmouse-base.c | |||
| @@ -581,7 +581,7 @@ static int cortron_detect(struct psmouse *psmouse, bool set_properties) | |||
| 581 | static int psmouse_extensions(struct psmouse *psmouse, | 581 | static int psmouse_extensions(struct psmouse *psmouse, |
| 582 | unsigned int max_proto, bool set_properties) | 582 | unsigned int max_proto, bool set_properties) |
| 583 | { | 583 | { |
| 584 | bool synaptics_hardware = true; | 584 | bool synaptics_hardware = false; |
| 585 | 585 | ||
| 586 | /* | 586 | /* |
| 587 | * We always check for lifebook because it does not disturb mouse | 587 | * We always check for lifebook because it does not disturb mouse |
| @@ -1673,7 +1673,7 @@ static int psmouse_get_maxproto(char *buffer, struct kernel_param *kp) | |||
| 1673 | { | 1673 | { |
| 1674 | int type = *((unsigned int *)kp->arg); | 1674 | int type = *((unsigned int *)kp->arg); |
| 1675 | 1675 | ||
| 1676 | return sprintf(buffer, "%s\n", psmouse_protocol_by_type(type)->name); | 1676 | return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name); |
| 1677 | } | 1677 | } |
| 1678 | 1678 | ||
| 1679 | static int __init psmouse_init(void) | 1679 | static int __init psmouse_init(void) |
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index b66ff1ac7dea..f4a61252bcc9 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c | |||
| @@ -652,6 +652,16 @@ static const struct dmi_system_id toshiba_dmi_table[] = { | |||
| 652 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), | 652 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), |
| 653 | DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"), | 653 | DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"), |
| 654 | }, | 654 | }, |
| 655 | |||
| 656 | }, | ||
| 657 | { | ||
| 658 | .ident = "Toshiba Portege M300", | ||
| 659 | .matches = { | ||
| 660 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), | ||
| 661 | DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"), | ||
| 662 | DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"), | ||
| 663 | }, | ||
| 664 | |||
| 655 | }, | 665 | }, |
| 656 | { } | 666 | { } |
| 657 | }; | 667 | }; |
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index a39bc4eb902b..a537925f7651 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h | |||
| @@ -327,6 +327,17 @@ static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = { | |||
| 327 | }, | 327 | }, |
| 328 | }, | 328 | }, |
| 329 | { | 329 | { |
| 330 | /* | ||
| 331 | * Reset and GET ID commands issued via KBD port are | ||
| 332 | * sometimes being delivered to AUX3. | ||
| 333 | */ | ||
| 334 | .ident = "Sony Vaio FZ-240E", | ||
| 335 | .matches = { | ||
| 336 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), | ||
| 337 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ240E"), | ||
| 338 | }, | ||
| 339 | }, | ||
| 340 | { | ||
| 330 | .ident = "Amoi M636/A737", | 341 | .ident = "Amoi M636/A737", |
| 331 | .matches = { | 342 | .matches = { |
| 332 | DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."), | 343 | DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."), |
| @@ -661,7 +672,7 @@ static void i8042_pnp_exit(void) | |||
| 661 | static int __init i8042_pnp_init(void) | 672 | static int __init i8042_pnp_init(void) |
| 662 | { | 673 | { |
| 663 | char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 }; | 674 | char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 }; |
| 664 | int pnp_data_busted = false; | 675 | bool pnp_data_busted = false; |
| 665 | int err; | 676 | int err; |
| 666 | 677 | ||
| 667 | #ifdef CONFIG_X86 | 678 | #ifdef CONFIG_X86 |
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c index a31578170ccc..1df02d25aca5 100644 --- a/drivers/input/serio/i8042.c +++ b/drivers/input/serio/i8042.c | |||
| @@ -836,17 +836,32 @@ static int i8042_controller_selftest(void) | |||
| 836 | static int i8042_controller_init(void) | 836 | static int i8042_controller_init(void) |
| 837 | { | 837 | { |
| 838 | unsigned long flags; | 838 | unsigned long flags; |
| 839 | int n = 0; | ||
| 840 | unsigned char ctr[2]; | ||
| 839 | 841 | ||
| 840 | /* | 842 | /* |
| 841 | * Save the CTR for restoral on unload / reboot. | 843 | * Save the CTR for restore on unload / reboot. |
| 842 | */ | 844 | */ |
| 843 | 845 | ||
| 844 | if (i8042_command(&i8042_ctr, I8042_CMD_CTL_RCTR)) { | 846 | do { |
| 845 | printk(KERN_ERR "i8042.c: Can't read CTR while initializing i8042.\n"); | 847 | if (n >= 10) { |
| 846 | return -EIO; | 848 | printk(KERN_ERR |
| 847 | } | 849 | "i8042.c: Unable to get stable CTR read.\n"); |
| 850 | return -EIO; | ||
| 851 | } | ||
| 852 | |||
| 853 | if (n != 0) | ||
| 854 | udelay(50); | ||
| 855 | |||
| 856 | if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) { | ||
| 857 | printk(KERN_ERR | ||
| 858 | "i8042.c: Can't read CTR while initializing i8042.\n"); | ||
| 859 | return -EIO; | ||
| 860 | } | ||
| 848 | 861 | ||
| 849 | i8042_initial_ctr = i8042_ctr; | 862 | } while (n < 2 || ctr[0] != ctr[1]); |
| 863 | |||
| 864 | i8042_initial_ctr = i8042_ctr = ctr[0]; | ||
| 850 | 865 | ||
| 851 | /* | 866 | /* |
| 852 | * Disable the keyboard interface and interrupt. | 867 | * Disable the keyboard interface and interrupt. |
| @@ -895,6 +910,12 @@ static int i8042_controller_init(void) | |||
| 895 | return -EIO; | 910 | return -EIO; |
| 896 | } | 911 | } |
| 897 | 912 | ||
| 913 | /* | ||
| 914 | * Flush whatever accumulated while we were disabling keyboard port. | ||
| 915 | */ | ||
| 916 | |||
| 917 | i8042_flush(); | ||
| 918 | |||
| 898 | return 0; | 919 | return 0; |
| 899 | } | 920 | } |
| 900 | 921 | ||
| @@ -914,7 +935,7 @@ static void i8042_controller_reset(void) | |||
| 914 | i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS; | 935 | i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS; |
| 915 | i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT); | 936 | i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT); |
| 916 | 937 | ||
| 917 | if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR)) | 938 | if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) |
| 918 | printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n"); | 939 | printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n"); |
| 919 | 940 | ||
| 920 | /* | 941 | /* |
