Linux Audio

Check our new training course

Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0-or-later */
  2#ifndef __HID_ROCCAT_PYRA_H
  3#define __HID_ROCCAT_PYRA_H
  4
  5/*
  6 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
  7 */
  8
  9/*
 
 
 
 
 10 */
 11
 12#include <linux/types.h>
 13
 14enum {
 15	PYRA_SIZE_CONTROL = 0x03,
 16	PYRA_SIZE_INFO = 0x06,
 17	PYRA_SIZE_PROFILE_SETTINGS = 0x0d,
 18	PYRA_SIZE_PROFILE_BUTTONS = 0x13,
 19	PYRA_SIZE_SETTINGS = 0x03,
 20};
 21
 22enum pyra_control_requests {
 23	PYRA_CONTROL_REQUEST_PROFILE_SETTINGS = 0x10,
 24	PYRA_CONTROL_REQUEST_PROFILE_BUTTONS = 0x20
 25};
 26
 27struct pyra_settings {
 28	uint8_t command; /* PYRA_COMMAND_SETTINGS */
 29	uint8_t size; /* always 3 */
 30	uint8_t startup_profile; /* Range 0-4! */
 31} __attribute__ ((__packed__));
 32
 33struct pyra_profile_settings {
 34	uint8_t command; /* PYRA_COMMAND_PROFILE_SETTINGS */
 35	uint8_t size; /* always 0xd */
 36	uint8_t number; /* Range 0-4 */
 37	uint8_t xysync;
 38	uint8_t x_sensitivity; /* 0x1-0xa */
 39	uint8_t y_sensitivity;
 40	uint8_t x_cpi; /* unused */
 41	uint8_t y_cpi; /* this value is for x and y */
 42	uint8_t lightswitch; /* 0 = off, 1 = on */
 43	uint8_t light_effect;
 44	uint8_t handedness;
 45	uint16_t checksum; /* byte sum */
 46} __attribute__ ((__packed__));
 47
 48struct pyra_info {
 49	uint8_t command; /* PYRA_COMMAND_INFO */
 50	uint8_t size; /* always 6 */
 51	uint8_t firmware_version;
 52	uint8_t unknown1; /* always 0 */
 53	uint8_t unknown2; /* always 1 */
 54	uint8_t unknown3; /* always 0 */
 55} __attribute__ ((__packed__));
 56
 57enum pyra_commands {
 58	PYRA_COMMAND_CONTROL = 0x4,
 59	PYRA_COMMAND_SETTINGS = 0x5,
 60	PYRA_COMMAND_PROFILE_SETTINGS = 0x6,
 61	PYRA_COMMAND_PROFILE_BUTTONS = 0x7,
 62	PYRA_COMMAND_INFO = 0x9,
 63	PYRA_COMMAND_B = 0xb
 64};
 65
 66enum pyra_mouse_report_numbers {
 67	PYRA_MOUSE_REPORT_NUMBER_HID = 1,
 68	PYRA_MOUSE_REPORT_NUMBER_AUDIO = 2,
 69	PYRA_MOUSE_REPORT_NUMBER_BUTTON = 3,
 70};
 71
 72struct pyra_mouse_event_button {
 73	uint8_t report_number; /* always 3 */
 74	uint8_t unknown; /* always 0 */
 75	uint8_t type;
 76	uint8_t data1;
 77	uint8_t data2;
 78} __attribute__ ((__packed__));
 79
 80struct pyra_mouse_event_audio {
 81	uint8_t report_number; /* always 2 */
 82	uint8_t type;
 83	uint8_t unused; /* always 0 */
 84} __attribute__ ((__packed__));
 85
 86/* hid audio controls */
 87enum pyra_mouse_event_audio_types {
 88	PYRA_MOUSE_EVENT_AUDIO_TYPE_MUTE = 0xe2,
 89	PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_UP = 0xe9,
 90	PYRA_MOUSE_EVENT_AUDIO_TYPE_VOLUME_DOWN = 0xea,
 91};
 92
 93enum pyra_mouse_event_button_types {
 94	/*
 95	 * Mouse sends tilt events on report_number 1 and 3
 96	 * Tilt events are sent repeatedly with 0.94s between first and second
 97	 * event and 0.22s on subsequent
 98	 */
 99	PYRA_MOUSE_EVENT_BUTTON_TYPE_TILT = 0x10,
100
101	/*
102	 * These are sent sequentially
103	 * data1 contains new profile number in range 1-5
104	 */
105	PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_1 = 0x20,
106	PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_2 = 0x30,
107
108	/*
109	 * data1 = button_number (rmp index)
110	 * data2 = pressed/released
111	 */
112	PYRA_MOUSE_EVENT_BUTTON_TYPE_MACRO = 0x40,
113	PYRA_MOUSE_EVENT_BUTTON_TYPE_SHORTCUT = 0x50,
114
115	/*
116	 * data1 = button_number (rmp index)
117	 */
118	PYRA_MOUSE_EVENT_BUTTON_TYPE_QUICKLAUNCH = 0x60,
119
120	/* data1 = new cpi */
121	PYRA_MOUSE_EVENT_BUTTON_TYPE_CPI = 0xb0,
122
123	/* data1 and data2 = new sensitivity */
124	PYRA_MOUSE_EVENT_BUTTON_TYPE_SENSITIVITY = 0xc0,
125
126	PYRA_MOUSE_EVENT_BUTTON_TYPE_MULTIMEDIA = 0xf0,
127};
128
129enum {
130	PYRA_MOUSE_EVENT_BUTTON_PRESS = 0,
131	PYRA_MOUSE_EVENT_BUTTON_RELEASE = 1,
132};
133
134struct pyra_roccat_report {
135	uint8_t type;
136	uint8_t value;
137	uint8_t key;
138} __attribute__ ((__packed__));
139
140struct pyra_device {
141	int actual_profile;
142	int actual_cpi;
143	int roccat_claimed;
144	int chrdev_minor;
145	struct mutex pyra_lock;
146	struct pyra_profile_settings profile_settings[5];
147};
148
149#endif
v3.15
 
  1#ifndef __HID_ROCCAT_PYRA_H
  2#define __HID_ROCCAT_PYRA_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
 17enum {
 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,
 23};
 24
 25enum pyra_control_requests {
 26	PYRA_CONTROL_REQUEST_PROFILE_SETTINGS = 0x10,
 27	PYRA_CONTROL_REQUEST_PROFILE_BUTTONS = 0x20
 28};
 29
 30struct 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__));
 35
 36struct pyra_profile_settings {
 37	uint8_t command; /* PYRA_COMMAND_PROFILE_SETTINGS */
 38	uint8_t size; /* always 0xd */
 39	uint8_t number; /* Range 0-4 */
 40	uint8_t xysync;
 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 */
 46	uint8_t light_effect;
 47	uint8_t handedness;
 48	uint16_t checksum; /* byte sum */
 49} __attribute__ ((__packed__));
 50
 51struct pyra_info {
 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__));
 59
 60enum pyra_commands {
 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,
 66	PYRA_COMMAND_B = 0xb
 67};
 68
 69enum 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,
 73};
 74
 75struct pyra_mouse_event_button {
 76	uint8_t report_number; /* always 3 */
 77	uint8_t unknown; /* always 0 */
 78	uint8_t type;
 79	uint8_t data1;
 80	uint8_t data2;
 81} __attribute__ ((__packed__));
 82
 83struct pyra_mouse_event_audio {
 84	uint8_t report_number; /* always 2 */
 85	uint8_t type;
 86	uint8_t unused; /* always 0 */
 87} __attribute__ ((__packed__));
 88
 89/* hid audio controls */
 90enum 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,
 94};
 95
 96enum pyra_mouse_event_button_types {
 97	/*
 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
101	 */
102	PYRA_MOUSE_EVENT_BUTTON_TYPE_TILT = 0x10,
103
104	/*
105	 * These are sent sequentially
106	 * data1 contains new profile number in range 1-5
107	 */
108	PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_1 = 0x20,
109	PYRA_MOUSE_EVENT_BUTTON_TYPE_PROFILE_2 = 0x30,
110
111	/*
112	 * data1 = button_number (rmp index)
113	 * data2 = pressed/released
114	 */
115	PYRA_MOUSE_EVENT_BUTTON_TYPE_MACRO = 0x40,
116	PYRA_MOUSE_EVENT_BUTTON_TYPE_SHORTCUT = 0x50,
117
118	/*
119	 * data1 = button_number (rmp index)
120	 */
121	PYRA_MOUSE_EVENT_BUTTON_TYPE_QUICKLAUNCH = 0x60,
122
123	/* data1 = new cpi */
124	PYRA_MOUSE_EVENT_BUTTON_TYPE_CPI = 0xb0,
125
126	/* data1 and data2 = new sensitivity */
127	PYRA_MOUSE_EVENT_BUTTON_TYPE_SENSITIVITY = 0xc0,
128
129	PYRA_MOUSE_EVENT_BUTTON_TYPE_MULTIMEDIA = 0xf0,
130};
131
132enum {
133	PYRA_MOUSE_EVENT_BUTTON_PRESS = 0,
134	PYRA_MOUSE_EVENT_BUTTON_RELEASE = 1,
135};
136
137struct pyra_roccat_report {
138	uint8_t type;
139	uint8_t value;
140	uint8_t key;
141} __attribute__ ((__packed__));
142
143struct pyra_device {
144	int actual_profile;
145	int actual_cpi;
146	int roccat_claimed;
147	int chrdev_minor;
148	struct mutex pyra_lock;
149	struct pyra_profile_settings profile_settings[5];
150};
151
152#endif