2 * hid.c -- HID Composite driver
6 * Copyright (C) 2010 Fabien Chouteau <fabien.chouteau@barco.com>
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.
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/list.h>
19 #define DRIVER_DESC "HID Gadget"
20 #define DRIVER_VERSION "2010/03/16"
22 /*-------------------------------------------------------------------------*/
24 #define HIDG_VENDOR_NUM 0x0525 /* XXX NetChip */
25 #define HIDG_PRODUCT_NUM 0xa4ac /* Linux-USB HID gadget */
27 /*-------------------------------------------------------------------------*/
30 * kbuild is not very cooperative with respect to linking separately
31 * compiled library objects into one module. So for now we won't use
32 * separate compilation ... ensuring init/exit sections work to shrink
33 * the runtime footprint, and giving us at least some parts of what
34 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
37 #include "composite.c"
38 #include "usbstring.c"
40 #include "epautoconf.c"
45 struct hidg_func_node
{
46 struct list_head node
;
47 struct hidg_func_descriptor
*func
;
50 static LIST_HEAD(hidg_func_list
);
52 /*-------------------------------------------------------------------------*/
54 static struct usb_device_descriptor device_desc
= {
55 .bLength
= sizeof device_desc
,
56 .bDescriptorType
= USB_DT_DEVICE
,
58 .bcdUSB
= cpu_to_le16(0x0200),
60 /* .bDeviceClass = USB_CLASS_COMM, */
61 /* .bDeviceSubClass = 0, */
62 /* .bDeviceProtocol = 0, */
66 /* .bMaxPacketSize0 = f(hardware) */
68 /* Vendor and product id can be overridden by module parameters. */
69 .idVendor
= cpu_to_le16(HIDG_VENDOR_NUM
),
70 .idProduct
= cpu_to_le16(HIDG_PRODUCT_NUM
),
71 /* .bcdDevice = f(hardware) */
72 /* .iManufacturer = DYNAMIC */
73 /* .iProduct = DYNAMIC */
74 /* NO SERIAL NUMBER */
75 .bNumConfigurations
= 1,
78 static struct usb_otg_descriptor otg_descriptor
= {
79 .bLength
= sizeof otg_descriptor
,
80 .bDescriptorType
= USB_DT_OTG
,
82 /* REVISIT SRP-only hardware is possible, although
83 * it would not be called "OTG" ...
85 .bmAttributes
= USB_OTG_SRP
| USB_OTG_HNP
,
88 static const struct usb_descriptor_header
*otg_desc
[] = {
89 (struct usb_descriptor_header
*) &otg_descriptor
,
94 /* string IDs are assigned dynamically */
96 #define STRING_MANUFACTURER_IDX 0
97 #define STRING_PRODUCT_IDX 1
99 static char manufacturer
[50];
101 static struct usb_string strings_dev
[] = {
102 [STRING_MANUFACTURER_IDX
].s
= manufacturer
,
103 [STRING_PRODUCT_IDX
].s
= DRIVER_DESC
,
104 { } /* end of list */
107 static struct usb_gadget_strings stringtab_dev
= {
108 .language
= 0x0409, /* en-us */
109 .strings
= strings_dev
,
112 static struct usb_gadget_strings
*dev_strings
[] = {
119 /****************************** Configurations ******************************/
121 static int __init
do_config(struct usb_configuration
*c
)
123 struct hidg_func_node
*e
;
124 int func
= 0, status
= 0;
126 if (gadget_is_otg(c
->cdev
->gadget
)) {
127 c
->descriptors
= otg_desc
;
128 c
->bmAttributes
|= USB_CONFIG_ATT_WAKEUP
;
131 list_for_each_entry(e
, &hidg_func_list
, node
) {
132 status
= hidg_bind_config(c
, e
->func
, func
++);
140 static struct usb_configuration config_driver
= {
141 .label
= "HID Gadget",
142 .bConfigurationValue
= 1,
143 /* .iConfiguration = DYNAMIC */
144 .bmAttributes
= USB_CONFIG_ATT_SELFPOWER
,
147 /****************************** Gadget Bind ******************************/
149 static int __init
hid_bind(struct usb_composite_dev
*cdev
)
151 struct usb_gadget
*gadget
= cdev
->gadget
;
152 struct list_head
*tmp
;
153 int status
, gcnum
, funcs
= 0;
155 list_for_each(tmp
, &hidg_func_list
)
162 status
= ghid_setup(cdev
->gadget
, funcs
);
166 gcnum
= usb_gadget_controller_number(gadget
);
168 device_desc
.bcdDevice
= cpu_to_le16(0x0300 | gcnum
);
170 device_desc
.bcdDevice
= cpu_to_le16(0x0300 | 0x0099);
173 /* Allocate string descriptor numbers ... note that string
174 * contents can be overridden by the composite_dev glue.
177 /* device descriptor strings: manufacturer, product */
178 snprintf(manufacturer
, sizeof manufacturer
, "%s %s with %s",
179 init_utsname()->sysname
, init_utsname()->release
,
181 status
= usb_string_id(cdev
);
184 strings_dev
[STRING_MANUFACTURER_IDX
].id
= status
;
185 device_desc
.iManufacturer
= status
;
187 status
= usb_string_id(cdev
);
190 strings_dev
[STRING_PRODUCT_IDX
].id
= status
;
191 device_desc
.iProduct
= status
;
193 /* register our configuration */
194 status
= usb_add_config(cdev
, &config_driver
, do_config
);
198 dev_info(&gadget
->dev
, DRIVER_DESC
", version: " DRIVER_VERSION
"\n");
203 static int __exit
hid_unbind(struct usb_composite_dev
*cdev
)
209 static int __init
hidg_plat_driver_probe(struct platform_device
*pdev
)
211 struct hidg_func_descriptor
*func
= pdev
->dev
.platform_data
;
212 struct hidg_func_node
*entry
;
215 dev_err(&pdev
->dev
, "Platform data missing\n");
219 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
224 list_add_tail(&entry
->node
, &hidg_func_list
);
229 static int __devexit
hidg_plat_driver_remove(struct platform_device
*pdev
)
231 struct hidg_func_node
*e
, *n
;
233 list_for_each_entry_safe(e
, n
, &hidg_func_list
, node
) {
242 /****************************** Some noise ******************************/
245 static struct usb_composite_driver hidg_driver
= {
248 .strings
= dev_strings
,
249 .max_speed
= USB_SPEED_HIGH
,
250 .unbind
= __exit_p(hid_unbind
),
253 static struct platform_driver hidg_plat_driver
= {
254 .remove
= __devexit_p(hidg_plat_driver_remove
),
256 .owner
= THIS_MODULE
,
262 MODULE_DESCRIPTION(DRIVER_DESC
);
263 MODULE_AUTHOR("Fabien Chouteau, Peter Korsgaard");
264 MODULE_LICENSE("GPL");
266 static int __init
hidg_init(void)
270 status
= platform_driver_probe(&hidg_plat_driver
,
271 hidg_plat_driver_probe
);
275 status
= usb_composite_probe(&hidg_driver
, hid_bind
);
277 platform_driver_unregister(&hidg_plat_driver
);
281 module_init(hidg_init
);
283 static void __exit
hidg_cleanup(void)
285 platform_driver_unregister(&hidg_plat_driver
);
286 usb_composite_unregister(&hidg_driver
);
288 module_exit(hidg_cleanup
);