// SPDX-License-Identifier: GPL-2.0-or-later
/*
* HID driver for Waltop devices not fully compliant with HID standard
*
* Copyright (c) 2010 Nikolai Kondrashov
*/
/*
*/
#include <linux/device.h>
#include <linux/hid.h>
#include <linux/module.h>
#include "hid-ids.h"
/*
* There exists an official driver on the manufacturer's website, which
* wasn't submitted to the kernel, for some reason. The official driver
* doesn't seem to support extra features of some tablets, like wheels.
*
* It shows that the feature report ID 2 could be used to control any waltop
* tablet input mode, switching it between "default", "tablet" and "ink".
*
* This driver only uses "default" mode for all the supported tablets. This
* mode tries to be HID-compatible (not very successfully), but cripples the
* resolution of some tablets.
*
* The "tablet" mode uses some proprietary, yet decipherable protocol, which
* represents the correct resolution, but is possibly HID-incompatible (i.e.
* indescribable by a report descriptor).
*
* The purpose of the "ink" mode is unknown.
*
* The feature reports needed for switching to each mode are these:
*
* 02 16 00 default
* 02 16 01 tablet
* 02 16 02 ink
*/
/* Size of the original report descriptor of Slim Tablet 5.8 inch */
#define SLIM_TABLET_5_8_INCH_RDESC_ORIG_SIZE 222
/* Fixed Slim Tablet 5.8 inch descriptor */
static const __u8 slim_tablet_5_8_inch_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 x88, 0 x13, /* Physical Maximum (5000), */
0 x26, 0 x10, 0 x27, /* Logical Maximum (10000), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 xB8, 0 x0B, /* Physical Maximum (3000), */
0 x26, 0 x70, 0 x17, /* Logical Maximum (6000), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of Slim Tablet 12.1 inch */
#define SLIM_TABLET_12_1_INCH_RDESC_ORIG_SIZE 269
/* Fixed Slim Tablet 12.1 inch descriptor */
static const __u8 slim_tablet_12_1_inch_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 x10, 0 x27, /* Physical Maximum (10000), */
0 x26, 0 x20, 0 x4E, /* Logical Maximum (20000), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 x6A, 0 x18, /* Physical Maximum (6250), */
0 x26, 0 xD4, 0 x30, /* Logical Maximum (12500), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of Q Pad */
#define Q_PAD_RDESC_ORIG_SIZE 241
/* Fixed Q Pad descriptor */
static const __u8 q_pad_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 x70, 0 x17, /* Physical Maximum (6000), */
0 x26, 0 x00, 0 x30, /* Logical Maximum (12288), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 x94, 0 x11, /* Physical Maximum (4500), */
0 x26, 0 x00, 0 x24, /* Logical Maximum (9216), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of tablet with PID 0038 */
#define PID_0038_RDESC_ORIG_SIZE 241
/*
* Fixed report descriptor for tablet with PID 0038.
*/
static const __u8 pid_0038_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 x2E, 0 x22, /* Physical Maximum (8750), */
0 x26, 0 x00, 0 x46, /* Logical Maximum (17920), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 x82, 0 x14, /* Physical Maximum (5250), */
0 x26, 0 x00, 0 x2A, /* Logical Maximum (10752), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of Media Tablet 10.6 inch */
#define MEDIA_TABLET_10_6_INCH_RDESC_ORIG_SIZE 300
/* Fixed Media Tablet 10.6 inch descriptor */
static const __u8 media_tablet_10_6_inch_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x75, 0 x01, /* Report Size (1), */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 x28, 0 x23, /* Physical Maximum (9000), */
0 x26, 0 x50, 0 x46, /* Logical Maximum (18000), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 x7C, 0 x15, /* Physical Maximum (5500), */
0 x26, 0 xF8, 0 x2A, /* Logical Maximum (11000), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x09, 0 x02, /* Usage (Mouse), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x01, /* Report ID (1), */
0 x09, 0 x01, /* Usage (Pointer), */
0 xA0, /* Collection (Physical), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x95, 0 x02, /* Report Count (2), */
0 x15, 0 xFF, /* Logical Minimum (-1), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x09, 0 x38, /* Usage (Wheel), */
0 x0B, 0 x38, 0 x02, /* Usage (Consumer AC Pan), */
0 x0C, 0 x00,
0 x81, 0 x06, /* Input (Variable, Relative), */
0 x95, 0 x02, /* Report Count (2), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x0C, /* Usage Page (Consumer), */
0 x09, 0 x01, /* Usage (Consumer Control), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0D, /* Report ID (13), */
0 x95, 0 x01, /* Report Count (1), */
0 x75, 0 x10, /* Report Size (16), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x0A, 0 x2F, 0 x02, /* Usage (AC Zoom), */
0 x0A, 0 x2E, 0 x02, /* Usage (AC Zoom Out), */
0 x0A, 0 x2D, 0 x02, /* Usage (AC Zoom In), */
0 x09, 0 xB6, /* Usage (Scan Previous Track), */
0 x09, 0 xB5, /* Usage (Scan Next Track), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x0A, 0 x2E, 0 x02, /* Usage (AC Zoom Out), */
0 x0A, 0 x2D, 0 x02, /* Usage (AC Zoom In), */
0 x15, 0 x0C, /* Logical Minimum (12), */
0 x25, 0 x17, /* Logical Maximum (23), */
0 x75, 0 x05, /* Report Size (5), */
0 x80, /* Input, */
0 x75, 0 x03, /* Report Size (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x20, /* Report Size (32), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0, /* End Collection, */
0 x09, 0 x01, /* Usage (Consumer Control), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0C, /* Report ID (12), */
0 x75, 0 x01, /* Report Size (1), */
0 x09, 0 xE9, /* Usage (Volume Inc), */
0 x09, 0 xEA, /* Usage (Volume Dec), */
0 x09, 0 xE2, /* Usage (Mute), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x06, /* Input (Variable, Relative), */
0 x95, 0 x35, /* Report Count (53), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of Media Tablet 14.1 inch */
#define MEDIA_TABLET_14_1_INCH_RDESC_ORIG_SIZE 309
/* Fixed Media Tablet 14.1 inch descriptor */
static const __u8 media_tablet_14_1_inch_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x04, /* Report Size (4), */
0 x95, 0 x01, /* Report Count (1), */
0 x80, /* Input, */
0 x75, 0 x01, /* Report Size (1), */
0 x09, 0 x32, /* Usage (In Range), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x65, 0 x13, /* Unit (Inch), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x34, /* Physical Minimum (0), */
0 x09, 0 x30, /* Usage (X), */
0 x46, 0 xE0, 0 x2E, /* Physical Maximum (12000), */
0 x26, 0 xFF, 0 x3F, /* Logical Maximum (16383), */
0 x81, 0 x02, /* Input (Variable), */
0 x09, 0 x31, /* Usage (Y), */
0 x46, 0 x52, 0 x1C, /* Physical Maximum (7250), */
0 x26, 0 xFF, 0 x3F, /* Logical Maximum (16383), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x81, 0 x02, /* Input (Variable), */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x09, 0 x02, /* Usage (Mouse), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x01, /* Report ID (1), */
0 x09, 0 x01, /* Usage (Pointer), */
0 xA0, /* Collection (Physical), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x95, 0 x02, /* Report Count (2), */
0 x15, 0 xFF, /* Logical Minimum (-1), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x09, 0 x38, /* Usage (Wheel), */
0 x0B, 0 x38, 0 x02, /* Usage (Consumer AC Pan), */
0 x0C, 0 x00,
0 x81, 0 x06, /* Input (Variable, Relative), */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x0C, /* Usage Page (Consumer), */
0 x09, 0 x01, /* Usage (Consumer Control), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0D, /* Report ID (13), */
0 x95, 0 x01, /* Report Count (1), */
0 x75, 0 x10, /* Report Size (16), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x0A, 0 x2F, 0 x02, /* Usage (AC Zoom), */
0 x0A, 0 x2E, 0 x02, /* Usage (AC Zoom Out), */
0 x0A, 0 x2D, 0 x02, /* Usage (AC Zoom In), */
0 x09, 0 xB6, /* Usage (Scan Previous Track), */
0 x09, 0 xB5, /* Usage (Scan Next Track), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x08, /* Usage (00h), */
0 x0A, 0 x2E, 0 x02, /* Usage (AC Zoom Out), */
0 x0A, 0 x2D, 0 x02, /* Usage (AC Zoom In), */
0 x15, 0 x0C, /* Logical Minimum (12), */
0 x25, 0 x17, /* Logical Maximum (23), */
0 x75, 0 x05, /* Report Size (5), */
0 x80, /* Input, */
0 x75, 0 x03, /* Report Size (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x20, /* Report Size (32), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0, /* End Collection, */
0 x09, 0 x01, /* Usage (Consumer Control), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0C, /* Report ID (12), */
0 x75, 0 x01, /* Report Size (1), */
0 x09, 0 xE9, /* Usage (Volume Inc), */
0 x09, 0 xEA, /* Usage (Volume Dec), */
0 x09, 0 xE2, /* Usage (Mute), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x06, /* Input (Variable, Relative), */
0 x75, 0 x05, /* Report Size (5), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0 /* End Collection */
};
/* Size of the original report descriptor of Sirius Battery Free Tablet */
#define SIRIUS_BATTERY_FREE_TABLET_RDESC_ORIG_SIZE 335
/* Fixed Sirius Battery Free Tablet descriptor */
static const __u8 sirius_battery_free_tablet_rdesc_fixed[] = {
0 x05, 0 x0D, /* Usage Page (Digitizer), */
0 x09, 0 x02, /* Usage (Pen), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x10, /* Report ID (16), */
0 x09, 0 x20, /* Usage (Stylus), */
0 xA0, /* Collection (Physical), */
0 x95, 0 x01, /* Report Count (1), */
0 x15, 0 x01, /* Logical Minimum (1), */
0 x25, 0 x03, /* Logical Maximum (3), */
0 x75, 0 x02, /* Report Size (2), */
0 x09, 0 x42, /* Usage (Tip Switch), */
0 x09, 0 x44, /* Usage (Barrel Switch), */
0 x09, 0 x46, /* Usage (Tablet Pick), */
0 x80, /* Input, */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x09, 0 x3C, /* Usage (Invert), */
0 x81, 0 x02, /* Input (Variable), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x09, 0 x32, /* Usage (In Range), */
0 x81, 0 x02, /* Input (Variable), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xA4, /* Push, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x55, 0 xFD, /* Unit Exponent (-3), */
0 x65, 0 x13, /* Unit (Inch), */
0 x34, /* Physical Minimum (0), */
0 x14, /* Logical Minimum (0), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x46, 0 x10, 0 x27, /* Physical Maximum (10000), */
0 x26, 0 x20, 0 x4E, /* Logical Maximum (20000), */
0 x09, 0 x30, /* Usage (X), */
0 x81, 0 x02, /* Input (Variable), */
0 x46, 0 x70, 0 x17, /* Physical Maximum (6000), */
0 x26, 0 xE0, 0 x2E, /* Logical Maximum (12000), */
0 x09, 0 x31, /* Usage (Y), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x01, /* Report Count (1), */
0 x14, /* Logical Minimum (0), */
0 x26, 0 xFF, 0 x03, /* Logical Maximum (1023), */
0 x09, 0 x30, /* Usage (Tip Pressure), */
0 x81, 0 x02, /* Input (Variable), */
0 xA4, /* Push, */
0 x55, 0 xFE, /* Unit Exponent (-2), */
0 x65, 0 x12, /* Unit (Radians), */
0 x35, 0 x97, /* Physical Minimum (-105), */
0 x45, 0 x69, /* Physical Maximum (105), */
0 x15, 0 x97, /* Logical Minimum (-105), */
0 x25, 0 x69, /* Logical Maximum (105), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x02, /* Report Count (2), */
0 x09, 0 x3D, /* Usage (X Tilt), */
0 x09, 0 x3E, /* Usage (Y Tilt), */
0 x81, 0 x02, /* Input (Variable), */
0 xB4, /* Pop, */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x09, 0 x02, /* Usage (Mouse), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x01, /* Report ID (1), */
0 x09, 0 x01, /* Usage (Pointer), */
0 xA0, /* Collection (Physical), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x09, 0 x38, /* Usage (Wheel), */
0 x15, 0 xFF, /* Logical Minimum (-1), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x06, /* Input (Variable, Relative), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0, /* End Collection, */
0 xC0, /* End Collection, */
0 x05, 0 x01, /* Usage Page (Desktop), */
0 x09, 0 x06, /* Usage (Keyboard), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0D, /* Report ID (13), */
0 x05, 0 x07, /* Usage Page (Keyboard), */
0 x19, 0 xE0, /* Usage Minimum (KB Leftcontrol), */
0 x29, 0 xE7, /* Usage Maximum (KB Right GUI), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x08, /* Report Count (8), */
0 x81, 0 x02, /* Input (Variable), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x01, /* Input (Constant), */
0 x18, /* Usage Minimum (None), */
0 x29, 0 x65, /* Usage Maximum (KB Application), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x65, /* Logical Maximum (101), */
0 x75, 0 x08, /* Report Size (8), */
0 x95, 0 x05, /* Report Count (5), */
0 x80, /* Input, */
0 xC0, /* End Collection, */
0 x05, 0 x0C, /* Usage Page (Consumer), */
0 x09, 0 x01, /* Usage (Consumer Control), */
0 xA1, 0 x01, /* Collection (Application), */
0 x85, 0 x0C, /* Report ID (12), */
0 x09, 0 xE9, /* Usage (Volume Inc), */
0 x09, 0 xEA, /* Usage (Volume Dec), */
0 x14, /* Logical Minimum (0), */
0 x25, 0 x01, /* Logical Maximum (1), */
0 x75, 0 x01, /* Report Size (1), */
0 x95, 0 x02, /* Report Count (2), */
0 x81, 0 x02, /* Input (Variable), */
0 x75, 0 x06, /* Report Size (6), */
0 x95, 0 x01, /* Report Count (1), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 x75, 0 x10, /* Report Size (16), */
0 x95, 0 x03, /* Report Count (3), */
0 x81, 0 x03, /* Input (Constant, Variable), */
0 xC0 /* End Collection */
};
static const __u8 *waltop_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
switch (hdev->product) {
case USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH:
if (*rsize == SLIM_TABLET_5_8_INCH_RDESC_ORIG_SIZE) {
*rsize = sizeof (slim_tablet_5_8_inch_rdesc_fixed);
return slim_tablet_5_8_inch_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH:
if (*rsize == SLIM_TABLET_12_1_INCH_RDESC_ORIG_SIZE) {
*rsize = sizeof (slim_tablet_12_1_inch_rdesc_fixed);
return slim_tablet_12_1_inch_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_Q_PAD:
if (*rsize == Q_PAD_RDESC_ORIG_SIZE) {
*rsize = sizeof (q_pad_rdesc_fixed);
return q_pad_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_PID_0038:
if (*rsize == PID_0038_RDESC_ORIG_SIZE) {
*rsize = sizeof (pid_0038_rdesc_fixed);
return pid_0038_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH:
if (*rsize == MEDIA_TABLET_10_6_INCH_RDESC_ORIG_SIZE) {
*rsize = sizeof (media_tablet_10_6_inch_rdesc_fixed);
return media_tablet_10_6_inch_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH:
if (*rsize == MEDIA_TABLET_14_1_INCH_RDESC_ORIG_SIZE) {
*rsize = sizeof (media_tablet_14_1_inch_rdesc_fixed);
return media_tablet_14_1_inch_rdesc_fixed;
}
break ;
case USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET:
if (*rsize == SIRIUS_BATTERY_FREE_TABLET_RDESC_ORIG_SIZE) {
*rsize = sizeof (sirius_battery_free_tablet_rdesc_fixed);
return sirius_battery_free_tablet_rdesc_fixed;
}
break ;
}
return rdesc;
}
static int waltop_raw_event(struct hid_device *hdev, struct hid_report *report,
u8 *data, int size)
{
/* If this is a pen input report */
if (report->type == HID_INPUT_REPORT && report->id == 16 && size >= 8 ) {
/*
* Ignore reported pressure when a barrel button is pressed,
* because it is rarely correct.
*/
/* If a barrel button is pressed */
if ((data[1 ] & 0 xF) > 1 ) {
/* Report zero pressure */
data[6 ] = 0 ;
data[7 ] = 0 ;
}
}
/* If this is a pen input report of Sirius Battery Free Tablet */
if (hdev->product == USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET &&
report->type == HID_INPUT_REPORT &&
report->id == 16 &&
size == 10 ) {
/*
* The tablet reports tilt as roughly sin(a)*21 (18 means 60
* degrees).
*
* This array stores angles as radians * 100, corresponding to
* reported values up to 60 degrees, as expected by userspace.
*/
static const s8 tilt_to_radians[] = {
0 , 5 , 10 , 14 , 19 , 24 , 29 , 34 , 40 , 45 ,
50 , 56 , 62 , 68 , 74 , 81 , 88 , 96 , 105
};
s8 tilt_x = (s8)data[8 ];
s8 tilt_y = (s8)data[9 ];
s8 sign_x = tilt_x >= 0 ? 1 : -1 ;
s8 sign_y = tilt_y >= 0 ? 1 : -1 ;
tilt_x *= sign_x;
tilt_y *= sign_y;
/*
* Reverse the Y Tilt direction to match the HID standard and
* userspace expectations. See HID Usage Tables v1.12 16.3.2
* Tilt Orientation.
*/
sign_y *= -1 ;
/*
* This effectively clamps reported tilt to 60 degrees - the
* range expected by userspace
*/
if (tilt_x > ARRAY_SIZE(tilt_to_radians) - 1 )
tilt_x = ARRAY_SIZE(tilt_to_radians) - 1 ;
if (tilt_y > ARRAY_SIZE(tilt_to_radians) - 1 )
tilt_y = ARRAY_SIZE(tilt_to_radians) - 1 ;
data[8 ] = tilt_to_radians[tilt_x] * sign_x;
data[9 ] = tilt_to_radians[tilt_y] * sign_y;
}
return 0 ;
}
static const struct hid_device_id waltop_devices[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_Q_PAD) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_PID_0038) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH) },
{ HID_USB_DEVICE(USB_VENDOR_ID_WALTOP,
USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET) },
{ }
};
MODULE_DEVICE_TABLE(hid, waltop_devices);
static struct hid_driver waltop_driver = {
.name = "waltop" ,
.id_table = waltop_devices,
.report_fixup = waltop_report_fixup,
.raw_event = waltop_raw_event,
};
module_hid_driver(waltop_driver);
MODULE_DESCRIPTION("HID driver for Waltop devices not fully compliant with HID standard" );
MODULE_LICENSE("GPL" );
Messung V0.5 in Prozent C=70 H=94 G=82
¤ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet am 2026-06-08)
¤
*© Formatika GbR, Deutschland