1 #ifndef __HID_ROCCAT_PYRA_H
2 #define __HID_ROCCAT_PYRA_H
5 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
15 #include <linux/types.h>
18 PYRA_SIZE_CONTROL
= 0x03,
19 PYRA_SIZE_INFO
= 0x06,
20 PYRA_SIZE_PROFILE_SETTINGS
= 0x0d,
21 PYRA_SIZE_PROFILE_BUTTONS
= 0x13,
22 PYRA_SIZE_SETTINGS
= 0x03,
25 enum pyra_control_requests
{
26 PYRA_CONTROL_REQUEST_PROFILE_SETTINGS
= 0x10,
27 PYRA_CONTROL_REQUEST_PROFILE_BUTTONS
= 0x20
30 struct pyra_settings
{
31 uint8_t command
; /* PYRA_COMMAND_SETTINGS */
32 uint8_t size
; /* always 3 */
33 uint8_t startup_profile
; /* Range 0-4! */
34 } __attribute__ ((__packed__
));
36 struct pyra_profile_settings
{
37 uint8_t command
; /* PYRA_COMMAND_PROFILE_SETTINGS */
38 uint8_t size
; /* always 0xd */
39 uint8_t number
; /* Range 0-4 */
41 uint8_t x_sensitivity
; /* 0x1-0xa */
42 uint8_t y_sensitivity
;
43 uint8_t x_cpi
; /* unused */
44 uint8_t y_cpi
; /* this value is for x and y */
45 uint8_t lightswitch
; /* 0 = off, 1 = on */
48 uint16_t checksum
; /* byte sum */
49 } __attribute__ ((__packed__
));
52 uint8_t command
; /* PYRA_COMMAND_INFO */
53 uint8_t size
; /* always 6 */
54 uint8_t firmware_version
;
55 uint8_t unknown1
; /* always 0 */
56 uint8_t unknown2
; /* always 1 */
57 uint8_t unknown3
; /* always 0 */
58 } __attribute__ ((__packed__
));
61 PYRA_COMMAND_CONTROL
= 0x4,
62 PYRA_COMMAND_SETTINGS
= 0x5,
63 PYRA_COMMAND_PROFILE_SETTINGS
= 0x6,
64 PYRA_COMMAND_PROFILE_BUTTONS
= 0x7,
65 PYRA_COMMAND_INFO
= 0x9,
69 enum pyra_mouse_report_numbers
{
70 PYRA_MOUSE_REPORT_NUMBER_HID
= 1,
71 PYRA_MOUSE_REPORT_NUMBER_AUDIO
= 2,
72 PYRA_MOUSE_REPORT_NUMBER_BUTTON
= 3,
75 struct pyra_mouse_event_button
{
76 uint8_t report_number
; /* always 3 */
77 uint8_t unknown
; /* always 0 */
81 } __attribute__ ((__packed__
));
83 struct pyra_mouse_event_audio
{
84 uint8_t report_number
; /* always 2 */
86 uint8_t unused
; /* always 0 */
87 } __attribute__ ((__packed__
));
89 /* hid audio controls */
90 enum pyra_mouse_event_audio_types
{
91 PYRA_MOUSE_EVENT_AUDIO_TYPE_MUTE
= 0xe2,
92 PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_UP
= 0xe9,
93 PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_DOWN
= 0xea,
96 enum pyra_mouse_event_button_types
{
98 * Mouse sends tilt events on report_number 1 and 3
99 * Tilt events are sent repeatedly with 0.94s between first and second
100 * event and 0.22s on subsequent
102 PYRA_MOUSE_EVENT_BUTTON_TYPE_TILT
= 0x10,
105 * These are sent sequentially
106 * data1 contains new profile number in range 1-5
108 PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_1
= 0x20,
109 PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_2
= 0x30,
112 * data1 = button_number (rmp index)
113 * data2 = pressed/released
115 PYRA_MOUSE_EVENT_BUTTON_TYPE_MACRO
= 0x40,
116 PYRA_MOUSE_EVENT_BUTTON_TYPE_SHORTCUT
= 0x50,
119 * data1 = button_number (rmp index)
121 PYRA_MOUSE_EVENT_BUTTON_TYPE_QUICKLAUNCH
= 0x60,
123 /* data1 = new cpi */
124 PYRA_MOUSE_EVENT_BUTTON_TYPE_CPI
= 0xb0,
126 /* data1 and data2 = new sensitivity */
127 PYRA_MOUSE_EVENT_BUTTON_TYPE_SENSITIVITY
= 0xc0,
129 PYRA_MOUSE_EVENT_BUTTON_TYPE_MULTIMEDIA
= 0xf0,
133 PYRA_MOUSE_EVENT_BUTTON_PRESS
= 0,
134 PYRA_MOUSE_EVENT_BUTTON_RELEASE
= 1,
137 struct pyra_roccat_report
{
141 } __attribute__ ((__packed__
));
148 struct mutex pyra_lock
;
149 struct pyra_profile_settings profile_settings
[5];