1 #ifndef __HID_ROCCAT_KONEPLUS_H
2 #define __HID_ROCCAT_KONEPLUS_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 KONEPLUS_SIZE_ACTUAL_PROFILE
= 0x03,
19 KONEPLUS_SIZE_CONTROL
= 0x03,
20 KONEPLUS_SIZE_FIRMWARE_WRITE
= 0x0402,
21 KONEPLUS_SIZE_INFO
= 0x06,
22 KONEPLUS_SIZE_MACRO
= 0x0822,
23 KONEPLUS_SIZE_PROFILE_SETTINGS
= 0x2b,
24 KONEPLUS_SIZE_PROFILE_BUTTONS
= 0x4d,
25 KONEPLUS_SIZE_SENSOR
= 0x06,
26 KONEPLUS_SIZE_TALK
= 0x10,
27 KONEPLUS_SIZE_TCU
= 0x04,
28 KONEPLUS_SIZE_TCU_IMAGE
= 0x0404,
31 enum koneplus_control_requests
{
32 KONEPLUS_CONTROL_REQUEST_PROFILE_SETTINGS
= 0x80,
33 KONEPLUS_CONTROL_REQUEST_PROFILE_BUTTONS
= 0x90,
36 struct koneplus_actual_profile
{
37 uint8_t command
; /* KONEPLUS_COMMAND_ACTUAL_PROFILE */
38 uint8_t size
; /* always 3 */
39 uint8_t actual_profile
; /* Range 0-4! */
40 } __attribute__ ((__packed__
));
42 struct koneplus_info
{
43 uint8_t command
; /* KONEPLUS_COMMAND_INFO */
44 uint8_t size
; /* always 6 */
45 uint8_t firmware_version
;
47 } __attribute__ ((__packed__
));
49 enum koneplus_commands
{
50 KONEPLUS_COMMAND_ACTUAL_PROFILE
= 0x5,
51 KONEPLUS_COMMAND_CONTROL
= 0x4,
52 KONEPLUS_COMMAND_PROFILE_SETTINGS
= 0x6,
53 KONEPLUS_COMMAND_PROFILE_BUTTONS
= 0x7,
54 KONEPLUS_COMMAND_MACRO
= 0x8,
55 KONEPLUS_COMMAND_INFO
= 0x9,
56 KONEPLUS_COMMAND_TCU
= 0xc,
57 KONEPLUS_COMMAND_TCU_IMAGE
= 0xc,
58 KONEPLUS_COMMAND_E
= 0xe,
59 KONEPLUS_COMMAND_SENSOR
= 0xf,
60 KONEPLUS_COMMAND_TALK
= 0x10,
61 KONEPLUS_COMMAND_FIRMWARE_WRITE
= 0x1b,
62 KONEPLUS_COMMAND_FIRMWARE_WRITE_CONTROL
= 0x1c,
65 enum koneplus_mouse_report_numbers
{
66 KONEPLUS_MOUSE_REPORT_NUMBER_HID
= 1,
67 KONEPLUS_MOUSE_REPORT_NUMBER_AUDIO
= 2,
68 KONEPLUS_MOUSE_REPORT_NUMBER_BUTTON
= 3,
71 struct koneplus_mouse_report_button
{
72 uint8_t report_number
; /* always KONEPLUS_MOUSE_REPORT_NUMBER_BUTTON */
79 } __attribute__ ((__packed__
));
81 enum koneplus_mouse_report_button_types
{
82 /* data1 = new profile range 1-5 */
83 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE
= 0x20,
85 /* data1 = button number range 1-24; data2 = action */
86 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH
= 0x60,
88 /* data1 = button number range 1-24; data2 = action */
89 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER
= 0x80,
91 /* data1 = setting number range 1-5 */
92 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI
= 0xb0,
94 /* data1 and data2 = range 0x1-0xb */
95 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY
= 0xc0,
97 /* data1 = 22 = next track...
100 KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_MULTIMEDIA
= 0xf0,
101 KONEPLUS_MOUSE_REPORT_TALK
= 0xff,
104 enum koneplus_mouse_report_button_action
{
105 KONEPLUS_MOUSE_REPORT_BUTTON_ACTION_PRESS
= 0,
106 KONEPLUS_MOUSE_REPORT_BUTTON_ACTION_RELEASE
= 1,
109 struct koneplus_roccat_report
{
114 } __attribute__ ((__packed__
));
116 struct koneplus_device
{
122 struct mutex koneplus_lock
;