blob: f82daa1cdcb949cafb20cdceed4c757880565f4c [file] [log] [blame]
Stefan Achatz0e70f972011-01-30 13:38:24 +01001#ifndef __HID_ROCCAT_KOVAPLUS_H
2#define __HID_ROCCAT_KOVAPLUS_H
3
4/*
5 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
6 */
7
8/*
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)
12 * any later version.
13 */
14
15#include <linux/types.h>
16
Stefan Achatz0e70f972011-01-30 13:38:24 +010017enum kovaplus_control_requests {
Stefan Achatz0e70f972011-01-30 13:38:24 +010018 /* write; value = profile number range 0-4 */
19 KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS = 0x10,
20 /* write; value = profile number range 0-4 */
21 KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS = 0x20,
22};
23
Stefan Achatz0e70f972011-01-30 13:38:24 +010024struct kovaplus_actual_profile {
25 uint8_t command; /* KOVAPLUS_COMMAND_ACTUAL_PROFILE */
26 uint8_t size; /* always 3 */
27 uint8_t actual_profile; /* Range 0-4! */
28} __packed;
29
30struct kovaplus_profile_settings {
31 uint8_t command; /* KOVAPLUS_COMMAND_PROFILE_SETTINGS */
32 uint8_t size; /* 16 */
33 uint8_t profile_index; /* range 0-4 */
34 uint8_t unknown1;
35 uint8_t sensitivity_x; /* range 1-10 */
36 uint8_t sensitivity_y; /* range 1-10 */
37 uint8_t cpi_levels_enabled;
38 uint8_t cpi_startup_level; /* range 1-4 */
39 uint8_t data[8];
40} __packed;
41
42struct kovaplus_profile_buttons {
43 uint8_t command; /* KOVAPLUS_COMMAND_PROFILE_BUTTONS */
44 uint8_t size; /* 23 */
45 uint8_t profile_index; /* range 0-4 */
46 uint8_t data[20];
47} __packed;
48
49struct kovaplus_info {
50 uint8_t command; /* KOVAPLUS_COMMAND_INFO */
51 uint8_t size; /* 6 */
52 uint8_t firmware_version;
53 uint8_t unknown[3];
54} __packed;
55
56/* writes 1 on plugin */
57struct kovaplus_a {
58 uint8_t command; /* KOVAPLUS_COMMAND_A */
59 uint8_t size; /* 3 */
60 uint8_t unknown;
61} __packed;
62
63enum kovaplus_commands {
Stefan Achatz0e70f972011-01-30 13:38:24 +010064 KOVAPLUS_COMMAND_ACTUAL_PROFILE = 0x5,
65 KOVAPLUS_COMMAND_PROFILE_SETTINGS = 0x6,
66 KOVAPLUS_COMMAND_PROFILE_BUTTONS = 0x7,
67 KOVAPLUS_COMMAND_INFO = 0x9,
68 KOVAPLUS_COMMAND_A = 0xa,
69};
70
Stefan Achatz0e70f972011-01-30 13:38:24 +010071enum kovaplus_mouse_report_numbers {
72 KOVAPLUS_MOUSE_REPORT_NUMBER_MOUSE = 1,
73 KOVAPLUS_MOUSE_REPORT_NUMBER_AUDIO = 2,
74 KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON = 3,
75 KOVAPLUS_MOUSE_REPORT_NUMBER_KBD = 4,
76};
77
78struct kovaplus_mouse_report_button {
79 uint8_t report_number; /* KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON */
80 uint8_t unknown1;
81 uint8_t type;
82 uint8_t data1;
83 uint8_t data2;
84} __packed;
85
86enum kovaplus_mouse_report_button_types {
87 /* data1 = profile_number range 1-5; no release event */
88 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1 = 0x20,
89 /* data1 = profile_number range 1-5; no release event */
90 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_2 = 0x30,
91 /* data1 = button_number range 1-18; data2 = action */
92 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MACRO = 0x40,
93 /* data1 = button_number range 1-18; data2 = action */
94 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SHORTCUT = 0x50,
95 /* data1 = button_number range 1-18; data2 = action */
96 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH = 0x60,
97 /* data1 = button_number range 1-18; data2 = action */
98 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER = 0x80,
99 /* data1 = 1 = 400, 2 = 800, 4 = 1600, 7 = 3200; no release event */
100 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI = 0xb0,
101 /* data1 + data2 = sense range 1-10; no release event */
102 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY = 0xc0,
103 /* data1 = type as in profile_buttons; data2 = action */
104 KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MULTIMEDIA = 0xf0,
105};
106
107enum kovaplus_mouse_report_button_actions {
108 KOVAPLUS_MOUSE_REPORT_BUTTON_ACTION_PRESS = 0,
109 KOVAPLUS_MOUSE_REPORT_BUTTON_ACTION_RELEASE = 1,
110};
111
112struct kovaplus_roccat_report {
113 uint8_t type;
114 uint8_t profile;
115 uint8_t button;
116 uint8_t data1;
117 uint8_t data2;
118} __packed;
119
120struct kovaplus_device {
121 int actual_profile;
122 int actual_cpi;
123 int actual_x_sensitivity;
124 int actual_y_sensitivity;
125 int roccat_claimed;
126 int chrdev_minor;
127 struct mutex kovaplus_lock;
128 struct kovaplus_info info;
129 struct kovaplus_profile_settings profile_settings[5];
130 struct kovaplus_profile_buttons profile_buttons[5];
131};
132
133#endif