blob: 59fe7eef00da043cb0c9b58c9bcf7e663161931b [file] [log] [blame]
Fabien Chouteau71adf112010-04-08 09:31:15 +02001/*
2 * hid.c -- HID Composite driver
3 *
4 * Based on multi.c
5 *
6 * Copyright (C) 2010 Fabien Chouteau <fabien.chouteau@barco.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Fabien Chouteau71adf112010-04-08 09:31:15 +020012 */
13
14
15#include <linux/kernel.h>
16#include <linux/platform_device.h>
17#include <linux/list.h>
18
Sebastian Andrzej Siewiordc995fc2012-09-06 20:11:12 +020019#include "gadget_chips.h"
Fabien Chouteau71adf112010-04-08 09:31:15 +020020#define DRIVER_DESC "HID Gadget"
21#define DRIVER_VERSION "2010/03/16"
22
23/*-------------------------------------------------------------------------*/
24
25#define HIDG_VENDOR_NUM 0x0525 /* XXX NetChip */
26#define HIDG_PRODUCT_NUM 0xa4ac /* Linux-USB HID gadget */
27
28/*-------------------------------------------------------------------------*/
29
30/*
31 * kbuild is not very cooperative with respect to linking separately
32 * compiled library objects into one module. So for now we won't use
33 * separate compilation ... ensuring init/exit sections work to shrink
34 * the runtime footprint, and giving us at least some parts of what
35 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
36 */
37
38#include "composite.c"
Fabien Chouteau71adf112010-04-08 09:31:15 +020039
40#include "f_hid.c"
41
42
43struct hidg_func_node {
44 struct list_head node;
45 struct hidg_func_descriptor *func;
46};
47
48static LIST_HEAD(hidg_func_list);
49
50/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020051USB_GADGET_COMPOSITE_OPTIONS();
Fabien Chouteau71adf112010-04-08 09:31:15 +020052
53static struct usb_device_descriptor device_desc = {
54 .bLength = sizeof device_desc,
55 .bDescriptorType = USB_DT_DEVICE,
56
57 .bcdUSB = cpu_to_le16(0x0200),
58
59 /* .bDeviceClass = USB_CLASS_COMM, */
60 /* .bDeviceSubClass = 0, */
61 /* .bDeviceProtocol = 0, */
Orjan Friberg33d28322012-03-07 17:16:14 +010062 .bDeviceClass = USB_CLASS_PER_INTERFACE,
63 .bDeviceSubClass = 0,
64 .bDeviceProtocol = 0,
Fabien Chouteau71adf112010-04-08 09:31:15 +020065 /* .bMaxPacketSize0 = f(hardware) */
66
67 /* Vendor and product id can be overridden by module parameters. */
68 .idVendor = cpu_to_le16(HIDG_VENDOR_NUM),
69 .idProduct = cpu_to_le16(HIDG_PRODUCT_NUM),
70 /* .bcdDevice = f(hardware) */
71 /* .iManufacturer = DYNAMIC */
72 /* .iProduct = DYNAMIC */
73 /* NO SERIAL NUMBER */
74 .bNumConfigurations = 1,
75};
76
77static struct usb_otg_descriptor otg_descriptor = {
78 .bLength = sizeof otg_descriptor,
79 .bDescriptorType = USB_DT_OTG,
80
81 /* REVISIT SRP-only hardware is possible, although
82 * it would not be called "OTG" ...
83 */
84 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
85};
86
87static const struct usb_descriptor_header *otg_desc[] = {
88 (struct usb_descriptor_header *) &otg_descriptor,
89 NULL,
90};
91
92
93/* string IDs are assigned dynamically */
94
95#define STRING_MANUFACTURER_IDX 0
96#define STRING_PRODUCT_IDX 1
97
98static char manufacturer[50];
99
100static struct usb_string strings_dev[] = {
101 [STRING_MANUFACTURER_IDX].s = manufacturer,
102 [STRING_PRODUCT_IDX].s = DRIVER_DESC,
103 { } /* end of list */
104};
105
106static struct usb_gadget_strings stringtab_dev = {
107 .language = 0x0409, /* en-us */
108 .strings = strings_dev,
109};
110
111static struct usb_gadget_strings *dev_strings[] = {
112 &stringtab_dev,
113 NULL,
114};
115
116
117
118/****************************** Configurations ******************************/
119
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200120static int __init do_config(struct usb_configuration *c)
Fabien Chouteau71adf112010-04-08 09:31:15 +0200121{
122 struct hidg_func_node *e;
123 int func = 0, status = 0;
124
125 if (gadget_is_otg(c->cdev->gadget)) {
126 c->descriptors = otg_desc;
127 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
128 }
129
130 list_for_each_entry(e, &hidg_func_list, node) {
131 status = hidg_bind_config(c, e->func, func++);
132 if (status)
133 break;
134 }
135
136 return status;
137}
138
139static struct usb_configuration config_driver = {
140 .label = "HID Gadget",
Fabien Chouteau71adf112010-04-08 09:31:15 +0200141 .bConfigurationValue = 1,
142 /* .iConfiguration = DYNAMIC */
143 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
144};
145
146/****************************** Gadget Bind ******************************/
147
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200148static int __init hid_bind(struct usb_composite_dev *cdev)
Fabien Chouteau71adf112010-04-08 09:31:15 +0200149{
150 struct usb_gadget *gadget = cdev->gadget;
151 struct list_head *tmp;
152 int status, gcnum, funcs = 0;
153
154 list_for_each(tmp, &hidg_func_list)
155 funcs++;
156
157 if (!funcs)
158 return -ENODEV;
159
160 /* set up HID */
161 status = ghid_setup(cdev->gadget, funcs);
162 if (status < 0)
163 return status;
164
165 gcnum = usb_gadget_controller_number(gadget);
166 if (gcnum >= 0)
167 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
168 else
169 device_desc.bcdDevice = cpu_to_le16(0x0300 | 0x0099);
170
171
172 /* Allocate string descriptor numbers ... note that string
173 * contents can be overridden by the composite_dev glue.
174 */
175
176 /* device descriptor strings: manufacturer, product */
177 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
178 init_utsname()->sysname, init_utsname()->release,
179 gadget->name);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200180
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200181 status = usb_string_ids_tab(cdev, strings_dev);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200182 if (status < 0)
183 return status;
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200184 device_desc.iManufacturer = strings_dev[STRING_MANUFACTURER_IDX].id;
185 device_desc.iProduct = strings_dev[STRING_PRODUCT_IDX].id;
Fabien Chouteau71adf112010-04-08 09:31:15 +0200186
187 /* register our configuration */
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200188 status = usb_add_config(cdev, &config_driver, do_config);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200189 if (status < 0)
190 return status;
191
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200192 usb_composite_overwrite_options(cdev, &coverwrite);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200193 dev_info(&gadget->dev, DRIVER_DESC ", version: " DRIVER_VERSION "\n");
194
195 return 0;
196}
197
198static int __exit hid_unbind(struct usb_composite_dev *cdev)
199{
200 ghid_cleanup();
201 return 0;
202}
203
204static int __init hidg_plat_driver_probe(struct platform_device *pdev)
205{
206 struct hidg_func_descriptor *func = pdev->dev.platform_data;
207 struct hidg_func_node *entry;
208
209 if (!func) {
210 dev_err(&pdev->dev, "Platform data missing\n");
211 return -ENODEV;
212 }
213
214 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
215 if (!entry)
216 return -ENOMEM;
217
218 entry->func = func;
219 list_add_tail(&entry->node, &hidg_func_list);
220
221 return 0;
222}
223
224static int __devexit hidg_plat_driver_remove(struct platform_device *pdev)
225{
226 struct hidg_func_node *e, *n;
227
228 list_for_each_entry_safe(e, n, &hidg_func_list, node) {
229 list_del(&e->node);
230 kfree(e);
231 }
232
233 return 0;
234}
235
236
237/****************************** Some noise ******************************/
238
239
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200240static __refdata struct usb_composite_driver hidg_driver = {
Fabien Chouteau71adf112010-04-08 09:31:15 +0200241 .name = "g_hid",
242 .dev = &device_desc,
243 .strings = dev_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300244 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200245 .bind = hid_bind,
Fabien Chouteau71adf112010-04-08 09:31:15 +0200246 .unbind = __exit_p(hid_unbind),
247};
248
249static struct platform_driver hidg_plat_driver = {
250 .remove = __devexit_p(hidg_plat_driver_remove),
251 .driver = {
252 .owner = THIS_MODULE,
253 .name = "hidg",
254 },
255};
256
257
258MODULE_DESCRIPTION(DRIVER_DESC);
259MODULE_AUTHOR("Fabien Chouteau, Peter Korsgaard");
260MODULE_LICENSE("GPL");
261
262static int __init hidg_init(void)
263{
Peter Korsgaardda01c7a2010-04-26 10:05:06 +0200264 int status;
265
266 status = platform_driver_probe(&hidg_plat_driver,
267 hidg_plat_driver_probe);
268 if (status < 0)
269 return status;
270
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200271 status = usb_composite_probe(&hidg_driver);
Peter Korsgaardda01c7a2010-04-26 10:05:06 +0200272 if (status < 0)
273 platform_driver_unregister(&hidg_plat_driver);
274
275 return status;
Fabien Chouteau71adf112010-04-08 09:31:15 +0200276}
277module_init(hidg_init);
278
279static void __exit hidg_cleanup(void)
280{
281 platform_driver_unregister(&hidg_plat_driver);
282 usb_composite_unregister(&hidg_driver);
283}
284module_exit(hidg_cleanup);