gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / staging / speakup / fakekey.c
blobcd029968462f4006e595c42c8f909350f4c6775a
1 // SPDX-License-Identifier: GPL-2.0+
2 /* fakekey.c
3 * Functions for simulating keypresses.
5 * Copyright (C) 2010 the Speakup Team
6 */
7 #include <linux/types.h>
8 #include <linux/slab.h>
9 #include <linux/preempt.h>
10 #include <linux/percpu.h>
11 #include <linux/input.h>
13 #include "speakup.h"
15 #define PRESSED 1
16 #define RELEASED 0
18 static DEFINE_PER_CPU(int, reporting_keystroke);
20 static struct input_dev *virt_keyboard;
22 int speakup_add_virtual_keyboard(void)
24 int err;
26 virt_keyboard = input_allocate_device();
28 if (!virt_keyboard)
29 return -ENOMEM;
31 virt_keyboard->name = "Speakup";
32 virt_keyboard->id.bustype = BUS_VIRTUAL;
33 virt_keyboard->phys = "speakup/input0";
34 virt_keyboard->dev.parent = NULL;
36 __set_bit(EV_KEY, virt_keyboard->evbit);
37 __set_bit(KEY_DOWN, virt_keyboard->keybit);
39 err = input_register_device(virt_keyboard);
40 if (err) {
41 input_free_device(virt_keyboard);
42 virt_keyboard = NULL;
45 return err;
48 void speakup_remove_virtual_keyboard(void)
50 if (virt_keyboard) {
51 input_unregister_device(virt_keyboard);
52 virt_keyboard = NULL;
57 * Send a simulated down-arrow to the application.
59 void speakup_fake_down_arrow(void)
61 unsigned long flags;
63 /* disable keyboard interrupts */
64 local_irq_save(flags);
65 /* don't change CPU */
66 preempt_disable();
68 __this_cpu_write(reporting_keystroke, true);
69 input_report_key(virt_keyboard, KEY_DOWN, PRESSED);
70 input_report_key(virt_keyboard, KEY_DOWN, RELEASED);
71 input_sync(virt_keyboard);
72 __this_cpu_write(reporting_keystroke, false);
74 /* reenable preemption */
75 preempt_enable();
76 /* reenable keyboard interrupts */
77 local_irq_restore(flags);
81 * Are we handling a simulated keypress on the current CPU?
82 * Returns a boolean.
84 bool speakup_fake_key_pressed(void)
86 return this_cpu_read(reporting_keystroke);