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