blob: 39a24021fe4d95f3c68017bda07dec443aaf8f4a [file] [log] [blame]
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -07001/*
2 * drivers/usb/core/endpoint.c
3 *
4 * (C) Copyright 2002,2004,2006 Greg Kroah-Hartman
5 * (C) Copyright 2002,2004 IBM Corp.
6 * (C) Copyright 2006 Novell Inc.
7 *
8 * Endpoint sysfs stuff
9 *
10 */
11
12#include <linux/kernel.h>
Sarah Bailey7e277802006-11-18 22:30:16 -080013#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070015#include <linux/usb.h>
16#include "usb.h"
17
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070018struct ep_device {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070019 struct usb_endpoint_descriptor *desc;
20 struct usb_device *udev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070021 struct device dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070022};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070023#define to_ep_device(_dev) \
24 container_of(_dev, struct ep_device, dev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070025
26struct ep_attribute {
27 struct attribute attr;
28 ssize_t (*show)(struct usb_device *,
29 struct usb_endpoint_descriptor *, char *);
30};
31#define to_ep_attribute(_attr) \
32 container_of(_attr, struct ep_attribute, attr)
33
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070034#define usb_ep_attr(field, format_string) \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070035static ssize_t field##_show(struct device *dev, \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070036 struct device_attribute *attr, \
37 char *buf) \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070038{ \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070039 struct ep_device *ep = to_ep_device(dev); \
40 return sprintf(buf, format_string, ep->desc->field); \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070041} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070042static DEVICE_ATTR_RO(field)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070043
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070044usb_ep_attr(bLength, "%02x\n");
45usb_ep_attr(bEndpointAddress, "%02x\n");
46usb_ep_attr(bmAttributes, "%02x\n");
47usb_ep_attr(bInterval, "%02x\n");
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070048
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070049static ssize_t wMaxPacketSize_show(struct device *dev,
50 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070051{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070052 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070053 return sprintf(buf, "%04x\n",
Kuninori Morimoto29cc8892011-08-23 03:12:03 -070054 usb_endpoint_maxp(ep->desc) & 0x07ff);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070055}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070056static DEVICE_ATTR_RO(wMaxPacketSize);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070057
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070058static ssize_t type_show(struct device *dev, struct device_attribute *attr,
59 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070060{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070061 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070062 char *type = "unknown";
63
Julia Lawall2e0fe702008-12-29 11:22:14 +010064 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070065 case USB_ENDPOINT_XFER_CONTROL:
66 type = "Control";
67 break;
68 case USB_ENDPOINT_XFER_ISOC:
69 type = "Isoc";
70 break;
71 case USB_ENDPOINT_XFER_BULK:
72 type = "Bulk";
73 break;
74 case USB_ENDPOINT_XFER_INT:
75 type = "Interrupt";
76 break;
77 }
78 return sprintf(buf, "%s\n", type);
79}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070080static DEVICE_ATTR_RO(type);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070081
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070082static ssize_t interval_show(struct device *dev, struct device_attribute *attr,
83 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070084{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070085 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070086 char unit;
87 unsigned interval = 0;
88 unsigned in;
89
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070090 in = (ep->desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070091
Julia Lawall2e0fe702008-12-29 11:22:14 +010092 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070093 case USB_ENDPOINT_XFER_CONTROL:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050094 if (ep->udev->speed == USB_SPEED_HIGH)
95 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070096 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070097 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050098
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070099 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700100 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700101 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500102
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700103 case USB_ENDPOINT_XFER_BULK:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500104 if (ep->udev->speed == USB_SPEED_HIGH && !in)
105 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700106 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700107 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500108
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700109 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700110 if (ep->udev->speed == USB_SPEED_HIGH)
111 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700112 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700113 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700114 break;
115 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700116 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700117 if (interval % 1000)
118 unit = 'u';
119 else {
120 unit = 'm';
121 interval /= 1000;
122 }
123
124 return sprintf(buf, "%d%cs\n", interval, unit);
125}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700126static DEVICE_ATTR_RO(interval);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700127
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700128static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
129 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700130{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700131 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700132 char *direction;
133
Julia Lawall2e0fe702008-12-29 11:22:14 +0100134 if (usb_endpoint_xfer_control(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700135 direction = "both";
Julia Lawall2e0fe702008-12-29 11:22:14 +0100136 else if (usb_endpoint_dir_in(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700137 direction = "in";
138 else
139 direction = "out";
140 return sprintf(buf, "%s\n", direction);
141}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700142static DEVICE_ATTR_RO(direction);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700143
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700144static struct attribute *ep_dev_attrs[] = {
145 &dev_attr_bLength.attr,
146 &dev_attr_bEndpointAddress.attr,
147 &dev_attr_bmAttributes.attr,
148 &dev_attr_bInterval.attr,
149 &dev_attr_wMaxPacketSize.attr,
150 &dev_attr_interval.attr,
151 &dev_attr_type.attr,
152 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700153 NULL,
154};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700155static struct attribute_group ep_dev_attr_grp = {
156 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700157};
David Brownella4dbd672009-06-24 10:06:31 -0700158static const struct attribute_group *ep_dev_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400159 &ep_dev_attr_grp,
160 NULL
161};
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700162
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700163static void ep_device_release(struct device *dev)
164{
165 struct ep_device *ep_dev = to_ep_device(dev);
166
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700167 kfree(ep_dev);
168}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700169
Lan Tianyu2d366842012-08-17 16:44:55 +0800170struct device_type usb_ep_device_type = {
171 .name = "usb_endpoint",
172 .release = ep_device_release,
173};
174
Alan Stern3b23dd62008-12-05 14:10:34 -0500175int usb_create_ep_devs(struct device *parent,
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700176 struct usb_host_endpoint *endpoint,
177 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700178{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700179 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700180 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700181
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700182 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
183 if (!ep_dev) {
184 retval = -ENOMEM;
Kay Sievers55129662009-05-04 19:48:32 +0200185 goto exit;
Sarah Bailey7e277802006-11-18 22:30:16 -0800186 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700187
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700188 ep_dev->desc = &endpoint->desc;
189 ep_dev->udev = udev;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400190 ep_dev->dev.groups = ep_dev_groups;
Kay Sievers55129662009-05-04 19:48:32 +0200191 ep_dev->dev.type = &usb_ep_device_type;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700192 ep_dev->dev.parent = parent;
Kay Sievers55129662009-05-04 19:48:32 +0200193 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700194
195 retval = device_register(&ep_dev->dev);
196 if (retval)
Kay Sievers55129662009-05-04 19:48:32 +0200197 goto error_register;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700198
Peter Chen95622712011-01-05 14:50:54 +0800199 device_enable_async_suspend(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400200 endpoint->ep_dev = ep_dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700201 return retval;
202
Alan Sternd5477c12006-10-10 11:56:26 -0400203error_register:
Rahul Ruikar7b3a7662010-10-07 09:31:12 +0530204 put_device(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400205exit:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700206 return retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700207}
208
Alan Stern3b23dd62008-12-05 14:10:34 -0500209void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700210{
Sarah Bailey7e277802006-11-18 22:30:16 -0800211 struct ep_device *ep_dev = endpoint->ep_dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700212
Sarah Bailey7e277802006-11-18 22:30:16 -0800213 if (ep_dev) {
Sarah Bailey7e277802006-11-18 22:30:16 -0800214 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700215 endpoint->ep_dev = NULL;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700216 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700217}