2 * Wacom PenPartner USB tablet emulation.
4 * Copyright (c) 2006 Openedhand Ltd.
5 * Author: Andrzej Zaborowski <balrog@zabor.org>
7 * Based on hw/usb-hid.c:
8 * Copyright (c) 2005 Fabrice Bellard
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 #include "ui/console.h"
31 #include "hw/usb/desc.h"
33 /* Interface requests */
34 #define WACOM_GET_REPORT 0x2101
35 #define WACOM_SET_REPORT 0x2109
37 /* HID interface requests */
38 #define HID_GET_REPORT 0xa101
39 #define HID_GET_IDLE 0xa102
40 #define HID_GET_PROTOCOL 0xa103
41 #define HID_SET_IDLE 0x210a
42 #define HID_SET_PROTOCOL 0x210b
44 typedef struct USBWacomState
{
47 QEMUPutMouseEntry
*eh_entry
;
48 int dx
, dy
, dz
, buttons_state
;
59 #define TYPE_USB_WACOM "usb-wacom-tablet"
60 #define USB_WACOM(obj) OBJECT_CHECK(USBWacomState, (obj), TYPE_USB_WACOM)
68 static const USBDescStrings desc_strings
= {
69 [STR_MANUFACTURER
] = "QEMU",
70 [STR_PRODUCT
] = "Wacom PenPartner",
71 [STR_SERIALNUMBER
] = "1",
74 static const USBDescIface desc_iface_wacom
= {
75 .bInterfaceNumber
= 0,
77 .bInterfaceClass
= USB_CLASS_HID
,
78 .bInterfaceSubClass
= 0x01, /* boot */
79 .bInterfaceProtocol
= 0x02,
81 .descs
= (USBDescOther
[]) {
85 0x09, /* u8 bLength */
86 0x21, /* u8 bDescriptorType */
87 0x01, 0x10, /* u16 HID_class */
88 0x00, /* u8 country_code */
89 0x01, /* u8 num_descriptors */
90 0x22, /* u8 type: Report */
91 0x6e, 0, /* u16 len */
95 .eps
= (USBDescEndpoint
[]) {
97 .bEndpointAddress
= USB_DIR_IN
| 0x01,
98 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
105 static const USBDescDevice desc_device_wacom
= {
107 .bMaxPacketSize0
= 8,
108 .bNumConfigurations
= 1,
109 .confs
= (USBDescConfig
[]) {
112 .bConfigurationValue
= 1,
113 .bmAttributes
= USB_CFG_ATT_ONE
,
116 .ifs
= &desc_iface_wacom
,
121 static const USBDesc desc_wacom
= {
126 .iManufacturer
= STR_MANUFACTURER
,
127 .iProduct
= STR_PRODUCT
,
128 .iSerialNumber
= STR_SERIALNUMBER
,
130 .full
= &desc_device_wacom
,
134 static void usb_mouse_event(void *opaque
,
135 int dx1
, int dy1
, int dz1
, int buttons_state
)
137 USBWacomState
*s
= opaque
;
142 s
->buttons_state
= buttons_state
;
144 usb_wakeup(s
->intr
, 0);
147 static void usb_wacom_event(void *opaque
,
148 int x
, int y
, int dz
, int buttons_state
)
150 USBWacomState
*s
= opaque
;
152 /* scale to Penpartner resolution */
153 s
->x
= (x
* 5040 / 0x7FFF);
154 s
->y
= (y
* 3780 / 0x7FFF);
156 s
->buttons_state
= buttons_state
;
158 usb_wakeup(s
->intr
, 0);
161 static inline int int_clamp(int val
, int vmin
, int vmax
)
171 static int usb_mouse_poll(USBWacomState
*s
, uint8_t *buf
, int len
)
173 int dx
, dy
, dz
, b
, l
;
175 if (!s
->mouse_grabbed
) {
176 s
->eh_entry
= qemu_add_mouse_event_handler(usb_mouse_event
, s
, 0,
177 "QEMU PenPartner tablet");
178 qemu_activate_mouse_event_handler(s
->eh_entry
);
179 s
->mouse_grabbed
= 1;
182 dx
= int_clamp(s
->dx
, -128, 127);
183 dy
= int_clamp(s
->dy
, -128, 127);
184 dz
= int_clamp(s
->dz
, -128, 127);
191 if (s
->buttons_state
& MOUSE_EVENT_LBUTTON
)
193 if (s
->buttons_state
& MOUSE_EVENT_RBUTTON
)
195 if (s
->buttons_state
& MOUSE_EVENT_MBUTTON
)
209 static int usb_wacom_poll(USBWacomState
*s
, uint8_t *buf
, int len
)
213 if (!s
->mouse_grabbed
) {
214 s
->eh_entry
= qemu_add_mouse_event_handler(usb_wacom_event
, s
, 1,
215 "QEMU PenPartner tablet");
216 qemu_activate_mouse_event_handler(s
->eh_entry
);
217 s
->mouse_grabbed
= 1;
221 if (s
->buttons_state
& MOUSE_EVENT_LBUTTON
)
223 if (s
->buttons_state
& MOUSE_EVENT_RBUTTON
)
225 if (s
->buttons_state
& MOUSE_EVENT_MBUTTON
)
226 b
|= 0x20; /* eraser */
232 buf
[5] = 0x00 | (b
& 0xf0);
233 buf
[1] = s
->x
& 0xff;
235 buf
[3] = s
->y
& 0xff;
240 buf
[6] = (unsigned char) -127;
246 static void usb_wacom_handle_reset(USBDevice
*dev
)
248 USBWacomState
*s
= (USBWacomState
*) dev
;
255 s
->buttons_state
= 0;
256 s
->mode
= WACOM_MODE_HID
;
259 static void usb_wacom_handle_control(USBDevice
*dev
, USBPacket
*p
,
260 int request
, int value
, int index
, int length
, uint8_t *data
)
262 USBWacomState
*s
= (USBWacomState
*) dev
;
265 ret
= usb_desc_handle_control(dev
, p
, request
, value
, index
, length
, data
);
271 case WACOM_SET_REPORT
:
272 if (s
->mouse_grabbed
) {
273 qemu_remove_mouse_event_handler(s
->eh_entry
);
274 s
->mouse_grabbed
= 0;
278 case WACOM_GET_REPORT
:
281 p
->actual_length
= 2;
283 /* USB HID requests */
285 if (s
->mode
== WACOM_MODE_HID
)
286 p
->actual_length
= usb_mouse_poll(s
, data
, length
);
287 else if (s
->mode
== WACOM_MODE_WACOM
)
288 p
->actual_length
= usb_wacom_poll(s
, data
, length
);
292 p
->actual_length
= 1;
295 s
->idle
= (uint8_t) (value
>> 8);
298 p
->status
= USB_RET_STALL
;
303 static void usb_wacom_handle_data(USBDevice
*dev
, USBPacket
*p
)
305 USBWacomState
*s
= (USBWacomState
*) dev
;
306 uint8_t buf
[p
->iov
.size
];
311 if (p
->ep
->nr
== 1) {
312 if (!(s
->changed
|| s
->idle
)) {
313 p
->status
= USB_RET_NAK
;
317 if (s
->mode
== WACOM_MODE_HID
)
318 len
= usb_mouse_poll(s
, buf
, p
->iov
.size
);
319 else if (s
->mode
== WACOM_MODE_WACOM
)
320 len
= usb_wacom_poll(s
, buf
, p
->iov
.size
);
321 usb_packet_copy(p
, buf
, len
);
327 p
->status
= USB_RET_STALL
;
331 static void usb_wacom_handle_destroy(USBDevice
*dev
)
333 USBWacomState
*s
= (USBWacomState
*) dev
;
335 if (s
->mouse_grabbed
) {
336 qemu_remove_mouse_event_handler(s
->eh_entry
);
337 s
->mouse_grabbed
= 0;
341 static void usb_wacom_realize(USBDevice
*dev
, Error
**errp
)
343 USBWacomState
*s
= USB_WACOM(dev
);
344 usb_desc_create_serial(dev
);
346 s
->intr
= usb_ep_get(dev
, USB_TOKEN_IN
, 1);
350 static const VMStateDescription vmstate_usb_wacom
= {
355 static void usb_wacom_class_init(ObjectClass
*klass
, void *data
)
357 DeviceClass
*dc
= DEVICE_CLASS(klass
);
358 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
360 uc
->product_desc
= "QEMU PenPartner Tablet";
361 uc
->usb_desc
= &desc_wacom
;
362 uc
->realize
= usb_wacom_realize
;
363 uc
->handle_reset
= usb_wacom_handle_reset
;
364 uc
->handle_control
= usb_wacom_handle_control
;
365 uc
->handle_data
= usb_wacom_handle_data
;
366 uc
->handle_destroy
= usb_wacom_handle_destroy
;
367 set_bit(DEVICE_CATEGORY_INPUT
, dc
->categories
);
368 dc
->desc
= "QEMU PenPartner Tablet";
369 dc
->vmsd
= &vmstate_usb_wacom
;
372 static const TypeInfo wacom_info
= {
373 .name
= TYPE_USB_WACOM
,
374 .parent
= TYPE_USB_DEVICE
,
375 .instance_size
= sizeof(USBWacomState
),
376 .class_init
= usb_wacom_class_init
,
379 static void usb_wacom_register_types(void)
381 type_register_static(&wacom_info
);
382 usb_legacy_register(TYPE_USB_WACOM
, "wacom-tablet", NULL
);
385 type_init(usb_wacom_register_types
)