blob: 6d2c8edb1ffe939e8c31b4a1eeb4585b27be619b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Alan Stern2add5222007-03-20 14:59:39 -040014#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/usb.h>
Alan Stern1662e3a2009-03-18 14:28:53 -040016#include <linux/usb/quirks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "usb.h"
18
19/* Active configuration fields */
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010020#define usb_actconfig_show(field, format_string) \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070021static ssize_t field##_show(struct device *dev, \
22 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{ \
24 struct usb_device *udev; \
25 struct usb_host_config *actconfig; \
26 \
Oliver Neukum92516442007-01-23 15:55:28 -050027 udev = to_usb_device(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 actconfig = udev->actconfig; \
29 if (actconfig) \
Oliver Neukum92516442007-01-23 15:55:28 -050030 return sprintf(buf, format_string, \
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010031 actconfig->desc.field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 else \
33 return 0; \
34} \
35
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010036#define usb_actconfig_attr(field, format_string) \
37 usb_actconfig_show(field, format_string) \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070038 static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070040usb_actconfig_attr(bNumInterfaces, "%2d\n");
41usb_actconfig_attr(bmAttributes, "%2x\n");
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010042
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070043static ssize_t bMaxPower_show(struct device *dev,
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010044 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-Hartmand03f2542013-08-23 16:05:26 -070055static DEVICE_ATTR_RO(bMaxPower);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070057static ssize_t configuration_show(struct device *dev,
Alan Sternb724ae72005-10-24 15:36:00 -040058 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct usb_device *udev;
61 struct usb_host_config *actconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Oliver Neukum92516442007-01-23 15:55:28 -050063 udev = to_usb_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 actconfig = udev->actconfig;
65 if ((!actconfig) || (!actconfig->string))
66 return 0;
Alan Stern4f62efe2005-10-24 16:24:14 -040067 return sprintf(buf, "%s\n", actconfig->string);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070069static DEVICE_ATTR_RO(configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/* configuration value is always present, and r/w */
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +010072usb_actconfig_show(bConfigurationValue, "%u\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070074static ssize_t bConfigurationValue_store(struct device *dev,
75 struct device_attribute *attr,
76 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Oliver Neukum92516442007-01-23 15:55:28 -050078 struct usb_device *udev = to_usb_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int config, value;
80
Alan Stern3f141e22007-02-08 16:40:43 -050081 if (sscanf(buf, "%d", &config) != 1 || config < -1 || config > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return -EINVAL;
83 usb_lock_device(udev);
Oliver Neukum92516442007-01-23 15:55:28 -050084 value = usb_set_configuration(udev, config);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 usb_unlock_device(udev);
86 return (value < 0) ? value : count;
87}
Alan Stern356c05d2012-05-14 13:30:03 -040088static DEVICE_ATTR_IGNORE_LOCKDEP(bConfigurationValue, S_IRUGO | S_IWUSR,
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070089 bConfigurationValue_show, bConfigurationValue_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/* String fields */
92#define usb_string_attr(name) \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070093static ssize_t name##_show(struct device *dev, \
Alan Sternb724ae72005-10-24 15:36:00 -040094 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{ \
96 struct usb_device *udev; \
Alan Sternda307122009-12-08 15:54:44 -050097 int retval; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 \
Oliver Neukum92516442007-01-23 15:55:28 -050099 udev = to_usb_device(dev); \
Alan Sternda307122009-12-08 15:54:44 -0500100 usb_lock_device(udev); \
101 retval = sprintf(buf, "%s\n", udev->name); \
102 usb_unlock_device(udev); \
103 return retval; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700105static DEVICE_ATTR_RO(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107usb_string_attr(product);
108usb_string_attr(manufacturer);
109usb_string_attr(serial);
110
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700111static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
112 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct usb_device *udev;
115 char *speed;
116
Oliver Neukum92516442007-01-23 15:55:28 -0500117 udev = to_usb_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
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-Hartman551cdbb2010-01-14 11:08:04 -0800130 case USB_SPEED_WIRELESS:
Greg Kroah-Hartmanb132b042010-01-14 10:33:19 -0800131 speed = "480";
132 break;
133 case USB_SPEED_SUPER:
134 speed = "5000";
135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 default:
137 speed = "unknown";
138 }
Oliver Neukum92516442007-01-23 15:55:28 -0500139 return sprintf(buf, "%s\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700141static DEVICE_ATTR_RO(speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700143static ssize_t busnum_show(struct device *dev, struct device_attribute *attr,
144 char *buf)
Alan Stern83f7d952007-04-25 15:15:43 -0400145{
146 struct usb_device *udev;
147
148 udev = to_usb_device(dev);
149 return sprintf(buf, "%d\n", udev->bus->busnum);
150}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700151static DEVICE_ATTR_RO(busnum);
Alan Stern83f7d952007-04-25 15:15:43 -0400152
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700153static ssize_t devnum_show(struct device *dev, struct device_attribute *attr,
154 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct usb_device *udev;
157
Oliver Neukum92516442007-01-23 15:55:28 -0500158 udev = to_usb_device(dev);
159 return sprintf(buf, "%d\n", udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700161static DEVICE_ATTR_RO(devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700163static ssize_t devpath_show(struct device *dev, struct device_attribute *attr,
164 char *buf)
Greg Kroah-Hartman9af23622009-11-30 11:15:02 -0800165{
166 struct usb_device *udev;
167
168 udev = to_usb_device(dev);
169 return sprintf(buf, "%s\n", udev->devpath);
170}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700171static DEVICE_ATTR_RO(devpath);
Greg Kroah-Hartman9af23622009-11-30 11:15:02 -0800172
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700173static ssize_t version_show(struct device *dev, struct device_attribute *attr,
174 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
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-Hartmand03f2542013-08-23 16:05:26 -0700183static DEVICE_ATTR_RO(version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700185static ssize_t maxchild_show(struct device *dev, struct device_attribute *attr,
186 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 struct usb_device *udev;
189
Oliver Neukum92516442007-01-23 15:55:28 -0500190 udev = to_usb_device(dev);
191 return sprintf(buf, "%d\n", udev->maxchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700193static DEVICE_ATTR_RO(maxchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700195static ssize_t quirks_show(struct device *dev, struct device_attribute *attr,
196 char *buf)
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100197{
198 struct usb_device *udev;
199
200 udev = to_usb_device(dev);
201 return sprintf(buf, "0x%x\n", udev->quirks);
202}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700203static DEVICE_ATTR_RO(quirks);
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100204
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700205static ssize_t avoid_reset_quirk_show(struct device *dev,
206 struct device_attribute *attr, char *buf)
Oliver Neukumef955342010-01-16 01:33:03 +0100207{
208 struct usb_device *udev;
209
210 udev = to_usb_device(dev);
Lan Tianyu7fda9532012-08-17 16:44:56 +0800211 return sprintf(buf, "%d\n", !!(udev->quirks & USB_QUIRK_RESET));
Oliver Neukumef955342010-01-16 01:33:03 +0100212}
213
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700214static ssize_t avoid_reset_quirk_store(struct device *dev,
215 struct device_attribute *attr,
216 const char *buf, size_t count)
Oliver Neukumef955342010-01-16 01:33:03 +0100217{
218 struct usb_device *udev = to_usb_device(dev);
Lan Tianyu7fc2cc32012-08-03 16:30:35 +0800219 int val;
Oliver Neukumef955342010-01-16 01:33:03 +0100220
Lan Tianyu7fc2cc32012-08-03 16:30:35 +0800221 if (sscanf(buf, "%d", &val) != 1 || val < 0 || val > 1)
Oliver Neukumef955342010-01-16 01:33:03 +0100222 return -EINVAL;
223 usb_lock_device(udev);
Lan Tianyu7fc2cc32012-08-03 16:30:35 +0800224 if (val)
Lan Tianyu7fda9532012-08-17 16:44:56 +0800225 udev->quirks |= USB_QUIRK_RESET;
Oliver Neukumef955342010-01-16 01:33:03 +0100226 else
Lan Tianyu7fda9532012-08-17 16:44:56 +0800227 udev->quirks &= ~USB_QUIRK_RESET;
Oliver Neukumef955342010-01-16 01:33:03 +0100228 usb_unlock_device(udev);
229 return count;
230}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700231static DEVICE_ATTR_RW(avoid_reset_quirk);
Oliver Neukumef955342010-01-16 01:33:03 +0100232
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700233static ssize_t urbnum_show(struct device *dev, struct device_attribute *attr,
234 char *buf)
Sarah Sharp4d59d8a2007-10-03 14:56:03 -0700235{
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-Hartmand03f2542013-08-23 16:05:26 -0700241static DEVICE_ATTR_RO(urbnum);
Sarah Sharp4d59d8a2007-10-03 14:56:03 -0700242
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700243static ssize_t removable_show(struct device *dev, struct device_attribute *attr,
244 char *buf)
Matthew Garrett0846e7e2012-02-03 17:11:54 -0500245{
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-Hartmand03f2542013-08-23 16:05:26 -0700264static DEVICE_ATTR_RO(removable);
Alan Sternb41a60e2007-05-30 15:39:33 -0400265
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700266static ssize_t ltm_capable_show(struct device *dev,
267 struct device_attribute *attr, char *buf)
Sarah Sharp024f1172012-07-05 17:17:24 -0700268{
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-Hartmand03f2542013-08-23 16:05:26 -0700273static DEVICE_ATTR_RO(ltm_capable);
Sarah Sharp024f1172012-07-05 17:17:24 -0700274
Alan Sternfeccc302008-03-03 15:15:59 -0500275#ifdef CONFIG_PM
Alan Sternb41a60e2007-05-30 15:39:33 -0400276
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700277static ssize_t persist_show(struct device *dev, struct device_attribute *attr,
278 char *buf)
Alan Sternb41a60e2007-05-30 15:39:33 -0400279{
280 struct usb_device *udev = to_usb_device(dev);
281
282 return sprintf(buf, "%d\n", udev->persist_enabled);
283}
284
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700285static ssize_t persist_store(struct device *dev, struct device_attribute *attr,
286 const char *buf, size_t count)
Alan Sternb41a60e2007-05-30 15:39:33 -0400287{
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 Stern0c4db6d2010-01-08 12:56:42 -0500297
298 usb_lock_device(udev);
Alan Sternb41a60e2007-05-30 15:39:33 -0400299 udev->persist_enabled = !!value;
Alan Stern0c4db6d2010-01-08 12:56:42 -0500300 usb_unlock_device(udev);
Alan Sternb41a60e2007-05-30 15:39:33 -0400301 return count;
302}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700303static DEVICE_ATTR_RW(persist);
Alan Sternb41a60e2007-05-30 15:39:33 -0400304
305static 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 Sternfeccc302008-03-03 15:15:59 -0500312 /* 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 Stern045cac62010-11-15 15:57:07 -0500318 power_group_name);
Alan Sternb41a60e2007-05-30 15:39:33 -0400319 }
320 return rc;
321}
322
323static void remove_persist_attributes(struct device *dev)
324{
325 sysfs_remove_file_from_group(&dev->kobj,
326 &dev_attr_persist.attr,
Alan Stern045cac62010-11-15 15:57:07 -0500327 power_group_name);
Alan Sternb41a60e2007-05-30 15:39:33 -0400328}
Alan Sternb41a60e2007-05-30 15:39:33 -0400329#else
330
331#define add_persist_attributes(dev) 0
332#define remove_persist_attributes(dev) do {} while (0)
333
Alan Sternfeccc302008-03-03 15:15:59 -0500334#endif /* CONFIG_PM */
Alan Sternb41a60e2007-05-30 15:39:33 -0400335
Alan Stern84ebc102013-03-27 16:14:46 -0400336#ifdef CONFIG_PM_RUNTIME
Alan Stern19c26232007-02-20 15:03:32 -0500337
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700338static ssize_t connected_duration_show(struct device *dev,
339 struct device_attribute *attr, char *buf)
Sarah Sharp15123002007-12-21 16:54:15 -0800340{
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-Hartmand03f2542013-08-23 16:05:26 -0700346static DEVICE_ATTR_RO(connected_duration);
Sarah Sharp15123002007-12-21 16:54:15 -0800347
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-Hartmand03f2542013-08-23 16:05:26 -0700355static ssize_t active_duration_show(struct device *dev,
356 struct device_attribute *attr, char *buf)
Sarah Sharp15123002007-12-21 16:54:15 -0800357{
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-Hartmand03f2542013-08-23 16:05:26 -0700367static DEVICE_ATTR_RO(active_duration);
Sarah Sharp15123002007-12-21 16:54:15 -0800368
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700369static ssize_t autosuspend_show(struct device *dev,
370 struct device_attribute *attr, char *buf)
Alan Stern19c26232007-02-20 15:03:32 -0500371{
Alan Sternfcc4a012010-11-15 15:57:51 -0500372 return sprintf(buf, "%d\n", dev->power.autosuspend_delay / 1000);
Alan Stern19c26232007-02-20 15:03:32 -0500373}
374
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700375static ssize_t autosuspend_store(struct device *dev,
376 struct device_attribute *attr, const char *buf,
377 size_t count)
Alan Stern19c26232007-02-20 15:03:32 -0500378{
Alan Sternfcc4a012010-11-15 15:57:51 -0500379 int value;
Alan Stern19c26232007-02-20 15:03:32 -0500380
Alan Sternfcc4a012010-11-15 15:57:51 -0500381 if (sscanf(buf, "%d", &value) != 1 || value >= INT_MAX/1000 ||
382 value <= -INT_MAX/1000)
Alan Stern19c26232007-02-20 15:03:32 -0500383 return -EINVAL;
Alan Stern19c26232007-02-20 15:03:32 -0500384
Alan Sternfcc4a012010-11-15 15:57:51 -0500385 pm_runtime_set_autosuspend_delay(dev, value * 1000);
Alan Stern19c26232007-02-20 15:03:32 -0500386 return count;
387}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700388static DEVICE_ATTR_RW(autosuspend);
Alan Stern19c26232007-02-20 15:03:32 -0500389
Alan Stern2add5222007-03-20 14:59:39 -0400390static const char on_string[] = "on";
391static const char auto_string[] = "auto";
Alan Stern2add5222007-03-20 14:59:39 -0400392
Alan Sterna9030982010-04-02 13:22:16 -0400393static 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-Hartmand03f2542013-08-23 16:05:26 -0700403static ssize_t level_show(struct device *dev, struct device_attribute *attr,
404 char *buf)
Alan Stern2add5222007-03-20 14:59:39 -0400405{
406 struct usb_device *udev = to_usb_device(dev);
407 const char *p = auto_string;
408
Alan Sterna9030982010-04-02 13:22:16 -0400409 warn_level();
Alan Stern9e18c822010-04-02 13:22:09 -0400410 if (udev->state != USB_STATE_SUSPENDED && !udev->dev.power.runtime_auto)
Alan Stern8e4ceb32009-12-07 13:01:37 -0500411 p = on_string;
Alan Stern2add5222007-03-20 14:59:39 -0400412 return sprintf(buf, "%s\n", p);
413}
414
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700415static ssize_t level_store(struct device *dev, struct device_attribute *attr,
416 const char *buf, size_t count)
Alan Stern2add5222007-03-20 14:59:39 -0400417{
418 struct usb_device *udev = to_usb_device(dev);
419 int len = count;
420 char *cp;
Alan Stern9e18c822010-04-02 13:22:09 -0400421 int rc = count;
Alan Stern2add5222007-03-20 14:59:39 -0400422
Alan Sterna9030982010-04-02 13:22:16 -0400423 warn_level();
Alan Stern2add5222007-03-20 14:59:39 -0400424 cp = memchr(buf, '\n', count);
425 if (cp)
426 len = cp - buf;
427
428 usb_lock_device(udev);
429
Alan Stern2add5222007-03-20 14:59:39 -0400430 if (len == sizeof on_string - 1 &&
Alan Stern088f7fe2010-01-08 12:56:54 -0500431 strncmp(buf, on_string, len) == 0)
Alan Stern9e18c822010-04-02 13:22:09 -0400432 usb_disable_autosuspend(udev);
Alan Stern2add5222007-03-20 14:59:39 -0400433
Alan Stern088f7fe2010-01-08 12:56:54 -0500434 else if (len == sizeof auto_string - 1 &&
435 strncmp(buf, auto_string, len) == 0)
Alan Stern9e18c822010-04-02 13:22:09 -0400436 usb_enable_autosuspend(udev);
Alan Stern2add5222007-03-20 14:59:39 -0400437
Alan Stern088f7fe2010-01-08 12:56:54 -0500438 else
Alan Stern2add5222007-03-20 14:59:39 -0400439 rc = -EINVAL;
440
441 usb_unlock_device(udev);
Alan Stern9e18c822010-04-02 13:22:09 -0400442 return rc;
Alan Stern2add5222007-03-20 14:59:39 -0400443}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700444static DEVICE_ATTR_RW(level);
Alan Stern2add5222007-03-20 14:59:39 -0400445
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700446static ssize_t usb2_hardware_lpm_show(struct device *dev,
447 struct device_attribute *attr, char *buf)
Andiry Xuc1045e82011-09-23 14:19:53 -0700448{
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-Hartmand03f2542013-08-23 16:05:26 -0700460static ssize_t usb2_hardware_lpm_store(struct device *dev,
461 struct device_attribute *attr,
462 const char *buf, size_t count)
Andiry Xuc1045e82011-09-23 14:19:53 -0700463{
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-Hartmand03f2542013-08-23 16:05:26 -0700482static DEVICE_ATTR_RW(usb2_hardware_lpm);
Andiry Xuc1045e82011-09-23 14:19:53 -0700483
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700484static ssize_t usb2_lpm_l1_timeout_show(struct device *dev,
485 struct device_attribute *attr,
486 char *buf)
Mathias Nyman17f34862013-05-23 17:14:31 +0300487{
488 struct usb_device *udev = to_usb_device(dev);
489 return sprintf(buf, "%d\n", udev->l1_params.timeout);
490}
491
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700492static ssize_t usb2_lpm_l1_timeout_store(struct device *dev,
493 struct device_attribute *attr,
494 const char *buf, size_t count)
Mathias Nyman17f34862013-05-23 17:14:31 +0300495{
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-Hartmand03f2542013-08-23 16:05:26 -0700506static DEVICE_ATTR_RW(usb2_lpm_l1_timeout);
Mathias Nyman17f34862013-05-23 17:14:31 +0300507
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700508static ssize_t usb2_lpm_besl_show(struct device *dev,
509 struct device_attribute *attr, char *buf)
Mathias Nyman17f34862013-05-23 17:14:31 +0300510{
511 struct usb_device *udev = to_usb_device(dev);
512 return sprintf(buf, "%d\n", udev->l1_params.besl);
513}
514
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700515static ssize_t usb2_lpm_besl_store(struct device *dev,
516 struct device_attribute *attr,
517 const char *buf, size_t count)
Mathias Nyman17f34862013-05-23 17:14:31 +0300518{
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-Hartmand03f2542013-08-23 16:05:26 -0700529static DEVICE_ATTR_RW(usb2_lpm_besl);
Mathias Nyman17f34862013-05-23 17:14:31 +0300530
Andiry Xuc1045e82011-09-23 14:19:53 -0700531static struct attribute *usb2_hardware_lpm_attr[] = {
532 &dev_attr_usb2_hardware_lpm.attr,
Mathias Nyman17f34862013-05-23 17:14:31 +0300533 &dev_attr_usb2_lpm_l1_timeout.attr,
534 &dev_attr_usb2_lpm_besl.attr,
Andiry Xuc1045e82011-09-23 14:19:53 -0700535 NULL,
536};
537static struct attribute_group usb2_hardware_lpm_attr_group = {
538 .name = power_group_name,
539 .attrs = usb2_hardware_lpm_attr,
540};
541
Alan Stern045cac62010-11-15 15:57:07 -0500542static 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};
549static struct attribute_group power_attr_group = {
550 .name = power_group_name,
551 .attrs = power_attrs,
552};
553
Alan Stern19c26232007-02-20 15:03:32 -0500554static int add_power_attributes(struct device *dev)
555{
556 int rc = 0;
557
Andiry Xuc1045e82011-09-23 14:19:53 -0700558 if (is_usb_device(dev)) {
559 struct usb_device *udev = to_usb_device(dev);
Alan Stern045cac62010-11-15 15:57:07 -0500560 rc = sysfs_merge_group(&dev->kobj, &power_attr_group);
Andiry Xuc1045e82011-09-23 14:19:53 -0700561 if (udev->usb2_hw_lpm_capable == 1)
562 rc = sysfs_merge_group(&dev->kobj,
563 &usb2_hardware_lpm_attr_group);
564 }
565
Alan Stern19c26232007-02-20 15:03:32 -0500566 return rc;
567}
568
569static void remove_power_attributes(struct device *dev)
570{
Andiry Xuc1045e82011-09-23 14:19:53 -0700571 sysfs_unmerge_group(&dev->kobj, &usb2_hardware_lpm_attr_group);
Alan Stern045cac62010-11-15 15:57:07 -0500572 sysfs_unmerge_group(&dev->kobj, &power_attr_group);
Alan Stern19c26232007-02-20 15:03:32 -0500573}
574
575#else
576
577#define add_power_attributes(dev) 0
578#define remove_power_attributes(dev) do {} while (0)
579
Alan Stern84ebc102013-03-27 16:14:46 -0400580#endif /* CONFIG_PM_RUNTIME */
Alan Stern19c26232007-02-20 15:03:32 -0500581
Alan Sternb41a60e2007-05-30 15:39:33 -0400582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/* Descriptor fields */
584#define usb_descriptor_attr_le16(field, format_string) \
585static ssize_t \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700586field##_show(struct device *dev, struct device_attribute *attr, \
Alan Sternb724ae72005-10-24 15:36:00 -0400587 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{ \
589 struct usb_device *udev; \
590 \
Oliver Neukum92516442007-01-23 15:55:28 -0500591 udev = to_usb_device(dev); \
592 return sprintf(buf, format_string, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 le16_to_cpu(udev->descriptor.field)); \
594} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700595static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700597usb_descriptor_attr_le16(idVendor, "%04x\n");
598usb_descriptor_attr_le16(idProduct, "%04x\n");
599usb_descriptor_attr_le16(bcdDevice, "%04x\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601#define usb_descriptor_attr(field, format_string) \
602static ssize_t \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700603field##_show(struct device *dev, struct device_attribute *attr, \
Alan Sternb724ae72005-10-24 15:36:00 -0400604 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{ \
606 struct usb_device *udev; \
607 \
Oliver Neukum92516442007-01-23 15:55:28 -0500608 udev = to_usb_device(dev); \
609 return sprintf(buf, format_string, udev->descriptor.field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700611static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700613usb_descriptor_attr(bDeviceClass, "%02x\n");
614usb_descriptor_attr(bDeviceSubClass, "%02x\n");
615usb_descriptor_attr(bDeviceProtocol, "%02x\n");
616usb_descriptor_attr(bNumConfigurations, "%d\n");
617usb_descriptor_attr(bMaxPacketSize0, "%d\n");
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700618
619
620/* show if the device is authorized (1) or not (0) */
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700621static ssize_t authorized_show(struct device *dev,
622 struct device_attribute *attr, char *buf)
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700623{
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-Gonzaleze03f2e82007-07-31 20:34:07 -0700628/*
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-Hartmand03f2542013-08-23 16:05:26 -0700633static ssize_t authorized_store(struct device *dev,
634 struct device_attribute *attr, const char *buf,
635 size_t size)
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700636{
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-Hartmand03f2542013-08-23 16:05:26 -0700649static DEVICE_ATTR_IGNORE_LOCKDEP(authorized, S_IRUGO | S_IWUSR,
650 authorized_show, authorized_store);
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700651
Alan Stern253e0572009-10-27 15:20:13 -0400652/* "Safely remove a device" */
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700653static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
654 const char *buf, size_t count)
Alan Stern253e0572009-10-27 15:20:13 -0400655{
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-Hartmand03f2542013-08-23 16:05:26 -0700671static DEVICE_ATTR_IGNORE_LOCKDEP(remove, S_IWUSR, NULL, remove_store);
Alan Stern253e0572009-10-27 15:20:13 -0400672
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674static struct attribute *dev_attrs[] = {
675 /* current configuration's attributes */
Alan Sternb6eb2d82006-07-06 15:37:42 -0400676 &dev_attr_configuration.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 &dev_attr_bNumInterfaces.attr,
678 &dev_attr_bConfigurationValue.attr,
679 &dev_attr_bmAttributes.attr,
680 &dev_attr_bMaxPower.attr,
681 /* device attributes */
Greg Kroah-Hartman9af23622009-11-30 11:15:02 -0800682 &dev_attr_urbnum.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 &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-Hartmancf5910b2005-06-29 16:53:29 -0700690 &dev_attr_bMaxPacketSize0.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 &dev_attr_speed.attr,
Alan Stern83f7d952007-04-25 15:15:43 -0400692 &dev_attr_busnum.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 &dev_attr_devnum.attr,
Greg Kroah-Hartman9af23622009-11-30 11:15:02 -0800694 &dev_attr_devpath.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 &dev_attr_version.attr,
696 &dev_attr_maxchild.attr,
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100697 &dev_attr_quirks.attr,
Oliver Neukumef955342010-01-16 01:33:03 +0100698 &dev_attr_avoid_reset_quirk.attr,
Inaky Perez-Gonzaleze03f2e82007-07-31 20:34:07 -0700699 &dev_attr_authorized.attr,
Alan Stern253e0572009-10-27 15:20:13 -0400700 &dev_attr_remove.attr,
Matthew Garrett0846e7e2012-02-03 17:11:54 -0500701 &dev_attr_removable.attr,
Sarah Sharp024f1172012-07-05 17:17:24 -0700702 &dev_attr_ltm_capable.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 NULL,
704};
705static struct attribute_group dev_attr_grp = {
706 .attrs = dev_attrs,
707};
708
Alan Stern2e5f10e2008-04-30 15:37:19 -0400709/* When modifying this list, be sure to modify dev_string_attrs_are_visible()
710 * accordingly.
711 */
712static 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 Viro587a1f12011-07-23 23:11:19 -0400719static umode_t dev_string_attrs_are_visible(struct kobject *kobj,
Alan Stern2e5f10e2008-04-30 15:37:19 -0400720 struct attribute *a, int n)
721{
H Hartley Sweetena864e3aa52009-04-15 21:34:40 -0400722 struct device *dev = container_of(kobj, struct device, kobj);
723 struct usb_device *udev = to_usb_device(dev);
Alan Stern2e5f10e2008-04-30 15:37:19 -0400724
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
738static struct attribute_group dev_string_attr_grp = {
739 .attrs = dev_string_attrs,
740 .is_visible = dev_string_attrs_are_visible,
741};
742
David Brownella4dbd672009-06-24 10:06:31 -0700743const struct attribute_group *usb_device_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400744 &dev_attr_grp,
745 &dev_string_attr_grp,
746 NULL
747};
748
Alan Stern69d42a72007-07-12 17:06:23 -0400749/* Binary descriptors */
750
751static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700752read_descriptors(struct file *filp, struct kobject *kobj,
753 struct bin_attribute *attr,
Alan Stern69d42a72007-07-12 17:06:23 -0400754 char *buf, loff_t off, size_t count)
755{
H Hartley Sweetena864e3aa52009-04-15 21:34:40 -0400756 struct device *dev = container_of(kobj, struct device, kobj);
757 struct usb_device *udev = to_usb_device(dev);
Alan Stern69d42a72007-07-12 17:06:23 -0400758 size_t nleft = count;
759 size_t srclen, n;
Alan Stern217a9082008-05-20 16:40:42 -0400760 int cfgno;
761 void *src;
Alan Stern69d42a72007-07-12 17:06:23 -0400762
Alan Stern217a9082008-05-20 16:40:42 -0400763 /* 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 Stern69d42a72007-07-12 17:06:23 -0400766 */
Alan Stern217a9082008-05-20 16:40:42 -0400767 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 Stern69d42a72007-07-12 17:06:23 -0400777 if (off < srclen) {
Alan Stern217a9082008-05-20 16:40:42 -0400778 n = min(nleft, srclen - (size_t) off);
779 memcpy(buf, src + off, n);
Alan Stern69d42a72007-07-12 17:06:23 -0400780 nleft -= n;
Alan Stern217a9082008-05-20 16:40:42 -0400781 buf += n;
782 off = 0;
783 } else {
784 off -= srclen;
Alan Stern69d42a72007-07-12 17:06:23 -0400785 }
786 }
Alan Stern69d42a72007-07-12 17:06:23 -0400787 return count - nleft;
788}
789
790static 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-Hartman1b21d5e2006-08-28 11:43:25 -0700796int usb_create_sysfs_dev_files(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct device *dev = &udev->dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700799 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Alan Stern69d42a72007-07-12 17:06:23 -0400801 retval = device_create_bin_file(dev, &dev_bin_attr_descriptors);
802 if (retval)
803 goto error;
804
Alan Sternb41a60e2007-05-30 15:39:33 -0400805 retval = add_persist_attributes(dev);
806 if (retval)
807 goto error;
808
Alan Stern19c26232007-02-20 15:03:32 -0500809 retval = add_power_attributes(dev);
810 if (retval)
811 goto error;
Alan Stern3b23dd62008-12-05 14:10:34 -0500812 return retval;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700813error:
Alan Sternaa084f32007-02-20 14:59:59 -0500814 usb_remove_sysfs_dev_files(udev);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700815 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Oliver Neukum92516442007-01-23 15:55:28 -0500818void usb_remove_sysfs_dev_files(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct device *dev = &udev->dev;
821
Alan Stern19c26232007-02-20 15:03:32 -0500822 remove_power_attributes(dev);
Alan Sternb41a60e2007-05-30 15:39:33 -0400823 remove_persist_attributes(dev);
Alan Stern69d42a72007-07-12 17:06:23 -0400824 device_remove_bin_file(dev, &dev_bin_attr_descriptors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Craig W. Nadler165fe972007-06-15 23:14:35 -0400827/* Interface Accociation Descriptor fields */
828#define usb_intf_assoc_attr(field, format_string) \
829static ssize_t \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700830iad_##field##_show(struct device *dev, struct device_attribute *attr, \
Craig W. Nadler165fe972007-06-15 23:14:35 -0400831 char *buf) \
832{ \
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800833 struct usb_interface *intf = to_usb_interface(dev); \
Craig W. Nadler165fe972007-06-15 23:14:35 -0400834 \
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800835 return sprintf(buf, format_string, \
836 intf->intf_assoc->field); \
Craig W. Nadler165fe972007-06-15 23:14:35 -0400837} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700838static DEVICE_ATTR_RO(iad_##field)
Craig W. Nadler165fe972007-06-15 23:14:35 -0400839
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700840usb_intf_assoc_attr(bFirstInterface, "%02x\n");
841usb_intf_assoc_attr(bInterfaceCount, "%02d\n");
842usb_intf_assoc_attr(bFunctionClass, "%02x\n");
843usb_intf_assoc_attr(bFunctionSubClass, "%02x\n");
844usb_intf_assoc_attr(bFunctionProtocol, "%02x\n");
Craig W. Nadler165fe972007-06-15 23:14:35 -0400845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/* Interface fields */
847#define usb_intf_attr(field, format_string) \
848static ssize_t \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700849field##_show(struct device *dev, struct device_attribute *attr, \
Alan Sternb724ae72005-10-24 15:36:00 -0400850 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{ \
Oliver Neukum92516442007-01-23 15:55:28 -0500852 struct usb_interface *intf = to_usb_interface(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 \
Oliver Neukum92516442007-01-23 15:55:28 -0500854 return sprintf(buf, format_string, \
Alan Sternb724ae72005-10-24 15:36:00 -0400855 intf->cur_altsetting->desc.field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700857static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700859usb_intf_attr(bInterfaceNumber, "%02x\n");
860usb_intf_attr(bAlternateSetting, "%2d\n");
861usb_intf_attr(bNumEndpoints, "%02x\n");
862usb_intf_attr(bInterfaceClass, "%02x\n");
863usb_intf_attr(bInterfaceSubClass, "%02x\n");
864usb_intf_attr(bInterfaceProtocol, "%02x\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700866static ssize_t interface_show(struct device *dev, struct device_attribute *attr,
867 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct usb_interface *intf;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400870 char *string;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Oliver Neukum92516442007-01-23 15:55:28 -0500872 intf = to_usb_interface(dev);
Alan Stern2e5f10e2008-04-30 15:37:19 -0400873 string = intf->cur_altsetting->string;
874 barrier(); /* The altsetting might change! */
875
876 if (!string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return 0;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400878 return sprintf(buf, "%s\n", string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700880static DEVICE_ATTR_RO(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700882static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
883 char *buf)
Greg KH360b52b2005-05-10 06:45:10 -0700884{
885 struct usb_interface *intf;
886 struct usb_device *udev;
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700887 struct usb_host_interface *alt;
Greg KH360b52b2005-05-10 06:45:10 -0700888
889 intf = to_usb_interface(dev);
890 udev = interface_to_usbdev(intf);
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700891 alt = intf->cur_altsetting;
Greg KH360b52b2005-05-10 06:45:10 -0700892
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700893 return sprintf(buf, "usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02X"
Bjørn Mork81df2d52012-05-18 21:27:43 +0200894 "ic%02Xisc%02Xip%02Xin%02X\n",
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700895 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 Mork81df2d52012-05-18 21:27:43 +0200903 alt->desc.bInterfaceProtocol,
904 alt->desc.bInterfaceNumber);
Greg KH360b52b2005-05-10 06:45:10 -0700905}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700906static DEVICE_ATTR_RO(modalias);
Greg KH360b52b2005-05-10 06:45:10 -0700907
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700908static ssize_t supports_autosuspend_show(struct device *dev,
909 struct device_attribute *attr,
910 char *buf)
Sarah Sharp49e7cc82008-10-06 14:45:46 -0700911{
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-Hartmand03f2542013-08-23 16:05:26 -0700930static DEVICE_ATTR_RO(supports_autosuspend);
Sarah Sharp49e7cc82008-10-06 14:45:46 -0700931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932static 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 KH360b52b2005-05-10 06:45:10 -0700939 &dev_attr_modalias.attr,
Sarah Sharp49e7cc82008-10-06 14:45:46 -0700940 &dev_attr_supports_autosuspend.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 NULL,
942};
943static struct attribute_group intf_attr_grp = {
944 .attrs = intf_attrs,
945};
946
Alan Stern2e5f10e2008-04-30 15:37:19 -0400947static 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 Viro587a1f12011-07-23 23:11:19 -0400956static umode_t intf_assoc_attrs_are_visible(struct kobject *kobj,
Alan Stern2e5f10e2008-04-30 15:37:19 -0400957 struct attribute *a, int n)
958{
H Hartley Sweetena864e3aa52009-04-15 21:34:40 -0400959 struct device *dev = container_of(kobj, struct device, kobj);
960 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern2e5f10e2008-04-30 15:37:19 -0400961
962 if (intf->intf_assoc == NULL)
963 return 0;
964 return a->mode;
965}
966
967static struct attribute_group intf_assoc_attr_grp = {
968 .attrs = intf_assoc_attrs,
969 .is_visible = intf_assoc_attrs_are_visible,
970};
971
David Brownella4dbd672009-06-24 10:06:31 -0700972const struct attribute_group *usb_interface_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400973 &intf_attr_grp,
974 &intf_assoc_attr_grp,
975 NULL
976};
977
Michal Nazarewicz643de622011-04-14 17:47:09 +0200978void usb_create_sysfs_intf_files(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Alan Stern4f62efe2005-10-24 16:24:14 -0400980 struct usb_device *udev = interface_to_usbdev(intf);
981 struct usb_host_interface *alt = intf->cur_altsetting;
982
Alan Stern352d0262008-10-29 15:16:58 -0400983 if (intf->sysfs_files_created || intf->unregistering)
Michal Nazarewicz643de622011-04-14 17:47:09 +0200984 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Michal Nazarewicz643de622011-04-14 17:47:09 +0200986 if (!alt->string && !(udev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern4f62efe2005-10-24 16:24:14 -0400987 alt->string = usb_cache_string(udev, alt->desc.iInterface);
Michal Nazarewicz643de622011-04-14 17:47:09 +0200988 if (alt->string && device_create_file(&intf->dev, &dev_attr_interface))
989 ; /* We don't actually care if the function fails. */
Alan Stern7e615592007-11-06 11:43:42 -0500990 intf->sysfs_files_created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Oliver Neukum92516442007-01-23 15:55:28 -0500993void usb_remove_sysfs_intf_files(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Alan Stern7e615592007-11-06 11:43:42 -0500995 if (!intf->sysfs_files_created)
996 return;
Alan Stern92b0da12008-10-29 15:18:50 -0400997
Alan Stern92b0da12008-10-29 15:18:50 -0400998 device_remove_file(&intf->dev, &dev_attr_interface);
Alan Stern7e615592007-11-06 11:43:42 -0500999 intf->sysfs_files_created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}