Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/usb/core/sysfs.c |
| 3 | * |
| 4 | * (C) Copyright 2002 David Brownell |
| 5 | * (C) Copyright 2002,2004 Greg Kroah-Hartman |
| 6 | * (C) Copyright 2002,2004 IBM Corp. |
| 7 | * |
| 8 | * All of the sysfs file attributes for usb devices and interfaces. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 14 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/usb.h> |
Alan Stern | 1662e3a | 2009-03-18 14:28:53 -0400 | [diff] [blame] | 16 | #include <linux/usb/quirks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "usb.h" |
| 18 | |
| 19 | /* Active configuration fields */ |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 20 | #define usb_actconfig_show(field, format_string) \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 21 | static ssize_t field##_show(struct device *dev, \ |
| 22 | struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | { \ |
| 24 | struct usb_device *udev; \ |
| 25 | struct usb_host_config *actconfig; \ |
| 26 | \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 27 | udev = to_usb_device(dev); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | actconfig = udev->actconfig; \ |
| 29 | if (actconfig) \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 30 | return sprintf(buf, format_string, \ |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 31 | actconfig->desc.field); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | else \ |
| 33 | return 0; \ |
| 34 | } \ |
| 35 | |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 36 | #define usb_actconfig_attr(field, format_string) \ |
| 37 | usb_actconfig_show(field, format_string) \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 38 | static DEVICE_ATTR_RO(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 40 | usb_actconfig_attr(bNumInterfaces, "%2d\n"); |
| 41 | usb_actconfig_attr(bmAttributes, "%2x\n"); |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 42 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 43 | static ssize_t bMaxPower_show(struct device *dev, |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 44 | struct device_attribute *attr, char *buf) |
| 45 | { |
| 46 | struct usb_device *udev; |
| 47 | struct usb_host_config *actconfig; |
| 48 | |
| 49 | udev = to_usb_device(dev); |
| 50 | actconfig = udev->actconfig; |
| 51 | if (!actconfig) |
| 52 | return 0; |
| 53 | return sprintf(buf, "%dmA\n", usb_get_max_power(udev, actconfig)); |
| 54 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 55 | static DEVICE_ATTR_RO(bMaxPower); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 57 | static ssize_t configuration_show(struct device *dev, |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 58 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
| 60 | struct usb_device *udev; |
| 61 | struct usb_host_config *actconfig; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 63 | udev = to_usb_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | actconfig = udev->actconfig; |
| 65 | if ((!actconfig) || (!actconfig->string)) |
| 66 | return 0; |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 67 | return sprintf(buf, "%s\n", actconfig->string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 69 | static DEVICE_ATTR_RO(configuration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | /* configuration value is always present, and r/w */ |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 72 | usb_actconfig_show(bConfigurationValue, "%u\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 74 | static ssize_t bConfigurationValue_store(struct device *dev, |
| 75 | struct device_attribute *attr, |
| 76 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 78 | struct usb_device *udev = to_usb_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | int config, value; |
| 80 | |
Alan Stern | 3f141e2 | 2007-02-08 16:40:43 -0500 | [diff] [blame] | 81 | if (sscanf(buf, "%d", &config) != 1 || config < -1 || config > 255) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return -EINVAL; |
| 83 | usb_lock_device(udev); |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 84 | value = usb_set_configuration(udev, config); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | usb_unlock_device(udev); |
| 86 | return (value < 0) ? value : count; |
| 87 | } |
Alan Stern | 356c05d | 2012-05-14 13:30:03 -0400 | [diff] [blame] | 88 | static DEVICE_ATTR_IGNORE_LOCKDEP(bConfigurationValue, S_IRUGO | S_IWUSR, |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 89 | bConfigurationValue_show, bConfigurationValue_store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | /* String fields */ |
| 92 | #define usb_string_attr(name) \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 93 | static ssize_t name##_show(struct device *dev, \ |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 94 | struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { \ |
| 96 | struct usb_device *udev; \ |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 97 | int retval; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 99 | udev = to_usb_device(dev); \ |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 100 | usb_lock_device(udev); \ |
| 101 | retval = sprintf(buf, "%s\n", udev->name); \ |
| 102 | usb_unlock_device(udev); \ |
| 103 | return retval; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 105 | static DEVICE_ATTR_RO(name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | usb_string_attr(product); |
| 108 | usb_string_attr(manufacturer); |
| 109 | usb_string_attr(serial); |
| 110 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 111 | static ssize_t speed_show(struct device *dev, struct device_attribute *attr, |
| 112 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | struct usb_device *udev; |
| 115 | char *speed; |
| 116 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 117 | udev = to_usb_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | switch (udev->speed) { |
| 120 | case USB_SPEED_LOW: |
| 121 | speed = "1.5"; |
| 122 | break; |
| 123 | case USB_SPEED_UNKNOWN: |
| 124 | case USB_SPEED_FULL: |
| 125 | speed = "12"; |
| 126 | break; |
| 127 | case USB_SPEED_HIGH: |
| 128 | speed = "480"; |
| 129 | break; |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 130 | case USB_SPEED_WIRELESS: |
Greg Kroah-Hartman | b132b04 | 2010-01-14 10:33:19 -0800 | [diff] [blame] | 131 | speed = "480"; |
| 132 | break; |
| 133 | case USB_SPEED_SUPER: |
| 134 | speed = "5000"; |
| 135 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | default: |
| 137 | speed = "unknown"; |
| 138 | } |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 139 | return sprintf(buf, "%s\n", speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 141 | static DEVICE_ATTR_RO(speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 143 | static ssize_t busnum_show(struct device *dev, struct device_attribute *attr, |
| 144 | char *buf) |
Alan Stern | 83f7d95 | 2007-04-25 15:15:43 -0400 | [diff] [blame] | 145 | { |
| 146 | struct usb_device *udev; |
| 147 | |
| 148 | udev = to_usb_device(dev); |
| 149 | return sprintf(buf, "%d\n", udev->bus->busnum); |
| 150 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 151 | static DEVICE_ATTR_RO(busnum); |
Alan Stern | 83f7d95 | 2007-04-25 15:15:43 -0400 | [diff] [blame] | 152 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 153 | static ssize_t devnum_show(struct device *dev, struct device_attribute *attr, |
| 154 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | struct usb_device *udev; |
| 157 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 158 | udev = to_usb_device(dev); |
| 159 | return sprintf(buf, "%d\n", udev->devnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 161 | static DEVICE_ATTR_RO(devnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 163 | static ssize_t devpath_show(struct device *dev, struct device_attribute *attr, |
| 164 | char *buf) |
Greg Kroah-Hartman | 9af2362 | 2009-11-30 11:15:02 -0800 | [diff] [blame] | 165 | { |
| 166 | struct usb_device *udev; |
| 167 | |
| 168 | udev = to_usb_device(dev); |
| 169 | return sprintf(buf, "%s\n", udev->devpath); |
| 170 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 171 | static DEVICE_ATTR_RO(devpath); |
Greg Kroah-Hartman | 9af2362 | 2009-11-30 11:15:02 -0800 | [diff] [blame] | 172 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 173 | static ssize_t version_show(struct device *dev, struct device_attribute *attr, |
| 174 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
| 176 | struct usb_device *udev; |
| 177 | u16 bcdUSB; |
| 178 | |
| 179 | udev = to_usb_device(dev); |
| 180 | bcdUSB = le16_to_cpu(udev->descriptor.bcdUSB); |
| 181 | return sprintf(buf, "%2x.%02x\n", bcdUSB >> 8, bcdUSB & 0xff); |
| 182 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 183 | static DEVICE_ATTR_RO(version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 185 | static ssize_t maxchild_show(struct device *dev, struct device_attribute *attr, |
| 186 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 188 | struct usb_device *udev; |
| 189 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 190 | udev = to_usb_device(dev); |
| 191 | return sprintf(buf, "%d\n", udev->maxchild); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 193 | static DEVICE_ATTR_RO(maxchild); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 195 | static ssize_t quirks_show(struct device *dev, struct device_attribute *attr, |
| 196 | char *buf) |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 197 | { |
| 198 | struct usb_device *udev; |
| 199 | |
| 200 | udev = to_usb_device(dev); |
| 201 | return sprintf(buf, "0x%x\n", udev->quirks); |
| 202 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 203 | static DEVICE_ATTR_RO(quirks); |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 204 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 205 | static ssize_t avoid_reset_quirk_show(struct device *dev, |
| 206 | struct device_attribute *attr, char *buf) |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 207 | { |
| 208 | struct usb_device *udev; |
| 209 | |
| 210 | udev = to_usb_device(dev); |
Lan Tianyu | 7fda953 | 2012-08-17 16:44:56 +0800 | [diff] [blame] | 211 | return sprintf(buf, "%d\n", !!(udev->quirks & USB_QUIRK_RESET)); |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 212 | } |
| 213 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 214 | static ssize_t avoid_reset_quirk_store(struct device *dev, |
| 215 | struct device_attribute *attr, |
| 216 | const char *buf, size_t count) |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 217 | { |
| 218 | struct usb_device *udev = to_usb_device(dev); |
Lan Tianyu | 7fc2cc3 | 2012-08-03 16:30:35 +0800 | [diff] [blame] | 219 | int val; |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 220 | |
Lan Tianyu | 7fc2cc3 | 2012-08-03 16:30:35 +0800 | [diff] [blame] | 221 | if (sscanf(buf, "%d", &val) != 1 || val < 0 || val > 1) |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 222 | return -EINVAL; |
| 223 | usb_lock_device(udev); |
Lan Tianyu | 7fc2cc3 | 2012-08-03 16:30:35 +0800 | [diff] [blame] | 224 | if (val) |
Lan Tianyu | 7fda953 | 2012-08-17 16:44:56 +0800 | [diff] [blame] | 225 | udev->quirks |= USB_QUIRK_RESET; |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 226 | else |
Lan Tianyu | 7fda953 | 2012-08-17 16:44:56 +0800 | [diff] [blame] | 227 | udev->quirks &= ~USB_QUIRK_RESET; |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 228 | usb_unlock_device(udev); |
| 229 | return count; |
| 230 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 231 | static DEVICE_ATTR_RW(avoid_reset_quirk); |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 232 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 233 | static ssize_t urbnum_show(struct device *dev, struct device_attribute *attr, |
| 234 | char *buf) |
Sarah Sharp | 4d59d8a | 2007-10-03 14:56:03 -0700 | [diff] [blame] | 235 | { |
| 236 | struct usb_device *udev; |
| 237 | |
| 238 | udev = to_usb_device(dev); |
| 239 | return sprintf(buf, "%d\n", atomic_read(&udev->urbnum)); |
| 240 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 241 | static DEVICE_ATTR_RO(urbnum); |
Sarah Sharp | 4d59d8a | 2007-10-03 14:56:03 -0700 | [diff] [blame] | 242 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 243 | static ssize_t removable_show(struct device *dev, struct device_attribute *attr, |
| 244 | char *buf) |
Matthew Garrett | 0846e7e | 2012-02-03 17:11:54 -0500 | [diff] [blame] | 245 | { |
| 246 | struct usb_device *udev; |
| 247 | char *state; |
| 248 | |
| 249 | udev = to_usb_device(dev); |
| 250 | |
| 251 | switch (udev->removable) { |
| 252 | case USB_DEVICE_REMOVABLE: |
| 253 | state = "removable"; |
| 254 | break; |
| 255 | case USB_DEVICE_FIXED: |
| 256 | state = "fixed"; |
| 257 | break; |
| 258 | default: |
| 259 | state = "unknown"; |
| 260 | } |
| 261 | |
| 262 | return sprintf(buf, "%s\n", state); |
| 263 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 264 | static DEVICE_ATTR_RO(removable); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 265 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 266 | static ssize_t ltm_capable_show(struct device *dev, |
| 267 | struct device_attribute *attr, char *buf) |
Sarah Sharp | 024f117 | 2012-07-05 17:17:24 -0700 | [diff] [blame] | 268 | { |
| 269 | if (usb_device_supports_ltm(to_usb_device(dev))) |
| 270 | return sprintf(buf, "%s\n", "yes"); |
| 271 | return sprintf(buf, "%s\n", "no"); |
| 272 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 273 | static DEVICE_ATTR_RO(ltm_capable); |
Sarah Sharp | 024f117 | 2012-07-05 17:17:24 -0700 | [diff] [blame] | 274 | |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 275 | #ifdef CONFIG_PM |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 276 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 277 | static ssize_t persist_show(struct device *dev, struct device_attribute *attr, |
| 278 | char *buf) |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 279 | { |
| 280 | struct usb_device *udev = to_usb_device(dev); |
| 281 | |
| 282 | return sprintf(buf, "%d\n", udev->persist_enabled); |
| 283 | } |
| 284 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 285 | static ssize_t persist_store(struct device *dev, struct device_attribute *attr, |
| 286 | const char *buf, size_t count) |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 287 | { |
| 288 | struct usb_device *udev = to_usb_device(dev); |
| 289 | int value; |
| 290 | |
| 291 | /* Hubs are always enabled for USB_PERSIST */ |
| 292 | if (udev->descriptor.bDeviceClass == USB_CLASS_HUB) |
| 293 | return -EPERM; |
| 294 | |
| 295 | if (sscanf(buf, "%d", &value) != 1) |
| 296 | return -EINVAL; |
Alan Stern | 0c4db6d | 2010-01-08 12:56:42 -0500 | [diff] [blame] | 297 | |
| 298 | usb_lock_device(udev); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 299 | udev->persist_enabled = !!value; |
Alan Stern | 0c4db6d | 2010-01-08 12:56:42 -0500 | [diff] [blame] | 300 | usb_unlock_device(udev); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 301 | return count; |
| 302 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 303 | static DEVICE_ATTR_RW(persist); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 304 | |
| 305 | static int add_persist_attributes(struct device *dev) |
| 306 | { |
| 307 | int rc = 0; |
| 308 | |
| 309 | if (is_usb_device(dev)) { |
| 310 | struct usb_device *udev = to_usb_device(dev); |
| 311 | |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 312 | /* Hubs are automatically enabled for USB_PERSIST, |
| 313 | * no point in creating the attribute file. |
| 314 | */ |
| 315 | if (udev->descriptor.bDeviceClass != USB_CLASS_HUB) |
| 316 | rc = sysfs_add_file_to_group(&dev->kobj, |
| 317 | &dev_attr_persist.attr, |
Alan Stern | 045cac6 | 2010-11-15 15:57:07 -0500 | [diff] [blame] | 318 | power_group_name); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 319 | } |
| 320 | return rc; |
| 321 | } |
| 322 | |
| 323 | static void remove_persist_attributes(struct device *dev) |
| 324 | { |
| 325 | sysfs_remove_file_from_group(&dev->kobj, |
| 326 | &dev_attr_persist.attr, |
Alan Stern | 045cac6 | 2010-11-15 15:57:07 -0500 | [diff] [blame] | 327 | power_group_name); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 328 | } |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 329 | #else |
| 330 | |
| 331 | #define add_persist_attributes(dev) 0 |
| 332 | #define remove_persist_attributes(dev) do {} while (0) |
| 333 | |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 334 | #endif /* CONFIG_PM */ |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 335 | |
Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 336 | #ifdef CONFIG_PM_RUNTIME |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 337 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 338 | static ssize_t connected_duration_show(struct device *dev, |
| 339 | struct device_attribute *attr, char *buf) |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 340 | { |
| 341 | struct usb_device *udev = to_usb_device(dev); |
| 342 | |
| 343 | return sprintf(buf, "%u\n", |
| 344 | jiffies_to_msecs(jiffies - udev->connect_time)); |
| 345 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 346 | static DEVICE_ATTR_RO(connected_duration); |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * If the device is resumed, the last time the device was suspended has |
| 350 | * been pre-subtracted from active_duration. We add the current time to |
| 351 | * get the duration that the device was actually active. |
| 352 | * |
| 353 | * If the device is suspended, the active_duration is up-to-date. |
| 354 | */ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 355 | static ssize_t active_duration_show(struct device *dev, |
| 356 | struct device_attribute *attr, char *buf) |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 357 | { |
| 358 | struct usb_device *udev = to_usb_device(dev); |
| 359 | int duration; |
| 360 | |
| 361 | if (udev->state != USB_STATE_SUSPENDED) |
| 362 | duration = jiffies_to_msecs(jiffies + udev->active_duration); |
| 363 | else |
| 364 | duration = jiffies_to_msecs(udev->active_duration); |
| 365 | return sprintf(buf, "%u\n", duration); |
| 366 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 367 | static DEVICE_ATTR_RO(active_duration); |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 368 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 369 | static ssize_t autosuspend_show(struct device *dev, |
| 370 | struct device_attribute *attr, char *buf) |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 371 | { |
Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 372 | return sprintf(buf, "%d\n", dev->power.autosuspend_delay / 1000); |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 373 | } |
| 374 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 375 | static ssize_t autosuspend_store(struct device *dev, |
| 376 | struct device_attribute *attr, const char *buf, |
| 377 | size_t count) |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 378 | { |
Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 379 | int value; |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 380 | |
Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 381 | if (sscanf(buf, "%d", &value) != 1 || value >= INT_MAX/1000 || |
| 382 | value <= -INT_MAX/1000) |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 383 | return -EINVAL; |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 384 | |
Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 385 | pm_runtime_set_autosuspend_delay(dev, value * 1000); |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 386 | return count; |
| 387 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 388 | static DEVICE_ATTR_RW(autosuspend); |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 389 | |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 390 | static const char on_string[] = "on"; |
| 391 | static const char auto_string[] = "auto"; |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 392 | |
Alan Stern | a903098 | 2010-04-02 13:22:16 -0400 | [diff] [blame] | 393 | static void warn_level(void) { |
| 394 | static int level_warned; |
| 395 | |
| 396 | if (!level_warned) { |
| 397 | level_warned = 1; |
| 398 | printk(KERN_WARNING "WARNING! power/level is deprecated; " |
| 399 | "use power/control instead\n"); |
| 400 | } |
| 401 | } |
| 402 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 403 | static ssize_t level_show(struct device *dev, struct device_attribute *attr, |
| 404 | char *buf) |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 405 | { |
| 406 | struct usb_device *udev = to_usb_device(dev); |
| 407 | const char *p = auto_string; |
| 408 | |
Alan Stern | a903098 | 2010-04-02 13:22:16 -0400 | [diff] [blame] | 409 | warn_level(); |
Alan Stern | 9e18c82 | 2010-04-02 13:22:09 -0400 | [diff] [blame] | 410 | if (udev->state != USB_STATE_SUSPENDED && !udev->dev.power.runtime_auto) |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 411 | p = on_string; |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 412 | return sprintf(buf, "%s\n", p); |
| 413 | } |
| 414 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 415 | static ssize_t level_store(struct device *dev, struct device_attribute *attr, |
| 416 | const char *buf, size_t count) |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 417 | { |
| 418 | struct usb_device *udev = to_usb_device(dev); |
| 419 | int len = count; |
| 420 | char *cp; |
Alan Stern | 9e18c82 | 2010-04-02 13:22:09 -0400 | [diff] [blame] | 421 | int rc = count; |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 422 | |
Alan Stern | a903098 | 2010-04-02 13:22:16 -0400 | [diff] [blame] | 423 | warn_level(); |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 424 | cp = memchr(buf, '\n', count); |
| 425 | if (cp) |
| 426 | len = cp - buf; |
| 427 | |
| 428 | usb_lock_device(udev); |
| 429 | |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 430 | if (len == sizeof on_string - 1 && |
Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 431 | strncmp(buf, on_string, len) == 0) |
Alan Stern | 9e18c82 | 2010-04-02 13:22:09 -0400 | [diff] [blame] | 432 | usb_disable_autosuspend(udev); |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 433 | |
Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 434 | else if (len == sizeof auto_string - 1 && |
| 435 | strncmp(buf, auto_string, len) == 0) |
Alan Stern | 9e18c82 | 2010-04-02 13:22:09 -0400 | [diff] [blame] | 436 | usb_enable_autosuspend(udev); |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 437 | |
Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 438 | else |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 439 | rc = -EINVAL; |
| 440 | |
| 441 | usb_unlock_device(udev); |
Alan Stern | 9e18c82 | 2010-04-02 13:22:09 -0400 | [diff] [blame] | 442 | return rc; |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 443 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 444 | static DEVICE_ATTR_RW(level); |
Alan Stern | 2add522 | 2007-03-20 14:59:39 -0400 | [diff] [blame] | 445 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 446 | static ssize_t usb2_hardware_lpm_show(struct device *dev, |
| 447 | struct device_attribute *attr, char *buf) |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 448 | { |
| 449 | struct usb_device *udev = to_usb_device(dev); |
| 450 | const char *p; |
| 451 | |
| 452 | if (udev->usb2_hw_lpm_enabled == 1) |
| 453 | p = "enabled"; |
| 454 | else |
| 455 | p = "disabled"; |
| 456 | |
| 457 | return sprintf(buf, "%s\n", p); |
| 458 | } |
| 459 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 460 | static ssize_t usb2_hardware_lpm_store(struct device *dev, |
| 461 | struct device_attribute *attr, |
| 462 | const char *buf, size_t count) |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 463 | { |
| 464 | struct usb_device *udev = to_usb_device(dev); |
| 465 | bool value; |
| 466 | int ret; |
| 467 | |
| 468 | usb_lock_device(udev); |
| 469 | |
| 470 | ret = strtobool(buf, &value); |
| 471 | |
| 472 | if (!ret) |
| 473 | ret = usb_set_usb2_hardware_lpm(udev, value); |
| 474 | |
| 475 | usb_unlock_device(udev); |
| 476 | |
| 477 | if (!ret) |
| 478 | return count; |
| 479 | |
| 480 | return ret; |
| 481 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 482 | static DEVICE_ATTR_RW(usb2_hardware_lpm); |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 483 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 484 | static ssize_t usb2_lpm_l1_timeout_show(struct device *dev, |
| 485 | struct device_attribute *attr, |
| 486 | char *buf) |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 487 | { |
| 488 | struct usb_device *udev = to_usb_device(dev); |
| 489 | return sprintf(buf, "%d\n", udev->l1_params.timeout); |
| 490 | } |
| 491 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 492 | static ssize_t usb2_lpm_l1_timeout_store(struct device *dev, |
| 493 | struct device_attribute *attr, |
| 494 | const char *buf, size_t count) |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 495 | { |
| 496 | struct usb_device *udev = to_usb_device(dev); |
| 497 | u16 timeout; |
| 498 | |
| 499 | if (kstrtou16(buf, 0, &timeout)) |
| 500 | return -EINVAL; |
| 501 | |
| 502 | udev->l1_params.timeout = timeout; |
| 503 | |
| 504 | return count; |
| 505 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 506 | static DEVICE_ATTR_RW(usb2_lpm_l1_timeout); |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 507 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 508 | static ssize_t usb2_lpm_besl_show(struct device *dev, |
| 509 | struct device_attribute *attr, char *buf) |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 510 | { |
| 511 | struct usb_device *udev = to_usb_device(dev); |
| 512 | return sprintf(buf, "%d\n", udev->l1_params.besl); |
| 513 | } |
| 514 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 515 | static ssize_t usb2_lpm_besl_store(struct device *dev, |
| 516 | struct device_attribute *attr, |
| 517 | const char *buf, size_t count) |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 518 | { |
| 519 | struct usb_device *udev = to_usb_device(dev); |
| 520 | u8 besl; |
| 521 | |
| 522 | if (kstrtou8(buf, 0, &besl) || besl > 15) |
| 523 | return -EINVAL; |
| 524 | |
| 525 | udev->l1_params.besl = besl; |
| 526 | |
| 527 | return count; |
| 528 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 529 | static DEVICE_ATTR_RW(usb2_lpm_besl); |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 530 | |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 531 | static struct attribute *usb2_hardware_lpm_attr[] = { |
| 532 | &dev_attr_usb2_hardware_lpm.attr, |
Mathias Nyman | 17f3486 | 2013-05-23 17:14:31 +0300 | [diff] [blame] | 533 | &dev_attr_usb2_lpm_l1_timeout.attr, |
| 534 | &dev_attr_usb2_lpm_besl.attr, |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 535 | NULL, |
| 536 | }; |
| 537 | static struct attribute_group usb2_hardware_lpm_attr_group = { |
| 538 | .name = power_group_name, |
| 539 | .attrs = usb2_hardware_lpm_attr, |
| 540 | }; |
| 541 | |
Alan Stern | 045cac6 | 2010-11-15 15:57:07 -0500 | [diff] [blame] | 542 | static struct attribute *power_attrs[] = { |
| 543 | &dev_attr_autosuspend.attr, |
| 544 | &dev_attr_level.attr, |
| 545 | &dev_attr_connected_duration.attr, |
| 546 | &dev_attr_active_duration.attr, |
| 547 | NULL, |
| 548 | }; |
| 549 | static struct attribute_group power_attr_group = { |
| 550 | .name = power_group_name, |
| 551 | .attrs = power_attrs, |
| 552 | }; |
| 553 | |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 554 | static int add_power_attributes(struct device *dev) |
| 555 | { |
| 556 | int rc = 0; |
| 557 | |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 558 | if (is_usb_device(dev)) { |
| 559 | struct usb_device *udev = to_usb_device(dev); |
Alan Stern | 045cac6 | 2010-11-15 15:57:07 -0500 | [diff] [blame] | 560 | rc = sysfs_merge_group(&dev->kobj, &power_attr_group); |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 561 | if (udev->usb2_hw_lpm_capable == 1) |
| 562 | rc = sysfs_merge_group(&dev->kobj, |
| 563 | &usb2_hardware_lpm_attr_group); |
| 564 | } |
| 565 | |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 566 | return rc; |
| 567 | } |
| 568 | |
| 569 | static void remove_power_attributes(struct device *dev) |
| 570 | { |
Andiry Xu | c1045e8 | 2011-09-23 14:19:53 -0700 | [diff] [blame] | 571 | sysfs_unmerge_group(&dev->kobj, &usb2_hardware_lpm_attr_group); |
Alan Stern | 045cac6 | 2010-11-15 15:57:07 -0500 | [diff] [blame] | 572 | sysfs_unmerge_group(&dev->kobj, &power_attr_group); |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | #else |
| 576 | |
| 577 | #define add_power_attributes(dev) 0 |
| 578 | #define remove_power_attributes(dev) do {} while (0) |
| 579 | |
Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 580 | #endif /* CONFIG_PM_RUNTIME */ |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 581 | |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | /* Descriptor fields */ |
| 584 | #define usb_descriptor_attr_le16(field, format_string) \ |
| 585 | static ssize_t \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 586 | field##_show(struct device *dev, struct device_attribute *attr, \ |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 587 | char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | { \ |
| 589 | struct usb_device *udev; \ |
| 590 | \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 591 | udev = to_usb_device(dev); \ |
| 592 | return sprintf(buf, format_string, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | le16_to_cpu(udev->descriptor.field)); \ |
| 594 | } \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 595 | static DEVICE_ATTR_RO(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 597 | usb_descriptor_attr_le16(idVendor, "%04x\n"); |
| 598 | usb_descriptor_attr_le16(idProduct, "%04x\n"); |
| 599 | usb_descriptor_attr_le16(bcdDevice, "%04x\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
| 601 | #define usb_descriptor_attr(field, format_string) \ |
| 602 | static ssize_t \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 603 | field##_show(struct device *dev, struct device_attribute *attr, \ |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 604 | char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | { \ |
| 606 | struct usb_device *udev; \ |
| 607 | \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 608 | udev = to_usb_device(dev); \ |
| 609 | return sprintf(buf, format_string, udev->descriptor.field); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 611 | static DEVICE_ATTR_RO(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 613 | usb_descriptor_attr(bDeviceClass, "%02x\n"); |
| 614 | usb_descriptor_attr(bDeviceSubClass, "%02x\n"); |
| 615 | usb_descriptor_attr(bDeviceProtocol, "%02x\n"); |
| 616 | usb_descriptor_attr(bNumConfigurations, "%d\n"); |
| 617 | usb_descriptor_attr(bMaxPacketSize0, "%d\n"); |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 618 | |
| 619 | |
| 620 | /* show if the device is authorized (1) or not (0) */ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 621 | static ssize_t authorized_show(struct device *dev, |
| 622 | struct device_attribute *attr, char *buf) |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 623 | { |
| 624 | struct usb_device *usb_dev = to_usb_device(dev); |
| 625 | return snprintf(buf, PAGE_SIZE, "%u\n", usb_dev->authorized); |
| 626 | } |
| 627 | |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 628 | /* |
| 629 | * Authorize a device to be used in the system |
| 630 | * |
| 631 | * Writing a 0 deauthorizes the device, writing a 1 authorizes it. |
| 632 | */ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 633 | static ssize_t authorized_store(struct device *dev, |
| 634 | struct device_attribute *attr, const char *buf, |
| 635 | size_t size) |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 636 | { |
| 637 | ssize_t result; |
| 638 | struct usb_device *usb_dev = to_usb_device(dev); |
| 639 | unsigned val; |
| 640 | result = sscanf(buf, "%u\n", &val); |
| 641 | if (result != 1) |
| 642 | result = -EINVAL; |
| 643 | else if (val == 0) |
| 644 | result = usb_deauthorize_device(usb_dev); |
| 645 | else |
| 646 | result = usb_authorize_device(usb_dev); |
| 647 | return result < 0? result : size; |
| 648 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 649 | static DEVICE_ATTR_IGNORE_LOCKDEP(authorized, S_IRUGO | S_IWUSR, |
| 650 | authorized_show, authorized_store); |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 651 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 652 | /* "Safely remove a device" */ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 653 | static ssize_t remove_store(struct device *dev, struct device_attribute *attr, |
| 654 | const char *buf, size_t count) |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 655 | { |
| 656 | struct usb_device *udev = to_usb_device(dev); |
| 657 | int rc = 0; |
| 658 | |
| 659 | usb_lock_device(udev); |
| 660 | if (udev->state != USB_STATE_NOTATTACHED) { |
| 661 | |
| 662 | /* To avoid races, first unconfigure and then remove */ |
| 663 | usb_set_configuration(udev, -1); |
| 664 | rc = usb_remove_device(udev); |
| 665 | } |
| 666 | if (rc == 0) |
| 667 | rc = count; |
| 668 | usb_unlock_device(udev); |
| 669 | return rc; |
| 670 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 671 | static DEVICE_ATTR_IGNORE_LOCKDEP(remove, S_IWUSR, NULL, remove_store); |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 672 | |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | static struct attribute *dev_attrs[] = { |
| 675 | /* current configuration's attributes */ |
Alan Stern | b6eb2d8 | 2006-07-06 15:37:42 -0400 | [diff] [blame] | 676 | &dev_attr_configuration.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | &dev_attr_bNumInterfaces.attr, |
| 678 | &dev_attr_bConfigurationValue.attr, |
| 679 | &dev_attr_bmAttributes.attr, |
| 680 | &dev_attr_bMaxPower.attr, |
| 681 | /* device attributes */ |
Greg Kroah-Hartman | 9af2362 | 2009-11-30 11:15:02 -0800 | [diff] [blame] | 682 | &dev_attr_urbnum.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | &dev_attr_idVendor.attr, |
| 684 | &dev_attr_idProduct.attr, |
| 685 | &dev_attr_bcdDevice.attr, |
| 686 | &dev_attr_bDeviceClass.attr, |
| 687 | &dev_attr_bDeviceSubClass.attr, |
| 688 | &dev_attr_bDeviceProtocol.attr, |
| 689 | &dev_attr_bNumConfigurations.attr, |
Greg Kroah-Hartman | cf5910b | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 690 | &dev_attr_bMaxPacketSize0.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | &dev_attr_speed.attr, |
Alan Stern | 83f7d95 | 2007-04-25 15:15:43 -0400 | [diff] [blame] | 692 | &dev_attr_busnum.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | &dev_attr_devnum.attr, |
Greg Kroah-Hartman | 9af2362 | 2009-11-30 11:15:02 -0800 | [diff] [blame] | 694 | &dev_attr_devpath.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | &dev_attr_version.attr, |
| 696 | &dev_attr_maxchild.attr, |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 697 | &dev_attr_quirks.attr, |
Oliver Neukum | ef95534 | 2010-01-16 01:33:03 +0100 | [diff] [blame] | 698 | &dev_attr_avoid_reset_quirk.attr, |
Inaky Perez-Gonzalez | e03f2e8 | 2007-07-31 20:34:07 -0700 | [diff] [blame] | 699 | &dev_attr_authorized.attr, |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 700 | &dev_attr_remove.attr, |
Matthew Garrett | 0846e7e | 2012-02-03 17:11:54 -0500 | [diff] [blame] | 701 | &dev_attr_removable.attr, |
Sarah Sharp | 024f117 | 2012-07-05 17:17:24 -0700 | [diff] [blame] | 702 | &dev_attr_ltm_capable.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | NULL, |
| 704 | }; |
| 705 | static struct attribute_group dev_attr_grp = { |
| 706 | .attrs = dev_attrs, |
| 707 | }; |
| 708 | |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 709 | /* When modifying this list, be sure to modify dev_string_attrs_are_visible() |
| 710 | * accordingly. |
| 711 | */ |
| 712 | static struct attribute *dev_string_attrs[] = { |
| 713 | &dev_attr_manufacturer.attr, |
| 714 | &dev_attr_product.attr, |
| 715 | &dev_attr_serial.attr, |
| 716 | NULL |
| 717 | }; |
| 718 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 719 | static umode_t dev_string_attrs_are_visible(struct kobject *kobj, |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 720 | struct attribute *a, int n) |
| 721 | { |
H Hartley Sweeten | a864e3aa5 | 2009-04-15 21:34:40 -0400 | [diff] [blame] | 722 | struct device *dev = container_of(kobj, struct device, kobj); |
| 723 | struct usb_device *udev = to_usb_device(dev); |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 724 | |
| 725 | if (a == &dev_attr_manufacturer.attr) { |
| 726 | if (udev->manufacturer == NULL) |
| 727 | return 0; |
| 728 | } else if (a == &dev_attr_product.attr) { |
| 729 | if (udev->product == NULL) |
| 730 | return 0; |
| 731 | } else if (a == &dev_attr_serial.attr) { |
| 732 | if (udev->serial == NULL) |
| 733 | return 0; |
| 734 | } |
| 735 | return a->mode; |
| 736 | } |
| 737 | |
| 738 | static struct attribute_group dev_string_attr_grp = { |
| 739 | .attrs = dev_string_attrs, |
| 740 | .is_visible = dev_string_attrs_are_visible, |
| 741 | }; |
| 742 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 743 | const struct attribute_group *usb_device_groups[] = { |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 744 | &dev_attr_grp, |
| 745 | &dev_string_attr_grp, |
| 746 | NULL |
| 747 | }; |
| 748 | |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 749 | /* Binary descriptors */ |
| 750 | |
| 751 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 752 | read_descriptors(struct file *filp, struct kobject *kobj, |
| 753 | struct bin_attribute *attr, |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 754 | char *buf, loff_t off, size_t count) |
| 755 | { |
H Hartley Sweeten | a864e3aa5 | 2009-04-15 21:34:40 -0400 | [diff] [blame] | 756 | struct device *dev = container_of(kobj, struct device, kobj); |
| 757 | struct usb_device *udev = to_usb_device(dev); |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 758 | size_t nleft = count; |
| 759 | size_t srclen, n; |
Alan Stern | 217a908 | 2008-05-20 16:40:42 -0400 | [diff] [blame] | 760 | int cfgno; |
| 761 | void *src; |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 762 | |
Alan Stern | 217a908 | 2008-05-20 16:40:42 -0400 | [diff] [blame] | 763 | /* The binary attribute begins with the device descriptor. |
| 764 | * Following that are the raw descriptor entries for all the |
| 765 | * configurations (config plus subsidiary descriptors). |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 766 | */ |
Alan Stern | 217a908 | 2008-05-20 16:40:42 -0400 | [diff] [blame] | 767 | for (cfgno = -1; cfgno < udev->descriptor.bNumConfigurations && |
| 768 | nleft > 0; ++cfgno) { |
| 769 | if (cfgno < 0) { |
| 770 | src = &udev->descriptor; |
| 771 | srclen = sizeof(struct usb_device_descriptor); |
| 772 | } else { |
| 773 | src = udev->rawdescriptors[cfgno]; |
| 774 | srclen = __le16_to_cpu(udev->config[cfgno].desc. |
| 775 | wTotalLength); |
| 776 | } |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 777 | if (off < srclen) { |
Alan Stern | 217a908 | 2008-05-20 16:40:42 -0400 | [diff] [blame] | 778 | n = min(nleft, srclen - (size_t) off); |
| 779 | memcpy(buf, src + off, n); |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 780 | nleft -= n; |
Alan Stern | 217a908 | 2008-05-20 16:40:42 -0400 | [diff] [blame] | 781 | buf += n; |
| 782 | off = 0; |
| 783 | } else { |
| 784 | off -= srclen; |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 785 | } |
| 786 | } |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 787 | return count - nleft; |
| 788 | } |
| 789 | |
| 790 | static struct bin_attribute dev_bin_attr_descriptors = { |
| 791 | .attr = {.name = "descriptors", .mode = 0444}, |
| 792 | .read = read_descriptors, |
| 793 | .size = 18 + 65535, /* dev descr + max-size raw descriptor */ |
| 794 | }; |
| 795 | |
Greg Kroah-Hartman | 1b21d5e | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 796 | int usb_create_sysfs_dev_files(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | { |
| 798 | struct device *dev = &udev->dev; |
Greg Kroah-Hartman | 1b21d5e | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 799 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 801 | retval = device_create_bin_file(dev, &dev_bin_attr_descriptors); |
| 802 | if (retval) |
| 803 | goto error; |
| 804 | |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 805 | retval = add_persist_attributes(dev); |
| 806 | if (retval) |
| 807 | goto error; |
| 808 | |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 809 | retval = add_power_attributes(dev); |
| 810 | if (retval) |
| 811 | goto error; |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 812 | return retval; |
Greg Kroah-Hartman | 1b21d5e | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 813 | error: |
Alan Stern | aa084f3 | 2007-02-20 14:59:59 -0500 | [diff] [blame] | 814 | usb_remove_sysfs_dev_files(udev); |
Greg Kroah-Hartman | 1b21d5e | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 815 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | } |
| 817 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 818 | void usb_remove_sysfs_dev_files(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | { |
| 820 | struct device *dev = &udev->dev; |
| 821 | |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 822 | remove_power_attributes(dev); |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 823 | remove_persist_attributes(dev); |
Alan Stern | 69d42a7 | 2007-07-12 17:06:23 -0400 | [diff] [blame] | 824 | device_remove_bin_file(dev, &dev_bin_attr_descriptors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 827 | /* Interface Accociation Descriptor fields */ |
| 828 | #define usb_intf_assoc_attr(field, format_string) \ |
| 829 | static ssize_t \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 830 | iad_##field##_show(struct device *dev, struct device_attribute *attr, \ |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 831 | char *buf) \ |
| 832 | { \ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 833 | struct usb_interface *intf = to_usb_interface(dev); \ |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 834 | \ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 835 | return sprintf(buf, format_string, \ |
| 836 | intf->intf_assoc->field); \ |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 837 | } \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 838 | static DEVICE_ATTR_RO(iad_##field) |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 839 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 840 | usb_intf_assoc_attr(bFirstInterface, "%02x\n"); |
| 841 | usb_intf_assoc_attr(bInterfaceCount, "%02d\n"); |
| 842 | usb_intf_assoc_attr(bFunctionClass, "%02x\n"); |
| 843 | usb_intf_assoc_attr(bFunctionSubClass, "%02x\n"); |
| 844 | usb_intf_assoc_attr(bFunctionProtocol, "%02x\n"); |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | /* Interface fields */ |
| 847 | #define usb_intf_attr(field, format_string) \ |
| 848 | static ssize_t \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 849 | field##_show(struct device *dev, struct device_attribute *attr, \ |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 850 | char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | { \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 852 | struct usb_interface *intf = to_usb_interface(dev); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | \ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 854 | return sprintf(buf, format_string, \ |
Alan Stern | b724ae7 | 2005-10-24 15:36:00 -0400 | [diff] [blame] | 855 | intf->cur_altsetting->desc.field); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | } \ |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 857 | static DEVICE_ATTR_RO(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 859 | usb_intf_attr(bInterfaceNumber, "%02x\n"); |
| 860 | usb_intf_attr(bAlternateSetting, "%2d\n"); |
| 861 | usb_intf_attr(bNumEndpoints, "%02x\n"); |
| 862 | usb_intf_attr(bInterfaceClass, "%02x\n"); |
| 863 | usb_intf_attr(bInterfaceSubClass, "%02x\n"); |
| 864 | usb_intf_attr(bInterfaceProtocol, "%02x\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 866 | static ssize_t interface_show(struct device *dev, struct device_attribute *attr, |
| 867 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | { |
| 869 | struct usb_interface *intf; |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 870 | char *string; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 872 | intf = to_usb_interface(dev); |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 873 | string = intf->cur_altsetting->string; |
| 874 | barrier(); /* The altsetting might change! */ |
| 875 | |
| 876 | if (!string) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | return 0; |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 878 | return sprintf(buf, "%s\n", string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 880 | static DEVICE_ATTR_RO(interface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 882 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, |
| 883 | char *buf) |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 884 | { |
| 885 | struct usb_interface *intf; |
| 886 | struct usb_device *udev; |
Greg Kroah-Hartman | 7521803 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 887 | struct usb_host_interface *alt; |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 888 | |
| 889 | intf = to_usb_interface(dev); |
| 890 | udev = interface_to_usbdev(intf); |
Greg Kroah-Hartman | 7521803 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 891 | alt = intf->cur_altsetting; |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 892 | |
Greg Kroah-Hartman | 7521803 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 893 | return sprintf(buf, "usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02X" |
Bjørn Mork | 81df2d5 | 2012-05-18 21:27:43 +0200 | [diff] [blame] | 894 | "ic%02Xisc%02Xip%02Xin%02X\n", |
Greg Kroah-Hartman | 7521803 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 895 | le16_to_cpu(udev->descriptor.idVendor), |
| 896 | le16_to_cpu(udev->descriptor.idProduct), |
| 897 | le16_to_cpu(udev->descriptor.bcdDevice), |
| 898 | udev->descriptor.bDeviceClass, |
| 899 | udev->descriptor.bDeviceSubClass, |
| 900 | udev->descriptor.bDeviceProtocol, |
| 901 | alt->desc.bInterfaceClass, |
| 902 | alt->desc.bInterfaceSubClass, |
Bjørn Mork | 81df2d5 | 2012-05-18 21:27:43 +0200 | [diff] [blame] | 903 | alt->desc.bInterfaceProtocol, |
| 904 | alt->desc.bInterfaceNumber); |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 905 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 906 | static DEVICE_ATTR_RO(modalias); |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 907 | |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 908 | static ssize_t supports_autosuspend_show(struct device *dev, |
| 909 | struct device_attribute *attr, |
| 910 | char *buf) |
Sarah Sharp | 49e7cc8 | 2008-10-06 14:45:46 -0700 | [diff] [blame] | 911 | { |
| 912 | struct usb_interface *intf; |
| 913 | struct usb_device *udev; |
| 914 | int ret; |
| 915 | |
| 916 | intf = to_usb_interface(dev); |
| 917 | udev = interface_to_usbdev(intf); |
| 918 | |
| 919 | usb_lock_device(udev); |
| 920 | /* Devices will be autosuspended even when an interface isn't claimed */ |
| 921 | if (!intf->dev.driver || |
| 922 | to_usb_driver(intf->dev.driver)->supports_autosuspend) |
| 923 | ret = sprintf(buf, "%u\n", 1); |
| 924 | else |
| 925 | ret = sprintf(buf, "%u\n", 0); |
| 926 | usb_unlock_device(udev); |
| 927 | |
| 928 | return ret; |
| 929 | } |
Greg Kroah-Hartman | d03f254 | 2013-08-23 16:05:26 -0700 | [diff] [blame] | 930 | static DEVICE_ATTR_RO(supports_autosuspend); |
Sarah Sharp | 49e7cc8 | 2008-10-06 14:45:46 -0700 | [diff] [blame] | 931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | static struct attribute *intf_attrs[] = { |
| 933 | &dev_attr_bInterfaceNumber.attr, |
| 934 | &dev_attr_bAlternateSetting.attr, |
| 935 | &dev_attr_bNumEndpoints.attr, |
| 936 | &dev_attr_bInterfaceClass.attr, |
| 937 | &dev_attr_bInterfaceSubClass.attr, |
| 938 | &dev_attr_bInterfaceProtocol.attr, |
Greg KH | 360b52b | 2005-05-10 06:45:10 -0700 | [diff] [blame] | 939 | &dev_attr_modalias.attr, |
Sarah Sharp | 49e7cc8 | 2008-10-06 14:45:46 -0700 | [diff] [blame] | 940 | &dev_attr_supports_autosuspend.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | NULL, |
| 942 | }; |
| 943 | static struct attribute_group intf_attr_grp = { |
| 944 | .attrs = intf_attrs, |
| 945 | }; |
| 946 | |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 947 | static struct attribute *intf_assoc_attrs[] = { |
| 948 | &dev_attr_iad_bFirstInterface.attr, |
| 949 | &dev_attr_iad_bInterfaceCount.attr, |
| 950 | &dev_attr_iad_bFunctionClass.attr, |
| 951 | &dev_attr_iad_bFunctionSubClass.attr, |
| 952 | &dev_attr_iad_bFunctionProtocol.attr, |
| 953 | NULL, |
| 954 | }; |
| 955 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 956 | static umode_t intf_assoc_attrs_are_visible(struct kobject *kobj, |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 957 | struct attribute *a, int n) |
| 958 | { |
H Hartley Sweeten | a864e3aa5 | 2009-04-15 21:34:40 -0400 | [diff] [blame] | 959 | struct device *dev = container_of(kobj, struct device, kobj); |
| 960 | struct usb_interface *intf = to_usb_interface(dev); |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 961 | |
| 962 | if (intf->intf_assoc == NULL) |
| 963 | return 0; |
| 964 | return a->mode; |
| 965 | } |
| 966 | |
| 967 | static struct attribute_group intf_assoc_attr_grp = { |
| 968 | .attrs = intf_assoc_attrs, |
| 969 | .is_visible = intf_assoc_attrs_are_visible, |
| 970 | }; |
| 971 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 972 | const struct attribute_group *usb_interface_groups[] = { |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 973 | &intf_attr_grp, |
| 974 | &intf_assoc_attr_grp, |
| 975 | NULL |
| 976 | }; |
| 977 | |
Michal Nazarewicz | 643de62 | 2011-04-14 17:47:09 +0200 | [diff] [blame] | 978 | void usb_create_sysfs_intf_files(struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | { |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 980 | struct usb_device *udev = interface_to_usbdev(intf); |
| 981 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 982 | |
Alan Stern | 352d026 | 2008-10-29 15:16:58 -0400 | [diff] [blame] | 983 | if (intf->sysfs_files_created || intf->unregistering) |
Michal Nazarewicz | 643de62 | 2011-04-14 17:47:09 +0200 | [diff] [blame] | 984 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Michal Nazarewicz | 643de62 | 2011-04-14 17:47:09 +0200 | [diff] [blame] | 986 | if (!alt->string && !(udev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS)) |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 987 | alt->string = usb_cache_string(udev, alt->desc.iInterface); |
Michal Nazarewicz | 643de62 | 2011-04-14 17:47:09 +0200 | [diff] [blame] | 988 | if (alt->string && device_create_file(&intf->dev, &dev_attr_interface)) |
| 989 | ; /* We don't actually care if the function fails. */ |
Alan Stern | 7e61559 | 2007-11-06 11:43:42 -0500 | [diff] [blame] | 990 | intf->sysfs_files_created = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | } |
| 992 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 993 | void usb_remove_sysfs_intf_files(struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | { |
Alan Stern | 7e61559 | 2007-11-06 11:43:42 -0500 | [diff] [blame] | 995 | if (!intf->sysfs_files_created) |
| 996 | return; |
Alan Stern | 92b0da1 | 2008-10-29 15:18:50 -0400 | [diff] [blame] | 997 | |
Alan Stern | 92b0da1 | 2008-10-29 15:18:50 -0400 | [diff] [blame] | 998 | device_remove_file(&intf->dev, &dev_attr_interface); |
Alan Stern | 7e61559 | 2007-11-06 11:43:42 -0500 | [diff] [blame] | 999 | intf->sysfs_files_created = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | } |