1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/configfs.h>
3 #include <linux/module.h>
4 #include <linux/slab.h>
5 #include <linux/device.h>
7 #include <linux/usb/composite.h>
8 #include <linux/usb/gadget_configfs.h>
11 #include "u_os_desc.h"
13 int check_user_usb_string(const char *name
,
14 struct usb_gadget_strings
*stringtab_dev
)
16 unsigned primary_lang
;
21 ret
= kstrtou16(name
, 0, &num
);
25 primary_lang
= num
& 0x3ff;
28 /* simple sanity check for valid langid */
29 switch (primary_lang
) {
38 stringtab_dev
->language
= num
;
42 #define MAX_NAME_LEN 40
43 #define MAX_USB_STRING_LANGS 2
45 static const struct usb_descriptor_header
*otg_desc
[2];
48 struct config_group group
;
49 struct config_group functions_group
;
50 struct config_group configs_group
;
51 struct config_group strings_group
;
52 struct config_group os_desc_group
;
55 struct usb_gadget_strings
*gstrings
[MAX_USB_STRING_LANGS
+ 1];
56 struct list_head string_list
;
57 struct list_head available_func
;
59 struct usb_composite_driver composite
;
60 struct usb_composite_dev cdev
;
63 char qw_sign
[OS_STRING_QW_SIGN_LEN
];
68 static inline struct gadget_info
*to_gadget_info(struct config_item
*item
)
70 return container_of(to_config_group(item
), struct gadget_info
, group
);
73 struct config_usb_cfg
{
74 struct config_group group
;
75 struct config_group strings_group
;
76 struct list_head string_list
;
77 struct usb_configuration c
;
78 struct list_head func_list
;
79 struct usb_gadget_strings
*gstrings
[MAX_USB_STRING_LANGS
+ 1];
82 static inline struct config_usb_cfg
*to_config_usb_cfg(struct config_item
*item
)
84 return container_of(to_config_group(item
), struct config_usb_cfg
,
88 struct gadget_strings
{
89 struct usb_gadget_strings stringtab_dev
;
90 struct usb_string strings
[USB_GADGET_FIRST_AVAIL_IDX
];
95 struct config_group group
;
96 struct list_head list
;
100 struct config_group group
;
103 struct gadget_config_name
{
104 struct usb_gadget_strings stringtab_dev
;
105 struct usb_string strings
;
108 struct config_group group
;
109 struct list_head list
;
112 static int usb_string_copy(const char *s
, char **s_copy
)
116 char *copy
= *s_copy
;
121 str
= kstrdup(s
, GFP_KERNEL
);
124 if (str
[ret
- 1] == '\n')
131 #define GI_DEVICE_DESC_SIMPLE_R_u8(__name) \
132 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
135 return sprintf(page, "0x%02x\n", \
136 to_gadget_info(item)->cdev.desc.__name); \
139 #define GI_DEVICE_DESC_SIMPLE_R_u16(__name) \
140 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
143 return sprintf(page, "0x%04x\n", \
144 le16_to_cpup(&to_gadget_info(item)->cdev.desc.__name)); \
148 #define GI_DEVICE_DESC_SIMPLE_W_u8(_name) \
149 static ssize_t gadget_dev_desc_##_name##_store(struct config_item *item, \
150 const char *page, size_t len) \
154 ret = kstrtou8(page, 0, &val); \
157 to_gadget_info(item)->cdev.desc._name = val; \
161 #define GI_DEVICE_DESC_SIMPLE_W_u16(_name) \
162 static ssize_t gadget_dev_desc_##_name##_store(struct config_item *item, \
163 const char *page, size_t len) \
167 ret = kstrtou16(page, 0, &val); \
170 to_gadget_info(item)->cdev.desc._name = cpu_to_le16p(&val); \
174 #define GI_DEVICE_DESC_SIMPLE_RW(_name, _type) \
175 GI_DEVICE_DESC_SIMPLE_R_##_type(_name) \
176 GI_DEVICE_DESC_SIMPLE_W_##_type(_name)
178 GI_DEVICE_DESC_SIMPLE_R_u16(bcdUSB
);
179 GI_DEVICE_DESC_SIMPLE_RW(bDeviceClass
, u8
);
180 GI_DEVICE_DESC_SIMPLE_RW(bDeviceSubClass
, u8
);
181 GI_DEVICE_DESC_SIMPLE_RW(bDeviceProtocol
, u8
);
182 GI_DEVICE_DESC_SIMPLE_RW(bMaxPacketSize0
, u8
);
183 GI_DEVICE_DESC_SIMPLE_RW(idVendor
, u16
);
184 GI_DEVICE_DESC_SIMPLE_RW(idProduct
, u16
);
185 GI_DEVICE_DESC_SIMPLE_R_u16(bcdDevice
);
187 static ssize_t
is_valid_bcd(u16 bcd_val
)
189 if ((bcd_val
& 0xf) > 9)
191 if (((bcd_val
>> 4) & 0xf) > 9)
193 if (((bcd_val
>> 8) & 0xf) > 9)
195 if (((bcd_val
>> 12) & 0xf) > 9)
200 static ssize_t
gadget_dev_desc_bcdDevice_store(struct config_item
*item
,
201 const char *page
, size_t len
)
206 ret
= kstrtou16(page
, 0, &bcdDevice
);
209 ret
= is_valid_bcd(bcdDevice
);
213 to_gadget_info(item
)->cdev
.desc
.bcdDevice
= cpu_to_le16(bcdDevice
);
217 static ssize_t
gadget_dev_desc_bcdUSB_store(struct config_item
*item
,
218 const char *page
, size_t len
)
223 ret
= kstrtou16(page
, 0, &bcdUSB
);
226 ret
= is_valid_bcd(bcdUSB
);
230 to_gadget_info(item
)->cdev
.desc
.bcdUSB
= cpu_to_le16(bcdUSB
);
234 static ssize_t
gadget_dev_desc_UDC_show(struct config_item
*item
, char *page
)
236 char *udc_name
= to_gadget_info(item
)->composite
.gadget_driver
.udc_name
;
238 return sprintf(page
, "%s\n", udc_name
?: "");
241 static int unregister_gadget(struct gadget_info
*gi
)
245 if (!gi
->composite
.gadget_driver
.udc_name
)
248 ret
= usb_gadget_unregister_driver(&gi
->composite
.gadget_driver
);
251 kfree(gi
->composite
.gadget_driver
.udc_name
);
252 gi
->composite
.gadget_driver
.udc_name
= NULL
;
256 static ssize_t
gadget_dev_desc_UDC_store(struct config_item
*item
,
257 const char *page
, size_t len
)
259 struct gadget_info
*gi
= to_gadget_info(item
);
263 name
= kstrdup(page
, GFP_KERNEL
);
266 if (name
[len
- 1] == '\n')
267 name
[len
- 1] = '\0';
269 mutex_lock(&gi
->lock
);
272 ret
= unregister_gadget(gi
);
277 if (gi
->composite
.gadget_driver
.udc_name
) {
281 gi
->composite
.gadget_driver
.udc_name
= name
;
282 ret
= usb_gadget_probe_driver(&gi
->composite
.gadget_driver
);
284 gi
->composite
.gadget_driver
.udc_name
= NULL
;
288 mutex_unlock(&gi
->lock
);
292 mutex_unlock(&gi
->lock
);
296 CONFIGFS_ATTR(gadget_dev_desc_
, bDeviceClass
);
297 CONFIGFS_ATTR(gadget_dev_desc_
, bDeviceSubClass
);
298 CONFIGFS_ATTR(gadget_dev_desc_
, bDeviceProtocol
);
299 CONFIGFS_ATTR(gadget_dev_desc_
, bMaxPacketSize0
);
300 CONFIGFS_ATTR(gadget_dev_desc_
, idVendor
);
301 CONFIGFS_ATTR(gadget_dev_desc_
, idProduct
);
302 CONFIGFS_ATTR(gadget_dev_desc_
, bcdDevice
);
303 CONFIGFS_ATTR(gadget_dev_desc_
, bcdUSB
);
304 CONFIGFS_ATTR(gadget_dev_desc_
, UDC
);
306 static struct configfs_attribute
*gadget_root_attrs
[] = {
307 &gadget_dev_desc_attr_bDeviceClass
,
308 &gadget_dev_desc_attr_bDeviceSubClass
,
309 &gadget_dev_desc_attr_bDeviceProtocol
,
310 &gadget_dev_desc_attr_bMaxPacketSize0
,
311 &gadget_dev_desc_attr_idVendor
,
312 &gadget_dev_desc_attr_idProduct
,
313 &gadget_dev_desc_attr_bcdDevice
,
314 &gadget_dev_desc_attr_bcdUSB
,
315 &gadget_dev_desc_attr_UDC
,
319 static inline struct gadget_strings
*to_gadget_strings(struct config_item
*item
)
321 return container_of(to_config_group(item
), struct gadget_strings
,
325 static inline struct gadget_config_name
*to_gadget_config_name(
326 struct config_item
*item
)
328 return container_of(to_config_group(item
), struct gadget_config_name
,
332 static inline struct usb_function_instance
*to_usb_function_instance(
333 struct config_item
*item
)
335 return container_of(to_config_group(item
),
336 struct usb_function_instance
, group
);
339 static void gadget_info_attr_release(struct config_item
*item
)
341 struct gadget_info
*gi
= to_gadget_info(item
);
343 WARN_ON(!list_empty(&gi
->cdev
.configs
));
344 WARN_ON(!list_empty(&gi
->string_list
));
345 WARN_ON(!list_empty(&gi
->available_func
));
346 kfree(gi
->composite
.gadget_driver
.function
);
350 static struct configfs_item_operations gadget_root_item_ops
= {
351 .release
= gadget_info_attr_release
,
354 static void gadget_config_attr_release(struct config_item
*item
)
356 struct config_usb_cfg
*cfg
= to_config_usb_cfg(item
);
358 WARN_ON(!list_empty(&cfg
->c
.functions
));
359 list_del(&cfg
->c
.list
);
364 static int config_usb_cfg_link(
365 struct config_item
*usb_cfg_ci
,
366 struct config_item
*usb_func_ci
)
368 struct config_usb_cfg
*cfg
= to_config_usb_cfg(usb_cfg_ci
);
369 struct usb_composite_dev
*cdev
= cfg
->c
.cdev
;
370 struct gadget_info
*gi
= container_of(cdev
, struct gadget_info
, cdev
);
372 struct config_group
*group
= to_config_group(usb_func_ci
);
373 struct usb_function_instance
*fi
= container_of(group
,
374 struct usb_function_instance
, group
);
375 struct usb_function_instance
*a_fi
;
376 struct usb_function
*f
;
379 mutex_lock(&gi
->lock
);
381 * Make sure this function is from within our _this_ gadget and not
382 * from another gadget or a random directory.
383 * Also a function instance can only be linked once.
385 list_for_each_entry(a_fi
, &gi
->available_func
, cfs_list
) {
394 list_for_each_entry(f
, &cfg
->func_list
, list
) {
401 f
= usb_get_function(fi
);
407 /* stash the function until we bind it to the gadget */
408 list_add_tail(&f
->list
, &cfg
->func_list
);
411 mutex_unlock(&gi
->lock
);
415 static void config_usb_cfg_unlink(
416 struct config_item
*usb_cfg_ci
,
417 struct config_item
*usb_func_ci
)
419 struct config_usb_cfg
*cfg
= to_config_usb_cfg(usb_cfg_ci
);
420 struct usb_composite_dev
*cdev
= cfg
->c
.cdev
;
421 struct gadget_info
*gi
= container_of(cdev
, struct gadget_info
, cdev
);
423 struct config_group
*group
= to_config_group(usb_func_ci
);
424 struct usb_function_instance
*fi
= container_of(group
,
425 struct usb_function_instance
, group
);
426 struct usb_function
*f
;
429 * ideally I would like to forbid to unlink functions while a gadget is
430 * bound to an UDC. Since this isn't possible at the moment, we simply
431 * force an unbind, the function is available here and then we can
432 * remove the function.
434 mutex_lock(&gi
->lock
);
435 if (gi
->composite
.gadget_driver
.udc_name
)
436 unregister_gadget(gi
);
437 WARN_ON(gi
->composite
.gadget_driver
.udc_name
);
439 list_for_each_entry(f
, &cfg
->func_list
, list
) {
443 mutex_unlock(&gi
->lock
);
447 mutex_unlock(&gi
->lock
);
448 WARN(1, "Unable to locate function to unbind\n");
451 static struct configfs_item_operations gadget_config_item_ops
= {
452 .release
= gadget_config_attr_release
,
453 .allow_link
= config_usb_cfg_link
,
454 .drop_link
= config_usb_cfg_unlink
,
458 static ssize_t
gadget_config_desc_MaxPower_show(struct config_item
*item
,
461 return sprintf(page
, "%u\n", to_config_usb_cfg(item
)->c
.MaxPower
);
464 static ssize_t
gadget_config_desc_MaxPower_store(struct config_item
*item
,
465 const char *page
, size_t len
)
469 ret
= kstrtou16(page
, 0, &val
);
472 if (DIV_ROUND_UP(val
, 8) > 0xff)
474 to_config_usb_cfg(item
)->c
.MaxPower
= val
;
478 static ssize_t
gadget_config_desc_bmAttributes_show(struct config_item
*item
,
481 return sprintf(page
, "0x%02x\n",
482 to_config_usb_cfg(item
)->c
.bmAttributes
);
485 static ssize_t
gadget_config_desc_bmAttributes_store(struct config_item
*item
,
486 const char *page
, size_t len
)
490 ret
= kstrtou8(page
, 0, &val
);
493 if (!(val
& USB_CONFIG_ATT_ONE
))
495 if (val
& ~(USB_CONFIG_ATT_ONE
| USB_CONFIG_ATT_SELFPOWER
|
496 USB_CONFIG_ATT_WAKEUP
))
498 to_config_usb_cfg(item
)->c
.bmAttributes
= val
;
502 CONFIGFS_ATTR(gadget_config_desc_
, MaxPower
);
503 CONFIGFS_ATTR(gadget_config_desc_
, bmAttributes
);
505 static struct configfs_attribute
*gadget_config_attrs
[] = {
506 &gadget_config_desc_attr_MaxPower
,
507 &gadget_config_desc_attr_bmAttributes
,
511 static const struct config_item_type gadget_config_type
= {
512 .ct_item_ops
= &gadget_config_item_ops
,
513 .ct_attrs
= gadget_config_attrs
,
514 .ct_owner
= THIS_MODULE
,
517 static const struct config_item_type gadget_root_type
= {
518 .ct_item_ops
= &gadget_root_item_ops
,
519 .ct_attrs
= gadget_root_attrs
,
520 .ct_owner
= THIS_MODULE
,
523 static void composite_init_dev(struct usb_composite_dev
*cdev
)
525 spin_lock_init(&cdev
->lock
);
526 INIT_LIST_HEAD(&cdev
->configs
);
527 INIT_LIST_HEAD(&cdev
->gstrings
);
530 static struct config_group
*function_make(
531 struct config_group
*group
,
534 struct gadget_info
*gi
;
535 struct usb_function_instance
*fi
;
536 char buf
[MAX_NAME_LEN
];
541 ret
= snprintf(buf
, MAX_NAME_LEN
, "%s", name
);
542 if (ret
>= MAX_NAME_LEN
)
543 return ERR_PTR(-ENAMETOOLONG
);
546 instance_name
= strchr(func_name
, '.');
547 if (!instance_name
) {
548 pr_err("Unable to locate . in FUNC.INSTANCE\n");
549 return ERR_PTR(-EINVAL
);
551 *instance_name
= '\0';
554 fi
= usb_get_function_instance(func_name
);
558 ret
= config_item_set_name(&fi
->group
.cg_item
, "%s", name
);
560 usb_put_function_instance(fi
);
563 if (fi
->set_inst_name
) {
564 ret
= fi
->set_inst_name(fi
, instance_name
);
566 usb_put_function_instance(fi
);
571 gi
= container_of(group
, struct gadget_info
, functions_group
);
573 mutex_lock(&gi
->lock
);
574 list_add_tail(&fi
->cfs_list
, &gi
->available_func
);
575 mutex_unlock(&gi
->lock
);
579 static void function_drop(
580 struct config_group
*group
,
581 struct config_item
*item
)
583 struct usb_function_instance
*fi
= to_usb_function_instance(item
);
584 struct gadget_info
*gi
;
586 gi
= container_of(group
, struct gadget_info
, functions_group
);
588 mutex_lock(&gi
->lock
);
589 list_del(&fi
->cfs_list
);
590 mutex_unlock(&gi
->lock
);
591 config_item_put(item
);
594 static struct configfs_group_operations functions_ops
= {
595 .make_group
= &function_make
,
596 .drop_item
= &function_drop
,
599 static const struct config_item_type functions_type
= {
600 .ct_group_ops
= &functions_ops
,
601 .ct_owner
= THIS_MODULE
,
604 GS_STRINGS_RW(gadget_config_name
, configuration
);
606 static struct configfs_attribute
*gadget_config_name_langid_attrs
[] = {
607 &gadget_config_name_attr_configuration
,
611 static void gadget_config_name_attr_release(struct config_item
*item
)
613 struct gadget_config_name
*cn
= to_gadget_config_name(item
);
615 kfree(cn
->configuration
);
621 USB_CONFIG_STRING_RW_OPS(gadget_config_name
);
622 USB_CONFIG_STRINGS_LANG(gadget_config_name
, config_usb_cfg
);
624 static struct config_group
*config_desc_make(
625 struct config_group
*group
,
628 struct gadget_info
*gi
;
629 struct config_usb_cfg
*cfg
;
630 char buf
[MAX_NAME_LEN
];
635 gi
= container_of(group
, struct gadget_info
, configs_group
);
636 ret
= snprintf(buf
, MAX_NAME_LEN
, "%s", name
);
637 if (ret
>= MAX_NAME_LEN
)
638 return ERR_PTR(-ENAMETOOLONG
);
640 num_str
= strchr(buf
, '.');
642 pr_err("Unable to locate . in name.bConfigurationValue\n");
643 return ERR_PTR(-EINVAL
);
650 return ERR_PTR(-EINVAL
);
652 ret
= kstrtou8(num_str
, 0, &num
);
656 cfg
= kzalloc(sizeof(*cfg
), GFP_KERNEL
);
658 return ERR_PTR(-ENOMEM
);
659 cfg
->c
.label
= kstrdup(buf
, GFP_KERNEL
);
664 cfg
->c
.bConfigurationValue
= num
;
665 cfg
->c
.MaxPower
= CONFIG_USB_GADGET_VBUS_DRAW
;
666 cfg
->c
.bmAttributes
= USB_CONFIG_ATT_ONE
;
667 INIT_LIST_HEAD(&cfg
->string_list
);
668 INIT_LIST_HEAD(&cfg
->func_list
);
670 config_group_init_type_name(&cfg
->group
, name
,
671 &gadget_config_type
);
673 config_group_init_type_name(&cfg
->strings_group
, "strings",
674 &gadget_config_name_strings_type
);
675 configfs_add_default_group(&cfg
->strings_group
, &cfg
->group
);
677 ret
= usb_add_config_only(&gi
->cdev
, &cfg
->c
);
688 static void config_desc_drop(
689 struct config_group
*group
,
690 struct config_item
*item
)
692 config_item_put(item
);
695 static struct configfs_group_operations config_desc_ops
= {
696 .make_group
= &config_desc_make
,
697 .drop_item
= &config_desc_drop
,
700 static const struct config_item_type config_desc_type
= {
701 .ct_group_ops
= &config_desc_ops
,
702 .ct_owner
= THIS_MODULE
,
705 GS_STRINGS_RW(gadget_strings
, manufacturer
);
706 GS_STRINGS_RW(gadget_strings
, product
);
707 GS_STRINGS_RW(gadget_strings
, serialnumber
);
709 static struct configfs_attribute
*gadget_strings_langid_attrs
[] = {
710 &gadget_strings_attr_manufacturer
,
711 &gadget_strings_attr_product
,
712 &gadget_strings_attr_serialnumber
,
716 static void gadget_strings_attr_release(struct config_item
*item
)
718 struct gadget_strings
*gs
= to_gadget_strings(item
);
720 kfree(gs
->manufacturer
);
722 kfree(gs
->serialnumber
);
728 USB_CONFIG_STRING_RW_OPS(gadget_strings
);
729 USB_CONFIG_STRINGS_LANG(gadget_strings
, gadget_info
);
731 static inline struct os_desc
*to_os_desc(struct config_item
*item
)
733 return container_of(to_config_group(item
), struct os_desc
, group
);
736 static inline struct gadget_info
*os_desc_item_to_gadget_info(
737 struct config_item
*item
)
739 return to_gadget_info(to_os_desc(item
)->group
.cg_item
.ci_parent
);
742 static ssize_t
os_desc_use_show(struct config_item
*item
, char *page
)
744 return sprintf(page
, "%d\n",
745 os_desc_item_to_gadget_info(item
)->use_os_desc
);
748 static ssize_t
os_desc_use_store(struct config_item
*item
, const char *page
,
751 struct gadget_info
*gi
= os_desc_item_to_gadget_info(item
);
755 mutex_lock(&gi
->lock
);
756 ret
= strtobool(page
, &use
);
758 gi
->use_os_desc
= use
;
761 mutex_unlock(&gi
->lock
);
766 static ssize_t
os_desc_b_vendor_code_show(struct config_item
*item
, char *page
)
768 return sprintf(page
, "0x%02x\n",
769 os_desc_item_to_gadget_info(item
)->b_vendor_code
);
772 static ssize_t
os_desc_b_vendor_code_store(struct config_item
*item
,
773 const char *page
, size_t len
)
775 struct gadget_info
*gi
= os_desc_item_to_gadget_info(item
);
779 mutex_lock(&gi
->lock
);
780 ret
= kstrtou8(page
, 0, &b_vendor_code
);
782 gi
->b_vendor_code
= b_vendor_code
;
785 mutex_unlock(&gi
->lock
);
790 static ssize_t
os_desc_qw_sign_show(struct config_item
*item
, char *page
)
792 struct gadget_info
*gi
= os_desc_item_to_gadget_info(item
);
795 res
= utf16s_to_utf8s((wchar_t *) gi
->qw_sign
, OS_STRING_QW_SIGN_LEN
,
796 UTF16_LITTLE_ENDIAN
, page
, PAGE_SIZE
- 1);
802 static ssize_t
os_desc_qw_sign_store(struct config_item
*item
, const char *page
,
805 struct gadget_info
*gi
= os_desc_item_to_gadget_info(item
);
808 l
= min((int)len
, OS_STRING_QW_SIGN_LEN
>> 1);
809 if (page
[l
- 1] == '\n')
812 mutex_lock(&gi
->lock
);
813 res
= utf8s_to_utf16s(page
, l
,
814 UTF16_LITTLE_ENDIAN
, (wchar_t *) gi
->qw_sign
,
815 OS_STRING_QW_SIGN_LEN
);
818 mutex_unlock(&gi
->lock
);
823 CONFIGFS_ATTR(os_desc_
, use
);
824 CONFIGFS_ATTR(os_desc_
, b_vendor_code
);
825 CONFIGFS_ATTR(os_desc_
, qw_sign
);
827 static struct configfs_attribute
*os_desc_attrs
[] = {
829 &os_desc_attr_b_vendor_code
,
830 &os_desc_attr_qw_sign
,
834 static void os_desc_attr_release(struct config_item
*item
)
836 struct os_desc
*os_desc
= to_os_desc(item
);
840 static int os_desc_link(struct config_item
*os_desc_ci
,
841 struct config_item
*usb_cfg_ci
)
843 struct gadget_info
*gi
= container_of(to_config_group(os_desc_ci
),
844 struct gadget_info
, os_desc_group
);
845 struct usb_composite_dev
*cdev
= &gi
->cdev
;
846 struct config_usb_cfg
*c_target
=
847 container_of(to_config_group(usb_cfg_ci
),
848 struct config_usb_cfg
, group
);
849 struct usb_configuration
*c
;
852 mutex_lock(&gi
->lock
);
853 list_for_each_entry(c
, &cdev
->configs
, list
) {
854 if (c
== &c_target
->c
)
857 if (c
!= &c_target
->c
) {
862 if (cdev
->os_desc_config
) {
867 cdev
->os_desc_config
= &c_target
->c
;
871 mutex_unlock(&gi
->lock
);
875 static void os_desc_unlink(struct config_item
*os_desc_ci
,
876 struct config_item
*usb_cfg_ci
)
878 struct gadget_info
*gi
= container_of(to_config_group(os_desc_ci
),
879 struct gadget_info
, os_desc_group
);
880 struct usb_composite_dev
*cdev
= &gi
->cdev
;
882 mutex_lock(&gi
->lock
);
883 if (gi
->composite
.gadget_driver
.udc_name
)
884 unregister_gadget(gi
);
885 cdev
->os_desc_config
= NULL
;
886 WARN_ON(gi
->composite
.gadget_driver
.udc_name
);
887 mutex_unlock(&gi
->lock
);
890 static struct configfs_item_operations os_desc_ops
= {
891 .release
= os_desc_attr_release
,
892 .allow_link
= os_desc_link
,
893 .drop_link
= os_desc_unlink
,
896 static struct config_item_type os_desc_type
= {
897 .ct_item_ops
= &os_desc_ops
,
898 .ct_attrs
= os_desc_attrs
,
899 .ct_owner
= THIS_MODULE
,
902 static inline struct usb_os_desc_ext_prop
903 *to_usb_os_desc_ext_prop(struct config_item
*item
)
905 return container_of(item
, struct usb_os_desc_ext_prop
, item
);
908 static ssize_t
ext_prop_type_show(struct config_item
*item
, char *page
)
910 return sprintf(page
, "%d\n", to_usb_os_desc_ext_prop(item
)->type
);
913 static ssize_t
ext_prop_type_store(struct config_item
*item
,
914 const char *page
, size_t len
)
916 struct usb_os_desc_ext_prop
*ext_prop
= to_usb_os_desc_ext_prop(item
);
917 struct usb_os_desc
*desc
= to_usb_os_desc(ext_prop
->item
.ci_parent
);
921 if (desc
->opts_mutex
)
922 mutex_lock(desc
->opts_mutex
);
923 ret
= kstrtou8(page
, 0, &type
);
926 if (type
< USB_EXT_PROP_UNICODE
|| type
> USB_EXT_PROP_UNICODE_MULTI
) {
931 if ((ext_prop
->type
== USB_EXT_PROP_BINARY
||
932 ext_prop
->type
== USB_EXT_PROP_LE32
||
933 ext_prop
->type
== USB_EXT_PROP_BE32
) &&
934 (type
== USB_EXT_PROP_UNICODE
||
935 type
== USB_EXT_PROP_UNICODE_ENV
||
936 type
== USB_EXT_PROP_UNICODE_LINK
))
937 ext_prop
->data_len
<<= 1;
938 else if ((ext_prop
->type
== USB_EXT_PROP_UNICODE
||
939 ext_prop
->type
== USB_EXT_PROP_UNICODE_ENV
||
940 ext_prop
->type
== USB_EXT_PROP_UNICODE_LINK
) &&
941 (type
== USB_EXT_PROP_BINARY
||
942 type
== USB_EXT_PROP_LE32
||
943 type
== USB_EXT_PROP_BE32
))
944 ext_prop
->data_len
>>= 1;
945 ext_prop
->type
= type
;
949 if (desc
->opts_mutex
)
950 mutex_unlock(desc
->opts_mutex
);
954 static ssize_t
ext_prop_data_show(struct config_item
*item
, char *page
)
956 struct usb_os_desc_ext_prop
*ext_prop
= to_usb_os_desc_ext_prop(item
);
957 int len
= ext_prop
->data_len
;
959 if (ext_prop
->type
== USB_EXT_PROP_UNICODE
||
960 ext_prop
->type
== USB_EXT_PROP_UNICODE_ENV
||
961 ext_prop
->type
== USB_EXT_PROP_UNICODE_LINK
)
963 memcpy(page
, ext_prop
->data
, len
);
968 static ssize_t
ext_prop_data_store(struct config_item
*item
,
969 const char *page
, size_t len
)
971 struct usb_os_desc_ext_prop
*ext_prop
= to_usb_os_desc_ext_prop(item
);
972 struct usb_os_desc
*desc
= to_usb_os_desc(ext_prop
->item
.ci_parent
);
974 size_t ret_len
= len
;
976 if (page
[len
- 1] == '\n' || page
[len
- 1] == '\0')
978 new_data
= kmemdup(page
, len
, GFP_KERNEL
);
982 if (desc
->opts_mutex
)
983 mutex_lock(desc
->opts_mutex
);
984 kfree(ext_prop
->data
);
985 ext_prop
->data
= new_data
;
986 desc
->ext_prop_len
-= ext_prop
->data_len
;
987 ext_prop
->data_len
= len
;
988 desc
->ext_prop_len
+= ext_prop
->data_len
;
989 if (ext_prop
->type
== USB_EXT_PROP_UNICODE
||
990 ext_prop
->type
== USB_EXT_PROP_UNICODE_ENV
||
991 ext_prop
->type
== USB_EXT_PROP_UNICODE_LINK
) {
992 desc
->ext_prop_len
-= ext_prop
->data_len
;
993 ext_prop
->data_len
<<= 1;
994 ext_prop
->data_len
+= 2;
995 desc
->ext_prop_len
+= ext_prop
->data_len
;
997 if (desc
->opts_mutex
)
998 mutex_unlock(desc
->opts_mutex
);
1002 CONFIGFS_ATTR(ext_prop_
, type
);
1003 CONFIGFS_ATTR(ext_prop_
, data
);
1005 static struct configfs_attribute
*ext_prop_attrs
[] = {
1006 &ext_prop_attr_type
,
1007 &ext_prop_attr_data
,
1011 static void usb_os_desc_ext_prop_release(struct config_item
*item
)
1013 struct usb_os_desc_ext_prop
*ext_prop
= to_usb_os_desc_ext_prop(item
);
1015 kfree(ext_prop
); /* frees a whole chunk */
1018 static struct configfs_item_operations ext_prop_ops
= {
1019 .release
= usb_os_desc_ext_prop_release
,
1022 static struct config_item
*ext_prop_make(
1023 struct config_group
*group
,
1026 struct usb_os_desc_ext_prop
*ext_prop
;
1027 struct config_item_type
*ext_prop_type
;
1028 struct usb_os_desc
*desc
;
1031 vla_group(data_chunk
);
1032 vla_item(data_chunk
, struct usb_os_desc_ext_prop
, ext_prop
, 1);
1033 vla_item(data_chunk
, struct config_item_type
, ext_prop_type
, 1);
1035 vlabuf
= kzalloc(vla_group_size(data_chunk
), GFP_KERNEL
);
1037 return ERR_PTR(-ENOMEM
);
1039 ext_prop
= vla_ptr(vlabuf
, data_chunk
, ext_prop
);
1040 ext_prop_type
= vla_ptr(vlabuf
, data_chunk
, ext_prop_type
);
1042 desc
= container_of(group
, struct usb_os_desc
, group
);
1043 ext_prop_type
->ct_item_ops
= &ext_prop_ops
;
1044 ext_prop_type
->ct_attrs
= ext_prop_attrs
;
1045 ext_prop_type
->ct_owner
= desc
->owner
;
1047 config_item_init_type_name(&ext_prop
->item
, name
, ext_prop_type
);
1049 ext_prop
->name
= kstrdup(name
, GFP_KERNEL
);
1050 if (!ext_prop
->name
) {
1052 return ERR_PTR(-ENOMEM
);
1054 desc
->ext_prop_len
+= 14;
1055 ext_prop
->name_len
= 2 * strlen(ext_prop
->name
) + 2;
1056 if (desc
->opts_mutex
)
1057 mutex_lock(desc
->opts_mutex
);
1058 desc
->ext_prop_len
+= ext_prop
->name_len
;
1059 list_add_tail(&ext_prop
->entry
, &desc
->ext_prop
);
1060 ++desc
->ext_prop_count
;
1061 if (desc
->opts_mutex
)
1062 mutex_unlock(desc
->opts_mutex
);
1064 return &ext_prop
->item
;
1067 static void ext_prop_drop(struct config_group
*group
, struct config_item
*item
)
1069 struct usb_os_desc_ext_prop
*ext_prop
= to_usb_os_desc_ext_prop(item
);
1070 struct usb_os_desc
*desc
= to_usb_os_desc(&group
->cg_item
);
1072 if (desc
->opts_mutex
)
1073 mutex_lock(desc
->opts_mutex
);
1074 list_del(&ext_prop
->entry
);
1075 --desc
->ext_prop_count
;
1076 kfree(ext_prop
->name
);
1077 desc
->ext_prop_len
-= (ext_prop
->name_len
+ ext_prop
->data_len
+ 14);
1078 if (desc
->opts_mutex
)
1079 mutex_unlock(desc
->opts_mutex
);
1080 config_item_put(item
);
1083 static struct configfs_group_operations interf_grp_ops
= {
1084 .make_item
= &ext_prop_make
,
1085 .drop_item
= &ext_prop_drop
,
1088 static ssize_t
interf_grp_compatible_id_show(struct config_item
*item
,
1091 memcpy(page
, to_usb_os_desc(item
)->ext_compat_id
, 8);
1095 static ssize_t
interf_grp_compatible_id_store(struct config_item
*item
,
1096 const char *page
, size_t len
)
1098 struct usb_os_desc
*desc
= to_usb_os_desc(item
);
1101 l
= min_t(int, 8, len
);
1102 if (page
[l
- 1] == '\n')
1104 if (desc
->opts_mutex
)
1105 mutex_lock(desc
->opts_mutex
);
1106 memcpy(desc
->ext_compat_id
, page
, l
);
1108 if (desc
->opts_mutex
)
1109 mutex_unlock(desc
->opts_mutex
);
1114 static ssize_t
interf_grp_sub_compatible_id_show(struct config_item
*item
,
1117 memcpy(page
, to_usb_os_desc(item
)->ext_compat_id
+ 8, 8);
1121 static ssize_t
interf_grp_sub_compatible_id_store(struct config_item
*item
,
1122 const char *page
, size_t len
)
1124 struct usb_os_desc
*desc
= to_usb_os_desc(item
);
1127 l
= min_t(int, 8, len
);
1128 if (page
[l
- 1] == '\n')
1130 if (desc
->opts_mutex
)
1131 mutex_lock(desc
->opts_mutex
);
1132 memcpy(desc
->ext_compat_id
+ 8, page
, l
);
1134 if (desc
->opts_mutex
)
1135 mutex_unlock(desc
->opts_mutex
);
1140 CONFIGFS_ATTR(interf_grp_
, compatible_id
);
1141 CONFIGFS_ATTR(interf_grp_
, sub_compatible_id
);
1143 static struct configfs_attribute
*interf_grp_attrs
[] = {
1144 &interf_grp_attr_compatible_id
,
1145 &interf_grp_attr_sub_compatible_id
,
1149 struct config_group
*usb_os_desc_prepare_interf_dir(
1150 struct config_group
*parent
,
1152 struct usb_os_desc
**desc
,
1154 struct module
*owner
)
1156 struct config_group
*os_desc_group
;
1157 struct config_item_type
*os_desc_type
, *interface_type
;
1159 vla_group(data_chunk
);
1160 vla_item(data_chunk
, struct config_group
, os_desc_group
, 1);
1161 vla_item(data_chunk
, struct config_item_type
, os_desc_type
, 1);
1162 vla_item(data_chunk
, struct config_item_type
, interface_type
, 1);
1164 char *vlabuf
= kzalloc(vla_group_size(data_chunk
), GFP_KERNEL
);
1166 return ERR_PTR(-ENOMEM
);
1168 os_desc_group
= vla_ptr(vlabuf
, data_chunk
, os_desc_group
);
1169 os_desc_type
= vla_ptr(vlabuf
, data_chunk
, os_desc_type
);
1170 interface_type
= vla_ptr(vlabuf
, data_chunk
, interface_type
);
1172 os_desc_type
->ct_owner
= owner
;
1173 config_group_init_type_name(os_desc_group
, "os_desc", os_desc_type
);
1174 configfs_add_default_group(os_desc_group
, parent
);
1176 interface_type
->ct_group_ops
= &interf_grp_ops
;
1177 interface_type
->ct_attrs
= interf_grp_attrs
;
1178 interface_type
->ct_owner
= owner
;
1180 while (n_interf
--) {
1181 struct usb_os_desc
*d
;
1185 config_group_init_type_name(&d
->group
, "", interface_type
);
1186 config_item_set_name(&d
->group
.cg_item
, "interface.%s",
1188 configfs_add_default_group(&d
->group
, os_desc_group
);
1191 return os_desc_group
;
1193 EXPORT_SYMBOL(usb_os_desc_prepare_interf_dir
);
1195 static int configfs_do_nothing(struct usb_composite_dev
*cdev
)
1201 int composite_dev_prepare(struct usb_composite_driver
*composite
,
1202 struct usb_composite_dev
*dev
);
1204 int composite_os_desc_req_prepare(struct usb_composite_dev
*cdev
,
1205 struct usb_ep
*ep0
);
1207 static void purge_configs_funcs(struct gadget_info
*gi
)
1209 struct usb_configuration
*c
;
1211 list_for_each_entry(c
, &gi
->cdev
.configs
, list
) {
1212 struct usb_function
*f
, *tmp
;
1213 struct config_usb_cfg
*cfg
;
1215 cfg
= container_of(c
, struct config_usb_cfg
, c
);
1217 list_for_each_entry_safe(f
, tmp
, &c
->functions
, list
) {
1219 list_move_tail(&f
->list
, &cfg
->func_list
);
1221 dev_dbg(&gi
->cdev
.gadget
->dev
,
1222 "unbind function '%s'/%p\n",
1227 c
->next_interface_id
= 0;
1228 memset(c
->interface
, 0, sizeof(c
->interface
));
1229 c
->superspeed_plus
= 0;
1236 static int configfs_composite_bind(struct usb_gadget
*gadget
,
1237 struct usb_gadget_driver
*gdriver
)
1239 struct usb_composite_driver
*composite
= to_cdriver(gdriver
);
1240 struct gadget_info
*gi
= container_of(composite
,
1241 struct gadget_info
, composite
);
1242 struct usb_composite_dev
*cdev
= &gi
->cdev
;
1243 struct usb_configuration
*c
;
1244 struct usb_string
*s
;
1248 /* the gi->lock is hold by the caller */
1250 cdev
->gadget
= gadget
;
1251 set_gadget_data(gadget
, cdev
);
1252 ret
= composite_dev_prepare(composite
, cdev
);
1255 /* and now the gadget bind */
1258 if (list_empty(&gi
->cdev
.configs
)) {
1259 pr_err("Need at least one configuration in %s.\n",
1260 gi
->composite
.name
);
1261 goto err_comp_cleanup
;
1265 list_for_each_entry(c
, &gi
->cdev
.configs
, list
) {
1266 struct config_usb_cfg
*cfg
;
1268 cfg
= container_of(c
, struct config_usb_cfg
, c
);
1269 if (list_empty(&cfg
->func_list
)) {
1270 pr_err("Config %s/%d of %s needs at least one function.\n",
1271 c
->label
, c
->bConfigurationValue
,
1272 gi
->composite
.name
);
1273 goto err_comp_cleanup
;
1277 /* init all strings */
1278 if (!list_empty(&gi
->string_list
)) {
1279 struct gadget_strings
*gs
;
1282 list_for_each_entry(gs
, &gi
->string_list
, list
) {
1284 gi
->gstrings
[i
] = &gs
->stringtab_dev
;
1285 gs
->stringtab_dev
.strings
= gs
->strings
;
1286 gs
->strings
[USB_GADGET_MANUFACTURER_IDX
].s
=
1288 gs
->strings
[USB_GADGET_PRODUCT_IDX
].s
= gs
->product
;
1289 gs
->strings
[USB_GADGET_SERIAL_IDX
].s
= gs
->serialnumber
;
1292 gi
->gstrings
[i
] = NULL
;
1293 s
= usb_gstrings_attach(&gi
->cdev
, gi
->gstrings
,
1294 USB_GADGET_FIRST_AVAIL_IDX
);
1297 goto err_comp_cleanup
;
1300 gi
->cdev
.desc
.iManufacturer
= s
[USB_GADGET_MANUFACTURER_IDX
].id
;
1301 gi
->cdev
.desc
.iProduct
= s
[USB_GADGET_PRODUCT_IDX
].id
;
1302 gi
->cdev
.desc
.iSerialNumber
= s
[USB_GADGET_SERIAL_IDX
].id
;
1305 if (gi
->use_os_desc
) {
1306 cdev
->use_os_string
= true;
1307 cdev
->b_vendor_code
= gi
->b_vendor_code
;
1308 memcpy(cdev
->qw_sign
, gi
->qw_sign
, OS_STRING_QW_SIGN_LEN
);
1311 if (gadget_is_otg(gadget
) && !otg_desc
[0]) {
1312 struct usb_descriptor_header
*usb_desc
;
1314 usb_desc
= usb_otg_descriptor_alloc(gadget
);
1317 goto err_comp_cleanup
;
1319 usb_otg_descriptor_init(gadget
, usb_desc
);
1320 otg_desc
[0] = usb_desc
;
1324 /* Go through all configs, attach all functions */
1325 list_for_each_entry(c
, &gi
->cdev
.configs
, list
) {
1326 struct config_usb_cfg
*cfg
;
1327 struct usb_function
*f
;
1328 struct usb_function
*tmp
;
1329 struct gadget_config_name
*cn
;
1331 if (gadget_is_otg(gadget
))
1332 c
->descriptors
= otg_desc
;
1334 cfg
= container_of(c
, struct config_usb_cfg
, c
);
1335 if (!list_empty(&cfg
->string_list
)) {
1337 list_for_each_entry(cn
, &cfg
->string_list
, list
) {
1338 cfg
->gstrings
[i
] = &cn
->stringtab_dev
;
1339 cn
->stringtab_dev
.strings
= &cn
->strings
;
1340 cn
->strings
.s
= cn
->configuration
;
1343 cfg
->gstrings
[i
] = NULL
;
1344 s
= usb_gstrings_attach(&gi
->cdev
, cfg
->gstrings
, 1);
1347 goto err_comp_cleanup
;
1349 c
->iConfiguration
= s
[0].id
;
1352 list_for_each_entry_safe(f
, tmp
, &cfg
->func_list
, list
) {
1354 ret
= usb_add_function(c
, f
);
1356 list_add(&f
->list
, &cfg
->func_list
);
1357 goto err_purge_funcs
;
1360 usb_ep_autoconfig_reset(cdev
->gadget
);
1362 if (cdev
->use_os_string
) {
1363 ret
= composite_os_desc_req_prepare(cdev
, gadget
->ep0
);
1365 goto err_purge_funcs
;
1368 usb_ep_autoconfig_reset(cdev
->gadget
);
1372 purge_configs_funcs(gi
);
1374 composite_dev_cleanup(cdev
);
1378 static void configfs_composite_unbind(struct usb_gadget
*gadget
)
1380 struct usb_composite_dev
*cdev
;
1381 struct gadget_info
*gi
;
1382 unsigned long flags
;
1384 /* the gi->lock is hold by the caller */
1386 cdev
= get_gadget_data(gadget
);
1387 gi
= container_of(cdev
, struct gadget_info
, cdev
);
1388 spin_lock_irqsave(&gi
->spinlock
, flags
);
1390 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1394 purge_configs_funcs(gi
);
1395 composite_dev_cleanup(cdev
);
1396 usb_ep_autoconfig_reset(cdev
->gadget
);
1397 spin_lock_irqsave(&gi
->spinlock
, flags
);
1398 cdev
->gadget
= NULL
;
1399 set_gadget_data(gadget
, NULL
);
1400 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1403 static int configfs_composite_setup(struct usb_gadget
*gadget
,
1404 const struct usb_ctrlrequest
*ctrl
)
1406 struct usb_composite_dev
*cdev
;
1407 struct gadget_info
*gi
;
1408 unsigned long flags
;
1411 cdev
= get_gadget_data(gadget
);
1415 gi
= container_of(cdev
, struct gadget_info
, cdev
);
1416 spin_lock_irqsave(&gi
->spinlock
, flags
);
1417 cdev
= get_gadget_data(gadget
);
1418 if (!cdev
|| gi
->unbind
) {
1419 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1423 ret
= composite_setup(gadget
, ctrl
);
1424 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1428 static void configfs_composite_disconnect(struct usb_gadget
*gadget
)
1430 struct usb_composite_dev
*cdev
;
1431 struct gadget_info
*gi
;
1432 unsigned long flags
;
1434 cdev
= get_gadget_data(gadget
);
1438 gi
= container_of(cdev
, struct gadget_info
, cdev
);
1439 spin_lock_irqsave(&gi
->spinlock
, flags
);
1440 cdev
= get_gadget_data(gadget
);
1441 if (!cdev
|| gi
->unbind
) {
1442 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1446 composite_disconnect(gadget
);
1447 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1450 static void configfs_composite_suspend(struct usb_gadget
*gadget
)
1452 struct usb_composite_dev
*cdev
;
1453 struct gadget_info
*gi
;
1454 unsigned long flags
;
1456 cdev
= get_gadget_data(gadget
);
1460 gi
= container_of(cdev
, struct gadget_info
, cdev
);
1461 spin_lock_irqsave(&gi
->spinlock
, flags
);
1462 cdev
= get_gadget_data(gadget
);
1463 if (!cdev
|| gi
->unbind
) {
1464 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1468 composite_suspend(gadget
);
1469 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1472 static void configfs_composite_resume(struct usb_gadget
*gadget
)
1474 struct usb_composite_dev
*cdev
;
1475 struct gadget_info
*gi
;
1476 unsigned long flags
;
1478 cdev
= get_gadget_data(gadget
);
1482 gi
= container_of(cdev
, struct gadget_info
, cdev
);
1483 spin_lock_irqsave(&gi
->spinlock
, flags
);
1484 cdev
= get_gadget_data(gadget
);
1485 if (!cdev
|| gi
->unbind
) {
1486 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1490 composite_resume(gadget
);
1491 spin_unlock_irqrestore(&gi
->spinlock
, flags
);
1494 static const struct usb_gadget_driver configfs_driver_template
= {
1495 .bind
= configfs_composite_bind
,
1496 .unbind
= configfs_composite_unbind
,
1498 .setup
= configfs_composite_setup
,
1499 .reset
= configfs_composite_disconnect
,
1500 .disconnect
= configfs_composite_disconnect
,
1502 .suspend
= configfs_composite_suspend
,
1503 .resume
= configfs_composite_resume
,
1505 .max_speed
= USB_SPEED_SUPER
,
1507 .owner
= THIS_MODULE
,
1508 .name
= "configfs-gadget",
1510 .match_existing_only
= 1,
1513 static struct config_group
*gadgets_make(
1514 struct config_group
*group
,
1517 struct gadget_info
*gi
;
1519 gi
= kzalloc(sizeof(*gi
), GFP_KERNEL
);
1521 return ERR_PTR(-ENOMEM
);
1523 config_group_init_type_name(&gi
->group
, name
, &gadget_root_type
);
1525 config_group_init_type_name(&gi
->functions_group
, "functions",
1527 configfs_add_default_group(&gi
->functions_group
, &gi
->group
);
1529 config_group_init_type_name(&gi
->configs_group
, "configs",
1531 configfs_add_default_group(&gi
->configs_group
, &gi
->group
);
1533 config_group_init_type_name(&gi
->strings_group
, "strings",
1534 &gadget_strings_strings_type
);
1535 configfs_add_default_group(&gi
->strings_group
, &gi
->group
);
1537 config_group_init_type_name(&gi
->os_desc_group
, "os_desc",
1539 configfs_add_default_group(&gi
->os_desc_group
, &gi
->group
);
1541 gi
->composite
.bind
= configfs_do_nothing
;
1542 gi
->composite
.unbind
= configfs_do_nothing
;
1543 gi
->composite
.suspend
= NULL
;
1544 gi
->composite
.resume
= NULL
;
1545 gi
->composite
.max_speed
= USB_SPEED_SUPER
;
1547 spin_lock_init(&gi
->spinlock
);
1548 mutex_init(&gi
->lock
);
1549 INIT_LIST_HEAD(&gi
->string_list
);
1550 INIT_LIST_HEAD(&gi
->available_func
);
1552 composite_init_dev(&gi
->cdev
);
1553 gi
->cdev
.desc
.bLength
= USB_DT_DEVICE_SIZE
;
1554 gi
->cdev
.desc
.bDescriptorType
= USB_DT_DEVICE
;
1555 gi
->cdev
.desc
.bcdDevice
= cpu_to_le16(get_default_bcdDevice());
1557 gi
->composite
.gadget_driver
= configfs_driver_template
;
1559 gi
->composite
.gadget_driver
.function
= kstrdup(name
, GFP_KERNEL
);
1560 gi
->composite
.name
= gi
->composite
.gadget_driver
.function
;
1562 if (!gi
->composite
.gadget_driver
.function
)
1568 return ERR_PTR(-ENOMEM
);
1571 static void gadgets_drop(struct config_group
*group
, struct config_item
*item
)
1573 config_item_put(item
);
1576 static struct configfs_group_operations gadgets_ops
= {
1577 .make_group
= &gadgets_make
,
1578 .drop_item
= &gadgets_drop
,
1581 static const struct config_item_type gadgets_type
= {
1582 .ct_group_ops
= &gadgets_ops
,
1583 .ct_owner
= THIS_MODULE
,
1586 static struct configfs_subsystem gadget_subsys
= {
1589 .ci_namebuf
= "usb_gadget",
1590 .ci_type
= &gadgets_type
,
1593 .su_mutex
= __MUTEX_INITIALIZER(gadget_subsys
.su_mutex
),
1596 void unregister_gadget_item(struct config_item
*item
)
1598 struct gadget_info
*gi
= to_gadget_info(item
);
1600 mutex_lock(&gi
->lock
);
1601 unregister_gadget(gi
);
1602 mutex_unlock(&gi
->lock
);
1604 EXPORT_SYMBOL_GPL(unregister_gadget_item
);
1606 static int __init
gadget_cfs_init(void)
1610 config_group_init(&gadget_subsys
.su_group
);
1612 ret
= configfs_register_subsystem(&gadget_subsys
);
1615 module_init(gadget_cfs_init
);
1617 static void __exit
gadget_cfs_exit(void)
1619 configfs_unregister_subsystem(&gadget_subsys
);
1621 module_exit(gadget_cfs_exit
);