1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/usb/core/sysfs.c
5 * (C) Copyright 2002 David Brownell
6 * (C) Copyright 2002,2004 Greg Kroah-Hartman
7 * (C) Copyright 2002,2004 IBM Corp.
9 * All of the sysfs file attributes for usb devices and interfaces.
11 * Released under the GPLv2 only.
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/usb.h>
18 #include <linux/usb/quirks.h>
22 /* Active configuration fields */
23 #define usb_actconfig_show(field, format_string) \
24 static ssize_t field##_show(struct device *dev, \
25 struct device_attribute *attr, char *buf) \
27 struct usb_device *udev; \
28 struct usb_host_config *actconfig; \
31 udev = to_usb_device(dev); \
32 rc = usb_lock_device_interruptible(udev); \
35 actconfig = udev->actconfig; \
37 rc = sprintf(buf, format_string, \
38 actconfig->desc.field); \
39 usb_unlock_device(udev); \
43 #define usb_actconfig_attr(field, format_string) \
44 usb_actconfig_show(field, format_string) \
45 static DEVICE_ATTR_RO(field)
47 usb_actconfig_attr(bNumInterfaces
, "%2d\n");
48 usb_actconfig_attr(bmAttributes
, "%2x\n");
50 static ssize_t
bMaxPower_show(struct device
*dev
,
51 struct device_attribute
*attr
, char *buf
)
53 struct usb_device
*udev
;
54 struct usb_host_config
*actconfig
;
57 udev
= to_usb_device(dev
);
58 rc
= usb_lock_device_interruptible(udev
);
61 actconfig
= udev
->actconfig
;
63 rc
= sprintf(buf
, "%dmA\n", usb_get_max_power(udev
, actconfig
));
64 usb_unlock_device(udev
);
67 static DEVICE_ATTR_RO(bMaxPower
);
69 static ssize_t
configuration_show(struct device
*dev
,
70 struct device_attribute
*attr
, char *buf
)
72 struct usb_device
*udev
;
73 struct usb_host_config
*actconfig
;
76 udev
= to_usb_device(dev
);
77 rc
= usb_lock_device_interruptible(udev
);
80 actconfig
= udev
->actconfig
;
81 if (actconfig
&& actconfig
->string
)
82 rc
= sprintf(buf
, "%s\n", actconfig
->string
);
83 usb_unlock_device(udev
);
86 static DEVICE_ATTR_RO(configuration
);
88 /* configuration value is always present, and r/w */
89 usb_actconfig_show(bConfigurationValue
, "%u\n");
91 static ssize_t
bConfigurationValue_store(struct device
*dev
,
92 struct device_attribute
*attr
,
93 const char *buf
, size_t count
)
95 struct usb_device
*udev
= to_usb_device(dev
);
96 int config
, value
, rc
;
98 if (sscanf(buf
, "%d", &config
) != 1 || config
< -1 || config
> 255)
100 rc
= usb_lock_device_interruptible(udev
);
103 value
= usb_set_configuration(udev
, config
);
104 usb_unlock_device(udev
);
105 return (value
< 0) ? value
: count
;
107 static DEVICE_ATTR_IGNORE_LOCKDEP(bConfigurationValue
, S_IRUGO
| S_IWUSR
,
108 bConfigurationValue_show
, bConfigurationValue_store
);
111 static ssize_t
devspec_show(struct device
*dev
, struct device_attribute
*attr
,
114 struct device_node
*of_node
= dev
->of_node
;
116 return sprintf(buf
, "%pOF\n", of_node
);
118 static DEVICE_ATTR_RO(devspec
);
122 #define usb_string_attr(name) \
123 static ssize_t name##_show(struct device *dev, \
124 struct device_attribute *attr, char *buf) \
126 struct usb_device *udev; \
129 udev = to_usb_device(dev); \
130 retval = usb_lock_device_interruptible(udev); \
133 retval = sprintf(buf, "%s\n", udev->name); \
134 usb_unlock_device(udev); \
137 static DEVICE_ATTR_RO(name)
139 usb_string_attr(product
);
140 usb_string_attr(manufacturer
);
141 usb_string_attr(serial
);
143 static ssize_t
speed_show(struct device
*dev
, struct device_attribute
*attr
,
146 struct usb_device
*udev
;
149 udev
= to_usb_device(dev
);
151 switch (udev
->speed
) {
155 case USB_SPEED_UNKNOWN
:
162 case USB_SPEED_WIRELESS
:
165 case USB_SPEED_SUPER
:
168 case USB_SPEED_SUPER_PLUS
:
174 return sprintf(buf
, "%s\n", speed
);
176 static DEVICE_ATTR_RO(speed
);
178 static ssize_t
busnum_show(struct device
*dev
, struct device_attribute
*attr
,
181 struct usb_device
*udev
;
183 udev
= to_usb_device(dev
);
184 return sprintf(buf
, "%d\n", udev
->bus
->busnum
);
186 static DEVICE_ATTR_RO(busnum
);
188 static ssize_t
devnum_show(struct device
*dev
, struct device_attribute
*attr
,
191 struct usb_device
*udev
;
193 udev
= to_usb_device(dev
);
194 return sprintf(buf
, "%d\n", udev
->devnum
);
196 static DEVICE_ATTR_RO(devnum
);
198 static ssize_t
devpath_show(struct device
*dev
, struct device_attribute
*attr
,
201 struct usb_device
*udev
;
203 udev
= to_usb_device(dev
);
204 return sprintf(buf
, "%s\n", udev
->devpath
);
206 static DEVICE_ATTR_RO(devpath
);
208 static ssize_t
version_show(struct device
*dev
, struct device_attribute
*attr
,
211 struct usb_device
*udev
;
214 udev
= to_usb_device(dev
);
215 bcdUSB
= le16_to_cpu(udev
->descriptor
.bcdUSB
);
216 return sprintf(buf
, "%2x.%02x\n", bcdUSB
>> 8, bcdUSB
& 0xff);
218 static DEVICE_ATTR_RO(version
);
220 static ssize_t
maxchild_show(struct device
*dev
, struct device_attribute
*attr
,
223 struct usb_device
*udev
;
225 udev
= to_usb_device(dev
);
226 return sprintf(buf
, "%d\n", udev
->maxchild
);
228 static DEVICE_ATTR_RO(maxchild
);
230 static ssize_t
quirks_show(struct device
*dev
, struct device_attribute
*attr
,
233 struct usb_device
*udev
;
235 udev
= to_usb_device(dev
);
236 return sprintf(buf
, "0x%x\n", udev
->quirks
);
238 static DEVICE_ATTR_RO(quirks
);
240 static ssize_t
avoid_reset_quirk_show(struct device
*dev
,
241 struct device_attribute
*attr
, char *buf
)
243 struct usb_device
*udev
;
245 udev
= to_usb_device(dev
);
246 return sprintf(buf
, "%d\n", !!(udev
->quirks
& USB_QUIRK_RESET
));
249 static ssize_t
avoid_reset_quirk_store(struct device
*dev
,
250 struct device_attribute
*attr
,
251 const char *buf
, size_t count
)
253 struct usb_device
*udev
= to_usb_device(dev
);
256 if (sscanf(buf
, "%d", &val
) != 1 || val
< 0 || val
> 1)
258 rc
= usb_lock_device_interruptible(udev
);
262 udev
->quirks
|= USB_QUIRK_RESET
;
264 udev
->quirks
&= ~USB_QUIRK_RESET
;
265 usb_unlock_device(udev
);
268 static DEVICE_ATTR_RW(avoid_reset_quirk
);
270 static ssize_t
urbnum_show(struct device
*dev
, struct device_attribute
*attr
,
273 struct usb_device
*udev
;
275 udev
= to_usb_device(dev
);
276 return sprintf(buf
, "%d\n", atomic_read(&udev
->urbnum
));
278 static DEVICE_ATTR_RO(urbnum
);
280 static ssize_t
removable_show(struct device
*dev
, struct device_attribute
*attr
,
283 struct usb_device
*udev
;
286 udev
= to_usb_device(dev
);
288 switch (udev
->removable
) {
289 case USB_DEVICE_REMOVABLE
:
292 case USB_DEVICE_FIXED
:
299 return sprintf(buf
, "%s\n", state
);
301 static DEVICE_ATTR_RO(removable
);
303 static ssize_t
ltm_capable_show(struct device
*dev
,
304 struct device_attribute
*attr
, char *buf
)
306 if (usb_device_supports_ltm(to_usb_device(dev
)))
307 return sprintf(buf
, "%s\n", "yes");
308 return sprintf(buf
, "%s\n", "no");
310 static DEVICE_ATTR_RO(ltm_capable
);
314 static ssize_t
persist_show(struct device
*dev
, struct device_attribute
*attr
,
317 struct usb_device
*udev
= to_usb_device(dev
);
319 return sprintf(buf
, "%d\n", udev
->persist_enabled
);
322 static ssize_t
persist_store(struct device
*dev
, struct device_attribute
*attr
,
323 const char *buf
, size_t count
)
325 struct usb_device
*udev
= to_usb_device(dev
);
328 /* Hubs are always enabled for USB_PERSIST */
329 if (udev
->descriptor
.bDeviceClass
== USB_CLASS_HUB
)
332 if (sscanf(buf
, "%d", &value
) != 1)
335 rc
= usb_lock_device_interruptible(udev
);
338 udev
->persist_enabled
= !!value
;
339 usb_unlock_device(udev
);
342 static DEVICE_ATTR_RW(persist
);
344 static int add_persist_attributes(struct device
*dev
)
348 if (is_usb_device(dev
)) {
349 struct usb_device
*udev
= to_usb_device(dev
);
351 /* Hubs are automatically enabled for USB_PERSIST,
352 * no point in creating the attribute file.
354 if (udev
->descriptor
.bDeviceClass
!= USB_CLASS_HUB
)
355 rc
= sysfs_add_file_to_group(&dev
->kobj
,
356 &dev_attr_persist
.attr
,
362 static void remove_persist_attributes(struct device
*dev
)
364 sysfs_remove_file_from_group(&dev
->kobj
,
365 &dev_attr_persist
.attr
,
369 static ssize_t
connected_duration_show(struct device
*dev
,
370 struct device_attribute
*attr
, char *buf
)
372 struct usb_device
*udev
= to_usb_device(dev
);
374 return sprintf(buf
, "%u\n",
375 jiffies_to_msecs(jiffies
- udev
->connect_time
));
377 static DEVICE_ATTR_RO(connected_duration
);
380 * If the device is resumed, the last time the device was suspended has
381 * been pre-subtracted from active_duration. We add the current time to
382 * get the duration that the device was actually active.
384 * If the device is suspended, the active_duration is up-to-date.
386 static ssize_t
active_duration_show(struct device
*dev
,
387 struct device_attribute
*attr
, char *buf
)
389 struct usb_device
*udev
= to_usb_device(dev
);
392 if (udev
->state
!= USB_STATE_SUSPENDED
)
393 duration
= jiffies_to_msecs(jiffies
+ udev
->active_duration
);
395 duration
= jiffies_to_msecs(udev
->active_duration
);
396 return sprintf(buf
, "%u\n", duration
);
398 static DEVICE_ATTR_RO(active_duration
);
400 static ssize_t
autosuspend_show(struct device
*dev
,
401 struct device_attribute
*attr
, char *buf
)
403 return sprintf(buf
, "%d\n", dev
->power
.autosuspend_delay
/ 1000);
406 static ssize_t
autosuspend_store(struct device
*dev
,
407 struct device_attribute
*attr
, const char *buf
,
412 if (sscanf(buf
, "%d", &value
) != 1 || value
>= INT_MAX
/1000 ||
413 value
<= -INT_MAX
/1000)
416 pm_runtime_set_autosuspend_delay(dev
, value
* 1000);
419 static DEVICE_ATTR_RW(autosuspend
);
421 static const char on_string
[] = "on";
422 static const char auto_string
[] = "auto";
424 static void warn_level(void)
426 static int level_warned
;
430 printk(KERN_WARNING
"WARNING! power/level is deprecated; "
431 "use power/control instead\n");
435 static ssize_t
level_show(struct device
*dev
, struct device_attribute
*attr
,
438 struct usb_device
*udev
= to_usb_device(dev
);
439 const char *p
= auto_string
;
442 if (udev
->state
!= USB_STATE_SUSPENDED
&& !udev
->dev
.power
.runtime_auto
)
444 return sprintf(buf
, "%s\n", p
);
447 static ssize_t
level_store(struct device
*dev
, struct device_attribute
*attr
,
448 const char *buf
, size_t count
)
450 struct usb_device
*udev
= to_usb_device(dev
);
457 cp
= memchr(buf
, '\n', count
);
461 rv
= usb_lock_device_interruptible(udev
);
465 if (len
== sizeof on_string
- 1 &&
466 strncmp(buf
, on_string
, len
) == 0)
467 usb_disable_autosuspend(udev
);
469 else if (len
== sizeof auto_string
- 1 &&
470 strncmp(buf
, auto_string
, len
) == 0)
471 usb_enable_autosuspend(udev
);
476 usb_unlock_device(udev
);
479 static DEVICE_ATTR_RW(level
);
481 static ssize_t
usb2_hardware_lpm_show(struct device
*dev
,
482 struct device_attribute
*attr
, char *buf
)
484 struct usb_device
*udev
= to_usb_device(dev
);
487 if (udev
->usb2_hw_lpm_allowed
== 1)
492 return sprintf(buf
, "%s\n", p
);
495 static ssize_t
usb2_hardware_lpm_store(struct device
*dev
,
496 struct device_attribute
*attr
,
497 const char *buf
, size_t count
)
499 struct usb_device
*udev
= to_usb_device(dev
);
503 ret
= usb_lock_device_interruptible(udev
);
507 ret
= strtobool(buf
, &value
);
510 udev
->usb2_hw_lpm_allowed
= value
;
511 ret
= usb_set_usb2_hardware_lpm(udev
, value
);
514 usb_unlock_device(udev
);
521 static DEVICE_ATTR_RW(usb2_hardware_lpm
);
523 static ssize_t
usb2_lpm_l1_timeout_show(struct device
*dev
,
524 struct device_attribute
*attr
,
527 struct usb_device
*udev
= to_usb_device(dev
);
528 return sprintf(buf
, "%d\n", udev
->l1_params
.timeout
);
531 static ssize_t
usb2_lpm_l1_timeout_store(struct device
*dev
,
532 struct device_attribute
*attr
,
533 const char *buf
, size_t count
)
535 struct usb_device
*udev
= to_usb_device(dev
);
538 if (kstrtou16(buf
, 0, &timeout
))
541 udev
->l1_params
.timeout
= timeout
;
545 static DEVICE_ATTR_RW(usb2_lpm_l1_timeout
);
547 static ssize_t
usb2_lpm_besl_show(struct device
*dev
,
548 struct device_attribute
*attr
, char *buf
)
550 struct usb_device
*udev
= to_usb_device(dev
);
551 return sprintf(buf
, "%d\n", udev
->l1_params
.besl
);
554 static ssize_t
usb2_lpm_besl_store(struct device
*dev
,
555 struct device_attribute
*attr
,
556 const char *buf
, size_t count
)
558 struct usb_device
*udev
= to_usb_device(dev
);
561 if (kstrtou8(buf
, 0, &besl
) || besl
> 15)
564 udev
->l1_params
.besl
= besl
;
568 static DEVICE_ATTR_RW(usb2_lpm_besl
);
570 static ssize_t
usb3_hardware_lpm_u1_show(struct device
*dev
,
571 struct device_attribute
*attr
, char *buf
)
573 struct usb_device
*udev
= to_usb_device(dev
);
577 rc
= usb_lock_device_interruptible(udev
);
581 if (udev
->usb3_lpm_u1_enabled
)
586 usb_unlock_device(udev
);
588 return sprintf(buf
, "%s\n", p
);
590 static DEVICE_ATTR_RO(usb3_hardware_lpm_u1
);
592 static ssize_t
usb3_hardware_lpm_u2_show(struct device
*dev
,
593 struct device_attribute
*attr
, char *buf
)
595 struct usb_device
*udev
= to_usb_device(dev
);
599 rc
= usb_lock_device_interruptible(udev
);
603 if (udev
->usb3_lpm_u2_enabled
)
608 usb_unlock_device(udev
);
610 return sprintf(buf
, "%s\n", p
);
612 static DEVICE_ATTR_RO(usb3_hardware_lpm_u2
);
614 static struct attribute
*usb2_hardware_lpm_attr
[] = {
615 &dev_attr_usb2_hardware_lpm
.attr
,
616 &dev_attr_usb2_lpm_l1_timeout
.attr
,
617 &dev_attr_usb2_lpm_besl
.attr
,
620 static struct attribute_group usb2_hardware_lpm_attr_group
= {
621 .name
= power_group_name
,
622 .attrs
= usb2_hardware_lpm_attr
,
625 static struct attribute
*usb3_hardware_lpm_attr
[] = {
626 &dev_attr_usb3_hardware_lpm_u1
.attr
,
627 &dev_attr_usb3_hardware_lpm_u2
.attr
,
630 static struct attribute_group usb3_hardware_lpm_attr_group
= {
631 .name
= power_group_name
,
632 .attrs
= usb3_hardware_lpm_attr
,
635 static struct attribute
*power_attrs
[] = {
636 &dev_attr_autosuspend
.attr
,
637 &dev_attr_level
.attr
,
638 &dev_attr_connected_duration
.attr
,
639 &dev_attr_active_duration
.attr
,
642 static struct attribute_group power_attr_group
= {
643 .name
= power_group_name
,
644 .attrs
= power_attrs
,
647 static int add_power_attributes(struct device
*dev
)
651 if (is_usb_device(dev
)) {
652 struct usb_device
*udev
= to_usb_device(dev
);
653 rc
= sysfs_merge_group(&dev
->kobj
, &power_attr_group
);
654 if (udev
->usb2_hw_lpm_capable
== 1)
655 rc
= sysfs_merge_group(&dev
->kobj
,
656 &usb2_hardware_lpm_attr_group
);
657 if ((udev
->speed
== USB_SPEED_SUPER
||
658 udev
->speed
== USB_SPEED_SUPER_PLUS
) &&
659 udev
->lpm_capable
== 1)
660 rc
= sysfs_merge_group(&dev
->kobj
,
661 &usb3_hardware_lpm_attr_group
);
667 static void remove_power_attributes(struct device
*dev
)
669 sysfs_unmerge_group(&dev
->kobj
, &usb2_hardware_lpm_attr_group
);
670 sysfs_unmerge_group(&dev
->kobj
, &power_attr_group
);
675 #define add_persist_attributes(dev) 0
676 #define remove_persist_attributes(dev) do {} while (0)
678 #define add_power_attributes(dev) 0
679 #define remove_power_attributes(dev) do {} while (0)
681 #endif /* CONFIG_PM */
684 /* Descriptor fields */
685 #define usb_descriptor_attr_le16(field, format_string) \
687 field##_show(struct device *dev, struct device_attribute *attr, \
690 struct usb_device *udev; \
692 udev = to_usb_device(dev); \
693 return sprintf(buf, format_string, \
694 le16_to_cpu(udev->descriptor.field)); \
696 static DEVICE_ATTR_RO(field)
698 usb_descriptor_attr_le16(idVendor
, "%04x\n");
699 usb_descriptor_attr_le16(idProduct
, "%04x\n");
700 usb_descriptor_attr_le16(bcdDevice
, "%04x\n");
702 #define usb_descriptor_attr(field, format_string) \
704 field##_show(struct device *dev, struct device_attribute *attr, \
707 struct usb_device *udev; \
709 udev = to_usb_device(dev); \
710 return sprintf(buf, format_string, udev->descriptor.field); \
712 static DEVICE_ATTR_RO(field)
714 usb_descriptor_attr(bDeviceClass
, "%02x\n");
715 usb_descriptor_attr(bDeviceSubClass
, "%02x\n");
716 usb_descriptor_attr(bDeviceProtocol
, "%02x\n");
717 usb_descriptor_attr(bNumConfigurations
, "%d\n");
718 usb_descriptor_attr(bMaxPacketSize0
, "%d\n");
721 /* show if the device is authorized (1) or not (0) */
722 static ssize_t
authorized_show(struct device
*dev
,
723 struct device_attribute
*attr
, char *buf
)
725 struct usb_device
*usb_dev
= to_usb_device(dev
);
726 return snprintf(buf
, PAGE_SIZE
, "%u\n", usb_dev
->authorized
);
730 * Authorize a device to be used in the system
732 * Writing a 0 deauthorizes the device, writing a 1 authorizes it.
734 static ssize_t
authorized_store(struct device
*dev
,
735 struct device_attribute
*attr
, const char *buf
,
739 struct usb_device
*usb_dev
= to_usb_device(dev
);
741 result
= sscanf(buf
, "%u\n", &val
);
745 result
= usb_deauthorize_device(usb_dev
);
747 result
= usb_authorize_device(usb_dev
);
748 return result
< 0 ? result
: size
;
750 static DEVICE_ATTR_IGNORE_LOCKDEP(authorized
, S_IRUGO
| S_IWUSR
,
751 authorized_show
, authorized_store
);
753 /* "Safely remove a device" */
754 static ssize_t
remove_store(struct device
*dev
, struct device_attribute
*attr
,
755 const char *buf
, size_t count
)
757 struct usb_device
*udev
= to_usb_device(dev
);
760 usb_lock_device(udev
);
761 if (udev
->state
!= USB_STATE_NOTATTACHED
) {
763 /* To avoid races, first unconfigure and then remove */
764 usb_set_configuration(udev
, -1);
765 rc
= usb_remove_device(udev
);
769 usb_unlock_device(udev
);
772 static DEVICE_ATTR_IGNORE_LOCKDEP(remove
, S_IWUSR
, NULL
, remove_store
);
775 static struct attribute
*dev_attrs
[] = {
776 /* current configuration's attributes */
777 &dev_attr_configuration
.attr
,
778 &dev_attr_bNumInterfaces
.attr
,
779 &dev_attr_bConfigurationValue
.attr
,
780 &dev_attr_bmAttributes
.attr
,
781 &dev_attr_bMaxPower
.attr
,
782 /* device attributes */
783 &dev_attr_urbnum
.attr
,
784 &dev_attr_idVendor
.attr
,
785 &dev_attr_idProduct
.attr
,
786 &dev_attr_bcdDevice
.attr
,
787 &dev_attr_bDeviceClass
.attr
,
788 &dev_attr_bDeviceSubClass
.attr
,
789 &dev_attr_bDeviceProtocol
.attr
,
790 &dev_attr_bNumConfigurations
.attr
,
791 &dev_attr_bMaxPacketSize0
.attr
,
792 &dev_attr_speed
.attr
,
793 &dev_attr_busnum
.attr
,
794 &dev_attr_devnum
.attr
,
795 &dev_attr_devpath
.attr
,
796 &dev_attr_version
.attr
,
797 &dev_attr_maxchild
.attr
,
798 &dev_attr_quirks
.attr
,
799 &dev_attr_avoid_reset_quirk
.attr
,
800 &dev_attr_authorized
.attr
,
801 &dev_attr_remove
.attr
,
802 &dev_attr_removable
.attr
,
803 &dev_attr_ltm_capable
.attr
,
805 &dev_attr_devspec
.attr
,
809 static struct attribute_group dev_attr_grp
= {
813 /* When modifying this list, be sure to modify dev_string_attrs_are_visible()
816 static struct attribute
*dev_string_attrs
[] = {
817 &dev_attr_manufacturer
.attr
,
818 &dev_attr_product
.attr
,
819 &dev_attr_serial
.attr
,
823 static umode_t
dev_string_attrs_are_visible(struct kobject
*kobj
,
824 struct attribute
*a
, int n
)
826 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
827 struct usb_device
*udev
= to_usb_device(dev
);
829 if (a
== &dev_attr_manufacturer
.attr
) {
830 if (udev
->manufacturer
== NULL
)
832 } else if (a
== &dev_attr_product
.attr
) {
833 if (udev
->product
== NULL
)
835 } else if (a
== &dev_attr_serial
.attr
) {
836 if (udev
->serial
== NULL
)
842 static struct attribute_group dev_string_attr_grp
= {
843 .attrs
= dev_string_attrs
,
844 .is_visible
= dev_string_attrs_are_visible
,
847 const struct attribute_group
*usb_device_groups
[] = {
849 &dev_string_attr_grp
,
853 /* Binary descriptors */
856 read_descriptors(struct file
*filp
, struct kobject
*kobj
,
857 struct bin_attribute
*attr
,
858 char *buf
, loff_t off
, size_t count
)
860 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
861 struct usb_device
*udev
= to_usb_device(dev
);
862 size_t nleft
= count
;
867 /* The binary attribute begins with the device descriptor.
868 * Following that are the raw descriptor entries for all the
869 * configurations (config plus subsidiary descriptors).
871 for (cfgno
= -1; cfgno
< udev
->descriptor
.bNumConfigurations
&&
872 nleft
> 0; ++cfgno
) {
874 src
= &udev
->descriptor
;
875 srclen
= sizeof(struct usb_device_descriptor
);
877 src
= udev
->rawdescriptors
[cfgno
];
878 srclen
= __le16_to_cpu(udev
->config
[cfgno
].desc
.
882 n
= min(nleft
, srclen
- (size_t) off
);
883 memcpy(buf
, src
+ off
, n
);
891 return count
- nleft
;
894 static struct bin_attribute dev_bin_attr_descriptors
= {
895 .attr
= {.name
= "descriptors", .mode
= 0444},
896 .read
= read_descriptors
,
897 .size
= 18 + 65535, /* dev descr + max-size raw descriptor */
900 int usb_create_sysfs_dev_files(struct usb_device
*udev
)
902 struct device
*dev
= &udev
->dev
;
905 retval
= device_create_bin_file(dev
, &dev_bin_attr_descriptors
);
909 retval
= add_persist_attributes(dev
);
913 retval
= add_power_attributes(dev
);
918 usb_remove_sysfs_dev_files(udev
);
922 void usb_remove_sysfs_dev_files(struct usb_device
*udev
)
924 struct device
*dev
= &udev
->dev
;
926 remove_power_attributes(dev
);
927 remove_persist_attributes(dev
);
928 device_remove_bin_file(dev
, &dev_bin_attr_descriptors
);
931 /* Interface Association Descriptor fields */
932 #define usb_intf_assoc_attr(field, format_string) \
934 iad_##field##_show(struct device *dev, struct device_attribute *attr, \
937 struct usb_interface *intf = to_usb_interface(dev); \
939 return sprintf(buf, format_string, \
940 intf->intf_assoc->field); \
942 static DEVICE_ATTR_RO(iad_##field)
944 usb_intf_assoc_attr(bFirstInterface
, "%02x\n");
945 usb_intf_assoc_attr(bInterfaceCount
, "%02d\n");
946 usb_intf_assoc_attr(bFunctionClass
, "%02x\n");
947 usb_intf_assoc_attr(bFunctionSubClass
, "%02x\n");
948 usb_intf_assoc_attr(bFunctionProtocol
, "%02x\n");
950 /* Interface fields */
951 #define usb_intf_attr(field, format_string) \
953 field##_show(struct device *dev, struct device_attribute *attr, \
956 struct usb_interface *intf = to_usb_interface(dev); \
958 return sprintf(buf, format_string, \
959 intf->cur_altsetting->desc.field); \
961 static DEVICE_ATTR_RO(field)
963 usb_intf_attr(bInterfaceNumber
, "%02x\n");
964 usb_intf_attr(bAlternateSetting
, "%2d\n");
965 usb_intf_attr(bNumEndpoints
, "%02x\n");
966 usb_intf_attr(bInterfaceClass
, "%02x\n");
967 usb_intf_attr(bInterfaceSubClass
, "%02x\n");
968 usb_intf_attr(bInterfaceProtocol
, "%02x\n");
970 static ssize_t
interface_show(struct device
*dev
, struct device_attribute
*attr
,
973 struct usb_interface
*intf
;
976 intf
= to_usb_interface(dev
);
977 string
= READ_ONCE(intf
->cur_altsetting
->string
);
980 return sprintf(buf
, "%s\n", string
);
982 static DEVICE_ATTR_RO(interface
);
984 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*attr
,
987 struct usb_interface
*intf
;
988 struct usb_device
*udev
;
989 struct usb_host_interface
*alt
;
991 intf
= to_usb_interface(dev
);
992 udev
= interface_to_usbdev(intf
);
993 alt
= READ_ONCE(intf
->cur_altsetting
);
995 return sprintf(buf
, "usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02X"
996 "ic%02Xisc%02Xip%02Xin%02X\n",
997 le16_to_cpu(udev
->descriptor
.idVendor
),
998 le16_to_cpu(udev
->descriptor
.idProduct
),
999 le16_to_cpu(udev
->descriptor
.bcdDevice
),
1000 udev
->descriptor
.bDeviceClass
,
1001 udev
->descriptor
.bDeviceSubClass
,
1002 udev
->descriptor
.bDeviceProtocol
,
1003 alt
->desc
.bInterfaceClass
,
1004 alt
->desc
.bInterfaceSubClass
,
1005 alt
->desc
.bInterfaceProtocol
,
1006 alt
->desc
.bInterfaceNumber
);
1008 static DEVICE_ATTR_RO(modalias
);
1010 static ssize_t
supports_autosuspend_show(struct device
*dev
,
1011 struct device_attribute
*attr
,
1016 s
= device_lock_interruptible(dev
);
1019 /* Devices will be autosuspended even when an interface isn't claimed */
1020 s
= (!dev
->driver
|| to_usb_driver(dev
->driver
)->supports_autosuspend
);
1023 return sprintf(buf
, "%u\n", s
);
1025 static DEVICE_ATTR_RO(supports_autosuspend
);
1028 * interface_authorized_show - show authorization status of an USB interface
1029 * 1 is authorized, 0 is deauthorized
1031 static ssize_t
interface_authorized_show(struct device
*dev
,
1032 struct device_attribute
*attr
, char *buf
)
1034 struct usb_interface
*intf
= to_usb_interface(dev
);
1036 return sprintf(buf
, "%u\n", intf
->authorized
);
1040 * interface_authorized_store - authorize or deauthorize an USB interface
1042 static ssize_t
interface_authorized_store(struct device
*dev
,
1043 struct device_attribute
*attr
, const char *buf
, size_t count
)
1045 struct usb_interface
*intf
= to_usb_interface(dev
);
1048 if (strtobool(buf
, &val
) != 0)
1052 usb_authorize_interface(intf
);
1054 usb_deauthorize_interface(intf
);
1058 static struct device_attribute dev_attr_interface_authorized
=
1059 __ATTR(authorized
, S_IRUGO
| S_IWUSR
,
1060 interface_authorized_show
, interface_authorized_store
);
1062 static struct attribute
*intf_attrs
[] = {
1063 &dev_attr_bInterfaceNumber
.attr
,
1064 &dev_attr_bAlternateSetting
.attr
,
1065 &dev_attr_bNumEndpoints
.attr
,
1066 &dev_attr_bInterfaceClass
.attr
,
1067 &dev_attr_bInterfaceSubClass
.attr
,
1068 &dev_attr_bInterfaceProtocol
.attr
,
1069 &dev_attr_modalias
.attr
,
1070 &dev_attr_supports_autosuspend
.attr
,
1071 &dev_attr_interface_authorized
.attr
,
1074 static struct attribute_group intf_attr_grp
= {
1075 .attrs
= intf_attrs
,
1078 static struct attribute
*intf_assoc_attrs
[] = {
1079 &dev_attr_iad_bFirstInterface
.attr
,
1080 &dev_attr_iad_bInterfaceCount
.attr
,
1081 &dev_attr_iad_bFunctionClass
.attr
,
1082 &dev_attr_iad_bFunctionSubClass
.attr
,
1083 &dev_attr_iad_bFunctionProtocol
.attr
,
1087 static umode_t
intf_assoc_attrs_are_visible(struct kobject
*kobj
,
1088 struct attribute
*a
, int n
)
1090 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1091 struct usb_interface
*intf
= to_usb_interface(dev
);
1093 if (intf
->intf_assoc
== NULL
)
1098 static struct attribute_group intf_assoc_attr_grp
= {
1099 .attrs
= intf_assoc_attrs
,
1100 .is_visible
= intf_assoc_attrs_are_visible
,
1103 const struct attribute_group
*usb_interface_groups
[] = {
1105 &intf_assoc_attr_grp
,
1109 void usb_create_sysfs_intf_files(struct usb_interface
*intf
)
1111 struct usb_device
*udev
= interface_to_usbdev(intf
);
1112 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1114 if (intf
->sysfs_files_created
|| intf
->unregistering
)
1117 if (!alt
->string
&& !(udev
->quirks
& USB_QUIRK_CONFIG_INTF_STRINGS
))
1118 alt
->string
= usb_cache_string(udev
, alt
->desc
.iInterface
);
1119 if (alt
->string
&& device_create_file(&intf
->dev
, &dev_attr_interface
))
1120 ; /* We don't actually care if the function fails. */
1121 intf
->sysfs_files_created
= 1;
1124 void usb_remove_sysfs_intf_files(struct usb_interface
*intf
)
1126 if (!intf
->sysfs_files_created
)
1129 device_remove_file(&intf
->dev
, &dev_attr_interface
);
1130 intf
->sysfs_files_created
= 0;