summaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-roccat-konepure.h
blob: 2cd24e93dfd6cce3a231dc0e46559bafd8c79944 (plain)
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
#ifndef __HID_ROCCAT_KONEPURE_H
#define __HID_ROCCAT_KONEPURE_H

/*
 * Copyright (c) 2012 Stefan Achatz <erazor_de@users.sourceforge.net>
 */

/*
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 */

#include <linux/types.h>

enum {
	KONEPURE_SIZE_ACTUAL_PROFILE = 0x03,
	KONEPURE_SIZE_CONTROL = 0x03,
	KONEPURE_SIZE_FIRMWARE_WRITE = 0x0402,
	KONEPURE_SIZE_INFO = 0x06,
	KONEPURE_SIZE_MACRO = 0x0822,
	KONEPURE_SIZE_PROFILE_SETTINGS = 0x1f,
	KONEPURE_SIZE_PROFILE_BUTTONS = 0x3b,
	KONEPURE_SIZE_SENSOR = 0x06,
	KONEPURE_SIZE_TALK = 0x10,
	KONEPURE_SIZE_TCU = 0x04,
	KONEPURE_SIZE_TCU_IMAGE = 0x0404,
};

enum konepure_control_requests {
	KONEPURE_CONTROL_REQUEST_GENERAL = 0x80,
	KONEPURE_CONTROL_REQUEST_BUTTONS = 0x90,
};

enum konepure_commands {
	KONEPURE_COMMAND_CONTROL = 0x04,
	KONEPURE_COMMAND_ACTUAL_PROFILE = 0x05,
	KONEPURE_COMMAND_PROFILE_SETTINGS = 0x06,
	KONEPURE_COMMAND_PROFILE_BUTTONS = 0x07,
	KONEPURE_COMMAND_MACRO = 0x08,
	KONEPURE_COMMAND_INFO = 0x09,
	KONEPURE_COMMAND_TCU = 0x0c,
	KONEPURE_COMMAND_TCU_IMAGE = 0x0c,
	KONEPURE_COMMAND_E = 0x0e,
	KONEPURE_COMMAND_SENSOR = 0x0f,
	KONEPURE_COMMAND_TALK = 0x10,
	KONEPURE_COMMAND_FIRMWARE_WRITE = 0x1b,
	KONEPURE_COMMAND_FIRMWARE_WRITE_CONTROL = 0x1c,
};

enum {
	KONEPURE_MOUSE_REPORT_NUMBER_BUTTON = 3,
};

struct konepure_mouse_report_button {
	uint8_t report_number; /* always KONEPURE_MOUSE_REPORT_NUMBER_BUTTON */
	uint8_t zero;
	uint8_t type;
	uint8_t data1;
	uint8_t data2;
	uint8_t zero2;
	uint8_t unknown[2];
} __packed;

struct konepure_device {
	int roccat_claimed;
	int chrdev_minor;
	struct mutex konepure_lock;
};

#endif