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>
18 #include <linux/module.h>
19 #include <linux/usb/composite.h>
20 #include <linux/usb/g_hid.h>
22 #define DRIVER_DESC "HID Gadget"
23 #define DRIVER_VERSION "2010/03/16"
27 /*-------------------------------------------------------------------------*/
29 #define HIDG_VENDOR_NUM 0x0525 /* XXX NetChip */
30 #define HIDG_PRODUCT_NUM 0xa4ac /* Linux-USB HID gadget */
32 /*-------------------------------------------------------------------------*/
34 struct hidg_func_node
{
35 struct usb_function_instance
*fi
;
36 struct usb_function
*f
;
37 struct list_head node
;
38 struct hidg_func_descriptor
*func
;
41 static LIST_HEAD(hidg_func_list
);
43 /*-------------------------------------------------------------------------*/
44 USB_GADGET_COMPOSITE_OPTIONS();
46 static struct usb_device_descriptor device_desc
= {
47 .bLength
= sizeof device_desc
,
48 .bDescriptorType
= USB_DT_DEVICE
,
50 /* .bcdUSB = DYNAMIC */
52 /* .bDeviceClass = USB_CLASS_COMM, */
53 /* .bDeviceSubClass = 0, */
54 /* .bDeviceProtocol = 0, */
55 .bDeviceClass
= USB_CLASS_PER_INTERFACE
,
58 /* .bMaxPacketSize0 = f(hardware) */
60 /* Vendor and product id can be overridden by module parameters. */
61 .idVendor
= cpu_to_le16(HIDG_VENDOR_NUM
),
62 .idProduct
= cpu_to_le16(HIDG_PRODUCT_NUM
),
63 /* .bcdDevice = f(hardware) */
64 /* .iManufacturer = DYNAMIC */
65 /* .iProduct = DYNAMIC */
66 /* NO SERIAL NUMBER */
67 .bNumConfigurations
= 1,
70 static const struct usb_descriptor_header
*otg_desc
[2];
72 /* string IDs are assigned dynamically */
73 static struct usb_string strings_dev
[] = {
74 [USB_GADGET_MANUFACTURER_IDX
].s
= "",
75 [USB_GADGET_PRODUCT_IDX
].s
= DRIVER_DESC
,
76 [USB_GADGET_SERIAL_IDX
].s
= "",
80 static struct usb_gadget_strings stringtab_dev
= {
81 .language
= 0x0409, /* en-us */
82 .strings
= strings_dev
,
85 static struct usb_gadget_strings
*dev_strings
[] = {
92 /****************************** Configurations ******************************/
94 static int do_config(struct usb_configuration
*c
)
96 struct hidg_func_node
*e
, *n
;
99 if (gadget_is_otg(c
->cdev
->gadget
)) {
100 c
->descriptors
= otg_desc
;
101 c
->bmAttributes
|= USB_CONFIG_ATT_WAKEUP
;
104 list_for_each_entry(e
, &hidg_func_list
, node
) {
105 e
->f
= usb_get_function(e
->fi
);
108 status
= usb_add_function(c
, e
->f
);
110 usb_put_function(e
->f
);
117 list_for_each_entry(n
, &hidg_func_list
, node
) {
120 usb_remove_function(c
, n
->f
);
121 usb_put_function(n
->f
);
126 static struct usb_configuration config_driver
= {
127 .label
= "HID Gadget",
128 .bConfigurationValue
= 1,
129 /* .iConfiguration = DYNAMIC */
130 .bmAttributes
= USB_CONFIG_ATT_SELFPOWER
,
133 /****************************** Gadget Bind ******************************/
135 static int hid_bind(struct usb_composite_dev
*cdev
)
137 struct usb_gadget
*gadget
= cdev
->gadget
;
138 struct list_head
*tmp
;
139 struct hidg_func_node
*n
, *m
;
140 struct f_hid_opts
*hid_opts
;
141 int status
, funcs
= 0;
143 list_for_each(tmp
, &hidg_func_list
)
149 list_for_each_entry(n
, &hidg_func_list
, node
) {
150 n
->fi
= usb_get_function_instance("hid");
152 status
= PTR_ERR(n
->fi
);
155 hid_opts
= container_of(n
->fi
, struct f_hid_opts
, func_inst
);
156 hid_opts
->subclass
= n
->func
->subclass
;
157 hid_opts
->protocol
= n
->func
->protocol
;
158 hid_opts
->report_length
= n
->func
->report_length
;
159 hid_opts
->report_desc_length
= n
->func
->report_desc_length
;
160 hid_opts
->report_desc
= n
->func
->report_desc
;
164 /* Allocate string descriptor numbers ... note that string
165 * contents can be overridden by the composite_dev glue.
168 status
= usb_string_ids_tab(cdev
, strings_dev
);
171 device_desc
.iManufacturer
= strings_dev
[USB_GADGET_MANUFACTURER_IDX
].id
;
172 device_desc
.iProduct
= strings_dev
[USB_GADGET_PRODUCT_IDX
].id
;
174 if (gadget_is_otg(gadget
) && !otg_desc
[0]) {
175 struct usb_descriptor_header
*usb_desc
;
177 usb_desc
= usb_otg_descriptor_alloc(gadget
);
180 usb_otg_descriptor_init(gadget
, usb_desc
);
181 otg_desc
[0] = usb_desc
;
185 /* register our configuration */
186 status
= usb_add_config(cdev
, &config_driver
, do_config
);
190 usb_composite_overwrite_options(cdev
, &coverwrite
);
191 dev_info(&gadget
->dev
, DRIVER_DESC
", version: " DRIVER_VERSION
"\n");
199 list_for_each_entry(m
, &hidg_func_list
, node
) {
202 usb_put_function_instance(m
->fi
);
207 static int hid_unbind(struct usb_composite_dev
*cdev
)
209 struct hidg_func_node
*n
;
211 list_for_each_entry(n
, &hidg_func_list
, node
) {
212 usb_put_function(n
->f
);
213 usb_put_function_instance(n
->fi
);
222 static int hidg_plat_driver_probe(struct platform_device
*pdev
)
224 struct hidg_func_descriptor
*func
= dev_get_platdata(&pdev
->dev
);
225 struct hidg_func_node
*entry
;
228 dev_err(&pdev
->dev
, "Platform data missing\n");
232 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
237 list_add_tail(&entry
->node
, &hidg_func_list
);
242 static int hidg_plat_driver_remove(struct platform_device
*pdev
)
244 struct hidg_func_node
*e
, *n
;
246 list_for_each_entry_safe(e
, n
, &hidg_func_list
, node
) {
255 /****************************** Some noise ******************************/
258 static struct usb_composite_driver hidg_driver
= {
261 .strings
= dev_strings
,
262 .max_speed
= USB_SPEED_HIGH
,
264 .unbind
= hid_unbind
,
267 static struct platform_driver hidg_plat_driver
= {
268 .remove
= hidg_plat_driver_remove
,
275 MODULE_DESCRIPTION(DRIVER_DESC
);
276 MODULE_AUTHOR("Fabien Chouteau, Peter Korsgaard");
277 MODULE_LICENSE("GPL");
279 static int __init
hidg_init(void)
283 status
= platform_driver_probe(&hidg_plat_driver
,
284 hidg_plat_driver_probe
);
288 status
= usb_composite_probe(&hidg_driver
);
290 platform_driver_unregister(&hidg_plat_driver
);
294 module_init(hidg_init
);
296 static void __exit
hidg_cleanup(void)
298 usb_composite_unregister(&hidg_driver
);
299 platform_driver_unregister(&hidg_plat_driver
);
301 module_exit(hidg_cleanup
);