1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
use libc::{c_char, c_int, c_uint, uint16_t, int32_t, uint32_t};

pub const UINPUT_MAX_NAME_SIZE: c_int = 80;

pub const UINPUT_VERSION: c_int = 5;

/// This is the new event type, used only by uinput.
/// 'code' is UI_FF_UPLOAD or UI_FF_ERASE, and 'value' is the unique request ID.
pub const EV_UINPUT: c_int = 0x0101;
pub const UI_FF_UPLOAD: c_int = 1;
pub const UI_FF_ERASE: c_int = 2;

#[repr(C)]
pub struct uinput_setup {
    pub id: ::input_id,
    pub name: [c_char; UINPUT_MAX_NAME_SIZE as usize],
    pub ff_effects_max: uint32_t,
}

#[repr(C)]
pub struct uinput_abs_setup {
    pub code: uint16_t,
    pub absinfo: ::input_absinfo,
}

#[repr(C)]
pub struct uinput_user_dev {
    pub name: [c_char; UINPUT_MAX_NAME_SIZE as usize],
    pub id: ::input_id,

    pub ff_effects_max: uint32_t,
    pub absmax: [int32_t; ::ABS_CNT as usize],
    pub absmin: [int32_t; ::ABS_CNT as usize],
    pub absfuzz: [int32_t; ::ABS_CNT as usize],
    pub absflat: [int32_t; ::ABS_CNT as usize],
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct uinput_ff_upload {
    pub request_id: uint32_t,
    pub retval: int32_t,
    pub effect: ::ff_effect,
    pub old: ::ff_effect,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct uinput_ff_erase {
    pub request_id: uint32_t,
    pub retval: int32_t,
    pub effect_id: uint32_t,
}

ioctl!(none ui_dev_create with b'U', 1);
ioctl!(none ui_dev_destroy with b'U', 2);

ioctl! {
    /// Set device parameters for setup
    write_ptr ui_dev_setup with b'U', 3; uinput_setup
}

ioctl! {
    /// Set absolute axis information for the device to setup
    write_ptr ui_abs_setup with b'U', 4; uinput_abs_setup
}

ioctl!(write_int ui_set_evbit with b'U', 100);
ioctl!(write_int ui_set_keybit with b'U', 101);
ioctl!(write_int ui_set_relbit with b'U', 102);
ioctl!(write_int ui_set_absbit with b'U', 103);
ioctl!(write_int ui_set_mscbit with b'U', 104);
ioctl!(write_int ui_set_ledbit with b'U', 105);
ioctl!(write_int ui_set_sndbit with b'U', 106);
ioctl!(write_int ui_set_ffbit with b'U', 107);
ioctl!(write_ptr ui_set_phys with b'U', 108; c_char);
ioctl!(write_int ui_set_swbit with b'U', 109);
ioctl!(write_int ui_set_propbit with b'U', 110);

ioctl!(readwrite ui_begin_ff_upload with b'U', 200; uinput_ff_upload);
ioctl!(write_ptr ui_end_ff_upload with b'U', 201; uinput_ff_upload);

ioctl!(readwrite ui_begin_ff_erase with b'U', 202; uinput_ff_erase);
ioctl!(write_ptr ui_end_ff_erase with b'U', 203; uinput_ff_erase);

ioctl! {
    /// get the sysfs name of the created uinput device
    read_buf ui_get_sysname with b'U', 44; c_char
}

ioctl! {
    /// Return version of uinput protocol
    read ui_get_version with b'U', 45; c_uint
}