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>
21 uint8_t command
; /* PYRA_COMMAND_B */
22 uint8_t size
; /* always 3 */
23 uint8_t unknown
; /* 1 */
27 uint8_t command
; /* PYRA_COMMAND_CONTROL */
29 * value is profile number for request_settings and request_buttons
30 * 1 if status ok for request_status
32 uint8_t value
; /* Range 0-4 */
36 enum pyra_control_requests
{
37 PYRA_CONTROL_REQUEST_STATUS
= 0x00,
38 PYRA_CONTROL_REQUEST_PROFILE_SETTINGS
= 0x10,
39 PYRA_CONTROL_REQUEST_PROFILE_BUTTONS
= 0x20
42 struct pyra_settings
{
43 uint8_t command
; /* PYRA_COMMAND_SETTINGS */
44 uint8_t size
; /* always 3 */
45 uint8_t startup_profile
; /* Range 0-4! */
48 struct pyra_profile_settings
{
49 uint8_t command
; /* PYRA_COMMAND_PROFILE_SETTINGS */
50 uint8_t size
; /* always 0xd */
51 uint8_t number
; /* Range 0-4 */
53 uint8_t x_sensitivity
; /* 0x1-0xa */
54 uint8_t y_sensitivity
;
55 uint8_t x_cpi
; /* unused */
56 uint8_t y_cpi
; /* this value is for x and y */
57 uint8_t lightswitch
; /* 0 = off, 1 = on */
60 uint16_t checksum
; /* byte sum */
63 struct pyra_profile_buttons
{
64 uint8_t command
; /* PYRA_COMMAND_PROFILE_BUTTONS */
65 uint8_t size
; /* always 0x13 */
66 uint8_t number
; /* Range 0-4 */
68 uint16_t checksum
; /* byte sum */
72 uint8_t command
; /* PYRA_COMMAND_INFO */
73 uint8_t size
; /* always 6 */
74 uint8_t firmware_version
;
75 uint8_t unknown1
; /* always 0 */
76 uint8_t unknown2
; /* always 1 */
77 uint8_t unknown3
; /* always 0 */
81 PYRA_COMMAND_CONTROL
= 0x4,
82 PYRA_COMMAND_SETTINGS
= 0x5,
83 PYRA_COMMAND_PROFILE_SETTINGS
= 0x6,
84 PYRA_COMMAND_PROFILE_BUTTONS
= 0x7,
85 PYRA_COMMAND_INFO
= 0x9,
89 enum pyra_usb_commands
{
90 PYRA_USB_COMMAND_CONTROL
= 0x304,
91 PYRA_USB_COMMAND_SETTINGS
= 0x305,
92 PYRA_USB_COMMAND_PROFILE_SETTINGS
= 0x306,
93 PYRA_USB_COMMAND_PROFILE_BUTTONS
= 0x307,
94 PYRA_USB_COMMAND_INFO
= 0x309,
95 PYRA_USB_COMMAND_B
= 0x30b /* writes 3 bytes */
98 enum pyra_mouse_report_numbers
{
99 PYRA_MOUSE_REPORT_NUMBER_HID
= 1,
100 PYRA_MOUSE_REPORT_NUMBER_AUDIO
= 2,
101 PYRA_MOUSE_REPORT_NUMBER_BUTTON
= 3,
104 struct pyra_mouse_event_button
{
105 uint8_t report_number
; /* always 3 */
106 uint8_t unknown
; /* always 0 */
112 struct pyra_mouse_event_audio
{
113 uint8_t report_number
; /* always 2 */
115 uint8_t unused
; /* always 0 */
118 /* hid audio controls */
119 enum pyra_mouse_event_audio_types
{
120 PYRA_MOUSE_EVENT_AUDIO_TYPE_MUTE
= 0xe2,
121 PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_UP
= 0xe9,
122 PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_DOWN
= 0xea,
125 enum pyra_mouse_event_button_types
{
127 * Mouse sends tilt events on report_number 1 and 3
128 * Tilt events are sent repeatedly with 0.94s between first and second
129 * event and 0.22s on subsequent
131 PYRA_MOUSE_EVENT_BUTTON_TYPE_TILT
= 0x10,
134 * These are sent sequentially
135 * data1 contains new profile number in range 1-5
137 PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_1
= 0x20,
138 PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_2
= 0x30,
141 * data1 = button_number (rmp index)
142 * data2 = pressed/released
144 PYRA_MOUSE_EVENT_BUTTON_TYPE_MACRO
= 0x40,
145 PYRA_MOUSE_EVENT_BUTTON_TYPE_SHORTCUT
= 0x50,
148 * data1 = button_number (rmp index)
150 PYRA_MOUSE_EVENT_BUTTON_TYPE_QUICKLAUNCH
= 0x60,
152 /* data1 = new cpi */
153 PYRA_MOUSE_EVENT_BUTTON_TYPE_CPI
= 0xb0,
155 /* data1 and data2 = new sensitivity */
156 PYRA_MOUSE_EVENT_BUTTON_TYPE_SENSITIVITY
= 0xc0,
158 PYRA_MOUSE_EVENT_BUTTON_TYPE_MULTIMEDIA
= 0xf0,
162 PYRA_MOUSE_EVENT_BUTTON_PRESS
= 0,
163 PYRA_MOUSE_EVENT_BUTTON_RELEASE
= 1,
166 struct pyra_roccat_report
{
177 int firmware_version
;
180 struct mutex pyra_lock
;
181 struct pyra_settings settings
;
182 struct pyra_profile_settings profile_settings
[5];
183 struct pyra_profile_buttons profile_buttons
[5];