blob: 16caf50e916dddbfc961347265fc865dd7d3cac8 [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 */
Fabien Chouteau71adf112010-04-08 09:31:15 +020094static char manufacturer[50];
95
96static struct usb_string strings_dev[] = {
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +020097 [USB_GADGET_MANUFACTURER_IDX].s = manufacturer,
98 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
99 [USB_GADGET_SERIAL_IDX].s = "",
Fabien Chouteau71adf112010-04-08 09:31:15 +0200100 { } /* end of list */
101};
102
103static struct usb_gadget_strings stringtab_dev = {
104 .language = 0x0409, /* en-us */
105 .strings = strings_dev,
106};
107
108static struct usb_gadget_strings *dev_strings[] = {
109 &stringtab_dev,
110 NULL,
111};
112
113
114
115/****************************** Configurations ******************************/
116
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200117static int __init do_config(struct usb_configuration *c)
Fabien Chouteau71adf112010-04-08 09:31:15 +0200118{
119 struct hidg_func_node *e;
120 int func = 0, status = 0;
121
122 if (gadget_is_otg(c->cdev->gadget)) {
123 c->descriptors = otg_desc;
124 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
125 }
126
127 list_for_each_entry(e, &hidg_func_list, node) {
128 status = hidg_bind_config(c, e->func, func++);
129 if (status)
130 break;
131 }
132
133 return status;
134}
135
136static struct usb_configuration config_driver = {
137 .label = "HID Gadget",
Fabien Chouteau71adf112010-04-08 09:31:15 +0200138 .bConfigurationValue = 1,
139 /* .iConfiguration = DYNAMIC */
140 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
141};
142
143/****************************** Gadget Bind ******************************/
144
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200145static int __init hid_bind(struct usb_composite_dev *cdev)
Fabien Chouteau71adf112010-04-08 09:31:15 +0200146{
147 struct usb_gadget *gadget = cdev->gadget;
148 struct list_head *tmp;
149 int status, gcnum, funcs = 0;
150
151 list_for_each(tmp, &hidg_func_list)
152 funcs++;
153
154 if (!funcs)
155 return -ENODEV;
156
157 /* set up HID */
158 status = ghid_setup(cdev->gadget, funcs);
159 if (status < 0)
160 return status;
161
162 gcnum = usb_gadget_controller_number(gadget);
163 if (gcnum >= 0)
164 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
165 else
166 device_desc.bcdDevice = cpu_to_le16(0x0300 | 0x0099);
167
168
169 /* Allocate string descriptor numbers ... note that string
170 * contents can be overridden by the composite_dev glue.
171 */
172
173 /* device descriptor strings: manufacturer, product */
174 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
175 init_utsname()->sysname, init_utsname()->release,
176 gadget->name);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200177
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200178 status = usb_string_ids_tab(cdev, strings_dev);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200179 if (status < 0)
180 return status;
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200181 device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
182 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
Fabien Chouteau71adf112010-04-08 09:31:15 +0200183
184 /* register our configuration */
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200185 status = usb_add_config(cdev, &config_driver, do_config);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200186 if (status < 0)
187 return status;
188
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200189 usb_composite_overwrite_options(cdev, &coverwrite);
Fabien Chouteau71adf112010-04-08 09:31:15 +0200190 dev_info(&gadget->dev, DRIVER_DESC ", version: " DRIVER_VERSION "\n");
191
192 return 0;
193}
194
195static int __exit hid_unbind(struct usb_composite_dev *cdev)
196{
197 ghid_cleanup();
198 return 0;
199}
200
201static int __init hidg_plat_driver_probe(struct platform_device *pdev)
202{
203 struct hidg_func_descriptor *func = pdev->dev.platform_data;
204 struct hidg_func_node *entry;
205
206 if (!func) {
207 dev_err(&pdev->dev, "Platform data missing\n");
208 return -ENODEV;
209 }
210
211 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
212 if (!entry)
213 return -ENOMEM;
214
215 entry->func = func;
216 list_add_tail(&entry->node, &hidg_func_list);
217
218 return 0;
219}
220
221static int __devexit hidg_plat_driver_remove(struct platform_device *pdev)
222{
223 struct hidg_func_node *e, *n;
224
225 list_for_each_entry_safe(e, n, &hidg_func_list, node) {
226 list_del(&e->node);
227 kfree(e);
228 }
229
230 return 0;
231}
232
233
234/****************************** Some noise ******************************/
235
236
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200237static __refdata struct usb_composite_driver hidg_driver = {
Fabien Chouteau71adf112010-04-08 09:31:15 +0200238 .name = "g_hid",
239 .dev = &device_desc,
240 .strings = dev_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300241 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200242 .bind = hid_bind,
Fabien Chouteau71adf112010-04-08 09:31:15 +0200243 .unbind = __exit_p(hid_unbind),
244};
245
246static struct platform_driver hidg_plat_driver = {
247 .remove = __devexit_p(hidg_plat_driver_remove),
248 .driver = {
249 .owner = THIS_MODULE,
250 .name = "hidg",
251 },
252};
253
254
255MODULE_DESCRIPTION(DRIVER_DESC);
256MODULE_AUTHOR("Fabien Chouteau, Peter Korsgaard");
257MODULE_LICENSE("GPL");
258
259static int __init hidg_init(void)
260{
Peter Korsgaardda01c7a2010-04-26 10:05:06 +0200261 int status;
262
263 status = platform_driver_probe(&hidg_plat_driver,
264 hidg_plat_driver_probe);
265 if (status < 0)
266 return status;
267
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200268 status = usb_composite_probe(&hidg_driver);
Peter Korsgaardda01c7a2010-04-26 10:05:06 +0200269 if (status < 0)
270 platform_driver_unregister(&hidg_plat_driver);
271
272 return status;
Fabien Chouteau71adf112010-04-08 09:31:15 +0200273}
274module_init(hidg_init);
275
276static void __exit hidg_cleanup(void)
277{
278 platform_driver_unregister(&hidg_plat_driver);
279 usb_composite_unregister(&hidg_driver);
280}
281module_exit(hidg_cleanup);