usb_template_mouse.c revision 228304
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD: head/sys/dev/usb/template/usb_template_mouse.c 228304 2011-12-06 08:08:52Z hselasky $");
3
4/*-
5 * Copyright (c) 2010 Hans Petter Selasky. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29/*
30 * This file contains the USB template for an USB Mouse Device.
31 */
32
33#include <sys/stdint.h>
34#include <sys/stddef.h>
35#include <sys/param.h>
36#include <sys/queue.h>
37#include <sys/types.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/bus.h>
41#include <sys/module.h>
42#include <sys/lock.h>
43#include <sys/mutex.h>
44#include <sys/condvar.h>
45#include <sys/sysctl.h>
46#include <sys/sx.h>
47#include <sys/unistd.h>
48#include <sys/callout.h>
49#include <sys/malloc.h>
50#include <sys/priv.h>
51
52#include <dev/usb/usb.h>
53#include <dev/usb/usbdi.h>
54#include <dev/usb/usb_cdc.h>
55
56#include <dev/usb/template/usb_template.h>
57
58enum {
59	INDEX_LANG,
60	INDEX_MOUSE,
61	INDEX_PRODUCT,
62	INDEX_MAX,
63};
64
65#define	STRING_LANG \
66  0x09, 0x04,				/* American English */
67
68#define	STRING_PRODUCT \
69  'M', 0, 'o', 0, 'u', 0, 's', 0, 'e', 0, ' ', 0, \
70  'T', 0, 'e', 0, 's', 0, 't', 0, ' ', 0, \
71  'D', 0, 'e', 0, 'v', 0, 'i', 0, 'c', 0, 'e', 0,
72
73#define	STRING_MOUSE \
74  'M', 0, 'o', 0, 'u', 0, 's', 0, 'e', 0, ' ', 0, \
75  'i', 0, 'n', 0, 't', 0, 'e', 0, 'r', 0, 'f', 0, 'a', 0, 'c', 0, 'e', 0,
76
77/* make the real string descriptors */
78
79USB_MAKE_STRING_DESC(STRING_LANG, string_lang);
80USB_MAKE_STRING_DESC(STRING_MOUSE, string_mouse);
81USB_MAKE_STRING_DESC(STRING_PRODUCT, string_product);
82
83/* prototypes */
84
85/* The following HID descriptor was dumped from a HP mouse. */
86
87static uint8_t mouse_hid_descriptor[] = {
88	0x05, 0x01, 0x09, 0x02, 0xa1, 0x01, 0x09, 0x01,
89	0xa1, 0x00, 0x05, 0x09, 0x19, 0x01, 0x29, 0x03,
90	0x15, 0x00, 0x25, 0x01, 0x95, 0x03, 0x75, 0x01,
91	0x81, 0x02, 0x95, 0x05, 0x81, 0x03, 0x05, 0x01,
92	0x09, 0x30, 0x09, 0x31, 0x09, 0x38, 0x15, 0x81,
93	0x25, 0x7f, 0x75, 0x08, 0x95, 0x03, 0x81, 0x06,
94	0xc0, 0xc0
95};
96
97static const struct usb_temp_packet_size mouse_intr_mps = {
98	.mps[USB_SPEED_LOW] = 8,
99	.mps[USB_SPEED_FULL] = 8,
100	.mps[USB_SPEED_HIGH] = 8,
101};
102
103static const struct usb_temp_interval mouse_intr_interval = {
104	.bInterval[USB_SPEED_LOW] = 2,		/* 2ms */
105	.bInterval[USB_SPEED_FULL] = 2,		/* 2ms */
106	.bInterval[USB_SPEED_HIGH] = 5,		/* 2ms */
107};
108
109static const struct usb_temp_endpoint_desc mouse_ep_0 = {
110	.ppRawDesc = NULL,		/* no raw descriptors */
111	.pPacketSize = &mouse_intr_mps,
112	.pIntervals = &mouse_intr_interval,
113	.bEndpointAddress = UE_DIR_IN,
114	.bmAttributes = UE_INTERRUPT,
115};
116
117static const struct usb_temp_endpoint_desc *mouse_endpoints[] = {
118	&mouse_ep_0,
119	NULL,
120};
121
122static const uint8_t mouse_raw_desc[] = {
123	0x09, 0x21, 0x10, 0x01, 0x00, 0x01, 0x22, sizeof(mouse_hid_descriptor),
124	0x00
125};
126
127static const void *mouse_iface_0_desc[] = {
128	mouse_raw_desc,
129	NULL,
130};
131
132static const struct usb_temp_interface_desc mouse_iface_0 = {
133	.ppRawDesc = mouse_iface_0_desc,
134	.ppEndpoints = mouse_endpoints,
135	.bInterfaceClass = 3,
136	.bInterfaceSubClass = 1,
137	.bInterfaceProtocol = 2,
138	.iInterface = INDEX_MOUSE,
139};
140
141static const struct usb_temp_interface_desc *mouse_interfaces[] = {
142	&mouse_iface_0,
143	NULL,
144};
145
146static const struct usb_temp_config_desc mouse_config_desc = {
147	.ppIfaceDesc = mouse_interfaces,
148	.bmAttributes = UC_BUS_POWERED,
149	.bMaxPower = 25,		/* 50 mA */
150	.iConfiguration = INDEX_PRODUCT,
151};
152
153static const struct usb_temp_config_desc *mouse_configs[] = {
154	&mouse_config_desc,
155	NULL,
156};
157
158static usb_temp_get_string_desc_t mouse_get_string_desc;
159static usb_temp_get_vendor_desc_t mouse_get_vendor_desc;
160
161const struct usb_temp_device_desc usb_template_mouse = {
162	.getStringDesc = &mouse_get_string_desc,
163	.getVendorDesc = &mouse_get_vendor_desc,
164	.ppConfigDesc = mouse_configs,
165	.idVendor = USB_TEMPLATE_VENDOR,
166	.idProduct = 0x00AE,
167	.bcdDevice = 0x0100,
168	.bDeviceClass = UDCLASS_COMM,
169	.bDeviceSubClass = 0,
170	.bDeviceProtocol = 0,
171	.iManufacturer = 0,
172	.iProduct = INDEX_PRODUCT,
173	.iSerialNumber = 0,
174};
175
176/*------------------------------------------------------------------------*
177 *      mouse_get_vendor_desc
178 *
179 * Return values:
180 * NULL: Failure. No such vendor descriptor.
181 * Else: Success. Pointer to vendor descriptor is returned.
182 *------------------------------------------------------------------------*/
183static const void *
184mouse_get_vendor_desc(const struct usb_device_request *req, uint16_t *plen)
185{
186	if ((req->bmRequestType == 0x81) && (req->bRequest == 0x06) &&
187	    (req->wValue[0] == 0x00) && (req->wValue[1] == 0x22) &&
188	    (req->wIndex[1] == 0) && (req->wIndex[0] == 0)) {
189
190		*plen = sizeof(mouse_hid_descriptor);
191		return (mouse_hid_descriptor);
192	}
193	return (NULL);
194}
195
196/*------------------------------------------------------------------------*
197 *	mouse_get_string_desc
198 *
199 * Return values:
200 * NULL: Failure. No such string.
201 * Else: Success. Pointer to string descriptor is returned.
202 *------------------------------------------------------------------------*/
203static const void *
204mouse_get_string_desc(uint16_t lang_id, uint8_t string_index)
205{
206	static const void *ptr[INDEX_MAX] = {
207		[INDEX_LANG] = &string_lang,
208		[INDEX_MOUSE] = &string_mouse,
209		[INDEX_PRODUCT] = &string_product,
210	};
211
212	if (string_index == 0) {
213		return (&string_lang);
214	}
215	if (lang_id != 0x0409) {
216		return (NULL);
217	}
218	if (string_index < INDEX_MAX) {
219		return (ptr[string_index]);
220	}
221	return (NULL);
222}
223