blob: f18317fb49eedc387037fd1ddd7f9cf3aed74371 [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
13#include <linux/config.h>
14#include <linux/kernel.h>
15
16#ifdef CONFIG_USB_DEBUG
17 #define DEBUG
18#else
19 #undef DEBUG
20#endif
21#include <linux/usb.h>
22
23#include "usb.h"
24
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070025/* endpoint stuff */
Alan Sternbe69e5b2005-10-25 15:56:06 -040026struct ep_object {
27 struct usb_endpoint_descriptor *desc;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070028 struct usb_device *udev;
Alan Sternbe69e5b2005-10-25 15:56:06 -040029 struct kobject kobj;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070030};
Alan Sternbe69e5b2005-10-25 15:56:06 -040031#define to_ep_object(_kobj) \
32 container_of(_kobj, struct ep_object, kobj)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070033
Alan Sternbe69e5b2005-10-25 15:56:06 -040034struct ep_attribute {
35 struct attribute attr;
36 ssize_t (*show)(struct usb_device *,
37 struct usb_endpoint_descriptor *, char *);
38};
39#define to_ep_attribute(_attr) \
40 container_of(_attr, struct ep_attribute, attr)
41
42#define EP_ATTR(_name) \
43struct ep_attribute ep_##_name = { \
44 .attr = {.name = #_name, .owner = THIS_MODULE, \
45 .mode = S_IRUGO}, \
46 .show = show_ep_##_name}
47
48#define usb_ep_attr(field, format_string) \
49static ssize_t show_ep_##field(struct usb_device *udev, \
50 struct usb_endpoint_descriptor *desc, \
51 char *buf) \
52{ \
53 return sprintf(buf, format_string, desc->field); \
54} \
55static EP_ATTR(field);
56
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070057usb_ep_attr(bLength, "%02x\n")
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070058usb_ep_attr(bEndpointAddress, "%02x\n")
59usb_ep_attr(bmAttributes, "%02x\n")
60usb_ep_attr(bInterval, "%02x\n")
61
Alan Sternbe69e5b2005-10-25 15:56:06 -040062static ssize_t show_ep_wMaxPacketSize(struct usb_device *udev,
63 struct usb_endpoint_descriptor *desc, char *buf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070064{
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070065 return sprintf(buf, "%04x\n",
Alan Sternbe69e5b2005-10-25 15:56:06 -040066 le16_to_cpu(desc->wMaxPacketSize) & 0x07ff);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070067}
Alan Sternbe69e5b2005-10-25 15:56:06 -040068static EP_ATTR(wMaxPacketSize);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070069
Alan Sternbe69e5b2005-10-25 15:56:06 -040070static ssize_t show_ep_type(struct usb_device *udev,
71 struct usb_endpoint_descriptor *desc, char *buf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070072{
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070073 char *type = "unknown";
74
Alan Sternbe69e5b2005-10-25 15:56:06 -040075 switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070076 case USB_ENDPOINT_XFER_CONTROL:
77 type = "Control";
78 break;
79 case USB_ENDPOINT_XFER_ISOC:
80 type = "Isoc";
81 break;
82 case USB_ENDPOINT_XFER_BULK:
83 type = "Bulk";
84 break;
85 case USB_ENDPOINT_XFER_INT:
86 type = "Interrupt";
87 break;
88 }
89 return sprintf(buf, "%s\n", type);
90}
Alan Sternbe69e5b2005-10-25 15:56:06 -040091static EP_ATTR(type);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070092
Alan Sternbe69e5b2005-10-25 15:56:06 -040093static ssize_t show_ep_interval(struct usb_device *udev,
94 struct usb_endpoint_descriptor *desc, char *buf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070095{
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -070096 char unit;
97 unsigned interval = 0;
98 unsigned in;
99
Alan Sternbe69e5b2005-10-25 15:56:06 -0400100 in = (desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700101
Alan Sternbe69e5b2005-10-25 15:56:06 -0400102 switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700103 case USB_ENDPOINT_XFER_CONTROL:
104 if (udev->speed == USB_SPEED_HIGH) /* uframes per NAK */
Alan Sternbe69e5b2005-10-25 15:56:06 -0400105 interval = desc->bInterval;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700106 break;
107 case USB_ENDPOINT_XFER_ISOC:
Alan Sternbe69e5b2005-10-25 15:56:06 -0400108 interval = 1 << (desc->bInterval - 1);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700109 break;
110 case USB_ENDPOINT_XFER_BULK:
Alan Sternbe69e5b2005-10-25 15:56:06 -0400111 if (udev->speed == USB_SPEED_HIGH && !in) /* uframes per NAK */
112 interval = desc->bInterval;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700113 break;
114 case USB_ENDPOINT_XFER_INT:
Alan Sternbe69e5b2005-10-25 15:56:06 -0400115 if (udev->speed == USB_SPEED_HIGH)
116 interval = 1 << (desc->bInterval - 1);
117 else
118 interval = desc->bInterval;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700119 break;
120 }
121 interval *= (udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
122 if (interval % 1000)
123 unit = 'u';
124 else {
125 unit = 'm';
126 interval /= 1000;
127 }
128
129 return sprintf(buf, "%d%cs\n", interval, unit);
130}
Alan Sternbe69e5b2005-10-25 15:56:06 -0400131static EP_ATTR(interval);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700132
Alan Sternbe69e5b2005-10-25 15:56:06 -0400133static ssize_t show_ep_direction(struct usb_device *udev,
134 struct usb_endpoint_descriptor *desc, char *buf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700135{
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700136 char *direction;
137
Alan Sternbe69e5b2005-10-25 15:56:06 -0400138 if ((desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
139 USB_ENDPOINT_XFER_CONTROL)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700140 direction = "both";
Alan Sternbe69e5b2005-10-25 15:56:06 -0400141 else if (desc->bEndpointAddress & USB_DIR_IN)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700142 direction = "in";
143 else
144 direction = "out";
145 return sprintf(buf, "%s\n", direction);
146}
Alan Sternbe69e5b2005-10-25 15:56:06 -0400147static EP_ATTR(direction);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700148
Alan Sternbe69e5b2005-10-25 15:56:06 -0400149static struct attribute *ep_attrs[] = {
150 &ep_bLength.attr,
151 &ep_bEndpointAddress.attr,
152 &ep_bmAttributes.attr,
153 &ep_bInterval.attr,
154 &ep_wMaxPacketSize.attr,
155 &ep_type.attr,
156 &ep_interval.attr,
157 &ep_direction.attr,
158 NULL,
159};
160
161static void ep_object_release(struct kobject *kobj)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700162{
Alan Sternbe69e5b2005-10-25 15:56:06 -0400163 kfree(to_ep_object(kobj));
164}
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700165
Alan Sternbe69e5b2005-10-25 15:56:06 -0400166static ssize_t ep_object_show(struct kobject *kobj, struct attribute *attr,
167 char *buf)
168{
169 struct ep_object *ep_obj = to_ep_object(kobj);
170 struct ep_attribute *ep_attr = to_ep_attribute(attr);
171
172 return (ep_attr->show)(ep_obj->udev, ep_obj->desc, buf);
173}
174
175static struct sysfs_ops ep_object_sysfs_ops = {
176 .show = ep_object_show,
177};
178
179static struct kobj_type ep_object_ktype = {
180 .release = ep_object_release,
181 .sysfs_ops = &ep_object_sysfs_ops,
182 .default_attrs = ep_attrs,
183};
184
185static void usb_create_ep_files(struct kobject *parent,
186 struct usb_host_endpoint *endpoint,
187 struct usb_device *udev)
188{
189 struct ep_object *ep_obj;
190 struct kobject *kobj;
191
192 ep_obj = kzalloc(sizeof(struct ep_object), GFP_KERNEL);
193 if (!ep_obj)
194 return;
195
196 ep_obj->desc = &endpoint->desc;
197 ep_obj->udev = udev;
198
199 kobj = &ep_obj->kobj;
200 kobject_set_name(kobj, "ep_%02x", endpoint->desc.bEndpointAddress);
201 kobj->parent = parent;
202 kobj->ktype = &ep_object_ktype;
203
204 /* Don't use kobject_register, because it generates a hotplug event */
205 kobject_init(kobj);
206 if (kobject_add(kobj) == 0)
207 endpoint->kobj = kobj;
208 else
209 kobject_put(kobj);
210}
211
212static void usb_remove_ep_files(struct usb_host_endpoint *endpoint)
213{
214
215 if (endpoint->kobj) {
216 kobject_del(endpoint->kobj);
217 kobject_put(endpoint->kobj);
218 endpoint->kobj = NULL;
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700219 }
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* Active configuration fields */
223#define usb_actconfig_show(field, multiplier, format_string) \
Yani Ioannou10523b32005-05-17 06:43:37 -0400224static ssize_t show_##field (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{ \
226 struct usb_device *udev; \
227 struct usb_host_config *actconfig; \
228 \
229 udev = to_usb_device (dev); \
230 actconfig = udev->actconfig; \
231 if (actconfig) \
232 return sprintf (buf, format_string, \
233 actconfig->desc.field * multiplier); \
234 else \
235 return 0; \
236} \
237
238#define usb_actconfig_attr(field, multiplier, format_string) \
239usb_actconfig_show(field, multiplier, format_string) \
240static DEVICE_ATTR(field, S_IRUGO, show_##field, NULL);
241
242usb_actconfig_attr (bNumInterfaces, 1, "%2d\n")
243usb_actconfig_attr (bmAttributes, 1, "%2x\n")
244usb_actconfig_attr (bMaxPower, 2, "%3dmA\n")
245
Yani Ioannou10523b32005-05-17 06:43:37 -0400246static ssize_t show_configuration_string(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct usb_device *udev;
249 struct usb_host_config *actconfig;
250 int len;
251
252 udev = to_usb_device (dev);
253 actconfig = udev->actconfig;
254 if ((!actconfig) || (!actconfig->string))
255 return 0;
256 len = sprintf(buf, actconfig->string, PAGE_SIZE);
257 if (len < 0)
258 return 0;
259 buf[len] = '\n';
260 buf[len+1] = 0;
261 return len+1;
262}
263static DEVICE_ATTR(configuration, S_IRUGO, show_configuration_string, NULL);
264
265/* configuration value is always present, and r/w */
266usb_actconfig_show(bConfigurationValue, 1, "%u\n");
267
268static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400269set_bConfigurationValue (struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 struct usb_device *udev = udev = to_usb_device (dev);
272 int config, value;
273
274 if (sscanf (buf, "%u", &config) != 1 || config > 255)
275 return -EINVAL;
276 usb_lock_device(udev);
277 value = usb_set_configuration (udev, config);
278 usb_unlock_device(udev);
279 return (value < 0) ? value : count;
280}
281
282static DEVICE_ATTR(bConfigurationValue, S_IRUGO | S_IWUSR,
283 show_bConfigurationValue, set_bConfigurationValue);
284
285/* String fields */
286#define usb_string_attr(name) \
Yani Ioannou10523b32005-05-17 06:43:37 -0400287static ssize_t show_##name(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{ \
289 struct usb_device *udev; \
290 int len; \
291 \
292 udev = to_usb_device (dev); \
293 len = snprintf(buf, 256, "%s", udev->name); \
294 if (len < 0) \
295 return 0; \
296 buf[len] = '\n'; \
297 buf[len+1] = 0; \
298 return len+1; \
299} \
300static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL);
301
302usb_string_attr(product);
303usb_string_attr(manufacturer);
304usb_string_attr(serial);
305
306static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400307show_speed (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 struct usb_device *udev;
310 char *speed;
311
312 udev = to_usb_device (dev);
313
314 switch (udev->speed) {
315 case USB_SPEED_LOW:
316 speed = "1.5";
317 break;
318 case USB_SPEED_UNKNOWN:
319 case USB_SPEED_FULL:
320 speed = "12";
321 break;
322 case USB_SPEED_HIGH:
323 speed = "480";
324 break;
325 default:
326 speed = "unknown";
327 }
328 return sprintf (buf, "%s\n", speed);
329}
330static DEVICE_ATTR(speed, S_IRUGO, show_speed, NULL);
331
332static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400333show_devnum (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct usb_device *udev;
336
337 udev = to_usb_device (dev);
338 return sprintf (buf, "%d\n", udev->devnum);
339}
340static DEVICE_ATTR(devnum, S_IRUGO, show_devnum, NULL);
341
342static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400343show_version (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct usb_device *udev;
346 u16 bcdUSB;
347
348 udev = to_usb_device(dev);
349 bcdUSB = le16_to_cpu(udev->descriptor.bcdUSB);
350 return sprintf(buf, "%2x.%02x\n", bcdUSB >> 8, bcdUSB & 0xff);
351}
352static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
353
354static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400355show_maxchild (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct usb_device *udev;
358
359 udev = to_usb_device (dev);
360 return sprintf (buf, "%d\n", udev->maxchild);
361}
362static DEVICE_ATTR(maxchild, S_IRUGO, show_maxchild, NULL);
363
364/* Descriptor fields */
365#define usb_descriptor_attr_le16(field, format_string) \
366static ssize_t \
Yani Ioannou10523b32005-05-17 06:43:37 -0400367show_##field (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{ \
369 struct usb_device *udev; \
370 \
371 udev = to_usb_device (dev); \
372 return sprintf (buf, format_string, \
373 le16_to_cpu(udev->descriptor.field)); \
374} \
375static DEVICE_ATTR(field, S_IRUGO, show_##field, NULL);
376
377usb_descriptor_attr_le16(idVendor, "%04x\n")
378usb_descriptor_attr_le16(idProduct, "%04x\n")
379usb_descriptor_attr_le16(bcdDevice, "%04x\n")
380
381#define usb_descriptor_attr(field, format_string) \
382static ssize_t \
Yani Ioannou10523b32005-05-17 06:43:37 -0400383show_##field (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{ \
385 struct usb_device *udev; \
386 \
387 udev = to_usb_device (dev); \
388 return sprintf (buf, format_string, udev->descriptor.field); \
389} \
390static DEVICE_ATTR(field, S_IRUGO, show_##field, NULL);
391
392usb_descriptor_attr (bDeviceClass, "%02x\n")
393usb_descriptor_attr (bDeviceSubClass, "%02x\n")
394usb_descriptor_attr (bDeviceProtocol, "%02x\n")
395usb_descriptor_attr (bNumConfigurations, "%d\n")
Greg Kroah-Hartmancf5910b2005-06-29 16:53:29 -0700396usb_descriptor_attr (bMaxPacketSize0, "%d\n")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398static struct attribute *dev_attrs[] = {
399 /* current configuration's attributes */
400 &dev_attr_bNumInterfaces.attr,
401 &dev_attr_bConfigurationValue.attr,
402 &dev_attr_bmAttributes.attr,
403 &dev_attr_bMaxPower.attr,
404 /* device attributes */
405 &dev_attr_idVendor.attr,
406 &dev_attr_idProduct.attr,
407 &dev_attr_bcdDevice.attr,
408 &dev_attr_bDeviceClass.attr,
409 &dev_attr_bDeviceSubClass.attr,
410 &dev_attr_bDeviceProtocol.attr,
411 &dev_attr_bNumConfigurations.attr,
Greg Kroah-Hartmancf5910b2005-06-29 16:53:29 -0700412 &dev_attr_bMaxPacketSize0.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 &dev_attr_speed.attr,
414 &dev_attr_devnum.attr,
415 &dev_attr_version.attr,
416 &dev_attr_maxchild.attr,
417 NULL,
418};
419static struct attribute_group dev_attr_grp = {
420 .attrs = dev_attrs,
421};
422
423void usb_create_sysfs_dev_files (struct usb_device *udev)
424{
425 struct device *dev = &udev->dev;
426
427 sysfs_create_group(&dev->kobj, &dev_attr_grp);
428
429 if (udev->manufacturer)
430 device_create_file (dev, &dev_attr_manufacturer);
431 if (udev->product)
432 device_create_file (dev, &dev_attr_product);
433 if (udev->serial)
434 device_create_file (dev, &dev_attr_serial);
435 device_create_file (dev, &dev_attr_configuration);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700436 usb_create_ep_files(&dev->kobj, &udev->ep0, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439void usb_remove_sysfs_dev_files (struct usb_device *udev)
440{
441 struct device *dev = &udev->dev;
442
Alan Sternbe69e5b2005-10-25 15:56:06 -0400443 usb_remove_ep_files(&udev->ep0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 sysfs_remove_group(&dev->kobj, &dev_attr_grp);
445
446 if (udev->descriptor.iManufacturer)
447 device_remove_file(dev, &dev_attr_manufacturer);
448 if (udev->descriptor.iProduct)
449 device_remove_file(dev, &dev_attr_product);
450 if (udev->descriptor.iSerialNumber)
451 device_remove_file(dev, &dev_attr_serial);
452 device_remove_file (dev, &dev_attr_configuration);
453}
454
455/* Interface fields */
456#define usb_intf_attr(field, format_string) \
457static ssize_t \
Yani Ioannou10523b32005-05-17 06:43:37 -0400458show_##field (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{ \
460 struct usb_interface *intf = to_usb_interface (dev); \
461 \
462 return sprintf (buf, format_string, intf->cur_altsetting->desc.field); \
463} \
464static DEVICE_ATTR(field, S_IRUGO, show_##field, NULL);
465
466usb_intf_attr (bInterfaceNumber, "%02x\n")
467usb_intf_attr (bAlternateSetting, "%2d\n")
468usb_intf_attr (bNumEndpoints, "%02x\n")
469usb_intf_attr (bInterfaceClass, "%02x\n")
470usb_intf_attr (bInterfaceSubClass, "%02x\n")
471usb_intf_attr (bInterfaceProtocol, "%02x\n")
472
Yani Ioannou10523b32005-05-17 06:43:37 -0400473static ssize_t show_interface_string(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct usb_interface *intf;
476 struct usb_device *udev;
477 int len;
478
479 intf = to_usb_interface (dev);
480 udev = interface_to_usbdev (intf);
481 len = snprintf(buf, 256, "%s", intf->cur_altsetting->string);
482 if (len < 0)
483 return 0;
484 buf[len] = '\n';
485 buf[len+1] = 0;
486 return len+1;
487}
488static DEVICE_ATTR(interface, S_IRUGO, show_interface_string, NULL);
489
Greg Kroah-Hartman4893e9d2005-06-19 12:21:43 +0200490static ssize_t show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
Greg KH360b52b2005-05-10 06:45:10 -0700491{
492 struct usb_interface *intf;
493 struct usb_device *udev;
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700494 struct usb_host_interface *alt;
Greg KH360b52b2005-05-10 06:45:10 -0700495
496 intf = to_usb_interface(dev);
497 udev = interface_to_usbdev(intf);
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700498 alt = intf->cur_altsetting;
Greg KH360b52b2005-05-10 06:45:10 -0700499
Greg Kroah-Hartman75218032005-06-20 21:15:16 -0700500 return sprintf(buf, "usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02X"
501 "ic%02Xisc%02Xip%02X\n",
502 le16_to_cpu(udev->descriptor.idVendor),
503 le16_to_cpu(udev->descriptor.idProduct),
504 le16_to_cpu(udev->descriptor.bcdDevice),
505 udev->descriptor.bDeviceClass,
506 udev->descriptor.bDeviceSubClass,
507 udev->descriptor.bDeviceProtocol,
508 alt->desc.bInterfaceClass,
509 alt->desc.bInterfaceSubClass,
510 alt->desc.bInterfaceProtocol);
Greg KH360b52b2005-05-10 06:45:10 -0700511}
512static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514static struct attribute *intf_attrs[] = {
515 &dev_attr_bInterfaceNumber.attr,
516 &dev_attr_bAlternateSetting.attr,
517 &dev_attr_bNumEndpoints.attr,
518 &dev_attr_bInterfaceClass.attr,
519 &dev_attr_bInterfaceSubClass.attr,
520 &dev_attr_bInterfaceProtocol.attr,
Greg KH360b52b2005-05-10 06:45:10 -0700521 &dev_attr_modalias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 NULL,
523};
524static struct attribute_group intf_attr_grp = {
525 .attrs = intf_attrs,
526};
527
Alan Sternbe69e5b2005-10-25 15:56:06 -0400528static inline void usb_create_intf_ep_files(struct usb_interface *intf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700529{
530 struct usb_host_interface *iface_desc;
531 int i;
532
533 iface_desc = intf->cur_altsetting;
534 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i)
535 usb_create_ep_files(&intf->dev.kobj, &iface_desc->endpoint[i],
Alan Sternbe69e5b2005-10-25 15:56:06 -0400536 interface_to_usbdev(intf));
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700537}
538
Alan Sternbe69e5b2005-10-25 15:56:06 -0400539static inline void usb_remove_intf_ep_files(struct usb_interface *intf)
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700540{
541 struct usb_host_interface *iface_desc;
542 int i;
543
544 iface_desc = intf->cur_altsetting;
545 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i)
Alan Sternbe69e5b2005-10-25 15:56:06 -0400546 usb_remove_ep_files(&iface_desc->endpoint[i]);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549void usb_create_sysfs_intf_files (struct usb_interface *intf)
550{
551 sysfs_create_group(&intf->dev.kobj, &intf_attr_grp);
552
553 if (intf->cur_altsetting->string)
554 device_create_file(&intf->dev, &dev_attr_interface);
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700555 usb_create_intf_ep_files(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558void usb_remove_sysfs_intf_files (struct usb_interface *intf)
559{
Greg Kroah-Hartman094f16492005-06-20 21:15:16 -0700560 usb_remove_intf_ep_files(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 sysfs_remove_group(&intf->dev.kobj, &intf_attr_grp);
562
563 if (intf->cur_altsetting->string)
564 device_remove_file(&intf->dev, &dev_attr_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}